{"info":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","description":"<html><head></head><body><p>Our API URL: <a href=\"https://apijavaanalytics.claro.hr/2.0.0/\">https://apijavaanalytics.claro.hr/2.0.0/</a></p>\n<p>*<em>New version as of March 27, 2024, be sure to use the 2.0.0 url above to send requests.*</em><br>Previous API Documentation:<br><a href=\"https://documenter.getpostman.com/view/27650649/2sA35EZhUg\">v1.0.1</a><br><a href=\"https://documenter.getpostman.com/view/27983126/2sA35Ba3tK\">v1.0.0</a></p>\n<h1 id=\"authorization\">Authorization</h1>\n<p>We authorize access to Claro's API endpoints via <a href=\"https://en.wikipedia.org/wiki/JSON_Web_Token\">JSON Web Token</a>. Your account manager will issue you a unique client_id and client_secret key after your Administrator user account is created. To generate your unique access token, send a request to the url above using your unique client_id and client_secret combination, as explained in the <a href=\"https://apidocs.claro.hr/#fd2bc6ec-cd62-481a-8dfe-30de90b83fd1\">Requesting a Bearer Token</a> section below.</p>\n<h1 id=\"errors\">Errors</h1>\n<p>We use conventional HTTP response codes to indicate the state (success or failure) of an API request.</p>\n<p>In general:</p>\n<p>Codes in the 2xx range indicate successful operation.</p>\n<p>Codes in the 4xx range indicate an error based on the information entered<br>(e.g., a required parameter is missing, wrong query logic, or an actual endpoint is nonexistent).<br>You can find examples below in <a href=\"#queries\">query errors</a> or in <a href=\"##400-Error-Messages\">400 Error Messages</a>.</p>\n<p>Codes in the 5xx range indicate errors with our servers or network issues.</p>\n<p>More general information on error codes can be found <a href=\"https://en.wikipedia.org/wiki/List_of_HTTP_status_codes\">here</a>.</p>\n<h1 id=\"queries\">Queries</h1>\n<h2 id=\"query-errors\">Query Errors</h2>\n<p>Here is an example of the system returning an error:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"timestamp\": \"2020-06-03T07:16:25.165+0000\",\n  \"status\": 400,\n  \"error\": \"Bad Request\",\n  \"message\": \"Value of operator text must be in range! Array size must be 1!\",\n  \"path\": \"/supplyData/barData/industry\"\n}\n\n</code></pre><p><code>timestamp</code> - date and time when the error occurred.</p>\n<p><code>status</code> - HTTP response code.</p>\n<p><code>message</code> - specific error description.</p>\n<p><code>path</code> - query URI.</p>\n<p>Here are some common error messages with HTTP status code 400:</p>\n<p>Value of operator text must be in range! Array size must be 1!</p>\n<p>Value of parameterType is invalid!</p>\n<p>Value of parameterKey is invalid!</p>\n<p>Value of operator text must be in range! Array size must be 2!</p>\n<p>Both range token values must be integers!</p>\n<p>Value of operator bool must be Boolean!</p>\n<p>Operator must be one of the following: AND, OR, NOT, (, )!</p>\n<p>Wrong query logic. Check operators.</p>\n<h2 id=\"query-logic\">Query Logic</h2>\n<p>Data from our API is queried using JSON, and we use a Claro proprietary syntax for entering values. Parameters are called <a href=\"#tokens\">tokens</a>.</p>\n<p>Here is an example query of a Heat Map, using several <a href=\"#tokens\">tokens</a> to optimize data extraction:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"country\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"shop\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        }\n    ],\n    \"topLeft\": {\n        \"lat\": 57.42129439209407,\n        \"lon\": -140.36132812500003\n    },\n    \"bottomRight\": {\n        \"lat\": 8.928487062665504,\n        \"lon\": -61.25976562500001\n    }\n}\n\n</code></pre><p>The above query will yield the following prospects:<br><code>People who live in the US AND currently work at shop</code></p>\n<p>The order of non-operator tokens does not affect the performance of the call to the database, i.e. US AND shop = shop AND US.</p>\n<p>The parameters <code>topLeft</code> and <code>bottomRight</code> are unique to the Heat Map, for they represent the minimum size of the map needed to contain all prospects/jobs from the search. For more info on the Heat Map, look for the <a href=\"#Heat-Map-Area-Endpoint\">Heat Map Area Endpoint</a> description. Other presentations of data will have other unique parameters, e.g. bars for bar chart, slices for pie chart, etc.</p>\n<p>Here is an example of an error. This search will yield an error for invalid query logic because all operators require that another non-operator token exists after them in the string:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"country\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        }\n    ]\n}\n\n</code></pre>\n<p>Error response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"timestamp\": \"2020-06-03 10:48:34.675\",\n    \"status\": 400,\n    \"error\": \"Payload error\",\n    \"message\": \"Wrong query logic. Check operators.\",\n    \"path\": \"/supplyData/barData/country\"\n}\n\n</code></pre>\n<h1 id=\"tokens\">Tokens</h1>\n<p>Tokens represent search parameters. The three types of tokens are: operators (also referred to as logical tokens), supply filters, and demand filters. To read more about each type, go to <a href=\"#logical-tokens\">Logical tokens</a>, <a href=\"#talent-supply-insights\">Talent Supply Insights</a>, or <a href=\"#talent-demand-insights\">Talent Demand Insights</a>. \"Filters\" refers to both supply and demand filters.</p>\n<p>Here is the JSON representation of a single Country code token:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"parameterValue\": [\n        \"US\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"country\"\n}\n\n</code></pre>\n<p>All tokens consist of:</p>\n<p><code>parameterValue</code> - value is an array with one element (array[0]) as the value being used for search. As of right now, the only exception is the salary token, which requires first (array[0]) and second (array[1]) element as values.</p>\n<p><code>parameterType</code> - value is an enumerated string (varchar), which can be one of:</p>\n<p><code>text</code>, <code>fields</code>, <code>bool</code>, <code>range</code>, <code>operator</code>.</p>\n<p><code>text</code> - value must be entered to successfully resolve.</p>\n<p><code>fields</code> - similar to text, but allows for searching more complex information. Currently, this type is only used for experience tokens.</p>\n<p><code>bool</code> - value is default to <code>true</code>, if <code>NOT</code> operator is used, then the value is <code>false</code>.</p>\n<p><code>range</code> - value must contain 2 entries of information to successfully resolve.</p>\n<p><code>operator</code> - value relates the <code>bool</code> and/or <code>text</code> and/or <code>range</code> tokens before and after it.</p>\n<p><code>parameterKey</code> - value is an enumerated string (varchar). All possible values will be provided below, and all possible tokens will be described. Using <code>parameterKey</code> other than those listed below will result in an error.</p>\n<h1 id=\"logical-tokens\">Logical Tokens</h1>\n<p>To perform a search using multiple filters, use the boolean operators found below.</p>\n<p><strong>AND</strong> - operator only returns prospects/jobs where ALL of the filter values exist within the search fields of any single record.<br>Example: <code>\"Country code\":\"US\" AND \"Current Employer\":\"shop\"</code> will only return prospects living in the United States who also work at shop. The results occupy the intersection of the filters.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"searchParameters\": [\n      {\n        \"parameterValue\": [\n          \"US\"\n        ],\n        \"parameterType\": \"text\",\n        \"parameterKey\": \"country\"\n      },\n      {\n        \"parameterValue\": [\n          \"AND\"\n        ],\n        \"parameterType\": \"operator\",\n        \"parameterKey\": \"AND\"\n      },\n      {\n        \"parameterValue\": [\n          \"shop\"\n        ],\n        \"parameterType\": \"text\",\n        \"parameterKey\": \"companyCurrent\"\n      }\n    ]\n}\n\n</code></pre>\n<p><strong>OR</strong> - operator returns prospects/jobs where ANY of the filter values exist within the search fields of any single record.<br>Example: <code>\"Country code\":\"US\" OR \"Current Employer\":\"shop\"</code> will return ALL prospects living in United States, and ALL prospects who currently work at shop. The intersection of the two search filters does not affect the results.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"US\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"country\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"shop\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"companyCurrent\"\n    }\n  ]\n}\n\n</code></pre>\n<p><strong>NOT</strong> - The NOT operator returns ALL prospects/jobs that do not contain the term after NOT. For all \"bool\" parameter types, NOT filters for the <code>false</code> condition.<br>Example: <code>\"Country code\":\"US\" AND NOT \"Current Employer\":\"shop\"</code><br>will return ALL prospects who live in the United States, but do not currently work at shop.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"US\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"country\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"NOT\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"NOT\"\n    },\n    {\n      \"parameterValue\": [\n        \"shop\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"companyCurrent\"\n    }\n  ]\n}\n\n</code></pre>\n<p><strong>Grouping (parentheses)</strong> - The parentheses operators allow you to group filters and other operators. This is typically used when you want to find prospects/jobs with many similar criteria, but one key difference.<br>Example: <code>\"Country code\":\"US\" AND (\"Current Employer\":\"shop\" OR \"Current Employer\":\"Bank\")</code>, will return prospects who live in the United States, and who either work at shop or work at Bank. You can add many terms within the parentheses, use multiple sets of parentheses in one string, and even use parentheses to group filters within a larger set of parentheses.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"US\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"country\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"shop\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"companyCurrent\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"Bank\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"companyCurrent\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n  ]\n}\n\n</code></pre>\n<h1 id=\"talent-supply-insights\">Talent Supply Insights</h1>\n<p>The following list of tokens represent ways to find prospects around the world. You can use many supply filters joined by operators, or just singular filter searches to accomplish this task, but you CANNOT use Talent Supply Insights tokens and Talent Demand Insights tokens in the same query. Be sure to match the \"parameterType\" and \"parameterKey\" to the exact characters listed below.</p>\n<h2 id=\"alerts\">Alerts</h2>\n<p><strong>Prospects who have alerts set.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [],\n    \"parameterType\": \"bool\",\n    \"parameterKey\": \"alerts\"\n}\n\n</code></pre><p><code>parameterValue</code> - empty array represents <code>true</code>. For <code>false</code> use <a href=\"#logical-tokens\">NOT</a> operator before token.</p>\n<hr>\n<h2 id=\"active\">Active</h2>\n<p><strong>Prospects who have alerts set AND are currently showing job-seeking activity.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n     \"parameterValue\": [\n        \"ACTIVE\"\n     ],\n     \"parameterType\": \"bool\",\n     \"parameterKey\": \"ACTIVE\"\n}\n\n</code></pre><p><code>parameterValue</code> - must be exactly <code>ACTIVE</code> to return data.<br>Single array element.</p>\n<hr>\n<h2 id=\"military\">Military</h2>\n<p><strong>Prospects who are currently on active duty or veterans.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [],\n    \"parameterType\": \"bool\",\n    \"parameterKey\": \"military\"\n}\n\n</code></pre><p><code>parameterValue</code> - empty array represents <code>true</code>. For <code>false</code> use <a href=\"#logical-tokens\">NOT</a> operator before token.</p>\n<hr>\n<h2 id=\"clearance\">Clearance</h2>\n<p><strong>Prospects who have active TS security clearance.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [],\n    \"parameterType\": \"bool\",\n    \"parameterKey\": \"clearance\"\n}\n\n</code></pre><p><code>parameterValue</code> - empty array represents <code>true</code>. For <code>false</code> use <a href=\"#logical-tokens\">NOT</a> operator before token.</p>\n<hr>\n<h2 id=\"diversity\">Diversity</h2>\n<p><strong>Prospects who are from diverse ethnic backgrounds.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [],\n    \"parameterType\": \"bool\",\n    \"parameterKey\": \"diversity\"\n}\n\n</code></pre><p><code>parameterValue</code> - empty array represents <code>true</code>. For <code>false</code> use <a href=\"#logical-tokens\">NOT</a> operator before token.</p>\n<hr>\n<h2 id=\"male\">Male</h2>\n<p><strong>Prospects who are MALE gender.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [],\n    \"parameterType\": \"bool\",\n    \"parameterKey\": \"male\"\n}\n\n</code></pre><p><code>parameterValue</code> - empty array represents <code>true</code>. For <code>false</code> use <a href=\"#logical-tokens\">NOT</a> operator before token.</p>\n<hr>\n<h2 id=\"female\">Female</h2>\n<p><strong>Prospects who are FEMALE gender.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [],\n    \"parameterType\": \"bool\",\n    \"parameterKey\": \"female\"\n}\n\n</code></pre><p><code>parameterValue</code> - empty array represents <code>true</code>. For <code>false</code> use <a href=\"#logical-tokens\">NOT</a> operator before token.</p>\n<hr>\n<h2 id=\"email\">Email</h2>\n<p><strong>Prospects who have emails available in the database.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [],\n    \"parameterType\": \"bool\",\n    \"parameterKey\": \"email\"\n}\n\n</code></pre><p><code>parameterValue</code> - empty array represents <code>true</code>. For <code>false</code> use <a href=\"#logical-tokens\">NOT</a> operator before token.</p>\n<hr>\n<p>The following tokens (CBSA - SKILLS) all require a value input for the chosen parameter in order to return results successfully. You can use the NOT operator to search for everything EXCEPT the entered value, for any of the subsequent supply and demand filters.</p>\n<h2 id=\"cbsa\">CBSA</h2>\n<p><strong>Prospects who are located in a</strong> <a href=\"https://en.wikipedia.org/wiki/Core-based_statistical_area\"><b>Core-Based Statistical Area</b></a> <strong>that exactly matches your entered value.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"New Bern, NC\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"cbsa\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar value, must be exact CBSA value.</p>\n<hr>\n<h2 id=\"country-code\">Country Code</h2>\n<p><strong>Prospects who are located in a country that exactly matches your entered value. We use the ISO3166 Alpha 2 letter</strong> <a href=\"https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements\"><b>country codes.</b></a></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"US\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"country\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar (2). <a href=\"https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements\">Values are in exact ISO3166 Alpha 2 codes</a>. Single array element.</p>\n<hr>\n<h2 id=\"current-employer\">Current Employer</h2>\n<p><strong>Prospects who are currently working for the company which matches your entered value.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"IBM\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"companyCurrent\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar, any existing company. Single array element.</p>\n<hr>\n<h2 id=\"current-experience\">Current Experience</h2>\n<p><strong>Prospects who have experience in their current job which matches your entered value.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"Symfony\"\n    ],\n    \"parameterType\": \"fields\",\n    \"parameterKey\": \"experienceCurrent\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar. Single array element.</p>\n<hr>\n<h2 id=\"current-title\">Current Title</h2>\n<p><strong>Prospects who have a current job title that matches your entered value.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"CTO\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"currentTitle\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar. Single array element.</p>\n<hr>\n<h2 id=\"education\">Education</h2>\n<p><strong>Prospects who have attained a degree or attended a college that matches your entered value.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"Bachelor\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"education\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar, any degree or school name. Single array element.</p>\n<hr>\n<h2 id=\"industry\">Industry</h2>\n<p><strong>Prospects who are currently working in a field of labor that matches your entered value.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"IT\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"industry\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar. Single array element.</p>\n<hr>\n<h2 id=\"language\">Language</h2>\n<p><strong>Prospects who have proficiency in a language that matches your entered value.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"german\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"languagesList\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar, must use the english spelling. Single array element.</p>\n<hr>\n<h2 id=\"location\">Location</h2>\n<p><strong>Prospects who are based out of a particular city, state, country, or combination of the three, as per the value(s) you enter.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"Boston\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"location\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar, any city, state, country, or combination (for best results finding a given city, include a <a href=\"##country-code\">country code</a> token in the same query). Single array element.</p>\n<hr>\n<h2 id=\"name\">Name</h2>\n<p><strong>Prospects who have a first and/or last name that matches your entered value.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"Lukas\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"fullName\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar. Single array element.</p>\n<hr>\n<h2 id=\"occupation\">Occupation</h2>\n<p><strong>Prospects who are currently working within the occupation which matches your entered value.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"Software Developers\",\n                \"Principal Software Engineer\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"currentTitleMerged\"\n        }\n    ]\n}\n\n</code></pre><p><code>parameterValue</code> - varchar. Multiple array element. Use the <a href=\"https://apidocs.claro.hr/#210d0058-a7ac-45e4-8f4b-601620db933e\">Occupation Autocomplete Endpoint</a> to find the exact Occupation values needed for this token.</p>\n<p>When supplying a parameterValue, you'll have to supply the parent and child occupation of interest.</p>\n<p>If you want to conduct a search against a parent occupation, only the parent occupation is required.</p>\n<p>For Example:</p>\n<p>[\"parentOccupation\",\"childOccupation\"]</p>\n<p>or</p>\n<p>[\"parentOccupation\"]</p>\n<hr>\n<h2 id=\"previous-employer\">Previous Employer</h2>\n<p><strong>Prospects who have worked at the company you entered, prior to their current job.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"Faktory\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"companyPrevious\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar. Single array element.</p>\n<hr>\n<h2 id=\"previous-experience\">Previous Experience</h2>\n<p><strong>Prospects who have experience in a prior job that matches your entered value(s).</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"group leader\"\n    ],\n    \"parameterType\": \"fields\",\n    \"parameterKey\": \"experiencePrevious\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar. Single array element.</p>\n<hr>\n<h2 id=\"previous-title\">Previous Title</h2>\n<p><strong>Prospects who had a title at a prior job that matches your entered value.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"CEO\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"titlePrevious\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar. Single array element.</p>\n<hr>\n<h2 id=\"professional-headline\">Professional Headline</h2>\n<p><strong>Prospects who have a professional headline that contains your entered value.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"Head of HR\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"na_headline\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar. Single array element.</p>\n<hr>\n<h2 id=\"radius\">Radius</h2>\n<p><strong>Prospects who are based out of a location within the radius corresponding to your entered values. All values are measured in mi (miles) or km (kilometers), and only whole number distance values are accepted.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    {\n      \"parameterValue\": [\n        \"San Francisco, CA, USA\",\n        \"10\",\n        \"mi\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"locationRange\"\n    }\n\n</code></pre><p><code>parameterValue</code> - varchar. Single array element. Use the <a href=\"#radius-autocomplete-endpoint-supply\">Radius Autocomplete Endpoint</a> to find the exact location values needed for this token.</p>\n<hr>\n<h2 id=\"timezone\">Timezone</h2>\n<p><strong>Prospects who are based out of a timezone that exactly matches your entered value.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"Pacific Standard Time\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"timezone\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar. Single array element. Value must be exact match for valid value. List of valid Values = Baker Island Time, Samoa Standard Time, Hawaii-Aleutian Standard Time, GMT -9.5, Alaska Standard Time, Pacific Standard Time, Mountain Standard Time, Central Standard Time, Eastern Standard Time, Atlantic Standard Time, GMT -3.5, Brasilia Time, Fernando de Noronha Time, Cape Verde Time, Greenwich Mean Time, Central European Time, Eastern European Time, Moscow Time, GMT +3.5, Gulf Standard Time, GMT +4.5, Pakistan Standard Time, GMT +5.5, GMT +5.75, Bangladesh Standard Time, GMT +6.5, Western Indonesian Time, China Standard Time, GMT +8.5, Japan Standard Time, GMT +9.5, Australian Eastern Standard Time, GMT +10.5, Solomon Islands Time, GMT +11.5, New Zealand Standard Time, New Zealand Daylight Time, Line Islands Time</p>\n<hr>\n<h2 id=\"free-text\">Free Text</h2>\n<p><strong>This token is unique. Using Lucene Query Syntax, you can find prospects matching any other token, and more. Go to</strong> <a href=\"https://analytics.claro.hr/support/free-text-button-help\">https://analytics.claro.hr/support/free-text-button-help</a> <strong>to find out more.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"PHP\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"lucene\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar. Single array element.</p>\n<hr>\n<h2 id=\"skills\">Skills</h2>\n<p><strong>Prospects who are proficient in a skill that matches your entered value.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"C++\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"skills\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar. Single array element.</p>\n<hr>\n<h2 id=\"about\">About</h2>\n<p><strong>Prospects who have info in their About section on LinkedIn that matches your entered value.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n      \"parameterValue\": [\n          \"attorney\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"about\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar. Single array element.</p>\n<hr>\n<h2 id=\"region\">Region</h2>\n<p><strong>Prospects who live in a group of countries that matches your entered value. Use Value \"AMER\" to show the Americas, \"APAC\" to show Asia Pacific, and \"EMEA\" to show Europe, the Middle East and Africa.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n      \"parameterValue\": [\n          \"APAC\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"region\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar. Single array element.</p>\n<hr>\n<h1 id=\"talent-demand-insights\">Talent Demand Insights</h1>\n<p>The following list of tokens represent ways to find job postings around the world. You can use many demand filters joined by operators, or just singular filter searches to accomplish this task, but you CANNOT use Talent Demand Insights tokens and Talent Supply Insights tokens in the same query.</p>\n<h2 id=\"cbsa-1\">CBSA</h2>\n<p><strong>Job availabilities located in a Core-Based Statistical Area that exactly matches your entered value. (</strong><a href=\"https://en.wikipedia.org/wiki/Core-based_statistical_area\"><b>https://en.wikipedia.org/wiki/Core-based_statistical_area</b></a><strong>)</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"New York-Newark-Jersey City, NY-NJ-PA\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"jobCbsa\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar value, must be exact CBSA value.</p>\n<hr>\n<h2 id=\"company\">Company</h2>\n<p><strong>Job availabilities at a company that matches your entered value.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"Apple\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"jobCompany\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar. Single array element.</p>\n<hr>\n<h2 id=\"country-code-1\">Country code</h2>\n<p><strong>Job availabilities located in a country that exactly matches your entered value, using ISO3166 Alpha 2 codes. (</strong><a href=\"https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements\"><b>https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements</b></a><strong>)</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"LT\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"jobCountry\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar (2). <a href=\"https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements\">Values are in exact ISO3166 Alpha 2 codes</a>. Single array element.</p>\n<hr>\n<h2 id=\"description\">Description</h2>\n<p><strong>Job availabilities with information in the description that matches your entered value.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"accredited\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"jobDescription\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar. Single array element.</p>\n<hr>\n<h2 id=\"location-1\">Location</h2>\n<p><strong>Job availabilities located in a city, state, country, or combination of the three, that matches your entered value.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"London\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"jobLocation\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar, any city, state, country, or combination (for best results finding a given city, include a <a href=\"#country-code\">country code</a> token in the same query). Single array element.</p>\n<hr>\n<h2 id=\"occupation-1\">Occupation</h2>\n<p><strong>Job availabilities within the Occupation that matches your entered value.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"Software Developers\",\n                \"Principal Software Engineer\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"currentTitleMerged\"\n        }\n    ]\n}\n\n</code></pre><p><code>parameterValue</code> - varchar. Multiple array element. Use the <a href=\"https://apidocs.claro.hr/#07cae004-2ab2-4019-a045-89ffa6e37e9d\">Occupation Autocomplete Endpoint</a> to find the exact Occupation values needed for this token.</p>\n<p>When supplying a parameterValue, you'll have to supply the parent and child occupation of interest.</p>\n<p>If you want to conduct a search against a parent occupation, only the parent occupation is required.</p>\n<p>For Example:</p>\n<p>[\"parentOccupation\",\"childOccupation\"]</p>\n<p>or</p>\n<p>[\"parentOccupation\"]</p>\n<hr>\n<h2 id=\"position\">Position</h2>\n<p><strong>Job availabilities where the name of the position includes your entered value.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"CTO\"\n    ],\n    \"parameterType\": \"text\",\n    \"parameterKey\": \"jobPosition\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar. Single array element.</p>\n<hr>\n<h2 id=\"radius-1\">Radius</h2>\n<p><strong>Job availabilities that are based out of a location within the radius corresponding to your entered values. All values are measured in mi (miles) or km (kilometers), and only whole number distance values are accepted.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    {\n      \"parameterValue\": [\n        \"New York, NY, USA\",\n        \"10\",\n        \"km\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"locationRange\"\n    }\n\n</code></pre><p><code>parameterValue</code> - varchar. Single array element. Use the <a href=\"#radius-autocomplete-endpoint-demand\">Radius Autocomplete Endpoint</a> to find the exact location values needed for this token.</p>\n<hr>\n<h2 id=\"clearance-1\">Clearance</h2>\n<p><strong>Job availabilities that require active TS security clearance.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [],\n    \"parameterType\": \"bool\",\n    \"parameterKey\": \"jobClearance\"\n}\n\n</code></pre><p><code>parameterValue</code> - empty array represents <code>true</code>. For <code>false</code> use <a href=\"#logical-tokens\">NOT</a> operator before token.</p>\n<hr>\n<h2 id=\"salary\">Salary</h2>\n<p><strong>Job availabilities that are within the salary range you enter. Enter the lower value first, then the higher value. Use only integers.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"parameterValue\": [\n        \"500\",\n        \"5000\"\n    ],\n    \"parameterType\": \"range\",\n    \"parameterKey\": \"jobSalary\"\n}\n\n</code></pre><p><code>parameterValue</code> - array of integers representing range. First (array[0]) element represents FROM, second (array[1]) element represents TO.</p>\n<hr>\n<h2 id=\"region-1\">Region</h2>\n<p><strong>Job postings that originate in a group of countries that matches your entered value. Use Value \"AMER\" to show the Americas, \"APAC\" to show Asia Pacific, and \"EMEA\" to show Europe, the Middle East and Africa.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n      \"parameterValue\": [\n          \"AMER/APAC/EMEA\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"region\"\n}\n\n</code></pre><p><code>parameterValue</code> - varchar. Single array element.</p>\n<hr>\n<h1 id=\"charts\">Charts</h1>\n<p>We currently support responses to create bar charts, pie charts, data lists, and heat maps. You can use the above search taxonomy to receive responses from multiple of the below endpoints.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authorization","slug":"authorization"},{"content":"Errors","slug":"errors"},{"content":"Queries","slug":"queries"},{"content":"Tokens","slug":"tokens"},{"content":"Logical Tokens","slug":"logical-tokens"},{"content":"Talent Supply Insights","slug":"talent-supply-insights"},{"content":"Talent Demand Insights","slug":"talent-demand-insights"},{"content":"Charts","slug":"charts"}],"owner":"11291662","collectionId":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","publishedId":"T17Ke7D1","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2020-07-09T13:20:16.000Z"},"item":[{"name":"Requesting New Tokens","item":[{"name":"Requesting a Bearer Token","event":[{"listen":"test","script":{"id":"70074085-520c-49ae-b785-9071c100347f","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","var jsonData = pm.response.json();","token = 'Bearer ' + jsonData.access_token;","pm.globals.set(\"token-1.0.1\", token)"],"type":"text/javascript","packages":{}}}],"id":"ca7fbb82-c990-456e-b37e-1f3625ac6184","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"client_id\":\"9dofgcUOCpCaIXPsAP5x6QjTyT4bXKZ9\",\"client_secret\":\"OBqh7Gi4DnOiJCWr11R6T6KJeM8IEit5eDvbU1KyvfqSrznaMid1D09gLT26LGT4\"}"},"url":"https://apijavaanalytics.claro.hr/2.0.0/oauth/token","description":"<p>This endpoint allows users to request a bearer token to make requests using this API.</p>\n<p>Use the exact request body shown below, but be sure to replace the \"id\" and \"secret\" fields with your client_id and client_secret given to you by your customer success rep.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\"client_id\":\"id\",\"client_secret\":\"secret\"}\n\n</code></pre>","urlObject":{"protocol":"https","path":["2.0.0","oauth","token"],"host":["apijavaanalytics","claro","hr"],"query":[],"variable":[]}},"response":[],"_postman_id":"ca7fbb82-c990-456e-b37e-1f3625ac6184"}],"id":"ecb74f5c-1529-4b3b-8211-c18f53d81932","_postman_id":"ecb74f5c-1529-4b3b-8211-c18f53d81932","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}}},{"name":"Talent Supply Insights Endpoints","item":[{"name":"Data for Bar Charts","item":[{"name":"Skills Chart Endpoint","event":[{"listen":"prerequest","script":{"id":"c00ffdf9-a11f-4a44-bf79-3d586c8b56e2","exec":["pm.environment.get(\"token\");"],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"c4b18104-ffe7-4913-8ec9-49ebee4b73d8","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentOfFirst');","});","","","// pm.test(\"M2M Auth: Status code is 200\", function () {","//     pm.sendRequest({","//         url: \"https://claro-api.auth0.com/oauth/token\",","//         method: \"POST\",","//         header: {\"Content-Type\": \"application/json\"},","//         body: '{\"client_id\":\"1XqcNishgxWQAyouP6KIYBRr07JIb8dx\",\"client_secret\":\"Cm7WjjthUpNDLhfxSKHEgGDse-Y53Qn0TIpt5cbvHQE0HetLWs0UqyJkpeatTvFb\",\"audience\":\"https://auth.claro.hr/\",\"grant_type\":\"client_credentials\"}' ","//         },","//     (err, res) => {","//         pm.environment.get(\"token\");","//         pm.sendRequest({","//             url: pm.request.url.getRaw(),","//             method: pm.request.method,","//             header: {","//                 \"Authorization\": pm.environment.get(\"token\"),","//                 \"Content-Type\": \"application/json\",","//             },","//             body: pm.request.body.raw ","//             },","//             (err, res) => {","//                 // console.log(res);","//                 pm.response.to.have.status(200); ","//             });","//         }","//     );","// });"],"type":"text/javascript","packages":{}}}],"id":"4f33e667-8d2c-47f6-98ab-a4e138482c76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"stanford\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"education\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"San Jose-Sunnyvale-Santa Clara, CA\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"cbsa\"\n    }\n    ]\n}"},"url":"//supplyData/barData/skills","description":"<p>This endpoint returns data divided into (up to) 50 bars and lists several values for each: total number of prospects and percent of the total. The record is organized in descending numerical order. The sum of the <code>percentOfTotal</code> fields may be greater than  100% because prospects often have many skills.</p>\n<p>Here are descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return the most popular skills among prospects who went to Stanford University and live in the San Jose CBSA:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"stanford\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"education\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"San Jose-Sunnyvale-Santa Clara, CA\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"cbsa\"\n    }\n    ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","barData","skills"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"f5472767-6bbd-43e7-ad1b-5d1abb232286","name":"Stanford Graduates in San Jose","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"stanford\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"education\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"San Jose-Sunnyvale-Santa Clara, CA\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"cbsa\"\n    }\n    ]\n}"},"url":"//supplyData/barData/skills"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 28 Jul 2023 14:40:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1999"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WaRIEK%2Fq%2FKJuwALvHBforFF9HSf4h3e9EBNy4nY8YXrgh%2Fz9dNi2d4lQUpwk8937GtYCbogTIeb%2FldmfYe9wS68GKOPSpZPMjwhETyp0m%2Be82qzcVL5u0eyUKTpOVu0A1SKzl0Mxhmwu1Z8%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7edde1443a2738ac-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"Public Speaking\",\n        \"docCount\": 97,\n        \"percentOfTotal\": 17.29055258467023,\n        \"percentOfFirst\": 100\n    },\n    {\n        \"key\": \"Research\",\n        \"docCount\": 79,\n        \"percentOfTotal\": 14.081996434937611,\n        \"percentOfFirst\": 81.44329896907216\n    },\n    {\n        \"key\": \"Strategic Planning\",\n        \"docCount\": 77,\n        \"percentOfTotal\": 13.72549019607843,\n        \"percentOfFirst\": 79.38144329896907\n    },\n    {\n        \"key\": \"Leadership\",\n        \"docCount\": 68,\n        \"percentOfTotal\": 12.121212121212121,\n        \"percentOfFirst\": 70.10309278350516\n    },\n    {\n        \"key\": \"Management\",\n        \"docCount\": 68,\n        \"percentOfTotal\": 12.121212121212121,\n        \"percentOfFirst\": 70.10309278350516\n    },\n    {\n        \"key\": \"Teaching\",\n        \"docCount\": 56,\n        \"percentOfTotal\": 9.982174688057041,\n        \"percentOfFirst\": 57.7319587628866\n    },\n    {\n        \"key\": \"Social Media\",\n        \"docCount\": 48,\n        \"percentOfTotal\": 8.556149732620321,\n        \"percentOfFirst\": 49.48453608247423\n    },\n    {\n        \"key\": \"Program Management\",\n        \"docCount\": 47,\n        \"percentOfTotal\": 8.37789661319073,\n        \"percentOfFirst\": 48.45360824742268\n    },\n    {\n        \"key\": \"Microsoft Office\",\n        \"docCount\": 44,\n        \"percentOfTotal\": 7.8431372549019605,\n        \"percentOfFirst\": 45.36082474226804\n    },\n    {\n        \"key\": \"Nonprofits\",\n        \"docCount\": 43,\n        \"percentOfTotal\": 7.664884135472371,\n        \"percentOfFirst\": 44.329896907216494\n    },\n    {\n        \"key\": \"Project Management\",\n        \"docCount\": 43,\n        \"percentOfTotal\": 7.664884135472371,\n        \"percentOfFirst\": 44.329896907216494\n    },\n    {\n        \"key\": \"Customer Service\",\n        \"docCount\": 39,\n        \"percentOfTotal\": 6.951871657754011,\n        \"percentOfFirst\": 40.20618556701031\n    },\n    {\n        \"key\": \"Event Planning\",\n        \"docCount\": 39,\n        \"percentOfTotal\": 6.951871657754011,\n        \"percentOfFirst\": 40.20618556701031\n    },\n    {\n        \"key\": \"Fundraising\",\n        \"docCount\": 38,\n        \"percentOfTotal\": 6.7736185383244205,\n        \"percentOfFirst\": 39.175257731958766\n    },\n    {\n        \"key\": \"Team Building\",\n        \"docCount\": 38,\n        \"percentOfTotal\": 6.7736185383244205,\n        \"percentOfFirst\": 39.175257731958766\n    },\n    {\n        \"key\": \"Strategy\",\n        \"docCount\": 37,\n        \"percentOfTotal\": 6.595365418894831,\n        \"percentOfFirst\": 38.144329896907216\n    },\n    {\n        \"key\": \"Community Outreach\",\n        \"docCount\": 36,\n        \"percentOfTotal\": 6.4171122994652405,\n        \"percentOfFirst\": 37.11340206185567\n    },\n    {\n        \"key\": \"Editing\",\n        \"docCount\": 33,\n        \"percentOfTotal\": 5.882352941176471,\n        \"percentOfFirst\": 34.02061855670103\n    },\n    {\n        \"key\": \"Marketing Strategy\",\n        \"docCount\": 31,\n        \"percentOfTotal\": 5.52584670231729,\n        \"percentOfFirst\": 31.95876288659794\n    },\n    {\n        \"key\": \"Business Strategy\",\n        \"docCount\": 30,\n        \"percentOfTotal\": 5.347593582887701,\n        \"percentOfFirst\": 30.927835051546392\n    },\n    {\n        \"key\": \"Entrepreneurship\",\n        \"docCount\": 30,\n        \"percentOfTotal\": 5.347593582887701,\n        \"percentOfFirst\": 30.927835051546392\n    },\n    {\n        \"key\": \"Marketing\",\n        \"docCount\": 30,\n        \"percentOfTotal\": 5.347593582887701,\n        \"percentOfFirst\": 30.927835051546392\n    },\n    {\n        \"key\": \"Healthcare\",\n        \"docCount\": 29,\n        \"percentOfTotal\": 5.16934046345811,\n        \"percentOfFirst\": 29.896907216494846\n    },\n    {\n        \"key\": \"Start-ups\",\n        \"docCount\": 29,\n        \"percentOfTotal\": 5.16934046345811,\n        \"percentOfFirst\": 29.896907216494846\n    },\n    {\n        \"key\": \"Training\",\n        \"docCount\": 29,\n        \"percentOfTotal\": 5.16934046345811,\n        \"percentOfFirst\": 29.896907216494846\n    },\n    {\n        \"key\": \"Microsoft Excel\",\n        \"docCount\": 27,\n        \"percentOfTotal\": 4.81283422459893,\n        \"percentOfFirst\": 27.835051546391753\n    },\n    {\n        \"key\": \"Cross-functional Team Leadership\",\n        \"docCount\": 26,\n        \"percentOfTotal\": 4.634581105169341,\n        \"percentOfFirst\": 26.804123711340207\n    },\n    {\n        \"key\": \"Higher Education\",\n        \"docCount\": 26,\n        \"percentOfTotal\": 4.634581105169341,\n        \"percentOfFirst\": 26.804123711340207\n    },\n    {\n        \"key\": \"Product Development\",\n        \"docCount\": 26,\n        \"percentOfTotal\": 4.634581105169341,\n        \"percentOfFirst\": 26.804123711340207\n    },\n    {\n        \"key\": \"Public Relations\",\n        \"docCount\": 25,\n        \"percentOfTotal\": 4.45632798573975,\n        \"percentOfFirst\": 25.77319587628866\n    },\n    {\n        \"key\": \"Curriculum Design\",\n        \"docCount\": 24,\n        \"percentOfTotal\": 4.278074866310161,\n        \"percentOfFirst\": 24.742268041237114\n    },\n    {\n        \"key\": \"New Business Development\",\n        \"docCount\": 24,\n        \"percentOfTotal\": 4.278074866310161,\n        \"percentOfFirst\": 24.742268041237114\n    },\n    {\n        \"key\": \"Process Improvement\",\n        \"docCount\": 24,\n        \"percentOfTotal\": 4.278074866310161,\n        \"percentOfFirst\": 24.742268041237114\n    },\n    {\n        \"key\": \"Microsoft Word\",\n        \"docCount\": 23,\n        \"percentOfTotal\": 4.09982174688057,\n        \"percentOfFirst\": 23.711340206185568\n    },\n    {\n        \"key\": \"Science\",\n        \"docCount\": 23,\n        \"percentOfTotal\": 4.09982174688057,\n        \"percentOfFirst\": 23.711340206185568\n    },\n    {\n        \"key\": \"Grant Writing\",\n        \"docCount\": 22,\n        \"percentOfTotal\": 3.9215686274509802,\n        \"percentOfFirst\": 22.68041237113402\n    },\n    {\n        \"key\": \"Leadership Development\",\n        \"docCount\": 22,\n        \"percentOfTotal\": 3.9215686274509802,\n        \"percentOfFirst\": 22.68041237113402\n    },\n    {\n        \"key\": \"Sales\",\n        \"docCount\": 22,\n        \"percentOfTotal\": 3.9215686274509802,\n        \"percentOfFirst\": 22.68041237113402\n    },\n    {\n        \"key\": \"Business Development\",\n        \"docCount\": 21,\n        \"percentOfTotal\": 3.7433155080213902,\n        \"percentOfFirst\": 21.649484536082475\n    },\n    {\n        \"key\": \"Data Analysis\",\n        \"docCount\": 20,\n        \"percentOfTotal\": 3.5650623885918002,\n        \"percentOfFirst\": 20.61855670103093\n    },\n    {\n        \"key\": \"Government\",\n        \"docCount\": 20,\n        \"percentOfTotal\": 3.5650623885918002,\n        \"percentOfFirst\": 20.61855670103093\n    },\n    {\n        \"key\": \"Medicine\",\n        \"docCount\": 20,\n        \"percentOfTotal\": 3.5650623885918002,\n        \"percentOfFirst\": 20.61855670103093\n    },\n    {\n        \"key\": \"Policy\",\n        \"docCount\": 20,\n        \"percentOfTotal\": 3.5650623885918002,\n        \"percentOfFirst\": 20.61855670103093\n    },\n    {\n        \"key\": \"Analysis\",\n        \"docCount\": 19,\n        \"percentOfTotal\": 3.3868092691622103,\n        \"percentOfFirst\": 19.587628865979383\n    },\n    {\n        \"key\": \"Coaching\",\n        \"docCount\": 19,\n        \"percentOfTotal\": 3.3868092691622103,\n        \"percentOfFirst\": 19.587628865979383\n    },\n    {\n        \"key\": \"Event Management\",\n        \"docCount\": 19,\n        \"percentOfTotal\": 3.3868092691622103,\n        \"percentOfFirst\": 19.587628865979383\n    },\n    {\n        \"key\": \"Program Development\",\n        \"docCount\": 19,\n        \"percentOfTotal\": 3.3868092691622103,\n        \"percentOfFirst\": 19.587628865979383\n    },\n    {\n        \"key\": \"Clinical Research\",\n        \"docCount\": 18,\n        \"percentOfTotal\": 3.2085561497326203,\n        \"percentOfFirst\": 18.556701030927837\n    },\n    {\n        \"key\": \"Integration\",\n        \"docCount\": 18,\n        \"percentOfTotal\": 3.2085561497326203,\n        \"percentOfFirst\": 18.556701030927837\n    },\n    {\n        \"key\": \"Business Planning\",\n        \"docCount\": 17,\n        \"percentOfTotal\": 3.0303030303030303,\n        \"percentOfFirst\": 17.52577319587629\n    }\n]"}],"_postman_id":"4f33e667-8d2c-47f6-98ab-a4e138482c76"},{"name":"Industry Chart Endpoint","event":[{"listen":"test","script":{"id":"c3e4f584-bbf3-473a-a818-1eced66ab701","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentOfFirst');","","// pm.expect(pm.response.json()[0].key).is.to.equal(\"Public Speaking\")","});",""],"type":"text/javascript"}}],"id":"86a60bfd-5f41-4337-aa73-a9b72000b7ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"US\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"country\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [],\n      \"parameterType\": \"bool\",\n      \"parameterKey\": \"military\"\n    }\n  ]\n}"},"url":"//supplyData/barData/industry","description":"<p>This endpoint returns data divided into (up to) 50 bars and lists several values for each: total number of prospects, percent of the total, and percent of the largest result. The record is organized in descending numerical order. </p>\n<p>Here are the descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return the most popular industries among prospects who live in the US and are veterans or active military members:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"country\"\n        },\n{\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n{\n  \"parameterValue\": [],\n  \"parameterType\": \"bool\",\n  \"parameterKey\": \"military\"\n}\n    ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","barData","industry"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"09c3d37a-8b1f-4d73-89f8-19c59772bf3a","name":"Active Military and Veterans living in the US","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"US\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"country\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [],\n      \"parameterType\": \"bool\",\n      \"parameterKey\": \"military\"\n    }\n  ]\n}"},"url":"//supplyData/barData/industry"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 28 Jul 2023 14:43:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1999"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=P0bmMA5zRu%2BlJQwatCheh6CYfxE6mP1qxKqPlRmbOyAhpecWMcRIihqc9dm%2Fo15gOGtzaDKmQG6j9rfr3T%2FVOPKSpqTHS5g9GgHn008FBYyQ95nROYnKaeyinePuKhMC%2FpPVRka6Qw6uTV8%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7edde4549c079c7c-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"Military\",\n        \"docCount\": 676197,\n        \"percentOfTotal\": 21.43944202669257,\n        \"percentOfFirst\": 100\n    },\n    {\n        \"key\": \"Information Technology And Services\",\n        \"docCount\": 159756,\n        \"percentOfTotal\": 5.0652095475376235,\n        \"percentOfFirst\": 23.62565938624395\n    },\n    {\n        \"key\": \"Defense & Space\",\n        \"docCount\": 145334,\n        \"percentOfTotal\": 4.6079468964034715,\n        \"percentOfFirst\": 21.492848977442964\n    },\n    {\n        \"key\": \"Government Administration\",\n        \"docCount\": 95692,\n        \"percentOfTotal\": 3.0340020532748087,\n        \"percentOfFirst\": 14.151497270765768\n    },\n    {\n        \"key\": \"Hospital & Health Care\",\n        \"docCount\": 82600,\n        \"percentOfTotal\": 2.618908264018927,\n        \"percentOfFirst\": 12.215375105183844\n    },\n    {\n        \"key\": \"Aviation & Aerospace\",\n        \"docCount\": 68256,\n        \"percentOfTotal\": 2.164118673957335,\n        \"percentOfFirst\": 10.09409979636112\n    },\n    {\n        \"key\": \"Construction\",\n        \"docCount\": 61953,\n        \"percentOfTotal\": 1.9642763157477554,\n        \"percentOfFirst\": 9.161974986579354\n    },\n    {\n        \"key\": \"Retail\",\n        \"docCount\": 55340,\n        \"percentOfTotal\": 1.7546051250703079,\n        \"percentOfFirst\": 8.184005548678861\n    },\n    {\n        \"key\": \"Financial Services\",\n        \"docCount\": 52800,\n        \"percentOfTotal\": 1.6740721106561665,\n        \"percentOfFirst\": 7.808375369899601\n    },\n    {\n        \"key\": \"Real Estate\",\n        \"docCount\": 51403,\n        \"percentOfTotal\": 1.6297789527283888,\n        \"percentOfFirst\": 7.601778771571007\n    },\n    {\n        \"key\": \"Computer Software\",\n        \"docCount\": 44137,\n        \"percentOfTotal\": 1.3994038020460458,\n        \"percentOfFirst\": 6.5272398428268685\n    },\n    {\n        \"key\": \"Higher Education\",\n        \"docCount\": 43753,\n        \"percentOfTotal\": 1.3872287321503647,\n        \"percentOfFirst\": 6.470451658318508\n    },\n    {\n        \"key\": \"Marketing And Advertising\",\n        \"docCount\": 43205,\n        \"percentOfTotal\": 1.3698538928200696,\n        \"percentOfFirst\": 6.389410186676368\n    },\n    {\n        \"key\": \"Logistics And Supply Chain\",\n        \"docCount\": 42326,\n        \"percentOfTotal\": 1.341984396886987,\n        \"percentOfFirst\": 6.259418483075199\n    },\n    {\n        \"key\": \"Education Management\",\n        \"docCount\": 41698,\n        \"percentOfTotal\": 1.322073084661758,\n        \"percentOfFirst\": 6.1665461396604835\n    },\n    {\n        \"key\": \"Oil And Energy\",\n        \"docCount\": 40875,\n        \"percentOfTotal\": 1.295979119755129,\n        \"percentOfFirst\": 6.044836046300117\n    },\n    {\n        \"key\": \"Airlines/aviation\",\n        \"docCount\": 40644,\n        \"percentOfTotal\": 1.2886550542710082,\n        \"percentOfFirst\": 6.010674404056806\n    },\n    {\n        \"key\": \"Automotive\",\n        \"docCount\": 40555,\n        \"percentOfTotal\": 1.2858332281753946,\n        \"percentOfFirst\": 5.997512559209816\n    },\n    {\n        \"key\": \"Human Resources\",\n        \"docCount\": 37921,\n        \"percentOfTotal\": 1.2023198581097063,\n        \"percentOfFirst\": 5.607981106097779\n    },\n    {\n        \"key\": \"Management Of Nonprofit Organizations\",\n        \"docCount\": 35856,\n        \"percentOfTotal\": 1.136847151509233,\n        \"percentOfFirst\": 5.302596728468183\n    },\n    {\n        \"key\": \"Telecommunications\",\n        \"docCount\": 35843,\n        \"percentOfTotal\": 1.1364349746638063,\n        \"percentOfFirst\": 5.3006742118051395\n    },\n    {\n        \"key\": \"Management Consulting\",\n        \"docCount\": 35201,\n        \"percentOfTotal\": 1.1160797796819644,\n        \"percentOfFirst\": 5.205731465830224\n    },\n    {\n        \"key\": \"Security And Investigations\",\n        \"docCount\": 34979,\n        \"percentOfTotal\": 1.1090410673985236,\n        \"percentOfFirst\": 5.172900796661328\n    },\n    {\n        \"key\": \"Health Wellness And Fitness\",\n        \"docCount\": 34965,\n        \"percentOfTotal\": 1.1085971846419103,\n        \"percentOfFirst\": 5.170830394101127\n    },\n    {\n        \"key\": \"Law Enforcement\",\n        \"docCount\": 34872,\n        \"percentOfTotal\": 1.10564853490155,\n        \"percentOfFirst\": 5.157077005665509\n    },\n    {\n        \"key\": \"Mechanical Or Industrial Engineering\",\n        \"docCount\": 31863,\n        \"percentOfTotal\": 1.0102454481408605,\n        \"percentOfFirst\": 4.712088341119526\n    },\n    {\n        \"key\": \"Electrical/electronic Manufacturing\",\n        \"docCount\": 30073,\n        \"percentOfTotal\": 0.9534918671167215,\n        \"percentOfFirst\": 4.447372585208157\n    },\n    {\n        \"key\": \"Transportation/trucking/railroad\",\n        \"docCount\": 28692,\n        \"percentOfTotal\": 0.9097060037679305,\n        \"percentOfFirst\": 4.243142161234078\n    },\n    {\n        \"key\": \"Medical Practice\",\n        \"docCount\": 28243,\n        \"percentOfTotal\": 0.8954700496451158,\n        \"percentOfFirst\": 4.1767413934105\n    },\n    {\n        \"key\": \"Accounting\",\n        \"docCount\": 25713,\n        \"percentOfTotal\": 0.8152540943428411,\n        \"percentOfFirst\": 3.802590073602811\n    },\n    {\n        \"key\": \"Research\",\n        \"docCount\": 25164,\n        \"percentOfTotal\": 0.7978475491013594,\n        \"percentOfFirst\": 3.721400716063514\n    },\n    {\n        \"key\": \"Insurance\",\n        \"docCount\": 24997,\n        \"percentOfTotal\": 0.7925526619331855,\n        \"percentOfFirst\": 3.6967037712382633\n    },\n    {\n        \"key\": \"Law Practice\",\n        \"docCount\": 23602,\n        \"percentOfTotal\": 0.7483229158277811,\n        \"percentOfFirst\": 3.4904029447039844\n    },\n    {\n        \"key\": \"Environmental Services\",\n        \"docCount\": 20509,\n        \"percentOfTotal\": 0.6502565325274113,\n        \"percentOfFirst\": 3.0329918647967973\n    },\n    {\n        \"key\": \"Veterinary\",\n        \"docCount\": 19082,\n        \"percentOfTotal\": 0.6050121972640335,\n        \"percentOfFirst\": 2.821958689553488\n    },\n    {\n        \"key\": \"Civil Engineering\",\n        \"docCount\": 18791,\n        \"percentOfTotal\": 0.5957857771087126,\n        \"percentOfFirst\": 2.778923893480746\n    },\n    {\n        \"key\": \"Government Relations\",\n        \"docCount\": 18642,\n        \"percentOfTotal\": 0.5910615963418988,\n        \"percentOfFirst\": 2.756888894804325\n    },\n    {\n        \"key\": \"Banking\",\n        \"docCount\": 17822,\n        \"percentOfTotal\": 0.5650627491688296,\n        \"percentOfFirst\": 2.6356224591354294\n    },\n    {\n        \"key\": \"Utilities\",\n        \"docCount\": 17660,\n        \"percentOfTotal\": 0.5599263915565891,\n        \"percentOfFirst\": 2.6116649437959647\n    },\n    {\n        \"key\": \"Consumer Services\",\n        \"docCount\": 17207,\n        \"percentOfTotal\": 0.5455636137890276,\n        \"percentOfFirst\": 2.544672632383758\n    },\n    {\n        \"key\": \"Entertainment\",\n        \"docCount\": 16522,\n        \"percentOfTotal\": 0.5238450646261588,\n        \"percentOfFirst\": 2.4433707928310833\n    },\n    {\n        \"key\": \"Mental Health Care\",\n        \"docCount\": 16461,\n        \"percentOfTotal\": 0.5219110040437719,\n        \"percentOfFirst\": 2.434349753104495\n    },\n    {\n        \"key\": \"Food & Beverages\",\n        \"docCount\": 16276,\n        \"percentOfTotal\": 0.516045410474238,\n        \"percentOfFirst\": 2.4069908621304146\n    },\n    {\n        \"key\": \"Professional Training & Coaching\",\n        \"docCount\": 16044,\n        \"percentOfTotal\": 0.5086896390789306,\n        \"percentOfFirst\": 2.372681333989947\n    },\n    {\n        \"key\": \"Hospitality\",\n        \"docCount\": 15799,\n        \"percentOfTotal\": 0.5009216908381965,\n        \"percentOfFirst\": 2.3364492891864352\n    },\n    {\n        \"key\": \"Medical Devices\",\n        \"docCount\": 15218,\n        \"percentOfTotal\": 0.48250055643874135,\n        \"percentOfFirst\": 2.2505275829381084\n    },\n    {\n        \"key\": \"Computer & Network Security\",\n        \"docCount\": 14478,\n        \"percentOfTotal\": 0.45903818216060566,\n        \"percentOfFirst\": 2.141092019041788\n    },\n    {\n        \"key\": \"Public Safety\",\n        \"docCount\": 14347,\n        \"percentOfTotal\": 0.4548847077951519,\n        \"percentOfFirst\": 2.1217189665141962\n    },\n    {\n        \"key\": \"Writing And Editing\",\n        \"docCount\": 14282,\n        \"percentOfTotal\": 0.45282382356801837,\n        \"percentOfFirst\": 2.112106383198979\n    },\n    {\n        \"key\": \"Design\",\n        \"docCount\": 13989,\n        \"percentOfTotal\": 0.44353399159032414,\n        \"percentOfFirst\": 2.0687758153319225\n    }\n]"}],"_postman_id":"86a60bfd-5f41-4337-aa73-a9b72000b7ee"},{"name":"CBSA Chart Endpoint","event":[{"listen":"test","script":{"id":"b07ccd4c-36a8-4584-93bb-ececd74504c1","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentOfFirst');","});",""],"type":"text/javascript"}}],"id":"e1c91c1a-6206-4f70-ad0c-3c5e57eee9a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"human resources\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"industry\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n{\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"Spanish\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"languagesList\"\n    },\n {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n{\n      \"parameterValue\": [\n        \"French\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"languagesList\"\n    },\n{\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    },\n{\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n{\n      \"parameterValue\": [\n        \"US\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"country\"\n    }\n    ]\n}"},"url":"//supplyData/barData/cbsa","description":"<p>This endpoint returns data divided into (up to) 50 bars and lists several values for each: total number of prospects, percent of the total, and percent of the largest result. The record is organized in descending numerical order. </p>\n<p>Here are descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>CBSA data is restricted to US only. If you want to find location data from outside the US, you must use the <a href=\"#Location-Chart-Endpoint\">Location Chart Endpoint</a>.</p>\n<p>Below is a sample query that will return prospects who live in the US, work in the Human Resources industry, and speak either Spanish or French:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"human resources\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"industry\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n{\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"spanish\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"language\"\n    },\n {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n{\n      \"parameterValue\": [\n        \"french\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"language\"\n    },\n{\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    },\n{\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n{\n      \"parameterValue\": [\n        \"US\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"country\"\n    }\n    ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","barData","cbsa"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"3e968a44-9db4-4b45-b9f0-82dd397e923c","name":"Spanish or French speaking HR talent in the US","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"human resources\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"industry\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n{\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"Spanish\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"languagesList\"\n    },\n {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n{\n      \"parameterValue\": [\n        \"French\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"languagesList\"\n    },\n{\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    },\n{\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n{\n      \"parameterValue\": [\n        \"US\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"country\"\n    }\n    ]\n}"},"url":"//supplyData/barData/cbsa"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 16:31:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1999"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=NwlWnKEeBGiWVVxj7TyAQnGEoJLqq74VjCUr1r5a1TCJpdd4b7gaLtwmvmj%2Fss5wZeGCjEk9mxDz75eUrtlYmJdulH8963vQCYvZiDJ%2BFowd%2F1YOxKRqqZcn1V%2BGUWSjKx4cCoqIhu%2Fn62o%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7eff78eaad699c72-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"New York-Newark-Jersey City, NY-NJ-PA\",\n        \"docCount\": 6079,\n        \"percentOfTotal\": 10.831759381347778,\n        \"percentOfFirst\": 100\n    },\n    {\n        \"key\": \"Los Angeles-Long Beach-Anaheim, CA\",\n        \"docCount\": 4005,\n        \"percentOfTotal\": 7.136238908093083,\n        \"percentOfFirst\": 65.88254647145912\n    },\n    {\n        \"key\": \"San Francisco-Oakland-Hayward, CA\",\n        \"docCount\": 2587,\n        \"percentOfTotal\": 4.6096005131677416,\n        \"percentOfFirst\": 42.556341503536764\n    },\n    {\n        \"key\": \"Chicago-Naperville-Elgin, IL-IN-WI\",\n        \"docCount\": 2584,\n        \"percentOfTotal\": 4.604255015858309,\n        \"percentOfFirst\": 42.50699128146076\n    },\n    {\n        \"key\": \"Miami-Fort Lauderdale-West Palm Beach, FL\",\n        \"docCount\": 2584,\n        \"percentOfTotal\": 4.604255015858309,\n        \"percentOfFirst\": 42.50699128146076\n    },\n    {\n        \"key\": \"Washington-Arlington-Alexandria, DC-VA-MD-WV\",\n        \"docCount\": 1749,\n        \"percentOfTotal\": 3.116424931399451,\n        \"percentOfFirst\": 28.771179470307615\n    },\n    {\n        \"key\": \"Houston-The Woodlands-Sugar Land, TX\",\n        \"docCount\": 1747,\n        \"percentOfTotal\": 3.1128612665264956,\n        \"percentOfFirst\": 28.73827932225695\n    },\n    {\n        \"key\": \"Dallas-Fort Worth-Arlington, TX\",\n        \"docCount\": 1702,\n        \"percentOfTotal\": 3.0326788068850004,\n        \"percentOfFirst\": 27.99802599111696\n    },\n    {\n        \"key\": \"Boston-Cambridge-Newton, MA-NH\",\n        \"docCount\": 1377,\n        \"percentOfTotal\": 2.4535832650297564,\n        \"percentOfFirst\": 22.6517519328837\n    },\n    {\n        \"key\": \"Atlanta-Sandy Springs-Roswell, GA\",\n        \"docCount\": 1265,\n        \"percentOfTotal\": 2.2540180321442573,\n        \"percentOfFirst\": 20.80934364204639\n    },\n    {\n        \"key\": \"Seattle-Tacoma-Bellevue, WA\",\n        \"docCount\": 987,\n        \"percentOfTotal\": 1.7586686148034638,\n        \"percentOfFirst\": 16.236223063003784\n    },\n    {\n        \"key\": \"San Diego-Carlsbad, CA\",\n        \"docCount\": 970,\n        \"percentOfTotal\": 1.7283774633833435,\n        \"percentOfFirst\": 15.956571804573121\n    },\n    {\n        \"key\": \"Philadelphia-Camden-Wilmington, PA-NJ-DE-MD\",\n        \"docCount\": 961,\n        \"percentOfTotal\": 1.7123409714550444,\n        \"percentOfFirst\": 15.808521138345123\n    },\n    {\n        \"key\": \"Orlando-Kissimmee-Sanford, FL\",\n        \"docCount\": 960,\n        \"percentOfTotal\": 1.7105591390185666,\n        \"percentOfFirst\": 15.792071064319789\n    },\n    {\n        \"key\": \"Minneapolis-St. Paul-Bloomington, MN-WI\",\n        \"docCount\": 854,\n        \"percentOfTotal\": 1.5216849007519333,\n        \"percentOfFirst\": 14.04836321763448\n    },\n    {\n        \"key\": \"Phoenix-Mesa-Scottsdale, AZ\",\n        \"docCount\": 739,\n        \"percentOfTotal\": 1.3167741705570009,\n        \"percentOfFirst\": 12.156604704721172\n    },\n    {\n        \"key\": \"Denver-Aurora-Lakewood, CO\",\n        \"docCount\": 715,\n        \"percentOfTotal\": 1.2740101920815368,\n        \"percentOfFirst\": 11.761802928113177\n    },\n    {\n        \"key\": \"Austin-Round Rock, TX\",\n        \"docCount\": 703,\n        \"percentOfTotal\": 1.2526282028438045,\n        \"percentOfFirst\": 11.56440203980918\n    },\n    {\n        \"key\": \"San Antonio-New Braunfels, TX\",\n        \"docCount\": 621,\n        \"percentOfTotal\": 1.1065179430526353,\n        \"percentOfFirst\": 10.215495969731863\n    },\n    {\n        \"key\": \"Baltimore-Columbia-Towson, MD\",\n        \"docCount\": 602,\n        \"percentOfTotal\": 1.0726631267595594,\n        \"percentOfFirst\": 9.902944563250534\n    },\n    {\n        \"key\": \"Tampa-St. Petersburg-Clearwater, FL\",\n        \"docCount\": 553,\n        \"percentOfTotal\": 0.9853533373721535,\n        \"percentOfFirst\": 9.096890936009212\n    },\n    {\n        \"key\": \"Detroit-Warren-Dearborn, MI\",\n        \"docCount\": 542,\n        \"percentOfTotal\": 0.9657531805708991,\n        \"percentOfFirst\": 8.915940121730548\n    },\n    {\n        \"key\": \"Charlotte-Concord-Gastonia, NC-SC\",\n        \"docCount\": 516,\n        \"percentOfTotal\": 0.9194255372224795,\n        \"percentOfFirst\": 8.488238197071887\n    },\n    {\n        \"key\": \"Portland-Vancouver-Hillsboro, OR-WA\",\n        \"docCount\": 470,\n        \"percentOfTotal\": 0.8374612451445066,\n        \"percentOfFirst\": 7.731534791906563\n    },\n    {\n        \"key\": \"Milwaukee-Waukesha-West Allis, WI\",\n        \"docCount\": 394,\n        \"percentOfTotal\": 0.7020419799722034,\n        \"percentOfFirst\": 6.481329165981247\n    },\n    {\n        \"key\": \"Columbus, OH\",\n        \"docCount\": 353,\n        \"percentOfTotal\": 0.6289868500766188,\n        \"percentOfFirst\": 5.806876130942589\n    },\n    {\n        \"key\": \"Salt Lake City, UT\",\n        \"docCount\": 327,\n        \"percentOfTotal\": 0.5826592067281993,\n        \"percentOfFirst\": 5.3791742062839285\n    },\n    {\n        \"key\": \"Cincinnati, OH-KY-IN\",\n        \"docCount\": 308,\n        \"percentOfTotal\": 0.5488043904351235,\n        \"percentOfFirst\": 5.066622799802599\n    },\n    {\n        \"key\": \"Indianapolis-Carmel-Anderson, IN\",\n        \"docCount\": 308,\n        \"percentOfTotal\": 0.5488043904351235,\n        \"percentOfFirst\": 5.066622799802599\n    },\n    {\n        \"key\": \"Durham-Chapel Hill, NC\",\n        \"docCount\": 299,\n        \"percentOfTotal\": 0.5327678985068244,\n        \"percentOfFirst\": 4.918572133574601\n    },\n    {\n        \"key\": \"Riverside-San Bernardino-Ontario, CA\",\n        \"docCount\": 277,\n        \"percentOfTotal\": 0.49356758490431557,\n        \"percentOfFirst\": 4.556670505017273\n    },\n    {\n        \"key\": \"Pittsburgh, PA\",\n        \"docCount\": 267,\n        \"percentOfTotal\": 0.47574926053953887,\n        \"percentOfFirst\": 4.392169764763941\n    },\n    {\n        \"key\": \"Nashville-Davidson--Murfreesboro--Franklin, TN\",\n        \"docCount\": 259,\n        \"percentOfTotal\": 0.46149460104771745,\n        \"percentOfFirst\": 4.260569172561277\n    },\n    {\n        \"key\": \"El Paso, TX\",\n        \"docCount\": 237,\n        \"percentOfTotal\": 0.42229428744520864,\n        \"percentOfFirst\": 3.898667544003948\n    },\n    {\n        \"key\": \"Kansas City, MO-KS\",\n        \"docCount\": 237,\n        \"percentOfTotal\": 0.42229428744520864,\n        \"percentOfFirst\": 3.898667544003948\n    },\n    {\n        \"key\": \"Providence-Warwick, RI-MA\",\n        \"docCount\": 208,\n        \"percentOfTotal\": 0.37062114678735614,\n        \"percentOfFirst\": 3.4216153972692878\n    },\n    {\n        \"key\": \"Jacksonville, FL\",\n        \"docCount\": 206,\n        \"percentOfTotal\": 0.3670574819144008,\n        \"percentOfFirst\": 3.3887152492186217\n    },\n    {\n        \"key\": \"Grand Rapids-Wyoming, MI\",\n        \"docCount\": 199,\n        \"percentOfTotal\": 0.35458465485905705,\n        \"percentOfFirst\": 3.2735647310412896\n    },\n    {\n        \"key\": \"Sacramento--Roseville--Arden-Arcade, CA\",\n        \"docCount\": 199,\n        \"percentOfTotal\": 0.35458465485905705,\n        \"percentOfFirst\": 3.2735647310412896\n    },\n    {\n        \"key\": \"Virginia Beach-Norfolk-Newport News, VA-NC\",\n        \"docCount\": 196,\n        \"percentOfTotal\": 0.34923915754962404,\n        \"percentOfFirst\": 3.2242145089652903\n    },\n    {\n        \"key\": \"Provo-Orem, UT\",\n        \"docCount\": 188,\n        \"percentOfTotal\": 0.33498449805780267,\n        \"percentOfFirst\": 3.0926139167626254\n    },\n    {\n        \"key\": \"Las Vegas-Henderson-Paradise, NV\",\n        \"docCount\": 187,\n        \"percentOfTotal\": 0.33320266562132494,\n        \"percentOfFirst\": 3.076163842737292\n    },\n    {\n        \"key\": \"Rochester, NY\",\n        \"docCount\": 183,\n        \"percentOfTotal\": 0.32607533587541426,\n        \"percentOfFirst\": 3.01036354663596\n    },\n    {\n        \"key\": \"Raleigh, NC\",\n        \"docCount\": 172,\n        \"percentOfTotal\": 0.3064751790741599,\n        \"percentOfFirst\": 2.8294127323572957\n    },\n    {\n        \"key\": \"Cleveland-Elyria, OH\",\n        \"docCount\": 169,\n        \"percentOfTotal\": 0.3011296817647268,\n        \"percentOfFirst\": 2.7800625102812964\n    },\n    {\n        \"key\": \"Richmond, VA\",\n        \"docCount\": 164,\n        \"percentOfTotal\": 0.29222051958233847,\n        \"percentOfFirst\": 2.697812140154631\n    },\n    {\n        \"key\": \"St. Louis, MO-IL\",\n        \"docCount\": 162,\n        \"percentOfTotal\": 0.2886568547093831,\n        \"percentOfFirst\": 2.6649119921039643\n    },\n    {\n        \"key\": \"Greensboro-High Point, NC\",\n        \"docCount\": 157,\n        \"percentOfTotal\": 0.2797476925269948,\n        \"percentOfFirst\": 2.582661621977299\n    },\n    {\n        \"key\": \"Allentown-Bethlehem-Easton, PA-NJ\",\n        \"docCount\": 156,\n        \"percentOfTotal\": 0.2779658600905171,\n        \"percentOfFirst\": 2.5662115479519656\n    },\n    {\n        \"key\": \"Akron, OH\",\n        \"docCount\": 155,\n        \"percentOfTotal\": 0.27618402765403943,\n        \"percentOfFirst\": 2.5497614739266328\n    }\n]"}],"_postman_id":"e1c91c1a-6206-4f70-ad0c-3c5e57eee9a4"},{"name":"Location Chart Endpoint","event":[{"listen":"test","script":{"id":"d5878da8-cb0f-4b56-a24f-a0645af683fd","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentOfFirst');","});",""],"type":"text/javascript"}}],"id":"45f006ba-ceb5-42da-a7ee-eff045db5da1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"EMEA\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"region\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"java\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"python\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"php\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"c#\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n  ]\n}"},"url":"//supplyData/barData/location","description":"<p>This endpoint returns data divided into (up to) 50 bars and lists several values for each: total number of prospects, percent of the total, and percent of the largest result. The record is organized in descending numerical order.</p>\n<p>Location data is worldwide. If you want to see location data from the US ONLY, you should use the <a href=\"#CBSA-Chart-Endpoint\">CBSA Chart Endpoint</a> above.</p>\n<p>Here are the descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return the list of areas in Europe, the Middle East, and Africa who have the largest population of prospects with java or similar skills:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"EMEA\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"region\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"java\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"python\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"php\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"c#\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n  ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","barData","location"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"8552cdd0-0f77-414e-b674-bfb3fb308abf","name":"Java developers in EMEA","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"EMEA\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"region\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"java\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"python\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"php\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"c#\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n  ]\n}"},"url":"//supplyData/barData/location"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 16:32:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1998"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Qc2Pwyaj2GFAF0hvuZQ0MV%2Bw3lu1iPNeOTXEM%2B%2FvgMPpgRb4miDQcvn2tqPfUQtpYvF%2BpkDCKuSYyCKmbl0Glf8IWcbiR4FoXn5PXChpW6vnPwq0A6kvfBDtW22hDpY9XhUosotsgML5j4c%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7eff79b878d328ca-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"London United Kingdom\",\n        \"docCount\": 287894,\n        \"percentOfTotal\": 4.042983753298421,\n        \"percentOfFirst\": 100\n    },\n    {\n        \"key\": \"Paris Area France\",\n        \"docCount\": 239710,\n        \"percentOfTotal\": 3.366321060887565,\n        \"percentOfFirst\": 83.26328440328732\n    },\n    {\n        \"key\": \"United Arab Emirates\",\n        \"docCount\": 108941,\n        \"percentOfTotal\": 1.5298918805813366,\n        \"percentOfFirst\": 37.840663577566744\n    },\n    {\n        \"key\": \"Israel\",\n        \"docCount\": 88686,\n        \"percentOfTotal\": 1.2454447023731785,\n        \"percentOfFirst\": 30.805087983771806\n    },\n    {\n        \"key\": \"Johannesburg Area South Africa\",\n        \"docCount\": 68277,\n        \"percentOfTotal\": 0.9588348549256196,\n        \"percentOfFirst\": 23.716020479759912\n    },\n    {\n        \"key\": \"Saudi Arabia\",\n        \"docCount\": 64572,\n        \"percentOfTotal\": 0.9068044034192644,\n        \"percentOfFirst\": 22.4290884839559\n    },\n    {\n        \"key\": \"Madrid Area Spain\",\n        \"docCount\": 59911,\n        \"percentOfTotal\": 0.8413485506605269,\n        \"percentOfFirst\": 20.810089824727157\n    },\n    {\n        \"key\": \"Barcelona Area Spain\",\n        \"docCount\": 59543,\n        \"percentOfTotal\": 0.8361806137767648,\n        \"percentOfFirst\": 20.682265000312615\n    },\n    {\n        \"key\": \"Milan Area Italy\",\n        \"docCount\": 58587,\n        \"percentOfTotal\": 0.8227552125243827,\n        \"percentOfFirst\": 20.350198336887882\n    },\n    {\n        \"key\": \"Istanbul\",\n        \"docCount\": 58070,\n        \"percentOfTotal\": 0.8154948229349669,\n        \"percentOfFirst\": 20.170618352588104\n    },\n    {\n        \"key\": \"Rome Area Italy\",\n        \"docCount\": 50341,\n        \"percentOfTotal\": 0.7069541050692124,\n        \"percentOfFirst\": 17.48594968981639\n    },\n    {\n        \"key\": \"Warsaw Masovian District Poland\",\n        \"docCount\": 48218,\n        \"percentOfTotal\": 0.6771401648403346,\n        \"percentOfFirst\": 16.74852549896837\n    },\n    {\n        \"key\": \"Lisbon Area Portugal\",\n        \"docCount\": 44673,\n        \"percentOfTotal\": 0.6273566424138759,\n        \"percentOfFirst\": 15.517169513779377\n    },\n    {\n        \"key\": \"Dubai United Arab Emirates\",\n        \"docCount\": 44334,\n        \"percentOfTotal\": 0.6225959614258451,\n        \"percentOfFirst\": 15.399417841288807\n    },\n    {\n        \"key\": \"Moscow Russian Federation\",\n        \"docCount\": 42350,\n        \"percentOfTotal\": 0.5947340408351274,\n        \"percentOfFirst\": 14.710275309662585\n    },\n    {\n        \"key\": \"Stockholm Sweden\",\n        \"docCount\": 41418,\n        \"percentOfTotal\": 0.5816456789447297,\n        \"percentOfFirst\": 14.386545047830104\n    },\n    {\n        \"key\": \"Cairo\",\n        \"docCount\": 39224,\n        \"percentOfTotal\": 0.5508346639366478,\n        \"percentOfFirst\": 13.624459002271669\n    },\n    {\n        \"key\": \"Madrid\",\n        \"docCount\": 34530,\n        \"percentOfTotal\": 0.48491538205518175,\n        \"percentOfFirst\": 11.993997790853578\n    },\n    {\n        \"key\": \"Zurich Area Switzerland\",\n        \"docCount\": 33845,\n        \"percentOfTotal\": 0.4752957169318745,\n        \"percentOfFirst\": 11.756062995408032\n    },\n    {\n        \"key\": \"Greater Madrid Metropolitan Area\",\n        \"docCount\": 32963,\n        \"percentOfTotal\": 0.4629095203789446,\n        \"percentOfFirst\": 11.449700236892745\n    },\n    {\n        \"key\": \"Berlin\",\n        \"docCount\": 32109,\n        \"percentOfTotal\": 0.45091653641499657,\n        \"percentOfFirst\": 11.153063280235086\n    },\n    {\n        \"key\": \"Manchester United Kingdom\",\n        \"docCount\": 30620,\n        \"percentOfTotal\": 0.43000605266520897,\n        \"percentOfFirst\": 10.635859031449074\n    },\n    {\n        \"key\": \"Munich Area Germany\",\n        \"docCount\": 30340,\n        \"percentOfTotal\": 0.42607392677538997,\n        \"percentOfFirst\": 10.538601012872794\n    },\n    {\n        \"key\": \"Nairobi\",\n        \"docCount\": 29910,\n        \"percentOfTotal\": 0.42003530487316787,\n        \"percentOfFirst\": 10.389240484344933\n    },\n    {\n        \"key\": \"Ankara Turkey\",\n        \"docCount\": 29301,\n        \"percentOfTotal\": 0.4114829310628115,\n        \"percentOfFirst\": 10.17770429394152\n    },\n    {\n        \"key\": \"Copenhagen Area Capital Region Denmark\",\n        \"docCount\": 29127,\n        \"percentOfTotal\": 0.40903939568842396,\n        \"percentOfFirst\": 10.117265382397688\n    },\n    {\n        \"key\": \"Tehran\",\n        \"docCount\": 28567,\n        \"percentOfTotal\": 0.4011751439087859,\n        \"percentOfFirst\": 9.922749345245125\n    },\n    {\n        \"key\": \"Amsterdam Area Netherlands\",\n        \"docCount\": 28349,\n        \"percentOfTotal\": 0.3981137030374268,\n        \"percentOfFirst\": 9.847027030782163\n    },\n    {\n        \"key\": \"Hamburg Area Germany\",\n        \"docCount\": 28270,\n        \"percentOfTotal\": 0.39700428180422787,\n        \"percentOfFirst\": 9.819586375540998\n    },\n    {\n        \"key\": \"Dublin\",\n        \"docCount\": 27630,\n        \"percentOfTotal\": 0.38801656548464153,\n        \"percentOfFirst\": 9.597282333080926\n    },\n    {\n        \"key\": \"The Hague Area Netherlands\",\n        \"docCount\": 26825,\n        \"percentOfTotal\": 0.37671170355141187,\n        \"percentOfFirst\": 9.317665529674116\n    },\n    {\n        \"key\": \"Prague The Capital Czech Republic\",\n        \"docCount\": 26702,\n        \"percentOfTotal\": 0.37498437682124136,\n        \"percentOfFirst\": 9.274941471513822\n    },\n    {\n        \"key\": \"Istanbul Turkey\",\n        \"docCount\": 26466,\n        \"percentOfTotal\": 0.3716701564283939,\n        \"percentOfFirst\": 9.19296685585667\n    },\n    {\n        \"key\": \"Bristol United Kingdom\",\n        \"docCount\": 25554,\n        \"percentOfTotal\": 0.35886266067298334,\n        \"percentOfFirst\": 8.876183595351067\n    },\n    {\n        \"key\": \"Brussels Area Belgium\",\n        \"docCount\": 24936,\n        \"percentOfTotal\": 0.3501838971018828,\n        \"percentOfFirst\": 8.661521254350559\n    },\n    {\n        \"key\": \"Lagos\",\n        \"docCount\": 23779,\n        \"percentOfTotal\": 0.3339357911928806,\n        \"percentOfFirst\": 8.25963722759071\n    },\n    {\n        \"key\": \"Budapest\",\n        \"docCount\": 23114,\n        \"percentOfTotal\": 0.3245969922045604,\n        \"percentOfFirst\": 8.028649433472042\n    },\n    {\n        \"key\": \"Amsterdam\",\n        \"docCount\": 22484,\n        \"percentOfTotal\": 0.3157497089524676,\n        \"percentOfFirst\": 7.809818891675408\n    },\n    {\n        \"key\": \"Bucharest\",\n        \"docCount\": 22406,\n        \"percentOfTotal\": 0.31465433102601803,\n        \"percentOfFirst\": 7.782725586500587\n    },\n    {\n        \"key\": \"Cape Town Area South Africa\",\n        \"docCount\": 21258,\n        \"percentOfTotal\": 0.29853261487776006,\n        \"percentOfFirst\": 7.383967710337832\n    },\n    {\n        \"key\": \"Lille Area France\",\n        \"docCount\": 21234,\n        \"percentOfTotal\": 0.2981955755157755,\n        \"percentOfFirst\": 7.37563130874558\n    },\n    {\n        \"key\": \"Geneva Area Switzerland\",\n        \"docCount\": 20434,\n        \"percentOfTotal\": 0.28696093011629265,\n        \"percentOfFirst\": 7.09775125567049\n    },\n    {\n        \"key\": \"Copenhagen Capital Region Denmark\",\n        \"docCount\": 19230,\n        \"percentOfTotal\": 0.27005278879007083,\n        \"percentOfFirst\": 6.6795417757924795\n    },\n    {\n        \"key\": \"Greater Colchester Area\",\n        \"docCount\": 19010,\n        \"percentOfTotal\": 0.26696326130521303,\n        \"percentOfFirst\": 6.603124761196829\n    },\n    {\n        \"key\": \"Kyiv\",\n        \"docCount\": 18562,\n        \"percentOfTotal\": 0.2606718598815026,\n        \"percentOfFirst\": 6.447511931474779\n    },\n    {\n        \"key\": \"Qatar\",\n        \"docCount\": 18472,\n        \"percentOfTotal\": 0.25940796227406077,\n        \"percentOfFirst\": 6.416250425503831\n    },\n    {\n        \"key\": \"Edinburgh United Kingdom\",\n        \"docCount\": 18240,\n        \"percentOfTotal\": 0.2561499151082107,\n        \"percentOfFirst\": 6.335665210112055\n    },\n    {\n        \"key\": \"Greater Barcelona Metropolitan Area\",\n        \"docCount\": 18167,\n        \"percentOfTotal\": 0.25512475371550786,\n        \"percentOfFirst\": 6.310308655268953\n    },\n    {\n        \"key\": \"Porto Area Portugal\",\n        \"docCount\": 17935,\n        \"percentOfTotal\": 0.2518667065496578,\n        \"percentOfFirst\": 6.229723439877177\n    },\n    {\n        \"key\": \"Vienna\",\n        \"docCount\": 17613,\n        \"percentOfTotal\": 0.24734476177636597,\n        \"percentOfFirst\": 6.117876718514453\n    }\n]"}],"_postman_id":"45f006ba-ceb5-42da-a7ee-eff045db5da1"},{"name":"Education Chart Endpoint","event":[{"listen":"test","script":{"id":"69dc1c41-7ce8-4e98-9dba-0cac051910ff","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentOfFirst');","});",""],"type":"text/javascript"}}],"id":"2facbf9a-9ec3-4103-a12a-77129fd5855c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"GB\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"country\"\n        },\n{\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n{\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n{\n            \"parameterValue\": [\n                \"ey\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"deloitte\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"kpmg\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"pwc\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}"},"url":"//supplyData/barData/education","description":"<p>This endpoint returns data divided into (up to) 50 bars and lists several values for each: total number of prospects, percent of the total, and percent of the largest result. The record is organized in descending numerical order. <strong>Some universities may appear more than once in the list if they have different names in different languages, e.g. University of Hamburg and Universität Hamburg.</strong></p>\n<p>Here are the descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return the list of colleges and universities attended by prospects who live in the UK and currently work at one of the Big 4 accounting firms:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"GB\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"country\"\n        },\n{\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n{\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n{\n            \"parameterValue\": [\n                \"ey\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"deloitte\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"kpmg\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"pwc\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","barData","education"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"46369c8e-9499-4cb6-bca0-fee205445739","name":"Big 4 Employees GB","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"GB\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"country\"\n        },\n{\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n{\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n{\n            \"parameterValue\": [\n                \"ey\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"deloitte\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"kpmg\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"pwc\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}"},"url":"//supplyData/barData/education"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 16:32:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1997"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=b5RWbNcEGaTXaKqKD7mbVgYxgAFm6FxPq5HNZv4e7D2AoYRhIfLzxYC00NDo34EkoCFnkSVU65njIPp0nV3Ra64RuC%2BF6pz089%2BvPTgP7V7eG0N1kAnY2ueKLquYATAecGVGirmQNQQngOE%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7eff7a5f5bef5788-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"Icaew\",\n        \"docCount\": 3530,\n        \"percentOfTotal\": 4.832835902631363,\n        \"percentOfFirst\": 100\n    },\n    {\n        \"key\": \"University Of Nottingham\",\n        \"docCount\": 1819,\n        \"percentOfTotal\": 2.4903480189480027,\n        \"percentOfFirst\": 51.52974504249292\n    },\n    {\n        \"key\": \"The University Of Manchester\",\n        \"docCount\": 1714,\n        \"percentOfTotal\": 2.3465951096629336,\n        \"percentOfFirst\": 48.555240793201136\n    },\n    {\n        \"key\": \"University Of Warwick\",\n        \"docCount\": 1569,\n        \"percentOfTotal\": 2.148079187316886,\n        \"percentOfFirst\": 44.447592067988666\n    },\n    {\n        \"key\": \"Durham University\",\n        \"docCount\": 1540,\n        \"percentOfTotal\": 2.1083760028476766,\n        \"percentOfFirst\": 43.626062322946176\n    },\n    {\n        \"key\": \"University Of Leeds\",\n        \"docCount\": 1535,\n        \"percentOfTotal\": 2.1015306262150544,\n        \"percentOfFirst\": 43.48441926345609\n    },\n    {\n        \"key\": \"Queen's University Belfast\",\n        \"docCount\": 1532,\n        \"percentOfTotal\": 2.097423400235481,\n        \"percentOfFirst\": 43.39943342776204\n    },\n    {\n        \"key\": \"University Of Bristol\",\n        \"docCount\": 1443,\n        \"percentOfTotal\": 1.9755756961748034,\n        \"percentOfFirst\": 40.87818696883853\n    },\n    {\n        \"key\": \"Institute Of Chartered Accountants In England And Wales\",\n        \"docCount\": 1365,\n        \"percentOfTotal\": 1.8687878207058952,\n        \"percentOfFirst\": 38.668555240793204\n    },\n    {\n        \"key\": \"Acca\",\n        \"docCount\": 1362,\n        \"percentOfTotal\": 1.8646805947263219,\n        \"percentOfFirst\": 38.58356940509915\n    },\n    {\n        \"key\": \"Ucl\",\n        \"docCount\": 1306,\n        \"percentOfTotal\": 1.7880123764409517,\n        \"percentOfFirst\": 36.9971671388102\n    },\n    {\n        \"key\": \"University Of Birmingham\",\n        \"docCount\": 1292,\n        \"percentOfTotal\": 1.7688453218696092,\n        \"percentOfFirst\": 36.60056657223796\n    },\n    {\n        \"key\": \"The London School Of Economics And Political Science (lse)\",\n        \"docCount\": 1288,\n        \"percentOfTotal\": 1.7633690205635113,\n        \"percentOfFirst\": 36.48725212464589\n    },\n    {\n        \"key\": \"University Of Cambridge\",\n        \"docCount\": 1233,\n        \"percentOfTotal\": 1.6880698776046659,\n        \"percentOfFirst\": 34.92917847025496\n    },\n    {\n        \"key\": \"Ulster University\",\n        \"docCount\": 1195,\n        \"percentOfTotal\": 1.636045015196736,\n        \"percentOfFirst\": 33.85269121813031\n    },\n    {\n        \"key\": \"University Of Exeter\",\n        \"docCount\": 1187,\n        \"percentOfTotal\": 1.6250924125845403,\n        \"percentOfFirst\": 33.626062322946176\n    },\n    {\n        \"key\": \"University Of Oxford\",\n        \"docCount\": 1122,\n        \"percentOfTotal\": 1.5361025163604503,\n        \"percentOfFirst\": 31.78470254957507\n    },\n    {\n        \"key\": \"University Of Bath\",\n        \"docCount\": 1015,\n        \"percentOfTotal\": 1.3896114564223323,\n        \"percentOfFirst\": 28.753541076487252\n    },\n    {\n        \"key\": \"Newcastle University\",\n        \"docCount\": 924,\n        \"percentOfTotal\": 1.2650256017086061,\n        \"percentOfFirst\": 26.175637393767705\n    },\n    {\n        \"key\": \"The University Of Edinburgh\",\n        \"docCount\": 920,\n        \"percentOfTotal\": 1.2595493004025082,\n        \"percentOfFirst\": 26.062322946175637\n    },\n    {\n        \"key\": \"Imperial College London\",\n        \"docCount\": 891,\n        \"percentOfTotal\": 1.2198461159332987,\n        \"percentOfFirst\": 25.240793201133144\n    },\n    {\n        \"key\": \"The University Of Sheffield\",\n        \"docCount\": 870,\n        \"percentOfTotal\": 1.1910955340762848,\n        \"percentOfFirst\": 24.64589235127479\n    },\n    {\n        \"key\": \"Cardiff University / Prifysgol Caerdydd\",\n        \"docCount\": 856,\n        \"percentOfTotal\": 1.1719284795049423,\n        \"percentOfFirst\": 24.24929178470255\n    },\n    {\n        \"key\": \"King's College London\",\n        \"docCount\": 835,\n        \"percentOfTotal\": 1.1431778976479285,\n        \"percentOfFirst\": 23.654390934844194\n    },\n    {\n        \"key\": \"University Of Southampton\",\n        \"docCount\": 828,\n        \"percentOfTotal\": 1.1335943703622573,\n        \"percentOfFirst\": 23.456090651558075\n    },\n    {\n        \"key\": \"Loughborough University\",\n        \"docCount\": 809,\n        \"percentOfTotal\": 1.1075819391582924,\n        \"percentOfFirst\": 22.91784702549575\n    },\n    {\n        \"key\": \"University Of York\",\n        \"docCount\": 732,\n        \"percentOfTotal\": 1.0021631390159087,\n        \"percentOfFirst\": 20.73654390934844\n    },\n    {\n        \"key\": \"Icas\",\n        \"docCount\": 656,\n        \"percentOfTotal\": 0.8981134142000493,\n        \"percentOfFirst\": 18.58356940509915\n    },\n    {\n        \"key\": \"University Of Liverpool\",\n        \"docCount\": 625,\n        \"percentOfTotal\": 0.8556720790777909,\n        \"percentOfFirst\": 17.705382436260624\n    },\n    {\n        \"key\": \"Lancaster University\",\n        \"docCount\": 618,\n        \"percentOfTotal\": 0.8460885517921196,\n        \"percentOfFirst\": 17.507082152974505\n    },\n    {\n        \"key\": \"Queen Mary University Of London\",\n        \"docCount\": 608,\n        \"percentOfTotal\": 0.8323977985268749,\n        \"percentOfFirst\": 17.223796033994333\n    },\n    {\n        \"key\": \"Bpp University\",\n        \"docCount\": 604,\n        \"percentOfTotal\": 0.8269214972207771,\n        \"percentOfFirst\": 17.110481586402265\n    },\n    {\n        \"key\": \"University Of Strathclyde\",\n        \"docCount\": 579,\n        \"percentOfTotal\": 0.7926946140576655,\n        \"percentOfFirst\": 16.402266288951843\n    },\n    {\n        \"key\": \"University Of Warwick - Warwick Business School\",\n        \"docCount\": 577,\n        \"percentOfTotal\": 0.7899564634046166,\n        \"percentOfFirst\": 16.345609065155806\n    },\n    {\n        \"key\": \"The Institute Of Chartered Accountants Of India\",\n        \"docCount\": 556,\n        \"percentOfTotal\": 0.7612058815476027,\n        \"percentOfFirst\": 15.75070821529745\n    },\n    {\n        \"key\": \"Aston University\",\n        \"docCount\": 447,\n        \"percentOfTotal\": 0.611976670956436,\n        \"percentOfFirst\": 12.662889518413598\n    },\n    {\n        \"key\": \"Oxford Brookes University\",\n        \"docCount\": 442,\n        \"percentOfTotal\": 0.6051312943238137,\n        \"percentOfFirst\": 12.521246458923512\n    },\n    {\n        \"key\": \"University Of Leicester\",\n        \"docCount\": 438,\n        \"percentOfTotal\": 0.5996549930177159,\n        \"percentOfFirst\": 12.407932011331445\n    },\n    {\n        \"key\": \"The University Of Birmingham\",\n        \"docCount\": 432,\n        \"percentOfTotal\": 0.591440541058569,\n        \"percentOfFirst\": 12.237960339943342\n    },\n    {\n        \"key\": \"Icas - The Professional Body Of Cas\",\n        \"docCount\": 427,\n        \"percentOfTotal\": 0.5845951644259467,\n        \"percentOfFirst\": 12.096317280453258\n    },\n    {\n        \"key\": \"University Of Reading\",\n        \"docCount\": 421,\n        \"percentOfTotal\": 0.5763807124667999,\n        \"percentOfFirst\": 11.926345609065155\n    },\n    {\n        \"key\": \"University Of St Andrews\",\n        \"docCount\": 414,\n        \"percentOfTotal\": 0.5667971851811286,\n        \"percentOfFirst\": 11.728045325779037\n    },\n    {\n        \"key\": \"Cass Business School\",\n        \"docCount\": 408,\n        \"percentOfTotal\": 0.5585827332219818,\n        \"percentOfFirst\": 11.558073654390935\n    },\n    {\n        \"key\": \"University Of Surrey\",\n        \"docCount\": 398,\n        \"percentOfTotal\": 0.5448919799567372,\n        \"percentOfFirst\": 11.274787535410765\n    },\n    {\n        \"key\": \"Northumbria University\",\n        \"docCount\": 396,\n        \"percentOfTotal\": 0.5421538293036883,\n        \"percentOfFirst\": 11.21813031161473\n    },\n    {\n        \"key\": \"University Of Kent\",\n        \"docCount\": 389,\n        \"percentOfTotal\": 0.532570302018017,\n        \"percentOfFirst\": 11.019830028328611\n    },\n    {\n        \"key\": \"University Of Glasgow\",\n        \"docCount\": 375,\n        \"percentOfTotal\": 0.5134032474466745,\n        \"percentOfFirst\": 10.623229461756374\n    },\n    {\n        \"key\": \"University Of Westminster\",\n        \"docCount\": 374,\n        \"percentOfTotal\": 0.51203417212015,\n        \"percentOfFirst\": 10.594900849858357\n    },\n    {\n        \"key\": \"Institute Of Chartered Accountants Of Scotland\",\n        \"docCount\": 349,\n        \"percentOfTotal\": 0.4778072889570384,\n        \"percentOfFirst\": 9.886685552407933\n    },\n    {\n        \"key\": \"Bpp Law School\",\n        \"docCount\": 348,\n        \"percentOfTotal\": 0.476438213630514,\n        \"percentOfFirst\": 9.858356940509916\n    }\n]"}],"_postman_id":"2facbf9a-9ec3-4103-a12a-77129fd5855c"},{"name":"Company Chart Endpoint","event":[{"listen":"test","script":{"id":"fbcb42ec-f19e-47cf-a827-e7555f68b325","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentOfFirst');","});",""],"type":"text/javascript"}}],"id":"9f4662af-117e-4e07-b652-43170dabd2c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"APAC\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"region\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"[]\"\n            ],\n            \"parameterType\": \"bool\",\n            \"parameterKey\": \"female\"\n        },\n {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n         {\n            \"parameterValue\": [\n                \"NOT\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"NOT\"\n        },\n        {\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n                 {\n            \"parameterValue\": [\n                \"freelancer\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n         {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n         {\n            \"parameterValue\": [\n                \"not in the workforce\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n                 {\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}\n"},"url":"//supplyData/barData/company","description":"<p>This endpoint returns data divided into (up to) 50 bars and lists several values for each: total number of prospects, percent of the total, and percent of the largest result. The record is organized in descending numerical order. <strong>Categories such as Freelancer, None, Self employed, and similar company names are included since they represent \"companies\" where people claim to work. To exclude them, refine your search to list \"NOT (Self employed OR None OR Freelancer OR N/A OR etc.)\".</strong></p>\n<p>Here are the descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return the list of companies that employ the most women in the Asia Pacific region:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"APAC\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"region\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"[]\"\n            ],\n            \"parameterType\": \"bool\",\n            \"parameterKey\": \"female\"\n        }\n    ]\n}\n\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","barData","company"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"478857e3-95a3-4601-8737-8a2da70db120","name":"Women in APAC","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"APAC\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"region\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"[]\"\n            ],\n            \"parameterType\": \"bool\",\n            \"parameterKey\": \"female\"\n        },\n {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n         {\n            \"parameterValue\": [\n                \"NOT\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"NOT\"\n        },\n        {\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n                 {\n            \"parameterValue\": [\n                \"freelancer\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n         {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n         {\n            \"parameterValue\": [\n                \"not in the workforce\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n                 {\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}\n"},"url":"//supplyData/barData/company"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 16:33:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1999"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=vBKPJo8uo6d0gJCWPjTFxWPuCUTV7XZQMood01jpz3D6Fo3SG1Sehti19gBdmVWa4%2BZS%2FwC6v1%2BXn8h0PofYzpfYNBv7itXx6K968aLM5wYz1iFCSMfa57aLDAP5eRSfqqLTj6VyH0gkkb0%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7eff7b499af93ae4-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"Tata Sons Private Limited\",\n        \"docCount\": 195273,\n        \"percentOfTotal\": 0.5235544962068555,\n        \"percentOfFirst\": 100\n    },\n    {\n        \"key\": \"Accenture plc\",\n        \"docCount\": 130391,\n        \"percentOfTotal\": 0.34959668932677884,\n        \"percentOfFirst\": 66.77369631234221\n    },\n    {\n        \"key\": \"Infosys Ltd\",\n        \"docCount\": 95603,\n        \"percentOfTotal\": 0.2563251473622262,\n        \"percentOfFirst\": 48.95863739482673\n    },\n    {\n        \"key\": \"Cognizant Technology Solutions Corporation\",\n        \"docCount\": 92515,\n        \"percentOfTotal\": 0.2480457831680633,\n        \"percentOfFirst\": 47.37726157738141\n    },\n    {\n        \"key\": \"Amazon.com, Inc.\",\n        \"docCount\": 80526,\n        \"percentOfTotal\": 0.21590158066682663,\n        \"percentOfFirst\": 41.237651902720806\n    },\n    {\n        \"key\": \"International Business Machines Corporation\",\n        \"docCount\": 72855,\n        \"percentOfTotal\": 0.19533454610289416,\n        \"percentOfFirst\": 37.30930543393096\n    },\n    {\n        \"key\": \"Capgemini SE\",\n        \"docCount\": 57726,\n        \"percentOfTotal\": 0.1547715600622561,\n        \"percentOfFirst\": 29.561690556298107\n    },\n    {\n        \"key\": \"Wipro Limited\",\n        \"docCount\": 49503,\n        \"percentOfTotal\": 0.13272453552579191,\n        \"percentOfFirst\": 25.35066291806855\n    },\n    {\n        \"key\": \"Deloitte Touche Tohmatsu Limited\",\n        \"docCount\": 45604,\n        \"percentOfTotal\": 0.12227076577415943,\n        \"percentOfFirst\": 23.353971107116703\n    },\n    {\n        \"key\": \"HCL Enterprise\",\n        \"docCount\": 45485,\n        \"percentOfTotal\": 0.12195170996486364,\n        \"percentOfFirst\": 23.29303078254546\n    },\n    {\n        \"key\": \"General Electric Company\",\n        \"docCount\": 40251,\n        \"percentOfTotal\": 0.10791861663835828,\n        \"percentOfFirst\": 20.612680708546495\n    },\n    {\n        \"key\": \"Housing Development Finance Corporation Limited\",\n        \"docCount\": 39810,\n        \"percentOfTotal\": 0.10673623334508567,\n        \"percentOfFirst\": 20.386843035135424\n    },\n    {\n        \"key\": \"Mahindra Group\",\n        \"docCount\": 39487,\n        \"percentOfTotal\": 0.10587022471985426,\n        \"percentOfFirst\": 20.22143358272777\n    },\n    {\n        \"key\": \"Ernst & Young Global Limited\",\n        \"docCount\": 39446,\n        \"percentOfTotal\": 0.10576029792841621,\n        \"percentOfFirst\": 20.200437336446925\n    },\n    {\n        \"key\": \"Upwork Inc.\",\n        \"docCount\": 38209,\n        \"percentOfTotal\": 0.1024437261964928,\n        \"percentOfFirst\": 19.566965223046708\n    },\n    {\n        \"key\": \"Larsen & Toubro Limited\",\n        \"docCount\": 36670,\n        \"percentOfTotal\": 0.09831744980568428,\n        \"percentOfFirst\": 18.778837832163177\n    },\n    {\n        \"key\": \"ICICI Bank Limited\",\n        \"docCount\": 35225,\n        \"percentOfTotal\": 0.0944432006928069,\n        \"percentOfFirst\": 18.038848176655247\n    },\n    {\n        \"key\": \"HSBC Holdings plc\",\n        \"docCount\": 29298,\n        \"percentOfTotal\": 0.07855207647687315,\n        \"percentOfFirst\": 15.00361033015317\n    },\n    {\n        \"key\": \"Microsoft Corporation\",\n        \"docCount\": 28079,\n        \"percentOfTotal\": 0.07528376528753229,\n        \"percentOfFirst\": 14.379356080973816\n    },\n    {\n        \"key\": \"Khazanah Nasional Berhad\",\n        \"docCount\": 27746,\n        \"percentOfTotal\": 0.07439094524975501,\n        \"percentOfFirst\": 14.208825592887905\n    },\n    {\n        \"key\": \"PricewaterhouseCoopers Company\",\n        \"docCount\": 26040,\n        \"percentOfTotal\": 0.06981691826943057,\n        \"percentOfFirst\": 13.335176906177505\n    },\n    {\n        \"key\": \"Genpact Limited\",\n        \"docCount\": 25928,\n        \"percentOfTotal\": 0.06951663044891689,\n        \"percentOfFirst\": 13.277821306581043\n    },\n    {\n        \"key\": \"Synnex Corporation\",\n        \"docCount\": 25099,\n        \"percentOfTotal\": 0.06729396434886474,\n        \"percentOfFirst\": 12.853287448853656\n    },\n    {\n        \"key\": \"Woolworths Group Limited\",\n        \"docCount\": 24913,\n        \"percentOfTotal\": 0.06679527207551167,\n        \"percentOfFirst\": 12.758036185238103\n    },\n    {\n        \"key\": \"Royal Dutch Shell Plc\",\n        \"docCount\": 22750,\n        \"percentOfTotal\": 0.06099596354184122,\n        \"percentOfFirst\": 11.650356168031422\n    },\n    {\n        \"key\": \"Dell Technologies Inc.\",\n        \"docCount\": 22418,\n        \"percentOfTotal\": 0.06010582464531852,\n        \"percentOfFirst\": 11.480337783513338\n    },\n    {\n        \"key\": \"Reliance Industries Limited\",\n        \"docCount\": 22233,\n        \"percentOfTotal\": 0.05960981351322004,\n        \"percentOfFirst\": 11.38559862346561\n    },\n    {\n        \"key\": \"KPMG International\",\n        \"docCount\": 22203,\n        \"percentOfTotal\": 0.059529379275582446,\n        \"percentOfFirst\": 11.370235516430842\n    },\n    {\n        \"key\": \"J P Morgan Chase & Co\",\n        \"docCount\": 21486,\n        \"percentOfTotal\": 0.057607000996043975,\n        \"percentOfFirst\": 11.003057258299918\n    },\n    {\n        \"key\": \"Citigroup Inc.\",\n        \"docCount\": 20906,\n        \"percentOfTotal\": 0.05605193906838385,\n        \"percentOfFirst\": 10.706037188961096\n    },\n    {\n        \"key\": \"Apple Inc.\",\n        \"docCount\": 20536,\n        \"percentOfTotal\": 0.05505991680418687,\n        \"percentOfFirst\": 10.516558868865639\n    },\n    {\n        \"key\": \"Oracle Corporation\",\n        \"docCount\": 20048,\n        \"percentOfTotal\": 0.05375151987194869,\n        \"percentOfFirst\": 10.266652327766767\n    },\n    {\n        \"key\": \"Alphabet Inc.\",\n        \"docCount\": 19897,\n        \"percentOfTotal\": 0.053346667542506145,\n        \"percentOfFirst\": 10.189324689025108\n    },\n    {\n        \"key\": \"Commonwealth Bank of Australia\",\n        \"docCount\": 19418,\n        \"percentOfTotal\": 0.052062400881559244,\n        \"percentOfFirst\": 9.944027080036667\n    },\n    {\n        \"key\": \"School\",\n        \"docCount\": 19342,\n        \"percentOfTotal\": 0.051858634146210676,\n        \"percentOfFirst\": 9.905107208881924\n    },\n    {\n        \"key\": \"Axis Bank Limited\",\n        \"docCount\": 19164,\n        \"percentOfTotal\": 0.051381391002894294,\n        \"percentOfFirst\": 9.813952773808975\n    },\n    {\n        \"key\": \"Australia and New Zealand Banking Group Limited\",\n        \"docCount\": 19018,\n        \"percentOfTotal\": 0.05098994437972467,\n        \"percentOfFirst\": 9.739185652906444\n    },\n    {\n        \"key\": \"DXC Technology Co\",\n        \"docCount\": 18396,\n        \"percentOfTotal\": 0.04932227451937191,\n        \"percentOfFirst\": 9.420657233718947\n    },\n    {\n        \"key\": \"Temasek Holdings (Private) Limited\",\n        \"docCount\": 18097,\n        \"percentOfTotal\": 0.04852061328425057,\n        \"percentOfFirst\": 9.267538266939106\n    },\n    {\n        \"key\": \"State Bank of India\",\n        \"docCount\": 17271,\n        \"percentOfTotal\": 0.046305990607962186,\n        \"percentOfFirst\": 8.844540719915196\n    },\n    {\n        \"key\": \"Wiraswasta\",\n        \"docCount\": 16932,\n        \"percentOfTotal\": 0.04539708372265738,\n        \"percentOfFirst\": 8.670937610422332\n    },\n    {\n        \"key\": \"Standard Chartered plc\",\n        \"docCount\": 16542,\n        \"percentOfTotal\": 0.04435143863336868,\n        \"percentOfFirst\": 8.471217218970365\n    },\n    {\n        \"key\": \"Queensland Health\",\n        \"docCount\": 16347,\n        \"percentOfTotal\": 0.04382861608872433,\n        \"percentOfFirst\": 8.37135702324438\n    },\n    {\n        \"key\": \"Prudential Public Limited Company\",\n        \"docCount\": 15535,\n        \"percentOfTotal\": 0.04165152939000015,\n        \"percentOfFirst\": 7.955528926170029\n    },\n    {\n        \"key\": \"Westpac Banking Corporation\",\n        \"docCount\": 15277,\n        \"percentOfTotal\": 0.04095979494631685,\n        \"percentOfFirst\": 7.823406205671035\n    },\n    {\n        \"key\": \"Sea Limited\",\n        \"docCount\": 15182,\n        \"percentOfTotal\": 0.04070508652713114,\n        \"percentOfFirst\": 7.774756366727607\n    },\n    {\n        \"key\": \"Hewlett Packard Enterprise Company\",\n        \"docCount\": 15038,\n        \"percentOfTotal\": 0.04031900218647069,\n        \"percentOfFirst\": 7.701013452960726\n    },\n    {\n        \"key\": \"National Australia Bank Limited\",\n        \"docCount\": 14981,\n        \"percentOfTotal\": 0.04016617713495926,\n        \"percentOfFirst\": 7.67182354959467\n    },\n    {\n        \"key\": \"PT Bank Mandiri (Persero) Tbk.\",\n        \"docCount\": 14861,\n        \"percentOfTotal\": 0.03984444018440889,\n        \"percentOfFirst\": 7.610371121455604\n    },\n    {\n        \"key\": \"Byju's\",\n        \"docCount\": 14403,\n        \"percentOfTotal\": 0.038616477489808315,\n        \"percentOfFirst\": 7.375827687391498\n    }\n]"}],"_postman_id":"9f4662af-117e-4e07-b652-43170dabd2c3"}],"id":"21d6bad8-5d38-423f-b374-1f26af53e13d","description":"<p>All of the following Bar Chart Endpoints return the total number of prospects in our database that satisfy the criteria of your specific query. Data is presented as the total number of prospects, divided into logical categories based on the Endpoint. Each category shows the number of prospects that comprise it, as well as the percentage of your total search population that category represents. The record lists only the top 50 results, since our goal is to support the creation of relevant and easy-to-understand bar charts. To achieve optimal results, try not to use endpoints that match filters in your query; for example, if you search \"Country Code:US AND Current Employer:shop\" do not select a \"Company\" chart endpoint, since you refined your query to show information about only 1 company.</p>\n","_postman_id":"21d6bad8-5d38-423f-b374-1f26af53e13d","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}}},{"name":"Data for Pie Charts","item":[{"name":"Skills Chart Endpoint","event":[{"listen":"test","script":{"id":"9a58eb42-9fd6-4688-af2b-0f8039209b6e","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","})",""],"type":"text/javascript"}}],"id":"89d16ab6-6fae-4c11-8060-c19c934694bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"stanford\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"education\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"San Jose-Sunnyvale-Santa Clara, CA\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"cbsa\"\n    }\n    ]\n}"},"url":"//supplyData/pieData/skills","description":"<p>This endpoint returns data divided into (up to) 10 slices and lists two values for each: number of prospects and percent of the total. The record is organized in descending numerical order. The sum of the <code>percentage</code> fields may be greater than 100% because prospects often have many skills.</p>\n<p>Here are the descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return the most popular skills among prospects who went to Stanford University and live in the San Jose CBSA:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"stanford\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"education\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"San Jose-Sunnyvale-Santa Clara, CA\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"cbsa\"\n    }\n    ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","pieData","skills"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"071ab59c-a82f-4158-992b-40f9d4643f18","name":"Stanford grads staying local","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"stanford\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"education\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"San Jose-Sunnyvale-Santa Clara, CA\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"cbsa\"\n    }\n    ]\n}"},"url":"//supplyData/pieData/skills"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 16:34:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1999"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=0Ne7CUmTeDEsO1LU7fvUlS2lyWAWMQBepb%2B3MtGHb7nS2Omq3ud3gYzNemCqTuc6jssLS8PgTCGpzrGqRawVFchrFyxxrlfZLt4Ett91%2BKL9xn21wOdepiYnIdFTjkciAW6IDnPGMr3NsZY%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7eff7da3bc528280-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"Public Speaking\",\n        \"docCount\": 97,\n        \"percentage\": 15.470494417862838,\n        \"percentOfTotal\": 17.29055258467023\n    },\n    {\n        \"key\": \"Research\",\n        \"docCount\": 79,\n        \"percentage\": 12.599681020733652,\n        \"percentOfTotal\": 14.081996434937611\n    },\n    {\n        \"key\": \"Strategic Planning\",\n        \"docCount\": 77,\n        \"percentage\": 12.280701754385966,\n        \"percentOfTotal\": 13.72549019607843\n    },\n    {\n        \"key\": \"Leadership\",\n        \"docCount\": 68,\n        \"percentage\": 10.84529505582137,\n        \"percentOfTotal\": 12.121212121212121\n    },\n    {\n        \"key\": \"Management\",\n        \"docCount\": 68,\n        \"percentage\": 10.84529505582137,\n        \"percentOfTotal\": 12.121212121212121\n    },\n    {\n        \"key\": \"Teaching\",\n        \"docCount\": 56,\n        \"percentage\": 8.931419457735247,\n        \"percentOfTotal\": 9.982174688057041\n    },\n    {\n        \"key\": \"Social Media\",\n        \"docCount\": 48,\n        \"percentage\": 7.655502392344498,\n        \"percentOfTotal\": 8.556149732620321\n    },\n    {\n        \"key\": \"Program Management\",\n        \"docCount\": 47,\n        \"percentage\": 7.496012759170654,\n        \"percentOfTotal\": 8.37789661319073\n    },\n    {\n        \"key\": \"Microsoft Office\",\n        \"docCount\": 44,\n        \"percentage\": 7.017543859649122,\n        \"percentOfTotal\": 7.8431372549019605\n    },\n    {\n        \"key\": \"Nonprofits\",\n        \"docCount\": 43,\n        \"percentage\": 6.8580542264752795,\n        \"percentOfTotal\": 7.664884135472371\n    }\n]"}],"_postman_id":"89d16ab6-6fae-4c11-8060-c19c934694bf"},{"name":"Gender & Diversity Endpoint","event":[{"listen":"test","script":{"id":"9a58eb42-9fd6-4688-af2b-0f8039209b6e","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json().data[0]).to.have.property('key');","pm.expect(pm.response.json().data[0]).to.have.property('drillDown');","pm.expect(pm.response.json().data[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json().data[0]).to.have.property('percentage');","});"],"type":"text/javascript"}}],"id":"b5524fdd-47d9-45bd-a574-40d238a36e68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"Chicago-Naperville-Elgin, IL-IN-WI\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"cbsa\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"graphic design\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"graphic designer\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"digital design\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"digital designer\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}"},"url":"//supplyData/pieData/gender/raceEthnicity","description":"<p>This endpoint returns data, with 2 levels of division. The first level is gender, which is broken into 3 slices: Female, Male, and Unknown. The Female and Male slices are then further broken down into 5 Ethnicities: Asian, Black, Latinx, White, and Unknown.</p>\n<p>The \"Unknown\" key represents the percentage of your query population whose names could not be classified into Male or Female, or classified into White, Asian, Black, or Latinx. The \"percentage\" field represents the portion of the whole sample that belongs to the given Gender or Ethnicity. The record is listed in alphabetical order, with Unknown as the last item.</p>\n<p>Here are the descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return the gender and diversity breakdown among graphic designers who live in the Chicago area:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"Chicago-Naperville-Elgin, IL-IN-WI\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"cbsa\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"graphic design\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"graphic designer\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"digital design\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"digital designer\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}\n\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","pieData","gender","raceEthnicity"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"692e70f1-469f-40e8-b7cd-8a0c1bf40e46","name":"Graphic Designers in Chicago","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"Chicago-Naperville-Elgin, IL-IN-WI\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"cbsa\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"graphic design\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"graphic designer\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"digital design\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"digital designer\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}"},"url":"//supplyData/pieData/gender/raceEthnicity"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 16:35:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1998"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=U%2F6L0JE0%2BblBKADtWa7LvrWlKs%2BHjegavF8PjXqg6sT9%2BMBX6A1OnVhV%2BVBxRtMgjwcuzGe1CTuONW%2BzNjs%2F1C0t0k2%2FEmwsZjQd%2FRMUAR9Af%2Fi7M16WBcBySlSVSujLNfTWFMQ6TEqR2to%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7eff7e636ead5848-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 919,\n    \"data\": [\n        {\n            \"drillDown\": [\n                {\n                    \"drillDown\": [],\n                    \"percentOfTotal\": 6.31120783460283,\n                    \"percentage\": 6.31120783460283,\n                    \"key\": \"Asian\"\n                },\n                {\n                    \"drillDown\": [],\n                    \"percentOfTotal\": 8.487486398258977,\n                    \"percentage\": 8.487486398258977,\n                    \"key\": \"Black\"\n                },\n                {\n                    \"drillDown\": [],\n                    \"percentOfTotal\": 5.114254624591948,\n                    \"percentage\": 5.114254624591948,\n                    \"key\": \"Latinx\"\n                },\n                {\n                    \"drillDown\": [],\n                    \"percentOfTotal\": 0.0,\n                    \"percentage\": 0.0,\n                    \"key\": \"Unknown\"\n                },\n                {\n                    \"drillDown\": [],\n                    \"percentOfTotal\": 31.338411316648532,\n                    \"percentage\": 31.338411316648532,\n                    \"key\": \"White\"\n                }\n            ],\n            \"percentOfTotal\": 51.25136017410229,\n            \"percentage\": 51.25136017410229,\n            \"key\": \"Female\"\n        },\n        {\n            \"drillDown\": [\n                {\n                    \"drillDown\": [],\n                    \"percentOfTotal\": 8.487486398258977,\n                    \"percentage\": 8.487486398258977,\n                    \"key\": \"Asian\"\n                },\n                {\n                    \"drillDown\": [],\n                    \"percentOfTotal\": 6.420021762785637,\n                    \"percentage\": 6.420021762785637,\n                    \"key\": \"Black\"\n                },\n                {\n                    \"drillDown\": [],\n                    \"percentOfTotal\": 7.07290533188248,\n                    \"percentage\": 7.07290533188248,\n                    \"key\": \"Latinx\"\n                },\n                {\n                    \"drillDown\": [],\n                    \"percentOfTotal\": 0.0,\n                    \"percentage\": 0.0,\n                    \"key\": \"Unknown\"\n                },\n                {\n                    \"drillDown\": [],\n                    \"percentOfTotal\": 26.768226332970617,\n                    \"percentage\": 26.768226332970617,\n                    \"key\": \"White\"\n                }\n            ],\n            \"percentOfTotal\": 48.74863982589771,\n            \"percentage\": 48.74863982589771,\n            \"key\": \"Male\"\n        },\n        {\n            \"drillDown\": [],\n            \"percentOfTotal\": 0.0,\n            \"percentage\": 0.0,\n            \"key\": \"Unknown\"\n        }\n    ]\n}"}],"_postman_id":"b5524fdd-47d9-45bd-a574-40d238a36e68"},{"name":"Gender Chart Endpoint","event":[{"listen":"test","script":{"id":"2937d4a0-3f58-4750-a6f1-9feccfb1dd80","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentage');","});"],"type":"text/javascript"}}],"id":"27c47aad-0f64-4a7d-9338-f0b666e437a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"country\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"manager\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"head\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"chief\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"manager\"\n      ],\n      \"parameterType\": \"fields\",\n      \"parameterKey\": \"experienceCurrent\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"head\"\n      ],\n      \"parameterType\": \"fields\",\n      \"parameterKey\": \"experienceCurrent\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"chief\"\n      ],\n      \"parameterType\": \"fields\",\n      \"parameterKey\": \"experienceCurrent\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}"},"url":"//supplyData/pieData/gender","description":"<p>This endpoint returns data divided into 2 slices - male and female - and lists two values for each: number of prospects and percent of the total. The difference between the sum of both categories and 100% prospects is due to the name-classification algorithms. <strong>To see the Genders broken down further into Ethnicities, use the <a href=\"#Gender-&amp;-Diversity-Endpoint\">Gender &amp; Diversity Endpoint</a> as shown above.</strong></p>\n<p>Here are the descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return the gender breakdown of US prospects that currently work in managerial roles:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"country\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"manager\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"head\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"chief\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"manager\"\n      ],\n      \"parameterType\": \"fields\",\n      \"parameterKey\": \"experienceCurrent\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"head\"\n      ],\n      \"parameterType\": \"fields\",\n      \"parameterKey\": \"experienceCurrent\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"chief\"\n      ],\n      \"parameterType\": \"fields\",\n      \"parameterKey\": \"experienceCurrent\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","pieData","gender"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"55a00429-30a7-42e2-a658-b4076a1ba043","name":"Manager-level positions in the US","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"country\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"manager\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"head\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"chief\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"manager\"\n      ],\n      \"parameterType\": \"fields\",\n      \"parameterKey\": \"experienceCurrent\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"head\"\n      ],\n      \"parameterType\": \"fields\",\n      \"parameterKey\": \"experienceCurrent\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"chief\"\n      ],\n      \"parameterType\": \"fields\",\n      \"parameterKey\": \"experienceCurrent\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}"},"url":"//supplyData/pieData/gender"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 16:36:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1999"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Yqo4MJn92lZyKH%2B%2FvRgX6ZGTzuPlydR%2FKVq1Fb1D3yEDZwfSgNNPjsljAK1oTEtof4MAB1SLt9TswlU6zOnpI0CvF%2FtFKm8n0NUIm55VoFC2%2Fk5reahAXyvvgDqmN8dU%2BcaOp%2F4Qn02jXOA%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7eff7f871dad3906-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"Female\",\n        \"docCount\": 5705158,\n        \"percentage\": 41.0321519181802,\n        \"percentOfTotal\": 41.0321519181802\n    },\n    {\n        \"key\": \"Male\",\n        \"docCount\": 8189324,\n        \"percentage\": 58.898559246772685,\n        \"percentOfTotal\": 58.898559246772685\n    },\n    {\n        \"key\": \"Unknown\",\n        \"docCount\": 9634,\n        \"percentage\": 0.06928883504711843,\n        \"percentOfTotal\": 0.06928883504711843\n    }\n]"}],"_postman_id":"27c47aad-0f64-4a7d-9338-f0b666e437a1"},{"name":"Industry Chart Endpoint","event":[{"listen":"test","script":{"id":"acd8e6f3-aa6a-45ad-a50d-ba3497067ab2","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentage');","});"],"type":"text/javascript"}}],"id":"2dd724e0-a560-4701-b14a-fd63d891cdf7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"US\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"country\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [],\n      \"parameterType\": \"bool\",\n      \"parameterKey\": \"military\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"NOT\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"NOT\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"military\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"industry\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n     {\n      \"parameterValue\": [\n        \"government administration\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"industry\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"defense & space\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"industry\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n  ]\n}"},"url":"//supplyData/pieData/industry","description":"<p>This endpoint returns data divided into (up to) 10 slices and lists two values for each: number of prospects and percent of the total. The record is organized in descending numerical order.</p>\n<p>Here are the descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return the most popular industries in which military veterans currently work, minus the government-run industries:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"US\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"country\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [],\n      \"parameterType\": \"bool\",\n      \"parameterKey\": \"military\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"NOT\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"NOT\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"military\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"industry\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n     {\n      \"parameterValue\": [\n        \"government administration\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"industry\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"defense &amp; space\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"industry\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n  ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","pieData","industry"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"31905f99-c350-41e4-925d-9f5706dbebda","name":"Veterans with Non-government Jobs","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"US\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"country\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [],\n      \"parameterType\": \"bool\",\n      \"parameterKey\": \"military\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"NOT\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"NOT\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"military\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"industry\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n     {\n      \"parameterValue\": [\n        \"government administration\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"industry\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"defense & space\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"industry\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n  ]\n}"},"url":"//supplyData/pieData/industry"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 16:36:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1998"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=eAl2sONoR2Xp2ujbsrUKMiMwOZJJYbMOVz%2FAqWppF%2FNlDWNG12SehbxkdtfTA%2FyUQ7jWaxRC4Cj0b4VGrrJdw7ERcxT2XIR%2FoJ4Zvno2%2FLGolvwbG%2FOjVs6lQsCNhW7umM60hn0l7NDSgc8%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7eff80014a5a07d7-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"Information Technology And Services\",\n        \"docCount\": 159760,\n        \"percentage\": 24.088610381503518,\n        \"percentOfTotal\": 7.142327050267212\n    },\n    {\n        \"key\": \"Hospital & Health Care\",\n        \"docCount\": 82603,\n        \"percentage\": 12.45487908953014,\n        \"percentOfTotal\": 3.692899607744257\n    },\n    {\n        \"key\": \"Aviation & Aerospace\",\n        \"docCount\": 68258,\n        \"percentage\": 10.291940206689203,\n        \"percentOfTotal\": 3.05158337379281\n    },\n    {\n        \"key\": \"Construction\",\n        \"docCount\": 61955,\n        \"percentage\": 9.341573962105974,\n        \"percentOfTotal\": 2.7697976489691105\n    },\n    {\n        \"key\": \"Retail\",\n        \"docCount\": 55341,\n        \"percentage\": 8.34431514223076,\n        \"percentOfTotal\": 2.4741081703107017\n    },\n    {\n        \"key\": \"Financial Services\",\n        \"docCount\": 52800,\n        \"percentage\": 7.9611832006972065,\n        \"percentOfTotal\": 2.3605086896226135\n    },\n    {\n        \"key\": \"Real Estate\",\n        \"docCount\": 51403,\n        \"percentage\": 7.750543561845427,\n        \"percentOfTotal\": 2.2980535638763486\n    },\n    {\n        \"key\": \"Computer Software\",\n        \"docCount\": 44140,\n        \"percentage\": 6.655428531794976,\n        \"percentOfTotal\": 1.973349499241329\n    },\n    {\n        \"key\": \"Higher Education\",\n        \"docCount\": 43753,\n        \"percentage\": 6.597076677653502,\n        \"percentOfTotal\": 1.9560480435048904\n    },\n    {\n        \"key\": \"Marketing And Advertising\",\n        \"docCount\": 43205,\n        \"percentage\": 6.5144492459492955,\n        \"percentOfTotal\": 1.9315488245292618\n    }\n]"}],"_postman_id":"2dd724e0-a560-4701-b14a-fd63d891cdf7"},{"name":"CBSA Chart Endpoint","event":[{"listen":"test","script":{"id":"9de64b1f-f315-4abe-b297-392efab322d4","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentage');","});"],"type":"text/javascript"}}],"id":"62944913-c856-4dc9-9c67-886f05e87e69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"searchParameters\": [\n      {\n      \"parameterValue\": [\n        \"java\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"python\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"php\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"c#\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    }\n  ]\n}"},"url":"//supplyData/pieData/cbsa","description":"<p>This endpoint returns data divided into (up to) 10 slices and lists two values for each: number of prospects and percent of the total. The record is organized in descending numerical order.</p>\n<p>Here are descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>CBSA data is restricted to US only. If you want to find location data from outside the US, you must use the <a href=\"#Location-Chart-Endpoint\">Location Chart Endpoint</a>.</p>\n<p>Below is a sample query that will return prospects that have java development skills and live in the US:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"searchParameters\": [\n      {\n      \"parameterValue\": [\n        \"java\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"python\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"php\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"c#\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    }\n  ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","pieData","cbsa"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"da8de1ef-df2e-4c42-899d-caf6f1f0eb02","name":"Java Developers in the US","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"searchParameters\": [\n      {\n      \"parameterValue\": [\n        \"java\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"python\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"php\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"c#\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    }\n  ]\n}"},"url":"//supplyData/pieData/cbsa"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 16:36:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1999"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=7LIq9yKDxFeyaICNM%2FuD%2F3xlZg1c76QzsJ%2B4ypO%2Bi%2BxAtEiZUZ2qXT57ACRi92D2zLvxFY4YdQ0iuYpMk6x61zWTDZSD5ZcZyvqnsEkSBk0FB%2B%2BsyotJPeXyS%2FsmevjWfP7YTNwkY3eHGoY%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7eff8075ecba2d27-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"New York-Newark-Jersey City, NY-NJ-PA\",\n        \"docCount\": 504359,\n        \"percentage\": 20.537939027007305,\n        \"percentOfTotal\": 1.9039356915717722\n    },\n    {\n        \"key\": \"San Francisco-Oakland-Hayward, CA\",\n        \"docCount\": 433554,\n        \"percentage\": 17.654697580324978,\n        \"percentOfTotal\": 1.6366495587938517\n    },\n    {\n        \"key\": \"Los Angeles-Long Beach-Anaheim, CA\",\n        \"docCount\": 268582,\n        \"percentage\": 10.936893640743351,\n        \"percentOfTotal\": 1.0138866480299344\n    },\n    {\n        \"key\": \"Chicago-Naperville-Elgin, IL-IN-WI\",\n        \"docCount\": 207125,\n        \"percentage\": 8.434310919342945,\n        \"percentOfTotal\": 0.7818888532113105\n    },\n    {\n        \"key\": \"Boston-Cambridge-Newton, MA-NH\",\n        \"docCount\": 194241,\n        \"percentage\": 7.909663185439193,\n        \"percentOfTotal\": 0.7332522521985185\n    },\n    {\n        \"key\": \"Dallas-Fort Worth-Arlington, TX\",\n        \"docCount\": 192934,\n        \"percentage\": 7.856441003802108,\n        \"percentOfTotal\": 0.7283183778176028\n    },\n    {\n        \"key\": \"Seattle-Tacoma-Bellevue, WA\",\n        \"docCount\": 188980,\n        \"percentage\": 7.695430670066045,\n        \"percentOfTotal\": 0.7133921809529196\n    },\n    {\n        \"key\": \"Washington-Arlington-Alexandria, DC-VA-MD-WV\",\n        \"docCount\": 187289,\n        \"percentage\": 7.626571673013014,\n        \"percentOfTotal\": 0.7070087214440224\n    },\n    {\n        \"key\": \"Atlanta-Sandy Springs-Roswell, GA\",\n        \"docCount\": 154701,\n        \"percentage\": 6.299559848078565,\n        \"percentOfTotal\": 0.5839902835516859\n    },\n    {\n        \"key\": \"Houston-The Woodlands-Sugar Land, TX\",\n        \"docCount\": 123978,\n        \"percentage\": 5.048492452182496,\n        \"percentOfTotal\": 0.4680121484293632\n    }\n]"}],"_postman_id":"62944913-c856-4dc9-9c67-886f05e87e69"},{"name":"Location Chart Endpoint","event":[{"listen":"test","script":{"id":"9de64b1f-f315-4abe-b297-392efab322d4","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentage');","});"],"type":"text/javascript"}}],"id":"e002829d-1204-4fc9-af2c-8c725a09150b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"human resources\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"industry\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n{\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"spanish\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"languagesList\"\n    },\n {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n{\n      \"parameterValue\": [\n        \"french\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"languagesList\"\n    },\n{\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    },\n{\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n{\n      \"parameterValue\": [\n        \"US\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"country\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"CA\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"country\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}\n"},"url":"//supplyData/pieData/location","description":"<p>This endpoint returns data divided into (up to) 10 slices and lists two values for each: number of prospects and percent of the total. The record is organized in descending numerical order.</p>\n<p>Location data is worldwide. If you want to see location data from the US ONLY, you should use the <a href=\"#CBSA-Chart-Endpoint\">CBSA Chart Endpoint</a> above.</p>\n<p>Here are the descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return prospects who live in the US or Canada, work in the Human Resources industry, and speak either Spanish or French:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"human resources\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"industry\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n{\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"spanish\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"language\"\n    },\n {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n{\n      \"parameterValue\": [\n        \"french\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"language\"\n    },\n{\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    },\n{\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n{\n      \"parameterValue\": [\n        \"US\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"country\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"CA\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"country\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","pieData","location"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"230da257-b732-4ac0-b46d-d8588e5420b4","name":"Spanish or French Speaking HR people in North America","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"human resources\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"industry\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n{\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"spanish\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"languagesList\"\n    },\n {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n{\n      \"parameterValue\": [\n        \"french\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"languagesList\"\n    },\n{\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    },\n{\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n{\n      \"parameterValue\": [\n        \"US\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"country\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"CA\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"country\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}\n"},"url":"//supplyData/pieData/location"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 16:37:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1998"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=x%2BrYljUKHrntVM0pnmSuP%2B7bpKZ7SdMqTujm7HqHx2ElnUfvl1tm9NXXzT1EDYm9X%2BOImP5r46fICymMhpLCWAlpZXX5upVCF1ihMNml0DR775COnqFsj%2F%2BF3%2F32F1OkKPAp0NP%2F%2Bv2xSvk%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7eff80ea6a2e058b-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"New York New York\",\n        \"docCount\": 3759,\n        \"percentage\": 20.237967050716055,\n        \"percentOfTotal\": 5.0972256122365955\n    },\n    {\n        \"key\": \"Montreal Canada Area\",\n        \"docCount\": 3347,\n        \"percentage\": 18.019812641326585,\n        \"percentOfTotal\": 4.538551243457272\n    },\n    {\n        \"key\": \"Miami Florida\",\n        \"docCount\": 1914,\n        \"percentage\": 10.304727037794766,\n        \"percentOfTotal\": 2.595395004474819\n    },\n    {\n        \"key\": \"Toronto Canada Area\",\n        \"docCount\": 1654,\n        \"percentage\": 8.904920857112092,\n        \"percentOfTotal\": 2.242833509614081\n    },\n    {\n        \"key\": \"San Francisco Bay Area\",\n        \"docCount\": 1545,\n        \"percentage\": 8.31807903521051,\n        \"percentOfTotal\": 2.0950288829224637\n    },\n    {\n        \"key\": \"Greater Chicago Area\",\n        \"docCount\": 1528,\n        \"percentage\": 8.226553246473566,\n        \"percentOfTotal\": 2.0719767851815694\n    },\n    {\n        \"key\": \"Greater Los Angeles Area\",\n        \"docCount\": 1396,\n        \"percentage\": 7.515882416280823,\n        \"percentOfTotal\": 1.8929840262522712\n    },\n    {\n        \"key\": \"Kingwood Texas United States\",\n        \"docCount\": 1341,\n        \"percentage\": 7.21976957036718,\n        \"percentOfTotal\": 1.8184037100317305\n    },\n    {\n        \"key\": \"Montreal Quebec Canada\",\n        \"docCount\": 1179,\n        \"percentage\": 6.34758264240336,\n        \"percentOfTotal\": 1.5987307786185014\n    },\n    {\n        \"key\": \"Washington Dc Metro Area\",\n        \"docCount\": 911,\n        \"percentage\": 4.904705502315064,\n        \"percentOfTotal\": 1.2353212377620482\n    }\n]"}],"_postman_id":"e002829d-1204-4fc9-af2c-8c725a09150b"},{"name":"Education Chart Endpoint","event":[{"listen":"test","script":{"id":"10835bf0-d60c-4158-a332-bb6fd4765124","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentage');","});"],"type":"text/javascript"}}],"id":"11d53d1e-a648-4c93-b145-ea2475fbb1df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"APAC\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"region\"\n        },\n{\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n{\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n{\n            \"parameterValue\": [\n                \"ey\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"deloitte\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"kpmg\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"pwc\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}"},"url":"//supplyData/pieData/education","description":"<p>This endpoint returns data divided into (up to) 10 slices and lists two values for each: number of prospects and percent of the total. The record is organized in descending numerical order.</p>\n<p>Here are the descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return the list of colleges and universities attended by prospects living in Asia or the Pacific Islands and currently working at one of the Big 4 accounting firms:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"APAC\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"region\"\n        },\n{\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n{\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        },\n{\n            \"parameterValue\": [\n                \"ey\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"deloitte\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"kpmg\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"pwc\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","pieData","education"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"e0636ab5-f872-4129-9e80-e2889303f561","name":"Big 4 Employees APAC","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"APAC\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"region\"\n        },\n{\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n{\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n{\n            \"parameterValue\": [\n                \"ey\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"deloitte\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"kpmg\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"pwc\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"companyCurrent\"\n        },\n{\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}"},"url":"//supplyData/pieData/education"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 16:37:48 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1999"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=tyHZEmfi%2Fslpt%2BhtKrVIziW96rV60m0KUz4yVsSZANw3BNw6bToIkgQBESzyMblgZo5mmAZ78ljotYUlnMIQZX7tLo%2FKV7enxaF6MWfCmsPW09Tt0uHI0oR2J5j4r4xjeeq05h%2FFlMgSxWU%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7eff81f3fab13b80-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"The Institute Of Chartered Accountants Of India\",\n        \"docCount\": 22142,\n        \"percentage\": 39.12843712447869,\n        \"percentOfTotal\": 7.1523170251116035\n    },\n    {\n        \"key\": \"Delhi University\",\n        \"docCount\": 6855,\n        \"percentage\": 12.113875733371033,\n        \"percentOfTotal\": 2.2143046340502233\n    },\n    {\n        \"key\": \"Acca\",\n        \"docCount\": 5879,\n        \"percentage\": 10.389128437124478,\n        \"percentOfTotal\": 1.8990367532576604\n    },\n    {\n        \"key\": \"Chartered Accountants Australia And New Zealand\",\n        \"docCount\": 3668,\n        \"percentage\": 6.481939633844632,\n        \"percentOfTotal\": 1.1848387159294265\n    },\n    {\n        \"key\": \"University Of Mumbai\",\n        \"docCount\": 3339,\n        \"percentage\": 5.900544285007422,\n        \"percentOfTotal\": 1.0785650143098025\n    },\n    {\n        \"key\": \"Monash University\",\n        \"docCount\": 3263,\n        \"percentage\": 5.7662401922669115,\n        \"percentOfTotal\": 1.0540154662152996\n    },\n    {\n        \"key\": \"University Of Melbourne\",\n        \"docCount\": 3065,\n        \"percentage\": 5.4163426874955825,\n        \"percentOfTotal\": 0.9900574330217263\n    },\n    {\n        \"key\": \"Kendriya Vidyalaya\",\n        \"docCount\": 2887,\n        \"percentage\": 5.101788365024387,\n        \"percentOfTotal\": 0.9325598072214434\n    },\n    {\n        \"key\": \"Institute Of Chartered Accountants Of India\",\n        \"docCount\": 2834,\n        \"percentage\": 5.008128931929031,\n        \"percentOfTotal\": 0.9154397276292243\n    },\n    {\n        \"key\": \"Indira Gandhi National Open University\",\n        \"docCount\": 2656,\n        \"percentage\": 4.693574609457835,\n        \"percentOfTotal\": 0.8579421018289414\n    }\n]"}],"_postman_id":"11d53d1e-a648-4c93-b145-ea2475fbb1df"},{"name":"Language Chart Endpoint","event":[{"listen":"test","script":{"id":"b88faf7a-cca6-4077-ae97-621c869d9473","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentage');","});"],"type":"text/javascript"}}],"id":"07c9775e-f045-4869-87db-e7e201088abc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"New York-Newark-Jersey City, NY-NJ-PA\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"cbsa\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"phlebotomy\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"phlebotomist\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"blood draw\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"medical assistant\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}"},"url":"//supplyData/pieData/language","description":"<p>This endpoint returns data divided into (up to) 10 slices and lists two values for each: number of prospects and percent of the total. The record is organized in descending numerical order. The sum of the <code>percentage</code> fields may be greater than 100% because prospects can know multiple languages.</p>\n<p>Here are the descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return the most popular languages spoken by phlebotomists in the New York City area:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"New York-Newark-Jersey City, NY-NJ-PA\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"cbsa\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"phlebotomy\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"phlebotomist\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"blood draw\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"medical assistant\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","pieData","language"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"0b1b9e11-50b0-463d-b930-58781063a3ff","name":"Phlebotomists in the NYC area","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"New York-Newark-Jersey City, NY-NJ-PA\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"cbsa\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"phlebotomy\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"phlebotomist\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"blood draw\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"medical assistant\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}"},"url":"//supplyData/pieData/language"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 16:38:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1998"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=u8S1H%2BCYPISFnf%2BzXvK%2BTQ0ugQsJE%2BRKpTsH1FfUIIH3O8s743xSnK1UC1exhiMwPChfhNOYdq4SgZHylrJhWkdQ28zL89BTB3yBewm%2BNYIDUnDYWVZRnAr8KykiLqtiReJO0l1mOMzeJk8%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7eff82935b030a9b-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"English\",\n        \"docCount\": 20262,\n        \"percentage\": 45.02066391147847,\n        \"percentOfTotal\": 20.509135077686118\n    },\n    {\n        \"key\": \"Spanish\",\n        \"docCount\": 13528,\n        \"percentage\": 30.058214460294185,\n        \"percentOfTotal\": 13.693000657928033\n    },\n    {\n        \"key\": \"French\",\n        \"docCount\": 3039,\n        \"percentage\": 6.752433008932142,\n        \"percentOfTotal\": 3.0760666025608585\n    },\n    {\n        \"key\": \"Chinese\",\n        \"docCount\": 1774,\n        \"percentage\": 3.9416966626672,\n        \"percentOfTotal\": 1.7956374310440812\n    },\n    {\n        \"key\": \"Hindi\",\n        \"docCount\": 1530,\n        \"percentage\": 3.399546727103053,\n        \"percentOfTotal\": 1.548661369502505\n    },\n    {\n        \"key\": \"Italian\",\n        \"docCount\": 1267,\n        \"percentage\": 2.815180198195796,\n        \"percentOfTotal\": 1.2824535654638394\n    },\n    {\n        \"key\": \"Russian\",\n        \"docCount\": 1174,\n        \"percentage\": 2.608541083411101,\n        \"percentOfTotal\": 1.1883192469254518\n    },\n    {\n        \"key\": \"Arabic\",\n        \"docCount\": 869,\n        \"percentage\": 1.930853663955917,\n        \"percentOfTotal\": 0.8795991699984818\n    },\n    {\n        \"key\": \"German\",\n        \"docCount\": 856,\n        \"percentage\": 1.9019686264053681,\n        \"percentOfTotal\": 0.866440609342578\n    },\n    {\n        \"key\": \"Creole\",\n        \"docCount\": 707,\n        \"percentage\": 1.5709016575567702,\n        \"percentOfTotal\": 0.7156232602864517\n    }\n]"}],"_postman_id":"07c9775e-f045-4869-87db-e7e201088abc"},{"name":"Military Chart Endpoint","event":[{"listen":"test","script":{"id":"5ee90c0c-3f0d-40ce-9be6-5fcf4de0036c","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentage');","});"],"type":"text/javascript"}}],"id":"88560433-98f3-48f2-b5ea-241c10fbc0ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                 \"(\"\n        ],\n        \"parameterType\": \"operator\",\n        \"parameterKey\": \"(\"\n    },\n    {\n            \"parameterValue\": [\n                \"russian\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"languagesList\"\n        },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n            \"parameterValue\": [\n                \"chinese\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"languagesList\"\n        },\n        {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n            \"parameterValue\": [\n                \"mandarin\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"languagesList\"\n        },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"princeton\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"harvard\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"columbia\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"yale\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"university of pennsylvania\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"dartmouth\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"brown university\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"cornell\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}"},"url":"//supplyData/pieData/military","description":"<p>This endpoint returns data divided into 2 slices - Military and Non-military - and lists two values for each: number of prospects and percent of the total. Military is defined as veterans and currently serving members of the US military.</p>\n<p>Here are the descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will show how many Ivy League graduates who are fluent in either Chinese or Russian have military history:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                 \"(\"\n        ],\n        \"parameterType\": \"operator\",\n        \"parameterKey\": \"(\"\n    },\n    {\n            \"parameterValue\": [\n                \"russian\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"language\"\n        },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n            \"parameterValue\": [\n                \"chinese\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"language\"\n        },\n        {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n            \"parameterValue\": [\n                \"mandarin\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"language\"\n        },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"princeton\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"harvard\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"columbia\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"yale\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"university of pennsylvania\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"dartmouth\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"brown university\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"cornell\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","pieData","military"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"6781d27c-277e-4464-bb77-a5eeef9e3a97","name":"Ivy League Grads with Chinese or Russian Fluency","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                 \"(\"\n        ],\n        \"parameterType\": \"operator\",\n        \"parameterKey\": \"(\"\n    },\n    {\n            \"parameterValue\": [\n                \"russian\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"languagesList\"\n        },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n            \"parameterValue\": [\n                \"chinese\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"languagesList\"\n        },\n        {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n            \"parameterValue\": [\n                \"mandarin\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"languagesList\"\n        },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"princeton\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"harvard\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"columbia\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"yale\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"university of pennsylvania\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"dartmouth\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"brown university\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"cornell\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"education\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}"},"url":"//supplyData/pieData/military"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 16:38:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1997"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=F%2BT41ZMDJ6R1arUQWLoAWmJJDEQD7q34gZiBbz2tbD2IEQ6ge994c%2BC5liz14sqkvOrL008VRHHxPeZXDiuffUJTQInIvGICwG8fwIEHTNh0udD7J2r7V5AELYCn%2Bc%2B5APwrq1D6hKCVEtk%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7eff8300d941578b-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"Non-military\",\n        \"docCount\": 141298,\n        \"percentage\": 97.24302152728073,\n        \"percentOfTotal\": 97.24302152728073\n    },\n    {\n        \"key\": \"Military\",\n        \"docCount\": 4006,\n        \"percentage\": 2.7569784727192643,\n        \"percentOfTotal\": 2.7569784727192643\n    }\n]"}],"_postman_id":"88560433-98f3-48f2-b5ea-241c10fbc0ef"}],"id":"ac042f6b-acd2-492f-943a-73ae4e31b553","description":"<p>All of the following Pie Chart Endpoints return the total number of prospects in our database that satisfy the criteria of your specific query. Data is presented as the total number of prospects, divided into logical categories based on the Endpoint. Each category shows the number of prospects that comprise it, as well as the percentage of your total search population that category represents. The record lists only the top 10 results, since our goal is to support the creation of relevant and easy-to-understand pie charts. To achieve optimal results, try not to use endpoints that match filters in your query; for example, if you search \"Country Code:US AND Current Employer:shop\" do not select a \"Company\" chart endpoint, since you refined your query to show information about only 1 company.</p>\n","_postman_id":"ac042f6b-acd2-492f-943a-73ae4e31b553","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}}},{"name":"Data for Lists of Prospects","item":[{"name":"List of Prospects","event":[{"listen":"test","script":{"id":"62e27f22-6a3b-4b8e-b985-a96c422fbe04","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","    console.log(pm.response.json())","pm.expect(pm.response.json()).to.have.property('selectedCount');","pm.expect(pm.response.json()).to.have.property('highlights');","pm.expect(pm.response.json()).to.have.property('data');","pm.expect(pm.response.json()).to.have.property('count');","pm.expect(pm.response.json()['highlights'][0]).to.have.property('fields');","pm.expect(pm.response.json()['highlights'][0]).to.have.property('id');","","// data","pm.expect(pm.response.json()['data'][0]).to.have.property('id');","pm.expect(pm.response.json()['data'][0]).to.have.property('canonical');","pm.expect(pm.response.json()['data'][0]).to.have.property('fullname');","pm.expect(pm.response.json()['data'][0]).to.have.property('headline');","pm.expect(pm.response.json()['data'][0]).to.have.property('location');","pm.expect(pm.response.json()['data'][0]).to.have.property('industry');","pm.expect(pm.response.json()['data'][0]).to.have.property('picture');","pm.expect(pm.response.json()['data'][0]).to.have.property('social');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('youtube');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('github');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('wordpress');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('facebook');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('foursquare');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('tumblr');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('google');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('personal');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('instagram');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('twitter');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('vimeo');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('flickr');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('blogspot');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('stackoverflow');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('stackexchange');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('linkedIn');","pm.expect(pm.response.json()['data'][0]).to.have.property('active');","pm.expect(pm.response.json()['data'][0]).to.have.property('trackedByUser');","pm.expect(pm.response.json()['data'][0]).to.have.property('likedByUser');","pm.expect(pm.response.json()['data'][0]).to.have.property('experienceCurrentList');","// pm.expect(pm.response.json()['data'][1]['experienceCurrentList'][0]).to.have.property('hiredDate');","// pm.expect(pm.response.json()['data'][1]['experienceCurrentList'][0]).to.have.property('leaveDate');","// pm.expect(pm.response.json()['data'][1]['experienceCurrentList'][0]).to.have.property('company');","// pm.expect(pm.response.json()['data'][1]['experienceCurrentList'][0]).to.have.property('position');","// pm.expect(pm.response.json()['data'][1]['experienceCurrentList'][0]).to.have.property('description');","pm.expect(pm.response.json()['data'][0]).to.have.property('experiencePrevious');","","","pm.expect(pm.response.json()['data'][0]).to.have.property('languagesList');","pm.expect(pm.response.json()['data'][0]).to.have.property('educationList');","// pm.expect(pm.response.json()['data'][0]['educationList'][0]).to.have.property('title');","// pm.expect(pm.response.json()['data'][0]['educationList'][0]).to.have.property('subTitle');","pm.expect(pm.response.json()['data'][0]).to.have.property('lastScraperUpdateTime');","pm.expect(pm.response.json()['data'][0]).to.have.property('military');","pm.expect(pm.response.json()['data'][0]).to.have.property('clearance');","pm.expect(pm.response.json()['data'][0]).to.have.property('about');","pm.expect(pm.response.json()['data'][0]).to.have.property('skills');","// loc","pm.expect(pm.response.json()['data'][0]).to.have.property('loc');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('geo');","pm.expect(pm.response.json()['data'][0]['loc']['geo']).to.have.property('lat');","pm.expect(pm.response.json()['data'][0]['loc']['geo']).to.have.property('lon');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('formattedAddress');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('country');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('state');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('cbsa');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('country_code');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('state_code');","pm.expect(pm.response.json()['data'][0]).to.have.property('experienceInDays');","pm.expect(pm.response.json()['data'][0]).to.have.property('selectedAt');","});"],"type":"text/javascript"}}],"id":"9ca66fb6-ed8c-42a2-bea5-4939a895e019","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"searchParameters\": [\n            {\n                \"parameterValue\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"cbsa\"\n            },\n            {\n                \"parameterValue\": [\n                    \"AND\"\n                ],\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\"\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"general motors\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"ford\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"chrysler\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"NOT\",\n                \"parameterValue\": [\n                    \"NOT\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"general motors\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"ford\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"chrysler\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            }\n]\n}"},"url":"//supplyData/listData","description":"<p>This endpoint returns prospect records. The response is a complete list of the information we have associated with the unique <code>id</code>. </p>\n<p>Here is a description of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to use to create one. </p>\n<p><strong>Claro will show a maximum of 10k prospects per /listData/ query.</strong> The responses for this endpoint may take longer than normal to deliver, as the records have more information than other endpoints. If your query returns more than 10k unique <code>id</code>s then a random sample of 10k prospects will be returned. </p>\n<p>Below is a sample query that will return prospects who live in Detroit that used to work at Ford, GM, or Chrysler and currently do not work at either of the three:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n\"searchParameters\": [\n            {\n                \"parameterValue\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ]\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"cbsa\"\n            },\n            {\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\"\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"general motors\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"ford\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"chrysler\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"NOT\",\n                \"parameterValue\": [\n                    \"NOT\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"general motors\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"ford\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"chrysler\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            }\n]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","listData"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"07ed5ef0-08cc-4787-be60-0d4de58eeb51","name":"Leaving the Automotive Industry in Detroit","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\"searchParameters\": [\n            {\n                \"parameterValue\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"cbsa\"\n            },\n            {\n                \"parameterValue\": [\n                    \"AND\"\n                ],\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\"\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"general motors\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"ford\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"chrysler\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"NOT\",\n                \"parameterValue\": [\n                    \"NOT\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"general motors\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"ford\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"chrysler\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            }\n]\n}"},"url":"//supplyData/listData"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Jul 2020 14:08:48 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"03d581535500001f21c9146200000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5b029e655ebe1f21-FRA"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"selectedCount\": 0,\n    \"data\": [\n        {\n            \"id\": \"8CAD5688DEF80C1773420873CC39BB38\",\n            \"canonical\": \"https://www.linkedin.com/in/lawrence-luca-0080138b\",\n            \"fullname\": \"Lawrence Luca\",\n            \"headline\": \"First Responder Police/Fire\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/D5603AQE1GiMNJ6uSeg/profile-displayphoto-shrink_800_800/0/1673750699530?e=2147483647&v=beta&t=gxA-YaOD4F11qorY79Ej59-OVfbu0MOAeRB8fGvknYk\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/lawrence-luca-0080138b\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": true,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Oakland County Sheriff Dept\",\n                    \"position\": \"Oakland County Sheriff Office\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2018-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"City of Troy\",\n                    \"position\": \"Fleet Mechanic\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2017-10-01\",\n                    \"leaveDate\": \"2023-06-01\",\n                    \"company\": \"City of Troy (Michigan)\",\n                    \"position\": \"Firefighter\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2022-01-01\",\n                    \"leaveDate\": \"2023-01-01\",\n                    \"company\": \"Bloomfield hills public saftey\",\n                    \"position\": \"Bloomfield hills public saftey\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2015-10-01\",\n                    \"leaveDate\": \"2018-02-01\",\n                    \"company\": \"Diesel doctors LLC\",\n                    \"position\": \"Chief Executive Officer\",\n                    \"description\": \"Business owner and operator.\"\n                },\n                {\n                    \"hiredDate\": \"2014-03-01\",\n                    \"leaveDate\": \"2015-10-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Diesel Technician\",\n                    \"description\": \"- Identify and determine parts required for repair of dissembled units - Perform all levels of preventative maintenance services - Identify warrantable repairs and document on repair order - Maintain work area appearance and safety - Road test Vehicles when necessary to diagnose malfunctions or to ensure that they are working properly -Use hand tools such as screwdrivers, pliers, wrenches, pressure gauges, and precision instruments, as well as power tools such as pneumatic Show more - Identify and determine parts required for repair of dissembled units - Perform all levels of preventative maintenance services - Identify warrantable repairs and document on repair order - Maintain work area appearance and safety - Road test Vehicles when necessary to diagnose malfunctions or to ensure that they are working properly -Use hand tools such as screwdrivers, pliers, wrenches, pressure gauges, and precision instruments, as well as power tools such as pneumatic wrenches, welding equipment, and jacks and hoists. - Inspect brake systems, steering mechanisms, wheel bearings, and other important parts to ensure that they are in proper operating condition. - Perform routine maintenance such as changing oil, checking batteries, and lubricating equipment and machinery. - Adjust and replace brakes, tighten bolts and screws, and reassemble equipment Show less\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Romanian\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Baker College of Owosso\",\n                    \"subTitle\": \"CertificationDiesel Mechanics Technology/Technician\"\n                },\n                {\n                    \"title\": \"University of Phoenix\",\n                    \"subTitle\": \"Associate's DegreeCriminal Justice/Police Science\"\n                },\n                {\n                    \"title\": \"Rochester high school 2000-2004\",\n                    \"subTitle\": \"-\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696160185119,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Do something good, it might change someone’s life!\",\n            \"skills\": [\n                \"Commercial Drivers License\",\n                \"Communication\",\n                \"moral integrity\",\n                \"Automotive Electrical Systems\",\n                \"automotive and truck braking systems\",\n                \"heavy duty diesel engine repair\",\n                \"Customer Satisfaction\",\n                \"Delegation\",\n                \"People Skills\",\n                \"Maintenance\",\n                \"Heavy Equipment\",\n                \"Preventive Maintenance\",\n                \"Vehicles\",\n                \"Welding\",\n                \"Motors\",\n                \"Parts\",\n                \"Diesel Engine\",\n                \"Automobile\",\n                \"Maintenance\",\n                \"Diesel\",\n                \"Supervisory Skills\",\n                \"Automotive\",\n                \"Machinery\",\n                \"Customer Service\",\n                \"Operations Management\",\n                \"Inventory Management\",\n                \"Testing\",\n                \"Leadership\",\n                \"Management\",\n                \"Microsoft Excel\",\n                \"Microsoft Office\",\n                \"Microsoft Word\",\n                \"Photoshop\",\n                \"PowerPoint\",\n                \"Research\",\n                \"Sales\",\n                \"Training\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 3501,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"pMIXDH8BdbruSb0IbqlB\",\n            \"canonical\": \"https://www.linkedin.com/in/raul-o-bed\",\n            \"fullname\": \"Raul Benitez\",\n            \"headline\": \"Product Owner | Systems engineer | Product engineer en Ford Motor Company\",\n            \"location\": \"Dearborn, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/raul-o-bed\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": true,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-09-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Sirius XM Holdings Inc.\",\n                    \"position\": \"Senior software - tester\",\n                    \"description\": \"Automation testing\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-08-01\",\n                    \"leaveDate\": \"2022-08-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Product Development Engineer\",\n                    \"description\": \"- Design, develop and run test plans, (functional, integration, black/white box testing, end to end), on breadboard/ bench/ in-vehicle testing. - Product management; signoffs, tracking/report defects, priorities management, GPDS milestones, requirements design, traceability and implementation, DFMEA, FUSA. - ECU virtual simulation for in-vehicle validation, android automotive simulation. - Technical design review with internal external clients and suppliers. - Embedded Show more - Design, develop and run test plans, (functional, integration, black/white box testing, end to end), on breadboard/ bench/ in-vehicle testing. - Product management; signoffs, tracking/report defects, priorities management, GPDS milestones, requirements design, traceability and implementation, DFMEA, FUSA. - ECU virtual simulation for in-vehicle validation, android automotive simulation. - Technical design review with internal external clients and suppliers. - Embedded system design for connected vehicle and telematics, UML, - In-vehicle connectivity system testing for L3 & L4 autonomous vehicles (LTE,Wi-Fi, automotive Ethernet). - In-vehicle connectivity system design for L0 toL4 vehicles based on QNX OS and Android automotive(LTE,Wi-Fi, automotive Ethernet, LAN). - C/C++ and python system prototyping and test application development for telematics. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2018-08-01\",\n                    \"leaveDate\": \"2019-08-01\",\n                    \"company\": \"Avon\",\n                    \"position\": \"Senior Software Analyst/ Developer\",\n                    \"description\": \"-System design. -Business analysis. -SQL database management. -Microsoft server administrator. -Supply chain, payments and logistics system management. -Translated internal customer requirements into written use cases. -Analysis and development of software (C++/Java EE) application for supply chain. -Technical support and software development for AVON Mexico nation wide supply chain.\"\n                },\n                {\n                    \"hiredDate\": \"2018-01-01\",\n                    \"leaveDate\": \"2019-08-01\",\n                    \"company\": \"Freelance.\",\n                    \"position\": \"Automation Engineer\",\n                    \"description\": \"- Software development with python, NodeJs, ruby, C++. - IoT system design, integration an implementation. - Linux systems operation. - Functional and manual testing - Symulink Model - Team management - Project management. - Client-Server system design, - Sensors selection and installation. - Hardware design, selection and impl\"\n                },\n                {\n                    \"hiredDate\": \"2017-01-01\",\n                    \"leaveDate\": \"2018-07-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"HMI CAE Engineer\",\n                    \"description\": \"- QML, JavaScript & C++ software development for infotainment system. - QML widgets and API development for ADAS and active safety systems such as Cruise Control/Adaptive Cruise, Lane Keeping System , Traffic Jam Assist, Traffic Sign Recognition. - Product management and HMI team management. - Manual functional testing of HMI models. - Hardware CAE design for prototyping. - Electronic circuits design for signals acquisition - Simulink system design for CAN signal acquisition Show more - QML, JavaScript & C++ software development for infotainment system. - QML widgets and API development for ADAS and active safety systems such as Cruise Control/Adaptive Cruise, Lane Keeping System , Traffic Jam Assist, Traffic Sign Recognition. - Product management and HMI team management. - Manual functional testing of HMI models. - Hardware CAE design for prototyping. - Electronic circuits design for signals acquisition - Simulink system design for CAN signal acquisition and automotive simulation. - API creation of HMI ADAS components for global markets. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2015-09-01\",\n                    \"leaveDate\": \"2017-07-01\",\n                    \"company\": \"Celex\",\n                    \"position\": \"Teacher of English Language\",\n                    \"description\": \" Basic, intermediate and advanced teaching.  3-30 student group handling.  Trimestral class planning.  Technical English tutoring to engineering students.  Translating of engineering texts and manuals.\"\n                },\n                {\n                    \"hiredDate\": \"2015-07-01\",\n                    \"leaveDate\": \"2015-12-01\",\n                    \"company\": \"DIAMSA\",\n                    \"position\": \"Field Engineer\",\n                    \"description\": \" Providing expert maintenance advice to operations through maintenance planning.  User formation.  Assembling of manuals and functionality guides.  Installing and configuring internal and external components.  Processes, products, services and toolbag proposal.  Installing hardware and software systems.  After-sales service.  Technical support.  Dealing with multiple providers.\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Spanish\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Instituto Politécnico Nacional\",\n                    \"subTitle\": \"Bachelor's degreeIndustrial Robotics EngineeringCounselor student 2013-2014\"\n                },\n                {\n                    \"title\": \"Colegio de Estudios Científicos y Tecnológicos del Estado de México\",\n                    \"subTitle\": \"TechnicianTécnico en electricidad\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696176946448,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Product Engineer with 5 years background working within technology industry. Polished in product management, system design, building digital models of concepts, testing and creating prototypes. Proficient in software development, system design, UI design, debugging and testing. Focused and results-oriented professional possessing strong communication and motivational skills. IoT enthusiast.\",\n            \"skills\": [\n                \"Liderazgo\",\n                \"Gestión de proyectos\",\n                \"Administración y dirección de empresas\",\n                \"Servicio de atención al cliente\",\n                \"Microsoft Office\",\n                \"Lean manufacturing\",\n                \"Electrónica\",\n                \"SolidWorks\",\n                \"Electricidad\",\n                \"AutoCAD\",\n                \"Mastercam\",\n                \"CNC\",\n                \"Mejora de procesos\",\n                \"Controlador lógico programable (PLC) de Allen Bradley\",\n                \"Programación con control numérico\",\n                \"Programación de PLC´s\",\n                \"Negociación\",\n                \"Neumática\",\n                \"Hidráulica\",\n                \"Microsoft Excel\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.3222599,\n                    \"lon\": -83.17631449999999\n                },\n                \"formattedAddress\": \"Dearborn, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 2983,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"4DE7ED0990486B7831FDD4080D7EBB14\",\n            \"canonical\": \"https://www.linkedin.com/in/angela-cook-pe-csp-64828018\",\n            \"fullname\": \"Angela CSP\",\n            \"headline\": \"Head of Environmental Protection, Sustainability, Security, Safety & Health USA & Canada\",\n            \"location\": \"Auburn Hills, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQEifb5iRJKY1Q/profile-displayphoto-shrink_800_800/0/1628295856047?e=2147483647&v=beta&t=XuFB6IxJttBCbvIkFWZxRq1iomMpxLKuhZYf817UqMc\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/angela-cook-pe-csp-64828018\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2020-11-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Vitesco Technologies Group AG\",\n                    \"position\": \"Head of Environmental Protection, Sustainability, Security, Safety & Health USA & Canada\",\n                    \"description\": \"Head of US & Canada ESH and Sustainability team, including leader of NA Crisis Team and emergency response programs. Leads US & Canada sustainability core team in support of CO2 neutrality roadmap with 2030 targets for clean mobility, climate protection, resource efficiency and circularity, responsible sourcing, and occupational safety & health. Also, manages environmental remediation at legacy sites.  Leads ESH & Sustainability functions for US & Canada manufacturing, R&D and Show more Head of US & Canada ESH and Sustainability team, including leader of NA Crisis Team and emergency response programs. Leads US & Canada sustainability core team in support of CO2 neutrality roadmap with 2030 targets for clean mobility, climate protection, resource efficiency and circularity, responsible sourcing, and occupational safety & health. Also, manages environmental remediation at legacy sites.  Leads ESH & Sustainability functions for US & Canada manufacturing, R&D and warehousing, managing a team of direct and indirect reports.  Sets North American KPIs and tracks sustainability and environmental objectives and targets  Workers Compensation Management and case review  Administers ESH e-Learning platform for R&D locations (SaaS),  Global ISO 14001 and 45001 internal auditor,  Implemented ISO 45003 Psycho-Social Risk Assessment in US & CAN  Coordinates insurance risk loss control visits and surveys by insurance vendors Show less\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2015-08-01\",\n                    \"leaveDate\": \"2020-11-01\",\n                    \"company\": \"Acument Global Technologies\",\n                    \"position\": \"Corporate EHS Manager - North America\",\n                    \"description\": \"Managed Acument Global Technologies North America EHS initiatives and policies including maintaining ISO 14001 Corporate Multi-Site Umbrella Certification, North America Sustainability requests, and Corporate Environmental, Health & Safety.  Directed US & Mexico EHS programs at 10 manufacturing plants and 2 distribution centers with a team of 10 direct and indirect reports,  Successfully led company to an umbrella multi-site certification for ISO 14001:2015 saving over $100k annually, Show more Managed Acument Global Technologies North America EHS initiatives and policies including maintaining ISO 14001 Corporate Multi-Site Umbrella Certification, North America Sustainability requests, and Corporate Environmental, Health & Safety.  Directed US & Mexico EHS programs at 10 manufacturing plants and 2 distribution centers with a team of 10 direct and indirect reports,  Successfully led company to an umbrella multi-site certification for ISO 14001:2015 saving over $100k annually,  Reduced Workers Compensation spend by 25% with strict case review and management,  Set corporate safety KPIs, and environmental objectives and targets,  Reported monthly EHS statistics to CEO and senior management team,  Maintained documentation for OSHA and EPA requirements  Conducted walk through/GEMBA audits at all facilities to eliminate unsafe acts and/or conditions, and environmental risks,  Local compliance management at the Fenton Processing Center including zinc and nickel plating lines, waste water treatment plants and heat treat processes. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2014-01-01\",\n                    \"leaveDate\": \"2015-08-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"EHS Manager - Viper Plant, Warren Stamping & Corporate Safety\",\n                    \"description\": \" Corporate Safety Manager for Powertrain - Launched new transmission plant from a safety perspective, - Audited new equipment and launch safety processes, - Lead of corporate Arc Flash program, - Key author for equipment safety specifications for industrial machinery manual.  EHS Department Manager Warren Stamping Plant - Led team of 6 direct and 4 indirect reports, - World Class Manufacturing (WCM) Safety Pillar Lead, - Obtained Show more  Corporate Safety Manager for Powertrain - Launched new transmission plant from a safety perspective, - Audited new equipment and launch safety processes, - Lead of corporate Arc Flash program, - Key author for equipment safety specifications for industrial machinery manual.  EHS Department Manager Warren Stamping Plant - Led team of 6 direct and 4 indirect reports, - World Class Manufacturing (WCM) Safety Pillar Lead, - Obtained ISO 50001 and OHSAS 18001 certifications at the plant, along with maintaining ISO14001.  Viper Plant EHS Manager and WCM Safety and Environment Pillar lead. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2012-03-01\",\n                    \"leaveDate\": \"2014-02-01\",\n                    \"company\": \"TRW\",\n                    \"position\": \"HS&E Manager\",\n                    \"description\": \"Manager for the Health, Safety, Environment and Security Department at TRW Automotive and was responsible for development and implementation of health and safety systems and processes for two Plants of 650 employees. Responsibilities included supervision of direct and indirect reports, oversight of Medical Department including Workers Compensation Management and case review; management of Security Department, environmental and energy engineers, metal working fluids contractor, and UAW trainer. Show more Manager for the Health, Safety, Environment and Security Department at TRW Automotive and was responsible for development and implementation of health and safety systems and processes for two Plants of 650 employees. Responsibilities included supervision of direct and indirect reports, oversight of Medical Department including Workers Compensation Management and case review; management of Security Department, environmental and energy engineers, metal working fluids contractor, and UAW trainer. Responsible for continued ISO 14001 certification. Ms. Cook was also the Business Unit Energy Champion for TRW North American Braking responsible for implementing and reporting on energy cost reduction projects at 12 Sites in US, Canada and Mexico. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1996-03-01\",\n                    \"leaveDate\": \"2012-03-01\",\n                    \"company\": \"Golder Associates\",\n                    \"position\": \"Senior Environmental Engineer & Regional Safety Coordinator\",\n                    \"description\": \"Regional Health and Safety Manager for the Great Lakes Operations (Michigan, Ohio, Illinois and Wisconsin offices) ensuring training requirements are met for staff and preparing or reviewing site-specific health and safety plans for various field efforts. As a consultant, I managed and completed many projects assisting manufacturing, transportation, mining, food and beverage, and pharmaceutical companies throughout the United States with their EHS compliance programs such as SPCC and SWPPP Show more Regional Health and Safety Manager for the Great Lakes Operations (Michigan, Ohio, Illinois and Wisconsin offices) ensuring training requirements are met for staff and preparing or reviewing site-specific health and safety plans for various field efforts. As a consultant, I managed and completed many projects assisting manufacturing, transportation, mining, food and beverage, and pharmaceutical companies throughout the United States with their EHS compliance programs such as SPCC and SWPPP plans, RMP and PSM programs and emergency response plans. I was also the regional health and safety trainer teaching HAZWOPER 4- hour and 8-hour, first aid, CPR, AED, DOT and RCRA courses for clients and internally for Golder employees. I performed In-Plant Environmental, Health and Safety Audits at for various clients to assist in meeting OSHA and EPA Compliance programs. I was the Program Director for the Canadian National Rail, Real Estate Program in the USA which involved conducting Phase I, II, III Environmental Site Assessments, decommissioning and demolition, tank removals, and regulated materials inventories at 120 properties in Michigan, Ohio, Indiana, Illinois, Vermont and Connecticut when CN purchased the Illinois Central Rail line and also the Grand Truck Rail Line. My responsibilities included client interface, project and personnel management, soliciting RFPs, scheduling field work, sampling and laboratory services, subcontractor oversight and contract negotiations. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1994-01-01\",\n                    \"leaveDate\": \"1996-03-01\",\n                    \"company\": \"Weston Solutions, Inc.\",\n                    \"position\": \"Environmental Engineer and Safety Officer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1993-05-01\",\n                    \"leaveDate\": \"1994-06-01\",\n                    \"company\": \"Halliburton Company\",\n                    \"position\": \"Environmental Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"MIT Professional Education\",\n                    \"subTitle\": \"Sustainable Industry, Clean Energy, Sustainable Infrastructure https://www.credential.net/9a6b0012-9043-48e3-bc30-9df29ec10809\"\n                },\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Master of Science, Bachelor of ScienceCivil and Environmental Engineering, 1993, Engineering Arts Civil Engineering & Business Minor, 1991\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696328476013,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Experienced Corporate Sustainability, Environmental, Health, Safety, and Security Manager focused on compliance and leadership of multi-site/multi-country EHS programs. Highlights include: lead US & Canada sustainability core team, ensure compliance with Federal, State and local environmental and safety regulations; lead regional auditing team for maintaining management system certifications (ISO 14001, 45001 and 50001), Worker’s Compensation management, responsible for training and tracking KPIs, crisis team and emergency response program leader. Supports CO2 neutrality roadmap with 2030 targets for clean mobility, climate protection, resource efficiency and circularity, responsible sourcing, and occupational safety & health. Certified Safety Professional (CSP), and a registered Professional Environmental Engineer (PE) in the State of Michigan. I have a key focus on internal customer service and team leadership.\",\n            \"skills\": [\n                \"Industrial Hygiene\",\n                \"EHS\",\n                \"Environmental\",\n                \"Emergency Management\",\n                \"Compliance Audits\",\n                \"PSM\",\n                \"Hazardous Waste Management\",\n                \"Environmental Compliance\",\n                \"Environmental Management\",\n                \"Occupational Health\",\n                \"HAZWOPER\",\n                \"Risk Assessment\",\n                \"RCRA\",\n                \"Safety Management\",\n                \"Auditing\",\n                \"Environmental Awareness\",\n                \"Environmental Management Systems\",\n                \"Safety Management Systems\",\n                \"Waste Management\",\n                \"Root Cause Analysis\",\n                \"Environmental Engineering\",\n                \"Accident Investigation\",\n                \"ISO 14001\",\n                \"Environmental Auditing\",\n                \"Industrial Safety\",\n                \"Workplace Safety\",\n                \"Construction Safety\",\n                \"Remediation\",\n                \"Quality Auditing\",\n                \"Environmental Consulting\",\n                \"Behavior Based Safety\",\n                \"Hazard Analysis\",\n                \"Hazardous Materials\",\n                \"Waste\",\n                \"Hazard Recognition\",\n                \"Environmental Impact Assessment\",\n                \"Mining\",\n                \"Safety Auditing\",\n                \"Ergonomics\",\n                \"Environmental Permitting\",\n                \"Asbestos\",\n                \"Phase I\",\n                \"EPA\",\n                \"Water\",\n                \"Environment, Health, and Safety (EHS)\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6875323,\n                    \"lon\": -83.2341028\n                },\n                \"formattedAddress\": \"Auburn Hills, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11112,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"E2515E542616659CF185CA1161383C48\",\n            \"canonical\": \"https://www.linkedin.com/in/sandystojkovski\",\n            \"fullname\": \"Sandy Stojkovski\",\n            \"headline\": \"CEO North America at Vitesco Technologies\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQHuvVU3ex_N_w/profile-displayphoto-shrink_800_800/0/1612565210341?e=2147483647&v=beta&t=AbcOtii3uXVTpirAsaT4RPghzWmyTccQeFyx-eSYfnw\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/sandystojkovski\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Vitesco Technologies Group AG\",\n                    \"position\": \"CEO & Head of Electrification Solutions Division North America\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2016-01-01\",\n                    \"leaveDate\": \"2017-01-01\",\n                    \"company\": \"Marelli\",\n                    \"position\": \"President and General Manager Powertrain North America\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2014-01-01\",\n                    \"leaveDate\": \"2015-01-01\",\n                    \"company\": \"ZF Friedrichshafen AG\",\n                    \"position\": \"Vice President Global Engineering Excellence\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"2014-01-01\",\n                    \"company\": \"AVL\",\n                    \"position\": \"President\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ricardo plc\",\n                    \"position\": \"Director, Complex Systems Engineering and Director US Government Market Sector\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"PAT Leader, Vehicle Engineering\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"BSMechanical Engineering\"\n                },\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"MastersBusiness Administration\"\n                },\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"MSIndustrial Manufacturing Systems Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696317561031,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am results oriented, hands-on strategic and operational leader with a technical foundation and broad business experience in the manufacturing industry with companies ranging in size from Fortune 500 corporations to start-ups. Collaborative and entrepreneurial, I build and lead teams to capitalize on change in technology based businesses. Competencies: Full P&L accountability, powertrain electrification, vision led leadership, business transformation (start up, turnaround, growth, restructuring, acquisition, spin-off), operational improvement, team and culture building, board advisor/member/interface.\",\n            \"skills\": [\n                \"Strategy\",\n                \"Automotive\",\n                \"Program Management\",\n                \"Product Development\",\n                \"Strategic Planning\",\n                \"New Business Development\",\n                \"Management Consulting\",\n                \"Management\",\n                \"Continuous Improvement\",\n                \"Leadership\",\n                \"Cross-functional Team Leadership\",\n                \"Business Development\",\n                \"Engineering\",\n                \"Engineering Management\",\n                \"Analytics\",\n                \"Enterprise Software\",\n                \"Business Strategy\",\n                \"Systems Engineering\",\n                \"Start-ups\",\n                \"Project Planning\",\n                \"Team Leadership\",\n                \"Competitive Analysis\",\n                \"Business Modeling\",\n                \"Risk Management\",\n                \"Six Sigma\",\n                \"Complex Systems\",\n                \"Innovation Based Growth\",\n                \"Fuel Economy Regulations\",\n                \"Scenario Planning\",\n                \"Value Proposition Analysis\",\n                \"Information Visualization\",\n                \"Lean Business Processes\",\n                \"Change Management\",\n                \"Analysis\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 2192,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"2mPNhIABdbruSb0Iq2IL\",\n            \"canonical\": \"https://www.linkedin.com/in/leif-millar\",\n            \"fullname\": \"Leif Millar\",\n            \"headline\": \"Software Analyst\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5103AQEVH3EDIwVgww/profile-displayphoto-shrink_800_800/0/1516921728291?e=2147483647&v=beta&t=Lk8X0uS1KVwDoJGKQjutdJuZ2KR7PC0sPNGqiGIQRA4\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": {\n                    \"url\": \"https://www.facebook.com/leif.millar\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/leif-millar\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Rapita Systems\",\n                    \"position\": \"Embedded Software Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Embedded Software Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"University of Michigan\",\n                    \"position\": \"Research Assistant\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2017-05-01\",\n                    \"leaveDate\": \"2017-07-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Autonomous Vehicle Software Engineer Intern\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2016-05-01\",\n                    \"leaveDate\": \"2016-08-01\",\n                    \"company\": \"ESG Automotive USA\",\n                    \"position\": \"Infotainment Software Engineer Intern\",\n                    \"description\": \"**Supporting Ford Motor Company** * Automate modification of DBC files using Python to support vehicle emulation on Test Development Kit (TDK). * Implement unit testing framework in MATLAB using Jenkins to remotely initiate tests of TDK vehicle emulation states and manage test log data.\"\n                },\n                {\n                    \"hiredDate\": \"2015-05-01\",\n                    \"leaveDate\": \"2015-08-01\",\n                    \"company\": \"The Mitre Corporation\",\n                    \"position\": \"Application Developer Intern\",\n                    \"description\": \"* Develop CAVT radio capability simulation application for the US Army using C#, HTML, and .NET framework in Visual Studio. * Designed and implemented algorithm for placing platforms on map according to placement in echelon structure.\"\n                },\n                {\n                    \"hiredDate\": \"2014-05-01\",\n                    \"leaveDate\": \"2014-08-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Strategy and Planning Intern\",\n                    \"description\": \"* Conducted bench-marking of OEMs in the automotive industry to examine how strategic objectives influence make/buy decisions. * Created net impact tool to analyze how different sourcing decisions will affect NPV, headcount, and floor space across GM North American plants. * Side Project: Automated conversion of parts breakdown file for bill of material generation program compatibility. Saves 15.6 engineering hours per week.\"\n                },\n                {\n                    \"hiredDate\": \"2012-05-01\",\n                    \"leaveDate\": \"2013-08-01\",\n                    \"company\": \"Texas Instruments Incorporated\",\n                    \"position\": \"Product Test Engineer Intern\",\n                    \"description\": \"Note: Summer internship for 2012 and 2013. * Tested and made recommendations to strengthen 20 wafer probe test interface card diagnostic programs in Pascal, improving fault detection capabilities of and increasing automated test program generation capabilities * Performed statistical analysis on wafer test results of over 200 testers to determine root source of high fail rates for top-10 failing test programs; actively monitored testers to identify potential problems in test setup Show more Note: Summer internship for 2012 and 2013. * Tested and made recommendations to strengthen 20 wafer probe test interface card diagnostic programs in Pascal, improving fault detection capabilities of and increasing automated test program generation capabilities * Performed statistical analysis on wafer test results of over 200 testers to determine root source of high fail rates for top-10 failing test programs; actively monitored testers to identify potential problems in test setup and material production * Automated report generation of weekly test data top-10 offenders, saving 5 engineering hours per week Show less\"\n                },\n                {\n                    \"hiredDate\": \"2004-01-01\",\n                    \"leaveDate\": \"2010-01-01\",\n                    \"company\": \"United States Air Force\",\n                    \"position\": \"F-15 Avionics Backshop Technician\",\n                    \"description\": \"* Operated and maintained F-15 electronics warfare test station and 500+ aircraft components and contributed to monthly repair of over $30 million of equipment with 92% equipment serviceability rate from 2006-2009 * Led team to plan and organize avionics maintenance activities of electronics warfare section. Contributed to 35% lower than Air Force average backlog from 2008-2009 and contributed to 96% quality assurance pass rate from 2007-2009 * Performed major hardware upgrade of Show more * Operated and maintained F-15 electronics warfare test station and 500+ aircraft components and contributed to monthly repair of over $30 million of equipment with 92% equipment serviceability rate from 2006-2009 * Led team to plan and organize avionics maintenance activities of electronics warfare section. Contributed to 35% lower than Air Force average backlog from 2008-2009 and contributed to 96% quality assurance pass rate from 2007-2009 * Performed major hardware upgrade of electronic warfare test station, resulting in increased accuracy of performance testing and 20% decrease in system-wide run time Show less\"\n                }\n            ],\n            \"languagesList\": [\n                \"German\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan College of Engineering\",\n                    \"subTitle\": \"MSEComputer Science Engineering\"\n                },\n                {\n                    \"title\": \"University of Michigan College of Engineering\",\n                    \"subTitle\": \"BSEComputer Engineering\"\n                },\n                {\n                    \"title\": \"Oakland Community College\",\n                    \"subTitle\": \"N/APre-Engineering3.9\"\n                },\n                {\n                    \"title\": \"Community College of the Air Force\",\n                    \"subTitle\": \"Associate in Applied ScienceAvionic Systems Technology4.0\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696313672063,\n            \"military\": false,\n            \"clearance\": true,\n            \"about\": \"After starting my career in the automotive industry working on embedded system software development using Vector-based AUTOSAR tools, I am looking to move into aeronautical, medical device, or startup embedded system software development.\",\n            \"skills\": [\n                \"C++\",\n                \"Teamwork\",\n                \"Microsoft Excel\",\n                \"PowerPoint\",\n                \"Microsoft Word\",\n                \"Project Management\",\n                \"Public Speaking\",\n                \"Matlab\",\n                \"Data Analysis\",\n                \"Testing\",\n                \"Electrical Troubleshooting\",\n                \"C\",\n                \"Engineering\",\n                \"Debugging\",\n                \"Microsoft Office\",\n                \"Java\",\n                \"Verilog HDL\",\n                \"Visual Basic\",\n                \"Verilog\",\n                \"AUTOSAR\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 3353,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"87B70474C9845A300F2D6B3573E798CA\",\n            \"canonical\": \"https://www.linkedin.com/in/mark-greenwald-9697911\",\n            \"fullname\": \"Mark Greenwald\",\n            \"headline\": \"Manufacturing Quality Systems | Supplier Quality and Development | Operational Excellence\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Machinery\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5103AQE3b1BdXO4MQw/profile-displayphoto-shrink_800_800/0/1516317682251?e=2147483647&v=beta&t=P4I9S6cBYtTWLC-d5_Bu9lF3NdyHVuXyqG8rgLJMQ_A\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/mark-greenwald-9697911\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2017-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Thermo King Corporation\",\n                    \"position\": \"VP of Quality\",\n                    \"description\": \"Thermo King is a $2 B global leader in transport refrigeration and heating for trailers, trucks, buses, rail cars, and shipboard containers.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2017-03-01\",\n                    \"company\": \"Ingersoll Rand Inc.\",\n                    \"position\": \"VP, Global Supplier Quality and Development\",\n                    \"description\": \"Ingersoll Rand is a $14 B global business committed to creating and sustaining safe, comfortable and efficient environments. Brands - include Club Car, Ingersoll Rand, Thermo King and Trane.\"\n                },\n                {\n                    \"hiredDate\": \"2006-05-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"Eaton Corporation, PLC\",\n                    \"position\": \"Global Director - Supplier Development -Vehicle Group\",\n                    \"description\": \"A $22 B diversified industrial company that manufactures electrical power distribution and control equipment, hydraulic products, aerospace propulsion systems, truck safety systems and automotive systems.\"\n                },\n                {\n                    \"hiredDate\": \"2001-01-01\",\n                    \"leaveDate\": \"2006-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Powertrain Manager - Supplier Technical Assistance\",\n                    \"description\": \"A $112B fortune 500 company which designs, develops, manufactures, and services cars and trucks worldwide.\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2001-01-01\",\n                    \"company\": \"Rolls-Royce North America\",\n                    \"position\": \"North American Director - Value Improvement and Supplier Quality\",\n                    \"description\": \"A $13B global company which designs, develops and manufactures integrated power systems for use on land, at sea and in the air.\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Commodity Manager - Supplier Technical Assistance\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"State University of New York College at Buffalo\",\n                    \"subTitle\": \"BSIndustrial Technology\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696305676748,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am an innovative, decisive and hands-on executive with a history of leading geographically dispersed and culturally diverse organizations. My global leadership experience with Fortune 500 companies in Automotive, Aerospace and Diversified Industrials has enabled me to successfully develop and deploy multi-site quality and operational excellence architectures for both internal manufacturing and suppliers. This has led to a proven track record of developing and executing strategies that deliver bottom line results. My skills allow me to build and effectively lead cross-functional teams and align organizations around winning operational strategies. My cross-industry experience coupled with my authentic leadership style equips me with broad expertise in quality management systems, customer quality, supplier development, operational excellence, talent management and employee development. Technical/Systems Competencies • Manufacturing Quality Systems (ISO, IATF, APQP, PPAP) • Supplier Quality Systems • Customer Quality • Warranty Reduction • Lean Deployment • A3 Problem Solving Leadership Competencies • Transformational Thinking • Servant Leadership • Coaching/Mentoring • Cross-Functional Collaboration • Leadership Through Influence • Change Management\",\n            \"skills\": [\n                \"Lean Manufacturing\",\n                \"Supplier Quality\",\n                \"Automotive\",\n                \"Manufacturing\",\n                \"Supply Chain\",\n                \"Sourcing\",\n                \"Global Sourcing\",\n                \"Kaizen\",\n                \"Kanban\",\n                \"Supply Chain Management\",\n                \"Value Stream Mapping\",\n                \"Supply Management\",\n                \"Manufacturing Engineering\",\n                \"Quality System\",\n                \"FMEA\",\n                \"Supplier Development\",\n                \"Six Sigma\",\n                \"Industrial Engineering\",\n                \"Continuous Improvement\",\n                \"5S\",\n                \"Program Management\",\n                \"APQP\",\n                \"Leadership\",\n                \"Cross-functional Team Leadership\",\n                \"Procurement\",\n                \"TQM\",\n                \"DMAIC\",\n                \"Manufacturing Operations Management\",\n                \"Root Cause Analysis\",\n                \"Strategic Sourcing\",\n                \"Production Planning\",\n                \"ISO\",\n                \"Aerospace\",\n                \"MRP\",\n                \"Process Engineering\",\n                \"Toyota Production System\",\n                \"PPAP\",\n                \"Engineering Management\",\n                \"Product Development\",\n                \"Process Improvement\",\n                \"Operational Excellence\",\n                \"TPM\",\n                \"Materials Management\",\n                \"Purchasing\",\n                \"Quality Management\",\n                \"SPC\",\n                \"Manufacturing Operations\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8921,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"tNwb5nABFVkhVdRhDVe9\",\n            \"canonical\": \"https://www.linkedin.com/in/rachelawoodruff\",\n            \"fullname\": \"Rachel Woodruff\",\n            \"headline\": \"Corporate Legal, Compliance & Regulatory Affairs\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"law practice\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQGI2EuUZUv68w/profile-displayphoto-shrink_800_800/0/1517282220225?e=2147483647&v=beta&t=96q_proLxfvmKIAUdXovgqbKBgumQ0UmH_FtuFMSppQ\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/rachelawoodruff\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Optum\",\n                    \"position\": \"Senior Recruiter: Corporate Legal, Compliance & Regulatory Affairs\",\n                    \"description\": \"Optum is a health services and innovation company on a mission to help people live healthier lives and to help make the health system work better for everyone. Optum, part of the UnitedHealth Group family of businesses, is powering modern health care by connecting and serving the whole health system across 150 countries. We combine cutting-edge technology, the worlds largest health care database and vast expertise to improve health care delivery, quality and efficiency. We are Show more Optum is a health services and innovation company on a mission to help people live healthier lives and to help make the health system work better for everyone. Optum, part of the UnitedHealth Group family of businesses, is powering modern health care by connecting and serving the whole health system across 150 countries. We combine cutting-edge technology, the worlds largest health care database and vast expertise to improve health care delivery, quality and efficiency. We are revolutionizing health care that serves more than 100,000 physicians, practices and other health care facilities, as well as 127 million individual consumers. How we power modern health: - Data and analytics - Health care delivery - Health care operations - Pharmacy care services - Population health management - Advisory services Simpler health plans, better experience, healthier lives. Our Values: Integrity - Honor commitments. Never compromise ethics. Compassion - Walk in the shoes of people we serve and those with whom we work. Relationships - Build trust through collaboration. Innovation - Invent the future, learn from the past. Performance - Demonstrate excellence in everything we do. Learn more about Optum at: https://www.optum.com/ Search and apply for Optum careers at: https://www.workatoptum.com Show less\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-02-01\",\n                    \"leaveDate\": \"2021-12-01\",\n                    \"company\": \"Baker McKenzie\",\n                    \"position\": \"Recruitment Manager, North America\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2016-05-01\",\n                    \"leaveDate\": \"2019-02-01\",\n                    \"company\": \"Robert Half International Inc.\",\n                    \"position\": \"Project Fulfillment Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2014-03-01\",\n                    \"leaveDate\": \"2016-05-01\",\n                    \"company\": \"Lumen Legal\",\n                    \"position\": \"Legal Recruiter\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2009-05-01\",\n                    \"leaveDate\": \"2014-03-01\",\n                    \"company\": \"Freelancer\",\n                    \"position\": \"Attorney\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2000-08-01\",\n                    \"leaveDate\": \"2007-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Marketing Communications Project Manager\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [\n                \"English\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University Law School\",\n                    \"subTitle\": \"Juris Doctor\"\n                },\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"Bachelor of Arts - BA\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696286588420,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Recruitment Manager for Baker Mckenzies new Tampa Center State Bar of Michigan: Active and in good standing\",\n            \"skills\": [\n                \"Recruiting\",\n                \"Applicant Tracking Systems\",\n                \"Sourcing\",\n                \"Project Management\",\n                \"Public Speaking\",\n                \"Corporate Communications\",\n                \"Strategic Planning\",\n                \"Leadership\",\n                \"Marketing Communications\",\n                \"Marketing Strategy\",\n                \"Relativity\",\n                \"Document Review Staffing\",\n                \"RFP Generation\",\n                \"Vendor Contracts\",\n                \"Distance Learning\",\n                \"RFP Management\",\n                \"Resume Writing\",\n                \"Screening Resumes\",\n                \"Sendouts\",\n                \"Secondments\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7580,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"7F265376F899A6E9B7F6FBF8730ACAFB\",\n            \"canonical\": \"https://www.linkedin.com/in/karen-carmody-204b281b\",\n            \"fullname\": \"Karen Carmody\",\n            \"headline\": \"Instructional Designer at Raytheon Professional Services\",\n            \"location\": \"Allen Park, Michigan\",\n            \"industry\": \"Professional Training & Coaching\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4D03AQHZinIPiplEGA/profile-displayphoto-shrink_800_800/0/1516883368482?e=2147483647&v=beta&t=cA4YT1Ftd67M_cNUGFe38rLFPPLZqbxn1sQak-8mbYY\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/karen-carmody-204b281b\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2010-07-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Raytheon Company\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Design and develop web-based training programs for global initiatives.\"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Raytheon Company\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Design and coordinate the development of a 2 hour web-based technical training program for General Motors Brazil. The course was translated into Portuguese and required many specific design considerations. Both the SME and client reside in Brazil, which offered the opportunity to work internationally.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"2010-01-01\",\n                    \"company\": \"Launch Learning Group\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Assisted in the design of a one week state-certified training program to prepare individuals for the State of Michigan's insurance broker licensing exam.\"\n                },\n                {\n                    \"hiredDate\": \"2006-01-01\",\n                    \"leaveDate\": \"2007-02-01\",\n                    \"company\": \"Pulte Homes Incorporated\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Design and develop both on-line and instructor led training programs, as well as conduct train-the-trainer sessions to prepare the staff for implementation. Programs included a financial forecasting software program for senior analysts in the Finance Division and a comprehensive reporting software program used throughout the Purchasing Division.\"\n                },\n                {\n                    \"hiredDate\": \"2004-08-01\",\n                    \"leaveDate\": \"2005-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Responsibilities: Design web-based training programs for the Division of Health and Occupational Safety. These programs help the North American facilities align operations with the new OSHA standards. Programs included Hazard Communication, Electrical Arc Safety and The Protection of Drinking Water.\"\n                },\n                {\n                    \"hiredDate\": \"2002-07-01\",\n                    \"leaveDate\": \"2003-08-01\",\n                    \"company\": \"Blue Care Network\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Design, develop, implement and facilitate training to support the launch of a new data management software program. Extensive work done to align workflows, processes and procedures. Training medium included instructor-led, self-study, computer-based and on-the-job training.\"\n                },\n                {\n                    \"hiredDate\": \"1998-11-01\",\n                    \"leaveDate\": \"2003-08-01\",\n                    \"company\": \"Tracey & Associates Incorporated\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Design, develop and facilitate various training programs including, but not limited to, leadership development courses for GM University (interactive distance learning), an operations curriculum for ADP-Ford and a Creative Thinking course for Chrysler executives (both instructor-led).\"\n                },\n                {\n                    \"hiredDate\": \"2001-01-01\",\n                    \"leaveDate\": \"2001-10-01\",\n                    \"company\": \"Kmart Resource Center\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Responsibilities: Oversee project completion for the Interactive Distance Learning Team, conduct needs assessments, design instruction, develop materials and facilitate distance learning sessions. Analyze session data, prepare summary reports, and present training results to clients. Maintain technical integrity of the studio by performing routine analyses and troubleshooting as needed. Advertise and promote the capabilities of interactive distance learning to internal clients.\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2000-10-01\",\n                    \"company\": \"UAW-Blue Cross Blue Shield of Michigan\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Responsibilities: Design a corporate-wide leadership development curriculum for management and union employees. Oversee material development as completed by both Wayne State University and external CBT developers. Evaluate available and appropriate computer-based and web-based instruction, select vendor resources and oversee customization. Provide change management consultation as policies were adjusted to align with legal provisions.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Detroit Mercy\",\n                    \"subTitle\": \"Bachelors of ScienceEducation; Special Education; Special Education\"\n                },\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"Masters of ArtsEducation; Instructional Technology; Interactive Multimedia\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696280495015,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I have worked as an instructional designer for 11 years. Analysis, design, development, implementation, facilitation and evaluation have all been part of my professional responsibilities. The courses I have designed cover a wide range of content areas including healthcare, construction, retail, health and safety, insurance, and automotive to name a few. Delivery methods have included web-based, computer-based, instructor led, self-study and interactive distance learning. I prefer project-based work and have benefited tremendously from working with a wide range of organizations. Specialties: web-based, computer-based, instructor led, self-study and interactive distance learning\",\n            \"skills\": [\n                \"Program Management\",\n                \"Curriculum Design\",\n                \"Training\",\n                \"Leadership Development\",\n                \"E-Learning\",\n                \"Change Management\",\n                \"Analysis\",\n                \"Teaching\",\n                \"Employee Training\",\n                \"Distance Learning\",\n                \"Instructional Design\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.2575385,\n                    \"lon\": -83.2110375\n                },\n                \"formattedAddress\": \"Allen Park, MI 48101, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7213,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"D760DB287AE20B219CE750343F35DC64\",\n            \"canonical\": \"https://www.linkedin.com/in/yu-sun-4a289910\",\n            \"fullname\": \"Yu Sun\",\n            \"headline\": \"Principal Software Engineer at WBTL USA\",\n            \"location\": \"Utica, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/yu-sun-4a289910\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2020-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"WBTL USA Inc\",\n                    \"position\": \"Principal Software Engineer\",\n                    \"description\": \"Developing vision based Autonomous Driving Assistance System. Basic sofftware module development based Autosar architecture, including modeling and implementing the communication between ECU and Sensors, as well as different software modules.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2017-03-01\",\n                    \"leaveDate\": \"2020-05-01\",\n                    \"company\": \"Zenuity\",\n                    \"position\": \"Senior Algorithm Engineer\",\n                    \"description\": \"Developing software for multi sensor perception(radar, lidar, camera) and data fusion, and target tracking algorithms in autonomous driving system.\"\n                },\n                {\n                    \"hiredDate\": \"2012-08-01\",\n                    \"leaveDate\": \"2017-03-01\",\n                    \"company\": \"MAGNA ELECTRONICS LIMITED\",\n                    \"position\": \"Lead Control Software Engineer on ADAS\",\n                    \"description\": \"Developing model based control software for camera-based ADAS features, including lateral control ( lane centering, lane keeping), longitudinal control (ACC). Verification in simulation using Carmaker and vehicle test.\"\n                },\n                {\n                    \"hiredDate\": \"2005-05-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Senior Research Engineer\",\n                    \"description\": \"My job is related to automotive research and development, It mainly involves the subjects of sensor fusion, vehicle control, diagnosis of vehicular battery charging system, and advanced control technology of propulsion systems.\"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2004-01-01\",\n                    \"company\": \"Michigan State University\",\n                    \"position\": \"Research Assistant at Robotics Automation Lab\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Ph.D.Electrical and Computer Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696273029106,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Simulink\",\n                \"Matlab\",\n                \"C++\",\n                \"Embedded Systems\",\n                \"Robotics\",\n                \"Labview\",\n                \"Simulations\",\n                \"Automotive\",\n                \"Testing\",\n                \"Algorithms\",\n                \"Optimization\",\n                \"Programming\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6261446,\n                    \"lon\": -83.0335384\n                },\n                \"formattedAddress\": \"Utica, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8189,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"290s6XABFVkhVdRheDkN\",\n            \"canonical\": \"https://www.linkedin.com/in/franktyrybon\",\n            \"fullname\": \"Frank Tyrybon\",\n            \"headline\": \"Market Development Manager at Evonik Degussa\",\n            \"location\": \"Wyandotte, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static-exp1.licdn.com/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/franktyrybon\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2006-04-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Evonik Industries AG\",\n                    \"position\": \"Market Development Manager\",\n                    \"description\": \"Identify new applications and increase market share for Evonik Degussa High Performance Polymers.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2003-01-01\",\n                    \"leaveDate\": \"2006-01-01\",\n                    \"company\": \"Summit Polymers\",\n                    \"position\": \"Project Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2003-01-01\",\n                    \"company\": \"Injectronics\",\n                    \"position\": \"Project Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1998-01-01\",\n                    \"leaveDate\": \"1999-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Chemical Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Detroit Mercy\",\n                    \"subTitle\": \"BSChemical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696270806145,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.21420639999999,\n                    \"lon\": -83.14992389999999\n                },\n                \"formattedAddress\": \"Wyandotte, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 9315,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"W6ZpbH4BbmB1jfD0EDd_\",\n            \"canonical\": \"https://www.linkedin.com/in/phphilpott\",\n            \"fullname\": \"Paul MSME)\",\n            \"headline\": \"Technical Solutions Executive - Automotive Named Accounts at Autodesk - Automotive Engineer\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQEcLOovv57E5g/profile-displayphoto-shrink_800_800/0/1591180650072?e=2147483647&v=beta&t=bAmLYwL8m3KGlorkntwUzk_zPajCIsgX4QEbm4IY-fY\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/phphilpott\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Autodesk, Inc.\",\n                    \"position\": \"Technical Solutions Executive\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2008-06-01\",\n                    \"leaveDate\": \"2016-01-01\",\n                    \"company\": \"Fisher Unitech LLC\",\n                    \"position\": \"Senior PLM-PDM Implementation Consultant\",\n                    \"description\": \"RESPONSIBLITIES: Implemented SolidWorks PDM projects on various customer sites, remotely and onsite, including SQL Server install. Participated in sales cycle: perform demonstrations, help prospects clarify and prioritize their needs, design custom solutions that match those needs, manage expectations, construct appealing possibilities that they had not anticipated. Manage projects to bring within budget, and assist customer with obtaining additional funding if needed. Established Show more RESPONSIBLITIES: Implemented SolidWorks PDM projects on various customer sites, remotely and onsite, including SQL Server install. Participated in sales cycle: perform demonstrations, help prospects clarify and prioritize their needs, design custom solutions that match those needs, manage expectations, construct appealing possibilities that they had not anticipated. Manage projects to bring within budget, and assist customer with obtaining additional funding if needed. Established and maintained productive customer relations to keep project pipeline full and to leave each initial project as likely sources of future projects. Designed and implemented data migrations from Workgroup PDM, Windows shared drives, and arbitrary vault systems. Designed creative configuration solutions that take software beyond its normal capabilities. Advised customers on best practices and watch-outs; foster customer dependency as necessary member of data management team. Traveled 75% time to work onsite at customer facilities. ACCOMPLISHMENTS: Billed annual counseling hours of $300,000 - $400,000, including two years 100% billable. Led API programmers to develop set of SW PDM AddIns that provide commonly desired functionality. Led API programmers to develop tool to migrate CAD files from Windows folders into SW PDM vault. Companys first in-house implementation consultant; built all processes, practices, and documentation from scratch. Corporate leader in billable hours every year. Regular recognition as Employee of the Month, at least once each year. Show less\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Teamcenter PLM Application Engineer: C3P Business Unit\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1997-08-01\",\n                    \"leaveDate\": \"2007-05-01\",\n                    \"company\": \"Ben Carson Lifetime Scholars\",\n                    \"position\": \"Director, Co-Founder\",\n                    \"description\": \"The Lifetime Scholars Program operated out of Lawrence Tech University and then Wayne State University for ten years. We trained 150 Detroit-area High School students per semester & summer for the SAT as well as the basic math, grammar, and reading comprehension skills that form the bases for all rigorous academic fields. Most of our students were at risk and from designated failing high schools. We produced data proving that such students attain academic excellence when rigorously drilled Show more The Lifetime Scholars Program operated out of Lawrence Tech University and then Wayne State University for ten years. We trained 150 Detroit-area High School students per semester & summer for the SAT as well as the basic math, grammar, and reading comprehension skills that form the bases for all rigorous academic fields. Most of our students were at risk and from designated failing high schools. We produced data proving that such students attain academic excellence when rigorously drilled by subject matter experts who provide them encouragement, a detailed gameplan, and a suitable workspace. See our legacy webpage: http://lifetimescholars.keygraphicdesign.com/ Show less\"\n                },\n                {\n                    \"hiredDate\": \"1998-01-01\",\n                    \"leaveDate\": \"2004-01-01\",\n                    \"company\": \"The Second City\",\n                    \"position\": \"Writer, Performer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1990-01-01\",\n                    \"leaveDate\": \"1992-10-01\",\n                    \"company\": \"Austin American-Statesman\",\n                    \"position\": \"Contributing Writer\",\n                    \"description\": \"Music writer\"\n                },\n                {\n                    \"hiredDate\": \"1989-01-01\",\n                    \"leaveDate\": \"1992-01-01\",\n                    \"company\": \"The Daily Texan\",\n                    \"position\": \"Columnist\",\n                    \"description\": \"Named editorial page editor at the student paper of the University of Texas.\"\n                },\n                {\n                    \"hiredDate\": \"1989-01-01\",\n                    \"leaveDate\": \"1992-01-01\",\n                    \"company\": \"KAZI 88.7 Radio\",\n                    \"position\": \"On Air Personality\",\n                    \"description\": \"Long live soul music! I spun vinyl on the FM dial. ConFunkShun, The Time, Chaka Khan, Frankie Beverly & MAZE, Teena Maria, Slave, LTD, The Whispers, Rick James, Bobby Womack, Ohio Players, etc.\"\n                },\n                {\n                    \"hiredDate\": \"1988-01-01\",\n                    \"leaveDate\": \"1992-01-01\",\n                    \"company\": \"United States Army\",\n                    \"position\": \"Infantry Soldier - Army Reserves\",\n                    \"description\": \"Transferred to reserves to attend college. 11 Bravo!\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Georgia Institute of Technology\",\n                    \"subTitle\": \"Master’s DegreeMechanical Engineering\"\n                },\n                {\n                    \"title\": \"The University of Texas at Austin\",\n                    \"subTitle\": \"Bachelor’s DegreeMechanical Engineering\"\n                },\n                {\n                    \"title\": \"Florida Agricultural and Mechanical University\",\n                    \"subTitle\": \"Master of ScienceBiochemistry\"\n                },\n                {\n                    \"title\": \"Prairie View A&M University\",\n                    \"subTitle\": \"First year of collegeMechanical Engineering\"\n                },\n                {\n                    \"title\": \"Lbj High School\",\n                    \"subTitle\": \"-\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696270599709,\n            \"military\": false,\n            \"clearance\": true,\n            \"about\": \"An Austin boy who has served many technical roles across Detroits fabled automotive industry. Greatest achievement: training over a thousand Detroit high school students in academic rigor at the Lifetime Scholars program that I founded and directed.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8065,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"aaUjU3sBnZOAU3NytchY\",\n            \"canonical\": \"https://www.linkedin.com/in/markwgreenwald\",\n            \"fullname\": \"Mark Greenwald\",\n            \"headline\": \"Manufacturing Quality Systems | Supplier Quality and Development | Operational Excellence\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5103AQE3b1BdXO4MQw/profile-displayphoto-shrink_800_800/0/1516317682251?e=2147483647&v=beta&t=P4I9S6cBYtTWLC-d5_Bu9lF3NdyHVuXyqG8rgLJMQ_A\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/markwgreenwald\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2017-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Thermo King Corporation\",\n                    \"position\": \"VP of Quality\",\n                    \"description\": \"Thermo King is a $2 B global leader in transport refrigeration and heating for trailers, trucks, buses, rail cars, and shipboard containers.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2017-03-01\",\n                    \"company\": \"Ingersoll Rand Inc.\",\n                    \"position\": \"VP, Global Supplier Quality and Development\",\n                    \"description\": \"Ingersoll Rand is a $14 B global business committed to creating and sustaining safe, comfortable and efficient environments. Brands - include Club Car, Ingersoll Rand, Thermo King and Trane.\"\n                },\n                {\n                    \"hiredDate\": \"2006-05-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"Eaton Corporation, PLC\",\n                    \"position\": \"Global Director - Supplier Development -Vehicle Group\",\n                    \"description\": \"A $22 B diversified industrial company that manufactures electrical power distribution and control equipment, hydraulic products, aerospace propulsion systems, truck safety systems and automotive systems.\"\n                },\n                {\n                    \"hiredDate\": \"2001-01-01\",\n                    \"leaveDate\": \"2006-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Powertrain Manager - Supplier Technical Assistance\",\n                    \"description\": \"A $112B fortune 500 company which designs, develops, manufactures, and services cars and trucks worldwide.\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2001-01-01\",\n                    \"company\": \"Rolls-Royce North America\",\n                    \"position\": \"North American Director - Value Improvement and Supplier Quality\",\n                    \"description\": \"A $13B global company which designs, develops and manufactures integrated power systems for use on land, at sea and in the air.\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Commodity Manager - Supplier Technical Assistance\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"State University of New York College at Buffalo\",\n                    \"subTitle\": \"BSIndustrial Technology\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696270416266,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am an innovative, decisive and hands-on executive with a history of leading geographically dispersed and culturally diverse organizations. My global leadership experience with Fortune 500 companies in Automotive, Aerospace and Diversified Industrials has enabled me to successfully develop and deploy multi-site quality and operational excellence architectures for both internal manufacturing and suppliers. This has led to a proven track record of developing and executing strategies that deliver bottom line results. My skills allow me to build and effectively lead cross-functional teams and align organizations around winning operational strategies. My cross-industry experience coupled with my authentic leadership style equips me with broad expertise in quality management systems, customer quality, supplier development, operational excellence, talent management and employee development. Technical/Systems Competencies • Manufacturing Quality Systems (ISO, IATF, APQP, PPAP) • Supplier Quality Systems • Customer Quality • Warranty Reduction • Lean Deployment • A3 Problem Solving Leadership Competencies • Transformational Thinking • Servant Leadership • Coaching/Mentoring • Cross-Functional Collaboration • Leadership Through Influence • Change Management\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8920,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"QN7YzoIBwsNvXoZzWHxA\",\n            \"canonical\": \"https://www.linkedin.com/in/rich-johnson-1409b49b\",\n            \"fullname\": \"Rich Johnson\",\n            \"headline\": \"Automotive Technician at DC side street garage\",\n            \"location\": \"Pinckney, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQHDfRt6npNraA/profile-displayphoto-shrink_800_800/0/1581962626003?e=2147483647&v=beta&t=1M_rP-317nhvRaeY7SqVedDJoXRddrL4sqk_zFfDE0c\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/rich-johnson-1409b49b\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Lloyd Bridges Traveland\",\n                    \"position\": \"RV Tech\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2019-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"DC side street garage\",\n                    \"position\": \"Automotive Technician\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2002-04-01\",\n                    \"leaveDate\": \"2008-02-01\",\n                    \"company\": \"ASSEMBLERS PRECAST & STEEL SERVICES, INC\",\n                    \"position\": \"Oiler local 324\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1996-02-01\",\n                    \"leaveDate\": \"2002-02-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Prototype Technician\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [],\n            \"lastScraperUpdateTime\": 1696267655407,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4567013,\n                    \"lon\": -83.9463358\n                },\n                \"formattedAddress\": \"Pinckney, MI 48169, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 5786,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"-RLaXIAB5C_80KOhBZqF\",\n            \"canonical\": \"https://www.linkedin.com/in/cmpdiso\",\n            \"fullname\": \"Chris Paradiso\",\n            \"headline\": \"I enjoy engaging customers with my passion for solving complex Supply Chain challenges with cloud innovations.\",\n            \"location\": \"Clarkston, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/cmpdiso\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Autodesk, Inc.\",\n                    \"position\": \"Sr. Platform Solution Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2017-09-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Pure Barre Clarkston\",\n                    \"position\": \"Co-Owner\",\n                    \"description\": \"As a Pure Barre franchise owner it is a fun, demanding, and a rewarding experience that I'm happy to be sharing with my wife. We enjoy working within our local community building brand awareness, bringing a unique fitness alternative to the community, and empowering our Instructors and Clients to be the best they can be.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2013-06-01\",\n                    \"leaveDate\": \"2018-09-01\",\n                    \"company\": \"Oracle Corporation\",\n                    \"position\": \"Sr. Solution Consultant\",\n                    \"description\": \"Work with prospective and existing customers to understand their Product Lifecycle Management (PLM) business objectives; determine the optimal technology and software to facilitate achieving these objectives. Areas of focus: - Innovation Management - Product Development - Engineering Change Management - Supply Chain Collaboration - Program and Portfolio Management - Product Quality Management As part of the sales team create and deliver customer: - Product Show more Work with prospective and existing customers to understand their Product Lifecycle Management (PLM) business objectives; determine the optimal technology and software to facilitate achieving these objectives. Areas of focus: - Innovation Management - Product Development - Engineering Change Management - Supply Chain Collaboration - Program and Portfolio Management - Product Quality Management As part of the sales team create and deliver customer: - Product demonstrations and presentations - Value assessments - Implementation Roadmaps Show less\"\n                },\n                {\n                    \"hiredDate\": \"2010-02-01\",\n                    \"leaveDate\": \"2013-05-01\",\n                    \"company\": \"PTC Inc.\",\n                    \"position\": \"Sr. Technical Sales Specialist\",\n                    \"description\": \"Assists account managers in qualifying customer's requests against PTC's ability to provide a solution and probability of success. Collaborates with the customer to capture requirements, influence decision criteria and set expectations that match PTCs ability to execute. Formulates, articulates and presents value propositions on how PTCs solutions address particular technical customer requirements.\"\n                },\n                {\n                    \"hiredDate\": \"2006-06-01\",\n                    \"leaveDate\": \"2010-03-01\",\n                    \"company\": \"Freelancer\",\n                    \"position\": \"Operation Management Consultant\",\n                    \"description\": \"Medical Device - Enabled Field sales lead generation improvements resulting in $5.0 Million USD in annual revenue. Directed inside sales operations process improvements results in excess of $500K USD annually by establishing and defining performance KPI's. Coordinated and conducted field inventory audits which reduced shrink reserves by 10% with an annualized impact of $4.0 Million USD. Financial Services - Overhauled and outsourced six contract processing centers for a major Show more Medical Device - Enabled Field sales lead generation improvements resulting in $5.0 Million USD in annual revenue. Directed inside sales operations process improvements results in excess of $500K USD annually by establishing and defining performance KPI's. Coordinated and conducted field inventory audits which reduced shrink reserves by 10% with an annualized impact of $4.0 Million USD. Financial Services - Overhauled and outsourced six contract processing centers for a major financial services company, by removing unnecessary bottlenecks and process steps while creating training materials for a client's offshore vendor that assisted in the clients cost reduction initiative. CPG & Manufacturing - Recaptured $650,000 USD in savings for a maintenance and janitorial department at one of the world's largest food product manufacturers by balancing workload and optimizing maintenance processes. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2000-06-01\",\n                    \"leaveDate\": \"2006-06-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Export Project Leader\",\n                    \"description\": \"Project Leader for three Export Programs contributing roughly $60 million dollars in annual revenue to Ford Motor Company. Established and maintained program timing, developed engineering SOW's, designed and released export specific parts, and tracked variable and fixed program costs related to export specific features. Directed multiple organizations together to meet country specific design and regulatory requirements to ensure a flawless launch per export program. Six month Show more Project Leader for three Export Programs contributing roughly $60 million dollars in annual revenue to Ford Motor Company. Established and maintained program timing, developed engineering SOW's, designed and released export specific parts, and tracked variable and fixed program costs related to export specific features. Directed multiple organizations together to meet country specific design and regulatory requirements to ensure a flawless launch per export program. Six month international service employee in Taiwan supporting Ford Lio Ho launch of the 3.0L Engine exported to Australia, Japan and Taiwan. Responsible for the Design and Release, Localization, and PPAP of the alternator, alternator air duct, alternator bracket, and alternator fasteners. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1997-01-01\",\n                    \"leaveDate\": \"1998-01-01\",\n                    \"company\": \"International Business Machines Corporation\",\n                    \"position\": \"Co-Op\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [\n                \"German\",\n                \"Japanese\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"D'Amore-McKim School of Business at Northeastern University\",\n                    \"subTitle\": \"MBAHigh Tech\"\n                },\n                {\n                    \"title\": \"University of Michigan-Dearborn\",\n                    \"subTitle\": \"MSEngineering Management\"\n                },\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"BSMEMechanical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696267290345,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Im passionate about helping customers understand how technology can address their most critical business challenges. I continuously seek the opportunity to educate, provide guidance and be a trusted advisor to those assessing the myriad of options that are presented within our global marketplace. I believe in delivering business value and creating lasting relationships through trust, candor and true business acumen. Expertise in B2B sales, Cloud Sales, Product Life Cycle Management.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.7351196,\n                    \"lon\": -83.4192941\n                },\n                \"formattedAddress\": \"Village of Clarkston, MI 48346, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8857,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"58CCEDB3CE6096589352F60229F2709F\",\n            \"canonical\": \"https://www.linkedin.com/in/robert-boyle-09a44314\",\n            \"fullname\": \"Robert Boyle\",\n            \"headline\": \"Vice President, General Counsel - Europe at BorgWarner Inc.\",\n            \"location\": \"Auburn Hills, Michigan\",\n            \"industry\": \"Law Practice\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/robert-boyle-09a44314\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-07-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"PHINIA\",\n                    \"position\": \"Vice President, General Counsel and Secretary\",\n                    \"description\": \"PHINIA Inc (NYSE: PHIN) is a leader in premium fuel systems, electrical systems and aftermarket parts. It will begin trading as an independent company on the New York Stock Exchange under the ticker symbol PHIN effective at the market opening July 5th. PHINIA is an independent, market-leading, premium solutions and components provider with over 100 years of manufacturing expertise and industry relationships, with a strong brand portfolio that includes Delphi, Delco Remy and Hartridge. Show more PHINIA Inc (NYSE: PHIN) is a leader in premium fuel systems, electrical systems and aftermarket parts. It will begin trading as an independent company on the New York Stock Exchange under the ticker symbol PHIN effective at the market opening July 5th. PHINIA is an independent, market-leading, premium solutions and components provider with over 100 years of manufacturing expertise and industry relationships, with a strong brand portfolio that includes Delphi, Delco Remy and Hartridge. With 12,900 employees across 44 locations in 20 countries, PHINIA is headquartered in Auburn Hills, Michigan, USA. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2020-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"BorgWarner Inc.\",\n                    \"position\": \"Vice President, General Counsel - Europe\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2018-11-01\",\n                    \"leaveDate\": \"2020-10-01\",\n                    \"company\": \"Delphi Technologies PLC\",\n                    \"position\": \"Vice President, Corporate & Securities\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2015-04-01\",\n                    \"leaveDate\": \"2018-11-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Attorney - Securities and Transactions\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Beam Suntory Inc.\",\n                    \"position\": \"Senior Counsel\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2008-08-01\",\n                    \"leaveDate\": \"2012-09-01\",\n                    \"company\": \"Taft Stettinius & Hollister LLP (f/k/a Shefsky & Froelich Ltd.)\",\n                    \"position\": \"Associate\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [\n                \"English\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Georgetown University\",\n                    \"subTitle\": \"Bachelor's degreeEnglish\"\n                },\n                {\n                    \"title\": \"DePaul University College of Law\",\n                    \"subTitle\": \"Juris Doctorate\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696262013360,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"My practice focuses on securities, transactions and corporate governance matters including public and private securities offerings, public and private mergers and acquisitions, public company reporting and governance issues, internal controls and corporate secretarial functions. I have years of experience with federal and state securities laws, state corporate codes, stock exchange rules and Sarbanes-Oxley and Dodd-Frank Act compliance.\",\n            \"skills\": [\n                \"Corporate Governance\",\n                \"Securities\",\n                \"Corporate Law\",\n                \"Securities Regulation\",\n                \"Intellectual Property\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6875323,\n                    \"lon\": -83.2341028\n                },\n                \"formattedAddress\": \"Auburn Hills, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 4598,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"9O_IpYMBwsNvXoZzOs7D\",\n            \"canonical\": \"https://www.linkedin.com/in/msnishapatel\",\n            \"fullname\": \"Nisha Patel\",\n            \"headline\": \"\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/msnishapatel\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-04-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Vitesco Technologies Group AG\",\n                    \"position\": \"NFC Technical Project Leader\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-10-01\",\n                    \"leaveDate\": \"2020-11-01\",\n                    \"company\": \"Ford Motor Company / Insight Global\",\n                    \"position\": \"Core NFC Engineer/ Technical Program HW lead\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Purchasing Program Control Manager, NA Cross Vehicle Prototype Builds\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2007-11-01\",\n                    \"leaveDate\": \"2008-02-01\",\n                    \"company\": \"Magna International, Inc.\",\n                    \"position\": \"Mechanical Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1998-06-01\",\n                    \"leaveDate\": \"2007-11-01\",\n                    \"company\": \"Visteon Corporation\",\n                    \"position\": \"Product Design Engineer, for Powertrain Control Modules (PCMs) and Line Power Unit (LPU)\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University at Buffalo\",\n                    \"subTitle\": \"Bachelor of Science\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696254648411,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Engineering professional with 22 years of interdisciplinary experience in quality, manufacturing and design within the automotive and industrial product industry. Skilled in new product launch, quality, problem solving, and design optimization.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 4843,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"FT_0aH4BIdOjo8H7lq4r\",\n            \"canonical\": \"https://www.linkedin.com/in/sierra-harper-b8aba5169\",\n            \"fullname\": \"Sierra Harper\",\n            \"headline\": \"Talent Acquisition Recruiter at SC Johnson\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQGmPAUG1dC1KA/profile-displayphoto-shrink_800_800/0/1610683054340?e=2147483647&v=beta&t=65RIpGFe-t3riv8JPbjXEsEmTDfCa-xt8V_kFhXJfI4\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/sierra-harper-b8aba5169\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Wilson Human Capital Group, Inc.\",\n                    \"position\": \"Recruitment Consultant\",\n                    \"description\": \"WilsonHCG is an award-winning, global leader in total talent solutions. Operating as a strategic partner, it helps some of the worlds most admired brands build comprehensive talent functions. With a global presence spanning more than 65 countries and six continents, WilsonHCG provides a full suite of configurable talent services including recruitment process outsourcing (RPO), executive search, contingent talent solutions and technology advisory.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-01-01\",\n                    \"leaveDate\": \"2022-01-01\",\n                    \"company\": \"The Adecco Group AG\",\n                    \"position\": \"Recruiter\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2017-12-01\",\n                    \"leaveDate\": \"2018-12-01\",\n                    \"company\": \"Apptree\",\n                    \"position\": \"Driver Recruiter\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2016-07-01\",\n                    \"leaveDate\": \"2017-07-01\",\n                    \"company\": \"Pilot Freight Services\",\n                    \"position\": \"Executive Assistant\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2014-01-01\",\n                    \"leaveDate\": \"2016-07-01\",\n                    \"company\": \"Whiting Corporation\",\n                    \"position\": \"Executive Administrative Assistant\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2012-04-01\",\n                    \"leaveDate\": \"2013-12-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Customer Retention Manager\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Henry Ford College\",\n                    \"subTitle\": \"Associate's degreeLiberal Arts and Sciences/Liberal Studies\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696187444481,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Professional Recruiter with 7 years of proven skills in using diverse traditional and online methods for finding top candidates for business openings along with Full cycle recruiting. Adept at collecting data and analyzing metrics to make proactive decisions about recruiting strategies. Experienced in handling onboarding, training and registration of new employees. As well as establishing point of contact with Clients.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 3985,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"DC9F2FA35EA16E4343FB662EAC27728C\",\n            \"canonical\": \"https://www.linkedin.com/in/michaelwright4587\",\n            \"fullname\": \"Mike Wright\",\n            \"headline\": \"Automotive Seat Complete Lead Engineer & Commercial and Military Seating Engineer at RECARO North Amercia\",\n            \"location\": \"Madison Heights, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/michaelwright4587\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Recaro Holding\",\n                    \"position\": \"Automotive Seat Complete Lead Engineer & Commercial and Military Seating Engineer\",\n                    \"description\": \"Automotive Seat Complete Lead Engineer Duties: Front seat complete system product development for high performance Cadillac CTS/ATS V Series program  Advanced Design Concept and BOM development for new business sales and acquisition  Developed Design Execution Sections enabling customer Studio designers to accurately work within seating and vehicle packaging constraints reducing design issues during DV and PV phases  Coordination of early development teams including Studio Show more Automotive Seat Complete Lead Engineer Duties: Front seat complete system product development for high performance Cadillac CTS/ATS V Series program  Advanced Design Concept and BOM development for new business sales and acquisition  Developed Design Execution Sections enabling customer Studio designers to accurately work within seating and vehicle packaging constraints reducing design issues during DV and PV phases  Coordination of early development teams including Studio, Design Engineering, Directed and Tier 2 supply base  Developed and managed DVP&R test plan with RECARO and customer Validation Engineering groups  Managed integration of system level performance seat bolsters with adjustability and memory recall capability while maintaining a level of quality, comfort and appearance required in luxury performance car segment  Assisted electronic control module development, validation and launch for adjustable memory bolster system Commercial Vehicle and Military Seating Engineer 2010 - 2012 Duties: Development, validation and launch of new model seating systems based on customer specific requirements and regulatory specifications for regional and industry specific applications.  Commercial seating for public transit applications in US and Canadian markets  UAV (drone) pilot ground control station seating for United States Air Force Show less\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"2010-01-01\",\n                    \"company\": \"RCO Engineering\",\n                    \"position\": \"Lead Engineer - Initial Concept Development - Seat Systems\",\n                    \"description\": \"Duties: Developed the design concepts of Chrysler seating programs prior to program award to a Tier 1 seat supplier.  Developed feasibility studies for Chrysler Studio engineers to use for surface and seat contour development.  Determined design constraints and potential solutions within the vehicle environment for Studio engineers.  Provided design interface to Fiat product development for the design of a corporate seat frame structure.  Created a complete seat system in math Show more Duties: Developed the design concepts of Chrysler seating programs prior to program award to a Tier 1 seat supplier.  Developed feasibility studies for Chrysler Studio engineers to use for surface and seat contour development.  Determined design constraints and potential solutions within the vehicle environment for Studio engineers.  Provided design interface to Fiat product development for the design of a corporate seat frame structure.  Created a complete seat system in math data and directed uploaded to Chrysler Teamcenter.  Prepared math data designs and material specifications for Purchasing Sourcing Package.  Built prototype properties, H pointed and performed comfort evaluations of seats at concept design level.  Provided a concept development service that Chrysler may utilize as a means to bring in-house more of their seat design and development work. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2007-01-01\",\n                    \"leaveDate\": \"2009-01-01\",\n                    \"company\": \"Key Safety Systems\",\n                    \"position\": \"Product Engineer\",\n                    \"description\": \"Airbag Product Engineer/Test Engineer Lead development of side impact curtain and seat mounted pelvic/thorax airbags for automotive OEMs.  Developed ADVP&R and airbag designs from concept through to production integration.  Wrote test reports per customer submission requirements and archived per legal requirements.  Performed dynamic airbag deployment testing during development to achieve required performance.  Provided engineering support for barrier crash testing at Show more Airbag Product Engineer/Test Engineer Lead development of side impact curtain and seat mounted pelvic/thorax airbags for automotive OEMs.  Developed ADVP&R and airbag designs from concept through to production integration.  Wrote test reports per customer submission requirements and archived per legal requirements.  Performed dynamic airbag deployment testing during development to achieve required performance.  Provided engineering support for barrier crash testing at General Motors Proving Grounds.  Determine occupant survivability based on head and thorax injury criteria assessments.  Recommended vehicle structure modifications to enable system level performance improvements. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1998-01-01\",\n                    \"leaveDate\": \"2006-01-01\",\n                    \"company\": \"Lear Corporation\",\n                    \"position\": \"Product Engineer\",\n                    \"description\": \"Seat System Lead Product Engineer Lead advanced design & development of future model seating systems for General Motors Buick Lucerne, Cadillac DTS and GMT900 Full Size Truck from initial concept through start of production.  Developed new seat systems utilizing occupant control points, Design Failure Mode and Effects Analysis (DFMEA) and GD&T principles which achieved world class design criteria.  Managed engineering PLM and CAD/CAE teams to ensure design release and program Show more Seat System Lead Product Engineer Lead advanced design & development of future model seating systems for General Motors Buick Lucerne, Cadillac DTS and GMT900 Full Size Truck from initial concept through start of production.  Developed new seat systems utilizing occupant control points, Design Failure Mode and Effects Analysis (DFMEA) and GD&T principles which achieved world class design criteria.  Managed engineering PLM and CAD/CAE teams to ensure design release and program milestones.  Reduced production costs and improved quality by providing engineering launch support and build issue resolution.  Incorporated Design For Manufacturing principles which prevented ergonomic & quality problems at production integration.  Developed seat air conditioning & heat systems for luxury car market segment.  Developed seat designs that enabled vehicles to meet Federal 5 Star Side Impact Crash rating.  Validated design compliance to all applicable Federal Motor Vehicle Safety Standards and OEM requirements.  Utilized Finite Element Analysis (FEA) for structural testing reducing validation costs by 15%. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1994-01-01\",\n                    \"leaveDate\": \"1998-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Manufacturing Engineer\",\n                    \"description\": \"Lead Manufacturing Engineer Lead the development of seat assembly production systems for future model seat programs at the corporate world headquarters. Responsibilities included process and production equipment development and managing a $1 million plus capital expenditures budget for manufacturing system. Lead teams that included Manufacturing Engineering, Product Engineering, Industrial Engineering, Plant Engineering / Operations, Purchasing and Program Management.  Developed Show more Lead Manufacturing Engineer Lead the development of seat assembly production systems for future model seat programs at the corporate world headquarters. Responsibilities included process and production equipment development and managing a $1 million plus capital expenditures budget for manufacturing system. Lead teams that included Manufacturing Engineering, Product Engineering, Industrial Engineering, Plant Engineering / Operations, Purchasing and Program Management.  Developed production equipment with the latest technology and controls to achieve new levels of process capability and first time quality.  Utilized PDP process and interfaced with product design engineers at alpha, beta, and pre-prototype phase of product development, incorporating manufacturability features in the product.  Lead the Manufacturing Development Team in the design, specification, acceptance testing and implementation of a world-class JIT seat assembly system.  Developed a seat manufacturing system and recommended seat design changes which utilized DOE, PFMEA, DFM / DFA, Continuous Improvement and Kaizen / Lean Manufacturing techniques.  Created and maintained SPC data collection and Process Control Plans, Process Flow Diagrams and Seat Process Documents for customer submission packages.  Provided Manufacturing Engineering support for operations in Oklahoma City, Kansas City, Windsor, Ontario, Canada and Juarez, Mexico. Show less\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Central Michigan University\",\n                    \"subTitle\": \"Bachelor's degreeIndustrial Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696185095416,\n            \"military\": true,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4858692,\n                    \"lon\": -83.1052028\n                },\n                \"formattedAddress\": \"Madison Heights, MI 48071, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 10135,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"7780BB9FB1FB16EC7DFFBD8C10DBFB3D\",\n            \"canonical\": \"https://www.linkedin.com/in/terry-stuart-8a8537\",\n            \"fullname\": \"Terry Stuart\",\n            \"headline\": \"VP of Sales Engineering at Xcitium\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"information technology and services\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQH-3sswFKHipA/profile-displayphoto-shrink_800_800/0/1613010944003?e=2147483647&v=beta&t=w2HYeLhcwDjk0DZTGiSzOJ8FkcdaUgYh4OHHMWvgaqc\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/terry-stuart-8a8537\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Xcitium\",\n                    \"position\": \"VP of Sales Engineering & Professional Services\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2020-01-01\",\n                    \"leaveDate\": \"2021-03-01\",\n                    \"company\": \"ShieldX\",\n                    \"position\": \"Director of Sales Engineering\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2017-05-01\",\n                    \"leaveDate\": \"2019-12-01\",\n                    \"company\": \"McAfee Corp.\",\n                    \"position\": \"Technical Director - Security Operations and Manager of Pre-Sales Security Operations Specialists\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2014-10-01\",\n                    \"leaveDate\": \"2017-05-01\",\n                    \"company\": \"Intel Corporation\",\n                    \"position\": \"Manager, Enterprise Technology Specialists - Americas\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2014-10-01\",\n                    \"company\": \"McAfee Corp.\",\n                    \"position\": \"Enterprise Technology Specialist - SIEM\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2008-12-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"NitroSecurity Inc.\",\n                    \"position\": \"Security Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2007-07-01\",\n                    \"leaveDate\": \"2008-12-01\",\n                    \"company\": \"High Tower Software\",\n                    \"position\": \"Director, Professional Services\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2004-12-01\",\n                    \"leaveDate\": \"2007-07-01\",\n                    \"company\": \"multiple\",\n                    \"position\": \"Consultant\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2002-09-01\",\n                    \"leaveDate\": \"2004-12-01\",\n                    \"company\": \"Cylant, Inc.\",\n                    \"position\": \"Dir. Product and Services & Facility Security Officer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1998-03-01\",\n                    \"leaveDate\": \"2002-08-01\",\n                    \"company\": \"Forcepoint\",\n                    \"position\": \"Director, Field Support\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1997-02-01\",\n                    \"leaveDate\": \"1998-03-01\",\n                    \"company\": \"Sequel Technologies\",\n                    \"position\": \"Regional Manager, System Engineering\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1995-07-01\",\n                    \"leaveDate\": \"1997-02-01\",\n                    \"company\": \"American/SCI\",\n                    \"position\": \"Manager Information Systems\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1993-10-01\",\n                    \"leaveDate\": \"1995-07-01\",\n                    \"company\": \"EMC\",\n                    \"position\": \"Senior Systems Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1987-01-01\",\n                    \"leaveDate\": \"1991-01-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Systems Anaylst\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Ferris State University\",\n                    \"subTitle\": \"Bachelor's degree\"\n                },\n                {\n                    \"title\": \"Ferris State University\",\n                    \"subTitle\": \"Bachelor of Science (BS)\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696182536754,\n            \"military\": false,\n            \"clearance\": true,\n            \"about\": \"I have lead or worked on, sales support teams for over 20 years. During this portion of my career, I have garnered experience in a variety of hardware and software products for various vendors and have worked with over 200 of the Fortune 500, countless mid-sized organizations, and have experience in Federal, State, and local governments. Examples of these are the US Dept of Interior, IRS, Census, USGS, City of New Orleans, City of New York, Chicago Public Schools, Atlanta Public Schools, and the State of Florida. I also have considerable experience with foreign corporations and governments with a focus on Europe (England, Germany), the Middle East (Kuwait, Saudi Arabia, Qatar), South America (Brazil, Argentina), Mexico, and Japan. This experience comes from leading various world-wide pre-sales technical teams as well as an individual contributor. My communications skills have been honed through thousands of demonstrations and presentations worldwide to audiences ranging in size from 1 to over 1000 in traditional business, user group, and industry conference settings. Through my sales efforts, I have gain experience through the installation of hundreds of networks using Windows, Linux, and other networking operating systems. I have extensive experience with network systems such as firewalls, IDS/IPS, caching devices, routers/switches, and directory services including Active Directory, LDAP, and RADIUS. I have a working knowledge of virtual environments, public cloud environments, and security tools required for these.\",\n            \"skills\": [\n                \"Security\",\n                \"IPS\",\n                \"SIEM\",\n                \"Linux\",\n                \"Perl\",\n                \"Solaris\",\n                \"Networking\",\n                \"LDAP\",\n                \"Microsoft SQL Server\",\n                \"Checkpoint\",\n                \"DHCP\",\n                \"Oracle\",\n                \"JavaScript\",\n                \"Top Secret\",\n                \"MySQL\",\n                \"Snort\",\n                \"PIX\",\n                \"PHP\",\n                \"Mac OS X\",\n                \"Sales\",\n                \"IP\",\n                \"Director level\",\n                \"Photoshop\",\n                \"Microsoft Office\",\n                \"Apache\",\n                \"Websense\",\n                \"Training Delivery\",\n                \"IT Management\",\n                \"Project Management\",\n                \"Product Management\",\n                \"Product Development\",\n                \"McAfee\",\n                \"Firewalls\",\n                \"Travel\",\n                \"Overseas\",\n                \"Information Security Management\",\n                \"Security Clearance\",\n                \"DLP\",\n                \"IDS\",\n                \"CISSP\",\n                \"Network Security\",\n                \"Computer Security\",\n                \"Data Security\",\n                \"Unix\",\n                \"Application Security\",\n                \"PCI DSS\",\n                \"Vulnerability Assessment\",\n                \"Intrusion Detection\",\n                \"Information Security\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 12295,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"870B28EE41CB9D65D12B7A1CDEC5ECAF\",\n            \"canonical\": \"https://www.linkedin.com/in/smccutcheon\",\n            \"fullname\": \"Stuart McCutcheon\",\n            \"headline\": \"Global Vice President - Global Sales & Customer Success - NPDI & Digital Twin @ Siemens Digital Industries Software\",\n            \"location\": \"Northville, Michigan\",\n            \"industry\": \"Computer Software\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQHVRkM7pPgEpA/profile-displayphoto-shrink_800_800/0/1661004232043?e=2147483647&v=beta&t=BWy1imYWE7tJqvqN5KNF-GvhWy6B1zOHEF8zmYQOc0A\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/smccutcheon\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2017-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Siemens Digital Industries Software\",\n                    \"position\": \"Global Vice President - Global Sales & Customer Success - NPDI & Digital Twin\",\n                    \"description\": \"Current Leading activities, Digital Twin, eXecutable Digital Twin, Industrial MetaVerse, Enterprise Bill of Material Management, SaaS transformation, Industrial Cloud, IIOT projects, strategic partner relstionships, AWS, Nvidia, Microsoft\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Siemens AG\",\n                    \"position\": \"Vice President Global Business Development - for Global Sales and Services\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Siemens AG\",\n                    \"position\": \"Vice President\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2004-06-01\",\n                    \"leaveDate\": \"2007-04-01\",\n                    \"company\": \"UGS - Global Automotive\",\n                    \"position\": \"Vice President\",\n                    \"description\": \"Consulting and interacting with all major Automotive OEM's globally and key suppliers. Role initially started off in the Automotive Industry Vertical then was transitioned into Marketing as Business Development and Industry Marketing for Automotive Sector Key achievement Spend 2 years in /Japan @ Nissan successfully helping them re-develop their VDP (Vehicle Development Program) down to below 12 months\"\n                },\n                {\n                    \"hiredDate\": \"2002-06-01\",\n                    \"leaveDate\": \"2004-06-01\",\n                    \"company\": \"EDS / Global Automotive PLM Strategy\",\n                    \"position\": \"President\",\n                    \"description\": \"EDS purchased a number of companies and created a PLM organization EDS - PLM 2 years later they sold this entity to private equity companies\"\n                },\n                {\n                    \"hiredDate\": \"2001-01-01\",\n                    \"leaveDate\": \"2002-01-01\",\n                    \"company\": \"Unigraphics Solutions\",\n                    \"position\": \"Vice President\",\n                    \"description\": \"Automotive center of excellence Focused on the top 40 OEM's Globally\"\n                },\n                {\n                    \"hiredDate\": \"1997-01-01\",\n                    \"leaveDate\": \"2001-01-01\",\n                    \"company\": \"Engineering Animation, Inc.\",\n                    \"position\": \"Senior Director\",\n                    \"description\": \"Lead Global PreSales and Services Driving vision, development and deployment of Vis products suits Vis View, Vis Mockup, Vis Concept (VR), Vis ...\"\n                },\n                {\n                    \"hiredDate\": \"1987-09-01\",\n                    \"leaveDate\": \"1997-11-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Manager\",\n                    \"description\": \"Ford of Europe IT organization supporting Product development and Manufacturing - moved to Ford North America as part of the C3P initiative Innovated / Created GT Model - industry first - PMI 3D Model software solution - Author of PMI - Received Henry Ford Technology award for this innovation - drove to a ANSI standard for 3d GD&T (3D PMI definition) GT View - first lightweight 3D viewer that included the ability to view PMI with a 3d model for multiple CAD systems - deployed Show more Ford of Europe IT organization supporting Product development and Manufacturing - moved to Ford North America as part of the C3P initiative Innovated / Created GT Model - industry first - PMI 3D Model software solution - Author of PMI - Received Henry Ford Technology award for this innovation - drove to a ANSI standard for 3d GD&T (3D PMI definition) GT View - first lightweight 3D viewer that included the ability to view PMI with a 3d model for multiple CAD systems - deployed 15000 seats - outsourced to Company to become World defacto engineering 3d Viewer Show less\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Newcastle University\",\n                    \"subTitle\": \"BSC (Hons)Mechanical Engineering\"\n                },\n                {\n                    \"title\": \"Regent House Grammer School\",\n                    \"subTitle\": \"High SchoolGrammer school\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696177455801,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Currently position :- Global Vice President,Global Sales and Customer Success responsible for DT & NPI (Digital Twin & New Product Introduction) at Siemens Digital Industries Software Inc. +30yrs industry experience previously positions for Siemens- Global Sales and Services & P&L responsibility for new line of business -Specialized Engineering Software (SES). VP Global Accounts VP of Global Automotive Bus Dev & Strategy VP Industry Marketing VP Automotive Marketing VP PreSales / Service /Sales (for a business unit) Heavily involved with many mergers & acquisitions over the last 15 years (full M&A process) GSMS Executive sponsor for OEM Automotive BOM Solution, Global Sales responsibility for or new product introduction (only commercial usage based BOM solution) IoT Internet of Things - Integration of Mindsphere with PLM 20 years experience working in Asia Pacific - Japan, China, Korea, India, currently driving a number of strategic accounts in China Global Industry knowledge, with domain expertise in - PLM . I have gained experience in many diverse industry segments around PLM, but Automotive has continued to be a strong focus for most of my career, due to the strength of PLM. Product Development through to Manufacturing, CAD - PDM - Mfg - Mechatronics - BOM - Collaboration - ect. Worked extensively on a global bases selling to the top 100 OEMs. Previously worked for - Ford Motor Company (Europe and NA) - 11 yrs - Transitioned to Siemens via acquisition:- EAI - Unigraphics Solutions - EDS - UGS- (private equity) Siemens A&D purchased UGS May 2007 Specialties: 25 years experience in the Global Industry with domain expertise in - PLM - I have gained experience in many diverse industry segments around PLM, but Automotive has continued to be a strong focus for most of my career. Automotive Development & Mfg CAD - PDM - Mfg - Mechatronics - BOM - Global Collaboration Experience in all disciplines - Sales, Marketing, Product Dev, Bus Dev\",\n            \"skills\": [\n                \"Global Account Management\",\n                \"Mergers and Acquisitions\",\n                \"PLM\",\n                \"Global PreSales\",\n                \"Strategic Selling\",\n                \"Marketing\",\n                \"Industry Solutions\",\n                \"Composites\",\n                \"CAD/CAM\",\n                \"BOM management\",\n                \"Sales Management\",\n                \"Teamcenter\",\n                \"Team Building\",\n                \"Strategic Planning\",\n                \"Automotive Design\",\n                \"Business Development\",\n                \"Product Lifecycle Management\",\n                \"Pre-sales\",\n                \"Enterprise Software\",\n                \"Management\",\n                \"Account Management\",\n                \"Solution Selling\",\n                \"Product Development\",\n                \"Automotive\",\n                \"Strategy\",\n                \"Leadership\",\n                \"Strategic Partnerships\",\n                \"PDM\",\n                \"Product Management\",\n                \"Product Marketing\",\n                \"Business Alliances\",\n                \"Industrial Sector\",\n                \"Manufacturing\",\n                \"Program Management\",\n                \"Mergers & Acquisitions\",\n                \"Salesforce.com\",\n                \"Product Launch\",\n                \"Go-to-market Strategy\",\n                \"Lead Generation\",\n                \"mergers and acquisitions\",\n                \"Mergers\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4311464,\n                    \"lon\": -83.4832692\n                },\n                \"formattedAddress\": \"Northville, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 9192,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"Wd0K7HABFVkhVdRhJ910\",\n            \"canonical\": \"https://www.linkedin.com/in/paul-bourgeois-b5983022\",\n            \"fullname\": \"Paul Bourgeois\",\n            \"headline\": \"Executive, Strategic Delivery Technology at Allegis Global Solutions\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/paul-bourgeois-b5983022\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Allegis Global Solutions\",\n                    \"position\": \"Senior Manager, Technology Business Partner\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2004-06-01\",\n                    \"leaveDate\": \"2005-11-01\",\n                    \"company\": \"Aerotek\",\n                    \"position\": \"Automotive Recruiter\",\n                    \"description\": \"Automotive Recruiter who sourced candidates for long-term contract positions for General Motors Corporation in the state of Michigan. Negotiated preliminary terms of contract with candidates including wage, vacation, and benefits. Conducted daily one-on-one interviews and gave career counseling to potential candidates. Sourced candidates by telephone, cold calling into client competitors, performing resume searches on the TeamTrak database, candidate referrals, and by Show more Automotive Recruiter who sourced candidates for long-term contract positions for General Motors Corporation in the state of Michigan. Negotiated preliminary terms of contract with candidates including wage, vacation, and benefits. Conducted daily one-on-one interviews and gave career counseling to potential candidates. Sourced candidates by telephone, cold calling into client competitors, performing resume searches on the TeamTrak database, candidate referrals, and by reviewing unsolicited resumes. Performed reference checks on all potential candidates submitted for hire. Before transitioning out of recruiting, all recruiting goals and expectations were exceeded. Achieved weekly dollar spread numbers in excess of $10,500 in spend. Show less\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Loss Prevention Supervisor\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Bachelor of ArtsCriminal Justice\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696176285022,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"The world of work has changed. As the leading provider of workforce solutions, Allegis Global Solutions (AGS) guides companies through a transformative journey to rethink the way work gets done. We know what it takes to attract the best talent while designing and executing strategies that align workforce capabilities with the agility required to stay ahead of what’s next. With decades of experience, continuous investment in innovation and a robust portfolio of workforce analytics and insights capabilities, we’re equipped to help companies better navigate uncertainty and complexity by empowering their ability to run, evolve and work smarter through creative workforce solutions. Im proud to be helping transform the way the world gets work done to not only improve business outcomes but to enhance the work experience for all.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 518,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"GcQjMoAB5C_80KOhQDGS\",\n            \"canonical\": \"https://www.linkedin.com/in/alexandre-frank\",\n            \"fullname\": \"Alexandre FRANK\",\n            \"headline\": \"Business & Sales Development Representative\",\n            \"location\": \"Clinton Township, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/alexandre-frank\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2020-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Blindspace\",\n                    \"position\": \"Business Development Representative\",\n                    \"description\": \"Blindspace is an international high-end interior design company originally from Europe. They hired me as a remote business development representative in order to expand their business to North America (USA, Mexico, Canada) which was a perfect fit since I am able to speak English, French and Spanish. My job was to manage inbound requests from potential clients and turn them into actual customers. Besides, my main tasks was to prospect new customers/partners located in North America in order to Show more Blindspace is an international high-end interior design company originally from Europe. They hired me as a remote business development representative in order to expand their business to North America (USA, Mexico, Canada) which was a perfect fit since I am able to speak English, French and Spanish. My job was to manage inbound requests from potential clients and turn them into actual customers. Besides, my main tasks was to prospect new customers/partners located in North America in order to grow the business. Contract currently paused on common agreement, looking for some different opportunities in the tech/SaaS industry. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2020-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Indépendant\",\n                    \"position\": \"Ecommerce Business Owner\",\n                    \"description\": \"This is a part-time activity that I most likely do during my free time; Creation of various e-commerce stores for ourselves and other auto-entrepreneurs. Different types of works specialized in online sales, website creation/design, digital marketing, operations & logistics, customer support and more. Our team is currently preparing the launch of a new brand that will be ready to operate in the US market by summer 2022.\"\n                },\n                {\n                    \"hiredDate\": \"2020-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Upwork Inc.\",\n                    \"position\": \"Sales Business Development\",\n                    \"description\": \"As a freelancer, I have been helping several companies of all types to develop their businesses throughout the last few years. My services are mainly focused on the following tasks; Business Development, Sales/Lead generation, Marketing, E-commerce, French/English translations & optimizations (etc.)\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2020-01-01\",\n                    \"leaveDate\": \"2022-01-01\",\n                    \"company\": \"Michigan Stars FC\",\n                    \"position\": \"Professional Athlete\",\n                    \"description\": \"Transferred to Michigan Stars FC, club of NISA (National Independent Soccer Association) where I played professionally until now.\"\n                },\n                {\n                    \"hiredDate\": \"2019-08-01\",\n                    \"leaveDate\": \"2019-12-01\",\n                    \"company\": \"Atlanta Soccer Club\",\n                    \"position\": \"Professional Athlete\",\n                    \"description\": \"First season as a professional soccer player for Atlanta SC, club of NISA (National Independent Soccer Association).\"\n                },\n                {\n                    \"hiredDate\": \"2017-01-01\",\n                    \"leaveDate\": \"2017-08-01\",\n                    \"company\": \"Decathlon\",\n                    \"position\": \"Store Manager\",\n                    \"description\": \"Worked as an assistant manager alongside the fitness/gym department manager at Decathlon which is a worldwide retailer and leader in the sporting goods industry. Our main task was obviously selling but there was also a lot of other things to manage such as the fitness department team, schedules, stocks, logistics, marketing and more.\"\n                },\n                {\n                    \"hiredDate\": \"2014-06-01\",\n                    \"leaveDate\": \"2014-12-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Sales Representative\",\n                    \"description\": \"Sales Representative for a Ford Dealership based in Valence. I had the chance of discovering most of the skills & tasks needed to work in the sales and business industry. From prospecting (cold calling, emailing, meetings etc.) to selling, I learned a lot and enjoyed my time as an intern there. Most of my work was focused on B2B (commercial and utility vehicles mainly).\"\n                },\n                {\n                    \"hiredDate\": \"2013-01-01\",\n                    \"leaveDate\": \"2013-06-01\",\n                    \"company\": \"CHEVIGNON\",\n                    \"position\": \"Seller\",\n                    \"description\": \"Internship as a seller for the clothing brand Chevignon. Responsible of various in-store tasks such as sales, logistic and marketing.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"American International College\",\n                    \"subTitle\": \"Master of Business Administration - MBABusiness\"\n                },\n                {\n                    \"title\": \"IAE Nice (Graduate School of Management)\",\n                    \"subTitle\": \"Management Master's DegreeManagement\"\n                },\n                {\n                    \"title\": \"Galway-Mayo Institute of Technology\",\n                    \"subTitle\": \"Bachelor of BusinessBusiness\"\n                },\n                {\n                    \"title\": \"IUT de Valence\",\n                    \"subTitle\": \"Undergraduate Degree in Business and MarketingBusiness\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696175227676,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"After spending several years in France and Ireland completing respectively a 2-year undergraduate, a 1-year bachelor and a 1-year Master degrees in business and marketing, I graduated from a Master Business Administration at American International College in Springfield (MA) in 2019 where I was a also student/athlete for 2 years. This opportunity allowed me to grow as a person, discover new cultures, expand my network and be able to acquire important knowledges about the business industry as a whole. It also gave me the chance to learn and speak fluently English and Spanish on top of my native language which is French. Once I graduated, I had the opportunity to pursue my childhood dream of becoming a professional soccer player and was able to do it until now. During these past years, I used my free time to learn about e-commerce, digital marketing and sales in general in order build something on my own and be ready for the after career. I started a part-time freelancing activity to actually put my hands on these fields and educate myself to be more knowledgeable. After attentive reflection and consideration, I estimate that this is the right moment for me to start my professional career. Therefore, I am currently looking for a position as a sales/business development representative in the tech industry in order to discover this world that I am really interested in and accomplish my objectives. Feel free to contact me directly on LinkedIn or via email at alexandre.frank1995@gmail.com for any purpose.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.5868882,\n                    \"lon\": -82.9195514\n                },\n                \"formattedAddress\": \"Clinton Twp, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 2037,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"smX9Bn8BdbruSb0IJPtG\",\n            \"canonical\": \"https://www.linkedin.com/in/john-dombrowski-73366217b\",\n            \"fullname\": \"John Dombrowski\",\n            \"headline\": \"Lead Technical Program Manager\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQFN04P4AG0waA/profile-displayphoto-shrink_800_800/0/1652136411179?e=2147483647&v=beta&t=JM0HubgCj6tg3zSyGv-ms3U8Ra6P2db96Y1-GvWhtiw\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/john-dombrowski-73366217b\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Bridgestone Corporation\",\n                    \"position\": \"Lead Technical Program Manager\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-11-01\",\n                    \"leaveDate\": \"2022-05-01\",\n                    \"company\": \"DAVCO TECHNOLOGIES INC\",\n                    \"position\": \"Senior Engineering Project Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Lead Vehicle Dynamics Performance Engineer Full Size Truck\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Kettering University\",\n                    \"subTitle\": \"Bachelor of Science Mechanical Engineering (Automotive Specialty)\"\n                },\n                {\n                    \"title\": \"Macomb Community College\",\n                    \"subTitle\": \"Associate's degreeAutomotive Body Design\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696170777641,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Engineering leader with extensive experience in product development, vehicle dynamics integration, chassis component design, and engineering technical positions. Proven leader adept at managing multiple programs from concept to production launch while meeting challenging deadlines and technical requirements. Solid business acumen with a valuable blend of leadership skills and technical knowledge resulting in significant contributions to the organization bottom line. Specialties: Project management, communication skills, vehicle dynamics development, steering development, off-road development, competitive benchmarking, performance testing, analysis modeling, mentoring and coaching.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 1430,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"QP20Tn8BdbruSb0IyhoG\",\n            \"canonical\": \"https://www.linkedin.com/in/thomas-hosmer-20971851\",\n            \"fullname\": \"Thomas Hosmer\",\n            \"headline\": \"Director Car Dealer Channel at Bridgestone Americas\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5103AQE2dFUEsCYnhg/profile-displayphoto-shrink_800_800/0/1516526849992?e=2147483647&v=beta&t=Cfo1FQFsft3lrfiupZA0p61X6-jV0hFJF8oZnJRk4Gs\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/thomas-hosmer-20971851\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-04-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Bridgestone Corporation\",\n                    \"position\": \"Director Car Dealer Channel\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2017-06-01\",\n                    \"leaveDate\": \"2021-04-01\",\n                    \"company\": \"Maserati\",\n                    \"position\": \"Head of Aftersales Parts, Accessories & Merchandise\",\n                    \"description\": \"Lead the Commercial Team that is responsible for all activities related to aftersales parts, accessories, merchandise, equipment, pre-paid maintenance, & extended warranties for Maserati North & South America. Responsibilities include: product development, sales, marketing, promotions, plan and implement business growth strategies, and oversight of the P & L.\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Product Line Manager--Mopar Maintenance Portfolio\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2009-03-01\",\n                    \"leaveDate\": \"2012-07-01\",\n                    \"company\": \"Hubbard Auto Center\",\n                    \"position\": \"Service Manager/Store Owner\",\n                    \"description\": \"Ran the day-to-day operations. Performed HR duties such as interviewing, hiring, reprimanding, and terminating employees. Managed 4 employees. Ordered and maintaining parts inventory. Created a competitive pricing structure, while consistently growing year-over-year net profit. Created and developed complete marketing strategy, including company website, direct mail, email blasts, company newsletter, building signage, and local promotions.\"\n                },\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"Motor Cities National Heritage Area\",\n                    \"position\": \"Board Member\",\n                    \"description\": \"Developed marketing plans, membership structure, operating budget, and overall strategic planning.\"\n                },\n                {\n                    \"hiredDate\": \"2003-08-01\",\n                    \"leaveDate\": \"2009-02-01\",\n                    \"company\": \"Goodyear Franchise\",\n                    \"position\": \"Store Manager\",\n                    \"description\": \"Managed day-to-day operations of the facility including six employees. Managed inventory stocking levels. Wrote and presented estimates to customers. Completed manufactures product training.\"\n                },\n                {\n                    \"hiredDate\": \"2001-04-01\",\n                    \"leaveDate\": \"2003-07-01\",\n                    \"company\": \"Lemmon Grand Chevrolet. Buick, Pontiac\",\n                    \"position\": \"Service Advisor\",\n                    \"description\": \"Ensured each customer received a world class experience when interacting with the dealership. Created quotes and advised customers on needed vehicle repairs. Completed manufactures product training.\"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2003-01-01\",\n                    \"company\": \"Thomas Hosmer Racing\",\n                    \"position\": \"Race Car Driver\",\n                    \"description\": \"Raced stock cars on dirt ovals in the Michigan/Ohio region. Built and setup my own race cars. Spent a lot of time and money learning what it takes to be competitive in auto racing, and loved every minute of it....\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Ferris State University\",\n                    \"subTitle\": \"Associate's degreeAutomotive Technology\"\n                },\n                {\n                    \"title\": \"Baker College of Jackson\",\n                    \"subTitle\": \"Bachelor of Business Administration (B.B.A.)Marketing\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696169752336,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Nothing gets me charged more than leading a team to achieving strong targets. I also enjoy discussing and strategizing about the future of the automotive industry including new modes of mobility, connected technology, autonomous vehicles, and world class customer service. I am a self-starter that has always been passionate about all things Automotive/Transportation related. From racing stock cars on high-banked dirt tracks, to giving presentations on the past, present, and future of automotive technology, I enjoy both getting my hands dirty to restore a classic car, and developing a creative solution to a challenging business case.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6819,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"E76E926B48E572AE9A00EF7FB87DB3DC\",\n            \"canonical\": \"https://www.linkedin.com/in/stevekhoe\",\n            \"fullname\": \"Steve Khoe\",\n            \"headline\": \"Enterprise Sales Leader | Electrification | DE&I | Engineer | NFL Owner | Scottish Lord\",\n            \"location\": \"Royal Oak, Michigan\",\n            \"industry\": \"marketing and advertising\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4D03AQEqo7O2NGuu6Q/profile-displayphoto-shrink_800_800/0/1579880452044?e=2147483647&v=beta&t=iHQbKsj2mSF4GCGtOaB8KngbW_-IIqro061BWcsM6k4\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/stevekhoe\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2019-04-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Vitesco Technologies Group AG\",\n                    \"position\": \"Sales Manager\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2014-11-01\",\n                    \"leaveDate\": \"2019-03-01\",\n                    \"company\": \"Magna International, Inc.\",\n                    \"position\": \"Account Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2013-04-01\",\n                    \"leaveDate\": \"2014-10-01\",\n                    \"company\": \"Illinois Tool Works Inc.\",\n                    \"position\": \"Account Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2012-04-01\",\n                    \"leaveDate\": \"2013-04-01\",\n                    \"company\": \"One Up Consulting\",\n                    \"position\": \"Marketing Specialist / Account Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2009-07-01\",\n                    \"leaveDate\": \"2012-02-01\",\n                    \"company\": \"Alert Medical\",\n                    \"position\": \"Marketing and Project Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2011-08-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"Alert Communications Inc\",\n                    \"position\": \"Project Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"2011-06-01\",\n                    \"company\": \"TRUST Brands Inc\",\n                    \"position\": \"Director of Marketing / Founder\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2006-09-01\",\n                    \"leaveDate\": \"2009-07-01\",\n                    \"company\": \"Toyota Motor Corporation\",\n                    \"position\": \"Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2003-01-01\",\n                    \"leaveDate\": \"2005-01-01\",\n                    \"company\": \"TRW\",\n                    \"position\": \"Co-Op\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2000-09-01\",\n                    \"leaveDate\": \"2001-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Intern\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan-Dearborn\",\n                    \"subTitle\": \"Bachelor of Science (B.S.)Electrical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696166150284,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"An experienced & high-performing Technical Sales Leader & Account Manager, with previous roles supporting Small Business Management, Marketing & Project Management, and Electrical Engineering. Curious and passionate about trends in artificial intelligence, cybersecurity, DE&I, electrification & mobility, marketing/branding, business strategy & development, entrepreneurship, investing & finance, economics, and society Shareholder of the Green Bay Packers and landowner in the Scottish highlands. → Highly-skilled written and verbal communicator → Effective leader, presenter, and collaborator → Focused project manager → Fiercely analytical, data-driven, customer-focused, creative thinker and problem solver → Positive, motivated, friendly, and adaptable Simplicity is the ultimate sophistication. -Da Vinci Hakuna Matata. -Timon & Pumbaa Skills & Training Overview: Dale Carnegie Explore Leadership, IMPACT Selling, Karrass Negotiation, Costing & Finance, Presentation Skills, Cultural Awareness (Mexican, Japanese, and German/Austrian), Crucial Conversations & Crucial Accountability, OEM Supplier Portals (Toyota, Nissan, Honda, Mazda), Franklin Covey (The 7 Habits of Highly Effective People, The 5 Choices of Extraordinary Productivity), Technical Sales, Brand Strategy, Relationship Building, Sales Presentation, Quoting Strategy, OneNote, OEM Supplier Portals, Effective Email & Time Management (zero inbox; “Getting Things Done”), Project Management, Marketing, Direct Mail Advertising, e-Commerce, Website Design, Compliance, Medical Billing, Social Media, Graphic Design, Copywriting, Client Relations, Facebook Advertising, Google AdWords, Japanese Language (Beginner), Supplier Negotiation, VE/VA, A3 Reporting, Toyota Practical Problem Solving, CATIA V5, DRBFM, Y14.5M-1994 GD&T, Plant Auditing, Project Management, SPICE, Design\",\n            \"skills\": [\n                \"Product Development\",\n                \"Project Management\",\n                \"Continuous Improvement\",\n                \"Marketing Strategy\",\n                \"Automotive\",\n                \"Process Improvement\",\n                \"Program Management\",\n                \"Social Media Marketing\",\n                \"Marketing\",\n                \"Sales Engineering\",\n                \"Electrical Engineering\",\n                \"Negotiation\",\n                \"Time Management\",\n                \"Sales\",\n                \"Facebook\",\n                \"Online Marketing\",\n                \"Digital Marketing\",\n                \"Advertising\",\n                \"Account Management\",\n                \"Writing\",\n                \"Packaging Artwork\",\n                \"Marketing Material Creation\",\n                \"Branding Ideas\",\n                \"Verbal & Written Communicator\",\n                \"DRBFM\",\n                \"Team Leadership\",\n                \"Engineering\",\n                \"Project Planning\",\n                \"Training\",\n                \"Brand Development\",\n                \"Leadership\",\n                \"Manufacturing\",\n                \"Social Media\",\n                \"Public Relations\",\n                \"Management\",\n                \"Strategy\",\n                \"Online Advertising\",\n                \"Analysis\",\n                \"Market Research\",\n                \"Creative Direction\",\n                \"Copywriting\",\n                \"E-commerce\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4894801,\n                    \"lon\": -83.1446485\n                },\n                \"formattedAddress\": \"Royal Oak, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6970,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"1C41509505317C075ACD7051CBA99A4A\",\n            \"canonical\": \"https://www.linkedin.com/in/susan-callaghan-b2997315\",\n            \"fullname\": \"Susan Callaghan\",\n            \"headline\": \"Senior Account Executive at Gartner\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"information technology and services\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQE4XI5RdF_f2Q/profile-displayphoto-shrink_800_800/0/1545850079593?e=2147483647&v=beta&t=WteO3i8Vs4yOLojPPNnl7UN3pTGM2Iw0HSkyfRpF8sA\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/susan-callaghan-b2997315\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2018-11-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Gartner, Inc.\",\n                    \"position\": \"Senior Account Executive\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Thomson Reuters\",\n                    \"position\": \"Enterprise Account Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1997-12-01\",\n                    \"leaveDate\": \"2009-08-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Tax Manager\",\n                    \"description\": \"Responsible for managing the Federal, state and local tax processes for worldwide operations. Served as outsourcing liaison for informational reporting relationship both internally and externally and provided support to audit and planning groups when appropriate. Served as main point of contact for new tax employees as they integrated into the General Motors culture. Selected achievements:  Represented General Motors on the ONESOURCE Income Tax Steering Committee meeting 4x a year Show more Responsible for managing the Federal, state and local tax processes for worldwide operations. Served as outsourcing liaison for informational reporting relationship both internally and externally and provided support to audit and planning groups when appropriate. Served as main point of contact for new tax employees as they integrated into the General Motors culture. Selected achievements:  Represented General Motors on the ONESOURCE Income Tax Steering Committee meeting 4x a year providing insight and guidance to the product roadmap  Streamlined administration tasks related to preparation, review, signature and e-filing General Motors Corporation and Subsidiaries Federal return reducing preparation/consolidation time by 20%  Developed and delivered technical and functional training plans for offsite locations enabling efficiency during preparation and review of work programs Show less\"\n                },\n                {\n                    \"hiredDate\": \"1996-08-01\",\n                    \"leaveDate\": \"1997-12-01\",\n                    \"company\": \"Price Waterhouse\",\n                    \"position\": \"Tax Analyst\",\n                    \"description\": \"Prepared Federal, state and local tax returns for a wide variety of clients. Served as main point of contact for required documentation by taxing authorities in response to Federal and state audit requests. Selected achievements:  Loan staff to Fortune #10 tax department enabling a successful compliance season which led to full-time employment\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Walsh College\",\n                    \"subTitle\": \"Master of ScienceTaxation\"\n                },\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Bachelor of ArtsAccounting\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696164239532,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Enterprise Account Manager with expansive knowledge achieved through understanding tax department challenges, developing value-driven strategies, and delivering measurable improvements to critical business systems and tax technology processes. Strategic partner with an established reputation of collaboration to identify opportunities for improvements and who is passionate about establishing client relationships, developing rapport and generating long-term revenue and profit. Areas of Expertise Tax Technology  Corporate Tax  Relationship Selling  Strategic Account Development  Customer-Oriented\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6543,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"19C1D2051537B9CF80852BBEA628D143\",\n            \"canonical\": \"https://www.linkedin.com/in/akinkunle-akinlua-453b9538\",\n            \"fullname\": \"Akinkunle Akinlua\",\n            \"headline\": \"Accounting Clerk at Vision Information Technologies\",\n            \"location\": \"Detroit, Michigan\",\n            \"industry\": \"Human Resources\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQEzBEj1XPONIA/profile-displayphoto-shrink_800_800/0/1516359866444?e=2147483647&v=beta&t=CkVYSyZ6vtFeb9vbxR9UdNK2Tq2ThknGlm5rT6cm-Vo\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/akinkunle-akinlua-453b9538\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2015-12-01\",\n                    \"leaveDate\": \"2016-05-01\",\n                    \"company\": \"Veritiv Corporation\",\n                    \"position\": \"Payroll Specialist\",\n                    \"description\": \"Processed commissions and payroll; auditing, bank reconciliations, process improvement, month-end responsibilities etc.\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Early Response Adviser\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Burroughs, Inc.\",\n                    \"position\": \"Customer Service\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Yoruba\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"Bachelor of Applied Science (B.A.Sc.)Finance, General\"\n                },\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"Bachelor of Applied Science (B.A.Sc.)Human Resources Management/Personnel Administration, General\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696160001792,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Seeking a position in the accounting/finance field where my excellent analytical and technical skills can be utilized to improve the profitability of the organization.\",\n            \"skills\": [\n                \"HRIS proficient; highly proficient operating Microsoft Office: Excel, Visio, etc\",\n                \"Economics\",\n                \"PowerPoint\",\n                \"Microsoft Office\",\n                \"Teamwork\",\n                \"Leadership\",\n                \"Research\",\n                \"Microsoft Word\",\n                \"Java\",\n                \"Business Planning\",\n                \"Customer Service\",\n                \"Financial Analysis\",\n                \"Microsoft Excel\",\n                \"Public Speaking\",\n                \"Accounting\",\n                \"Time Management\",\n                \"Management\",\n                \"Outlook\",\n                \"Human Resources\",\n                \"Visio\",\n                \"Payroll\",\n                \"Sales\",\n                \"Analysis\",\n                \"Team Leadership\",\n                \"Access\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.331427,\n                    \"lon\": -83.0457538\n                },\n                \"formattedAddress\": \"Detroit, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 152,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"DB5674DECB4D19BE8704419DA476B4F1\",\n            \"canonical\": \"https://www.linkedin.com/in/jawwad-sayeed-68264967\",\n            \"fullname\": \"Jawwad Sayeed\",\n            \"headline\": \"Senior Electrical Design Engineer at BGM-ES\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media-exp1.licdn.com/dms/image/C5603AQGDb1to6mk0Ng/profile-displayphoto-shrink_200_200/0/1573050793903?e=2147483647&v=beta&t=PLhsSG70hUGw8kX-WhQqGmtEexHgZhNw24swAlTi_lA\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/jawwad-sayeed-68264967\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-02-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"BGM Electronic Services\",\n                    \"position\": \"Senior Electrical Design Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2018-10-01\",\n                    \"leaveDate\": \"2022-08-01\",\n                    \"company\": \"Flex Ltd.\",\n                    \"position\": \"Senior Hardware Design and Development Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2017-05-01\",\n                    \"leaveDate\": \"2018-10-01\",\n                    \"company\": \"Emphatec Inc.\",\n                    \"position\": \"Hardware Design Engineer\",\n                    \"description\": \" Designed multiple robust CSA/UL approved products for use within industrial environments following ISO standards.  Hardware design for various applications, including analog and digital systems.  Designed firmware using C language for multiple products on Cypress PSOC4/5.  Designed a sensor front-end processor to interface multiple sensors with PLC GPIO systems.  Designed a solenoid power saving driver.  Designed a switched mode power supply with an embedded health Show more  Designed multiple robust CSA/UL approved products for use within industrial environments following ISO standards.  Hardware design for various applications, including analog and digital systems.  Designed firmware using C language for multiple products on Cypress PSOC4/5.  Designed a sensor front-end processor to interface multiple sensors with PLC GPIO systems.  Designed a solenoid power saving driver.  Designed a switched mode power supply with an embedded health monitoring system.  Designed a relay status monitor, voltage sensor monitor, and a relay driver with built in logic functions.  Designed test jigs for automated testing of products.  Manage multiple projects at a time.  Manage all documentation related to projects, including bill of materials, test procedures, design review notes, and documents related to standards. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2016-09-01\",\n                    \"leaveDate\": \"2017-05-01\",\n                    \"company\": \"4D Retail Technology Corp.\",\n                    \"position\": \"Electronics Engineer\",\n                    \"description\": \" Developing product from prototyping phase to commercialization.  Designed PCBs for product development.  Closed loop control systems design and implementation to accurately maintain temperature of robot.  Embedded C and assembly level coding for TI ARM Cortex-M processor and ATMega microcontrollers.  Optimized power distribution, and designed new power management system for the Space Genius robot.  Designed and implemented centralized controller for space genius Show more  Developing product from prototyping phase to commercialization.  Designed PCBs for product development.  Closed loop control systems design and implementation to accurately maintain temperature of robot.  Embedded C and assembly level coding for TI ARM Cortex-M processor and ATMega microcontrollers.  Optimized power distribution, and designed new power management system for the Space Genius robot.  Designed and implemented centralized controller for space genius robot.  Reduced complexity, and cost of production for the space genius robot.  Testing and integration of new components introduced to the space genius robot.  Troubleshooting system failures, and developing improvement strategies to prevent future failures. Show less\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Body Shop Production Supervisor (Flex)\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2014-01-01\",\n                    \"leaveDate\": \"2015-08-01\",\n                    \"company\": \"IEEE-UOIT\",\n                    \"position\": \"Project Coordination Team Member\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2013-05-01\",\n                    \"leaveDate\": \"2013-08-01\",\n                    \"company\": \"Canadian National Railway Company\",\n                    \"position\": \"Signals and Communications Intern\",\n                    \"description\": \"Assisted in designing, verifying, and updating blueprints for new and existing crossings. Assisted with management work, which included cost control, evaluations, and generating reports. Designed programs that generated trouble call reports, helped with scheduling, and helped with inventory. All the field supervisors working at CN in the state of Wisconsin now use these programs. Tested, installed, and maintained railway crossings and wayside signals on the field, as well as some Show more Assisted in designing, verifying, and updating blueprints for new and existing crossings. Assisted with management work, which included cost control, evaluations, and generating reports. Designed programs that generated trouble call reports, helped with scheduling, and helped with inventory. All the field supervisors working at CN in the state of Wisconsin now use these programs. Tested, installed, and maintained railway crossings and wayside signals on the field, as well as some design. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2012-05-01\",\n                    \"leaveDate\": \"2012-07-01\",\n                    \"company\": \"Vision Fiber Optic Ltd\",\n                    \"position\": \"Quality and Assurance intern\",\n                    \"description\": \" Tested fiber optic cables using optic time-domain readers.  Designed 2D and 3D drawings of fiber optic cables using CAD based on customer specifications.  Promoted within a week based on adaptability, and efficiency.\"\n                }\n            ],\n            \"languagesList\": [\n                \"Urdu\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Ontario Institute of Technology\",\n                    \"subTitle\": \"Master of applied sciencesElectrical and Electronics Engineering3.90\"\n                },\n                {\n                    \"title\": \"University of Ontario Institute of Technology\",\n                    \"subTitle\": \"Bachelor of Engineering (B.Eng.)Electrical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696105131760,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I have had experience in design, project management, maintenance, and quality and assurance. I demonstrate good leadership in school and in the work force, I am a team player. Most of all I love to learn new and exciting things. In the past I have taught myself multiple different programming languages. I have good technical skills, thorough knowledge of electronic components, circuit design principles and techniques. I have familiarity using electrical test equipment such as oscilloscopes, DVM, logic analyzers, power supplies, and optical time-domain reflectometeres (OTDRs). If youre looking for a candidate that is an excellent team player, takes initiative and is willing to take on exciting and challenging projects look no further. To learn more about me and my experience call me or email me at: e-mail: jawwadsayeed19@gmail.com Thank you SKILLS: Circuit design, Multi-sim, FPGA, robots, VHDL, Verilog, PLC, C, C++, MatLab, Assembly Language, Simulink, Fritzing, Visio, Excel, Java, oscilloscopes, multi-meters, power supplies, HMI, manufacturing process, design process, microprocessors, optical time domain reflectometers, transformers, generators, motors, relays, amplifiers, electronics, embedded systems, communication systems, digital signal processing.\",\n            \"skills\": [\n                \"Engineering\",\n                \"Electrical Engineering\",\n                \"Design\",\n                \"Electronics Hardware Design\",\n                \"Circuit Design\",\n                \"Circuit Analysis\",\n                \"Electronics\",\n                \"C\",\n                \"Power Electronics\",\n                \"Multisim\",\n                \"Matlab\",\n                \"Simulink\",\n                \"EagleCAD\",\n                \"Verilog\",\n                \"Problem Solving\",\n                \"Java\",\n                \"C++\",\n                \"Microsoft Excel\",\n                \"Teamwork\",\n                \"Management\",\n                \"Public Speaking\",\n                \"Leadership\",\n                \"Analysis\",\n                \"Research\",\n                \"Xilinx\",\n                \"Project Management\",\n                \"Manufacturing\",\n                \"Automation\",\n                \"Project Planning\",\n                \"Process Improvement\",\n                \"Programming\",\n                \"Product Development\",\n                \"Microsoft Project\",\n                \"PLC\",\n                \"Automotive\",\n                \"VHDL\",\n                \"Testing\",\n                \"Troubleshooting\",\n                \"Simulations\",\n                \"Visio\",\n                \"FPGA\",\n                \"Great\",\n                \"•\",\n                \"Has errors\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 3315,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"25B21C50884406F908067614B2DEAA81\",\n            \"canonical\": \"https://www.linkedin.com/in/mujadded-qureshi-68860431\",\n            \"fullname\": \"Mujadded Qureshi\",\n            \"headline\": \"Manufacturing Quality Engineer at Apple\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media-exp1.licdn.com/dms/image/C4E03AQHLFXCorAd9mg/profile-displayphoto-shrink_800_800/0/1552661158397?e=2147483647&v=beta&t=55lWp3vinMOS-GpYJKFSzDyk2spGr0xcxcbf6OdI-AY\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/mujadded-qureshi-68860431\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-06-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Rivian Automotive, Inc.\",\n                    \"position\": \"Lead Supplier Development Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2022-06-01\",\n                    \"leaveDate\": \"2023-06-01\",\n                    \"company\": \"Apple Inc.\",\n                    \"position\": \"Manufacturing Quality Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2021-02-01\",\n                    \"leaveDate\": \"2022-06-01\",\n                    \"company\": \"Tesla, Inc.\",\n                    \"position\": \"Senior Manufacturing Quality Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Advanced Aluminum Technology Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Magna International, Inc.\",\n                    \"position\": \"Advanced Quality Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Kettering University\",\n                    \"subTitle\": \"Bachelors of ScienceMechanical Engineering\"\n                },\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"Master of Science - MSEngineering/Industrial Management\"\n                },\n                {\n                    \"title\": \"Hochschule Ulm\",\n                    \"subTitle\": \"Bachelor of Science (B.S.)Mechanical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696100544501,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Experienced Project Management Engineer with a demonstrated history in the automotive industry. Skilled in Advanced Product Quality Planning (APQP), Root Cause Analysis, Manufacturing Engineering, Mechanical Engineering, and Project Management. Strong engineering professional with a Master of Science - Engineering Management from Oakland University.\",\n            \"skills\": [\n                \"Finite Element Analysis\",\n                \"Engineering\",\n                \"Machining\",\n                \"Microsoft Office\",\n                \"Teamcenter\",\n                \"Unigraphics\",\n                \"NX 5\",\n                \"GD&T\",\n                \"Manufacturing Engineering\",\n                \"DFMEA\",\n                \"Catia\",\n                \"FMEA\",\n                \"APQP\",\n                \"PPAP\",\n                \"Automotive\",\n                \"Mechanical Engineering\",\n                \"Automotive Engineering\",\n                \"Lean Manufacturing\",\n                \"Advanced Product Quality Planning (APQP)\",\n                \"Powertrain\",\n                \"CAD\",\n                \"Minitab\",\n                \"Root Cause Analysis\",\n                \"Failure Mode and Effects Analysis (FMEA)\",\n                \"Design for Manufacturing\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 971,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"DBE96337F230D8C2CEBA74D155C272D2\",\n            \"canonical\": \"https://www.linkedin.com/in/jbowen\",\n            \"fullname\": \"Jack Bowen\",\n            \"headline\": \"\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"marketing and advertising\",\n            \"picture\": \"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/1/000/002/2b1/2c086c2.jpg\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/jbowen\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Chief Outsiders\",\n                    \"position\": \"Chief Marketing Officer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2019-11-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"JMB, LLC\",\n                    \"position\": \"Chief Marketing Officer\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2018-10-01\",\n                    \"leaveDate\": \"2019-11-01\",\n                    \"company\": \"Author Solutions, LLC\",\n                    \"position\": \"Chief Marketing Officer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2017-08-01\",\n                    \"leaveDate\": \"2018-09-01\",\n                    \"company\": \"Harrison College\",\n                    \"position\": \"CMO\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2002-01-01\",\n                    \"leaveDate\": \"2017-01-01\",\n                    \"company\": \"Detroit Golf Club\",\n                    \"position\": \"Member\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2014-10-01\",\n                    \"leaveDate\": \"2016-01-01\",\n                    \"company\": \"AcademixDirect, Inc.\",\n                    \"position\": \"Chief Marketing Officer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2012-08-01\",\n                    \"leaveDate\": \"2014-09-01\",\n                    \"company\": \"Education Management Corporation -- EDMC\",\n                    \"position\": \"CMO, President, Marketing & Advertising\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2010-11-01\",\n                    \"leaveDate\": \"2012-07-01\",\n                    \"company\": \"Acxiom / Media Inc\",\n                    \"position\": \"Managing Partner\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2005-10-01\",\n                    \"leaveDate\": \"2010-01-01\",\n                    \"company\": \"Urban Science Applications, Inc\",\n                    \"position\": \"CMO\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2005-01-01\",\n                    \"leaveDate\": \"2008-01-01\",\n                    \"company\": \"Detroit Lacrosse Club\",\n                    \"position\": \"Parent\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"General Manager Digital, Online and CRM\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1986-09-01\",\n                    \"leaveDate\": \"1996-08-01\",\n                    \"company\": \"Leo Burnett Worldwide, Inc.\",\n                    \"position\": \"Account Director\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1981-05-01\",\n                    \"leaveDate\": \"1986-08-01\",\n                    \"company\": \"United States Army\",\n                    \"position\": \"Captain\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"French\",\n                \"German\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Southern California\",\n                    \"subTitle\": \"MS\"\n                },\n                {\n                    \"title\": \"United States Military Academy at West Point\",\n                    \"subTitle\": \"BS General Engineering\"\n                },\n                {\n                    \"title\": \"Trinity High\",\n                    \"subTitle\": \"-\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1695090974211,\n            \"military\": true,\n            \"clearance\": true,\n            \"about\": \"\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 13229,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"039BC596F89B72B6515257B1B5DB36A1\",\n            \"canonical\": \"https://www.linkedin.com/in/jwhitty\",\n            \"fullname\": \"Jessica Whitty\",\n            \"headline\": \"Senior Talent Acquisition Partner| Mental Health Advocate\",\n            \"location\": \"Richmond, Michigan\",\n            \"industry\": \"E-Learning\",\n            \"picture\": \"https://media.licdn.com/dms/image/D5603AQEpoAEnX9K29w/profile-displayphoto-shrink_100_100/0/1666012371973?e=1700092800&v=beta&t=IF0DelzmbqeoeMPFzgCw4T3grpetLvG5_Sf1otsjhKI\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/jwhitty\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Walker-Miller Energy Services\",\n                    \"position\": \"Senior Talent Acquisition Partner\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2022-10-01\",\n                    \"leaveDate\": \"2023-02-01\",\n                    \"company\": \"Better Life Partners\",\n                    \"position\": \"Talent Acquisition Partner\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \"\n                },\n                {\n                    \"hiredDate\": \"2021-11-01\",\n                    \"leaveDate\": \"2022-08-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Technical Talent Specialist\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \"\n                },\n                {\n                    \"hiredDate\": \"2021-02-01\",\n                    \"leaveDate\": \"2021-11-01\",\n                    \"company\": \"Walker-Miller Energy Services\",\n                    \"position\": \"Talent Acquisition Manager\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2020-05-01\",\n                    \"leaveDate\": \"2021-02-01\",\n                    \"company\": \"Trillium Teamologies, Inc.\",\n                    \"position\": \"Senior Resource Development Specialist\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2018-07-01\",\n                    \"leaveDate\": \"2019-11-01\",\n                    \"company\": \"ABM Industries Incorporated\",\n                    \"position\": \"Talent Acquisition Manager\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \"\n                },\n                {\n                    \"hiredDate\": \"2013-06-01\",\n                    \"leaveDate\": \"2018-05-01\",\n                    \"company\": \"Allegis Global Solutions\",\n                    \"position\": \"Recruiting Manager\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \"\n                },\n                {\n                    \"hiredDate\": \"2012-04-01\",\n                    \"leaveDate\": \"2013-06-01\",\n                    \"company\": \"North American Bancard & Pay Anywhere\",\n                    \"position\": \"Corporate Recruiter\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \"\n                },\n                {\n                    \"hiredDate\": \"2009-03-01\",\n                    \"leaveDate\": \"2012-03-01\",\n                    \"company\": \"Kelly Services, Inc.\",\n                    \"position\": \"U.S. Services- Recruiter\",\n                    \"description\": \"                                                                                                                                                                                                                                           \"\n                },\n                {\n                    \"hiredDate\": \"2008-02-01\",\n                    \"leaveDate\": \"2009-03-01\",\n                    \"company\": \"Kelly Services, Inc.\",\n                    \"position\": \"Recruiter - Outsourcing and Consulting Group\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \"\n                },\n                {\n                    \"hiredDate\": \"2006-04-01\",\n                    \"leaveDate\": \"2008-02-01\",\n                    \"company\": \"Kelly Services, Inc.\",\n                    \"position\": \"Sr. Sourcing Specialist - Outsourcing and Consulting Group\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \"\n                },\n                {\n                    \"hiredDate\": \"2004-03-01\",\n                    \"leaveDate\": \"2006-03-01\",\n                    \"company\": \"Allstate Insurance\",\n                    \"position\": \"HR Associate - Regional Recruiter\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                   \"\n                },\n                {\n                    \"hiredDate\": \"2002-03-01\",\n                    \"leaveDate\": \"2004-03-01\",\n                    \"company\": \"Aflac Incorporated\",\n                    \"position\": \"Regional Recruiting Coordinator\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                             \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Walsh College\",\n                    \"subTitle\": \"MBAInternational Business\"\n                },\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"BSHuman Resources\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1695090150503,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Lifes too short to not love what you do! Throughout my career, I’ve worked with diverse clients and candidates in various industries across the US and Canada. My commitment to strategically targeting and identifying top talent has earned me the reputation of being an expert partner in the talent acquisition space. I have a diverse background in supporting Mental Health/Recovery Addiction, Automotive, Corporate roles, Insurance, Financial Services, Institutional Investments, Clinical Research, Healthcare, Merchant Services, K20 Education, & IT as well as high volume and entry level to C-level hires. My specialties include: •Developing and leading the overall strategy and execution of Talent Acquisition Programs. •Leading, coaching, developing and mentoring Talent Acquisition teams. •Maintaining market expertise of industry trends and competitors. •Create, review, measure & manage SLAs, KPIs and metrics. •Outcome focused. •Best in class recruiting practices and continuous improvement. •Building partnerships with HR, Operations, Executive Leadership, Business Units, Vendors & Suppliers. •Identifying the right fit for the candidate, and the company! •Full-life cycle recruitment. •Corporate, contract & permanent placement recruitment, as well as Recruitment Process Outsourcing (RPO). •Background checks & negotiations. •ATS/CRM/HRIS: My Staffing Pro, Taleo, SilkRoad, Avature, Recruitsoft, Peoplesoft, Source Point, Share Point, Fieldglass, Active Recruiter, JazzHR, Workday, Monster, Jobalign, Open Hire, Team Member Gateway, Brass Ring, Oracle and Bullhorn.\",\n            \"skills\": [\n                \"Talent Acquisition\",\n                \"Applicant Tracking Systems\",\n                \"Sourcing\",\n                \"Screening\",\n                \"Technical Recruiting\",\n                \"Internet Recruiting\",\n                \"Hiring\",\n                \"College Recruiting\",\n                \"Onboarding\",\n                \"Contract Recruitment\",\n                \"Negotiation\",\n                \"Resume Writing\",\n                \"Vendor Management\",\n                \"Interviewing\",\n                \"Mentoring\",\n                \"Merchant Services\",\n                \"OFCCP\",\n                \"Team Leadership\",\n                \"Team Building\",\n                \"Leadership\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8091969,\n                    \"lon\": -82.7557554\n                },\n                \"formattedAddress\": \"Richmond, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7374,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"FXcveYEBdbruSb0I5sRA\",\n            \"canonical\": \"https://www.linkedin.com/in/belindacargile\",\n            \"fullname\": \"Belinda C.\",\n            \"headline\": \"Clinical Account Specialist at Biosense Webster\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/belindacargile\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Biosense Webster Inc\",\n                    \"position\": \"Clinical Account Specialist\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2020-01-01\",\n                    \"leaveDate\": \"2021-07-01\",\n                    \"company\": \"University of Michigan\",\n                    \"position\": \"Research Assistant\",\n                    \"description\": \"Working in the University of Michigan Neuromuscular Rehabilitation Robotics (NeuRRo) Laboratory to study motor learning and recovery after stroke  using advanced motion capture and physiological measurement techniques to study the biomechanics and neural plasticity during gait training.\"\n                },\n                {\n                    \"hiredDate\": \"2019-07-01\",\n                    \"leaveDate\": \"2019-12-01\",\n                    \"company\": \"Rainbow Rehabilitation Centers\",\n                    \"position\": \"Rehabilitation Assistant\",\n                    \"description\": \" Collaborated with the clinical treatment team, which included nurses and physical therapists, in order to ensure the safety and health of clients  Administered bedside care, performed healthcare-related tasks such as monitoring vital signs and medication; also aided in therapeutic rehabilitation programs\"\n                },\n                {\n                    \"hiredDate\": \"2018-08-01\",\n                    \"leaveDate\": \"2019-05-01\",\n                    \"company\": \"Ferris State University\",\n                    \"position\": \"Desk Service Assistant\",\n                    \"description\": \" Responsible for the overall operations involved with working the residence hall front desk.  Assisted residents, answered phones, performed functions with night security, checked out desk equipment, and assisted the hall director and desk manager as needed.  Performed various clerical duties, including opening mail, answering the telephone, etc.\"\n                },\n                {\n                    \"hiredDate\": \"2017-08-01\",\n                    \"leaveDate\": \"2018-02-01\",\n                    \"company\": \"Ferris State University\",\n                    \"position\": \"General Clerical\",\n                    \"description\": \" My duties included answering phones, data entry, filing, typing, and photocopying.  Other jobs included assisting faculty, scheduling appointments, research, assisting patrons and other general office duties.\"\n                },\n                {\n                    \"hiredDate\": \"2016-06-01\",\n                    \"leaveDate\": \"2016-08-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Student Corps Intern\",\n                    \"description\": \" Worked with my team on small start-ups and managed aspects of their restoration, repair and clean-up projects, from budgeting, planning and problem solving to execution.  Completed community service projects including community improvement projects and working in food banks.  Attended mentoring sessions and training programs to enhance employment skills.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan College of Engineering\",\n                    \"subTitle\": \"Bachelor of Engineering - BSE, Biomedical Engineering\"\n                },\n                {\n                    \"title\": \"Ferris State University\",\n                    \"subTitle\": \"Associate of Science - ASPre-Science\"\n                },\n                {\n                    \"title\": \"Madison high school\",\n                    \"subTitle\": \"-\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1694785358577,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 1218,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"2svsLH4B9VcM4flOtjvH\",\n            \"canonical\": \"https://www.linkedin.com/in/ellen-lu-a3bb926\",\n            \"fullname\": \"Ellen Lu\",\n            \"headline\": \"Senior Manager, Automotive Cybersecurity\",\n            \"location\": \"Novi, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static-exp1.licdn.com/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/ellen-lu-a3bb926\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Dana Incorporated\",\n                    \"position\": \"Senior Cybersecurity Manager\",\n                    \"description\": \"Head of product cybersecurity for Light Vehicle Business Unit - EV powertrain System & Software cybersecurity engineering. Building a brand new cybersecurity team and managing limited resources to efficiently work on multiple projects. Directing cybersecurity development (onboard HSM, SecOC, Secure boot, Secure update in AUTOSAR based architecture) and the delivery of full package of cybersecurity work products compliant with ISO 21434 standard.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"HARMAN International\",\n                    \"position\": \"Senior Manager, Automotive Cybersecurity Office\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2011-12-01\",\n                    \"leaveDate\": \"2012-12-01\",\n                    \"company\": \"A123 Systems\",\n                    \"position\": \"Sr. Software Engineer Lead\",\n                    \"description\": \"Deliver Battery Management System software\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Visteon Corporation\",\n                    \"position\": \"Lead Software Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Software Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"Master of Science (MS)Computer Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1694035845910,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"An expert skillfully navigating in automotive business environment to always succefully drive teams reaching goals, with 27 years of automotive industry engineering and management experience - first 18 years in ECU software, from validation to SW development and project management; then 4 years in system requirements management, followed by 2 years in program management, recent 3 years in automotive cybersecurity mamagement.\",\n            \"skills\": [\n                \"Embedded Systems\",\n                \"Embedded Software\",\n                \"Automotive\",\n                \"Engineering Management\",\n                \"C\",\n                \"Integration\",\n                \"Product Development\",\n                \"Electronics\",\n                \"Testing\",\n                \"Software Project Management\",\n                \"RTOS\",\n                \"Automotive Electronics\",\n                \"Systems Engineering\",\n                \"Software Design\",\n                \"Software Development\",\n                \"Debugging\",\n                \"Device Drivers\",\n                \"Microcontrollers\",\n                \"Manufacturing\",\n                \"Program Management\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.48059,\n                    \"lon\": -83.4754913\n                },\n                \"formattedAddress\": \"Novi, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 706,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"C20E0F535D607DD1EB689E219E6CC320\",\n            \"canonical\": \"https://www.linkedin.com/in/wendycurcuri\",\n            \"fullname\": \"Wendy Bauer\",\n            \"headline\": \"General Manager, AWS Automotive | AWS at Amazon | Chief Member | DEI Champion\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"computer software\",\n            \"picture\": \"https://media-exp1.licdn.com/dms/image/C4E03AQEzCMnX8SfGcg/profile-displayphoto-shrink_800_800/0/1641417112015?e=2147483647&v=beta&t=yYI7tWdP-5p0sTDxIu8apo26OxC7b-0pRETjV3UOMrM\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/wendycurcuri\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Amazon Web Services, Inc.\",\n                    \"position\": \"General Manager, Automotive & Manufacturing\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2022-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Chief\",\n                    \"position\": \"Member\",\n                    \"description\": \"Chief is a private network built to drive more women into positions of power and keep them there. Chief is the only organization specifically designed for senior women leaders to strengthen their leadership journey, cross-pollinate ideas across industries, magnify their influence, and pave the way to bring others with them.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Microsoft Corporation\",\n                    \"position\": \"Worldwide Manufacturing & Resources Industry, Business Strategy Leader\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2013-09-01\",\n                    \"leaveDate\": \"2016-07-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Global Sales Director - Electronics & Safety\",\n                    \"description\": \"Formerly Delphi, now Aptiv\"\n                },\n                {\n                    \"hiredDate\": \"2012-10-01\",\n                    \"leaveDate\": \"2013-09-01\",\n                    \"company\": \"Eaton Corporation, PLC\",\n                    \"position\": \"Director of Sales - Automotive\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2006-03-01\",\n                    \"leaveDate\": \"2012-09-01\",\n                    \"company\": \"DENSO International America, Inc.\",\n                    \"position\": \"Senior Sales Manager\",\n                    \"description\": \"Ford Motor Company - Global Electronics & Engine Electric Business April 2010 - September 2012 Nissan, Subaru, Mitsubishi - North America Thermal, Powertrain, Electronics & Engine Electric Business March 2006 - March 2010\"\n                },\n                {\n                    \"hiredDate\": \"1994-10-01\",\n                    \"leaveDate\": \"2006-02-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Purchasing, Finance Cost Estimating, Product Design Engineering, Quality Engineering\",\n                    \"description\": \"Variety of positions across functional organizations: * Cost Reduction Manager (Purchasing) - Vehicle Line Team * Finance Cost Estimating - Process Development * Product Design Engineering * Vehicle Assembly (Quality) Engineering * Engineering Co-op Student\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Indiana University - Kelley School of Business\",\n                    \"subTitle\": \"MBAGeneral Management\"\n                },\n                {\n                    \"title\": \"Purdue University\",\n                    \"subTitle\": \"MSEngineering\"\n                },\n                {\n                    \"title\": \"Kettering University\",\n                    \"subTitle\": \"B.S.Electrical Eng. & B.S. Mechanical Eng.\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693991451339,\n            \"military\": false,\n            \"clearance\": true,\n            \"about\": \"\",\n            \"skills\": [\n                \"Automotive\",\n                \"Global Business Development\",\n                \"Sales Management\",\n                \"Strategic Planning\",\n                \"Product Development\",\n                \"Cross-functional Team Leadership\",\n                \"Powertrain\",\n                \"Vehicles\",\n                \"Continuous Improvement\",\n                \"Engineering\",\n                \"Root Cause Analysis\",\n                \"PDCA\",\n                \"Business Process Improvement\",\n                \"Cost Reduction Strategies\",\n                \"APQP\",\n                \"Supply Chain Management\",\n                \"Kaizen\",\n                \"Team Building\",\n                \"Purchasing\",\n                \"New Business Development\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8379,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"3D2A1AA6D9BF1620B1FC24E9A356FC5C\",\n            \"canonical\": \"https://www.linkedin.com/in/scott-ertell-6925218\",\n            \"fullname\": \"Scott Ertell\",\n            \"headline\": \"Wellspring Lutheran Services\",\n            \"location\": \"Dearborn, Michigan\",\n            \"industry\": \"information technology and services\",\n            \"picture\": \"https://media-exp1.licdn.com/dms/image/C4E03AQErbi2TtKpJNg/profile-displayphoto-shrink_400_400/0/1553782357497?e=1635379200&v=beta&t=SaHlCARIOjjZW2rdzF3Nagv9DqHNQesV8HSoG6NV8BI\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/scott-ertell-6925218\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2015-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Wellspring Lutheran Services\",\n                    \"position\": \"IT Helpdesk Technician I\",\n                    \"description\": \" Reset email and network passwords  Create New User accounts; including AD, email, shared drive access and setup laptops, network printers and configuring Outlook.  Complete Termination request, disabling all user accounts  Trouble shoot Wi-Fi and connectivity issues  Troubleshooting email locking up, sharing calendar and setting up supervisors with access to terminated employees email.  Troubleshoot Xerox WorkCentre printer issues  Setting Show more  Reset email and network passwords  Create New User accounts; including AD, email, shared drive access and setup laptops, network printers and configuring Outlook.  Complete Termination request, disabling all user accounts  Trouble shoot Wi-Fi and connectivity issues  Troubleshooting email locking up, sharing calendar and setting up supervisors with access to terminated employees email.  Troubleshoot Xerox WorkCentre printer issues  Setting permissions on shared drives  New employee setup (laptop, printers, shared drives, phones and key fobs)  Update IT Inventory and Employee Status Report Sheet Show less\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2010-12-01\",\n                    \"leaveDate\": \"2013-06-01\",\n                    \"company\": \"Corporation Service Company\",\n                    \"position\": \"Incident Coordinator\",\n                    \"description\": \"Assign tickets to technicians according to locations to resolve issue. Work as an integral part of a team of many different Incident Coordinators. Review all tickets to drive efficiencies and decrease resolution times. Escalate productivity issues to the Incident Managers and Site Managers. Monitor and assign tickets from filtering queue to the help desk so tickets can be created. Resign ticket per technician request to different support group through a buy-off request Show more Assign tickets to technicians according to locations to resolve issue. Work as an integral part of a team of many different Incident Coordinators. Review all tickets to drive efficiencies and decrease resolution times. Escalate productivity issues to the Incident Managers and Site Managers. Monitor and assign tickets from filtering queue to the help desk so tickets can be created. Resign ticket per technician request to different support group through a buy-off request (technician assuming responsibility of ticket). Trained Incident Coordinators on creating Networking and PBX Report. Trained Incident Coordinators on running Bi-weekly Networking and PBX call in meeting. Escalate tickets to technicians for immediate work. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2010-02-01\",\n                    \"leaveDate\": \"2010-11-01\",\n                    \"company\": \"St. John Health Care\",\n                    \"position\": \"Incident Coordinator\",\n                    \"description\": \"Assign tickets to technicians according to locations to resolve issue. Work as an integral part of a team of eighteen Incident Coordinators. Correct and report inaccurately coded and assigned tickets for Quality Assurance. Facilitate Plan of the Day Meeting with Technicians, Team Leads, and Site Managers. Review all tickets to drive efficiencies and decrease resolution times. Escalate productivity issues to the Incident Managers and Site Managers. Review and audit tickets for Show more Assign tickets to technicians according to locations to resolve issue. Work as an integral part of a team of eighteen Incident Coordinators. Correct and report inaccurately coded and assigned tickets for Quality Assurance. Facilitate Plan of the Day Meeting with Technicians, Team Leads, and Site Managers. Review all tickets to drive efficiencies and decrease resolution times. Escalate productivity issues to the Incident Managers and Site Managers. Review and audit tickets for Process Compliance. Support SLA attainment by identifying, reporting, and escalating all tickets close to or missing Service Levels to appropriate individuals. Provide Metrics and Reporting Support for Month End Billing and SLA Reports by scrubbing tickets and correcting inaccuracies. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2008-12-01\",\n                    \"leaveDate\": \"2009-01-01\",\n                    \"company\": \"J P Morgan Chase & Co\",\n                    \"position\": \"Media Operator\",\n                    \"description\": \"Retrieved media tapes from tape racks and inserted them into media library. Took out ejected tapes from media library and re-racked tapes. Inserted cleaning tapes into media library.\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford SDSS Server Team\",\n                    \"position\": \"Network Administrator\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2004-11-01\",\n                    \"leaveDate\": \"2005-06-01\",\n                    \"company\": \"Handleman Group\",\n                    \"position\": \"Senior Laptop Support Technician\",\n                    \"description\": \"Support Outlook 98 & 2000; answer user questions and provide problem resolution. Swap out hardware for HP Omnibook 510, Gateway, Compaq; Dell Axim PDA's & SD Memory Cards; Canon BJC-80 &85, parallel and ac adapter cords; Scanner Guns and Cords. Backup data, restage, restore data and configure laptop computers. Assisted users in synching store data from server to laptop and then to PDA, also synching from server to PDA. Assisted user in troubleshooting dial-up problems Show more Support Outlook 98 & 2000; answer user questions and provide problem resolution. Swap out hardware for HP Omnibook 510, Gateway, Compaq; Dell Axim PDA's & SD Memory Cards; Canon BJC-80 &85, parallel and ac adapter cords; Scanner Guns and Cords. Backup data, restage, restore data and configure laptop computers. Assisted users in synching store data from server to laptop and then to PDA, also synching from server to PDA. Assisted user in troubleshooting dial-up problems in connecting on Laptop's and Socket 56K Modem on PDA's. Reset and unlocked users network passwords. Emailed and called users and open tickets. Logging in as administrator to Portal Page to see if user has territory and store setup to configure PDA and Laptop for new user. Give user manual overrite and auth code for users to sign into stores with. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2004-11-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Senior Laptop Support Technician\",\n                    \"description\": \" Assist and troubleshoot Ford users in connecting Cable Modem and DSL with router and VPN Client.  Create and publish articles for the IPortal, through Web Authoring.  Pushed through and corrected articles for the IPortal, being Knowledge Engineer.  Troubleshoot LAN connectivity issues and reset LAN passwords.  Create GIRS tickets and called users on open tickets to resolve problems.  Support Outlook 98 & 2000; answer user questions and provide problem resolution. Show more  Assist and troubleshoot Ford users in connecting Cable Modem and DSL with router and VPN Client.  Create and publish articles for the IPortal, through Web Authoring.  Pushed through and corrected articles for the IPortal, being Knowledge Engineer.  Troubleshoot LAN connectivity issues and reset LAN passwords.  Create GIRS tickets and called users on open tickets to resolve problems.  Support Outlook 98 & 2000; answer user questions and provide problem resolution.  Support Microsoft Office applications.  Swap out hardware for Dell Latitude CPX, C600 & C610; HP DeskJet Printers and Brother MFC Printers.  Troubleshoot modem problems and assist Ford users in activating their Securid cards.  Stage, restage and configure laptop computers; instruct users on running system cleanup.  Help users to map network drives, assist users in creating their dial-up-network connection. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1997-12-01\",\n                    \"leaveDate\": \"1999-06-01\",\n                    \"company\": \"Mati's Deli\",\n                    \"position\": \"Inside Sales Representative\",\n                    \"description\": \"Trained new employees, light stock work, answered phone orders and questions.\"\n                },\n                {\n                    \"hiredDate\": \"1997-09-01\",\n                    \"leaveDate\": \"1997-12-01\",\n                    \"company\": \"CCN\",\n                    \"position\": \"Help Desk Analyst\",\n                    \"description\": \"Resolved system conflicts on a multiple server network. Monitored and documented data on server activity. Created documentation to track login memory space available, voice mails, messages and call status on open tickets. Assisted the staging and distribution of systems to remote sites throughout the country. Updated the phone status line in regards to server downtime and accessibility.\"\n                },\n                {\n                    \"hiredDate\": \"1996-09-01\",\n                    \"leaveDate\": \"1997-02-01\",\n                    \"company\": \"Cyber Inc\",\n                    \"position\": \"Satellite Network Analyst\",\n                    \"description\": \"Assisted Ford dealerships in the activation of their Service Bay Diagnostic System (SBDS) to the FORDSTAR Satellite Network. Trouble shot network problems concerning SBDS and SBTS and FORDSTAR Terminal. Tested Service Bay Products from remote location. Distributed LAN software and LAN instructions to dealerships. Assisted Hughes Network System field technicians with service problems. Interfaced with Service Bay Product Support Group and FORDSTAR. Provided helpdesk support for Show more Assisted Ford dealerships in the activation of their Service Bay Diagnostic System (SBDS) to the FORDSTAR Satellite Network. Trouble shot network problems concerning SBDS and SBTS and FORDSTAR Terminal. Tested Service Bay Products from remote location. Distributed LAN software and LAN instructions to dealerships. Assisted Hughes Network System field technicians with service problems. Interfaced with Service Bay Product Support Group and FORDSTAR. Provided helpdesk support for LAN activation issues. Recorded service comments and placed service requests for IBM and Hughes technicians. Checked on Satellite connection for FORDSTAR Terminal, SBDS and SBTS. Show less\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Phoenix - Online\",\n                    \"subTitle\": \"BachelorComputer Information System\"\n                },\n                {\n                    \"title\": \"Henry Ford Community College\",\n                    \"subTitle\": \"Associates of ScienceComputer Information System\"\n                },\n                {\n                    \"title\": \"Edsel Ford High School\",\n                    \"subTitle\": \"High School DiplomaGeneral Studies\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693979035197,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Servers\",\n                \"Troubleshooting\",\n                \"VPN\",\n                \"Hardware\",\n                \"Software Documentation\",\n                \"Help Desk Support\",\n                \"Laptops\",\n                \"Networking\",\n                \"Printers\",\n                \"Routers\",\n                \"Management\",\n                \"HP\",\n                \"Team Leadership\",\n                \"Access\",\n                \"Quality Assurance\",\n                \"Microsoft Office\",\n                \"Outlook\",\n                \"Windows Server\",\n                \"Active Directory\",\n                \"Sla\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.3222599,\n                    \"lon\": -83.17631449999999\n                },\n                \"formattedAddress\": \"Dearborn, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7158,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"2FB33FB26D05317C8F9711F2798F9EFA\",\n            \"canonical\": \"https://www.linkedin.com/in/sean-gale-07b61267\",\n            \"fullname\": \"Sean Gale\",\n            \"headline\": \"Project Specialist at Marty Feldman Chevrolet\",\n            \"location\": \"Farmington, Michigan\",\n            \"industry\": \"Security and Investigations\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQHjEugD25m2eA/profile-displayphoto-shrink_800_800/0/1517358931156?e=2147483647&v=beta&t=vAee0L1FhVlgpqLjz3NHbpTMVY9uxGv_kyfv3vmPRS8\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/sean-gale-07b61267\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Marty Feldman Chevrolet\",\n                    \"position\": \"Project Specialist\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2014-03-01\",\n                    \"leaveDate\": \"2018-03-01\",\n                    \"company\": \"United States Army\",\n                    \"position\": \"Firefinder Radar Operator Section Chief\",\n                    \"description\": \"Sergeant in the United States Army.\"\n                },\n                {\n                    \"hiredDate\": \"2013-03-01\",\n                    \"leaveDate\": \"2013-11-01\",\n                    \"company\": \"Asset Control Services, Inc. (ACS Claims Investigations)\",\n                    \"position\": \"Investigator\",\n                    \"description\": \"Conduct surveillance on cases, videotaping, interviews, neighborhood canvases, and report writing.\"\n                },\n                {\n                    \"hiredDate\": \"2013-02-01\",\n                    \"leaveDate\": \"2013-03-01\",\n                    \"company\": \"Pizza Hut\",\n                    \"position\": \"Delivery Driver\",\n                    \"description\": \"Delivering pizza and other menu items to customers. Cleaning dishes and prepping food for cooks.\"\n                },\n                {\n                    \"hiredDate\": \"2012-05-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"Katke Golf Course\",\n                    \"position\": \"Grounds Keeper\",\n                    \"description\": \"Maintaining golf course up keep, mowing grass around the grounds. Helping inside the club house when needed.\"\n                },\n                {\n                    \"hiredDate\": \"2011-05-01\",\n                    \"leaveDate\": \"2011-09-01\",\n                    \"company\": \"Flint Golf and Country Club\",\n                    \"position\": \"Grounds Keeper\",\n                    \"description\": \"Maintaining the golf course grounds, mowing tee's, fairway's, green's and so on. Additional work included taking care of landscaping needs. Along with helping inside the club house when needed.\"\n                },\n                {\n                    \"hiredDate\": \"2008-11-01\",\n                    \"leaveDate\": \"2010-09-01\",\n                    \"company\": \"Techumseh Lawn and Landscape\",\n                    \"position\": \"Landscaper\",\n                    \"description\": \"Mowing lawns at commercial and residential properties. Along with landscaping projects at these properties and Plowing snow.\"\n                },\n                {\n                    \"hiredDate\": \"2008-06-01\",\n                    \"leaveDate\": \"2008-10-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Forklift Driver\",\n                    \"description\": \"Loading and unloading semi trucks and moving automotive parts around the plant.\"\n                },\n                {\n                    \"hiredDate\": \"2006-09-01\",\n                    \"leaveDate\": \"2008-06-01\",\n                    \"company\": \"Flint Golf and Country Club\",\n                    \"position\": \"Grounds Keeper\",\n                    \"description\": \"Maintaining the golf course grounds, mowing tee's, fairway's, green's and so on. Additional work included taking care of landscaping needs. Along with helping inside the club house when needed.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Ferris State University\",\n                    \"subTitle\": \"Bachelor's degreeCriminal Justice and Corrections\"\n                },\n                {\n                    \"title\": \"Kearsley High School\",\n                    \"subTitle\": \"High School diplomaHigh School/Secondary Diploma Programs\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693964009819,\n            \"military\": false,\n            \"clearance\": true,\n            \"about\": \"Well rounded individual with a growing desire to constantly improve and challenge oneself physically and mentally and bring out the best in those around me. During my time at Ferris State University I developed skills in areas of crime scene investigation, including basic training in blood splatter analysis, bullet and finger print analysis along with crime scene photography. I also have learned skills in supervision/management in the Criminal Justice field along with human resource management. I have also received certification in report writing, firearms training in which I have my Concealed Pistol License. I am also certified in CPR and first aid along with PPCT defensive tactics as well as a certification in Michigan Correctional Law. I have also learned skills in the area of conducting work as a private investigator such a mobile and covert surveillance, conducting neighborhood canvass and interviewing. Military training includes digital and wireless communications. Vehicle maintenance and operations on light and heavy duty vehicles and generators. Trouble shooting, maintenance and operational skills relating to field artillery radars (AN/TPQ-36, AN/TPQ-37, AN/TPQ-50, AN/TPQ-53). Accountability of personnel upto a dozen or more people at any given time. Responsible for for the safeguard and operational functionality of military equipment between 2 million-16 million dollars. Skills also include writing monthly personnel evaluations, strategic planning, training and leading individuals in job specific areas. Coaching and mentoring individuals. Expert marksmanship qualified. Top Secret-SCI clearance.\",\n            \"skills\": [\n                \"Time Management\",\n                \"Leadership\",\n                \"First Aid\",\n                \"Landscaping\",\n                \"Forklift Operator\",\n                \"Lawn Care\",\n                \"Firearms\",\n                \"Criminal Justice\",\n                \"Cpr Certified\",\n                \"Teamwork\",\n                \"Analysis\",\n                \"Private Investigations\",\n                \"Surveillance\",\n                \"Report Writing\",\n                \"Loss Prevention\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4644795,\n                    \"lon\": -83.37632180000001\n                },\n                \"formattedAddress\": \"Farmington, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 3379,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"A61E49969C80CCCF1F0538C665D7F6AA\",\n            \"canonical\": \"https://www.linkedin.com/in/josephine-dannug-455a813\",\n            \"fullname\": \"Josephine Dannug\",\n            \"headline\": \"Project Engineering Manager\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Defense & Space\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/josephine-dannug-455a813\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Dynamics Land Systems\",\n                    \"position\": \"Program Management Specialist\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2014-12-01\",\n                    \"company\": \"Virtual celebration\",\n                    \"position\": \"Virtual event planner\",\n                    \"description\": \"Independent contractor offering the service and helping consumers to host fun & engaging virtual events. Birthdays, anniversaries, graduations, business grand openings, fundraisers, and more can all be enhanced with a virtual component. Let's get the party started!\"\n                },\n                {\n                    \"hiredDate\": \"2000-07-01\",\n                    \"leaveDate\": \"2008-08-01\",\n                    \"company\": \"Creative Memories\",\n                    \"position\": \"Independent Consultant (Unit Leader)\",\n                    \"description\": \"Provided training to clients procedure on photograph preservation. Organized small and large group sales presentation. Developed recruitment process to attract new independent consultants. Researched and implemented new product market on custom framing.\"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2002-01-01\",\n                    \"company\": \"Visteon Corporation\",\n                    \"position\": \"Manufacturing Engineer\",\n                    \"description\": \"Responsible for the launching and implementation of Injection-molded Throttle Body Assembly manufacturing process. Provided on-site engineering support during initial OEM assembly of the Ford Focus. Collaborated with Design Engineering to determine and test alternative materials for the Throttle body cost savings initiatives. Coordinated configuration management actions as related to automotive vehicles. Maintained documentations such as PFMEA, Process Flow/Quality Plans, and Quality Reports Show more Responsible for the launching and implementation of Injection-molded Throttle Body Assembly manufacturing process. Provided on-site engineering support during initial OEM assembly of the Ford Focus. Collaborated with Design Engineering to determine and test alternative materials for the Throttle body cost savings initiatives. Coordinated configuration management actions as related to automotive vehicles. Maintained documentations such as PFMEA, Process Flow/Quality Plans, and Quality Reports. Provided training and technical assistance to UAW member operators and skilled tradesmen. Designed, planned, cost estimated and tested injection-molded electrical interconnects for instrument panel assembly advanced engineering. Specified and validated components, consolidated building of prototypes, testing and documenting material properties for use on Injection-molded Throttle Body assembly. Created, reviewed, and updated technical specifications for automotive components for spare parts. Addressed Quality Assurance requirements as they pertain to specifications. Wrote statements of work as related to automotive vehicles. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1997-01-01\",\n                    \"leaveDate\": \"2000-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Product Engineer\",\n                    \"description\": \"Planned, cost estimated, designed and implemented Carbon Canister Assembly from concept stage to production launch. Managed and completed each task required at each stage of the product life cycle in accordance with Visteon Product Development System (VPDS). Conducted analysis of testing procedures, eliminating unnecessary processes, thereby realizing cost avoidances. Recommended, reviewed and approved packaging design features and layout. Developed and maintained documentations such as Show more Planned, cost estimated, designed and implemented Carbon Canister Assembly from concept stage to production launch. Managed and completed each task required at each stage of the product life cycle in accordance with Visteon Product Development System (VPDS). Conducted analysis of testing procedures, eliminating unnecessary processes, thereby realizing cost avoidances. Recommended, reviewed and approved packaging design features and layout. Developed and maintained documentations such as DFMEA, DVP&R, Program Sheets, Quality Reports, and others. Performed Benchmarking, Design for Assembly and Maintainability, Value Engineering, and Lean Manufacturing Concept analyses to simplify, optimize, and error proof both the product and process designs. Provided on-site engineering support during initial OEM assembly on vehicle programs (Job1 launch), for the Mustang, Lincoln LS, and Crown Victoria Police fleet. Addressed any production issues which would require further redesign and testing. Redesigned emission components to meet CAF requirements. Regularly presented technical information and briefings to departmental and program superiors. Additional Responsibilities: Provided Test Engineering support for the Emission Test Data. Provided manufacturing Systems Engineering support. Submitted invention disclosure for swirl-port technology for Carbon Canister inlet. Maintained professional and technical knowldege by attending educational semiars and internal/external academic classes related to Systems Engineering and Acquisition. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1995-01-01\",\n                    \"leaveDate\": \"1997-01-01\",\n                    \"company\": \"GE Capital\",\n                    \"position\": \"Co-op engineer\",\n                    \"description\": \"Duties: Attained technical knowledge in the fields of Silicone Elastomers, Gels, Encapsulants, Lubricants, Hardcoats and Paint Applications. Provided technical engineering validation support to Automotive Marketing and Commercial Technology Team on customer inquiries. Facilitated on time response to customer demands through in-house prototype development, application performance testing, and Failure Mode Analysis on parts. Provided timely oral and written report of results to supervisors and Show more Duties: Attained technical knowledge in the fields of Silicone Elastomers, Gels, Encapsulants, Lubricants, Hardcoats and Paint Applications. Provided technical engineering validation support to Automotive Marketing and Commercial Technology Team on customer inquiries. Facilitated on time response to customer demands through in-house prototype development, application performance testing, and Failure Mode Analysis on parts. Provided timely oral and written report of results to supervisors and customers. Assisted on the companys ISO 9000 laboratory certification preparation. Show less\"\n                }\n            ],\n            \"languagesList\": [\n                \"Tagalog\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"BSChemical Enginerring\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693958115029,\n            \"military\": true,\n            \"clearance\": false,\n            \"about\": \"Experienced engineer and program manager with a record of achievement in the design, development and production in military ground vehicles, automotive components and materials. Embodies ability and passion to learn and apply innovative thinking to obtain continuous improvement. Process-oriented with strong knowledge in the field of automotive component product assurance/design verification, project and systems engineering. Known for being reliable, highly responsible and dedicated team player.\",\n            \"skills\": [\n                \"Engineering Management\",\n                \"Engineering\",\n                \"Six Sigma\",\n                \"Systems Engineering\",\n                \"FMEA\",\n                \"Root Cause Analysis\",\n                \"Continuous Improvement\",\n                \"Manufacturing\",\n                \"Manufacturing Engineering\",\n                \"Testing\",\n                \"Program Management\",\n                \"Earned Value Management\",\n                \"Lean Manufacturing\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6026,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"A55408C9E1BF462F99238E12827E01C8\",\n            \"canonical\": \"https://www.linkedin.com/in/john-galvan-22881bb\",\n            \"fullname\": \"John Galvan\",\n            \"headline\": \"Recaro - Manufacturing Engineering Manager\",\n            \"location\": \"Detroit, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/john-galvan-22881bb\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2016-05-01\",\n                    \"leaveDate\": \"2023-06-01\",\n                    \"company\": \"Recaro Holding\",\n                    \"position\": \"Manufacturing Engineering Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2015-02-01\",\n                    \"leaveDate\": \"2016-05-01\",\n                    \"company\": \"The Productivity Team\",\n                    \"position\": \"Project Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2013-03-01\",\n                    \"leaveDate\": \"2015-01-01\",\n                    \"company\": \"ATCO Industries, Inc.\",\n                    \"position\": \"Operations Manager -- Detroit\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2012-06-01\",\n                    \"leaveDate\": \"2013-03-01\",\n                    \"company\": \"The Productivity Team\",\n                    \"position\": \"Project Engineer\",\n                    \"description\": \"Critical team member of the KL Assembly Launch Team with focus on: Facilitating and report-out of loop deliverables Development and tracking of Scopes-of-Work Development and tracking of Station Readiness in Trim-Chassis-Final (TCF) Management of program issues tracking (a best practice)\"\n                },\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2012-05-01\",\n                    \"company\": \"Design Systems, Inc.\",\n                    \"position\": \"Project Engineer\",\n                    \"description\": \"Providied stamping client with concepts to improve material flow; indirect labor utilization; industrial vehicle utilization; and line side presentation.\"\n                },\n                {\n                    \"hiredDate\": \"2011-07-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Manufacturing/Industrial Engineer\",\n                    \"description\": \"Supported Stamping Business Unit plants in improving productivity. Established formal launch performance process for the Industrial Engineering organization. Provided engineering analysis and support of new plant/equipment installations. Created single-point lessons for press line optimization for increasing cycle rates.\"\n                },\n                {\n                    \"hiredDate\": \"2004-03-01\",\n                    \"leaveDate\": \"2008-11-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Production Supervisor\",\n                    \"description\": \"Directly supervised over 80 hourly-unionized employees in trim department of Warren Truck Assembly Plant that assembles Dodge Ram and Dakota trucks. Active change-agent in transforming work culture to achieve lean manufacturing utilizing SMART principles. Engaged in developing workforce knowledge of manufacturing aids such as KANBAN, Practical Problem Solving Reports (PPSR's), FMEA, 5S, and Standardized Work Instructions (SWI). Demonstrated proficiency in problem solving resulting in Show more Directly supervised over 80 hourly-unionized employees in trim department of Warren Truck Assembly Plant that assembles Dodge Ram and Dakota trucks. Active change-agent in transforming work culture to achieve lean manufacturing utilizing SMART principles. Engaged in developing workforce knowledge of manufacturing aids such as KANBAN, Practical Problem Solving Reports (PPSR's), FMEA, 5S, and Standardized Work Instructions (SWI). Demonstrated proficiency in problem solving resulting in continuous improvement in safety, quality delivery, cost, and morale metrics. Show less\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Plant Engineering Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1987-07-01\",\n                    \"leaveDate\": \"1988-07-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Engineering Trainee\",\n                    \"description\": \"Provided support in the Prototype and Warrantee Repair departments.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Phoenix\",\n                    \"subTitle\": \"MSPsychology\"\n                },\n                {\n                    \"title\": \"Kettering University\",\n                    \"subTitle\": \"BSElectrical Engineering\"\n                },\n                {\n                    \"title\": \"Renaissance High School\",\n                    \"subTitle\": \"-\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693958059764,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Continuous Improvement\",\n                \"Lean Manufacturing\",\n                \"Industrial Engineering\",\n                \"Value Stream Mapping\",\n                \"Manufacturing\",\n                \"Management\",\n                \"5S\",\n                \"Cross-functional Team Leadership\",\n                \"Automation\",\n                \"Project Planning\",\n                \"Engineering\",\n                \"Vehicles\",\n                \"FMEA\",\n                \"Supply Chain Management\",\n                \"Root Cause Analysis\",\n                \"Manufacturing Operations Management\",\n                \"Process Improvement\",\n                \"Manufacturing Engineering\",\n                \"Kaizen\",\n                \"TPM\",\n                \"Stamping\",\n                \"Manufacturing Operations\",\n                \"Quality System\",\n                \"Engineering Management\",\n                \"Injection Molding\",\n                \"Kanban\",\n                \"Six Sigma\",\n                \"Quality Assurance\",\n                \"TS16949\",\n                \"ISO\",\n                \"Quality Management\",\n                \"Process Engineering\",\n                \"Product Design\",\n                \"Mechanical Engineering\",\n                \"DMAIC\",\n                \"Product Development\",\n                \"Operational Excellence\",\n                \"JIT\",\n                \"Automotive\",\n                \"PPAP\",\n                \"Operations Management\",\n                \"APQP\",\n                \"Supplier Quality\",\n                \"MS Project\",\n                \"Toyota Production System\",\n                \"SPC\",\n                \"Black Belt\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.331427,\n                    \"lon\": -83.0457538\n                },\n                \"formattedAddress\": \"Detroit, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6363,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"5D4384FD3911D0763F8A9D03D2AFE3E1\",\n            \"canonical\": \"https://www.linkedin.com/in/christopher-attard-2211063b\",\n            \"fullname\": \"Christopher Attard\",\n            \"headline\": \"Senior Manager - Integration and Test at Argo AI\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Aviation & Aerospace\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQGH3J0DoORHbw/profile-displayphoto-shrink_800_800/0/1624328732479?e=2147483647&v=beta&t=f72dJVTBE_cZWogWDsyCfuyvLyl5n3wTcclINLywJ7Y\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/christopher-attard-2211063b\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-02-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Latitude AI\",\n                    \"position\": \"Director Systems, Integration, and Test\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Argo AI\",\n                    \"position\": \"Senior Manager - Integration and Test\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Lead, Integration and Test - Autonomous Vehicles\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"Northrop Grumman Corporation\",\n                    \"position\": \"System Test Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"Master of Science (MS)Aerospace, Aeronautical and Astronautical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693957981666,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Systems Integration\",\n                \"System Test\",\n                \"Test Planning and Execution\",\n                \"Data Analysis\",\n                \"Mechanical Engineering\",\n                \"Aerospace Engineering\",\n                \"Computer Science\",\n                \"Electrical Engineering\",\n                \"Systems Engineering\",\n                \"Autonomous Vehicles\",\n                \"Active Safety Features\",\n                \"Project Planning\",\n                \"Program Management\",\n                \"Automotive CAN Bus\",\n                \"Vector CANalyzer\",\n                \"Matlab\",\n                \"Simulink\",\n                \"Calibration\",\n                \"INS/IMU/GPS Systems\",\n                \"LiDAR\",\n                \"Radar\",\n                \"Camera\",\n                \"Simulations\",\n                \"Solidworks\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 1159,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"E2F392D032F59C297AB73B7976695530\",\n            \"canonical\": \"https://www.linkedin.com/in/ane-matovski-a0362095\",\n            \"fullname\": \"Ane Matovski\",\n            \"headline\": \"Senior Engineer at General Dynamics\",\n            \"location\": \"Sterling Heights, Michigan\",\n            \"industry\": \"Defense & Space\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4D03AQGaNM_GSK3Gpw/profile-displayphoto-shrink_800_800/0/1577984981127?e=2147483647&v=beta&t=L6ErKTplF7eCgdDctEKCTy9iNq6pgDRxpUT7pjSNziE\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/ane-matovski-a0362095\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Dynamics Corporation\",\n                    \"position\": \"Engineering Specialist\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2000-11-01\",\n                    \"leaveDate\": \"2001-09-01\",\n                    \"company\": \"EPCOM Inc\",\n                    \"position\": \"Electrical Engineer\",\n                    \"description\": \" Managed procurement activities and material requests for engineering hardware and services  Provided technical support and communication to the program offices, customers and other departments within the corporation.  Tested and validated hardware and software improvements on the lethality of Stryker vehicles  Tracked, prioritized and resolved system problem reports during fast paced development environment  Prepared and presented written reports, status reports, and Show more  Managed procurement activities and material requests for engineering hardware and services  Provided technical support and communication to the program offices, customers and other departments within the corporation.  Tested and validated hardware and software improvements on the lethality of Stryker vehicles  Tracked, prioritized and resolved system problem reports during fast paced development environment  Prepared and presented written reports, status reports, and presentations as necessary  Acted as Vehicle Coordinator liaison between shop mechanics and engineers to ensure vehicles were functional and configured correctly for testing  Designed internal harness and slip ring for Commanders Panoramic Viewer along with integration of thermal and day camera and zoom lens. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1999-05-01\",\n                    \"leaveDate\": \"2000-10-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Production Supervisor\",\n                    \"description\": \" Assured product quality throughout manufacturing process  Supervised 50 to 60 production technicians  Managed the allocation of production line manpower  Identified and isolate defective products for repair process as needed  Ran four different zones within the body shop, door line and final line  Participated in pilot build of latest Grand Cherokee to insure successful production launch\"\n                }\n            ],\n            \"languagesList\": [\n                \"Macedonian\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"Master of Science (M.S.)Engineering/Industrial Management\"\n                },\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"Bachelor of ScienceElectrical and Electronics Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693950611466,\n            \"military\": true,\n            \"clearance\": false,\n            \"about\": \"• Extensive and specialized knowledge of product lifecycle, including manufacturing, deployment, modification, aging, balancing cost, schedule, performance impacts and continued support • Experience with electro-optical systems, including cameras, radars, lasers and lens selection, to obtain desired image and field of view characteristics • Knowledge of Infrared cameras technology in all three bands • Selection of proper display for video format and aspect ratio with overlays • Experience resolving equipment failures in the field, independently and managing customer expectations • Knowledge of multiple communication protocols: CAN , RS-232, RS-422, and RS-485 • Experience with lab test equipment: Oscilloscopes, Multimeters, Logic (BUS) Analyzers, Power Supplies, Video and Laser sources • Experience with MATLAB, Visual Basic, DxDesigner, OrCAD, Adobe Acrobat Professional, Microsoft Office, Windows, Windchill, CAMvu, VISIO, PSpice, DOORS, CANalyzer, Creo Schematic\",\n            \"skills\": [\n                \"Engineering\",\n                \"Engineering Management\",\n                \"Integration\",\n                \"Systems Engineering\",\n                \"Testing\",\n                \"Earned Value Management\",\n                \"Electrical Engineering\",\n                \"Matlab\",\n                \"Troubleshooting\",\n                \"Military\",\n                \"Manufacturing\",\n                \"Program Management\",\n                \"Aerospace\",\n                \"Sensors\",\n                \"Systems Design\",\n                \"Six Sigma\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.5803122,\n                    \"lon\": -83.0302033\n                },\n                \"formattedAddress\": \"Sterling Heights, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 823,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"Lfr2mIABSJUTbAXcq57J\",\n            \"canonical\": \"https://www.linkedin.com/in/kavitha-rengasamy-99743814\",\n            \"fullname\": \"Kavitha Rengasamy\",\n            \"headline\": \"Project Configuration and Release Manager Embedded Software\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/kavitha-rengasamy-99743814\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2017-09-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Elektrobit Automotive GmbH (Elektrobit)\",\n                    \"position\": \"Project Release Manager Embedded Software\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2016-04-01\",\n                    \"leaveDate\": \"2017-09-01\",\n                    \"company\": \"United Shore\",\n                    \"position\": \"Configuration Manager\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2015-04-01\",\n                    \"leaveDate\": \"2016-03-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Service Management Specialist\",\n                    \"description\": \"•                                                                                   •                                                                                  •                                                                                                        •                                                    •                                                                                                                                •           ’               …          \"\n                },\n                {\n                    \"hiredDate\": \"2011-05-01\",\n                    \"leaveDate\": \"2015-03-01\",\n                    \"company\": \"GM Onstar\",\n                    \"position\": \"Technical Lead\",\n                    \"description\": \"•                                                                                          •                                                              •                                                                                                              •                                                                                       •                                                                  •                                                      …          \"\n                },\n                {\n                    \"hiredDate\": \"2009-09-01\",\n                    \"leaveDate\": \"2009-11-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Technical Specialist\",\n                    \"description\": \"•                                                                                                                                                                                                        •                                                                      •                                                                          •                                                                                                                                        …          \"\n                },\n                {\n                    \"hiredDate\": \"2008-09-01\",\n                    \"leaveDate\": \"2009-08-01\",\n                    \"company\": \"Broadcom Inc.\",\n                    \"position\": \"Configuration Management Lead\",\n                    \"description\": \"•                                                                                                                                                                                                                   •                                                                        •                                                                                                         •                                                                                               …          \"\n                },\n                {\n                    \"hiredDate\": \"2004-10-01\",\n                    \"leaveDate\": \"2008-07-01\",\n                    \"company\": \"DTE Energy Company\",\n                    \"position\": \"Configuration Manager\",\n                    \"description\": \"•                                                                                •                                                     •                                                                                •                                                                                      •                                                                         •                                                                                                      …          \"\n                },\n                {\n                    \"hiredDate\": \"2003-01-01\",\n                    \"leaveDate\": \"2004-09-01\",\n                    \"company\": \"Blue Cross Blue Shield Association\",\n                    \"position\": \"Technical Manager\",\n                    \"description\": \"•                                                                 •                                                                                                      •                                                                      •                                                                                                              •                                                                                       •                                           …          \"\n                },\n                {\n                    \"hiredDate\": \"2001-11-01\",\n                    \"leaveDate\": \"2002-12-01\",\n                    \"company\": \"Citigroup Salomon Smith Barney\",\n                    \"position\": \"Configuration Manager and Build Release Engineer\",\n                    \"description\": \"•                                                                                       •                                                                                   •                                                                                                            •                                                          •                                                                                   •                                                  …          \"\n                },\n                {\n                    \"hiredDate\": \"2001-05-01\",\n                    \"leaveDate\": \"2001-10-01\",\n                    \"company\": \"Indus International\",\n                    \"position\": \"SCM Build Release Engineer\",\n                    \"description\": \"•                                                                            •                                                           •                                                                             •                                                                      •                                                    •                                                                                                                                             …          \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Master of Business Administration\",\n                    \"subTitle\": \"Master of Business Administration (M.B.A.)\"\n                },\n                {\n                    \"title\": \"Bachelors in Engineering\",\n                    \"subTitle\": \"Bachelors in Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686267345044,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Extensive IT experience in Project Management, Configuration Management, Change Management, DevOps Build and Release Management, Testing, and Scripting. Specialties: Configuration Management, Change management, DevOps, Service Delivery Management, ASPICE, Agile, Scrum, and ITIL. * Proven success in Project Management activities. Expert skills in business case development, resource planning, scheduling, and budgeting. Working knowledge of Agile Scrum, Waterfall Methodology, and Best Practices. * Demonstrated skill in establishing/improving project management methodologies, best practices, and technologies using Project Management Institute PMBOK and Integrated Capability Maturity Model (CMMI). * Rolled out Configuration Management and Change Management based on ITIL. Worked on Service Level Management SLM process definition. ITIL V3 Foundation Certified. * Successfully implemented Change and Configuration Management migration project. Closed the yearly support agreement and transformed it into a call support agreement, saving $$$ for the project. * Development: Java/J2EE, C# and Microsoft Technologies: .NET Specialties: - - Project Management, PMP, ITIL - Configuration Management, Change Management, SCM/CMS - Build/Release Engineering Management, - Quality Assurance/Testing, SQA, - DevOps - Development and - Scripting.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7280,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"20E968222165B1D229717C9FAE3CE65A\",\n            \"canonical\": \"https://www.linkedin.com/in/tim-prechesky-6bb14b12\",\n            \"fullname\": \"Tim Prechesky\",\n            \"headline\": \"Electronics Engineering Technician at Continental Automotive Systems\",\n            \"location\": \"Novi, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/tim-prechesky-6bb14b12\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2010-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Electronics Engineering Technician\",\n                    \"description\": \"                                                                                           –                                                                                                                                                                                                                                                                                                                                                                                                         …          \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2010-03-01\",\n                    \"leaveDate\": \"2010-05-01\",\n                    \"company\": \"TRW\",\n                    \"position\": \"Warranty Technician/Quality Analyst\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            …          \"\n                },\n                {\n                    \"hiredDate\": \"2009-10-01\",\n                    \"leaveDate\": \"2010-01-01\",\n                    \"company\": \"Molex Incorporated\",\n                    \"position\": \"Quality Lab Technician\",\n                    \"description\": \"                                                    –                                                                                                                                                                                                                                                                                                                                                                                                                                           …          \"\n                },\n                {\n                    \"hiredDate\": \"2009-09-01\",\n                    \"leaveDate\": \"2009-10-01\",\n                    \"company\": \"KOSTAL\",\n                    \"position\": \"Electronics Test Technician\",\n                    \"description\": \"                                                                  –                                                                                                                                                                                                                                                                                                                                                                                                                              …          \"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2008-01-01\",\n                    \"company\": \"Visteon Corporation\",\n                    \"position\": \"Sr. Test Technician\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     …          \"\n                },\n                {\n                    \"hiredDate\": \"1978-01-01\",\n                    \"leaveDate\": \"2000-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Test Technician\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         …          \"\n                },\n                {\n                    \"hiredDate\": \"1973-01-01\",\n                    \"leaveDate\": \"1976-01-01\",\n                    \"company\": \"United States Air Force\",\n                    \"position\": \"Radio Communications Equipment Repairman\",\n                    \"description\": \"                                                                                                                     \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Henry Ford College\",\n                    \"subTitle\": \"AssociateElectrical / Electronics Technology\"\n                },\n                {\n                    \"title\": \"National Radio Institute (NRI)\",\n                    \"subTitle\": \"Electronics CertificateElectronics Technology specializing in audio/video servicing\"\n                },\n                {\n                    \"title\": \"United States Air Force, Keesler AFB Technical School\",\n                    \"subTitle\": \"Electronics CertificateElectronics Technology, Ground to Air Radio Communications\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686264720751,\n            \"military\": true,\n            \"clearance\": true,\n            \"about\": \"An electronics/automotive lab test technician with extensive training and technical background experience in the military, and electronics product testing and supervisory experience in a test lab environment at a major automotive manufacturer and automotive component supplier as a Sr. Product Test Technician. Supervised and scheduled validation testing and assigned workload within the test laboratory utilizing the LIMS test request database, and applied the appropriate versions of specification standards, protocols, and test methodologies, providing accurate test results to meet customer needs and timelines. Developed, updated and ensured compliance to corporate/local ISO 9000/TS 16949 and DV test lab procedures, documentation, and workplace safety practices. Environmental - Salt, Dust, Temperature, Humidity, Thermal Shock, water/moisture, vibration, electrical stress, EMI/EMC testing of electronic products. Career product testing including various small motors, wiper motors, blower motors, cooling fan motors, PCM, driver information and instrument cluster, speedometer, audio, radio, amplifier, speaker, antenna, telematics, navigation infotainment systems, vehicle controls, speed control, ride control, traction control, anti-lock brakes (ABS), power seats, air bag, passenger restraint, body, convenience, safety & security, anti-theft, keyless entry, chassis and climate control electronics and subsystems. Specialties: Utilize various soldering, power and hand tools to build mechanical/electrical assemblies and connector/wire harnesses. Ability to interpret electrical schematics, mechanical drawings, blueprints, and diagrams. Compile and analyze engineering test data for preparation of technical reports. Computer skills including DOS, Windows, Word, Excel, PowerPoint, Access, and Outlook. Troubleshooting, repair, testing and calibration of electronic circuits. Programming of environmental test chambers.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.48059,\n                    \"lon\": -83.4754913\n                },\n                \"formattedAddress\": \"Novi, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 17021,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"5C0DD3933FDEE6DD5A4013E36C0BB6A4\",\n            \"canonical\": \"https://www.linkedin.com/in/dawn-chalmers-4582755\",\n            \"fullname\": \"Dawn Chalmers\",\n            \"headline\": \"Executive Administrative Assistant at Continental\",\n            \"location\": \"Clarkston, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQHhdKotAUCuVg/profile-displayphoto-shrink_800_800/0/1517734653184?e=2147483647&v=beta&t=OzCwmx0isrntVH3gMV2YOgjAIx5tZnUBgVFujQe372k\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/dawn-chalmers-4582755\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2019-02-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Executive Administrative Assistant\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2012-06-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Administrative Assistant\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             …          \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2010-12-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"NSK Warner USA\",\n                    \"position\": \"Executive Administrative Assistant to President.\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     …          \"\n                },\n                {\n                    \"hiredDate\": \"2009-04-01\",\n                    \"leaveDate\": \"2010-06-01\",\n                    \"company\": \"Genesys Health System\",\n                    \"position\": \"Director Fund Raising - Volunteer Board of Directors\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                      \"\n                },\n                {\n                    \"hiredDate\": \"1996-10-01\",\n                    \"leaveDate\": \"2008-12-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Executive Administrative Assistant\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     …          \"\n                },\n                {\n                    \"hiredDate\": \"1998-03-01\",\n                    \"leaveDate\": \"2008-11-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Executive Administrative Assistant\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     …          \"\n                },\n                {\n                    \"hiredDate\": \"1996-09-01\",\n                    \"leaveDate\": \"2008-12-01\",\n                    \"company\": \"Chrysler, LLC\",\n                    \"position\": \"Executive Administrative Assistant\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     …          \"\n                },\n                {\n                    \"hiredDate\": \"1989-08-01\",\n                    \"leaveDate\": \"1992-05-01\",\n                    \"company\": \"Honeywell International Inc.\",\n                    \"position\": \"Administrative Assistant\",\n                    \"description\": \"                                                                                                                                                                                                             \"\n                },\n                {\n                    \"hiredDate\": \"1980-06-01\",\n                    \"leaveDate\": \"1983-06-01\",\n                    \"company\": \"Harbor Springs Motor Inn\",\n                    \"position\": \"Manager\",\n                    \"description\": \"                                                                                                                                                                                                                                             \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [],\n            \"lastScraperUpdateTime\": 1686258135792,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Continental Automotive Support 3 Business Units ( NAFTA, Body & Security & Aftermarket) coordinate domestic and international travel arrangements, coordinate executive presentations and meetings, event planning and off site meetings - see summary below NSK - WARNER USA, INC. - Executive Administrative Assistant. Responsible for over $2M in invoicing and payments per month. A/R and A/P, coordinate presentations for International Board Meetings. Maintain calendar and manage Domestic and International travel for President of NSK Warner. Proficient in Excel Spreadsheets and use of formulas. Maintain and create multiple spreadsheets to track invoicing, payments, shipments and forecasts. Create Purchase Orders, place customer orders and invoice accounts with extreme accuracy. Build and Maintain relationships with Procurement and Supply in automotive industry. International correspondence regarding parts, inventory, delivery and invoicing. CHRYSLER - Over 13 years Executive Assistant for Sales and Marketing, Dealer and Customer Relations. Seven years of experience working in advertising with Chrysler Directors and Sr. Managers in Communications and Media Planning in the Detroit area. These include BBDO, PHD, Organic and Global Hue. Accounts included local, regional and national coverage in all media including newspaper, TV, radio and national publications. Responsibilities have included maintaining multiple Directors and Sr. Managers schedule and calendar, travel arrangements, expense reports, meetings and conference calls including conference calls for Chrysler CEO and Executive Vice President with 3300 lines including all Chrysler, Dodge and Jeep Dealers. Host and Operate Executive Office for Dealer Announcement Show 2007 (Las Vegas) assisting Top Executives and President of Chrysler. Facilitate meetings and hotel arrangements for 100+ people including locations, transfers, menus and executive office for offsite DAA and President meetings. Specialties: Excellent Interpersonal & Organization Communication skills. I enjoy working with people. I have built strong relationships with Dealers and Major Advertising agencies in the Detroit area as well as Directors and Managers at Chrysler.\",\n            \"skills\": [\n                \"Microsoft Office\",\n                \"Lotus Notes\",\n                \"Microsoft Excel\",\n                \"PowerPoint\",\n                \"Invoicing\",\n                \"Event Planning\",\n                \"Event Management\",\n                \"Customer Service\",\n                \"Hospitality\",\n                \"Renovation\",\n                \"Bookkeeping\",\n                \"Business\",\n                \"Food\",\n                \"Office Management\",\n                \"Problem Solving\",\n                \"Microsoft Word\",\n                \"Marketing\",\n                \"Automotive\",\n                \"Forecasting\",\n                \"Cross-functional Team Leadership\",\n                \"Customer Satisfaction\",\n                \"Advertising\",\n                \"Team Building\",\n                \"Analysis\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.7351196,\n                    \"lon\": -83.4192941\n                },\n                \"formattedAddress\": \"Village of Clarkston, MI 48346, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11571,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"9D8435C490C34601574CD09333DCF086\",\n            \"canonical\": \"https://www.linkedin.com/in/michael-d-onofrio-27908132\",\n            \"fullname\": \"Michael DOnofrio\",\n            \"headline\": \"Senior Electronic Technician/Impact Barrier Liason at Continental Automotive Systems\",\n            \"location\": \"Allen Park, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQFAOpjfcMaihA/profile-displayphoto-shrink_800_800/0/1516494947556?e=2147483647&v=beta&t=-zntoiU5pK_JO6-OATkYlxPCBMZ9Zr7KG-ErqW6f3j8\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/michael-d-onofrio-27908132\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"1999-11-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Electronic Technician\",\n                    \"description\": \"                                                                                                                      \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"1996-10-01\",\n                    \"leaveDate\": \"1999-11-01\",\n                    \"company\": \"Aastrom Biosciences\",\n                    \"position\": \"Electronic Technician\",\n                    \"description\": \"                                                      \"\n                },\n                {\n                    \"hiredDate\": \"1992-09-01\",\n                    \"leaveDate\": \"1996-10-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Electronic Technician\",\n                    \"description\": \"                                                   \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"NEC Livonia Campus\",\n                    \"subTitle\": \"Associate's degreeElectronic Engineering Technology\"\n                },\n                {\n                    \"title\": \"Allen Park High School\",\n                    \"subTitle\": \"DiplomaArchitecture/Drafting\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686252309387,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Automotive Electronics\",\n                \"Electronics\",\n                \"Test Equipment\",\n                \"Calibration\",\n                \"Automotive\",\n                \"Soldering\",\n                \"Components\",\n                \"SMT\",\n                \"Parts\",\n                \"Lean Manufacturing\",\n                \"Manufacturing\",\n                \"Testing\",\n                \"Continuous Improvement\",\n                \"Troubleshooting\",\n                \"Oscilloscope\",\n                \"Multimeter\",\n                \"Hand Tools\",\n                \"Lathe\",\n                \"Purchase Management\",\n                \"Management\",\n                \"Field Service\",\n                \"Biotechnology Industry\",\n                \"barrier crash testing\",\n                \"Customer Liason\",\n                \"airbags\",\n                \"passive safety applications\",\n                \"barrier impact test set-up\",\n                \"test set-up sign off\",\n                \"Self-driven\",\n                \"Flexible approach to work\",\n                \"Team-oriented\",\n                \"SMD\",\n                \"Electro-mechanical\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.2575385,\n                    \"lon\": -83.2110375\n                },\n                \"formattedAddress\": \"Allen Park, MI 48101, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11237,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"2F871CD7E904AFCC1266C851B32C488C\",\n            \"canonical\": \"https://www.linkedin.com/in/thomas-t-j-malbouef-a56b4a\",\n            \"fullname\": \"Thomas (T.J.) Malbouef\",\n            \"headline\": \"Technical Project Leader, ADAS, Continental Automotive Systems\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4D03AQG6EHJxCcn3Ug/profile-displayphoto-shrink_800_800/0/1516273303998?e=2147483647&v=beta&t=lv-Rg87MSR7e0TxKfb-P0BNDYDBBhwG3aDFW4HAD6i0\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/thomas-t-j-malbouef-a56b4a\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2016-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Technical Project Leader, Advanced Driver Assistance Systems (ADAS)\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Systems Engineer, Passive Safety and Sensorics\",\n                    \"description\": \"                                                                                                                                                                    \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Project Manager, Passive Safety and Advanced Driver Assistance Systems (PSAD)\",\n                    \"description\": \"                                                                                                        \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Project Manager, Passive Safety and Advanced Driver Assistance Systems (PSAD)\",\n                    \"description\": \"                                                                                                                                                                                                           \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2000-05-01\",\n                    \"leaveDate\": \"2006-11-01\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Algorithm engineer, Automotive Crash Sensing System\",\n                    \"description\": \"                                                                                                                                                                              \"\n                },\n                {\n                    \"hiredDate\": \"1997-06-01\",\n                    \"leaveDate\": \"2000-05-01\",\n                    \"company\": \"Ford Motor Company/Visteon\",\n                    \"position\": \"Algorithm Engineer, Crash Sensors\",\n                    \"description\": \"                                                                                                                                                       \"\n                },\n                {\n                    \"hiredDate\": \"1995-06-01\",\n                    \"leaveDate\": \"1997-06-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Product Design Engineer, Mechanical\",\n                    \"description\": \"                                                                         \"\n                },\n                {\n                    \"hiredDate\": \"1994-01-01\",\n                    \"leaveDate\": \"1995-06-01\",\n                    \"company\": \"Ford Motor Company, Dearborn Glass Plant\",\n                    \"position\": \"Manufacturing Process Engineer, Windshield Fabrication\",\n                    \"description\": \"                                                                                                                                                                        \"\n                },\n                {\n                    \"hiredDate\": \"1992-11-01\",\n                    \"leaveDate\": \"1994-01-01\",\n                    \"company\": \"Ford Motor Company, Supplier Quality\",\n                    \"position\": \"Supplier Technical Assistance Engineer\",\n                    \"description\": \"                                                                                    \"\n                },\n                {\n                    \"hiredDate\": \"1991-01-01\",\n                    \"leaveDate\": \"1992-11-01\",\n                    \"company\": \"Ford Motor Company, Tulsa Glass Plant\",\n                    \"position\": \"Manufacturing Process Engineer\",\n                    \"description\": \"                                                                                                                                                                                              \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"MSMEMechanical Engineering, Biomedical\"\n                },\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"BSMEMechanical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686245628540,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Automotive\",\n                \"Electronics\",\n                \"Mechanical Engineering\",\n                \"Product Design\",\n                \"Powertrain\",\n                \"Vehicles\",\n                \"Sensors\",\n                \"Leadership\",\n                \"Requirements Analysis\",\n                \"Calibration\",\n                \"FMEA\",\n                \"Engineering Management\",\n                \"APQP\",\n                \"PPAP\",\n                \"Six Sigma\",\n                \"Lean Manufacturing\",\n                \"Continuous Improvement\",\n                \"Manufacturing\",\n                \"Engineering\",\n                \"Root Cause Analysis\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11846,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"1158FBD18533A2329EA0B2E402D6C322\",\n            \"canonical\": \"https://www.linkedin.com/in/orthelladams\",\n            \"fullname\": \"Orthell Adams\",\n            \"headline\": \"Senior Mechanical Engineer at Continental Automotive Systems\",\n            \"location\": \"Auburn Hills, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQHGDCUpKgT6rA/profile-displayphoto-shrink_800_800/0/1516334853243?e=2147483647&v=beta&t=bHbqrdBlgNl9DhBCZ0i8nwl2R_Drm_T1MMaZwsBY1ME\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/orthelladams\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2011-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Mechanical Engineer\",\n                    \"description\": \"                                                                                                                                                 ’                                                                                                                                                                                                                                                                                                                                                 …          \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2009-12-01\",\n                    \"leaveDate\": \"2010-12-01\",\n                    \"company\": \"GE Consumer & Industrial\",\n                    \"position\": \"Lead Systems Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                               \"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2009-02-01\",\n                    \"company\": \"Visteon Corporation\",\n                    \"position\": \"Lead Senior Applications / Mechanical Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  …          \"\n                },\n                {\n                    \"hiredDate\": \"1998-07-01\",\n                    \"leaveDate\": \"1999-12-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Applications / Mechanical Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    …          \"\n                },\n                {\n                    \"hiredDate\": \"1996-07-01\",\n                    \"leaveDate\": \"1998-07-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Product Design / Systems Development Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                …          \"\n                },\n                {\n                    \"hiredDate\": \"1995-02-01\",\n                    \"leaveDate\": \"1996-06-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Manufacturing Process Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           …          \"\n                },\n                {\n                    \"hiredDate\": \"1994-01-01\",\n                    \"leaveDate\": \"1995-02-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Production Supervisor / Shift Leader\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                      \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Miami University\",\n                    \"subTitle\": \"Bachelor of ScienceManufacturing Engineering with a concentration in Mechanical Engineering\"\n                },\n                {\n                    \"title\": \"Macomber-Whitney High School\",\n                    \"subTitle\": \"High School DiplomaGeneral Studies\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686242070453,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Motivated Mechanical Engineer with extensive experience in complex electro-mechanical control module design and implementation. Over 20 years of experience working for a major automotive component supplier and with top automotive manufacturing companies. Proven strengths are project management, mechanical design, design implementation, product testing and analysis, and excellent organizational and communication skills. Specialties: • Problem Analysis • Project Management • Design Development • DFMEA • Testing Verification • Production Support • GD&T • Tooling Design • Injection Molding • Class A Surface Development\",\n            \"skills\": [\n                \"Automotive\",\n                \"GD&T\",\n                \"Manufacturing\",\n                \"Manufacturing Engineering\",\n                \"Engineering Management\",\n                \"Lean Manufacturing\",\n                \"FMEA\",\n                \"Six Sigma\",\n                \"Continuous Improvement\",\n                \"Engineering\",\n                \"Product Design\",\n                \"PPAP\",\n                \"DFMEA\",\n                \"Product Development\",\n                \"Program Management\",\n                \"SPC\",\n                \"Injection Molding\",\n                \"Design for Manufacturing\",\n                \"Root Cause Analysis\",\n                \"Teamcenter\",\n                \"Electronics\",\n                \"Mechanical Engineering\",\n                \"Process Improvement\",\n                \"APQP\",\n                \"Geometric Dimensioning & Tolerancing\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6875323,\n                    \"lon\": -83.2341028\n                },\n                \"formattedAddress\": \"Auburn Hills, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 10355,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"B1BD2F0733470410098558767EBE0063\",\n            \"canonical\": \"https://www.linkedin.com/in/denny-lombardo-44562010\",\n            \"fullname\": \"Denny Lombardo\",\n            \"headline\": \"Automotive Professional\",\n            \"location\": \"Clarkston, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQHtUEBV56uR7g/profile-displayphoto-shrink_800_800/0/1517727129073?e=2147483647&v=beta&t=pu1KqCLrZObYxMckhGbnFPWvJkTCGPmkDEOWVM2cafE\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/denny-lombardo-44562010\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2010-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Technical Project Lead Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"1973-07-01\",\n                    \"leaveDate\": \"2008-11-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Manager\",\n                    \"description\": \"                                                           –                                                                                                                                                                                                        •                             •                                                       •                               •                        •                     •                             …          \"\n                },\n                {\n                    \"hiredDate\": \"1973-01-01\",\n                    \"leaveDate\": \"2008-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Manager\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1973-01-01\",\n                    \"leaveDate\": \"2008-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Retired - Engineering Group Manager - Electrical\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Youngstown State University\",\n                    \"subTitle\": \"MsEEElectrical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686239782229,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am currently employed as a Technical Project Lead for Continental Automotive Systems where I am responsible for the GM Global A BCM. In late 2008 I accepted an early retirement package from General Motors. I considered this an opportunity to make a career change and not an actually retirement. I was seeking a position that would benefit from my years of experience. My career with General Motors began in advanced electronic design and progressed to numerous leadership positions held throughout the majority of my career. •I have had responsibility for a wide variety of electrical and electronic products ranging from wiring and an array of switches to instrument panel clusters, numerous body computers, brake, traction and stability controllers, adaptive lighting controllers and RF transmitters and receivers. •During my career I have demonstrated technical and leadership skills and the ability to use good judgment. •I have demonstrated a high degree of integrity and work ethics. •I have had the opportunity of creating numerous effective teams. •I have participated in and lead Global activities and teams. •Provided training to GM employees located in Global GM sites. Additional details about my skills and knowledge are available in my resume.\",\n            \"skills\": [\n                \"Vehicles\",\n                \"Program Management\",\n                \"Electronics\",\n                \"Continuous Improvement\",\n                \"Automotive\",\n                \"Automotive Engineering\",\n                \"DFMEA\",\n                \"FMEA\",\n                \"Product Development\",\n                \"Systems Engineering\",\n                \"Powertrain\",\n                \"Engineering\",\n                \"Embedded Systems\",\n                \"GD&T\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.7351196,\n                    \"lon\": -83.4192941\n                },\n                \"formattedAddress\": \"Village of Clarkston, MI 48346, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 17874,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"AC2875E840FA176AF7A583D741E6F921\",\n            \"canonical\": \"https://www.linkedin.com/in/ken-redcap-70069710\",\n            \"fullname\": \"Ken Redcap\",\n            \"headline\": \"Senior Industrial Engineer at Continental Automotive Systems\",\n            \"location\": \"Rochester, Michigan\",\n            \"industry\": \"automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/ken-redcap-70069710\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"1998-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Industrial Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                  \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"1995-01-01\",\n                    \"leaveDate\": \"1998-01-01\",\n                    \"company\": \"EDS Group\",\n                    \"position\": \"Systems Engineer\",\n                    \"description\": \"                                                                                                 \"\n                },\n                {\n                    \"hiredDate\": \"1993-05-01\",\n                    \"leaveDate\": \"1995-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Systems Engineer\",\n                    \"description\": \"                        \"\n                },\n                {\n                    \"hiredDate\": \"1991-06-01\",\n                    \"leaveDate\": \"1993-05-01\",\n                    \"company\": \"AFC-Holcroft\",\n                    \"position\": \"Systems Engineer\",\n                    \"description\": \"                      \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Lawrence Technological University\",\n                    \"subTitle\": \"BSEE/BSChElectrical Engineering/Chemistry3.40 (out of 4.0)\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686231673684,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Experienced Senior Industrial Engineer with a demonstrated history of working in the automotive industry. Strong engineering professional skilled in C#, C, PHP, Visual Basic, Failure Mode and Effects Analysis (FMEA), Six Sigma, Advanced Product Quality Planning (APQP), and Serial Communications.\",\n            \"skills\": [\n                \"APQP\",\n                \"Automotive\",\n                \"Lean Manufacturing\",\n                \"PPAP\",\n                \"Continuous Improvement\",\n                \"Root Cause Analysis\",\n                \"Kaizen\",\n                \"DFMEA\",\n                \"FMEA\",\n                \"Web Applications\",\n                \"Serial Communications\",\n                \"JavaScript\",\n                \"C#\",\n                \"Visual Basic\",\n                \"SPC\",\n                \"Engineering Management\",\n                \"Engineering\",\n                \"Six Sigma\",\n                \"Process Improvement\",\n                \"Manufacturing\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.680588,\n                    \"lon\": -83.1338214\n                },\n                \"formattedAddress\": \"Rochester, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11695,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"5E5345D56B839811DAA6273F31D978D5\",\n            \"canonical\": \"https://www.linkedin.com/in/philboling\",\n            \"fullname\": \"Phil Boling\",\n            \"headline\": \"Sales Manager at Continental Automotive Systems\",\n            \"location\": \"Waterford, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/philboling\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2010-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Sales Manager - Commercial Vehicle\",\n                    \"description\": \"                                                                                                                                                                        \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"1997-09-01\",\n                    \"leaveDate\": \"2009-12-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Global Marketing Manager - Powertrain and Energy\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       …          \"\n                },\n                {\n                    \"hiredDate\": \"2002-11-01\",\n                    \"leaveDate\": \"2006-10-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Business Planner - Battery Business Unit and Sensors & Actuators BU\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \"\n                },\n                {\n                    \"hiredDate\": \"1996-06-01\",\n                    \"leaveDate\": \"1997-09-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Sales & Marketing Manager - South America\",\n                    \"description\": \"                                                                                                                                                                                                                      \"\n                },\n                {\n                    \"hiredDate\": \"1993-06-01\",\n                    \"leaveDate\": \"1996-06-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Account Manager - South America\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                      \"\n                },\n                {\n                    \"hiredDate\": \"1991-01-01\",\n                    \"leaveDate\": \"1993-06-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Divisional Business Planning Administrator\",\n                    \"description\": \"                                                                                                                                                                                                         \"\n                },\n                {\n                    \"hiredDate\": \"1988-01-01\",\n                    \"leaveDate\": \"1991-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Senior Industry Analyst\",\n                    \"description\": \"                                                                                                                                                                                                                  \"\n                },\n                {\n                    \"hiredDate\": \"1983-09-01\",\n                    \"leaveDate\": \"1988-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Sales Analyst\",\n                    \"description\": \"                                                                                                                                                                  \"\n                },\n                {\n                    \"hiredDate\": \"1981-10-01\",\n                    \"leaveDate\": \"1983-09-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Manufacturing - Programmer\",\n                    \"description\": \"                                                                                                                                                                          \"\n                },\n                {\n                    \"hiredDate\": \"1979-06-01\",\n                    \"leaveDate\": \"1981-10-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Human Resource Analyst\",\n                    \"description\": \"                                                                                                                                                                             \"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Portuguese\",\n                \"Japanese\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Purdue University\",\n                    \"subTitle\": \"BSData Processing\"\n                },\n                {\n                    \"title\": \"Purdue University Daniels School of Business\",\n                    \"subTitle\": \"BSIndustrial Management\"\n                },\n                {\n                    \"title\": \"Escola Graduada de São Paulo\",\n                    \"subTitle\": \"HS DiplomaCollege Prep\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686229013040,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Extensive experience as a Sales and Marketing Manager and Business Planner on the business to business side of the automotive, heavy duty, marine and small engine markets primarily with: energy, power-train and exhaust after-treatment products; bringing an international perspective and experience having led sales in new regions (South America): $200M and into new markets (e.g. small engine): $250M per year; bilingual in Portuguese. Specialties: Product Marketing, Product Value Analysis, Business Planning, Technology Planning, Sales Account Management, Sales Forecasting, Vehicle Emission Standards, Fluent in Brazil Portuguese\",\n            \"skills\": [\n                \"Sales Management\",\n                \"Marketing Strategy\",\n                \"Cross-functional Team Leadership\",\n                \"Forecasting\",\n                \"Business Planning\",\n                \"Technology Planning\",\n                \"Automotive\",\n                \"Product Marketing\",\n                \"Leadership\",\n                \"International Sales\",\n                \"International Business\",\n                \"Analysis\",\n                \"B2B\",\n                \"Business Development\",\n                \"Business Strategy\",\n                \"Competitive Analysis\",\n                \"Continuous Improvement\",\n                \"Customer Service\",\n                \"Marketing\",\n                \"Process Improvement\",\n                \"Management\",\n                \"Market Analysis\",\n                \"Project Planning\",\n                \"Sales\",\n                \"Product Lifecycle Management\",\n                \"Strategy\",\n                \"Value Stream Mapping\",\n                \"Vehicles\",\n                \"Product Development\",\n                \"Product Management\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6907443,\n                    \"lon\": -83.4066132\n                },\n                \"formattedAddress\": \"Waterford Twp, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 15835,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"E2AE56F20068A033BB0E4E55F8905AA9\",\n            \"canonical\": \"https://www.linkedin.com/in/davidmerrow\",\n            \"fullname\": \"David Merrow\",\n            \"headline\": \"On to new opportunities with ContiTech\",\n            \"location\": \"Rochester, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQGeyz_ugn2YVA/profile-displayphoto-shrink_800_800/0/1517718706136?e=2147483647&v=beta&t=dn8MnYVc6LDckKP91Bwple4gOZezMvJsanIMDQDJmLs\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/davidmerrow\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2015-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"ContiTech\",\n                    \"position\": \"Technical Project Lead\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2012-04-01\",\n                    \"leaveDate\": \"2015-08-01\",\n                    \"company\": \"TI Fluid Systems\",\n                    \"position\": \"Application Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2010-07-01\",\n                    \"leaveDate\": \"2012-05-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Release Engineer - AC Compressors\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2008-07-01\",\n                    \"leaveDate\": \"2009-02-01\",\n                    \"company\": \"Behr\",\n                    \"position\": \"Team Leader / Validation – Navistar, Freightliner, and PACCAR HVAC\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                          ’                                                                                 •                                                                                                              …          \"\n                },\n                {\n                    \"hiredDate\": \"2005-05-01\",\n                    \"leaveDate\": \"2008-06-01\",\n                    \"company\": \"Behr\",\n                    \"position\": \"Lead Validation Engineer – GM 9XX & Lambda Front & Rear HVAC\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                   •                                                                                                         …          \"\n                },\n                {\n                    \"hiredDate\": \"2004-02-01\",\n                    \"leaveDate\": \"2005-05-01\",\n                    \"company\": \"Behr\",\n                    \"position\": \"Build Coordinator – GM 9XX Front & Rear HVAC\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                               •                                                                          …          \"\n                },\n                {\n                    \"hiredDate\": \"2000-03-01\",\n                    \"leaveDate\": \"2004-01-01\",\n                    \"company\": \"Lear Corporation\",\n                    \"position\": \"Co-op Engineer\",\n                    \"description\": \"                                                                                                                                                                                     ’                                                                                                   •                                                                                                                                                                                                               …          \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Kettering University\",\n                    \"subTitle\": \"MSME\"\n                },\n                {\n                    \"title\": \"Kettering University\",\n                    \"subTitle\": \"BSMEEngineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686226335245,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"A product engineer with years of progressively increasing responsibility at an automotive OEM supplier and a total of 2 years of varied experience as an engineering co-op student. Highly effective in finishing the job at hand regardless of starting at the beginning, the middle, or the end of the project. Demonstrating an organized approach to validation and reducing the cost of the finished product. Skilled in: • Plan and manage product validation • Product development • Product implementation into production • FMEA development • Prototype tracking • Analyze and interpret testing data • Multicultural teamwork • SAP Key User\",\n            \"skills\": [\n                \"FMEA\",\n                \"Manufacturing\",\n                \"Automotive\",\n                \"PPAP\",\n                \"Engineering\",\n                \"Continuous Improvement\",\n                \"Lean Manufacturing\",\n                \"Product Development\",\n                \"Root Cause Analysis\",\n                \"APQP\",\n                \"Automotive Engineering\",\n                \"Product Design\",\n                \"Manufacturing Engineering\",\n                \"Injection Molding\",\n                \"GD\",\n                \"Testing\",\n                \"Six Sigma\",\n                \"Program Management\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.680588,\n                    \"lon\": -83.1338214\n                },\n                \"formattedAddress\": \"Rochester, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7923,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"DDC33136FE030AC04AE0420A37044C06\",\n            \"canonical\": \"https://www.linkedin.com/in/jamespiscopink\",\n            \"fullname\": \"James Piscopink\",\n            \"headline\": \"Senior Staff Engineer\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/jamespiscopink\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2012-09-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Staff Engineer\",\n                    \"description\": \"∙                                                            \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2011-06-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"ESG Automotive\",\n                    \"position\": \"Systems Engineer\",\n                    \"description\": \"∙                                                            ∙                                                                      ∙                                                                                           ∙                                             \"\n                },\n                {\n                    \"hiredDate\": \"2007-12-01\",\n                    \"leaveDate\": \"2008-11-01\",\n                    \"company\": \"Mercedes-Benz Group AG\",\n                    \"position\": \"Core Product Engineer\",\n                    \"description\": \"•                                                                                                                                                                                      •                                                                                                                                                                               •                                                                                                                                 …          \"\n                },\n                {\n                    \"hiredDate\": \"2006-08-01\",\n                    \"leaveDate\": \"2007-12-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Product Engineer - Instrument Cluster\",\n                    \"description\": \"•                                                                                                                                              •                                                                                                                                                                           •                                                                                                                                                                                …          \"\n                },\n                {\n                    \"hiredDate\": \"2004-06-01\",\n                    \"leaveDate\": \"2006-08-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Product Release Engineer - Steering Column Switches\",\n                    \"description\": \"•                                                                                                                                                                                                                 •                                                                                                                                                •                                                                                                                                     …          \"\n                },\n                {\n                    \"hiredDate\": \"1998-05-01\",\n                    \"leaveDate\": \"2004-06-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Product Release Engineer - Wiring Harness Assemblies\",\n                    \"description\": \"•                                                                                                 •                                                                                                                                                                             •                                                                                             •                                                              •                                                    …          \"\n                },\n                {\n                    \"hiredDate\": \"1997-06-01\",\n                    \"leaveDate\": \"1998-06-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Project Leader - Body Control Module\",\n                    \"description\": \"•                                                                                                                    •                                                          •                                                                                  \"\n                },\n                {\n                    \"hiredDate\": \"1996-06-01\",\n                    \"leaveDate\": \"1997-05-01\",\n                    \"company\": \"Chrysler Electronics - Huntsville, Alabama\",\n                    \"position\": \"Liaison Engineer\",\n                    \"description\": \"•                                                                                                                                                                                                                  \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"BSEEElectrical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686181248355,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Automotive Engineer with years of experience in electronic module development, E/E system development, and wiring harness design. My goal is to obtain an engineering position where I can maximize my design, project management, system development, quality assurance, program development, and manufacturing experience.\",\n            \"skills\": [\n                \"Automotive\",\n                \"CANoe\",\n                \"DFMEA\",\n                \"Electronics\",\n                \"Engineering\",\n                \"Manufacturing\",\n                \"Process Improvement\",\n                \"Project Management\",\n                \"Quality Assurance\",\n                \"Vehicles\",\n                \"Automotive Engineering\",\n                \"Components\",\n                \"Testing\",\n                \"PPAP\",\n                \"Engineering Management\",\n                \"FMEA\",\n                \"Failure Mode and Effects Analysis (FMEA)\",\n                \"Continuous Improvement\",\n                \"Production Part Approval Process (PPAP)\",\n                \"Root Cause Analysis\",\n                \"Design Failure Mode and Effect Analysis (DFMEA)\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8863,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"D52A0B6FC3894D94B87C99C64CE9C651\",\n            \"canonical\": \"https://www.linkedin.com/in/harold-rosenbaum-865a8016\",\n            \"fullname\": \"Harold Rosenbaum\",\n            \"headline\": \"Currently seeking employment in Electrical Engineering\",\n            \"location\": \"Oak Park, Michigan\",\n            \"industry\": \"electrical/electronic manufacturing\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/harold-rosenbaum-865a8016\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Stellantis\",\n                    \"position\": \"Wiring Harness Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2021-06-01\",\n                    \"leaveDate\": \"2022-03-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Power & Signal Distribution System Design/Release Engineer\",\n                    \"description\": \"                                                                                                                                  \"\n                },\n                {\n                    \"hiredDate\": \"2018-09-01\",\n                    \"leaveDate\": \"2019-09-01\",\n                    \"company\": \"Furukawa Group\",\n                    \"position\": \"Product Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             …          \"\n                },\n                {\n                    \"hiredDate\": \"2017-10-01\",\n                    \"leaveDate\": \"2018-03-01\",\n                    \"company\": \"RGBSI\",\n                    \"position\": \"Ford Resident Engineer\",\n                    \"description\": \"                                      ’                                                                  \"\n                },\n                {\n                    \"hiredDate\": \"2015-01-01\",\n                    \"leaveDate\": \"2017-02-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Product Engineer Electrical / Electronic\",\n                    \"description\": \"                                                                                                                                                             \"\n                },\n                {\n                    \"hiredDate\": \"2012-09-01\",\n                    \"leaveDate\": \"2014-12-01\",\n                    \"company\": \"Asia Automotive\",\n                    \"position\": \"Wire Harness Engineer\",\n                    \"description\": \"                                                                                                                                                                     \"\n                },\n                {\n                    \"hiredDate\": \"2011-01-01\",\n                    \"leaveDate\": \"2011-07-01\",\n                    \"company\": \"Navistar Inc\",\n                    \"position\": \"Electrical Engineer\",\n                    \"description\": \"                                                                                   \"\n                },\n                {\n                    \"hiredDate\": \"2008-04-01\",\n                    \"leaveDate\": \"2010-12-01\",\n                    \"company\": \"SPX Corporation\",\n                    \"position\": \"Technical Author\",\n                    \"description\": \"                                                                                       \"\n                },\n                {\n                    \"hiredDate\": \"2005-01-01\",\n                    \"leaveDate\": \"2005-03-01\",\n                    \"company\": \"Champion Bus\",\n                    \"position\": \"Electrical Engineer\",\n                    \"description\": \"                                                                                                                                                                                     \"\n                },\n                {\n                    \"hiredDate\": \"2002-12-01\",\n                    \"leaveDate\": \"2004-12-01\",\n                    \"company\": \"Kelly Services, Inc.\",\n                    \"position\": \"Quality Engineering Technician\",\n                    \"description\": \"                                                                                                                                                                                                               \"\n                },\n                {\n                    \"hiredDate\": \"1997-11-01\",\n                    \"leaveDate\": \"2001-12-01\",\n                    \"company\": \"Lear Corporation (formerly UT Automotive)\",\n                    \"position\": \"Project Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        …          \"\n                },\n                {\n                    \"hiredDate\": \"1993-02-01\",\n                    \"leaveDate\": \"1997-11-01\",\n                    \"company\": \"Thomas & Betts Automotive (formerly Augat Automotive)\",\n                    \"position\": \"Project Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                       …          \"\n                },\n                {\n                    \"hiredDate\": \"1987-06-01\",\n                    \"leaveDate\": \"1992-01-01\",\n                    \"company\": \"Hughes Electronic Products\",\n                    \"position\": \"Screen Printer\",\n                    \"description\": \"                                                                                                                                                                                                                                                          \"\n                },\n                {\n                    \"hiredDate\": \"1982-05-01\",\n                    \"leaveDate\": \"1986-09-01\",\n                    \"company\": \"General Dynamics Corporation\",\n                    \"position\": \"Q. C. Inspector/ Troubleshooter\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             …          \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Lawrence Technological University\",\n                    \"subTitle\": \"Bachelor of Science DegreeElectrical Engineering\"\n                },\n                {\n                    \"title\": \"Baker College of Flint\",\n                    \"subTitle\": \"Bachelor of ScienceMechanical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686133104538,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"More than 20 years of experience as an electrical engineer. I have also earned a bachelors degree in Mechanical Engineering; graduation date - June 2010. Specialties: * Analytical and troubleshooting skills * Self-starter; able to work effectively with minimal supervision * Able to work in a team environment\",\n            \"skills\": [\n                \"Electrical Engineering\",\n                \"Wiring\",\n                \"Testing\",\n                \"Engineering\",\n                \"Electronics\",\n                \"FMEA\",\n                \"Automotive\",\n                \"CAD\",\n                \"Root Cause Analysis\",\n                \"AutoCAD\",\n                \"DFMEA\",\n                \"Mechanical Engineering\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4594803,\n                    \"lon\": -83.18270509999999\n                },\n                \"formattedAddress\": \"Oak Park, MI 48237, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11050,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"F434939899C130CFAC9C2E9245CA863F\",\n            \"canonical\": \"https://www.linkedin.com/in/chirapatsakul-pat-303a9910\",\n            \"fullname\": \"Chirapatsakul Pat\",\n            \"headline\": \"Program Manager at FCA Fiat Chrysler Automobiles\",\n            \"location\": \"Novi, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQFqMgW3x6zqdQ/profile-displayphoto-shrink_800_800/0/1589990455492?e=2147483647&v=beta&t=jJNe1EYc8epNhH2b2khFLVUsVwsiuHv_LHQ77abO1qw\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/chirapatsakul-pat-303a9910\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2020-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Program Manager\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"System Engineer - Exterior Lights\",\n                    \"description\": \"•                                                                                              •                                                                                          •                                                                                                     •                                                                                                                                                         •                                          …          \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Engineering Supervisor\",\n                    \"description\": \"•                                                                                                                                                                                                                    •                                                                                                                                                                          •                                                                                                           …          \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Program Manager\",\n                    \"description\": \"•                                                                                                                                                                                                                                                  •                                                                                                          •                                                                                                                                          …          \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Engineering Supervisor - Electomechanical\",\n                    \"description\": \"•                                                                                                            •                                                                                                                                                                  •                                                                              •                                                                                                                                      …          \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Safety Engineer - Side Impact Crash Test\",\n                    \"description\": \"•                                                                                                                                                                                                •                                                                                 •                                                                                                       •                                                                                                       …          \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Engineering Supervisor\",\n                    \"description\": \"•                                                                                                                                                                                                                                                            •                                                                                     •                                                                                                                                ’                       …          \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2004-08-01\",\n                    \"leaveDate\": \"2005-12-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Validation Engineer - Electrical System\",\n                    \"description\": \"•                                                                                                                                        •                                                                                                                                                                                                      •                                                                                                                                             …          \"\n                },\n                {\n                    \"hiredDate\": \"2003-07-01\",\n                    \"leaveDate\": \"2004-07-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Product Development Engineer - Switches\",\n                    \"description\": \"•                                                                                                                                                                                   •                                                                                                                                                                                                                       •                                                                                            •…          \"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2003-08-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Resident Engineer - Electrical / HVAC / Instrument Panel\",\n                    \"description\": \"•                                                                                                                                                         •                                                                                           •                                                                                                                                                                            •                                                                   …          \"\n                },\n                {\n                    \"hiredDate\": \"1998-01-01\",\n                    \"leaveDate\": \"1999-12-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Quality Engineer - Electrical\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Fontbonne University\",\n                    \"subTitle\": \"Master of Business Administration - MBAFinance, General\"\n                },\n                {\n                    \"title\": \"University of Missouri-Columbia\",\n                    \"subTitle\": \"Master of Engineering - MEngIndustrial Engineering\"\n                },\n                {\n                    \"title\": \"University of Missouri-Columbia\",\n                    \"subTitle\": \"Bachelor's degreeElectrical and Electronics Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686130154127,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"A goal-oriented, energetic engineer with Program Management, Electrical Validation, product releasing, as well as supervisory experience, who works well as a team and as an individual. Fluent in Thai and Chinese Mandarin\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.48059,\n                    \"lon\": -83.4754913\n                },\n                \"formattedAddress\": \"Novi, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 9164,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"47C0E2C39968BFC275AD534B69F4BCAF\",\n            \"canonical\": \"https://www.linkedin.com/in/kathryn-blackwell-6845482\",\n            \"fullname\": \"Kathryn Blackwell\",\n            \"headline\": \"Vice President, Communications & Marketing, Continental Automotive (retired, but open to opportunities!)\",\n            \"location\": \"Northville, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/kathryn-blackwell-6845482\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2008-03-01\",\n                    \"leaveDate\": \"2023-03-01\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Vice President -- Communications & Marketing, NAFTA Region\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2001-07-01\",\n                    \"leaveDate\": \"2008-03-01\",\n                    \"company\": \"Union Pacific Corporation\",\n                    \"position\": \"Assistant Vice President, Corporate Communications\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2000-02-01\",\n                    \"leaveDate\": \"2001-03-01\",\n                    \"company\": \"Mercedes-Benz Group AG\",\n                    \"position\": \"Senior Manager, International Marketing, Jeep Division\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2001-01-01\",\n                    \"company\": \"Mercedes-Benz Group AG\",\n                    \"position\": \"Senior Manager, Jeep Brand Marketing & Communications\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1989-01-01\",\n                    \"leaveDate\": \"1998-08-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Director, Public Affairs\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"Bachelor of ArtsDual Degree -- English and Communications\"\n                },\n                {\n                    \"title\": \"Northwestern University\",\n                    \"subTitle\": \"MSIntegrated Marketing Communications\"\n                },\n                {\n                    \"title\": \"Duke University - The Fuqua School of Business\",\n                    \"subTitle\": \"Executive Marketing Program\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686127581865,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Public Relations\",\n                \"Media Relations\",\n                \"Automotive\",\n                \"Internal Communications\",\n                \"Corporate Communications\",\n                \"Crisis Communications\",\n                \"Continuous Improvement\",\n                \"Marketing Communications\",\n                \"Strategic Planning\",\n                \"Vehicles\",\n                \"Business Strategy\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4311464,\n                    \"lon\": -83.4832692\n                },\n                \"formattedAddress\": \"Northville, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 12202,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"GE0EMX4BBVw90JBmzFOZ\",\n            \"canonical\": \"https://www.linkedin.com/in/akshita-verma\",\n            \"fullname\": \"Akshita V.\",\n            \"headline\": \"2nd Year J.D. Candidate at Wayne Law School\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/D5603AQFqD5vSdiiX7Q/profile-displayphoto-shrink_800_800/0/1669001640064?e=2147483647&v=beta&t=kNc2Hhl1QIU8a4UrywJmwyTcELuEcXVh28TZ93cRQp8\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/akshita-verma\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Wayne State University Law School\",\n                    \"position\": \"Research Assistant\",\n                    \"description\": \"                                                                                           \"\n                },\n                {\n                    \"hiredDate\": \"2023-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Advancement Project\",\n                    \"position\": \"Legal Extern\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2022-09-01\",\n                    \"leaveDate\": \"2022-12-01\",\n                    \"company\": \"Detroit Justice Center\",\n                    \"position\": \"Legal Extern\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2022-06-01\",\n                    \"leaveDate\": \"2022-08-01\",\n                    \"company\": \"Michigan Immigrant Rights Center\",\n                    \"position\": \"Summer Law Clerk\",\n                    \"description\": \"                                                                                                                                                                                                                                                                            \"\n                },\n                {\n                    \"hiredDate\": \"2020-08-01\",\n                    \"leaveDate\": \"2022-07-01\",\n                    \"company\": \"Done Waiting\",\n                    \"position\": \"Co-Founder and Vice Chair\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                              \"\n                },\n                {\n                    \"hiredDate\": \"2019-12-01\",\n                    \"leaveDate\": \"2020-08-01\",\n                    \"company\": \"Solomon Rajput For Congress\",\n                    \"position\": \"Campaign Manager\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               …\"\n                },\n                {\n                    \"hiredDate\": \"2019-09-01\",\n                    \"leaveDate\": \"2019-11-01\",\n                    \"company\": \"Solomon Rajput For Congress\",\n                    \"position\": \"Field Director\",\n                    \"description\": \"                                                                                 \"\n                },\n                {\n                    \"hiredDate\": \"2019-02-01\",\n                    \"leaveDate\": \"2019-11-01\",\n                    \"company\": \"Ellis Porter - The Immigration Attorneys\",\n                    \"position\": \"Legal Writer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                     \"\n                },\n                {\n                    \"hiredDate\": \"2017-09-01\",\n                    \"leaveDate\": \"2018-03-01\",\n                    \"company\": \"University of Michigan\",\n                    \"position\": \"Research Lab Assistant\",\n                    \"description\": \"                                                                                                                                                       \"\n                },\n                {\n                    \"hiredDate\": \"2017-02-01\",\n                    \"leaveDate\": \"2018-01-01\",\n                    \"company\": \"Saint Joseph Mercy Health System\",\n                    \"position\": \"Scribe\",\n                    \"description\": \"                                                                                                                                                                                                                                           \"\n                },\n                {\n                    \"hiredDate\": \"2016-06-01\",\n                    \"leaveDate\": \"2016-08-01\",\n                    \"company\": \"Meridian Health Plan of Michigan, Inc.\",\n                    \"position\": \"Communications Intern\",\n                    \"description\": \"                                                                                                                                                                   ’                                                                                                                                        \"\n                },\n                {\n                    \"hiredDate\": \"2016-01-01\",\n                    \"leaveDate\": \"2016-05-01\",\n                    \"company\": \"The State News\",\n                    \"position\": \"Paid Intern\",\n                    \"description\": \"                                                                                                                                                   \"\n                },\n                {\n                    \"hiredDate\": \"2015-05-01\",\n                    \"leaveDate\": \"2015-08-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Medical Intern\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                               \"\n                },\n                {\n                    \"hiredDate\": \"2015-05-01\",\n                    \"leaveDate\": \"2015-08-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Public Relations Intern\",\n                    \"description\": \"                                                                                                                                                            \"\n                }\n            ],\n            \"languagesList\": [\n                \"Hindi\",\n                \"Spanish\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University Law School\",\n                    \"subTitle\": \"Doctor of Law - JD\"\n                },\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Post-BaccalaureateMedical Neuroscience\"\n                },\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Bachelor of Arts - BAJournalism with a concentration in Environmental Journalism\"\n                },\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Bachelor of Science - BSNeuroscience, with a concentration in Behavioral and Systems Neuroscience\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1684434745107,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am a second-year law student at Wayne State Law and a member of the National Moot Court team. I am an experienced writer, having been a legal writer for a law firm and a policy writer for a congressional campaign. I am also an experienced leader and self-starter, having worked as a congressional campaign manager and creating and managing a Federal PAC. I believe my experience illustrates my work ethic and my drive to learn new information and use it to create structures and products that benefit the work of those around me.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 2204,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"9A0BFEBEBD95E0081AE2935E79C1924F\",\n            \"canonical\": \"https://www.linkedin.com/in/michael-weiler-46664025\",\n            \"fullname\": \"Michael Weiler\",\n            \"headline\": \"Senior Systems Architect\",\n            \"location\": \"Lake Orion, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/michael-weiler-46664025\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-11-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"CAE USA\",\n                    \"position\": \"Windchill Systems Administrator\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2006-12-01\",\n                    \"leaveDate\": \"2022-09-01\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Systems Architect\",\n                    \"description\": \"Development, support, and configuration for Windchill (PTC PDMLink) systems, servers, and publishing. Monitoring of systems and servers using Dynatrace, Icinga and custom scripts. Automated reports for performance tracking. ▪ Product Life-cycle Management, Product Data Management and Change Management for Engineering Release. Analysis of business and IT needs to adapt workflow, system and processes. ▪ Interface between Engineering community and software developers for Business Process…\"\n                },\n                {\n                    \"hiredDate\": \"2006-05-01\",\n                    \"leaveDate\": \"2006-12-01\",\n                    \"company\": \"Tata Sons Private Limited\",\n                    \"position\": \"PLM IT Services Manager\",\n                    \"description\": \"Managed System Engineers across North America\"\n                },\n                {\n                    \"hiredDate\": \"2004-03-01\",\n                    \"leaveDate\": \"2006-05-01\",\n                    \"company\": \"Siemens AG\",\n                    \"position\": \"IT Systems Architect\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1997-07-01\",\n                    \"leaveDate\": \"2004-03-01\",\n                    \"company\": \"INCAT\",\n                    \"position\": \"Systems Engineer\",\n                    \"description\": \"System Engineer; UNIX and Windows administrator, MCAD administrator. Installation, configuration and troubleshooting.\"\n                },\n                {\n                    \"hiredDate\": \"1996-07-01\",\n                    \"leaveDate\": \"1997-07-01\",\n                    \"company\": \"North American Lighting, Inc.\",\n                    \"position\": \"Unix Systems Administrator\",\n                    \"description\": \"▪ UNIX installation and system administration for AIX, HP-UX, IRIX. MCAD software installation and administration for CATIA V4, PDGS, and SDRC Ideas.\"\n                },\n                {\n                    \"hiredDate\": \"1995-12-01\",\n                    \"leaveDate\": \"1996-07-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Team Data Management\",\n                    \"description\": \"SDRC Ideas and Metaphase installation and administration on Solaris, HP-UX, and IRIX. TDM Template implementation of CPSC codes and data management practices.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"Bachelor of Science (B.S.)Aerospace, Aeronautical and Astronautical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1681092010797,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Unix\",\n                \"Systems Engineering\",\n                \"Troubleshooting\",\n                \"Product Lifecycle Management\",\n                \"Windows\",\n                \"Automotive\",\n                \"PDM\",\n                \"Manufacturing\",\n                \"Teamcenter\",\n                \"Catia\",\n                \"Engineering\",\n                \"Unigraphics\",\n                \"Automotive Electronics\",\n                \"Operating Systems\",\n                \"TCP/IP\",\n                \"Automotive Engineering\",\n                \"IT Service Management\",\n                \"CATIA\",\n                \"NX Unigraphics\",\n                \"Engineering Management\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.7844752,\n                    \"lon\": -83.2396612\n                },\n                \"formattedAddress\": \"Lake Orion, Orion Charter Township, MI 48362, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 9931,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"71383095BF16E7ACAF86024A8ECD53B9\",\n            \"canonical\": \"https://www.linkedin.com/in/katalenic\",\n            \"fullname\": \"Robert Katalenic\",\n            \"headline\": \"Helping automotive OEMs and suppliers cultivate innovative electronics into saleable products which meet customer needs\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQEA4EUkXVVmeA/profile-displayphoto-shrink_800_800/0/1602091938075?e=2147483647&v=beta&t=B1aehPkZDrh3Tpi2SOUosqynKGS33CbOV0Fgw1U7a9k\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/katalenic\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Manager Business Development, North America\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2015-01-01\",\n                    \"leaveDate\": \"2019-01-01\",\n                    \"company\": \"VOXX International Corporation\",\n                    \"position\": \"Strategic Business Development, Product Development and Marketing\",\n                    \"description\": \"VOXX Automotive is a global supplier of vehicle access/control and rear seat entertainment (RSE) systems to automotive OEMs. Took innovative technologies, nurtured into production intent products and determined alignment with customer requirements. Developed and executed a targeted strategy for the West Coast startup EV OEMs to promote the company’s proprietary bluetooth (BTLE) technology as a smartphone replacement of keyfobs and traditional passive entry systems. Utilizing…\"\n                },\n                {\n                    \"hiredDate\": \"2011-01-01\",\n                    \"leaveDate\": \"2015-01-01\",\n                    \"company\": \"JATO Dynamics\",\n                    \"position\": \"Vice President of Sales, North America\",\n                    \"description\": \"JATO Dynamics is a global supplier of automotive business intelligence with comprehensive research on vehicle specifications, pricing, sales registrations and automotive industry news for over 60 countries. As Vice President, I lead the 5 member North American sales team. I was the single point of contact for regional performance to corporate executives in UK in coordination with multicultural team of regional leadership in Europe, South America and Asia. I supported development of…\"\n                },\n                {\n                    \"hiredDate\": \"2009-01-01\",\n                    \"leaveDate\": \"2011-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"New Product Business Innovation\",\n                    \"description\": \"Supported the newly re-acquired Delphi Kokomo manufacturing facility which produced Semiconductor Integrated Circuits (IC), Power Electronics, Engine Controllers and Sensors. Facilitated the initial critical post-bankruptcy emergence objectives to transition all existing Delphi programs and their entire customer base to the newly formed GM Components Holdings and ensured an uninterrupted supply of components and revenue. Developed and presented business case proposals to senior…\"\n                },\n                {\n                    \"hiredDate\": \"2003-01-01\",\n                    \"leaveDate\": \"2009-01-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Product Marketing and Business Development\",\n                    \"description\": \"Delphi Electronics & Safety Systems was a leading global supplier of not only Infotainment Systems: Touchscreen Navigation, OnStar telematics, XM Satellite Radios and SDARS Antennas but also ADAS and Safety Systems: Adaptive Cruise Control (ACC), Radar Back Up (BUA) and Passenger Occupant Detection Systems (PODS). Successfully developed cross functional relationship with customer’s engineering, product planning, marketing and brand development teams to identify target…\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"German\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Lawrence Technological University\",\n                    \"subTitle\": \"Bachelor of ScienceElectrical Engineering\"\n                },\n                {\n                    \"title\": \"Macomb Community College\",\n                    \"subTitle\": \"Associate of ArtsElectrical and Electronics Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1681091654799,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am an inquisitive business development leader with an art to part career representation of electronic components, systems and services which combines a unique blend of marketing and technical sales with a bachelor’s degree in Electrical Engineering (BSEE). My ability to communicate and understand both technical and business requirements has been invaluable to successfully facilitate cross functional collaboration resulting in multiple new business opportunities and increased customer satisfaction. I have been successful at taking an idea, nurture it into a production-intent product and find an OEM to deliver. I thrive when focused on developing innovative technologies in automotive. My passion shines through with latest achievement developing a Bluetooth Phone-as-a-Key vehicle access system from concept all the way through to company’s first business award and even industry recognition by Automotive News. My career has given me exposure to a breadth of technologies: Infotainment, Telematics, Wireless, Bluetooth, Semiconductor IC, Advanced Driver Assistance Systems (Radar, LiDAR, Ultrasonic), Powertrain Control Modules, Sensors, Embedded Software Development, Finite Element Analysis and Competitive Intelligence.\",\n            \"skills\": [\n                \"Automotive\",\n                \"Vehicles\",\n                \"Product Development\",\n                \"Product Planning\",\n                \"Telematics\",\n                \"Cross-functional Team Leadership\",\n                \"Competitive Analysis\",\n                \"New Business Development\",\n                \"Product Launch\",\n                \"Sales Management\",\n                \"Pricing\",\n                \"Engineering\",\n                \"Lean Manufacturing\",\n                \"Automobile\",\n                \"Account Management\",\n                \"Product Management\",\n                \"Product Marketing\",\n                \"Negotiation\",\n                \"Program Management\",\n                \"Market Analysis\",\n                \"CRM\",\n                \"Start-ups\",\n                \"Contract Negotiation\",\n                \"Strategic Partnerships\",\n                \"Management\",\n                \"Strategy\",\n                \"Business Development\",\n                \"Sales\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6673,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"52320551DE5C236E22A32F352551E516\",\n            \"canonical\": \"https://www.linkedin.com/in/fabricio-alvaro-88b9b241\",\n            \"fullname\": \"Fabricio Alvaro\",\n            \"headline\": \"Senior Resident Engineer at General Motors\",\n            \"location\": \"Warren, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQEtA_-v1_a5gg/profile-displayphoto-shrink_800_800/0/1516956400280?e=2147483647&v=beta&t=nMAY3_gzCAbvMNt04Nolipnv69oYZxdFzaeh99lKQ0A\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/fabricio-alvaro-88b9b241\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2019-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Resident Engineer\",\n                    \"description\": \"Responsible for the Long Range Radars for Global A platforms and the new generation of digital cameras for all the vehicles at GM.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2016-07-01\",\n                    \"leaveDate\": \"2019-03-01\",\n                    \"company\": \"Valeo S.A.\",\n                    \"position\": \"GM Resident Engineer\",\n                    \"description\": \"Responsible for follow up of project planning, Design Reviews [Internal, Customer, Supplier,] CAD/ Drawing Reviews and associated document reviews Responsible of creation/maintenance of BOM for Surround vision system Support different vehicle build stages at GM\"\n                },\n                {\n                    \"hiredDate\": \"2014-11-01\",\n                    \"leaveDate\": \"2016-06-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Exterior Accessories Design Release Engineer\",\n                    \"description\": \"• Led changes proposed by Marketing to the bed liner (K2XX and 31XX programs) to increase revenue of the commodity. Leading a PDT with Marketing, Validation engineer, Technical integration engineer, Design studio, BFO, GSSLT lead, Supplier quality and Supplier have incorporated features for tie down hooks and have developed a best practice for bed liners plugs. • Led creation of State of Requirements. Have worked with Material, ICE, Manufacturing, Validation engineers and studio for the…\"\n                },\n                {\n                    \"hiredDate\": \"2013-03-01\",\n                    \"leaveDate\": \"2014-11-01\",\n                    \"company\": \"Aerotek-Allegis : contract assignment with General Motors\",\n                    \"position\": \"Exterior Accessories Design Release Engineer\",\n                    \"description\": \"• Led changes proposed by Marketing to the bed liner (K2XX and 31XX programs) to increase revenue of the commodity. Leading a PDT with Marketing, Validation engineer, Technical integration engineer, Design studio, BFO, GSSLT lead, Supplier quality and Supplier have incorporated features for tie down hooks and have developed a best practice for bed liners plugs. • Led creation of State of Requirements. Have worked with Material, ICE, Manufacturing, Validation engineers and studio for the…\"\n                },\n                {\n                    \"hiredDate\": \"2009-07-01\",\n                    \"leaveDate\": \"2013-02-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Design and Release Engineer\",\n                    \"description\": \"• Led design and implementation of the Cross Car Beam of the MKX SUV. Have Interacted with IP, CAE, safety (FMVSS), NVH and electrical commodities on Peer reviews to develop and comply the global IP and console requirements. • Led PDT reviews to meet target of cost, timing and mass of the parts.\"\n                },\n                {\n                    \"hiredDate\": \"2006-08-01\",\n                    \"leaveDate\": \"2009-07-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Design and Release Engineer\",\n                    \"description\": \"• Led the design and packaging of the HVAC and PTC lines for Theta platform, have interacted with others SMTs and suppliers to solve and support performance and packaging issues, have supported virtual reviews (CIT) and cost reduction ideas, have coordinated the execution of production and prototypes parts to support vehicle builds. Have worked closely with purchasing department in GM-Asia to develop suppliers that comply with the requirements of the parts (SOR), have supported peer reviews for…\"\n                },\n                {\n                    \"hiredDate\": \"2006-01-01\",\n                    \"leaveDate\": \"2006-08-01\",\n                    \"company\": \"Plastic-Tec\",\n                    \"position\": \"Product Engineer\",\n                    \"description\": \"• Led process to achieve PPAP for A4 pillars, • Have developed dunnage and have provided technical support to customers. • Achievements: Release of tooling pillars at grade 1 for the A4 platform. • Led A5 pillar tooling startup release process with production, logistic and quality departments. Start-up of the line production for the pillars. • Have worked with production on the creation and release of the plastic mold for the A4 pillars.\"\n                },\n                {\n                    \"hiredDate\": \"2000-10-01\",\n                    \"leaveDate\": \"2004-02-01\",\n                    \"company\": \"Volkswagen de Mexico\",\n                    \"position\": \"Design Release Enginner\",\n                    \"description\": \"• Led the A5 interior garnish and overhead system launch on production. • Have proposed and worked with design studio on a new CD carrier box for the New Beetle. • Have worked on bench tests to validate A4 platform upper interior parts.\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Spanish\",\n                \"German\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"University of the Americas – Puebla\",\n                    \"subTitle\": \"Diploma - minorInterior Automotive Partsminor\"\n                },\n                {\n                    \"title\": \"University of the Americas - Puebla\",\n                    \"subTitle\": \"Bachelor’s DegreeMechanical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1681091354561,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Mechanical Engineer with more than 18 years of experience in the automotive industry. Areas of expertise include design and release automotive parts from early concept in studio phases to mass production, BOM maintenance and support to the assembly plant. Technical Skills:Team work, Proficient in NX and Catia V5, GD&T Knowledge, Green and Black Belt verified and Program Management, Vehicle Spy, XCP, DPS Good communication skills due to the holistic view derived from the interaction with various functional team throughout the product development process.\",\n            \"skills\": [\n                \"PPAP\",\n                \"Manufacturing\",\n                \"GD&T\",\n                \"Automotive Engineering\",\n                \"Automotive\",\n                \"Geometric Dimensioning & Tolerancing\",\n                \"DFMEA\",\n                \"NX Unigraphics\",\n                \"Machine Tools\",\n                \"Teamcenter\",\n                \"FMEA\",\n                \"Six Sigma\",\n                \"APQP\",\n                \"Vehicles\",\n                \"Green Belt\",\n                \"CATIA\",\n                \". NX3 and NX5 basic trainings.\",\n                \"Time Management\",\n                \"DRBFM\",\n                \"GPDS\",\n                \"E2\",\n                \"Supplier Negotiation\",\n                \"Distant Learning\",\n                \"UGS NX5\",\n                \"Vismuckup\",\n                \"Unigraphics\",\n                \"Geometric Dimensioning\",\n                \"Black Belt\",\n                \"Continuous Improvement\",\n                \"Product Development\",\n                \"Production Part Approval Process (PPAP)\",\n                \"Siemens NX\",\n                \"DFSS Green Belt\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.5144566,\n                    \"lon\": -83.01465259999999\n                },\n                \"formattedAddress\": \"Warren, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7468,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"A33A33266800B33BD65B53FDEA9FF5D1\",\n            \"canonical\": \"https://www.linkedin.com/in/greg-crain-83a88011\",\n            \"fullname\": \"Greg Crain\",\n            \"headline\": \"Electrical/Computer Engineer at Vitesco Technologies\",\n            \"location\": \"Clarkston, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": {\n                    \"url\": \"https://github.com/gscrain1\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/greg-crain-83a88011\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-09-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Vitesco Technologies Group AG\",\n                    \"position\": \"Electrical/Computer Engineer at Vitesco Technologies\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2023-02-01\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Electrical/Computer Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2008-01-01\",\n                    \"company\": \"Siemens AG\",\n                    \"position\": \"Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1997-01-01\",\n                    \"leaveDate\": \"1999-01-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Product Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1993-01-01\",\n                    \"leaveDate\": \"1997-01-01\",\n                    \"company\": \"Jabil Inc.\",\n                    \"position\": \"Test Engineer\",\n                    \"description\": \"Test Engineer for Automotive modules and assemblies.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"MSEEEngineering\"\n                },\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"BSEE, BSCEEngineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1681091056852,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Embedded Software Development - Low Level device drivers for Automotive Engine Control Modules (ECM) and Drivetrain Control Modules. Test Engineering: Agilent VXI Systems, National Instruments LabView & LabWindows CVI customized production test for Powertrain electronics and Automotive Interior subsystems. Specialties: People Skills.\",\n            \"skills\": [\n                \"Embedded Systems\",\n                \"Engineering\",\n                \"Electronics\",\n                \"Testing\",\n                \"Automotive\",\n                \"Microcontrollers\",\n                \"Labview\",\n                \"PLC\",\n                \"Device Drivers\",\n                \"Embedded Software\",\n                \"Software Engineering\",\n                \"LabVIEW\",\n                \"Systems Engineering\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.7351196,\n                    \"lon\": -83.4192941\n                },\n                \"formattedAddress\": \"Village of Clarkston, MI 48346, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11056,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"C33D9F1CE367E06BEBAFC9B0EB7DE8CA\",\n            \"canonical\": \"https://www.linkedin.com/in/dave-newman-85b13180\",\n            \"fullname\": \"Dave Newman\",\n            \"headline\": \"Staff Software Engineer - Autonomous Vehicles at Latitude AI\",\n            \"location\": \"Livonia, Michigan\",\n            \"industry\": \"automotive\",\n            \"picture\": \"https://static.licdn.com/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/dave-newman-85b13180\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-02-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Latitude AI\",\n                    \"position\": \"Staff Software Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2017-04-01\",\n                    \"leaveDate\": \"2023-02-01\",\n                    \"company\": \"Argo AI\",\n                    \"position\": \"Staff Software Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2016-06-01\",\n                    \"leaveDate\": \"2017-04-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Research Engineer - Automated Driving\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1992-01-01\",\n                    \"leaveDate\": \"2016-06-01\",\n                    \"company\": \"Perceptron\",\n                    \"position\": \"Senior Software Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [],\n            \"lastScraperUpdateTime\": 1680489739081,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Automation\",\n                \"Testing\",\n                \"C\",\n                \"Embedded Systems\",\n                \"C++\",\n                \"Programming\",\n                \"Embedded Software\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.36837,\n                    \"lon\": -83.35270969999999\n                },\n                \"formattedAddress\": \"Livonia, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11415,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"7AF86EFCB1624C67B792A35CE3EC0969\",\n            \"canonical\": \"https://www.linkedin.com/in/nishant-prakash-2079a74a\",\n            \"fullname\": \"Nishant Prakash\",\n            \"headline\": \"Project Engineering Lead- L2 ADAS / AD Features\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQH6729ciTAEqw/profile-displayphoto-shrink_800_800/0/1553899583665?e=2147483647&v=beta&t=bHB3TCMgNuL5u-GEQEWuFd8kFQbAL6EtVRuv59ZAoho\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/nishant-prakash-2079a74a\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-06-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"MAGNA ELECTRONICS LIMITED\",\n                    \"position\": \"Project Engineering Lead- L2 ADAS/AD Features\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2021-05-01\",\n                    \"leaveDate\": \"2022-06-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Senior Systems Engineer/ Features Team Lead- L2+ ADAS Systems\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2019-07-01\",\n                    \"leaveDate\": \"2021-12-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Autonomous Driving Systems Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2017-02-01\",\n                    \"leaveDate\": \"2019-07-01\",\n                    \"company\": \"Valeo S.A.\",\n                    \"position\": \"System Engineer- ADAS Features\",\n                    \"description\": \"•Lead customer demonstrations of ADAS feature released by the platform development teams. It involves integrating the software on demonstration vehicles and debug the system for any issues •Coordinate with the Systems Architects, Software developers and System test engineers to ensure requirement implementation and validate the test cases •Actively participate in internal discussions and suggest improvements to the research and development teams based on issue debug in the…\"\n                },\n                {\n                    \"hiredDate\": \"2016-01-01\",\n                    \"leaveDate\": \"2017-02-01\",\n                    \"company\": \"IEE\",\n                    \"position\": \"Electrical Systems Engineer\",\n                    \"description\": \"•Responsible for the overall development of capacitance based sensing systems, investigate system’s limitations and develop customized solutions for critical issues as per the customer requirement •Manage requirements using DOORS, create DFMEA for our system and perform testing to replicate the issues on bench to know its root cause and explain the physics behind it •Develop test procedures and prepare set up for the validation of Electrical Systems and work with other teams to…\"\n                },\n                {\n                    \"hiredDate\": \"2014-06-01\",\n                    \"leaveDate\": \"2016-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Hands Free Audio Engineer\",\n                    \"description\": \"•Implemented the Wideband and Narrowband Audio codecs for AMR (Adaptive Multi Rate), VMR (Variable Multi Rate) and EVRC (Enhanced Variable Rate Codec) standardized by ITU-T and developed network simulation software to measure the quality of audio codecs based on MOS scoring including PESQ. •Developed the GUI for the simulation software and established connection to database. Entire development was done in UNIX (Cygwin) and Linux environment using GCC compiler, subversion tools, C/C++…\"\n                },\n                {\n                    \"hiredDate\": \"2012-08-01\",\n                    \"leaveDate\": \"2014-06-01\",\n                    \"company\": \"University Of Houston\",\n                    \"position\": \"Research Assistant\",\n                    \"description\": \"•Used the Electroencephalogram machine for recording of EEG signals in the Lab. •Worked with large amount of real time data and used data processing and analysis techniques including feature extraction, clustering, AR modeling and Pattern recognition •Developed a software using MATLAB and C language to perform automated sleep staging using artificially generated EEG signals and later extending it for real time EEG data.\"\n                },\n                {\n                    \"hiredDate\": \"2012-02-01\",\n                    \"leaveDate\": \"2012-07-01\",\n                    \"company\": \"Accenture plc\",\n                    \"position\": \"Associate Software Engineer (Java Developer)\",\n                    \"description\": \"•Worked on Struts and Spring Framework along with the application of Swing Concepts, JSP, Servlets, html and Core Java. •Worked on Informatica Tool used for maintenance of large Database systems using SQL and PL/SQL language. •Created test cases, deliverables and performed unit testing for the softwares designed to be delivered to clients.\"\n                },\n                {\n                    \"hiredDate\": \"2009-05-01\",\n                    \"leaveDate\": \"2009-06-01\",\n                    \"company\": \"Bharat Sanchar Nigam Limited\",\n                    \"position\": \"Intern\",\n                    \"description\": \"•Gained practical experience of the process from the touch point of how calls are made via mobile and landline using the BTS and MTS to complex working of various devices.\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Bengali\",\n                \"Hindi\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Houston\",\n                    \"subTitle\": \"Master's degreeSignal Processing & Communications\"\n                },\n                {\n                    \"title\": \"Rice University\",\n                    \"subTitle\": \"Master of Science (MS)Digital Signal ProcessingGPA 4.0\"\n                },\n                {\n                    \"title\": \"Nagpur University\",\n                    \"subTitle\": \"Bachelor's in EngineeringElectrical, Electronics and Communications Engineering3.8\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1679182412292,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am currently working as a Project Engineering lead for L2 Autonomous driving systems at Magna Electronics. My experience has been focused in the ADAS Systems for past 7 years and am experienced with the end to end ADAS system development. I have worked and led the development of L2 and L2+ ADAS systems based on Radars, Ultrasonic sensors, MAP and near range Cameras with North American OEMs like Ford and Stellantis. I am experienced in requirements elicitation, system design, FMEA analysis, performing feasibility study and have created detailed system level design/requirements using IBM DOORS and Polarion. Tools used: Automotive: IBM DOORS, Polarion, Enterprise Architect, PTC Integriti , CANalyzer, Vector tool, JIRA Software: MATLAB, CANoe, dSpace, Cygwin, QT Tools, CMU200, ACQUA, Audacity Programming Languages:Python, PyQt, Shell Scripting, C/C++, SQL\",\n            \"skills\": [\n                \"Automotive Infotainment\",\n                \"Electrical Engineering\",\n                \"Matlab\",\n                \"Telecommunications\",\n                \"Signal Processing\",\n                \"Audio Engineering\",\n                \"Programming\",\n                \"Pattern Recognition\",\n                \"PyQt\",\n                \"MOS\",\n                \"C++\",\n                \"C\",\n                \"SQL\",\n                \"Unix Shell Scripting\",\n                \"Python\",\n                \"Pspice\",\n                \"Java\",\n                \"VHDL\",\n                \"Testing\",\n                \"Algorithms\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 4063,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"C220A5CAB3069177FEECEC8BA658DC6E\",\n            \"canonical\": \"https://www.linkedin.com/in/gary-c-43652924\",\n            \"fullname\": \"Gary C.\",\n            \"headline\": \"Systems Engineer\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"Defense & Space\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4D03AQE7KFmle7TARA/profile-displayphoto-shrink_800_800/0/1517078234577?e=2147483647&v=beta&t=F_aPuuyC8w8RVo3bQiFotcbo7Mv0iuk0iGlnJPYqQss\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/gary-c-43652924\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2017-01-01\",\n                    \"leaveDate\": \"2022-01-01\",\n                    \"company\": \"Confidential (In stealth mode)\",\n                    \"position\": \"System Engineer\",\n                    \"description\": \"Technical Planning & Management, Requirements, ORSA, & Architecture\"\n                },\n                {\n                    \"hiredDate\": \"2014-06-01\",\n                    \"leaveDate\": \"2016-08-01\",\n                    \"company\": \"AM General LLC\",\n                    \"position\": \"Sr. Systems Engineer Staff\",\n                    \"description\": \"Requirements Management, TIRs, RAM Testing, Problem Solving and Resolution, Modeling and Simulations, FE Analysis, BCNs, DFMEAs, DARTs.\"\n                },\n                {\n                    \"hiredDate\": \"2013-08-01\",\n                    \"leaveDate\": \"2014-03-01\",\n                    \"company\": \"Gentex\",\n                    \"position\": \"Sr. Systems Engineer Defense\",\n                    \"description\": \"• Requirements Management and Product Development • Purchase Description/SOW Document Auditor • Requirements Management, Allocation, and Compliance using DOORs/MS Excel software. • DVT Test Development. • Deriving Requirements, Defining new Product Requirements. • Working with Military Standards and Specifications, SRR, TRR, SME Reviews. • Evaluate designs for Performance, Safety, and Reliability.\"\n                },\n                {\n                    \"hiredDate\": \"2012-10-01\",\n                    \"leaveDate\": \"2013-05-01\",\n                    \"company\": \"General Dynamics Corporation\",\n                    \"position\": \"Systems Engineer Sr. Defense\",\n                    \"description\": \"• Requirements Management, Allocation, and Compliance using DOORs software. • Deriving Requirements, Defining new Product Requirements, Developing Function Lists, Developing Environmental Requirements • Working with Military Standards and Specifications, PEER Reviews, SME Reviews, STRs • Impact Analysis on Contract Mods to the System and Subsystem level Performance Specifications. • Working with Thermal Group to develop worst case drivetrain heat rejection information for the…\"\n                },\n                {\n                    \"hiredDate\": \"2012-03-01\",\n                    \"leaveDate\": \"2012-10-01\",\n                    \"company\": \"BAE Systems plc\",\n                    \"position\": \"System Engineer Defense\",\n                    \"description\": \"• Measurement and Analysis, Measurement Definition development, tracking of program metrics for the following: (Risk, Headcount, Labor Hours, CPI, CV, EAC, VAC, SV, SPI, DT%, Refurb%, TIRs, System Weight, Force Protection, Survivability, Maximum Velocity, Transportation, Accuracy, Rate of Fire, Firing Range, Reliability%, Availability, Net Ready, Reliability MTBSA, Parts Availability, Engineering Changes, Engineering Requests, and LEAD BOM cost data. • Risk Management using ARM and…\"\n                },\n                {\n                    \"hiredDate\": \"2011-12-01\",\n                    \"leaveDate\": \"2012-02-01\",\n                    \"company\": \"Force Protection\",\n                    \"position\": \"Systems Engineer Defense\",\n                    \"description\": \"Requirement Management using DOORs ver.9.3 Bid and Proposal, System Archetecture (SysML) using magic draw, upgrades and egress modications.\"\n                },\n                {\n                    \"hiredDate\": \"2008-01-01\",\n                    \"leaveDate\": \"2011-04-01\",\n                    \"company\": \"BAE Systems plc\",\n                    \"position\": \"Systems Engineer Defense\",\n                    \"description\": \"Following the LCM/CMMI Project management process. Upgrading the M88A2 Hercules Heavy Recovery Vehicle for increased ride performance,towing capabilities, and increase GVW by 5 tons. Using Trade Studies to evaluate the different M88 Suspension Vendors technologies in regards to Cost, performance, packaging, and system intergration. Gathered specifications and performance data for an FE Analysis evaluation of Suspension components, and also Modeling and Simulation comparisons of different…\"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2003-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Reliability Implementation Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [\n                \"Spanish\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Detroit Mercy\",\n                    \"subTitle\": \"MS MEProduct Development\"\n                },\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"BS CHEProduct Development, Material Science, Environmental Science\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1679182018913,\n            \"military\": true,\n            \"clearance\": true,\n            \"about\": \"\",\n            \"skills\": [\n                \"Systems Engineering\",\n                \"Earned Value Management\",\n                \"Requirements Management\",\n                \"Engineering Management\",\n                \"CMMI\",\n                \"DoDAF\",\n                \"Integration\",\n                \"Telelogic DOORS\",\n                \"Trade Studies\",\n                \"C4ISR\",\n                \"Engineering\",\n                \"Requirements Analysis\",\n                \"System Design\",\n                \"SysML\",\n                \"GD&T\",\n                \"System Architecture\",\n                \"Program Management\",\n                \"Configuration Management\",\n                \"Government Contracting\",\n                \"DoD\",\n                \"Cost Engineering\",\n                \"Quality Management\",\n                \"Six Sigma\",\n                \"Process Improvement\",\n                \"Aerospace\",\n                \"Avionics\",\n                \"IBM DOORS\",\n                \"Proposal Writing\",\n                \"Security Clearance\",\n                \"Military\",\n                \"Defence\",\n                \"Defense\",\n                \"Testing\",\n                \"Space Systems\",\n                \"Spacecraft\",\n                \"System Safety\",\n                \"Radar\",\n                \"System Requirements\",\n                \"MIL-STD-1553\",\n                \"Flight Test\",\n                \"Rhapsody\",\n                \"Systems Design\",\n                \"Geometric Dimensioning & Tolerancing\",\n                \"Rational DOORS\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 5600,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"034796B59F2613A4F5CB58CBF0B3691F\",\n            \"canonical\": \"https://www.linkedin.com/in/viveka-mishra-68741a49\",\n            \"fullname\": \"Viveka Mishra\",\n            \"headline\": \"Staff Systems Engineer at Latitude AI\",\n            \"location\": \"Detroit, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQH3Z2WNTUTUmw/profile-displayphoto-shrink_800_800/0/1614438578012?e=2147483647&v=beta&t=f4MeFc8OScutfEJgs8mX2JhHm4ofP8uVgojtbRaQknE\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/viveka-mishra-68741a49\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Latitude AI\",\n                    \"position\": \"Staff Systems Engineer at Latitude AI\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2022-09-01\",\n                    \"leaveDate\": \"2022-12-01\",\n                    \"company\": \"Argo AI\",\n                    \"position\": \"Sensing & Perception Architecture Tech Lead\",\n                    \"description\": \"Developed & implemented probabilistic design verification plans for perception of objects & road actors, traffic lights, occlusions & free space. Led implementation - planned 60+ full time engineer weeks of work per quarter for 5 quarters- and validation of these functions and ran a cross-functional failure triage. Individually developed statistical case based test methods, built tools in python and SQL for statistically significant functional performance visualization and clearly communicated…\"\n                },\n                {\n                    \"hiredDate\": \"2021-02-01\",\n                    \"leaveDate\": \"2022-10-01\",\n                    \"company\": \"Argo AI\",\n                    \"position\": \"Senior System Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2017-09-01\",\n                    \"leaveDate\": \"2021-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Autonomous Emergency Braking (VRU) Global Feature Owner\",\n                    \"description\": \"Responsible for deploying the autonomous emergency braking algorithm to prevent collisions with pedestrians and cyclists on Ford, Mustang and Lincoln vehicles globally. Developed sensing, hardware, software, interface and feature requirements as well as verification and validation methods. Ensured that the requirements were testable and met for each vehicle line. Ran feature development sub-team to deploy multiple vehicle lines globally, concurrently. Characterized positive and negative…\"\n                },\n                {\n                    \"hiredDate\": \"2017-01-01\",\n                    \"leaveDate\": \"2017-08-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Electrical Systems Engineer\",\n                    \"description\": \"Ran the electrical systems validation effort and drove wiring, software and electrical component manufacturing issue resolution for the 2018 Ford Expedition and Lincoln Navigator, which was awarded Best In Class and North American Truck of the Year. Ensured all parts related to electrical systems in the vehicle were delivered in time for tooling trial, prototype and the initial launch builds at Ford’s Kentucky Truck Plant.\"\n                },\n                {\n                    \"hiredDate\": \"2015-01-01\",\n                    \"leaveDate\": \"2017-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Automated Driving Development Engineer\",\n                    \"description\": \"Developed the algorithm for collision mitigation in intersection scenarios. Was primarily responsible for the controls algorithm on the braking request and the path prediction compensation algorithm for sensor latency. This work was transitioned into production code as of 2019 on 3 vehicle lines.\"\n                },\n                {\n                    \"hiredDate\": \"2014-01-01\",\n                    \"leaveDate\": \"2015-01-01\",\n                    \"company\": \"PegaSense\",\n                    \"position\": \"Co-Founder and CEO\",\n                    \"description\": \"Led team to become 2014 MassChallenge Finalists. Developed prototype from idea to initial iteration by evaluating the target market and working with potential users. Led the product design team to develop a manufacturable design. Ran study with the prototype to validate core value proposition. Closed an initial round of funding for a year of company development. Acquired committed customers and completed a viable business plan and developed a manufacturable prototype planned for large-scale…\"\n                },\n                {\n                    \"hiredDate\": \"2013-06-01\",\n                    \"leaveDate\": \"2013-08-01\",\n                    \"company\": \"Thermo Fisher Scientific Inc.\",\n                    \"position\": \"Mechanical Engineering Intern\",\n                    \"description\": \"• Designed and fabricated a pneumatic-powered robot from scratch to autonomously run a lifetime test. • Lifetime test controlled by Arduino and code • Several replicas built by the company after the internship\"\n                },\n                {\n                    \"hiredDate\": \"2012-06-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"KVA matx\",\n                    \"position\": \"Mechanical and Electrical Portable Light Technician\",\n                    \"description\": \"• Spearheaded the beta prototype of Portable Light project with mechanical and electrical modifications. • Developed and integrated solar technology for Amazon river communities in Brazil\"\n                },\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"Takachar Project, Engineers without Borders\",\n                    \"position\": \"Technical Consultant and Operations Manager\",\n                    \"description\": \"• Tested and implemented charcoal briquetting using waste materials. • Developed a waste management pilot project to be utilized in Kibera and Mathare slums.\"\n                },\n                {\n                    \"hiredDate\": \"2011-05-01\",\n                    \"leaveDate\": \"2011-08-01\",\n                    \"company\": \"Massachusetts Institute of Technology\",\n                    \"position\": \"Student Researcher Ionnis Yannas Lab\",\n                    \"description\": \"· Studied how certain structures of scaffolds used in nerve healing affect the quality of wound healing · Helped design a Matlab program for a customized laser microscope · Image and data process in Matlab\"\n                },\n                {\n                    \"hiredDate\": \"2009-06-01\",\n                    \"leaveDate\": \"2009-10-01\",\n                    \"company\": \"National Institutes of Health\",\n                    \"position\": \"Student Researcher\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2007-12-01\",\n                    \"leaveDate\": \"2008-08-01\",\n                    \"company\": \"Georgetown University\",\n                    \"position\": \"Student Researcher\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Swahili\",\n                \"Spanish\",\n                \"Hindi\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Massachusetts Institute of Technology\",\n                    \"subTitle\": \"Bachelor's DegreeMechanical Engineering\"\n                },\n                {\n                    \"title\": \"University of Michigan - Rackham Graduate School\",\n                    \"subTitle\": \"Master’s DegreeElectrical and Computer Engineering\"\n                },\n                {\n                    \"title\": \"Sidwell Friends School\",\n                    \"subTitle\": \"High School Diploma\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1679179370199,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am a trained mechanical, electrical and intelligent systems engineer with demonstrated experience bringing a product from idea to prototype and leading a team from prototype to VC-backed corporation. Ive built upon my roles as a controls algorithm engineer and electrical systems engineer to cross functionally develop, integrate, validate and deploy Fords Autonomous Emergency Braking feature mitigating collisions with pedestrians and cyclists globally, both in production and for Fords pre-production Co-Pilot 360 platform. Most recently I’ve developed and lead a cross-functional team in the implementation of a novel statistical approach to perception stack verification at Argo AI and have provided the company critical insights into perception architecture design decisions and functional performance given the context of launch targets.\",\n            \"skills\": [\n                \"Engineering\",\n                \"Matlab\",\n                \"Simulink\",\n                \"Public Speaking\",\n                \"Solidworks\",\n                \"Teaching\",\n                \"Mechanical Engineering\",\n                \"Machining\",\n                \"Soldering\",\n                \"Assembly Language\",\n                \"Python\",\n                \"C\",\n                \"Injection Molding\",\n                \"Thermoforming\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.331427,\n                    \"lon\": -83.0457538\n                },\n                \"formattedAddress\": \"Detroit, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 4002,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"5542A1F11FD666B557B1B5D3F3F9F252\",\n            \"canonical\": \"https://www.linkedin.com/in/roman-kapitanec-77908b68\",\n            \"fullname\": \"Roman Kapitanec\",\n            \"headline\": \"Controller NA at Macauto Industrial Co., Ltd.\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQHCvIG95pbIkw/profile-displayphoto-shrink_800_800/0/1520985268831?e=2147483647&v=beta&t=PA6Sg8aiUbjbJB-cD_39kdigdH0YDxj2JCa6gqYFTvk\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/roman-kapitanec-77908b68\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2017-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Macauto Industrial Co., Ltd.\",\n                    \"position\": \"Controller NA\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2014-12-01\",\n                    \"leaveDate\": \"2017-02-01\",\n                    \"company\": \"Recaro Holding\",\n                    \"position\": \"Sr. Financial Analyst/Account Financial Manager\",\n                    \"description\": \"Under the direction of the Controller-NA/Director RKIH perform financial analysis and business case studies with Program Teams to help drive continued business wins and to ensure the proper program profitability. Manage and develop program business cases including required capital investment, tooling investment and engineering investment to ensure the proper IRR, ROS and ROA for each program. Provide input to quarterly forecasts and annual Profit Plan in regards to engineering spending…\"\n                },\n                {\n                    \"hiredDate\": \"2010-09-01\",\n                    \"leaveDate\": \"2014-12-01\",\n                    \"company\": \"Bridgewater Interiors, LLC\",\n                    \"position\": \"BU Controller / Sr. Financial Analyst\",\n                    \"description\": \"Provide direct support to BWI CFO on routine financial matters and special projects. Review treasury information on a daily basis. Monitor cash flow and Working Capital position noting impact on AR, AP and Payroll. Ensure funds used for Working Capital are reasonable and in line with business expectations. Prepare payroll summary for plants to use for recording labor. expense in the month and coordinate any issues with the plant. Full responsibility for month-end closing for BWI HQ…\"\n                },\n                {\n                    \"hiredDate\": \"2010-04-01\",\n                    \"leaveDate\": \"2010-09-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Sr. Financial Analyst\",\n                    \"description\": \"Managed and executed monthly portfolio processes. Track portfolio through various company ledgers. Coordinated accruals with project managers. Optimized business plans to improve business results. Provided internal and/or external financial analysis, consultation and decision support. Prepared, analyzed, and selected methods of presenting various data Solved problems and developed new methods of analysis. Wrote reports and summaries of findings in accordance to…\"\n                },\n                {\n                    \"hiredDate\": \"2009-12-01\",\n                    \"leaveDate\": \"2010-04-01\",\n                    \"company\": \"Detroit Diesel\",\n                    \"position\": \"Sr. Financial Analyst\",\n                    \"description\": \"Documented monthly Sarbanes-Oxley (SOX) compliance for Diesel integrated business Systems, Hyperion and SAP. Coordinated with Accounting, Controlling, and Operations personnel to resolve financial statement discrepancies and ensure accurate information. Prepare financial statement footnotes, provision report, and income statement review following SEC guidelines, GAAP and IFRS. Prepare reports and reconciliation and collect and review input from other analysts to ensure accuracy and…\"\n                },\n                {\n                    \"hiredDate\": \"1999-11-01\",\n                    \"leaveDate\": \"2009-05-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Operations Planning Analyst\",\n                    \"description\": \"Reconciled six (6) Deficiency & Extension Lockbox accounts (bank & ledger accts.) averaging $1.2B per month. Research and resolve remote location requests utilizing every resource available with in DaimlerChrysler Services. Work closely with the Retail Accounting, Lease Accounting, Internal/External Audit, and Bankruptcy depts., as well as the Business Centers., Remarketing, and Deficiency Center to ensure accurate and timely presentation of financial reports. Audited…\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2007-05-01\",\n                    \"company\": \"Chrysler Corporation/Chrysler Financial\",\n                    \"position\": \"Sr. Financial Analyst\",\n                    \"description\": \"Assisted in the development, enhancement, and maintenance of IT applications utilized by CFC financial Controlling team. Primarily responsible for supporting the forecast tool (VPT) and finance engine (US, Canada, Mexico, Puerto Rico, and Argentina). Solely responsible for data validation and analysis, creative problem solving, project management, and customer relations. Assisted in corporate level controls and SOX compliance. Controller’s Office project leader for separation of…\"\n                },\n                {\n                    \"hiredDate\": \"1997-10-01\",\n                    \"leaveDate\": \"1999-11-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Financial Analyst/Cost Analyst\",\n                    \"description\": \"Maintained General Ledger accounts related to OME, Scrap, Direct and Indirect Labor. Daily analysis of actual to target costs as it relates to units of production. Worked closely with the various cost and profit centers within the plant compiling and analyzing financial data, as well as recommending cost savings. Worked directly with Engineering, Production Control and outside vendors on recoveries and engineering-related charges. Assisted in annual model year budget preparation…\"\n                },\n                {\n                    \"hiredDate\": \"1996-01-01\",\n                    \"leaveDate\": \"1997-01-01\",\n                    \"company\": \"BTR Sealing Systems N.A\",\n                    \"position\": \"Senior Accountant\",\n                    \"description\": \"Complete maintenance of the Design Center General Ledger. Prepared, reviewed and submitted accurate financial reports (monthly, quarterly and annually). Compiled detailed annual plan schedules in conformity with US GAAP and established corporate guidelines. Provided account analysis and miscellaneous reports to plant controllers, department managers, and VP’s of Finance. Translated financial statements from foreign currency to U.S. dollars. Developed and managed $1.8 million…\"\n                },\n                {\n                    \"hiredDate\": \"1993-01-01\",\n                    \"leaveDate\": \"1996-01-01\",\n                    \"company\": \"Waste Management, Inc.\",\n                    \"position\": \"Staff Accountant\",\n                    \"description\": \"Primarily involved in monthly, quarterly and yearly close of the Midwest Region (comprising four states and Ontario, Canada). Implemented account reconciliation standards for all divisions. Involved in yearly budget preparation. Audited divisional Accounts Receivable and Cash Accounts. Assisted divisional controllers with day-to-day operations when needed.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"B.SBusiness Administration; Accounting\"\n                },\n                {\n                    \"title\": \"University of Phoenix\",\n                    \"subTitle\": \"MastersBusiness Administration\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1676128653296,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Process Improvement\",\n                \"Microsoft Office\",\n                \"Management\",\n                \"Microsoft Excel\",\n                \"Leadership\",\n                \"Microsoft Word\",\n                \"PowerPoint\",\n                \"Outlook\",\n                \"HTML\",\n                \"Real Estate Transactions\",\n                \"Variance Analysis\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 10483,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"BEE6C40E4086C8ED23DF642850B103D7\",\n            \"canonical\": \"https://www.linkedin.com/in/amitchoudhury\",\n            \"fullname\": \"Amit Choudhury\",\n            \"headline\": \"#Mobility #Cross-Domain #System #Safety #Security\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4D03AQF3SPcMX5Q0Yg/profile-displayphoto-shrink_800_800/0/1601863149028?e=2147483647&v=beta&t=9l1HlzxL0MdvTUzozNuTcgb-0g25PsVgCUjEmNAPt8I\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/amitchoudhury\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Robert Bosch GmbH\",\n                    \"position\": \"Sr Functional Safety Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2022-03-01\",\n                    \"leaveDate\": \"2022-07-01\",\n                    \"company\": \"Argo AI\",\n                    \"position\": \"System Safety Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2019-09-01\",\n                    \"leaveDate\": \"2021-12-01\",\n                    \"company\": \"Visteon Corporation\",\n                    \"position\": \"ADAS System Architect\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2017-06-01\",\n                    \"leaveDate\": \"2019-09-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Functional Safety, Cyber Security Architect, ADAS Systems\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2015-02-01\",\n                    \"leaveDate\": \"2017-06-01\",\n                    \"company\": \"ZF Friedrichshafen AG\",\n                    \"position\": \"Principal Systems Engineer, ADAS Systems\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2014-04-01\",\n                    \"leaveDate\": \"2015-01-01\",\n                    \"company\": \"Hella KGaA Hueck & Co.\",\n                    \"position\": \"Sr. Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2012-11-01\",\n                    \"leaveDate\": \"2014-03-01\",\n                    \"company\": \"ADVICS NA\",\n                    \"position\": \"Senior Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2011-05-01\",\n                    \"leaveDate\": \"2012-11-01\",\n                    \"company\": \"ESG GmbH\",\n                    \"position\": \"Senior Systems Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2011-05-01\",\n                    \"leaveDate\": \"2012-11-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"AUTOSAR Specialist Engineer (Contract)\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1998-01-01\",\n                    \"leaveDate\": \"2011-05-01\",\n                    \"company\": \"Renesas Electronics Corporation\",\n                    \"position\": \"Staff Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1996-01-01\",\n                    \"leaveDate\": \"1997-01-01\",\n                    \"company\": \"Cigital\",\n                    \"position\": \"Software Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1994-01-01\",\n                    \"leaveDate\": \"1997-01-01\",\n                    \"company\": \"Silicon Interfaces\",\n                    \"position\": \"VLSI Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1994-01-01\",\n                    \"leaveDate\": \"1996-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Software Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1990-01-01\",\n                    \"leaveDate\": \"1994-01-01\",\n                    \"company\": \"Tata Telecom Limited\",\n                    \"position\": \"Senior Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [\n                \"Bengali\",\n                \"English\",\n                \"Hindi\",\n                \"Spanish\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Government Engineering College, Jabalpur\",\n                    \"subTitle\": \"BSEE\"\n                },\n                {\n                    \"title\": \"Rani Durgavati Vishwavidyalaya\",\n                    \"subTitle\": \"BSEE\"\n                },\n                {\n                    \"title\": \"St. Aloysius HS School\",\n                    \"subTitle\": \"Higher Secondary Certificate\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1676125856101,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am an Open Networker. I accept all invites. Academia, Industry, Science and Humanities are truly welcome! My intentions and goals with LinkedIN profile: Connect and Collaborate. To leverage each other via knowledge acquisition (as much allowed without violating mutual employers contract). Information age is about creating values with cross functional knowledge. This is truly transforming the industrial age products with increasingly iterative & integrated level of analysis of holistic system and synthesis of its optimal components. My specific area are: - Product System Safety — ISO 26262, SOTIF - System Engineering - Electronic System Level Modeling and Simulation -- Model Based Development -- Model Driven Architecture -- Distributed System Level Prototype -- ECU Virtual Prototype - GENIVI, ANDROID - Standardized Platform SW for Embedded Applications for Automotive, Mobile Infotainment and Industrial. -- Product-line Methodology and Development Tooling - Drumming: Bongo, Cajon (Amateur Level) - Languages and Cuisine (Amateur Level)\",\n            \"skills\": [\n                \"Embedded Systems\",\n                \"Embedded Software\",\n                \"Microcontrollers\",\n                \"Software Engineering\",\n                \"Simulations\",\n                \"Electronics\",\n                \"Automotive\",\n                \"Software Development\",\n                \"ASIC\",\n                \"Programming\",\n                \"Systems Engineering\",\n                \"Powertrain\",\n                \"Debugging\",\n                \"ARM\",\n                \"System Architecture\",\n                \"RF\",\n                \"VLSI\",\n                \"Digital Signal Processors\",\n                \"Security\",\n                \"Simulation\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11546,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"9678B9B51F375F938CECF51F4E76F128\",\n            \"canonical\": \"https://www.linkedin.com/in/jeffreysbeckett\",\n            \"fullname\": \"Jeff Beckett\",\n            \"headline\": \"Senior Consultant at Maven Wave, an Atos Company\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"information technology and services\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQH7K00oh6ekOQ/profile-displayphoto-shrink_800_800/0/1523039148250?e=2147483647&v=beta&t=ahSiGSJzIKxCP4rbjs7lnsOyyWty1wwJLw2V0XoK1gs\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/jeffreysbeckett\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-06-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Maven Wave Partners LLC\",\n                    \"position\": \"Senior Consultant\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-10-01\",\n                    \"leaveDate\": \"2021-06-01\",\n                    \"company\": \"DocNetwork\",\n                    \"position\": \"AWS Engineer\",\n                    \"description\": \"I currently serve as DocNetworks DevOps Engineer to help manage their growing Infrastructure in AWS. My current Projects for this year include: - Automating Infrastructure Deployments and scaling via Terraform and CloudFormation - Manage and Maintain our current application performance with Prometheus and Grafana - We run a good mix of Linux, MySQL, Redis, and use Docker Containers extensively - Create better deployment pipelines with GitLab, GitHub, Jenkins -…\"\n                },\n                {\n                    \"hiredDate\": \"2018-03-01\",\n                    \"leaveDate\": \"2019-10-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Virtualization Engineer\",\n                    \"description\": \"Currently, I serve Ford Motor Companys Virtualization Engineering team as a Subject Matter Expert focusing in VM performance and optimization. My recent work has been to lead the design and deployment of Turbonomic/Cisco Workload Optimization Manager across 3 data centers and Microsoft Azure. As a senior member of my team, I am helping to drive the integration of Agile and DevOps methodologies in to our workflows so we can support the current and future needs of Ford Motor Company.\"\n                },\n                {\n                    \"hiredDate\": \"2015-04-01\",\n                    \"leaveDate\": \"2019-10-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Agile Cloud Engineer - VMWARE Engineering team\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2017-10-01\",\n                    \"leaveDate\": \"2018-03-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Team Lead - Agile Cloud Engineering\",\n                    \"description\": \"I served as the Team Lead of FoMoCos Agile Hosting Infrastructure Cloud for the final six months it was funded for. During this time, my team of four DevOps engineers bolstered new IT initiatives by enabling teams to deploy new development environments within hours. Our engineers also served as SMEs when teams needed knowledge gaps filled. At the sunset of the project we had deployed ~5700 virtual machines through HP Cloud Service Automation toolkit. Windows 2012 R2 servers could…\"\n                },\n                {\n                    \"hiredDate\": \"2014-09-01\",\n                    \"leaveDate\": \"2015-03-01\",\n                    \"company\": \"Kaufman Financial Group\",\n                    \"position\": \"Systems Engineer. VMware and Storage\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2011-07-01\",\n                    \"leaveDate\": \"2014-06-01\",\n                    \"company\": \"Logicalis Group\",\n                    \"position\": \"Data Center Services Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2005-12-01\",\n                    \"leaveDate\": \"2011-07-01\",\n                    \"company\": \"Thomson Reuters\",\n                    \"position\": \"Web Services Administrator\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2004-08-01\",\n                    \"leaveDate\": \"2005-12-01\",\n                    \"company\": \"The University of Toledo\",\n                    \"position\": \"Desktop Support Technician - Level 2\",\n                    \"description\": \"Maintained and managed Desktops and Servers throughout the university faculty and staff. Ran desktop migrations and also created specifications for new hardware. Served as a main point of contact for technical issues that could not be handled via phone or email.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Toledo\",\n                    \"subTitle\": \"Bachelor's DegreeInformation Technology, Business Economics3.4 GPA\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1673906726763,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Specialties Include: HP Cloud Service Automation HP Operations Orchestration HP Server Automation HP DMA SUSE 11/12 Administration Windows Server 2003/200R28/2012R2 EMC VNX EMC Avamar EMC Recoverpoint Data retention and disaster recovery VMware 6.5/5.5/5.0 server virtualization VMware Site Recovery Manager Powershell scripting Double-Take Availability replication IBM XIV storage SolarWinds Orion Dell Compellent and Equallogic Sharepoint VMturbo/Turbonomic virtualization management RHEL Administration\",\n            \"skills\": [\n                \"Windows Server\",\n                \"VMware\",\n                \"EMC Avamar\",\n                \"EMC Recoverpoint\",\n                \"Powershell\",\n                \"Yottabyte backup solution\",\n                \"Linux server administration\",\n                \"Citrix Xenapp Administration\",\n                \"EMC Storage\",\n                \"Linux System Administration\",\n                \"Citrix Metaframe\",\n                \"Servers\",\n                \"Troubleshooting\",\n                \"RecoverPoint\",\n                \"Data Center\",\n                \"Technical Support\",\n                \"VMware ESX\",\n                \"Disaster Recovery\",\n                \"Virtualization\",\n                \"Software Documentation\",\n                \"Cisco Technologies\",\n                \"Citrix\",\n                \"Microsoft Exchange\",\n                \"Active Directory\",\n                \"SAN\",\n                \"DNS\",\n                \"Hyper-V\",\n                \"Hardware\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6619,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"F305E05E1711B631A954275361832797\",\n            \"canonical\": \"https://www.linkedin.com/in/michaelcrawford1975\",\n            \"fullname\": \"Michael Crawford\",\n            \"headline\": \"Manufacturing Chief Engineer, Powertrain - Global/ North America\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/michaelcrawford1975\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Stellantis\",\n                    \"position\": \"Manufacturing Chief Engineer, Powertrain - Director, Global/North America\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-05-01\",\n                    \"leaveDate\": \"2021-08-01\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Director - Deputy Plant Manager Toledo Assembly Complex\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2018-02-01\",\n                    \"leaveDate\": \"2019-05-01\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Plant Manager Trenton North Engine Plant\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2014-05-01\",\n                    \"leaveDate\": \"2018-01-01\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Director Program Management and Manufacturing Engineering (ME) Engine Programs\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2013-06-01\",\n                    \"leaveDate\": \"2014-05-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Manufacturing Manager - Trenton Engine Complex\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2011-01-01\",\n                    \"leaveDate\": \"2013-05-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Sr. Manufacturing Engineering Manager\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2004-07-01\",\n                    \"leaveDate\": \"2011-11-01\",\n                    \"company\": \"GEMA\",\n                    \"position\": \"Manufacturing Engineering Manager\",\n                    \"description\": \"Responsible for all process engineering, project management, long term and short term problem solving Managed six Lead engineers for all Machining and Assembly. Responsible for development of all engineers, 32 Electrical and Mechanical Responsible for maintenance improvement projects, scheduling, implementation and execution. Developed training program for non-experienced engineers Complete Reactive Green belt projects (3 Problem Solving, 1 Decision Making) Lead…\"\n                },\n                {\n                    \"hiredDate\": \"2004-04-01\",\n                    \"leaveDate\": \"2004-07-01\",\n                    \"company\": \"North Star BlueScope Steel, LLC\",\n                    \"position\": \"Melt Shop EAF Engineer\",\n                    \"description\": \"Managing multiple studies for evacuation control Process and capability control implementation on EAF – furnace optimization & emission optimization\"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2004-04-01\",\n                    \"company\": \"North Star Steel Michigan\",\n                    \"position\": \"Rolling Mill Maintenance General Foreman\",\n                    \"description\": \"Rolling Mill Maintenance General Supervisor - 10/02 – 4/04 ******************************************************************** Direct supervision of seven salaried supervisors & technicians and forty UAW skilled trades personnel Managed $6M maintenance budget, CMMS utilization as well as Predictive Maintenance Technology implementation Responsible for Environmental, Safety and ISO/QS compliance. Reduced Downtime %50 while also reducing total labor hours. IBM Greenbelt &…\"\n                },\n                {\n                    \"hiredDate\": \"1997-06-01\",\n                    \"leaveDate\": \"2000-01-01\",\n                    \"company\": \"North Star Steel Arizona\",\n                    \"position\": \"Rolling Mill Electrical Maintenance Supervisor\",\n                    \"description\": \"High Performance Team management environment at a Greenfield plant Direct supervision of 12 Electrical Technicians. Responsible for the Electrical Maintenance of the entire Rolling Mill – Rod and Rebar, Water Treatment Plant, and 5 Mill-duty overhead cranes. Worked closely with ABB to improve process and eliminate recurrent control problems responsible of large amounts of downtime. Electrical Downtime was reduced over %500 during my supervision. Melt Shop Electrical Supervisor -…\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"The University of Toledo\",\n                    \"subTitle\": \"BSEEElectrical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1673906218989,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Director of Manufacturing Director of Manufacturing Engineering Plant Management Powertrain Vehicle Assembly Process and Maintenance Engineering Lean Manufacturing Specialties: University of Michigan Lean Manufacturing Certification World Class Manufacturing - Auditor\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 9298,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"xzF9_3gBh0Jh8fFlHtVW\",\n            \"canonical\": \"https://www.linkedin.com/in/pengfeiren\",\n            \"fullname\": \"Pengfei Ren\",\n            \"headline\": \"Senior Software Engineer at Aurora\",\n            \"location\": \"Warren, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQHMun44cbjasw/profile-displayphoto-shrink_800_800/0/1593470773798?e=2147483647&v=beta&t=-cYRzYUxH7zYMkY-jfccPysS39B8UbOl8frj9gqLdxo\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/pengfeiren\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-09-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Aurora Health Care\",\n                    \"position\": \"Senior Software Engineer, Perception\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2020-07-01\",\n                    \"leaveDate\": \"2022-09-01\",\n                    \"company\": \"Argo AI\",\n                    \"position\": \"Senior Software Engineer, Perception\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2019-02-01\",\n                    \"leaveDate\": \"2020-07-01\",\n                    \"company\": \"Horizon Robotics\",\n                    \"position\": \"Applied AI Researcher, Perception\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2018-03-01\",\n                    \"leaveDate\": \"2019-02-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Research Engineer, Perception & Localization\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Chinese\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"Master's degreeComputer Science3.9/4.0\"\n                },\n                {\n                    \"title\": \"Chongqing University\",\n                    \"subTitle\": \"Bachelor's degreeAutomation Engineering/Robotics\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1673905344794,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.5144566,\n                    \"lon\": -83.01465259999999\n                },\n                \"formattedAddress\": \"Warren, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 1782,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"wh9PN3kB-DOZvg69apfM\",\n            \"canonical\": \"https://www.linkedin.com/in/chetna-sinha-5958a913\",\n            \"fullname\": \"Chetna Sinha\",\n            \"headline\": \"Director- HR Technology and Workforce Analytics at Beaumont Health\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQGCiFJiCm_liQ/profile-displayphoto-shrink_800_800/0/1603472780385?e=2147483647&v=beta&t=0LQHUH_2CU0hMtRmjGwpR-dtYxLGxjzofrmr-vwrFmI\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/chetna-sinha-5958a913\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2019-04-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Beaumont Health\",\n                    \"position\": \"Director- HR Technology and Workforce Analytics\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-01-01\",\n                    \"leaveDate\": \"2019-04-01\",\n                    \"company\": \"Henry Ford Hospital and Health Network\",\n                    \"position\": \"Director- HR Technology\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2013-04-01\",\n                    \"leaveDate\": \"2018-12-01\",\n                    \"company\": \"Henry Ford Hospital and Health Network\",\n                    \"position\": \"Manager - HR Technology\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2008-03-01\",\n                    \"leaveDate\": \"2008-11-01\",\n                    \"company\": \"Computer Sciences Corporation\",\n                    \"position\": \"Senior Manager\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2006-03-01\",\n                    \"leaveDate\": \"2007-12-01\",\n                    \"company\": \"TechTeam Global Inc.\",\n                    \"position\": \"Peoplesoft Functional Consultant\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2003-06-01\",\n                    \"leaveDate\": \"2004-04-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"PeopleSoft Team Lead\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2000-08-01\",\n                    \"leaveDate\": \"2002-07-01\",\n                    \"company\": \"Dow Inc.\",\n                    \"position\": \"Lead Developer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1996-01-01\",\n                    \"leaveDate\": \"1999-06-01\",\n                    \"company\": \"KPMG International\",\n                    \"position\": \"Senior Consultant\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [],\n            \"lastScraperUpdateTime\": 1673904939020,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Innovative and experienced leader in HCM solutions across different industries with a business focus on realignment and process improvement. Extensive experience in implementation of Human Capital Management (HR/Payroll/Total Rewards/Recruiting/Performance/Talent) systems. Successful track record of building, implementing and supporting strategic solutions for a dynamic enterprise. Proven ability to provide functional (subject matter) expertise in all areas of HR systems, lead projects through design, development and implementation in alignment with the organization needs. Led several PeopleSoft HCM implementations and other ERP solutions through implementation, upgrades and integrations, while guiding the teams through major project milestones. Strong leader with exceptional people skills who can effectively lead project teams and deliver consistently on time and budget. Strong technical competencies in PeopleSoft, databases and software development who has also worked in emerging technology areas like machine learning, AI, neural networks and predictive analytics. Specialties: * Strategic Planning and execution * Technology Implementation/migration * HR Transformation, Complex ERP Implementation * PeopleSoft, Workday, HR Analytics, Databases * Change Management * HR M & A\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6682,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"Xp0Bym8BFVkhVdRhjdhl\",\n            \"canonical\": \"https://www.linkedin.com/in/christinachateauvert\",\n            \"fullname\": \"Christina Chateauvert, Ph.D.\",\n            \"headline\": \"Human Experience Advocate I Compassionate People Partner I Design Thinker\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"human resources\",\n            \"picture\": \"https://media-exp1.licdn.com/dms/image/C4E03AQGjKqarCJ3WOA/profile-displayphoto-shrink_800_800/0/1600222783656?e=2147483647&v=beta&t=OvgJjm-Lo9XVAmQfJd7_ReN-FNT82rkGgJ_a4DQHers\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/christinachateauvert\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-12-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Allstate\",\n                    \"position\": \"Senior Manager, People/Employee Experience\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2021-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Yes, And Coaching Institute\",\n                    \"position\": \"Director of Learner Experience\",\n                    \"description\": \"We have a unique opportunity ahead of us to help the world end a cycle of stress and burnout as it recovers from the Covid pandemic. We believe that coaching with a Yes, And mindset - with confidence, flexibility and creativity - has the distinctive ability to help accelerate our emergence from this time with resilience, purpose and joy.\"\n                },\n                {\n                    \"hiredDate\": \"2020-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Institute for Corporate Productivity (i4cp)\",\n                    \"position\": \"Chair of Employee Experience Exchange\",\n                    \"description\": \"Chair who sets the agenda and direction for the Employee Experience Exchange. Our exchange meets every other month to exchange best practices and brainstorm next practices that trailblaze my industry. As co-chair, I lead a community of diverse talent and culture leaders aimed at exploring how to design, operationalize, and scale the moments, attitudes, and behaviors with a purpose to shape a satisfying employee experience. This exchange provides the space to share best practices and…\"\n                },\n                {\n                    \"hiredDate\": \"2019-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"c.c.design LLC\",\n                    \"position\": \"Founder and Chief Human Experience Officer\",\n                    \"description\": \"Care & Curiosity [consulting in and coaching with design thinking]. Also facilitate individual and small group Dare to Lead™ coaching experiences.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2015-01-01\",\n                    \"leaveDate\": \"2022-04-01\",\n                    \"company\": \"Wayne State University\",\n                    \"position\": \"Adjunct Instructor, Learning Design and Technology\",\n                    \"description\": \"Redesigned and facilitated courses in the Learning Design and Technology Graduate Program that included the Design Thinking & Knowledge and the Capstone Course in Learning Design and Technology. Assisted students in using design thinking methodology to craft learning experiences and enhance improvement initiatives through empathic design and developing comprehensive design plans.\"\n                },\n                {\n                    \"hiredDate\": \"2019-06-01\",\n                    \"leaveDate\": \"2021-11-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Talent Programs Manager, Employee Experience\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2018-03-01\",\n                    \"leaveDate\": \"2019-06-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Design Thinking Learning Lead\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2016-04-01\",\n                    \"leaveDate\": \"2018-03-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"IT User Experience Strategist, Digital Worker\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2014-11-01\",\n                    \"leaveDate\": \"2016-04-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"End User Engagement Lead, Digital Worker\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2018-10-01\",\n                    \"leaveDate\": \"2020-12-01\",\n                    \"company\": \"the SheHive\",\n                    \"position\": \"Partner\",\n                    \"description\": \"The SheHive provides classes, coaching, and community for women focused on connection and self-empowerment.\"\n                },\n                {\n                    \"hiredDate\": \"2017-07-01\",\n                    \"leaveDate\": \"2017-12-01\",\n                    \"company\": \"IDEO U\",\n                    \"position\": \"Alumni Coach, Global Network of Coaches, Fellowship\",\n                    \"description\": \"Alumni Coach for Insights for Innovation and From Ideas to Action\"\n                },\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2014-11-01\",\n                    \"company\": \"Blue Cross Blue Shield Association\",\n                    \"position\": \"Talent Management Specialist, Human Performance\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2010-08-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"Blue Cross Blue Shield Association\",\n                    \"position\": \"Instructional Designer, Sales Force Development\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"Doctor of Philosophy - PhDLearning Design and Technology\"\n                },\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"MTDInstructional Design\"\n                },\n                {\n                    \"title\": \"Emerson College\",\n                    \"subTitle\": \"MAWriting and Publishing\"\n                },\n                {\n                    \"title\": \"Olivet College\",\n                    \"subTitle\": \"BAEnglish and Communications\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1672001767760,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Inspired by the quote, “she designed a life she loved,” I’ve created a life as a champion of human experience, a compassionate people partner, and a design thinker. My design and implementation of employee experiences ensures that skilled, engaged talent can be utilized at the right time in the right place, resulting in a work atmosphere that cultivates personal and professional growth. Driving successful business transformation is what I do best. To do this, I work side-by-side with leadership, shifting mindsets, asking the tough questions, and developing and implementing creative solutions to solve complicated challenges through people, process, and technology. I enjoy connecting disparate people and ideas to solve challenging problems that previously seemed insurmountable or to revisit a business process that has “always been done this way” for improvements. My expertise lies in unleashing the power of people by creating working environments that prioritize employee support, learning and innovation, and ensuring that employees are challenged to grow personally and professionally to contribute in meaningful ways that positively impact the business. I am entrepreneurial-minded. I am a learner. I am a researcher. I am a connector. Please feel free to contact me with any thoughts or questions about my work - I am always interested in making new professional acquaintances.\",\n            \"skills\": [\n                \"Employee Experience\",\n                \"Leadership\",\n                \"Talent Management\",\n                \"Human-Centered Design\",\n                \"Instructional Design\",\n                \"Blended Learning\",\n                \"Learning Management\",\n                \"Onboarding\",\n                \"Performance Management\",\n                \"Succession Planning\",\n                \"Coaching\",\n                \"Leadership Development\",\n                \"Employee Engagement\",\n                \"Public Speaking\",\n                \"Facilitation\",\n                \"Training\",\n                \"Training Delivery\",\n                \"Instructor-led Training\",\n                \"Organizational Development\",\n                \"Organizational Effectiveness\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 4529,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"AeRSSYUBrAcoFWo16PTn\",\n            \"canonical\": \"https://www.linkedin.com/in/renee-bowers-bba-4ab84394\",\n            \"fullname\": \"Renee Bowers BBA\",\n            \"headline\": \"Rental Assistance Counselor at United Community Housing Coalition\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media-exp1.licdn.com/dms/image/D5603AQEBYYRV4D6SZA/profile-displayphoto-shrink_800_800/0/1669108521849?e=2147483647&v=beta&t=h95FkUAXnwO1wa7uvdw1y3C7IW5tcKujy3E7emRd0ek\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/renee-bowers-bba-4ab84394\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-06-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"United Community Housing Coalition\",\n                    \"position\": \"Rental Assistance Counselor\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2021-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Advanced Clinical\",\n                    \"position\": \"Operations Assistant\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-02-01\",\n                    \"leaveDate\": \"2019-10-01\",\n                    \"company\": \"Volunteer caregiver services in Metro Detroit Area Hospice of Michigan recipient\",\n                    \"position\": \"Seeking new career opportunities.\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2016-11-01\",\n                    \"leaveDate\": \"2018-10-01\",\n                    \"company\": \"Volunteer caregiver services in Metro Detroit Area Hospice of Michigan recipient\",\n                    \"position\": \"Volunteer Caregiver\",\n                    \"description\": \"• Entrusted to financial management (banking, bill payments and legal matters) • Schedule and transport to business and physician appointments • Provide medication disbursement, meals, personal care, prescription refills, hygiene and domestic services • Support with community activities • Manage caregiver shift rotation to provide around the clock care • Provide transportation for relief assistance\"\n                },\n                {\n                    \"hiredDate\": \"2016-10-01\",\n                    \"leaveDate\": \"2016-12-01\",\n                    \"company\": \"Toyota Tsusho America\",\n                    \"position\": \"Sales Assistant\",\n                    \"description\": \"• Monitored customer forecast, actual delivered volume and open POs • Facilitated purchase order activity to secure on-time delivery • Processed for payment broker delivery invoices in compliance to customs and hazmat policies • Reported buy/sell pricing discrepancies between customer /vendor documents\"\n                },\n                {\n                    \"hiredDate\": \"2014-11-01\",\n                    \"leaveDate\": \"2014-12-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Design Release Engineer Assistant\",\n                    \"description\": \"• Wrote miscellaneous material type work orders and track through implementation on to production • Escalated unresolved and high-risk issues • Assisted DRE’s with creating BOM orders • Communicated with eSOR and ePeer approvers on status up through approval to facilitate timely sign-offs. • Issued part shippers, pick-up and delivered parts to GM and supplier locations • Monitored and ensure DRE codes are up to date on all released part numbers • Maintained detailed time log…\"\n                },\n                {\n                    \"hiredDate\": \"2012-10-01\",\n                    \"leaveDate\": \"2014-03-01\",\n                    \"company\": \"Severstal\",\n                    \"position\": \"Traffic Coordinator\",\n                    \"description\": \"• Experienced in negotiating freight rates and carrier contracting • Monitored, tracked and maximize shipments while minimizing cost per transit • Customer liaison to carriers, sales team and traffic manager • Coordinated flow of inbound raw materials via rail and vessel • Experienced in dispatching steel bands and coils • Managed planning and scheduling outbound shipments to processor • Processed freight bill exceptions generated via third party vendor\"\n                },\n                {\n                    \"hiredDate\": \"2007-08-01\",\n                    \"leaveDate\": \"2011-07-01\",\n                    \"company\": \"Convergys\",\n                    \"position\": \"OnStar-Customer Service Problem Resolution\",\n                    \"description\": \"Call intake Sales and services Account management Escalations Monitoring Point resolutions Maintained sales quotas\"\n                },\n                {\n                    \"hiredDate\": \"2001-11-01\",\n                    \"leaveDate\": \"2005-07-01\",\n                    \"company\": \"RadioShack\",\n                    \"position\": \"District Sales Administrator\",\n                    \"description\": \"Manage district office District Manager Assistant Recruiting and staffing Coaching and developing sales team Process hire pack Perform terminations Data systems management\"\n                },\n                {\n                    \"hiredDate\": \"1975-09-01\",\n                    \"leaveDate\": \"2001-01-01\",\n                    \"company\": \"Kmart International Headquarters\",\n                    \"position\": \"Logistics Event Planner\",\n                    \"description\": \"• Managed merchandise inventory disposition for 14 distribution centers, over 2000 stores world-wide • Supervised seasonal clean-outs using WMS, AS400 and Planner Workbench, which generated annual savings over $1,000,000 • Planned seasonal and promotional events via coordination with merchandisers, in-store dates, planned quantities and vendor information • Expedited time-sensitive domestic and import shipments via Import 2000 and EDI 856/ASN’s, which required 24 hour resolution on 90%…\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Davenport University\",\n                    \"subTitle\": \"Bachelor's DegreeBusiness Administration\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1671972429165,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Creative and energetic professional skilled in Accounting, Administration, Customer Service and Logistics. I am dependable and committed to responsibility. I am always in a position to learn.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 14204,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"KYpGSYUBlI4_KugK120n\",\n            \"canonical\": \"https://www.linkedin.com/in/ramiro-pinon\",\n            \"fullname\": \"Ramiro Pinon\",\n            \"headline\": \"Director (Technical Track) - Electric Propulsion Systems\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://static-exp1.licdn.com/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/ramiro-pinon\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-07-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Aviation & Aerospace Co. - Confidential\",\n                    \"position\": \"Director (Technical Track) - Electric Propulsion Systems\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2022-02-01\",\n                    \"leaveDate\": \"2022-07-01\",\n                    \"company\": \"ELMS: Electric Last Mile Solutions\",\n                    \"position\": \"Senior Manager - Electric Propulsion Systems Validation (Strategy & Execution)\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2021-07-01\",\n                    \"leaveDate\": \"2022-02-01\",\n                    \"company\": \"ELMS: Electric Last Mile Solutions\",\n                    \"position\": \"Manager - Power Electronics Systems Application\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2021-02-01\",\n                    \"leaveDate\": \"2021-07-01\",\n                    \"company\": \"Froude, Ltd/Inc | Dynamometer Test Systems\",\n                    \"position\": \"Technical Leader - Electric Motor & Power Electronics Technology (Strategy)\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2020-02-01\",\n                    \"leaveDate\": \"2021-02-01\",\n                    \"company\": \"Mercedes-Benz Research & Development North America, Inc.\",\n                    \"position\": \"Senior Electric Motor Controls & Calibrations Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2017-01-01\",\n                    \"leaveDate\": \"2020-01-01\",\n                    \"company\": \"Stellantis (Previously FCA)\",\n                    \"position\": \"Electric Motor Controls & Calibrations Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2014-01-01\",\n                    \"leaveDate\": \"2016-12-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Research Scientist\",\n                    \"description\": \"Ford Motor Co. Research & Advanced Engineering - Precision Systems Design Laboratory (U of M) - Investigation of Gasoline Direct Injection (GDI) Fuel Injectors - Novel High Performance Solenoid Actuated GDI Fuel Injector Designs (Patent)\"\n                },\n                {\n                    \"hiredDate\": \"2013-09-01\",\n                    \"leaveDate\": \"2016-12-01\",\n                    \"company\": \"University of Michigan\",\n                    \"position\": \"Graduate Researcher\",\n                    \"description\": \"Precision Systems Design Laboratory - Graduate Instructor - Mechatronics Laboratory Graduate Course - Diaphragm Flexure Design improvements applied to Novel Moving Magnet Actuators - Robotic Instrument Tracking Endo-illuminator for Intraocular Surgeries (Publication)\"\n                },\n                {\n                    \"hiredDate\": \"2012-06-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"Massachusetts Institute of Technology\",\n                    \"position\": \"Undergraduate Researcher\",\n                    \"description\": \"- BioInstrumentation Laboratory - MSRP Program\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Ph.D.Mechanical Engineering - Advanced Controls / E-motors / A.I. (M.L. / Deep Learning) / FEA\"\n                },\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"M.Sc.Mechanical Engineering - Controls / Design\"\n                },\n                {\n                    \"title\": \"The University of Texas at El Paso\",\n                    \"subTitle\": \"B.Sc.(Honors)Mechanical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1671971640677,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"“Driven Leader, and Subject Matter Expert, with years of experience in both Global/Industry-Leading-Companies and Start-Ups/Niche-Product-Companies, experienced in directing teams, programs, and projects, advancing from beginning to end the Creation and Development of World-Class Technology in the areas of Electric Motors, Power electronics (AC Inverters, On-Board Chargers, EV Chargers), HV Batteries, and Advanced Propulsion Systems for the e-Mobility, Automotive, Aerospace, EV, and Testing industries. In Charge of Leading, Defining, and Executing Strategy involving a vast array of tasks crucial in development: Engineering Design (Alpha/Beta/Gamma stages), Testing (Test System Creation, Test-article calibration, DVP design, DMFEA, and End-of-line-testing), Simulation (MATLAB/Simulink, Hardware-in-the-Loop, Software-in-the-loop), and Algorithm Design (C Code, Model-Based-Code). Subject Matter Expert on other areas including Artificial Intelligence (Deep learning/Machine learning/Neural Networks) and Advanced Control strategies. Example-driven leadership style with strong emphasis on Team Development.”\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 3401,\n            \"selectedAt\": null\n        }\n    ],\n        \"count\": 23253\n}"}],"_postman_id":"9ca66fb6-ed8c-42a2-bea5-4939a895e019"},{"name":"Paged List of Prospects","event":[{"listen":"test","script":{"id":"9cd5859b-45bb-4352-bc45-db0ee1ca515c","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"CLEARANCE token is working\", () => {","    console.log(\"Tested with request.data: \", JSON.parse(request.data));","    const responseJson = pm.response.json(); ","    let status = true;","    responseJson.data.forEach((person) => {","        if (person.clearance == false) {","            status = false;","        }   ","    });","    ","    pm.environment.set(\"defaultRequestBody\", null);","","    pm.expect(status).to.eql(true);","});","","pm.test(\"Tha data is of correct format\", function () {","console.log('List of users Ids', pm.response.json());","pm.expect(pm.response.json()).to.have.property('selectedCount');","pm.expect(pm.response.json()).to.have.property('highlights');","pm.expect(pm.response.json()).to.have.property('data');","// pm.expect(pm.response.json()).to.have.property('count');","pm.expect(pm.response.json()['highlights'][0]).to.have.property('fields');","pm.expect(pm.response.json()['highlights'][0]).to.have.property('id');","","pm.expect(pm.response.json()['data'][0]).to.have.property('id');","pm.expect(pm.response.json()['data'][0]).to.have.property('canonical');","pm.expect(pm.response.json()['data'][0]).to.have.property('fullname');","pm.expect(pm.response.json()['data'][0]).to.have.property('headline');","pm.expect(pm.response.json()['data'][0]).to.have.property('location');","pm.expect(pm.response.json()['data'][0]).to.have.property('industry');","pm.expect(pm.response.json()['data'][0]).to.have.property('picture');","pm.expect(pm.response.json()['data'][0]).to.have.property('social');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('youtube');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('github');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('wordpress');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('facebook');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('foursquare');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('tumblr');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('google');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('personal');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('instagram');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('twitter');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('vimeo');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('flickr');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('blogspot');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('stackoverflow');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('stackexchange');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('linkedIn');","pm.expect(pm.response.json()['data'][0]).to.have.property('active');","pm.expect(pm.response.json()['data'][0]).to.have.property('trackedByUser');","pm.expect(pm.response.json()['data'][0]).to.have.property('likedByUser');","pm.expect(pm.response.json()['data'][0]).to.have.property('experienceCurrentList');","pm.expect(pm.response.json()['data'][0]).to.have.property('experiencePrevious');","","pm.expect(pm.response.json()['data'][0]).to.have.property('languagesList');","pm.expect(pm.response.json()['data'][0]).to.have.property('educationList');","// pm.expect(pm.response.json()['data'][0]['educationList'][0]).to.have.property('title');","// pm.expect(pm.response.json()['data'][0]['educationList'][0]).to.have.property('subTitle');","pm.expect(pm.response.json()['data'][0]).to.have.property('lastScraperUpdateTime');","pm.expect(pm.response.json()['data'][0]).to.have.property('military');","pm.expect(pm.response.json()['data'][0]).to.have.property('clearance');","pm.expect(pm.response.json()['data'][0]).to.have.property('about');","pm.expect(pm.response.json()['data'][0]).to.have.property('skills');","// loc","pm.expect(pm.response.json()['data'][0]).to.have.property('loc');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('geo');","pm.expect(pm.response.json()['data'][0]['loc']['geo']).to.have.property('lat');","pm.expect(pm.response.json()['data'][0]['loc']['geo']).to.have.property('lon');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('formattedAddress');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('country');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('state');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('cbsa');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('country_code');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('state_code');","pm.expect(pm.response.json()['data'][0]).to.have.property('experienceInDays');","pm.expect(pm.response.json()['data'][0]).to.have.property('selectedAt');","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"578b97bf-7c88-4984-9416-a715ce85be62","exec":["const newBody = `","{","    \"searchParameters\": [","        {","            \"parameterValue\": [],","            \"parameterType\": \"bool\",","            \"parameterKey\": \"clearance\"","        }","    ]","}","`;","pm.environment.set(\"defaultRequestBody\", newBody);"],"type":"text/javascript","packages":{}}}],"id":"03f036fb-d609-437d-a67f-e291ebb310fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{{defaultRequestBody}}"},"url":"//supplyData/listData/:page","description":"<p>This endpoint is an extension of the previous <a href=\"#list-of-prospects\">List of Prospects</a> endpoint. This endpoint returns the exact same information, divided into a maximum of 100 pages. Each page contains a maximum of 100 results; enter a whole number value 1-100 at the end of the path to return the 100 results associated with that page. </p>\n<p>This endpoint has 2 primary use cases. Firstly, if your visualization environment supports pages, you can make 100 individual requests (page 1-100) so your records are already broken up into pages of 100 results. Alternatively, you can choose a random page 1-100 to take a smaller sample of the total population for personalized research.</p>\n<p>Here is a description of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to use to create one.</p>\n<p><strong>Claro will show a maximum of 10k prospects per /listData/ query. Add a whole number value 1-100 in place of :page to see the 100 prospects on that page.</strong> </p>\n<p>Below is a sample query that will return page 1 of the prospects who live in Detroit that used to work at Ford, GM, or Chrysler and currently do not work at either of the three:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n\"searchParameters\": [\n            {\n                \"parameterValue\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ]\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"cbsa\"\n            },\n            {\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\"\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"general motors\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"ford\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"chrysler\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"NOT\",\n                \"parameterValue\": [\n                    \"NOT\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"general motors\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"ford\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"chrysler\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            }\n]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","listData",":page"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>Page number [min: 1, max: 100] (Required)</p>\n","type":"text/plain"},"type":"string","value":"1","key":"page"}]}},"response":[{"id":"330b7197-a725-4c08-8513-e2d6a7952186","name":"Leaving the Automotive Industry in Detroit (paged)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","type":"text","value":"{{token}}"}],"body":{"mode":"raw","raw":"{\n\"searchParameters\": [\n            {\n                \"parameterValue\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"cbsa\"\n            },\n            {\n                \"parameterValue\": [\n                    \"AND\"\n                ],\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\"\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"general motors\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"ford\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"chrysler\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"NOT\",\n                \"parameterValue\": [\n                    \"NOT\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"general motors\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"ford\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"chrysler\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            }\n]\n}"},"url":{"raw":"//supplyData/listData/:page","host":["/"],"path":["supplyData","listData",":page"],"variable":[{"id":"cdde6342-7958-499c-9b5e-bc03c2cf0f09","key":"page","value":"1","type":"string","description":"Page number [min: 1, max: 100] (Required)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Jul 2020 14:07:39 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"03d580515900001f21c90ec200000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5b029cc88b7b1f21-FRA"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"selectedCount\": 0,\n    \"data\": [\n        {\n            \"id\": \"8CAD5688DEF80C1773420873CC39BB38\",\n            \"canonical\": \"https://www.linkedin.com/in/lawrence-luca-0080138b\",\n            \"fullname\": \"Lawrence Luca\",\n            \"headline\": \"First Responder Police/Fire\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/D5603AQE1GiMNJ6uSeg/profile-displayphoto-shrink_800_800/0/1673750699530?e=2147483647&v=beta&t=gxA-YaOD4F11qorY79Ej59-OVfbu0MOAeRB8fGvknYk\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/lawrence-luca-0080138b\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": true,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Oakland County Sheriff Dept\",\n                    \"position\": \"Oakland County Sheriff Office\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2018-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"City of Troy\",\n                    \"position\": \"Fleet Mechanic\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2017-10-01\",\n                    \"leaveDate\": \"2023-06-01\",\n                    \"company\": \"City of Troy (Michigan)\",\n                    \"position\": \"Firefighter\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2022-01-01\",\n                    \"leaveDate\": \"2023-01-01\",\n                    \"company\": \"Bloomfield hills public saftey\",\n                    \"position\": \"Bloomfield hills public saftey\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2015-10-01\",\n                    \"leaveDate\": \"2018-02-01\",\n                    \"company\": \"Diesel doctors LLC\",\n                    \"position\": \"Chief Executive Officer\",\n                    \"description\": \"Business owner and operator.\"\n                },\n                {\n                    \"hiredDate\": \"2014-03-01\",\n                    \"leaveDate\": \"2015-10-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Diesel Technician\",\n                    \"description\": \"- Identify and determine parts required for repair of dissembled units - Perform all levels of preventative maintenance services - Identify warrantable repairs and document on repair order - Maintain work area appearance and safety - Road test Vehicles when necessary to diagnose malfunctions or to ensure that they are working properly -Use hand tools such as screwdrivers, pliers, wrenches, pressure gauges, and precision instruments, as well as power tools such as pneumatic Show more - Identify and determine parts required for repair of dissembled units - Perform all levels of preventative maintenance services - Identify warrantable repairs and document on repair order - Maintain work area appearance and safety - Road test Vehicles when necessary to diagnose malfunctions or to ensure that they are working properly -Use hand tools such as screwdrivers, pliers, wrenches, pressure gauges, and precision instruments, as well as power tools such as pneumatic wrenches, welding equipment, and jacks and hoists. - Inspect brake systems, steering mechanisms, wheel bearings, and other important parts to ensure that they are in proper operating condition. - Perform routine maintenance such as changing oil, checking batteries, and lubricating equipment and machinery. - Adjust and replace brakes, tighten bolts and screws, and reassemble equipment Show less\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Romanian\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Baker College of Owosso\",\n                    \"subTitle\": \"CertificationDiesel Mechanics Technology/Technician\"\n                },\n                {\n                    \"title\": \"University of Phoenix\",\n                    \"subTitle\": \"Associate's DegreeCriminal Justice/Police Science\"\n                },\n                {\n                    \"title\": \"Rochester high school 2000-2004\",\n                    \"subTitle\": \"-\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696160185119,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Do something good, it might change someone’s life!\",\n            \"skills\": [\n                \"Commercial Drivers License\",\n                \"Communication\",\n                \"moral integrity\",\n                \"Automotive Electrical Systems\",\n                \"automotive and truck braking systems\",\n                \"heavy duty diesel engine repair\",\n                \"Customer Satisfaction\",\n                \"Delegation\",\n                \"People Skills\",\n                \"Maintenance\",\n                \"Heavy Equipment\",\n                \"Preventive Maintenance\",\n                \"Vehicles\",\n                \"Welding\",\n                \"Motors\",\n                \"Parts\",\n                \"Diesel Engine\",\n                \"Automobile\",\n                \"Maintenance\",\n                \"Diesel\",\n                \"Supervisory Skills\",\n                \"Automotive\",\n                \"Machinery\",\n                \"Customer Service\",\n                \"Operations Management\",\n                \"Inventory Management\",\n                \"Testing\",\n                \"Leadership\",\n                \"Management\",\n                \"Microsoft Excel\",\n                \"Microsoft Office\",\n                \"Microsoft Word\",\n                \"Photoshop\",\n                \"PowerPoint\",\n                \"Research\",\n                \"Sales\",\n                \"Training\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 3501,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"pMIXDH8BdbruSb0IbqlB\",\n            \"canonical\": \"https://www.linkedin.com/in/raul-o-bed\",\n            \"fullname\": \"Raul Benitez\",\n            \"headline\": \"Product Owner | Systems engineer | Product engineer en Ford Motor Company\",\n            \"location\": \"Dearborn, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/raul-o-bed\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": true,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-09-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Sirius XM Holdings Inc.\",\n                    \"position\": \"Senior software - tester\",\n                    \"description\": \"Automation testing\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-08-01\",\n                    \"leaveDate\": \"2022-08-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Product Development Engineer\",\n                    \"description\": \"- Design, develop and run test plans, (functional, integration, black/white box testing, end to end), on breadboard/ bench/ in-vehicle testing. - Product management; signoffs, tracking/report defects, priorities management, GPDS milestones, requirements design, traceability and implementation, DFMEA, FUSA. - ECU virtual simulation for in-vehicle validation, android automotive simulation. - Technical design review with internal external clients and suppliers. - Embedded Show more - Design, develop and run test plans, (functional, integration, black/white box testing, end to end), on breadboard/ bench/ in-vehicle testing. - Product management; signoffs, tracking/report defects, priorities management, GPDS milestones, requirements design, traceability and implementation, DFMEA, FUSA. - ECU virtual simulation for in-vehicle validation, android automotive simulation. - Technical design review with internal external clients and suppliers. - Embedded system design for connected vehicle and telematics, UML, - In-vehicle connectivity system testing for L3 & L4 autonomous vehicles (LTE,Wi-Fi, automotive Ethernet). - In-vehicle connectivity system design for L0 toL4 vehicles based on QNX OS and Android automotive(LTE,Wi-Fi, automotive Ethernet, LAN). - C/C++ and python system prototyping and test application development for telematics. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2018-08-01\",\n                    \"leaveDate\": \"2019-08-01\",\n                    \"company\": \"Avon\",\n                    \"position\": \"Senior Software Analyst/ Developer\",\n                    \"description\": \"-System design. -Business analysis. -SQL database management. -Microsoft server administrator. -Supply chain, payments and logistics system management. -Translated internal customer requirements into written use cases. -Analysis and development of software (C++/Java EE) application for supply chain. -Technical support and software development for AVON Mexico nation wide supply chain.\"\n                },\n                {\n                    \"hiredDate\": \"2018-01-01\",\n                    \"leaveDate\": \"2019-08-01\",\n                    \"company\": \"Freelance.\",\n                    \"position\": \"Automation Engineer\",\n                    \"description\": \"- Software development with python, NodeJs, ruby, C++. - IoT system design, integration an implementation. - Linux systems operation. - Functional and manual testing - Symulink Model - Team management - Project management. - Client-Server system design, - Sensors selection and installation. - Hardware design, selection and impl\"\n                },\n                {\n                    \"hiredDate\": \"2017-01-01\",\n                    \"leaveDate\": \"2018-07-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"HMI CAE Engineer\",\n                    \"description\": \"- QML, JavaScript & C++ software development for infotainment system. - QML widgets and API development for ADAS and active safety systems such as Cruise Control/Adaptive Cruise, Lane Keeping System , Traffic Jam Assist, Traffic Sign Recognition. - Product management and HMI team management. - Manual functional testing of HMI models. - Hardware CAE design for prototyping. - Electronic circuits design for signals acquisition - Simulink system design for CAN signal acquisition Show more - QML, JavaScript & C++ software development for infotainment system. - QML widgets and API development for ADAS and active safety systems such as Cruise Control/Adaptive Cruise, Lane Keeping System , Traffic Jam Assist, Traffic Sign Recognition. - Product management and HMI team management. - Manual functional testing of HMI models. - Hardware CAE design for prototyping. - Electronic circuits design for signals acquisition - Simulink system design for CAN signal acquisition and automotive simulation. - API creation of HMI ADAS components for global markets. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2015-09-01\",\n                    \"leaveDate\": \"2017-07-01\",\n                    \"company\": \"Celex\",\n                    \"position\": \"Teacher of English Language\",\n                    \"description\": \" Basic, intermediate and advanced teaching.  3-30 student group handling.  Trimestral class planning.  Technical English tutoring to engineering students.  Translating of engineering texts and manuals.\"\n                },\n                {\n                    \"hiredDate\": \"2015-07-01\",\n                    \"leaveDate\": \"2015-12-01\",\n                    \"company\": \"DIAMSA\",\n                    \"position\": \"Field Engineer\",\n                    \"description\": \" Providing expert maintenance advice to operations through maintenance planning.  User formation.  Assembling of manuals and functionality guides.  Installing and configuring internal and external components.  Processes, products, services and toolbag proposal.  Installing hardware and software systems.  After-sales service.  Technical support.  Dealing with multiple providers.\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Spanish\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Instituto Politécnico Nacional\",\n                    \"subTitle\": \"Bachelor's degreeIndustrial Robotics EngineeringCounselor student 2013-2014\"\n                },\n                {\n                    \"title\": \"Colegio de Estudios Científicos y Tecnológicos del Estado de México\",\n                    \"subTitle\": \"TechnicianTécnico en electricidad\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696176946448,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Product Engineer with 5 years background working within technology industry. Polished in product management, system design, building digital models of concepts, testing and creating prototypes. Proficient in software development, system design, UI design, debugging and testing. Focused and results-oriented professional possessing strong communication and motivational skills. IoT enthusiast.\",\n            \"skills\": [\n                \"Liderazgo\",\n                \"Gestión de proyectos\",\n                \"Administración y dirección de empresas\",\n                \"Servicio de atención al cliente\",\n                \"Microsoft Office\",\n                \"Lean manufacturing\",\n                \"Electrónica\",\n                \"SolidWorks\",\n                \"Electricidad\",\n                \"AutoCAD\",\n                \"Mastercam\",\n                \"CNC\",\n                \"Mejora de procesos\",\n                \"Controlador lógico programable (PLC) de Allen Bradley\",\n                \"Programación con control numérico\",\n                \"Programación de PLC´s\",\n                \"Negociación\",\n                \"Neumática\",\n                \"Hidráulica\",\n                \"Microsoft Excel\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.3222599,\n                    \"lon\": -83.17631449999999\n                },\n                \"formattedAddress\": \"Dearborn, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 2983,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"4DE7ED0990486B7831FDD4080D7EBB14\",\n            \"canonical\": \"https://www.linkedin.com/in/angela-cook-pe-csp-64828018\",\n            \"fullname\": \"Angela CSP\",\n            \"headline\": \"Head of Environmental Protection, Sustainability, Security, Safety & Health USA & Canada\",\n            \"location\": \"Auburn Hills, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQEifb5iRJKY1Q/profile-displayphoto-shrink_800_800/0/1628295856047?e=2147483647&v=beta&t=XuFB6IxJttBCbvIkFWZxRq1iomMpxLKuhZYf817UqMc\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/angela-cook-pe-csp-64828018\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2020-11-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Vitesco Technologies Group AG\",\n                    \"position\": \"Head of Environmental Protection, Sustainability, Security, Safety & Health USA & Canada\",\n                    \"description\": \"Head of US & Canada ESH and Sustainability team, including leader of NA Crisis Team and emergency response programs. Leads US & Canada sustainability core team in support of CO2 neutrality roadmap with 2030 targets for clean mobility, climate protection, resource efficiency and circularity, responsible sourcing, and occupational safety & health. Also, manages environmental remediation at legacy sites.  Leads ESH & Sustainability functions for US & Canada manufacturing, R&D and Show more Head of US & Canada ESH and Sustainability team, including leader of NA Crisis Team and emergency response programs. Leads US & Canada sustainability core team in support of CO2 neutrality roadmap with 2030 targets for clean mobility, climate protection, resource efficiency and circularity, responsible sourcing, and occupational safety & health. Also, manages environmental remediation at legacy sites.  Leads ESH & Sustainability functions for US & Canada manufacturing, R&D and warehousing, managing a team of direct and indirect reports.  Sets North American KPIs and tracks sustainability and environmental objectives and targets  Workers Compensation Management and case review  Administers ESH e-Learning platform for R&D locations (SaaS),  Global ISO 14001 and 45001 internal auditor,  Implemented ISO 45003 Psycho-Social Risk Assessment in US & CAN  Coordinates insurance risk loss control visits and surveys by insurance vendors Show less\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2015-08-01\",\n                    \"leaveDate\": \"2020-11-01\",\n                    \"company\": \"Acument Global Technologies\",\n                    \"position\": \"Corporate EHS Manager - North America\",\n                    \"description\": \"Managed Acument Global Technologies North America EHS initiatives and policies including maintaining ISO 14001 Corporate Multi-Site Umbrella Certification, North America Sustainability requests, and Corporate Environmental, Health & Safety.  Directed US & Mexico EHS programs at 10 manufacturing plants and 2 distribution centers with a team of 10 direct and indirect reports,  Successfully led company to an umbrella multi-site certification for ISO 14001:2015 saving over $100k annually, Show more Managed Acument Global Technologies North America EHS initiatives and policies including maintaining ISO 14001 Corporate Multi-Site Umbrella Certification, North America Sustainability requests, and Corporate Environmental, Health & Safety.  Directed US & Mexico EHS programs at 10 manufacturing plants and 2 distribution centers with a team of 10 direct and indirect reports,  Successfully led company to an umbrella multi-site certification for ISO 14001:2015 saving over $100k annually,  Reduced Workers Compensation spend by 25% with strict case review and management,  Set corporate safety KPIs, and environmental objectives and targets,  Reported monthly EHS statistics to CEO and senior management team,  Maintained documentation for OSHA and EPA requirements  Conducted walk through/GEMBA audits at all facilities to eliminate unsafe acts and/or conditions, and environmental risks,  Local compliance management at the Fenton Processing Center including zinc and nickel plating lines, waste water treatment plants and heat treat processes. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2014-01-01\",\n                    \"leaveDate\": \"2015-08-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"EHS Manager - Viper Plant, Warren Stamping & Corporate Safety\",\n                    \"description\": \" Corporate Safety Manager for Powertrain - Launched new transmission plant from a safety perspective, - Audited new equipment and launch safety processes, - Lead of corporate Arc Flash program, - Key author for equipment safety specifications for industrial machinery manual.  EHS Department Manager Warren Stamping Plant - Led team of 6 direct and 4 indirect reports, - World Class Manufacturing (WCM) Safety Pillar Lead, - Obtained Show more  Corporate Safety Manager for Powertrain - Launched new transmission plant from a safety perspective, - Audited new equipment and launch safety processes, - Lead of corporate Arc Flash program, - Key author for equipment safety specifications for industrial machinery manual.  EHS Department Manager Warren Stamping Plant - Led team of 6 direct and 4 indirect reports, - World Class Manufacturing (WCM) Safety Pillar Lead, - Obtained ISO 50001 and OHSAS 18001 certifications at the plant, along with maintaining ISO14001.  Viper Plant EHS Manager and WCM Safety and Environment Pillar lead. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2012-03-01\",\n                    \"leaveDate\": \"2014-02-01\",\n                    \"company\": \"TRW\",\n                    \"position\": \"HS&E Manager\",\n                    \"description\": \"Manager for the Health, Safety, Environment and Security Department at TRW Automotive and was responsible for development and implementation of health and safety systems and processes for two Plants of 650 employees. Responsibilities included supervision of direct and indirect reports, oversight of Medical Department including Workers Compensation Management and case review; management of Security Department, environmental and energy engineers, metal working fluids contractor, and UAW trainer. Show more Manager for the Health, Safety, Environment and Security Department at TRW Automotive and was responsible for development and implementation of health and safety systems and processes for two Plants of 650 employees. Responsibilities included supervision of direct and indirect reports, oversight of Medical Department including Workers Compensation Management and case review; management of Security Department, environmental and energy engineers, metal working fluids contractor, and UAW trainer. Responsible for continued ISO 14001 certification. Ms. Cook was also the Business Unit Energy Champion for TRW North American Braking responsible for implementing and reporting on energy cost reduction projects at 12 Sites in US, Canada and Mexico. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1996-03-01\",\n                    \"leaveDate\": \"2012-03-01\",\n                    \"company\": \"Golder Associates\",\n                    \"position\": \"Senior Environmental Engineer & Regional Safety Coordinator\",\n                    \"description\": \"Regional Health and Safety Manager for the Great Lakes Operations (Michigan, Ohio, Illinois and Wisconsin offices) ensuring training requirements are met for staff and preparing or reviewing site-specific health and safety plans for various field efforts. As a consultant, I managed and completed many projects assisting manufacturing, transportation, mining, food and beverage, and pharmaceutical companies throughout the United States with their EHS compliance programs such as SPCC and SWPPP Show more Regional Health and Safety Manager for the Great Lakes Operations (Michigan, Ohio, Illinois and Wisconsin offices) ensuring training requirements are met for staff and preparing or reviewing site-specific health and safety plans for various field efforts. As a consultant, I managed and completed many projects assisting manufacturing, transportation, mining, food and beverage, and pharmaceutical companies throughout the United States with their EHS compliance programs such as SPCC and SWPPP plans, RMP and PSM programs and emergency response plans. I was also the regional health and safety trainer teaching HAZWOPER 4- hour and 8-hour, first aid, CPR, AED, DOT and RCRA courses for clients and internally for Golder employees. I performed In-Plant Environmental, Health and Safety Audits at for various clients to assist in meeting OSHA and EPA Compliance programs. I was the Program Director for the Canadian National Rail, Real Estate Program in the USA which involved conducting Phase I, II, III Environmental Site Assessments, decommissioning and demolition, tank removals, and regulated materials inventories at 120 properties in Michigan, Ohio, Indiana, Illinois, Vermont and Connecticut when CN purchased the Illinois Central Rail line and also the Grand Truck Rail Line. My responsibilities included client interface, project and personnel management, soliciting RFPs, scheduling field work, sampling and laboratory services, subcontractor oversight and contract negotiations. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1994-01-01\",\n                    \"leaveDate\": \"1996-03-01\",\n                    \"company\": \"Weston Solutions, Inc.\",\n                    \"position\": \"Environmental Engineer and Safety Officer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1993-05-01\",\n                    \"leaveDate\": \"1994-06-01\",\n                    \"company\": \"Halliburton Company\",\n                    \"position\": \"Environmental Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"MIT Professional Education\",\n                    \"subTitle\": \"Sustainable Industry, Clean Energy, Sustainable Infrastructure https://www.credential.net/9a6b0012-9043-48e3-bc30-9df29ec10809\"\n                },\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Master of Science, Bachelor of ScienceCivil and Environmental Engineering, 1993, Engineering Arts Civil Engineering & Business Minor, 1991\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696328476013,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Experienced Corporate Sustainability, Environmental, Health, Safety, and Security Manager focused on compliance and leadership of multi-site/multi-country EHS programs. Highlights include: lead US & Canada sustainability core team, ensure compliance with Federal, State and local environmental and safety regulations; lead regional auditing team for maintaining management system certifications (ISO 14001, 45001 and 50001), Worker’s Compensation management, responsible for training and tracking KPIs, crisis team and emergency response program leader. Supports CO2 neutrality roadmap with 2030 targets for clean mobility, climate protection, resource efficiency and circularity, responsible sourcing, and occupational safety & health. Certified Safety Professional (CSP), and a registered Professional Environmental Engineer (PE) in the State of Michigan. I have a key focus on internal customer service and team leadership.\",\n            \"skills\": [\n                \"Industrial Hygiene\",\n                \"EHS\",\n                \"Environmental\",\n                \"Emergency Management\",\n                \"Compliance Audits\",\n                \"PSM\",\n                \"Hazardous Waste Management\",\n                \"Environmental Compliance\",\n                \"Environmental Management\",\n                \"Occupational Health\",\n                \"HAZWOPER\",\n                \"Risk Assessment\",\n                \"RCRA\",\n                \"Safety Management\",\n                \"Auditing\",\n                \"Environmental Awareness\",\n                \"Environmental Management Systems\",\n                \"Safety Management Systems\",\n                \"Waste Management\",\n                \"Root Cause Analysis\",\n                \"Environmental Engineering\",\n                \"Accident Investigation\",\n                \"ISO 14001\",\n                \"Environmental Auditing\",\n                \"Industrial Safety\",\n                \"Workplace Safety\",\n                \"Construction Safety\",\n                \"Remediation\",\n                \"Quality Auditing\",\n                \"Environmental Consulting\",\n                \"Behavior Based Safety\",\n                \"Hazard Analysis\",\n                \"Hazardous Materials\",\n                \"Waste\",\n                \"Hazard Recognition\",\n                \"Environmental Impact Assessment\",\n                \"Mining\",\n                \"Safety Auditing\",\n                \"Ergonomics\",\n                \"Environmental Permitting\",\n                \"Asbestos\",\n                \"Phase I\",\n                \"EPA\",\n                \"Water\",\n                \"Environment, Health, and Safety (EHS)\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6875323,\n                    \"lon\": -83.2341028\n                },\n                \"formattedAddress\": \"Auburn Hills, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11112,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"E2515E542616659CF185CA1161383C48\",\n            \"canonical\": \"https://www.linkedin.com/in/sandystojkovski\",\n            \"fullname\": \"Sandy Stojkovski\",\n            \"headline\": \"CEO North America at Vitesco Technologies\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQHuvVU3ex_N_w/profile-displayphoto-shrink_800_800/0/1612565210341?e=2147483647&v=beta&t=AbcOtii3uXVTpirAsaT4RPghzWmyTccQeFyx-eSYfnw\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/sandystojkovski\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Vitesco Technologies Group AG\",\n                    \"position\": \"CEO & Head of Electrification Solutions Division North America\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2016-01-01\",\n                    \"leaveDate\": \"2017-01-01\",\n                    \"company\": \"Marelli\",\n                    \"position\": \"President and General Manager Powertrain North America\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2014-01-01\",\n                    \"leaveDate\": \"2015-01-01\",\n                    \"company\": \"ZF Friedrichshafen AG\",\n                    \"position\": \"Vice President Global Engineering Excellence\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"2014-01-01\",\n                    \"company\": \"AVL\",\n                    \"position\": \"President\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ricardo plc\",\n                    \"position\": \"Director, Complex Systems Engineering and Director US Government Market Sector\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"PAT Leader, Vehicle Engineering\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"BSMechanical Engineering\"\n                },\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"MastersBusiness Administration\"\n                },\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"MSIndustrial Manufacturing Systems Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696317561031,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am results oriented, hands-on strategic and operational leader with a technical foundation and broad business experience in the manufacturing industry with companies ranging in size from Fortune 500 corporations to start-ups. Collaborative and entrepreneurial, I build and lead teams to capitalize on change in technology based businesses. Competencies: Full P&L accountability, powertrain electrification, vision led leadership, business transformation (start up, turnaround, growth, restructuring, acquisition, spin-off), operational improvement, team and culture building, board advisor/member/interface.\",\n            \"skills\": [\n                \"Strategy\",\n                \"Automotive\",\n                \"Program Management\",\n                \"Product Development\",\n                \"Strategic Planning\",\n                \"New Business Development\",\n                \"Management Consulting\",\n                \"Management\",\n                \"Continuous Improvement\",\n                \"Leadership\",\n                \"Cross-functional Team Leadership\",\n                \"Business Development\",\n                \"Engineering\",\n                \"Engineering Management\",\n                \"Analytics\",\n                \"Enterprise Software\",\n                \"Business Strategy\",\n                \"Systems Engineering\",\n                \"Start-ups\",\n                \"Project Planning\",\n                \"Team Leadership\",\n                \"Competitive Analysis\",\n                \"Business Modeling\",\n                \"Risk Management\",\n                \"Six Sigma\",\n                \"Complex Systems\",\n                \"Innovation Based Growth\",\n                \"Fuel Economy Regulations\",\n                \"Scenario Planning\",\n                \"Value Proposition Analysis\",\n                \"Information Visualization\",\n                \"Lean Business Processes\",\n                \"Change Management\",\n                \"Analysis\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 2192,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"2mPNhIABdbruSb0Iq2IL\",\n            \"canonical\": \"https://www.linkedin.com/in/leif-millar\",\n            \"fullname\": \"Leif Millar\",\n            \"headline\": \"Software Analyst\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5103AQEVH3EDIwVgww/profile-displayphoto-shrink_800_800/0/1516921728291?e=2147483647&v=beta&t=Lk8X0uS1KVwDoJGKQjutdJuZ2KR7PC0sPNGqiGIQRA4\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": {\n                    \"url\": \"https://www.facebook.com/leif.millar\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/leif-millar\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Rapita Systems\",\n                    \"position\": \"Embedded Software Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Embedded Software Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"University of Michigan\",\n                    \"position\": \"Research Assistant\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2017-05-01\",\n                    \"leaveDate\": \"2017-07-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Autonomous Vehicle Software Engineer Intern\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2016-05-01\",\n                    \"leaveDate\": \"2016-08-01\",\n                    \"company\": \"ESG Automotive USA\",\n                    \"position\": \"Infotainment Software Engineer Intern\",\n                    \"description\": \"**Supporting Ford Motor Company** * Automate modification of DBC files using Python to support vehicle emulation on Test Development Kit (TDK). * Implement unit testing framework in MATLAB using Jenkins to remotely initiate tests of TDK vehicle emulation states and manage test log data.\"\n                },\n                {\n                    \"hiredDate\": \"2015-05-01\",\n                    \"leaveDate\": \"2015-08-01\",\n                    \"company\": \"The Mitre Corporation\",\n                    \"position\": \"Application Developer Intern\",\n                    \"description\": \"* Develop CAVT radio capability simulation application for the US Army using C#, HTML, and .NET framework in Visual Studio. * Designed and implemented algorithm for placing platforms on map according to placement in echelon structure.\"\n                },\n                {\n                    \"hiredDate\": \"2014-05-01\",\n                    \"leaveDate\": \"2014-08-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Strategy and Planning Intern\",\n                    \"description\": \"* Conducted bench-marking of OEMs in the automotive industry to examine how strategic objectives influence make/buy decisions. * Created net impact tool to analyze how different sourcing decisions will affect NPV, headcount, and floor space across GM North American plants. * Side Project: Automated conversion of parts breakdown file for bill of material generation program compatibility. Saves 15.6 engineering hours per week.\"\n                },\n                {\n                    \"hiredDate\": \"2012-05-01\",\n                    \"leaveDate\": \"2013-08-01\",\n                    \"company\": \"Texas Instruments Incorporated\",\n                    \"position\": \"Product Test Engineer Intern\",\n                    \"description\": \"Note: Summer internship for 2012 and 2013. * Tested and made recommendations to strengthen 20 wafer probe test interface card diagnostic programs in Pascal, improving fault detection capabilities of and increasing automated test program generation capabilities * Performed statistical analysis on wafer test results of over 200 testers to determine root source of high fail rates for top-10 failing test programs; actively monitored testers to identify potential problems in test setup Show more Note: Summer internship for 2012 and 2013. * Tested and made recommendations to strengthen 20 wafer probe test interface card diagnostic programs in Pascal, improving fault detection capabilities of and increasing automated test program generation capabilities * Performed statistical analysis on wafer test results of over 200 testers to determine root source of high fail rates for top-10 failing test programs; actively monitored testers to identify potential problems in test setup and material production * Automated report generation of weekly test data top-10 offenders, saving 5 engineering hours per week Show less\"\n                },\n                {\n                    \"hiredDate\": \"2004-01-01\",\n                    \"leaveDate\": \"2010-01-01\",\n                    \"company\": \"United States Air Force\",\n                    \"position\": \"F-15 Avionics Backshop Technician\",\n                    \"description\": \"* Operated and maintained F-15 electronics warfare test station and 500+ aircraft components and contributed to monthly repair of over $30 million of equipment with 92% equipment serviceability rate from 2006-2009 * Led team to plan and organize avionics maintenance activities of electronics warfare section. Contributed to 35% lower than Air Force average backlog from 2008-2009 and contributed to 96% quality assurance pass rate from 2007-2009 * Performed major hardware upgrade of Show more * Operated and maintained F-15 electronics warfare test station and 500+ aircraft components and contributed to monthly repair of over $30 million of equipment with 92% equipment serviceability rate from 2006-2009 * Led team to plan and organize avionics maintenance activities of electronics warfare section. Contributed to 35% lower than Air Force average backlog from 2008-2009 and contributed to 96% quality assurance pass rate from 2007-2009 * Performed major hardware upgrade of electronic warfare test station, resulting in increased accuracy of performance testing and 20% decrease in system-wide run time Show less\"\n                }\n            ],\n            \"languagesList\": [\n                \"German\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan College of Engineering\",\n                    \"subTitle\": \"MSEComputer Science Engineering\"\n                },\n                {\n                    \"title\": \"University of Michigan College of Engineering\",\n                    \"subTitle\": \"BSEComputer Engineering\"\n                },\n                {\n                    \"title\": \"Oakland Community College\",\n                    \"subTitle\": \"N/APre-Engineering3.9\"\n                },\n                {\n                    \"title\": \"Community College of the Air Force\",\n                    \"subTitle\": \"Associate in Applied ScienceAvionic Systems Technology4.0\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696313672063,\n            \"military\": false,\n            \"clearance\": true,\n            \"about\": \"After starting my career in the automotive industry working on embedded system software development using Vector-based AUTOSAR tools, I am looking to move into aeronautical, medical device, or startup embedded system software development.\",\n            \"skills\": [\n                \"C++\",\n                \"Teamwork\",\n                \"Microsoft Excel\",\n                \"PowerPoint\",\n                \"Microsoft Word\",\n                \"Project Management\",\n                \"Public Speaking\",\n                \"Matlab\",\n                \"Data Analysis\",\n                \"Testing\",\n                \"Electrical Troubleshooting\",\n                \"C\",\n                \"Engineering\",\n                \"Debugging\",\n                \"Microsoft Office\",\n                \"Java\",\n                \"Verilog HDL\",\n                \"Visual Basic\",\n                \"Verilog\",\n                \"AUTOSAR\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 3353,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"87B70474C9845A300F2D6B3573E798CA\",\n            \"canonical\": \"https://www.linkedin.com/in/mark-greenwald-9697911\",\n            \"fullname\": \"Mark Greenwald\",\n            \"headline\": \"Manufacturing Quality Systems | Supplier Quality and Development | Operational Excellence\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Machinery\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5103AQE3b1BdXO4MQw/profile-displayphoto-shrink_800_800/0/1516317682251?e=2147483647&v=beta&t=P4I9S6cBYtTWLC-d5_Bu9lF3NdyHVuXyqG8rgLJMQ_A\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/mark-greenwald-9697911\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2017-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Thermo King Corporation\",\n                    \"position\": \"VP of Quality\",\n                    \"description\": \"Thermo King is a $2 B global leader in transport refrigeration and heating for trailers, trucks, buses, rail cars, and shipboard containers.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2017-03-01\",\n                    \"company\": \"Ingersoll Rand Inc.\",\n                    \"position\": \"VP, Global Supplier Quality and Development\",\n                    \"description\": \"Ingersoll Rand is a $14 B global business committed to creating and sustaining safe, comfortable and efficient environments. Brands - include Club Car, Ingersoll Rand, Thermo King and Trane.\"\n                },\n                {\n                    \"hiredDate\": \"2006-05-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"Eaton Corporation, PLC\",\n                    \"position\": \"Global Director - Supplier Development -Vehicle Group\",\n                    \"description\": \"A $22 B diversified industrial company that manufactures electrical power distribution and control equipment, hydraulic products, aerospace propulsion systems, truck safety systems and automotive systems.\"\n                },\n                {\n                    \"hiredDate\": \"2001-01-01\",\n                    \"leaveDate\": \"2006-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Powertrain Manager - Supplier Technical Assistance\",\n                    \"description\": \"A $112B fortune 500 company which designs, develops, manufactures, and services cars and trucks worldwide.\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2001-01-01\",\n                    \"company\": \"Rolls-Royce North America\",\n                    \"position\": \"North American Director - Value Improvement and Supplier Quality\",\n                    \"description\": \"A $13B global company which designs, develops and manufactures integrated power systems for use on land, at sea and in the air.\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Commodity Manager - Supplier Technical Assistance\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"State University of New York College at Buffalo\",\n                    \"subTitle\": \"BSIndustrial Technology\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696305676748,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am an innovative, decisive and hands-on executive with a history of leading geographically dispersed and culturally diverse organizations. My global leadership experience with Fortune 500 companies in Automotive, Aerospace and Diversified Industrials has enabled me to successfully develop and deploy multi-site quality and operational excellence architectures for both internal manufacturing and suppliers. This has led to a proven track record of developing and executing strategies that deliver bottom line results. My skills allow me to build and effectively lead cross-functional teams and align organizations around winning operational strategies. My cross-industry experience coupled with my authentic leadership style equips me with broad expertise in quality management systems, customer quality, supplier development, operational excellence, talent management and employee development. Technical/Systems Competencies • Manufacturing Quality Systems (ISO, IATF, APQP, PPAP) • Supplier Quality Systems • Customer Quality • Warranty Reduction • Lean Deployment • A3 Problem Solving Leadership Competencies • Transformational Thinking • Servant Leadership • Coaching/Mentoring • Cross-Functional Collaboration • Leadership Through Influence • Change Management\",\n            \"skills\": [\n                \"Lean Manufacturing\",\n                \"Supplier Quality\",\n                \"Automotive\",\n                \"Manufacturing\",\n                \"Supply Chain\",\n                \"Sourcing\",\n                \"Global Sourcing\",\n                \"Kaizen\",\n                \"Kanban\",\n                \"Supply Chain Management\",\n                \"Value Stream Mapping\",\n                \"Supply Management\",\n                \"Manufacturing Engineering\",\n                \"Quality System\",\n                \"FMEA\",\n                \"Supplier Development\",\n                \"Six Sigma\",\n                \"Industrial Engineering\",\n                \"Continuous Improvement\",\n                \"5S\",\n                \"Program Management\",\n                \"APQP\",\n                \"Leadership\",\n                \"Cross-functional Team Leadership\",\n                \"Procurement\",\n                \"TQM\",\n                \"DMAIC\",\n                \"Manufacturing Operations Management\",\n                \"Root Cause Analysis\",\n                \"Strategic Sourcing\",\n                \"Production Planning\",\n                \"ISO\",\n                \"Aerospace\",\n                \"MRP\",\n                \"Process Engineering\",\n                \"Toyota Production System\",\n                \"PPAP\",\n                \"Engineering Management\",\n                \"Product Development\",\n                \"Process Improvement\",\n                \"Operational Excellence\",\n                \"TPM\",\n                \"Materials Management\",\n                \"Purchasing\",\n                \"Quality Management\",\n                \"SPC\",\n                \"Manufacturing Operations\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8921,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"tNwb5nABFVkhVdRhDVe9\",\n            \"canonical\": \"https://www.linkedin.com/in/rachelawoodruff\",\n            \"fullname\": \"Rachel Woodruff\",\n            \"headline\": \"Corporate Legal, Compliance & Regulatory Affairs\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"law practice\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQGI2EuUZUv68w/profile-displayphoto-shrink_800_800/0/1517282220225?e=2147483647&v=beta&t=96q_proLxfvmKIAUdXovgqbKBgumQ0UmH_FtuFMSppQ\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/rachelawoodruff\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Optum\",\n                    \"position\": \"Senior Recruiter: Corporate Legal, Compliance & Regulatory Affairs\",\n                    \"description\": \"Optum is a health services and innovation company on a mission to help people live healthier lives and to help make the health system work better for everyone. Optum, part of the UnitedHealth Group family of businesses, is powering modern health care by connecting and serving the whole health system across 150 countries. We combine cutting-edge technology, the worlds largest health care database and vast expertise to improve health care delivery, quality and efficiency. We are Show more Optum is a health services and innovation company on a mission to help people live healthier lives and to help make the health system work better for everyone. Optum, part of the UnitedHealth Group family of businesses, is powering modern health care by connecting and serving the whole health system across 150 countries. We combine cutting-edge technology, the worlds largest health care database and vast expertise to improve health care delivery, quality and efficiency. We are revolutionizing health care that serves more than 100,000 physicians, practices and other health care facilities, as well as 127 million individual consumers. How we power modern health: - Data and analytics - Health care delivery - Health care operations - Pharmacy care services - Population health management - Advisory services Simpler health plans, better experience, healthier lives. Our Values: Integrity - Honor commitments. Never compromise ethics. Compassion - Walk in the shoes of people we serve and those with whom we work. Relationships - Build trust through collaboration. Innovation - Invent the future, learn from the past. Performance - Demonstrate excellence in everything we do. Learn more about Optum at: https://www.optum.com/ Search and apply for Optum careers at: https://www.workatoptum.com Show less\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-02-01\",\n                    \"leaveDate\": \"2021-12-01\",\n                    \"company\": \"Baker McKenzie\",\n                    \"position\": \"Recruitment Manager, North America\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2016-05-01\",\n                    \"leaveDate\": \"2019-02-01\",\n                    \"company\": \"Robert Half International Inc.\",\n                    \"position\": \"Project Fulfillment Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2014-03-01\",\n                    \"leaveDate\": \"2016-05-01\",\n                    \"company\": \"Lumen Legal\",\n                    \"position\": \"Legal Recruiter\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2009-05-01\",\n                    \"leaveDate\": \"2014-03-01\",\n                    \"company\": \"Freelancer\",\n                    \"position\": \"Attorney\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2000-08-01\",\n                    \"leaveDate\": \"2007-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Marketing Communications Project Manager\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [\n                \"English\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University Law School\",\n                    \"subTitle\": \"Juris Doctor\"\n                },\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"Bachelor of Arts - BA\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696286588420,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Recruitment Manager for Baker Mckenzies new Tampa Center State Bar of Michigan: Active and in good standing\",\n            \"skills\": [\n                \"Recruiting\",\n                \"Applicant Tracking Systems\",\n                \"Sourcing\",\n                \"Project Management\",\n                \"Public Speaking\",\n                \"Corporate Communications\",\n                \"Strategic Planning\",\n                \"Leadership\",\n                \"Marketing Communications\",\n                \"Marketing Strategy\",\n                \"Relativity\",\n                \"Document Review Staffing\",\n                \"RFP Generation\",\n                \"Vendor Contracts\",\n                \"Distance Learning\",\n                \"RFP Management\",\n                \"Resume Writing\",\n                \"Screening Resumes\",\n                \"Sendouts\",\n                \"Secondments\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7580,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"7F265376F899A6E9B7F6FBF8730ACAFB\",\n            \"canonical\": \"https://www.linkedin.com/in/karen-carmody-204b281b\",\n            \"fullname\": \"Karen Carmody\",\n            \"headline\": \"Instructional Designer at Raytheon Professional Services\",\n            \"location\": \"Allen Park, Michigan\",\n            \"industry\": \"Professional Training & Coaching\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4D03AQHZinIPiplEGA/profile-displayphoto-shrink_800_800/0/1516883368482?e=2147483647&v=beta&t=cA4YT1Ftd67M_cNUGFe38rLFPPLZqbxn1sQak-8mbYY\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/karen-carmody-204b281b\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2010-07-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Raytheon Company\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Design and develop web-based training programs for global initiatives.\"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Raytheon Company\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Design and coordinate the development of a 2 hour web-based technical training program for General Motors Brazil. The course was translated into Portuguese and required many specific design considerations. Both the SME and client reside in Brazil, which offered the opportunity to work internationally.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"2010-01-01\",\n                    \"company\": \"Launch Learning Group\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Assisted in the design of a one week state-certified training program to prepare individuals for the State of Michigan's insurance broker licensing exam.\"\n                },\n                {\n                    \"hiredDate\": \"2006-01-01\",\n                    \"leaveDate\": \"2007-02-01\",\n                    \"company\": \"Pulte Homes Incorporated\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Design and develop both on-line and instructor led training programs, as well as conduct train-the-trainer sessions to prepare the staff for implementation. Programs included a financial forecasting software program for senior analysts in the Finance Division and a comprehensive reporting software program used throughout the Purchasing Division.\"\n                },\n                {\n                    \"hiredDate\": \"2004-08-01\",\n                    \"leaveDate\": \"2005-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Responsibilities: Design web-based training programs for the Division of Health and Occupational Safety. These programs help the North American facilities align operations with the new OSHA standards. Programs included Hazard Communication, Electrical Arc Safety and The Protection of Drinking Water.\"\n                },\n                {\n                    \"hiredDate\": \"2002-07-01\",\n                    \"leaveDate\": \"2003-08-01\",\n                    \"company\": \"Blue Care Network\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Design, develop, implement and facilitate training to support the launch of a new data management software program. Extensive work done to align workflows, processes and procedures. Training medium included instructor-led, self-study, computer-based and on-the-job training.\"\n                },\n                {\n                    \"hiredDate\": \"1998-11-01\",\n                    \"leaveDate\": \"2003-08-01\",\n                    \"company\": \"Tracey & Associates Incorporated\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Design, develop and facilitate various training programs including, but not limited to, leadership development courses for GM University (interactive distance learning), an operations curriculum for ADP-Ford and a Creative Thinking course for Chrysler executives (both instructor-led).\"\n                },\n                {\n                    \"hiredDate\": \"2001-01-01\",\n                    \"leaveDate\": \"2001-10-01\",\n                    \"company\": \"Kmart Resource Center\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Responsibilities: Oversee project completion for the Interactive Distance Learning Team, conduct needs assessments, design instruction, develop materials and facilitate distance learning sessions. Analyze session data, prepare summary reports, and present training results to clients. Maintain technical integrity of the studio by performing routine analyses and troubleshooting as needed. Advertise and promote the capabilities of interactive distance learning to internal clients.\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2000-10-01\",\n                    \"company\": \"UAW-Blue Cross Blue Shield of Michigan\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Responsibilities: Design a corporate-wide leadership development curriculum for management and union employees. Oversee material development as completed by both Wayne State University and external CBT developers. Evaluate available and appropriate computer-based and web-based instruction, select vendor resources and oversee customization. Provide change management consultation as policies were adjusted to align with legal provisions.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Detroit Mercy\",\n                    \"subTitle\": \"Bachelors of ScienceEducation; Special Education; Special Education\"\n                },\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"Masters of ArtsEducation; Instructional Technology; Interactive Multimedia\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696280495015,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I have worked as an instructional designer for 11 years. Analysis, design, development, implementation, facilitation and evaluation have all been part of my professional responsibilities. The courses I have designed cover a wide range of content areas including healthcare, construction, retail, health and safety, insurance, and automotive to name a few. Delivery methods have included web-based, computer-based, instructor led, self-study and interactive distance learning. I prefer project-based work and have benefited tremendously from working with a wide range of organizations. Specialties: web-based, computer-based, instructor led, self-study and interactive distance learning\",\n            \"skills\": [\n                \"Program Management\",\n                \"Curriculum Design\",\n                \"Training\",\n                \"Leadership Development\",\n                \"E-Learning\",\n                \"Change Management\",\n                \"Analysis\",\n                \"Teaching\",\n                \"Employee Training\",\n                \"Distance Learning\",\n                \"Instructional Design\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.2575385,\n                    \"lon\": -83.2110375\n                },\n                \"formattedAddress\": \"Allen Park, MI 48101, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7213,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"D760DB287AE20B219CE750343F35DC64\",\n            \"canonical\": \"https://www.linkedin.com/in/yu-sun-4a289910\",\n            \"fullname\": \"Yu Sun\",\n            \"headline\": \"Principal Software Engineer at WBTL USA\",\n            \"location\": \"Utica, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/yu-sun-4a289910\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2020-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"WBTL USA Inc\",\n                    \"position\": \"Principal Software Engineer\",\n                    \"description\": \"Developing vision based Autonomous Driving Assistance System. Basic sofftware module development based Autosar architecture, including modeling and implementing the communication between ECU and Sensors, as well as different software modules.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2017-03-01\",\n                    \"leaveDate\": \"2020-05-01\",\n                    \"company\": \"Zenuity\",\n                    \"position\": \"Senior Algorithm Engineer\",\n                    \"description\": \"Developing software for multi sensor perception(radar, lidar, camera) and data fusion, and target tracking algorithms in autonomous driving system.\"\n                },\n                {\n                    \"hiredDate\": \"2012-08-01\",\n                    \"leaveDate\": \"2017-03-01\",\n                    \"company\": \"MAGNA ELECTRONICS LIMITED\",\n                    \"position\": \"Lead Control Software Engineer on ADAS\",\n                    \"description\": \"Developing model based control software for camera-based ADAS features, including lateral control ( lane centering, lane keeping), longitudinal control (ACC). Verification in simulation using Carmaker and vehicle test.\"\n                },\n                {\n                    \"hiredDate\": \"2005-05-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Senior Research Engineer\",\n                    \"description\": \"My job is related to automotive research and development, It mainly involves the subjects of sensor fusion, vehicle control, diagnosis of vehicular battery charging system, and advanced control technology of propulsion systems.\"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2004-01-01\",\n                    \"company\": \"Michigan State University\",\n                    \"position\": \"Research Assistant at Robotics Automation Lab\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Ph.D.Electrical and Computer Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696273029106,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Simulink\",\n                \"Matlab\",\n                \"C++\",\n                \"Embedded Systems\",\n                \"Robotics\",\n                \"Labview\",\n                \"Simulations\",\n                \"Automotive\",\n                \"Testing\",\n                \"Algorithms\",\n                \"Optimization\",\n                \"Programming\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6261446,\n                    \"lon\": -83.0335384\n                },\n                \"formattedAddress\": \"Utica, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8189,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"290s6XABFVkhVdRheDkN\",\n            \"canonical\": \"https://www.linkedin.com/in/franktyrybon\",\n            \"fullname\": \"Frank Tyrybon\",\n            \"headline\": \"Market Development Manager at Evonik Degussa\",\n            \"location\": \"Wyandotte, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static-exp1.licdn.com/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/franktyrybon\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2006-04-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Evonik Industries AG\",\n                    \"position\": \"Market Development Manager\",\n                    \"description\": \"Identify new applications and increase market share for Evonik Degussa High Performance Polymers.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2003-01-01\",\n                    \"leaveDate\": \"2006-01-01\",\n                    \"company\": \"Summit Polymers\",\n                    \"position\": \"Project Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2003-01-01\",\n                    \"company\": \"Injectronics\",\n                    \"position\": \"Project Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1998-01-01\",\n                    \"leaveDate\": \"1999-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Chemical Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Detroit Mercy\",\n                    \"subTitle\": \"BSChemical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696270806145,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.21420639999999,\n                    \"lon\": -83.14992389999999\n                },\n                \"formattedAddress\": \"Wyandotte, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 9315,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"W6ZpbH4BbmB1jfD0EDd_\",\n            \"canonical\": \"https://www.linkedin.com/in/phphilpott\",\n            \"fullname\": \"Paul MSME)\",\n            \"headline\": \"Technical Solutions Executive - Automotive Named Accounts at Autodesk - Automotive Engineer\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQEcLOovv57E5g/profile-displayphoto-shrink_800_800/0/1591180650072?e=2147483647&v=beta&t=bAmLYwL8m3KGlorkntwUzk_zPajCIsgX4QEbm4IY-fY\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/phphilpott\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Autodesk, Inc.\",\n                    \"position\": \"Technical Solutions Executive\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2008-06-01\",\n                    \"leaveDate\": \"2016-01-01\",\n                    \"company\": \"Fisher Unitech LLC\",\n                    \"position\": \"Senior PLM-PDM Implementation Consultant\",\n                    \"description\": \"RESPONSIBLITIES: Implemented SolidWorks PDM projects on various customer sites, remotely and onsite, including SQL Server install. Participated in sales cycle: perform demonstrations, help prospects clarify and prioritize their needs, design custom solutions that match those needs, manage expectations, construct appealing possibilities that they had not anticipated. Manage projects to bring within budget, and assist customer with obtaining additional funding if needed. Established Show more RESPONSIBLITIES: Implemented SolidWorks PDM projects on various customer sites, remotely and onsite, including SQL Server install. Participated in sales cycle: perform demonstrations, help prospects clarify and prioritize their needs, design custom solutions that match those needs, manage expectations, construct appealing possibilities that they had not anticipated. Manage projects to bring within budget, and assist customer with obtaining additional funding if needed. Established and maintained productive customer relations to keep project pipeline full and to leave each initial project as likely sources of future projects. Designed and implemented data migrations from Workgroup PDM, Windows shared drives, and arbitrary vault systems. Designed creative configuration solutions that take software beyond its normal capabilities. Advised customers on best practices and watch-outs; foster customer dependency as necessary member of data management team. Traveled 75% time to work onsite at customer facilities. ACCOMPLISHMENTS: Billed annual counseling hours of $300,000 - $400,000, including two years 100% billable. Led API programmers to develop set of SW PDM AddIns that provide commonly desired functionality. Led API programmers to develop tool to migrate CAD files from Windows folders into SW PDM vault. Companys first in-house implementation consultant; built all processes, practices, and documentation from scratch. Corporate leader in billable hours every year. Regular recognition as Employee of the Month, at least once each year. Show less\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Teamcenter PLM Application Engineer: C3P Business Unit\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1997-08-01\",\n                    \"leaveDate\": \"2007-05-01\",\n                    \"company\": \"Ben Carson Lifetime Scholars\",\n                    \"position\": \"Director, Co-Founder\",\n                    \"description\": \"The Lifetime Scholars Program operated out of Lawrence Tech University and then Wayne State University for ten years. We trained 150 Detroit-area High School students per semester & summer for the SAT as well as the basic math, grammar, and reading comprehension skills that form the bases for all rigorous academic fields. Most of our students were at risk and from designated failing high schools. We produced data proving that such students attain academic excellence when rigorously drilled Show more The Lifetime Scholars Program operated out of Lawrence Tech University and then Wayne State University for ten years. We trained 150 Detroit-area High School students per semester & summer for the SAT as well as the basic math, grammar, and reading comprehension skills that form the bases for all rigorous academic fields. Most of our students were at risk and from designated failing high schools. We produced data proving that such students attain academic excellence when rigorously drilled by subject matter experts who provide them encouragement, a detailed gameplan, and a suitable workspace. See our legacy webpage: http://lifetimescholars.keygraphicdesign.com/ Show less\"\n                },\n                {\n                    \"hiredDate\": \"1998-01-01\",\n                    \"leaveDate\": \"2004-01-01\",\n                    \"company\": \"The Second City\",\n                    \"position\": \"Writer, Performer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1990-01-01\",\n                    \"leaveDate\": \"1992-10-01\",\n                    \"company\": \"Austin American-Statesman\",\n                    \"position\": \"Contributing Writer\",\n                    \"description\": \"Music writer\"\n                },\n                {\n                    \"hiredDate\": \"1989-01-01\",\n                    \"leaveDate\": \"1992-01-01\",\n                    \"company\": \"The Daily Texan\",\n                    \"position\": \"Columnist\",\n                    \"description\": \"Named editorial page editor at the student paper of the University of Texas.\"\n                },\n                {\n                    \"hiredDate\": \"1989-01-01\",\n                    \"leaveDate\": \"1992-01-01\",\n                    \"company\": \"KAZI 88.7 Radio\",\n                    \"position\": \"On Air Personality\",\n                    \"description\": \"Long live soul music! I spun vinyl on the FM dial. ConFunkShun, The Time, Chaka Khan, Frankie Beverly & MAZE, Teena Maria, Slave, LTD, The Whispers, Rick James, Bobby Womack, Ohio Players, etc.\"\n                },\n                {\n                    \"hiredDate\": \"1988-01-01\",\n                    \"leaveDate\": \"1992-01-01\",\n                    \"company\": \"United States Army\",\n                    \"position\": \"Infantry Soldier - Army Reserves\",\n                    \"description\": \"Transferred to reserves to attend college. 11 Bravo!\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Georgia Institute of Technology\",\n                    \"subTitle\": \"Master’s DegreeMechanical Engineering\"\n                },\n                {\n                    \"title\": \"The University of Texas at Austin\",\n                    \"subTitle\": \"Bachelor’s DegreeMechanical Engineering\"\n                },\n                {\n                    \"title\": \"Florida Agricultural and Mechanical University\",\n                    \"subTitle\": \"Master of ScienceBiochemistry\"\n                },\n                {\n                    \"title\": \"Prairie View A&M University\",\n                    \"subTitle\": \"First year of collegeMechanical Engineering\"\n                },\n                {\n                    \"title\": \"Lbj High School\",\n                    \"subTitle\": \"-\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696270599709,\n            \"military\": false,\n            \"clearance\": true,\n            \"about\": \"An Austin boy who has served many technical roles across Detroits fabled automotive industry. Greatest achievement: training over a thousand Detroit high school students in academic rigor at the Lifetime Scholars program that I founded and directed.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8065,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"aaUjU3sBnZOAU3NytchY\",\n            \"canonical\": \"https://www.linkedin.com/in/markwgreenwald\",\n            \"fullname\": \"Mark Greenwald\",\n            \"headline\": \"Manufacturing Quality Systems | Supplier Quality and Development | Operational Excellence\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5103AQE3b1BdXO4MQw/profile-displayphoto-shrink_800_800/0/1516317682251?e=2147483647&v=beta&t=P4I9S6cBYtTWLC-d5_Bu9lF3NdyHVuXyqG8rgLJMQ_A\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/markwgreenwald\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2017-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Thermo King Corporation\",\n                    \"position\": \"VP of Quality\",\n                    \"description\": \"Thermo King is a $2 B global leader in transport refrigeration and heating for trailers, trucks, buses, rail cars, and shipboard containers.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2017-03-01\",\n                    \"company\": \"Ingersoll Rand Inc.\",\n                    \"position\": \"VP, Global Supplier Quality and Development\",\n                    \"description\": \"Ingersoll Rand is a $14 B global business committed to creating and sustaining safe, comfortable and efficient environments. Brands - include Club Car, Ingersoll Rand, Thermo King and Trane.\"\n                },\n                {\n                    \"hiredDate\": \"2006-05-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"Eaton Corporation, PLC\",\n                    \"position\": \"Global Director - Supplier Development -Vehicle Group\",\n                    \"description\": \"A $22 B diversified industrial company that manufactures electrical power distribution and control equipment, hydraulic products, aerospace propulsion systems, truck safety systems and automotive systems.\"\n                },\n                {\n                    \"hiredDate\": \"2001-01-01\",\n                    \"leaveDate\": \"2006-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Powertrain Manager - Supplier Technical Assistance\",\n                    \"description\": \"A $112B fortune 500 company which designs, develops, manufactures, and services cars and trucks worldwide.\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2001-01-01\",\n                    \"company\": \"Rolls-Royce North America\",\n                    \"position\": \"North American Director - Value Improvement and Supplier Quality\",\n                    \"description\": \"A $13B global company which designs, develops and manufactures integrated power systems for use on land, at sea and in the air.\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Commodity Manager - Supplier Technical Assistance\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"State University of New York College at Buffalo\",\n                    \"subTitle\": \"BSIndustrial Technology\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696270416266,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am an innovative, decisive and hands-on executive with a history of leading geographically dispersed and culturally diverse organizations. My global leadership experience with Fortune 500 companies in Automotive, Aerospace and Diversified Industrials has enabled me to successfully develop and deploy multi-site quality and operational excellence architectures for both internal manufacturing and suppliers. This has led to a proven track record of developing and executing strategies that deliver bottom line results. My skills allow me to build and effectively lead cross-functional teams and align organizations around winning operational strategies. My cross-industry experience coupled with my authentic leadership style equips me with broad expertise in quality management systems, customer quality, supplier development, operational excellence, talent management and employee development. Technical/Systems Competencies • Manufacturing Quality Systems (ISO, IATF, APQP, PPAP) • Supplier Quality Systems • Customer Quality • Warranty Reduction • Lean Deployment • A3 Problem Solving Leadership Competencies • Transformational Thinking • Servant Leadership • Coaching/Mentoring • Cross-Functional Collaboration • Leadership Through Influence • Change Management\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8920,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"QN7YzoIBwsNvXoZzWHxA\",\n            \"canonical\": \"https://www.linkedin.com/in/rich-johnson-1409b49b\",\n            \"fullname\": \"Rich Johnson\",\n            \"headline\": \"Automotive Technician at DC side street garage\",\n            \"location\": \"Pinckney, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQHDfRt6npNraA/profile-displayphoto-shrink_800_800/0/1581962626003?e=2147483647&v=beta&t=1M_rP-317nhvRaeY7SqVedDJoXRddrL4sqk_zFfDE0c\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/rich-johnson-1409b49b\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Lloyd Bridges Traveland\",\n                    \"position\": \"RV Tech\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2019-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"DC side street garage\",\n                    \"position\": \"Automotive Technician\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2002-04-01\",\n                    \"leaveDate\": \"2008-02-01\",\n                    \"company\": \"ASSEMBLERS PRECAST & STEEL SERVICES, INC\",\n                    \"position\": \"Oiler local 324\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1996-02-01\",\n                    \"leaveDate\": \"2002-02-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Prototype Technician\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [],\n            \"lastScraperUpdateTime\": 1696267655407,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4567013,\n                    \"lon\": -83.9463358\n                },\n                \"formattedAddress\": \"Pinckney, MI 48169, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 5786,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"-RLaXIAB5C_80KOhBZqF\",\n            \"canonical\": \"https://www.linkedin.com/in/cmpdiso\",\n            \"fullname\": \"Chris Paradiso\",\n            \"headline\": \"I enjoy engaging customers with my passion for solving complex Supply Chain challenges with cloud innovations.\",\n            \"location\": \"Clarkston, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/cmpdiso\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Autodesk, Inc.\",\n                    \"position\": \"Sr. Platform Solution Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2017-09-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Pure Barre Clarkston\",\n                    \"position\": \"Co-Owner\",\n                    \"description\": \"As a Pure Barre franchise owner it is a fun, demanding, and a rewarding experience that I'm happy to be sharing with my wife. We enjoy working within our local community building brand awareness, bringing a unique fitness alternative to the community, and empowering our Instructors and Clients to be the best they can be.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2013-06-01\",\n                    \"leaveDate\": \"2018-09-01\",\n                    \"company\": \"Oracle Corporation\",\n                    \"position\": \"Sr. Solution Consultant\",\n                    \"description\": \"Work with prospective and existing customers to understand their Product Lifecycle Management (PLM) business objectives; determine the optimal technology and software to facilitate achieving these objectives. Areas of focus: - Innovation Management - Product Development - Engineering Change Management - Supply Chain Collaboration - Program and Portfolio Management - Product Quality Management As part of the sales team create and deliver customer: - Product Show more Work with prospective and existing customers to understand their Product Lifecycle Management (PLM) business objectives; determine the optimal technology and software to facilitate achieving these objectives. Areas of focus: - Innovation Management - Product Development - Engineering Change Management - Supply Chain Collaboration - Program and Portfolio Management - Product Quality Management As part of the sales team create and deliver customer: - Product demonstrations and presentations - Value assessments - Implementation Roadmaps Show less\"\n                },\n                {\n                    \"hiredDate\": \"2010-02-01\",\n                    \"leaveDate\": \"2013-05-01\",\n                    \"company\": \"PTC Inc.\",\n                    \"position\": \"Sr. Technical Sales Specialist\",\n                    \"description\": \"Assists account managers in qualifying customer's requests against PTC's ability to provide a solution and probability of success. Collaborates with the customer to capture requirements, influence decision criteria and set expectations that match PTCs ability to execute. Formulates, articulates and presents value propositions on how PTCs solutions address particular technical customer requirements.\"\n                },\n                {\n                    \"hiredDate\": \"2006-06-01\",\n                    \"leaveDate\": \"2010-03-01\",\n                    \"company\": \"Freelancer\",\n                    \"position\": \"Operation Management Consultant\",\n                    \"description\": \"Medical Device - Enabled Field sales lead generation improvements resulting in $5.0 Million USD in annual revenue. Directed inside sales operations process improvements results in excess of $500K USD annually by establishing and defining performance KPI's. Coordinated and conducted field inventory audits which reduced shrink reserves by 10% with an annualized impact of $4.0 Million USD. Financial Services - Overhauled and outsourced six contract processing centers for a major Show more Medical Device - Enabled Field sales lead generation improvements resulting in $5.0 Million USD in annual revenue. Directed inside sales operations process improvements results in excess of $500K USD annually by establishing and defining performance KPI's. Coordinated and conducted field inventory audits which reduced shrink reserves by 10% with an annualized impact of $4.0 Million USD. Financial Services - Overhauled and outsourced six contract processing centers for a major financial services company, by removing unnecessary bottlenecks and process steps while creating training materials for a client's offshore vendor that assisted in the clients cost reduction initiative. CPG & Manufacturing - Recaptured $650,000 USD in savings for a maintenance and janitorial department at one of the world's largest food product manufacturers by balancing workload and optimizing maintenance processes. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2000-06-01\",\n                    \"leaveDate\": \"2006-06-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Export Project Leader\",\n                    \"description\": \"Project Leader for three Export Programs contributing roughly $60 million dollars in annual revenue to Ford Motor Company. Established and maintained program timing, developed engineering SOW's, designed and released export specific parts, and tracked variable and fixed program costs related to export specific features. Directed multiple organizations together to meet country specific design and regulatory requirements to ensure a flawless launch per export program. Six month Show more Project Leader for three Export Programs contributing roughly $60 million dollars in annual revenue to Ford Motor Company. Established and maintained program timing, developed engineering SOW's, designed and released export specific parts, and tracked variable and fixed program costs related to export specific features. Directed multiple organizations together to meet country specific design and regulatory requirements to ensure a flawless launch per export program. Six month international service employee in Taiwan supporting Ford Lio Ho launch of the 3.0L Engine exported to Australia, Japan and Taiwan. Responsible for the Design and Release, Localization, and PPAP of the alternator, alternator air duct, alternator bracket, and alternator fasteners. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1997-01-01\",\n                    \"leaveDate\": \"1998-01-01\",\n                    \"company\": \"International Business Machines Corporation\",\n                    \"position\": \"Co-Op\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [\n                \"German\",\n                \"Japanese\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"D'Amore-McKim School of Business at Northeastern University\",\n                    \"subTitle\": \"MBAHigh Tech\"\n                },\n                {\n                    \"title\": \"University of Michigan-Dearborn\",\n                    \"subTitle\": \"MSEngineering Management\"\n                },\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"BSMEMechanical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696267290345,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Im passionate about helping customers understand how technology can address their most critical business challenges. I continuously seek the opportunity to educate, provide guidance and be a trusted advisor to those assessing the myriad of options that are presented within our global marketplace. I believe in delivering business value and creating lasting relationships through trust, candor and true business acumen. Expertise in B2B sales, Cloud Sales, Product Life Cycle Management.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.7351196,\n                    \"lon\": -83.4192941\n                },\n                \"formattedAddress\": \"Village of Clarkston, MI 48346, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8857,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"58CCEDB3CE6096589352F60229F2709F\",\n            \"canonical\": \"https://www.linkedin.com/in/robert-boyle-09a44314\",\n            \"fullname\": \"Robert Boyle\",\n            \"headline\": \"Vice President, General Counsel - Europe at BorgWarner Inc.\",\n            \"location\": \"Auburn Hills, Michigan\",\n            \"industry\": \"Law Practice\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/robert-boyle-09a44314\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-07-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"PHINIA\",\n                    \"position\": \"Vice President, General Counsel and Secretary\",\n                    \"description\": \"PHINIA Inc (NYSE: PHIN) is a leader in premium fuel systems, electrical systems and aftermarket parts. It will begin trading as an independent company on the New York Stock Exchange under the ticker symbol PHIN effective at the market opening July 5th. PHINIA is an independent, market-leading, premium solutions and components provider with over 100 years of manufacturing expertise and industry relationships, with a strong brand portfolio that includes Delphi, Delco Remy and Hartridge. Show more PHINIA Inc (NYSE: PHIN) is a leader in premium fuel systems, electrical systems and aftermarket parts. It will begin trading as an independent company on the New York Stock Exchange under the ticker symbol PHIN effective at the market opening July 5th. PHINIA is an independent, market-leading, premium solutions and components provider with over 100 years of manufacturing expertise and industry relationships, with a strong brand portfolio that includes Delphi, Delco Remy and Hartridge. With 12,900 employees across 44 locations in 20 countries, PHINIA is headquartered in Auburn Hills, Michigan, USA. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2020-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"BorgWarner Inc.\",\n                    \"position\": \"Vice President, General Counsel - Europe\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2018-11-01\",\n                    \"leaveDate\": \"2020-10-01\",\n                    \"company\": \"Delphi Technologies PLC\",\n                    \"position\": \"Vice President, Corporate & Securities\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2015-04-01\",\n                    \"leaveDate\": \"2018-11-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Attorney - Securities and Transactions\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Beam Suntory Inc.\",\n                    \"position\": \"Senior Counsel\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2008-08-01\",\n                    \"leaveDate\": \"2012-09-01\",\n                    \"company\": \"Taft Stettinius & Hollister LLP (f/k/a Shefsky & Froelich Ltd.)\",\n                    \"position\": \"Associate\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [\n                \"English\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Georgetown University\",\n                    \"subTitle\": \"Bachelor's degreeEnglish\"\n                },\n                {\n                    \"title\": \"DePaul University College of Law\",\n                    \"subTitle\": \"Juris Doctorate\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696262013360,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"My practice focuses on securities, transactions and corporate governance matters including public and private securities offerings, public and private mergers and acquisitions, public company reporting and governance issues, internal controls and corporate secretarial functions. I have years of experience with federal and state securities laws, state corporate codes, stock exchange rules and Sarbanes-Oxley and Dodd-Frank Act compliance.\",\n            \"skills\": [\n                \"Corporate Governance\",\n                \"Securities\",\n                \"Corporate Law\",\n                \"Securities Regulation\",\n                \"Intellectual Property\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6875323,\n                    \"lon\": -83.2341028\n                },\n                \"formattedAddress\": \"Auburn Hills, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 4598,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"9O_IpYMBwsNvXoZzOs7D\",\n            \"canonical\": \"https://www.linkedin.com/in/msnishapatel\",\n            \"fullname\": \"Nisha Patel\",\n            \"headline\": \"\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/msnishapatel\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-04-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Vitesco Technologies Group AG\",\n                    \"position\": \"NFC Technical Project Leader\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-10-01\",\n                    \"leaveDate\": \"2020-11-01\",\n                    \"company\": \"Ford Motor Company / Insight Global\",\n                    \"position\": \"Core NFC Engineer/ Technical Program HW lead\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Purchasing Program Control Manager, NA Cross Vehicle Prototype Builds\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2007-11-01\",\n                    \"leaveDate\": \"2008-02-01\",\n                    \"company\": \"Magna International, Inc.\",\n                    \"position\": \"Mechanical Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1998-06-01\",\n                    \"leaveDate\": \"2007-11-01\",\n                    \"company\": \"Visteon Corporation\",\n                    \"position\": \"Product Design Engineer, for Powertrain Control Modules (PCMs) and Line Power Unit (LPU)\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University at Buffalo\",\n                    \"subTitle\": \"Bachelor of Science\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696254648411,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Engineering professional with 22 years of interdisciplinary experience in quality, manufacturing and design within the automotive and industrial product industry. Skilled in new product launch, quality, problem solving, and design optimization.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 4843,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"FT_0aH4BIdOjo8H7lq4r\",\n            \"canonical\": \"https://www.linkedin.com/in/sierra-harper-b8aba5169\",\n            \"fullname\": \"Sierra Harper\",\n            \"headline\": \"Talent Acquisition Recruiter at SC Johnson\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQGmPAUG1dC1KA/profile-displayphoto-shrink_800_800/0/1610683054340?e=2147483647&v=beta&t=65RIpGFe-t3riv8JPbjXEsEmTDfCa-xt8V_kFhXJfI4\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/sierra-harper-b8aba5169\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Wilson Human Capital Group, Inc.\",\n                    \"position\": \"Recruitment Consultant\",\n                    \"description\": \"WilsonHCG is an award-winning, global leader in total talent solutions. Operating as a strategic partner, it helps some of the worlds most admired brands build comprehensive talent functions. With a global presence spanning more than 65 countries and six continents, WilsonHCG provides a full suite of configurable talent services including recruitment process outsourcing (RPO), executive search, contingent talent solutions and technology advisory.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-01-01\",\n                    \"leaveDate\": \"2022-01-01\",\n                    \"company\": \"The Adecco Group AG\",\n                    \"position\": \"Recruiter\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2017-12-01\",\n                    \"leaveDate\": \"2018-12-01\",\n                    \"company\": \"Apptree\",\n                    \"position\": \"Driver Recruiter\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2016-07-01\",\n                    \"leaveDate\": \"2017-07-01\",\n                    \"company\": \"Pilot Freight Services\",\n                    \"position\": \"Executive Assistant\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2014-01-01\",\n                    \"leaveDate\": \"2016-07-01\",\n                    \"company\": \"Whiting Corporation\",\n                    \"position\": \"Executive Administrative Assistant\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2012-04-01\",\n                    \"leaveDate\": \"2013-12-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Customer Retention Manager\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Henry Ford College\",\n                    \"subTitle\": \"Associate's degreeLiberal Arts and Sciences/Liberal Studies\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696187444481,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Professional Recruiter with 7 years of proven skills in using diverse traditional and online methods for finding top candidates for business openings along with Full cycle recruiting. Adept at collecting data and analyzing metrics to make proactive decisions about recruiting strategies. Experienced in handling onboarding, training and registration of new employees. As well as establishing point of contact with Clients.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 3985,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"DC9F2FA35EA16E4343FB662EAC27728C\",\n            \"canonical\": \"https://www.linkedin.com/in/michaelwright4587\",\n            \"fullname\": \"Mike Wright\",\n            \"headline\": \"Automotive Seat Complete Lead Engineer & Commercial and Military Seating Engineer at RECARO North Amercia\",\n            \"location\": \"Madison Heights, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/michaelwright4587\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Recaro Holding\",\n                    \"position\": \"Automotive Seat Complete Lead Engineer & Commercial and Military Seating Engineer\",\n                    \"description\": \"Automotive Seat Complete Lead Engineer Duties: Front seat complete system product development for high performance Cadillac CTS/ATS V Series program  Advanced Design Concept and BOM development for new business sales and acquisition  Developed Design Execution Sections enabling customer Studio designers to accurately work within seating and vehicle packaging constraints reducing design issues during DV and PV phases  Coordination of early development teams including Studio Show more Automotive Seat Complete Lead Engineer Duties: Front seat complete system product development for high performance Cadillac CTS/ATS V Series program  Advanced Design Concept and BOM development for new business sales and acquisition  Developed Design Execution Sections enabling customer Studio designers to accurately work within seating and vehicle packaging constraints reducing design issues during DV and PV phases  Coordination of early development teams including Studio, Design Engineering, Directed and Tier 2 supply base  Developed and managed DVP&R test plan with RECARO and customer Validation Engineering groups  Managed integration of system level performance seat bolsters with adjustability and memory recall capability while maintaining a level of quality, comfort and appearance required in luxury performance car segment  Assisted electronic control module development, validation and launch for adjustable memory bolster system Commercial Vehicle and Military Seating Engineer 2010 - 2012 Duties: Development, validation and launch of new model seating systems based on customer specific requirements and regulatory specifications for regional and industry specific applications.  Commercial seating for public transit applications in US and Canadian markets  UAV (drone) pilot ground control station seating for United States Air Force Show less\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"2010-01-01\",\n                    \"company\": \"RCO Engineering\",\n                    \"position\": \"Lead Engineer - Initial Concept Development - Seat Systems\",\n                    \"description\": \"Duties: Developed the design concepts of Chrysler seating programs prior to program award to a Tier 1 seat supplier.  Developed feasibility studies for Chrysler Studio engineers to use for surface and seat contour development.  Determined design constraints and potential solutions within the vehicle environment for Studio engineers.  Provided design interface to Fiat product development for the design of a corporate seat frame structure.  Created a complete seat system in math Show more Duties: Developed the design concepts of Chrysler seating programs prior to program award to a Tier 1 seat supplier.  Developed feasibility studies for Chrysler Studio engineers to use for surface and seat contour development.  Determined design constraints and potential solutions within the vehicle environment for Studio engineers.  Provided design interface to Fiat product development for the design of a corporate seat frame structure.  Created a complete seat system in math data and directed uploaded to Chrysler Teamcenter.  Prepared math data designs and material specifications for Purchasing Sourcing Package.  Built prototype properties, H pointed and performed comfort evaluations of seats at concept design level.  Provided a concept development service that Chrysler may utilize as a means to bring in-house more of their seat design and development work. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2007-01-01\",\n                    \"leaveDate\": \"2009-01-01\",\n                    \"company\": \"Key Safety Systems\",\n                    \"position\": \"Product Engineer\",\n                    \"description\": \"Airbag Product Engineer/Test Engineer Lead development of side impact curtain and seat mounted pelvic/thorax airbags for automotive OEMs.  Developed ADVP&R and airbag designs from concept through to production integration.  Wrote test reports per customer submission requirements and archived per legal requirements.  Performed dynamic airbag deployment testing during development to achieve required performance.  Provided engineering support for barrier crash testing at Show more Airbag Product Engineer/Test Engineer Lead development of side impact curtain and seat mounted pelvic/thorax airbags for automotive OEMs.  Developed ADVP&R and airbag designs from concept through to production integration.  Wrote test reports per customer submission requirements and archived per legal requirements.  Performed dynamic airbag deployment testing during development to achieve required performance.  Provided engineering support for barrier crash testing at General Motors Proving Grounds.  Determine occupant survivability based on head and thorax injury criteria assessments.  Recommended vehicle structure modifications to enable system level performance improvements. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1998-01-01\",\n                    \"leaveDate\": \"2006-01-01\",\n                    \"company\": \"Lear Corporation\",\n                    \"position\": \"Product Engineer\",\n                    \"description\": \"Seat System Lead Product Engineer Lead advanced design & development of future model seating systems for General Motors Buick Lucerne, Cadillac DTS and GMT900 Full Size Truck from initial concept through start of production.  Developed new seat systems utilizing occupant control points, Design Failure Mode and Effects Analysis (DFMEA) and GD&T principles which achieved world class design criteria.  Managed engineering PLM and CAD/CAE teams to ensure design release and program Show more Seat System Lead Product Engineer Lead advanced design & development of future model seating systems for General Motors Buick Lucerne, Cadillac DTS and GMT900 Full Size Truck from initial concept through start of production.  Developed new seat systems utilizing occupant control points, Design Failure Mode and Effects Analysis (DFMEA) and GD&T principles which achieved world class design criteria.  Managed engineering PLM and CAD/CAE teams to ensure design release and program milestones.  Reduced production costs and improved quality by providing engineering launch support and build issue resolution.  Incorporated Design For Manufacturing principles which prevented ergonomic & quality problems at production integration.  Developed seat air conditioning & heat systems for luxury car market segment.  Developed seat designs that enabled vehicles to meet Federal 5 Star Side Impact Crash rating.  Validated design compliance to all applicable Federal Motor Vehicle Safety Standards and OEM requirements.  Utilized Finite Element Analysis (FEA) for structural testing reducing validation costs by 15%. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1994-01-01\",\n                    \"leaveDate\": \"1998-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Manufacturing Engineer\",\n                    \"description\": \"Lead Manufacturing Engineer Lead the development of seat assembly production systems for future model seat programs at the corporate world headquarters. Responsibilities included process and production equipment development and managing a $1 million plus capital expenditures budget for manufacturing system. Lead teams that included Manufacturing Engineering, Product Engineering, Industrial Engineering, Plant Engineering / Operations, Purchasing and Program Management.  Developed Show more Lead Manufacturing Engineer Lead the development of seat assembly production systems for future model seat programs at the corporate world headquarters. Responsibilities included process and production equipment development and managing a $1 million plus capital expenditures budget for manufacturing system. Lead teams that included Manufacturing Engineering, Product Engineering, Industrial Engineering, Plant Engineering / Operations, Purchasing and Program Management.  Developed production equipment with the latest technology and controls to achieve new levels of process capability and first time quality.  Utilized PDP process and interfaced with product design engineers at alpha, beta, and pre-prototype phase of product development, incorporating manufacturability features in the product.  Lead the Manufacturing Development Team in the design, specification, acceptance testing and implementation of a world-class JIT seat assembly system.  Developed a seat manufacturing system and recommended seat design changes which utilized DOE, PFMEA, DFM / DFA, Continuous Improvement and Kaizen / Lean Manufacturing techniques.  Created and maintained SPC data collection and Process Control Plans, Process Flow Diagrams and Seat Process Documents for customer submission packages.  Provided Manufacturing Engineering support for operations in Oklahoma City, Kansas City, Windsor, Ontario, Canada and Juarez, Mexico. Show less\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Central Michigan University\",\n                    \"subTitle\": \"Bachelor's degreeIndustrial Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696185095416,\n            \"military\": true,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4858692,\n                    \"lon\": -83.1052028\n                },\n                \"formattedAddress\": \"Madison Heights, MI 48071, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 10135,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"7780BB9FB1FB16EC7DFFBD8C10DBFB3D\",\n            \"canonical\": \"https://www.linkedin.com/in/terry-stuart-8a8537\",\n            \"fullname\": \"Terry Stuart\",\n            \"headline\": \"VP of Sales Engineering at Xcitium\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"information technology and services\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQH-3sswFKHipA/profile-displayphoto-shrink_800_800/0/1613010944003?e=2147483647&v=beta&t=w2HYeLhcwDjk0DZTGiSzOJ8FkcdaUgYh4OHHMWvgaqc\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/terry-stuart-8a8537\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Xcitium\",\n                    \"position\": \"VP of Sales Engineering & Professional Services\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2020-01-01\",\n                    \"leaveDate\": \"2021-03-01\",\n                    \"company\": \"ShieldX\",\n                    \"position\": \"Director of Sales Engineering\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2017-05-01\",\n                    \"leaveDate\": \"2019-12-01\",\n                    \"company\": \"McAfee Corp.\",\n                    \"position\": \"Technical Director - Security Operations and Manager of Pre-Sales Security Operations Specialists\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2014-10-01\",\n                    \"leaveDate\": \"2017-05-01\",\n                    \"company\": \"Intel Corporation\",\n                    \"position\": \"Manager, Enterprise Technology Specialists - Americas\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2014-10-01\",\n                    \"company\": \"McAfee Corp.\",\n                    \"position\": \"Enterprise Technology Specialist - SIEM\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2008-12-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"NitroSecurity Inc.\",\n                    \"position\": \"Security Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2007-07-01\",\n                    \"leaveDate\": \"2008-12-01\",\n                    \"company\": \"High Tower Software\",\n                    \"position\": \"Director, Professional Services\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2004-12-01\",\n                    \"leaveDate\": \"2007-07-01\",\n                    \"company\": \"multiple\",\n                    \"position\": \"Consultant\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2002-09-01\",\n                    \"leaveDate\": \"2004-12-01\",\n                    \"company\": \"Cylant, Inc.\",\n                    \"position\": \"Dir. Product and Services & Facility Security Officer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1998-03-01\",\n                    \"leaveDate\": \"2002-08-01\",\n                    \"company\": \"Forcepoint\",\n                    \"position\": \"Director, Field Support\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1997-02-01\",\n                    \"leaveDate\": \"1998-03-01\",\n                    \"company\": \"Sequel Technologies\",\n                    \"position\": \"Regional Manager, System Engineering\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1995-07-01\",\n                    \"leaveDate\": \"1997-02-01\",\n                    \"company\": \"American/SCI\",\n                    \"position\": \"Manager Information Systems\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1993-10-01\",\n                    \"leaveDate\": \"1995-07-01\",\n                    \"company\": \"EMC\",\n                    \"position\": \"Senior Systems Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1987-01-01\",\n                    \"leaveDate\": \"1991-01-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Systems Anaylst\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Ferris State University\",\n                    \"subTitle\": \"Bachelor's degree\"\n                },\n                {\n                    \"title\": \"Ferris State University\",\n                    \"subTitle\": \"Bachelor of Science (BS)\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696182536754,\n            \"military\": false,\n            \"clearance\": true,\n            \"about\": \"I have lead or worked on, sales support teams for over 20 years. During this portion of my career, I have garnered experience in a variety of hardware and software products for various vendors and have worked with over 200 of the Fortune 500, countless mid-sized organizations, and have experience in Federal, State, and local governments. Examples of these are the US Dept of Interior, IRS, Census, USGS, City of New Orleans, City of New York, Chicago Public Schools, Atlanta Public Schools, and the State of Florida. I also have considerable experience with foreign corporations and governments with a focus on Europe (England, Germany), the Middle East (Kuwait, Saudi Arabia, Qatar), South America (Brazil, Argentina), Mexico, and Japan. This experience comes from leading various world-wide pre-sales technical teams as well as an individual contributor. My communications skills have been honed through thousands of demonstrations and presentations worldwide to audiences ranging in size from 1 to over 1000 in traditional business, user group, and industry conference settings. Through my sales efforts, I have gain experience through the installation of hundreds of networks using Windows, Linux, and other networking operating systems. I have extensive experience with network systems such as firewalls, IDS/IPS, caching devices, routers/switches, and directory services including Active Directory, LDAP, and RADIUS. I have a working knowledge of virtual environments, public cloud environments, and security tools required for these.\",\n            \"skills\": [\n                \"Security\",\n                \"IPS\",\n                \"SIEM\",\n                \"Linux\",\n                \"Perl\",\n                \"Solaris\",\n                \"Networking\",\n                \"LDAP\",\n                \"Microsoft SQL Server\",\n                \"Checkpoint\",\n                \"DHCP\",\n                \"Oracle\",\n                \"JavaScript\",\n                \"Top Secret\",\n                \"MySQL\",\n                \"Snort\",\n                \"PIX\",\n                \"PHP\",\n                \"Mac OS X\",\n                \"Sales\",\n                \"IP\",\n                \"Director level\",\n                \"Photoshop\",\n                \"Microsoft Office\",\n                \"Apache\",\n                \"Websense\",\n                \"Training Delivery\",\n                \"IT Management\",\n                \"Project Management\",\n                \"Product Management\",\n                \"Product Development\",\n                \"McAfee\",\n                \"Firewalls\",\n                \"Travel\",\n                \"Overseas\",\n                \"Information Security Management\",\n                \"Security Clearance\",\n                \"DLP\",\n                \"IDS\",\n                \"CISSP\",\n                \"Network Security\",\n                \"Computer Security\",\n                \"Data Security\",\n                \"Unix\",\n                \"Application Security\",\n                \"PCI DSS\",\n                \"Vulnerability Assessment\",\n                \"Intrusion Detection\",\n                \"Information Security\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 12295,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"870B28EE41CB9D65D12B7A1CDEC5ECAF\",\n            \"canonical\": \"https://www.linkedin.com/in/smccutcheon\",\n            \"fullname\": \"Stuart McCutcheon\",\n            \"headline\": \"Global Vice President - Global Sales & Customer Success - NPDI & Digital Twin @ Siemens Digital Industries Software\",\n            \"location\": \"Northville, Michigan\",\n            \"industry\": \"Computer Software\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQHVRkM7pPgEpA/profile-displayphoto-shrink_800_800/0/1661004232043?e=2147483647&v=beta&t=BWy1imYWE7tJqvqN5KNF-GvhWy6B1zOHEF8zmYQOc0A\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/smccutcheon\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2017-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Siemens Digital Industries Software\",\n                    \"position\": \"Global Vice President - Global Sales & Customer Success - NPDI & Digital Twin\",\n                    \"description\": \"Current Leading activities, Digital Twin, eXecutable Digital Twin, Industrial MetaVerse, Enterprise Bill of Material Management, SaaS transformation, Industrial Cloud, IIOT projects, strategic partner relstionships, AWS, Nvidia, Microsoft\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Siemens AG\",\n                    \"position\": \"Vice President Global Business Development - for Global Sales and Services\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Siemens AG\",\n                    \"position\": \"Vice President\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2004-06-01\",\n                    \"leaveDate\": \"2007-04-01\",\n                    \"company\": \"UGS - Global Automotive\",\n                    \"position\": \"Vice President\",\n                    \"description\": \"Consulting and interacting with all major Automotive OEM's globally and key suppliers. Role initially started off in the Automotive Industry Vertical then was transitioned into Marketing as Business Development and Industry Marketing for Automotive Sector Key achievement Spend 2 years in /Japan @ Nissan successfully helping them re-develop their VDP (Vehicle Development Program) down to below 12 months\"\n                },\n                {\n                    \"hiredDate\": \"2002-06-01\",\n                    \"leaveDate\": \"2004-06-01\",\n                    \"company\": \"EDS / Global Automotive PLM Strategy\",\n                    \"position\": \"President\",\n                    \"description\": \"EDS purchased a number of companies and created a PLM organization EDS - PLM 2 years later they sold this entity to private equity companies\"\n                },\n                {\n                    \"hiredDate\": \"2001-01-01\",\n                    \"leaveDate\": \"2002-01-01\",\n                    \"company\": \"Unigraphics Solutions\",\n                    \"position\": \"Vice President\",\n                    \"description\": \"Automotive center of excellence Focused on the top 40 OEM's Globally\"\n                },\n                {\n                    \"hiredDate\": \"1997-01-01\",\n                    \"leaveDate\": \"2001-01-01\",\n                    \"company\": \"Engineering Animation, Inc.\",\n                    \"position\": \"Senior Director\",\n                    \"description\": \"Lead Global PreSales and Services Driving vision, development and deployment of Vis products suits Vis View, Vis Mockup, Vis Concept (VR), Vis ...\"\n                },\n                {\n                    \"hiredDate\": \"1987-09-01\",\n                    \"leaveDate\": \"1997-11-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Manager\",\n                    \"description\": \"Ford of Europe IT organization supporting Product development and Manufacturing - moved to Ford North America as part of the C3P initiative Innovated / Created GT Model - industry first - PMI 3D Model software solution - Author of PMI - Received Henry Ford Technology award for this innovation - drove to a ANSI standard for 3d GD&T (3D PMI definition) GT View - first lightweight 3D viewer that included the ability to view PMI with a 3d model for multiple CAD systems - deployed Show more Ford of Europe IT organization supporting Product development and Manufacturing - moved to Ford North America as part of the C3P initiative Innovated / Created GT Model - industry first - PMI 3D Model software solution - Author of PMI - Received Henry Ford Technology award for this innovation - drove to a ANSI standard for 3d GD&T (3D PMI definition) GT View - first lightweight 3D viewer that included the ability to view PMI with a 3d model for multiple CAD systems - deployed 15000 seats - outsourced to Company to become World defacto engineering 3d Viewer Show less\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Newcastle University\",\n                    \"subTitle\": \"BSC (Hons)Mechanical Engineering\"\n                },\n                {\n                    \"title\": \"Regent House Grammer School\",\n                    \"subTitle\": \"High SchoolGrammer school\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696177455801,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Currently position :- Global Vice President,Global Sales and Customer Success responsible for DT & NPI (Digital Twin & New Product Introduction) at Siemens Digital Industries Software Inc. +30yrs industry experience previously positions for Siemens- Global Sales and Services & P&L responsibility for new line of business -Specialized Engineering Software (SES). VP Global Accounts VP of Global Automotive Bus Dev & Strategy VP Industry Marketing VP Automotive Marketing VP PreSales / Service /Sales (for a business unit) Heavily involved with many mergers & acquisitions over the last 15 years (full M&A process) GSMS Executive sponsor for OEM Automotive BOM Solution, Global Sales responsibility for or new product introduction (only commercial usage based BOM solution) IoT Internet of Things - Integration of Mindsphere with PLM 20 years experience working in Asia Pacific - Japan, China, Korea, India, currently driving a number of strategic accounts in China Global Industry knowledge, with domain expertise in - PLM . I have gained experience in many diverse industry segments around PLM, but Automotive has continued to be a strong focus for most of my career, due to the strength of PLM. Product Development through to Manufacturing, CAD - PDM - Mfg - Mechatronics - BOM - Collaboration - ect. Worked extensively on a global bases selling to the top 100 OEMs. Previously worked for - Ford Motor Company (Europe and NA) - 11 yrs - Transitioned to Siemens via acquisition:- EAI - Unigraphics Solutions - EDS - UGS- (private equity) Siemens A&D purchased UGS May 2007 Specialties: 25 years experience in the Global Industry with domain expertise in - PLM - I have gained experience in many diverse industry segments around PLM, but Automotive has continued to be a strong focus for most of my career. Automotive Development & Mfg CAD - PDM - Mfg - Mechatronics - BOM - Global Collaboration Experience in all disciplines - Sales, Marketing, Product Dev, Bus Dev\",\n            \"skills\": [\n                \"Global Account Management\",\n                \"Mergers and Acquisitions\",\n                \"PLM\",\n                \"Global PreSales\",\n                \"Strategic Selling\",\n                \"Marketing\",\n                \"Industry Solutions\",\n                \"Composites\",\n                \"CAD/CAM\",\n                \"BOM management\",\n                \"Sales Management\",\n                \"Teamcenter\",\n                \"Team Building\",\n                \"Strategic Planning\",\n                \"Automotive Design\",\n                \"Business Development\",\n                \"Product Lifecycle Management\",\n                \"Pre-sales\",\n                \"Enterprise Software\",\n                \"Management\",\n                \"Account Management\",\n                \"Solution Selling\",\n                \"Product Development\",\n                \"Automotive\",\n                \"Strategy\",\n                \"Leadership\",\n                \"Strategic Partnerships\",\n                \"PDM\",\n                \"Product Management\",\n                \"Product Marketing\",\n                \"Business Alliances\",\n                \"Industrial Sector\",\n                \"Manufacturing\",\n                \"Program Management\",\n                \"Mergers & Acquisitions\",\n                \"Salesforce.com\",\n                \"Product Launch\",\n                \"Go-to-market Strategy\",\n                \"Lead Generation\",\n                \"mergers and acquisitions\",\n                \"Mergers\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4311464,\n                    \"lon\": -83.4832692\n                },\n                \"formattedAddress\": \"Northville, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 9192,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"Wd0K7HABFVkhVdRhJ910\",\n            \"canonical\": \"https://www.linkedin.com/in/paul-bourgeois-b5983022\",\n            \"fullname\": \"Paul Bourgeois\",\n            \"headline\": \"Executive, Strategic Delivery Technology at Allegis Global Solutions\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/paul-bourgeois-b5983022\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Allegis Global Solutions\",\n                    \"position\": \"Senior Manager, Technology Business Partner\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2004-06-01\",\n                    \"leaveDate\": \"2005-11-01\",\n                    \"company\": \"Aerotek\",\n                    \"position\": \"Automotive Recruiter\",\n                    \"description\": \"Automotive Recruiter who sourced candidates for long-term contract positions for General Motors Corporation in the state of Michigan. Negotiated preliminary terms of contract with candidates including wage, vacation, and benefits. Conducted daily one-on-one interviews and gave career counseling to potential candidates. Sourced candidates by telephone, cold calling into client competitors, performing resume searches on the TeamTrak database, candidate referrals, and by Show more Automotive Recruiter who sourced candidates for long-term contract positions for General Motors Corporation in the state of Michigan. Negotiated preliminary terms of contract with candidates including wage, vacation, and benefits. Conducted daily one-on-one interviews and gave career counseling to potential candidates. Sourced candidates by telephone, cold calling into client competitors, performing resume searches on the TeamTrak database, candidate referrals, and by reviewing unsolicited resumes. Performed reference checks on all potential candidates submitted for hire. Before transitioning out of recruiting, all recruiting goals and expectations were exceeded. Achieved weekly dollar spread numbers in excess of $10,500 in spend. Show less\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Loss Prevention Supervisor\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Bachelor of ArtsCriminal Justice\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696176285022,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"The world of work has changed. As the leading provider of workforce solutions, Allegis Global Solutions (AGS) guides companies through a transformative journey to rethink the way work gets done. We know what it takes to attract the best talent while designing and executing strategies that align workforce capabilities with the agility required to stay ahead of what’s next. With decades of experience, continuous investment in innovation and a robust portfolio of workforce analytics and insights capabilities, we’re equipped to help companies better navigate uncertainty and complexity by empowering their ability to run, evolve and work smarter through creative workforce solutions. Im proud to be helping transform the way the world gets work done to not only improve business outcomes but to enhance the work experience for all.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 518,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"GcQjMoAB5C_80KOhQDGS\",\n            \"canonical\": \"https://www.linkedin.com/in/alexandre-frank\",\n            \"fullname\": \"Alexandre FRANK\",\n            \"headline\": \"Business & Sales Development Representative\",\n            \"location\": \"Clinton Township, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/alexandre-frank\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2020-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Blindspace\",\n                    \"position\": \"Business Development Representative\",\n                    \"description\": \"Blindspace is an international high-end interior design company originally from Europe. They hired me as a remote business development representative in order to expand their business to North America (USA, Mexico, Canada) which was a perfect fit since I am able to speak English, French and Spanish. My job was to manage inbound requests from potential clients and turn them into actual customers. Besides, my main tasks was to prospect new customers/partners located in North America in order to Show more Blindspace is an international high-end interior design company originally from Europe. They hired me as a remote business development representative in order to expand their business to North America (USA, Mexico, Canada) which was a perfect fit since I am able to speak English, French and Spanish. My job was to manage inbound requests from potential clients and turn them into actual customers. Besides, my main tasks was to prospect new customers/partners located in North America in order to grow the business. Contract currently paused on common agreement, looking for some different opportunities in the tech/SaaS industry. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2020-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Indépendant\",\n                    \"position\": \"Ecommerce Business Owner\",\n                    \"description\": \"This is a part-time activity that I most likely do during my free time; Creation of various e-commerce stores for ourselves and other auto-entrepreneurs. Different types of works specialized in online sales, website creation/design, digital marketing, operations & logistics, customer support and more. Our team is currently preparing the launch of a new brand that will be ready to operate in the US market by summer 2022.\"\n                },\n                {\n                    \"hiredDate\": \"2020-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Upwork Inc.\",\n                    \"position\": \"Sales Business Development\",\n                    \"description\": \"As a freelancer, I have been helping several companies of all types to develop their businesses throughout the last few years. My services are mainly focused on the following tasks; Business Development, Sales/Lead generation, Marketing, E-commerce, French/English translations & optimizations (etc.)\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2020-01-01\",\n                    \"leaveDate\": \"2022-01-01\",\n                    \"company\": \"Michigan Stars FC\",\n                    \"position\": \"Professional Athlete\",\n                    \"description\": \"Transferred to Michigan Stars FC, club of NISA (National Independent Soccer Association) where I played professionally until now.\"\n                },\n                {\n                    \"hiredDate\": \"2019-08-01\",\n                    \"leaveDate\": \"2019-12-01\",\n                    \"company\": \"Atlanta Soccer Club\",\n                    \"position\": \"Professional Athlete\",\n                    \"description\": \"First season as a professional soccer player for Atlanta SC, club of NISA (National Independent Soccer Association).\"\n                },\n                {\n                    \"hiredDate\": \"2017-01-01\",\n                    \"leaveDate\": \"2017-08-01\",\n                    \"company\": \"Decathlon\",\n                    \"position\": \"Store Manager\",\n                    \"description\": \"Worked as an assistant manager alongside the fitness/gym department manager at Decathlon which is a worldwide retailer and leader in the sporting goods industry. Our main task was obviously selling but there was also a lot of other things to manage such as the fitness department team, schedules, stocks, logistics, marketing and more.\"\n                },\n                {\n                    \"hiredDate\": \"2014-06-01\",\n                    \"leaveDate\": \"2014-12-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Sales Representative\",\n                    \"description\": \"Sales Representative for a Ford Dealership based in Valence. I had the chance of discovering most of the skills & tasks needed to work in the sales and business industry. From prospecting (cold calling, emailing, meetings etc.) to selling, I learned a lot and enjoyed my time as an intern there. Most of my work was focused on B2B (commercial and utility vehicles mainly).\"\n                },\n                {\n                    \"hiredDate\": \"2013-01-01\",\n                    \"leaveDate\": \"2013-06-01\",\n                    \"company\": \"CHEVIGNON\",\n                    \"position\": \"Seller\",\n                    \"description\": \"Internship as a seller for the clothing brand Chevignon. Responsible of various in-store tasks such as sales, logistic and marketing.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"American International College\",\n                    \"subTitle\": \"Master of Business Administration - MBABusiness\"\n                },\n                {\n                    \"title\": \"IAE Nice (Graduate School of Management)\",\n                    \"subTitle\": \"Management Master's DegreeManagement\"\n                },\n                {\n                    \"title\": \"Galway-Mayo Institute of Technology\",\n                    \"subTitle\": \"Bachelor of BusinessBusiness\"\n                },\n                {\n                    \"title\": \"IUT de Valence\",\n                    \"subTitle\": \"Undergraduate Degree in Business and MarketingBusiness\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696175227676,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"After spending several years in France and Ireland completing respectively a 2-year undergraduate, a 1-year bachelor and a 1-year Master degrees in business and marketing, I graduated from a Master Business Administration at American International College in Springfield (MA) in 2019 where I was a also student/athlete for 2 years. This opportunity allowed me to grow as a person, discover new cultures, expand my network and be able to acquire important knowledges about the business industry as a whole. It also gave me the chance to learn and speak fluently English and Spanish on top of my native language which is French. Once I graduated, I had the opportunity to pursue my childhood dream of becoming a professional soccer player and was able to do it until now. During these past years, I used my free time to learn about e-commerce, digital marketing and sales in general in order build something on my own and be ready for the after career. I started a part-time freelancing activity to actually put my hands on these fields and educate myself to be more knowledgeable. After attentive reflection and consideration, I estimate that this is the right moment for me to start my professional career. Therefore, I am currently looking for a position as a sales/business development representative in the tech industry in order to discover this world that I am really interested in and accomplish my objectives. Feel free to contact me directly on LinkedIn or via email at alexandre.frank1995@gmail.com for any purpose.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.5868882,\n                    \"lon\": -82.9195514\n                },\n                \"formattedAddress\": \"Clinton Twp, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 2037,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"smX9Bn8BdbruSb0IJPtG\",\n            \"canonical\": \"https://www.linkedin.com/in/john-dombrowski-73366217b\",\n            \"fullname\": \"John Dombrowski\",\n            \"headline\": \"Lead Technical Program Manager\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQFN04P4AG0waA/profile-displayphoto-shrink_800_800/0/1652136411179?e=2147483647&v=beta&t=JM0HubgCj6tg3zSyGv-ms3U8Ra6P2db96Y1-GvWhtiw\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/john-dombrowski-73366217b\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Bridgestone Corporation\",\n                    \"position\": \"Lead Technical Program Manager\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-11-01\",\n                    \"leaveDate\": \"2022-05-01\",\n                    \"company\": \"DAVCO TECHNOLOGIES INC\",\n                    \"position\": \"Senior Engineering Project Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Lead Vehicle Dynamics Performance Engineer Full Size Truck\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Kettering University\",\n                    \"subTitle\": \"Bachelor of Science Mechanical Engineering (Automotive Specialty)\"\n                },\n                {\n                    \"title\": \"Macomb Community College\",\n                    \"subTitle\": \"Associate's degreeAutomotive Body Design\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696170777641,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Engineering leader with extensive experience in product development, vehicle dynamics integration, chassis component design, and engineering technical positions. Proven leader adept at managing multiple programs from concept to production launch while meeting challenging deadlines and technical requirements. Solid business acumen with a valuable blend of leadership skills and technical knowledge resulting in significant contributions to the organization bottom line. Specialties: Project management, communication skills, vehicle dynamics development, steering development, off-road development, competitive benchmarking, performance testing, analysis modeling, mentoring and coaching.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 1430,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"QP20Tn8BdbruSb0IyhoG\",\n            \"canonical\": \"https://www.linkedin.com/in/thomas-hosmer-20971851\",\n            \"fullname\": \"Thomas Hosmer\",\n            \"headline\": \"Director Car Dealer Channel at Bridgestone Americas\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5103AQE2dFUEsCYnhg/profile-displayphoto-shrink_800_800/0/1516526849992?e=2147483647&v=beta&t=Cfo1FQFsft3lrfiupZA0p61X6-jV0hFJF8oZnJRk4Gs\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/thomas-hosmer-20971851\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-04-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Bridgestone Corporation\",\n                    \"position\": \"Director Car Dealer Channel\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2017-06-01\",\n                    \"leaveDate\": \"2021-04-01\",\n                    \"company\": \"Maserati\",\n                    \"position\": \"Head of Aftersales Parts, Accessories & Merchandise\",\n                    \"description\": \"Lead the Commercial Team that is responsible for all activities related to aftersales parts, accessories, merchandise, equipment, pre-paid maintenance, & extended warranties for Maserati North & South America. Responsibilities include: product development, sales, marketing, promotions, plan and implement business growth strategies, and oversight of the P & L.\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Product Line Manager--Mopar Maintenance Portfolio\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2009-03-01\",\n                    \"leaveDate\": \"2012-07-01\",\n                    \"company\": \"Hubbard Auto Center\",\n                    \"position\": \"Service Manager/Store Owner\",\n                    \"description\": \"Ran the day-to-day operations. Performed HR duties such as interviewing, hiring, reprimanding, and terminating employees. Managed 4 employees. Ordered and maintaining parts inventory. Created a competitive pricing structure, while consistently growing year-over-year net profit. Created and developed complete marketing strategy, including company website, direct mail, email blasts, company newsletter, building signage, and local promotions.\"\n                },\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"Motor Cities National Heritage Area\",\n                    \"position\": \"Board Member\",\n                    \"description\": \"Developed marketing plans, membership structure, operating budget, and overall strategic planning.\"\n                },\n                {\n                    \"hiredDate\": \"2003-08-01\",\n                    \"leaveDate\": \"2009-02-01\",\n                    \"company\": \"Goodyear Franchise\",\n                    \"position\": \"Store Manager\",\n                    \"description\": \"Managed day-to-day operations of the facility including six employees. Managed inventory stocking levels. Wrote and presented estimates to customers. Completed manufactures product training.\"\n                },\n                {\n                    \"hiredDate\": \"2001-04-01\",\n                    \"leaveDate\": \"2003-07-01\",\n                    \"company\": \"Lemmon Grand Chevrolet. Buick, Pontiac\",\n                    \"position\": \"Service Advisor\",\n                    \"description\": \"Ensured each customer received a world class experience when interacting with the dealership. Created quotes and advised customers on needed vehicle repairs. Completed manufactures product training.\"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2003-01-01\",\n                    \"company\": \"Thomas Hosmer Racing\",\n                    \"position\": \"Race Car Driver\",\n                    \"description\": \"Raced stock cars on dirt ovals in the Michigan/Ohio region. Built and setup my own race cars. Spent a lot of time and money learning what it takes to be competitive in auto racing, and loved every minute of it....\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Ferris State University\",\n                    \"subTitle\": \"Associate's degreeAutomotive Technology\"\n                },\n                {\n                    \"title\": \"Baker College of Jackson\",\n                    \"subTitle\": \"Bachelor of Business Administration (B.B.A.)Marketing\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696169752336,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Nothing gets me charged more than leading a team to achieving strong targets. I also enjoy discussing and strategizing about the future of the automotive industry including new modes of mobility, connected technology, autonomous vehicles, and world class customer service. I am a self-starter that has always been passionate about all things Automotive/Transportation related. From racing stock cars on high-banked dirt tracks, to giving presentations on the past, present, and future of automotive technology, I enjoy both getting my hands dirty to restore a classic car, and developing a creative solution to a challenging business case.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6819,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"E76E926B48E572AE9A00EF7FB87DB3DC\",\n            \"canonical\": \"https://www.linkedin.com/in/stevekhoe\",\n            \"fullname\": \"Steve Khoe\",\n            \"headline\": \"Enterprise Sales Leader | Electrification | DE&I | Engineer | NFL Owner | Scottish Lord\",\n            \"location\": \"Royal Oak, Michigan\",\n            \"industry\": \"marketing and advertising\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4D03AQEqo7O2NGuu6Q/profile-displayphoto-shrink_800_800/0/1579880452044?e=2147483647&v=beta&t=iHQbKsj2mSF4GCGtOaB8KngbW_-IIqro061BWcsM6k4\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/stevekhoe\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2019-04-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Vitesco Technologies Group AG\",\n                    \"position\": \"Sales Manager\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2014-11-01\",\n                    \"leaveDate\": \"2019-03-01\",\n                    \"company\": \"Magna International, Inc.\",\n                    \"position\": \"Account Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2013-04-01\",\n                    \"leaveDate\": \"2014-10-01\",\n                    \"company\": \"Illinois Tool Works Inc.\",\n                    \"position\": \"Account Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2012-04-01\",\n                    \"leaveDate\": \"2013-04-01\",\n                    \"company\": \"One Up Consulting\",\n                    \"position\": \"Marketing Specialist / Account Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2009-07-01\",\n                    \"leaveDate\": \"2012-02-01\",\n                    \"company\": \"Alert Medical\",\n                    \"position\": \"Marketing and Project Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2011-08-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"Alert Communications Inc\",\n                    \"position\": \"Project Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"2011-06-01\",\n                    \"company\": \"TRUST Brands Inc\",\n                    \"position\": \"Director of Marketing / Founder\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2006-09-01\",\n                    \"leaveDate\": \"2009-07-01\",\n                    \"company\": \"Toyota Motor Corporation\",\n                    \"position\": \"Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2003-01-01\",\n                    \"leaveDate\": \"2005-01-01\",\n                    \"company\": \"TRW\",\n                    \"position\": \"Co-Op\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2000-09-01\",\n                    \"leaveDate\": \"2001-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Intern\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan-Dearborn\",\n                    \"subTitle\": \"Bachelor of Science (B.S.)Electrical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696166150284,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"An experienced & high-performing Technical Sales Leader & Account Manager, with previous roles supporting Small Business Management, Marketing & Project Management, and Electrical Engineering. Curious and passionate about trends in artificial intelligence, cybersecurity, DE&I, electrification & mobility, marketing/branding, business strategy & development, entrepreneurship, investing & finance, economics, and society Shareholder of the Green Bay Packers and landowner in the Scottish highlands. → Highly-skilled written and verbal communicator → Effective leader, presenter, and collaborator → Focused project manager → Fiercely analytical, data-driven, customer-focused, creative thinker and problem solver → Positive, motivated, friendly, and adaptable Simplicity is the ultimate sophistication. -Da Vinci Hakuna Matata. -Timon & Pumbaa Skills & Training Overview: Dale Carnegie Explore Leadership, IMPACT Selling, Karrass Negotiation, Costing & Finance, Presentation Skills, Cultural Awareness (Mexican, Japanese, and German/Austrian), Crucial Conversations & Crucial Accountability, OEM Supplier Portals (Toyota, Nissan, Honda, Mazda), Franklin Covey (The 7 Habits of Highly Effective People, The 5 Choices of Extraordinary Productivity), Technical Sales, Brand Strategy, Relationship Building, Sales Presentation, Quoting Strategy, OneNote, OEM Supplier Portals, Effective Email & Time Management (zero inbox; “Getting Things Done”), Project Management, Marketing, Direct Mail Advertising, e-Commerce, Website Design, Compliance, Medical Billing, Social Media, Graphic Design, Copywriting, Client Relations, Facebook Advertising, Google AdWords, Japanese Language (Beginner), Supplier Negotiation, VE/VA, A3 Reporting, Toyota Practical Problem Solving, CATIA V5, DRBFM, Y14.5M-1994 GD&T, Plant Auditing, Project Management, SPICE, Design\",\n            \"skills\": [\n                \"Product Development\",\n                \"Project Management\",\n                \"Continuous Improvement\",\n                \"Marketing Strategy\",\n                \"Automotive\",\n                \"Process Improvement\",\n                \"Program Management\",\n                \"Social Media Marketing\",\n                \"Marketing\",\n                \"Sales Engineering\",\n                \"Electrical Engineering\",\n                \"Negotiation\",\n                \"Time Management\",\n                \"Sales\",\n                \"Facebook\",\n                \"Online Marketing\",\n                \"Digital Marketing\",\n                \"Advertising\",\n                \"Account Management\",\n                \"Writing\",\n                \"Packaging Artwork\",\n                \"Marketing Material Creation\",\n                \"Branding Ideas\",\n                \"Verbal & Written Communicator\",\n                \"DRBFM\",\n                \"Team Leadership\",\n                \"Engineering\",\n                \"Project Planning\",\n                \"Training\",\n                \"Brand Development\",\n                \"Leadership\",\n                \"Manufacturing\",\n                \"Social Media\",\n                \"Public Relations\",\n                \"Management\",\n                \"Strategy\",\n                \"Online Advertising\",\n                \"Analysis\",\n                \"Market Research\",\n                \"Creative Direction\",\n                \"Copywriting\",\n                \"E-commerce\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4894801,\n                    \"lon\": -83.1446485\n                },\n                \"formattedAddress\": \"Royal Oak, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6970,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"1C41509505317C075ACD7051CBA99A4A\",\n            \"canonical\": \"https://www.linkedin.com/in/susan-callaghan-b2997315\",\n            \"fullname\": \"Susan Callaghan\",\n            \"headline\": \"Senior Account Executive at Gartner\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"information technology and services\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQE4XI5RdF_f2Q/profile-displayphoto-shrink_800_800/0/1545850079593?e=2147483647&v=beta&t=WteO3i8Vs4yOLojPPNnl7UN3pTGM2Iw0HSkyfRpF8sA\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/susan-callaghan-b2997315\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2018-11-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Gartner, Inc.\",\n                    \"position\": \"Senior Account Executive\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Thomson Reuters\",\n                    \"position\": \"Enterprise Account Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1997-12-01\",\n                    \"leaveDate\": \"2009-08-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Tax Manager\",\n                    \"description\": \"Responsible for managing the Federal, state and local tax processes for worldwide operations. Served as outsourcing liaison for informational reporting relationship both internally and externally and provided support to audit and planning groups when appropriate. Served as main point of contact for new tax employees as they integrated into the General Motors culture. Selected achievements:  Represented General Motors on the ONESOURCE Income Tax Steering Committee meeting 4x a year Show more Responsible for managing the Federal, state and local tax processes for worldwide operations. Served as outsourcing liaison for informational reporting relationship both internally and externally and provided support to audit and planning groups when appropriate. Served as main point of contact for new tax employees as they integrated into the General Motors culture. Selected achievements:  Represented General Motors on the ONESOURCE Income Tax Steering Committee meeting 4x a year providing insight and guidance to the product roadmap  Streamlined administration tasks related to preparation, review, signature and e-filing General Motors Corporation and Subsidiaries Federal return reducing preparation/consolidation time by 20%  Developed and delivered technical and functional training plans for offsite locations enabling efficiency during preparation and review of work programs Show less\"\n                },\n                {\n                    \"hiredDate\": \"1996-08-01\",\n                    \"leaveDate\": \"1997-12-01\",\n                    \"company\": \"Price Waterhouse\",\n                    \"position\": \"Tax Analyst\",\n                    \"description\": \"Prepared Federal, state and local tax returns for a wide variety of clients. Served as main point of contact for required documentation by taxing authorities in response to Federal and state audit requests. Selected achievements:  Loan staff to Fortune #10 tax department enabling a successful compliance season which led to full-time employment\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Walsh College\",\n                    \"subTitle\": \"Master of ScienceTaxation\"\n                },\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Bachelor of ArtsAccounting\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696164239532,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Enterprise Account Manager with expansive knowledge achieved through understanding tax department challenges, developing value-driven strategies, and delivering measurable improvements to critical business systems and tax technology processes. Strategic partner with an established reputation of collaboration to identify opportunities for improvements and who is passionate about establishing client relationships, developing rapport and generating long-term revenue and profit. Areas of Expertise Tax Technology  Corporate Tax  Relationship Selling  Strategic Account Development  Customer-Oriented\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6543,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"19C1D2051537B9CF80852BBEA628D143\",\n            \"canonical\": \"https://www.linkedin.com/in/akinkunle-akinlua-453b9538\",\n            \"fullname\": \"Akinkunle Akinlua\",\n            \"headline\": \"Accounting Clerk at Vision Information Technologies\",\n            \"location\": \"Detroit, Michigan\",\n            \"industry\": \"Human Resources\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQEzBEj1XPONIA/profile-displayphoto-shrink_800_800/0/1516359866444?e=2147483647&v=beta&t=CkVYSyZ6vtFeb9vbxR9UdNK2Tq2ThknGlm5rT6cm-Vo\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/akinkunle-akinlua-453b9538\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2015-12-01\",\n                    \"leaveDate\": \"2016-05-01\",\n                    \"company\": \"Veritiv Corporation\",\n                    \"position\": \"Payroll Specialist\",\n                    \"description\": \"Processed commissions and payroll; auditing, bank reconciliations, process improvement, month-end responsibilities etc.\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Early Response Adviser\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Burroughs, Inc.\",\n                    \"position\": \"Customer Service\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Yoruba\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"Bachelor of Applied Science (B.A.Sc.)Finance, General\"\n                },\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"Bachelor of Applied Science (B.A.Sc.)Human Resources Management/Personnel Administration, General\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696160001792,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Seeking a position in the accounting/finance field where my excellent analytical and technical skills can be utilized to improve the profitability of the organization.\",\n            \"skills\": [\n                \"HRIS proficient; highly proficient operating Microsoft Office: Excel, Visio, etc\",\n                \"Economics\",\n                \"PowerPoint\",\n                \"Microsoft Office\",\n                \"Teamwork\",\n                \"Leadership\",\n                \"Research\",\n                \"Microsoft Word\",\n                \"Java\",\n                \"Business Planning\",\n                \"Customer Service\",\n                \"Financial Analysis\",\n                \"Microsoft Excel\",\n                \"Public Speaking\",\n                \"Accounting\",\n                \"Time Management\",\n                \"Management\",\n                \"Outlook\",\n                \"Human Resources\",\n                \"Visio\",\n                \"Payroll\",\n                \"Sales\",\n                \"Analysis\",\n                \"Team Leadership\",\n                \"Access\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.331427,\n                    \"lon\": -83.0457538\n                },\n                \"formattedAddress\": \"Detroit, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 152,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"DB5674DECB4D19BE8704419DA476B4F1\",\n            \"canonical\": \"https://www.linkedin.com/in/jawwad-sayeed-68264967\",\n            \"fullname\": \"Jawwad Sayeed\",\n            \"headline\": \"Senior Electrical Design Engineer at BGM-ES\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media-exp1.licdn.com/dms/image/C5603AQGDb1to6mk0Ng/profile-displayphoto-shrink_200_200/0/1573050793903?e=2147483647&v=beta&t=PLhsSG70hUGw8kX-WhQqGmtEexHgZhNw24swAlTi_lA\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/jawwad-sayeed-68264967\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-02-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"BGM Electronic Services\",\n                    \"position\": \"Senior Electrical Design Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2018-10-01\",\n                    \"leaveDate\": \"2022-08-01\",\n                    \"company\": \"Flex Ltd.\",\n                    \"position\": \"Senior Hardware Design and Development Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2017-05-01\",\n                    \"leaveDate\": \"2018-10-01\",\n                    \"company\": \"Emphatec Inc.\",\n                    \"position\": \"Hardware Design Engineer\",\n                    \"description\": \" Designed multiple robust CSA/UL approved products for use within industrial environments following ISO standards.  Hardware design for various applications, including analog and digital systems.  Designed firmware using C language for multiple products on Cypress PSOC4/5.  Designed a sensor front-end processor to interface multiple sensors with PLC GPIO systems.  Designed a solenoid power saving driver.  Designed a switched mode power supply with an embedded health Show more  Designed multiple robust CSA/UL approved products for use within industrial environments following ISO standards.  Hardware design for various applications, including analog and digital systems.  Designed firmware using C language for multiple products on Cypress PSOC4/5.  Designed a sensor front-end processor to interface multiple sensors with PLC GPIO systems.  Designed a solenoid power saving driver.  Designed a switched mode power supply with an embedded health monitoring system.  Designed a relay status monitor, voltage sensor monitor, and a relay driver with built in logic functions.  Designed test jigs for automated testing of products.  Manage multiple projects at a time.  Manage all documentation related to projects, including bill of materials, test procedures, design review notes, and documents related to standards. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2016-09-01\",\n                    \"leaveDate\": \"2017-05-01\",\n                    \"company\": \"4D Retail Technology Corp.\",\n                    \"position\": \"Electronics Engineer\",\n                    \"description\": \" Developing product from prototyping phase to commercialization.  Designed PCBs for product development.  Closed loop control systems design and implementation to accurately maintain temperature of robot.  Embedded C and assembly level coding for TI ARM Cortex-M processor and ATMega microcontrollers.  Optimized power distribution, and designed new power management system for the Space Genius robot.  Designed and implemented centralized controller for space genius Show more  Developing product from prototyping phase to commercialization.  Designed PCBs for product development.  Closed loop control systems design and implementation to accurately maintain temperature of robot.  Embedded C and assembly level coding for TI ARM Cortex-M processor and ATMega microcontrollers.  Optimized power distribution, and designed new power management system for the Space Genius robot.  Designed and implemented centralized controller for space genius robot.  Reduced complexity, and cost of production for the space genius robot.  Testing and integration of new components introduced to the space genius robot.  Troubleshooting system failures, and developing improvement strategies to prevent future failures. Show less\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Body Shop Production Supervisor (Flex)\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2014-01-01\",\n                    \"leaveDate\": \"2015-08-01\",\n                    \"company\": \"IEEE-UOIT\",\n                    \"position\": \"Project Coordination Team Member\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2013-05-01\",\n                    \"leaveDate\": \"2013-08-01\",\n                    \"company\": \"Canadian National Railway Company\",\n                    \"position\": \"Signals and Communications Intern\",\n                    \"description\": \"Assisted in designing, verifying, and updating blueprints for new and existing crossings. Assisted with management work, which included cost control, evaluations, and generating reports. Designed programs that generated trouble call reports, helped with scheduling, and helped with inventory. All the field supervisors working at CN in the state of Wisconsin now use these programs. Tested, installed, and maintained railway crossings and wayside signals on the field, as well as some Show more Assisted in designing, verifying, and updating blueprints for new and existing crossings. Assisted with management work, which included cost control, evaluations, and generating reports. Designed programs that generated trouble call reports, helped with scheduling, and helped with inventory. All the field supervisors working at CN in the state of Wisconsin now use these programs. Tested, installed, and maintained railway crossings and wayside signals on the field, as well as some design. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2012-05-01\",\n                    \"leaveDate\": \"2012-07-01\",\n                    \"company\": \"Vision Fiber Optic Ltd\",\n                    \"position\": \"Quality and Assurance intern\",\n                    \"description\": \" Tested fiber optic cables using optic time-domain readers.  Designed 2D and 3D drawings of fiber optic cables using CAD based on customer specifications.  Promoted within a week based on adaptability, and efficiency.\"\n                }\n            ],\n            \"languagesList\": [\n                \"Urdu\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Ontario Institute of Technology\",\n                    \"subTitle\": \"Master of applied sciencesElectrical and Electronics Engineering3.90\"\n                },\n                {\n                    \"title\": \"University of Ontario Institute of Technology\",\n                    \"subTitle\": \"Bachelor of Engineering (B.Eng.)Electrical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696105131760,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I have had experience in design, project management, maintenance, and quality and assurance. I demonstrate good leadership in school and in the work force, I am a team player. Most of all I love to learn new and exciting things. In the past I have taught myself multiple different programming languages. I have good technical skills, thorough knowledge of electronic components, circuit design principles and techniques. I have familiarity using electrical test equipment such as oscilloscopes, DVM, logic analyzers, power supplies, and optical time-domain reflectometeres (OTDRs). If youre looking for a candidate that is an excellent team player, takes initiative and is willing to take on exciting and challenging projects look no further. To learn more about me and my experience call me or email me at: e-mail: jawwadsayeed19@gmail.com Thank you SKILLS: Circuit design, Multi-sim, FPGA, robots, VHDL, Verilog, PLC, C, C++, MatLab, Assembly Language, Simulink, Fritzing, Visio, Excel, Java, oscilloscopes, multi-meters, power supplies, HMI, manufacturing process, design process, microprocessors, optical time domain reflectometers, transformers, generators, motors, relays, amplifiers, electronics, embedded systems, communication systems, digital signal processing.\",\n            \"skills\": [\n                \"Engineering\",\n                \"Electrical Engineering\",\n                \"Design\",\n                \"Electronics Hardware Design\",\n                \"Circuit Design\",\n                \"Circuit Analysis\",\n                \"Electronics\",\n                \"C\",\n                \"Power Electronics\",\n                \"Multisim\",\n                \"Matlab\",\n                \"Simulink\",\n                \"EagleCAD\",\n                \"Verilog\",\n                \"Problem Solving\",\n                \"Java\",\n                \"C++\",\n                \"Microsoft Excel\",\n                \"Teamwork\",\n                \"Management\",\n                \"Public Speaking\",\n                \"Leadership\",\n                \"Analysis\",\n                \"Research\",\n                \"Xilinx\",\n                \"Project Management\",\n                \"Manufacturing\",\n                \"Automation\",\n                \"Project Planning\",\n                \"Process Improvement\",\n                \"Programming\",\n                \"Product Development\",\n                \"Microsoft Project\",\n                \"PLC\",\n                \"Automotive\",\n                \"VHDL\",\n                \"Testing\",\n                \"Troubleshooting\",\n                \"Simulations\",\n                \"Visio\",\n                \"FPGA\",\n                \"Great\",\n                \"•\",\n                \"Has errors\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 3315,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"25B21C50884406F908067614B2DEAA81\",\n            \"canonical\": \"https://www.linkedin.com/in/mujadded-qureshi-68860431\",\n            \"fullname\": \"Mujadded Qureshi\",\n            \"headline\": \"Manufacturing Quality Engineer at Apple\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media-exp1.licdn.com/dms/image/C4E03AQHLFXCorAd9mg/profile-displayphoto-shrink_800_800/0/1552661158397?e=2147483647&v=beta&t=55lWp3vinMOS-GpYJKFSzDyk2spGr0xcxcbf6OdI-AY\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/mujadded-qureshi-68860431\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-06-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Rivian Automotive, Inc.\",\n                    \"position\": \"Lead Supplier Development Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2022-06-01\",\n                    \"leaveDate\": \"2023-06-01\",\n                    \"company\": \"Apple Inc.\",\n                    \"position\": \"Manufacturing Quality Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2021-02-01\",\n                    \"leaveDate\": \"2022-06-01\",\n                    \"company\": \"Tesla, Inc.\",\n                    \"position\": \"Senior Manufacturing Quality Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Advanced Aluminum Technology Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Magna International, Inc.\",\n                    \"position\": \"Advanced Quality Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Kettering University\",\n                    \"subTitle\": \"Bachelors of ScienceMechanical Engineering\"\n                },\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"Master of Science - MSEngineering/Industrial Management\"\n                },\n                {\n                    \"title\": \"Hochschule Ulm\",\n                    \"subTitle\": \"Bachelor of Science (B.S.)Mechanical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696100544501,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Experienced Project Management Engineer with a demonstrated history in the automotive industry. Skilled in Advanced Product Quality Planning (APQP), Root Cause Analysis, Manufacturing Engineering, Mechanical Engineering, and Project Management. Strong engineering professional with a Master of Science - Engineering Management from Oakland University.\",\n            \"skills\": [\n                \"Finite Element Analysis\",\n                \"Engineering\",\n                \"Machining\",\n                \"Microsoft Office\",\n                \"Teamcenter\",\n                \"Unigraphics\",\n                \"NX 5\",\n                \"GD&T\",\n                \"Manufacturing Engineering\",\n                \"DFMEA\",\n                \"Catia\",\n                \"FMEA\",\n                \"APQP\",\n                \"PPAP\",\n                \"Automotive\",\n                \"Mechanical Engineering\",\n                \"Automotive Engineering\",\n                \"Lean Manufacturing\",\n                \"Advanced Product Quality Planning (APQP)\",\n                \"Powertrain\",\n                \"CAD\",\n                \"Minitab\",\n                \"Root Cause Analysis\",\n                \"Failure Mode and Effects Analysis (FMEA)\",\n                \"Design for Manufacturing\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 971,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"DBE96337F230D8C2CEBA74D155C272D2\",\n            \"canonical\": \"https://www.linkedin.com/in/jbowen\",\n            \"fullname\": \"Jack Bowen\",\n            \"headline\": \"\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"marketing and advertising\",\n            \"picture\": \"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/1/000/002/2b1/2c086c2.jpg\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/jbowen\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Chief Outsiders\",\n                    \"position\": \"Chief Marketing Officer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2019-11-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"JMB, LLC\",\n                    \"position\": \"Chief Marketing Officer\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2018-10-01\",\n                    \"leaveDate\": \"2019-11-01\",\n                    \"company\": \"Author Solutions, LLC\",\n                    \"position\": \"Chief Marketing Officer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2017-08-01\",\n                    \"leaveDate\": \"2018-09-01\",\n                    \"company\": \"Harrison College\",\n                    \"position\": \"CMO\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2002-01-01\",\n                    \"leaveDate\": \"2017-01-01\",\n                    \"company\": \"Detroit Golf Club\",\n                    \"position\": \"Member\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2014-10-01\",\n                    \"leaveDate\": \"2016-01-01\",\n                    \"company\": \"AcademixDirect, Inc.\",\n                    \"position\": \"Chief Marketing Officer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2012-08-01\",\n                    \"leaveDate\": \"2014-09-01\",\n                    \"company\": \"Education Management Corporation -- EDMC\",\n                    \"position\": \"CMO, President, Marketing & Advertising\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2010-11-01\",\n                    \"leaveDate\": \"2012-07-01\",\n                    \"company\": \"Acxiom / Media Inc\",\n                    \"position\": \"Managing Partner\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2005-10-01\",\n                    \"leaveDate\": \"2010-01-01\",\n                    \"company\": \"Urban Science Applications, Inc\",\n                    \"position\": \"CMO\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2005-01-01\",\n                    \"leaveDate\": \"2008-01-01\",\n                    \"company\": \"Detroit Lacrosse Club\",\n                    \"position\": \"Parent\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"General Manager Digital, Online and CRM\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1986-09-01\",\n                    \"leaveDate\": \"1996-08-01\",\n                    \"company\": \"Leo Burnett Worldwide, Inc.\",\n                    \"position\": \"Account Director\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1981-05-01\",\n                    \"leaveDate\": \"1986-08-01\",\n                    \"company\": \"United States Army\",\n                    \"position\": \"Captain\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"French\",\n                \"German\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Southern California\",\n                    \"subTitle\": \"MS\"\n                },\n                {\n                    \"title\": \"United States Military Academy at West Point\",\n                    \"subTitle\": \"BS General Engineering\"\n                },\n                {\n                    \"title\": \"Trinity High\",\n                    \"subTitle\": \"-\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1695090974211,\n            \"military\": true,\n            \"clearance\": true,\n            \"about\": \"\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 13229,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"039BC596F89B72B6515257B1B5DB36A1\",\n            \"canonical\": \"https://www.linkedin.com/in/jwhitty\",\n            \"fullname\": \"Jessica Whitty\",\n            \"headline\": \"Senior Talent Acquisition Partner| Mental Health Advocate\",\n            \"location\": \"Richmond, Michigan\",\n            \"industry\": \"E-Learning\",\n            \"picture\": \"https://media.licdn.com/dms/image/D5603AQEpoAEnX9K29w/profile-displayphoto-shrink_100_100/0/1666012371973?e=1700092800&v=beta&t=IF0DelzmbqeoeMPFzgCw4T3grpetLvG5_Sf1otsjhKI\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/jwhitty\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Walker-Miller Energy Services\",\n                    \"position\": \"Senior Talent Acquisition Partner\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2022-10-01\",\n                    \"leaveDate\": \"2023-02-01\",\n                    \"company\": \"Better Life Partners\",\n                    \"position\": \"Talent Acquisition Partner\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \"\n                },\n                {\n                    \"hiredDate\": \"2021-11-01\",\n                    \"leaveDate\": \"2022-08-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Technical Talent Specialist\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \"\n                },\n                {\n                    \"hiredDate\": \"2021-02-01\",\n                    \"leaveDate\": \"2021-11-01\",\n                    \"company\": \"Walker-Miller Energy Services\",\n                    \"position\": \"Talent Acquisition Manager\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2020-05-01\",\n                    \"leaveDate\": \"2021-02-01\",\n                    \"company\": \"Trillium Teamologies, Inc.\",\n                    \"position\": \"Senior Resource Development Specialist\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2018-07-01\",\n                    \"leaveDate\": \"2019-11-01\",\n                    \"company\": \"ABM Industries Incorporated\",\n                    \"position\": \"Talent Acquisition Manager\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \"\n                },\n                {\n                    \"hiredDate\": \"2013-06-01\",\n                    \"leaveDate\": \"2018-05-01\",\n                    \"company\": \"Allegis Global Solutions\",\n                    \"position\": \"Recruiting Manager\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \"\n                },\n                {\n                    \"hiredDate\": \"2012-04-01\",\n                    \"leaveDate\": \"2013-06-01\",\n                    \"company\": \"North American Bancard & Pay Anywhere\",\n                    \"position\": \"Corporate Recruiter\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \"\n                },\n                {\n                    \"hiredDate\": \"2009-03-01\",\n                    \"leaveDate\": \"2012-03-01\",\n                    \"company\": \"Kelly Services, Inc.\",\n                    \"position\": \"U.S. Services- Recruiter\",\n                    \"description\": \"                                                                                                                                                                                                                                           \"\n                },\n                {\n                    \"hiredDate\": \"2008-02-01\",\n                    \"leaveDate\": \"2009-03-01\",\n                    \"company\": \"Kelly Services, Inc.\",\n                    \"position\": \"Recruiter - Outsourcing and Consulting Group\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \"\n                },\n                {\n                    \"hiredDate\": \"2006-04-01\",\n                    \"leaveDate\": \"2008-02-01\",\n                    \"company\": \"Kelly Services, Inc.\",\n                    \"position\": \"Sr. Sourcing Specialist - Outsourcing and Consulting Group\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \"\n                },\n                {\n                    \"hiredDate\": \"2004-03-01\",\n                    \"leaveDate\": \"2006-03-01\",\n                    \"company\": \"Allstate Insurance\",\n                    \"position\": \"HR Associate - Regional Recruiter\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                   \"\n                },\n                {\n                    \"hiredDate\": \"2002-03-01\",\n                    \"leaveDate\": \"2004-03-01\",\n                    \"company\": \"Aflac Incorporated\",\n                    \"position\": \"Regional Recruiting Coordinator\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                             \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Walsh College\",\n                    \"subTitle\": \"MBAInternational Business\"\n                },\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"BSHuman Resources\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1695090150503,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Lifes too short to not love what you do! Throughout my career, I’ve worked with diverse clients and candidates in various industries across the US and Canada. My commitment to strategically targeting and identifying top talent has earned me the reputation of being an expert partner in the talent acquisition space. I have a diverse background in supporting Mental Health/Recovery Addiction, Automotive, Corporate roles, Insurance, Financial Services, Institutional Investments, Clinical Research, Healthcare, Merchant Services, K20 Education, & IT as well as high volume and entry level to C-level hires. My specialties include: •Developing and leading the overall strategy and execution of Talent Acquisition Programs. •Leading, coaching, developing and mentoring Talent Acquisition teams. •Maintaining market expertise of industry trends and competitors. •Create, review, measure & manage SLAs, KPIs and metrics. •Outcome focused. •Best in class recruiting practices and continuous improvement. •Building partnerships with HR, Operations, Executive Leadership, Business Units, Vendors & Suppliers. •Identifying the right fit for the candidate, and the company! •Full-life cycle recruitment. •Corporate, contract & permanent placement recruitment, as well as Recruitment Process Outsourcing (RPO). •Background checks & negotiations. •ATS/CRM/HRIS: My Staffing Pro, Taleo, SilkRoad, Avature, Recruitsoft, Peoplesoft, Source Point, Share Point, Fieldglass, Active Recruiter, JazzHR, Workday, Monster, Jobalign, Open Hire, Team Member Gateway, Brass Ring, Oracle and Bullhorn.\",\n            \"skills\": [\n                \"Talent Acquisition\",\n                \"Applicant Tracking Systems\",\n                \"Sourcing\",\n                \"Screening\",\n                \"Technical Recruiting\",\n                \"Internet Recruiting\",\n                \"Hiring\",\n                \"College Recruiting\",\n                \"Onboarding\",\n                \"Contract Recruitment\",\n                \"Negotiation\",\n                \"Resume Writing\",\n                \"Vendor Management\",\n                \"Interviewing\",\n                \"Mentoring\",\n                \"Merchant Services\",\n                \"OFCCP\",\n                \"Team Leadership\",\n                \"Team Building\",\n                \"Leadership\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8091969,\n                    \"lon\": -82.7557554\n                },\n                \"formattedAddress\": \"Richmond, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7374,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"FXcveYEBdbruSb0I5sRA\",\n            \"canonical\": \"https://www.linkedin.com/in/belindacargile\",\n            \"fullname\": \"Belinda C.\",\n            \"headline\": \"Clinical Account Specialist at Biosense Webster\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/belindacargile\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Biosense Webster Inc\",\n                    \"position\": \"Clinical Account Specialist\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2020-01-01\",\n                    \"leaveDate\": \"2021-07-01\",\n                    \"company\": \"University of Michigan\",\n                    \"position\": \"Research Assistant\",\n                    \"description\": \"Working in the University of Michigan Neuromuscular Rehabilitation Robotics (NeuRRo) Laboratory to study motor learning and recovery after stroke  using advanced motion capture and physiological measurement techniques to study the biomechanics and neural plasticity during gait training.\"\n                },\n                {\n                    \"hiredDate\": \"2019-07-01\",\n                    \"leaveDate\": \"2019-12-01\",\n                    \"company\": \"Rainbow Rehabilitation Centers\",\n                    \"position\": \"Rehabilitation Assistant\",\n                    \"description\": \" Collaborated with the clinical treatment team, which included nurses and physical therapists, in order to ensure the safety and health of clients  Administered bedside care, performed healthcare-related tasks such as monitoring vital signs and medication; also aided in therapeutic rehabilitation programs\"\n                },\n                {\n                    \"hiredDate\": \"2018-08-01\",\n                    \"leaveDate\": \"2019-05-01\",\n                    \"company\": \"Ferris State University\",\n                    \"position\": \"Desk Service Assistant\",\n                    \"description\": \" Responsible for the overall operations involved with working the residence hall front desk.  Assisted residents, answered phones, performed functions with night security, checked out desk equipment, and assisted the hall director and desk manager as needed.  Performed various clerical duties, including opening mail, answering the telephone, etc.\"\n                },\n                {\n                    \"hiredDate\": \"2017-08-01\",\n                    \"leaveDate\": \"2018-02-01\",\n                    \"company\": \"Ferris State University\",\n                    \"position\": \"General Clerical\",\n                    \"description\": \" My duties included answering phones, data entry, filing, typing, and photocopying.  Other jobs included assisting faculty, scheduling appointments, research, assisting patrons and other general office duties.\"\n                },\n                {\n                    \"hiredDate\": \"2016-06-01\",\n                    \"leaveDate\": \"2016-08-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Student Corps Intern\",\n                    \"description\": \" Worked with my team on small start-ups and managed aspects of their restoration, repair and clean-up projects, from budgeting, planning and problem solving to execution.  Completed community service projects including community improvement projects and working in food banks.  Attended mentoring sessions and training programs to enhance employment skills.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan College of Engineering\",\n                    \"subTitle\": \"Bachelor of Engineering - BSE, Biomedical Engineering\"\n                },\n                {\n                    \"title\": \"Ferris State University\",\n                    \"subTitle\": \"Associate of Science - ASPre-Science\"\n                },\n                {\n                    \"title\": \"Madison high school\",\n                    \"subTitle\": \"-\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1694785358577,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 1218,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"2svsLH4B9VcM4flOtjvH\",\n            \"canonical\": \"https://www.linkedin.com/in/ellen-lu-a3bb926\",\n            \"fullname\": \"Ellen Lu\",\n            \"headline\": \"Senior Manager, Automotive Cybersecurity\",\n            \"location\": \"Novi, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static-exp1.licdn.com/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/ellen-lu-a3bb926\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Dana Incorporated\",\n                    \"position\": \"Senior Cybersecurity Manager\",\n                    \"description\": \"Head of product cybersecurity for Light Vehicle Business Unit - EV powertrain System & Software cybersecurity engineering. Building a brand new cybersecurity team and managing limited resources to efficiently work on multiple projects. Directing cybersecurity development (onboard HSM, SecOC, Secure boot, Secure update in AUTOSAR based architecture) and the delivery of full package of cybersecurity work products compliant with ISO 21434 standard.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"HARMAN International\",\n                    \"position\": \"Senior Manager, Automotive Cybersecurity Office\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2011-12-01\",\n                    \"leaveDate\": \"2012-12-01\",\n                    \"company\": \"A123 Systems\",\n                    \"position\": \"Sr. Software Engineer Lead\",\n                    \"description\": \"Deliver Battery Management System software\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Visteon Corporation\",\n                    \"position\": \"Lead Software Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Software Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"Master of Science (MS)Computer Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1694035845910,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"An expert skillfully navigating in automotive business environment to always succefully drive teams reaching goals, with 27 years of automotive industry engineering and management experience - first 18 years in ECU software, from validation to SW development and project management; then 4 years in system requirements management, followed by 2 years in program management, recent 3 years in automotive cybersecurity mamagement.\",\n            \"skills\": [\n                \"Embedded Systems\",\n                \"Embedded Software\",\n                \"Automotive\",\n                \"Engineering Management\",\n                \"C\",\n                \"Integration\",\n                \"Product Development\",\n                \"Electronics\",\n                \"Testing\",\n                \"Software Project Management\",\n                \"RTOS\",\n                \"Automotive Electronics\",\n                \"Systems Engineering\",\n                \"Software Design\",\n                \"Software Development\",\n                \"Debugging\",\n                \"Device Drivers\",\n                \"Microcontrollers\",\n                \"Manufacturing\",\n                \"Program Management\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.48059,\n                    \"lon\": -83.4754913\n                },\n                \"formattedAddress\": \"Novi, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 706,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"C20E0F535D607DD1EB689E219E6CC320\",\n            \"canonical\": \"https://www.linkedin.com/in/wendycurcuri\",\n            \"fullname\": \"Wendy Bauer\",\n            \"headline\": \"General Manager, AWS Automotive | AWS at Amazon | Chief Member | DEI Champion\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"computer software\",\n            \"picture\": \"https://media-exp1.licdn.com/dms/image/C4E03AQEzCMnX8SfGcg/profile-displayphoto-shrink_800_800/0/1641417112015?e=2147483647&v=beta&t=yYI7tWdP-5p0sTDxIu8apo26OxC7b-0pRETjV3UOMrM\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/wendycurcuri\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Amazon Web Services, Inc.\",\n                    \"position\": \"General Manager, Automotive & Manufacturing\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2022-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Chief\",\n                    \"position\": \"Member\",\n                    \"description\": \"Chief is a private network built to drive more women into positions of power and keep them there. Chief is the only organization specifically designed for senior women leaders to strengthen their leadership journey, cross-pollinate ideas across industries, magnify their influence, and pave the way to bring others with them.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Microsoft Corporation\",\n                    \"position\": \"Worldwide Manufacturing & Resources Industry, Business Strategy Leader\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2013-09-01\",\n                    \"leaveDate\": \"2016-07-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Global Sales Director - Electronics & Safety\",\n                    \"description\": \"Formerly Delphi, now Aptiv\"\n                },\n                {\n                    \"hiredDate\": \"2012-10-01\",\n                    \"leaveDate\": \"2013-09-01\",\n                    \"company\": \"Eaton Corporation, PLC\",\n                    \"position\": \"Director of Sales - Automotive\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2006-03-01\",\n                    \"leaveDate\": \"2012-09-01\",\n                    \"company\": \"DENSO International America, Inc.\",\n                    \"position\": \"Senior Sales Manager\",\n                    \"description\": \"Ford Motor Company - Global Electronics & Engine Electric Business April 2010 - September 2012 Nissan, Subaru, Mitsubishi - North America Thermal, Powertrain, Electronics & Engine Electric Business March 2006 - March 2010\"\n                },\n                {\n                    \"hiredDate\": \"1994-10-01\",\n                    \"leaveDate\": \"2006-02-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Purchasing, Finance Cost Estimating, Product Design Engineering, Quality Engineering\",\n                    \"description\": \"Variety of positions across functional organizations: * Cost Reduction Manager (Purchasing) - Vehicle Line Team * Finance Cost Estimating - Process Development * Product Design Engineering * Vehicle Assembly (Quality) Engineering * Engineering Co-op Student\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Indiana University - Kelley School of Business\",\n                    \"subTitle\": \"MBAGeneral Management\"\n                },\n                {\n                    \"title\": \"Purdue University\",\n                    \"subTitle\": \"MSEngineering\"\n                },\n                {\n                    \"title\": \"Kettering University\",\n                    \"subTitle\": \"B.S.Electrical Eng. & B.S. Mechanical Eng.\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693991451339,\n            \"military\": false,\n            \"clearance\": true,\n            \"about\": \"\",\n            \"skills\": [\n                \"Automotive\",\n                \"Global Business Development\",\n                \"Sales Management\",\n                \"Strategic Planning\",\n                \"Product Development\",\n                \"Cross-functional Team Leadership\",\n                \"Powertrain\",\n                \"Vehicles\",\n                \"Continuous Improvement\",\n                \"Engineering\",\n                \"Root Cause Analysis\",\n                \"PDCA\",\n                \"Business Process Improvement\",\n                \"Cost Reduction Strategies\",\n                \"APQP\",\n                \"Supply Chain Management\",\n                \"Kaizen\",\n                \"Team Building\",\n                \"Purchasing\",\n                \"New Business Development\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8379,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"3D2A1AA6D9BF1620B1FC24E9A356FC5C\",\n            \"canonical\": \"https://www.linkedin.com/in/scott-ertell-6925218\",\n            \"fullname\": \"Scott Ertell\",\n            \"headline\": \"Wellspring Lutheran Services\",\n            \"location\": \"Dearborn, Michigan\",\n            \"industry\": \"information technology and services\",\n            \"picture\": \"https://media-exp1.licdn.com/dms/image/C4E03AQErbi2TtKpJNg/profile-displayphoto-shrink_400_400/0/1553782357497?e=1635379200&v=beta&t=SaHlCARIOjjZW2rdzF3Nagv9DqHNQesV8HSoG6NV8BI\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/scott-ertell-6925218\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2015-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Wellspring Lutheran Services\",\n                    \"position\": \"IT Helpdesk Technician I\",\n                    \"description\": \" Reset email and network passwords  Create New User accounts; including AD, email, shared drive access and setup laptops, network printers and configuring Outlook.  Complete Termination request, disabling all user accounts  Trouble shoot Wi-Fi and connectivity issues  Troubleshooting email locking up, sharing calendar and setting up supervisors with access to terminated employees email.  Troubleshoot Xerox WorkCentre printer issues  Setting Show more  Reset email and network passwords  Create New User accounts; including AD, email, shared drive access and setup laptops, network printers and configuring Outlook.  Complete Termination request, disabling all user accounts  Trouble shoot Wi-Fi and connectivity issues  Troubleshooting email locking up, sharing calendar and setting up supervisors with access to terminated employees email.  Troubleshoot Xerox WorkCentre printer issues  Setting permissions on shared drives  New employee setup (laptop, printers, shared drives, phones and key fobs)  Update IT Inventory and Employee Status Report Sheet Show less\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2010-12-01\",\n                    \"leaveDate\": \"2013-06-01\",\n                    \"company\": \"Corporation Service Company\",\n                    \"position\": \"Incident Coordinator\",\n                    \"description\": \"Assign tickets to technicians according to locations to resolve issue. Work as an integral part of a team of many different Incident Coordinators. Review all tickets to drive efficiencies and decrease resolution times. Escalate productivity issues to the Incident Managers and Site Managers. Monitor and assign tickets from filtering queue to the help desk so tickets can be created. Resign ticket per technician request to different support group through a buy-off request Show more Assign tickets to technicians according to locations to resolve issue. Work as an integral part of a team of many different Incident Coordinators. Review all tickets to drive efficiencies and decrease resolution times. Escalate productivity issues to the Incident Managers and Site Managers. Monitor and assign tickets from filtering queue to the help desk so tickets can be created. Resign ticket per technician request to different support group through a buy-off request (technician assuming responsibility of ticket). Trained Incident Coordinators on creating Networking and PBX Report. Trained Incident Coordinators on running Bi-weekly Networking and PBX call in meeting. Escalate tickets to technicians for immediate work. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2010-02-01\",\n                    \"leaveDate\": \"2010-11-01\",\n                    \"company\": \"St. John Health Care\",\n                    \"position\": \"Incident Coordinator\",\n                    \"description\": \"Assign tickets to technicians according to locations to resolve issue. Work as an integral part of a team of eighteen Incident Coordinators. Correct and report inaccurately coded and assigned tickets for Quality Assurance. Facilitate Plan of the Day Meeting with Technicians, Team Leads, and Site Managers. Review all tickets to drive efficiencies and decrease resolution times. Escalate productivity issues to the Incident Managers and Site Managers. Review and audit tickets for Show more Assign tickets to technicians according to locations to resolve issue. Work as an integral part of a team of eighteen Incident Coordinators. Correct and report inaccurately coded and assigned tickets for Quality Assurance. Facilitate Plan of the Day Meeting with Technicians, Team Leads, and Site Managers. Review all tickets to drive efficiencies and decrease resolution times. Escalate productivity issues to the Incident Managers and Site Managers. Review and audit tickets for Process Compliance. Support SLA attainment by identifying, reporting, and escalating all tickets close to or missing Service Levels to appropriate individuals. Provide Metrics and Reporting Support for Month End Billing and SLA Reports by scrubbing tickets and correcting inaccuracies. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2008-12-01\",\n                    \"leaveDate\": \"2009-01-01\",\n                    \"company\": \"J P Morgan Chase & Co\",\n                    \"position\": \"Media Operator\",\n                    \"description\": \"Retrieved media tapes from tape racks and inserted them into media library. Took out ejected tapes from media library and re-racked tapes. Inserted cleaning tapes into media library.\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford SDSS Server Team\",\n                    \"position\": \"Network Administrator\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2004-11-01\",\n                    \"leaveDate\": \"2005-06-01\",\n                    \"company\": \"Handleman Group\",\n                    \"position\": \"Senior Laptop Support Technician\",\n                    \"description\": \"Support Outlook 98 & 2000; answer user questions and provide problem resolution. Swap out hardware for HP Omnibook 510, Gateway, Compaq; Dell Axim PDA's & SD Memory Cards; Canon BJC-80 &85, parallel and ac adapter cords; Scanner Guns and Cords. Backup data, restage, restore data and configure laptop computers. Assisted users in synching store data from server to laptop and then to PDA, also synching from server to PDA. Assisted user in troubleshooting dial-up problems Show more Support Outlook 98 & 2000; answer user questions and provide problem resolution. Swap out hardware for HP Omnibook 510, Gateway, Compaq; Dell Axim PDA's & SD Memory Cards; Canon BJC-80 &85, parallel and ac adapter cords; Scanner Guns and Cords. Backup data, restage, restore data and configure laptop computers. Assisted users in synching store data from server to laptop and then to PDA, also synching from server to PDA. Assisted user in troubleshooting dial-up problems in connecting on Laptop's and Socket 56K Modem on PDA's. Reset and unlocked users network passwords. Emailed and called users and open tickets. Logging in as administrator to Portal Page to see if user has territory and store setup to configure PDA and Laptop for new user. Give user manual overrite and auth code for users to sign into stores with. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2004-11-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Senior Laptop Support Technician\",\n                    \"description\": \" Assist and troubleshoot Ford users in connecting Cable Modem and DSL with router and VPN Client.  Create and publish articles for the IPortal, through Web Authoring.  Pushed through and corrected articles for the IPortal, being Knowledge Engineer.  Troubleshoot LAN connectivity issues and reset LAN passwords.  Create GIRS tickets and called users on open tickets to resolve problems.  Support Outlook 98 & 2000; answer user questions and provide problem resolution. Show more  Assist and troubleshoot Ford users in connecting Cable Modem and DSL with router and VPN Client.  Create and publish articles for the IPortal, through Web Authoring.  Pushed through and corrected articles for the IPortal, being Knowledge Engineer.  Troubleshoot LAN connectivity issues and reset LAN passwords.  Create GIRS tickets and called users on open tickets to resolve problems.  Support Outlook 98 & 2000; answer user questions and provide problem resolution.  Support Microsoft Office applications.  Swap out hardware for Dell Latitude CPX, C600 & C610; HP DeskJet Printers and Brother MFC Printers.  Troubleshoot modem problems and assist Ford users in activating their Securid cards.  Stage, restage and configure laptop computers; instruct users on running system cleanup.  Help users to map network drives, assist users in creating their dial-up-network connection. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1997-12-01\",\n                    \"leaveDate\": \"1999-06-01\",\n                    \"company\": \"Mati's Deli\",\n                    \"position\": \"Inside Sales Representative\",\n                    \"description\": \"Trained new employees, light stock work, answered phone orders and questions.\"\n                },\n                {\n                    \"hiredDate\": \"1997-09-01\",\n                    \"leaveDate\": \"1997-12-01\",\n                    \"company\": \"CCN\",\n                    \"position\": \"Help Desk Analyst\",\n                    \"description\": \"Resolved system conflicts on a multiple server network. Monitored and documented data on server activity. Created documentation to track login memory space available, voice mails, messages and call status on open tickets. Assisted the staging and distribution of systems to remote sites throughout the country. Updated the phone status line in regards to server downtime and accessibility.\"\n                },\n                {\n                    \"hiredDate\": \"1996-09-01\",\n                    \"leaveDate\": \"1997-02-01\",\n                    \"company\": \"Cyber Inc\",\n                    \"position\": \"Satellite Network Analyst\",\n                    \"description\": \"Assisted Ford dealerships in the activation of their Service Bay Diagnostic System (SBDS) to the FORDSTAR Satellite Network. Trouble shot network problems concerning SBDS and SBTS and FORDSTAR Terminal. Tested Service Bay Products from remote location. Distributed LAN software and LAN instructions to dealerships. Assisted Hughes Network System field technicians with service problems. Interfaced with Service Bay Product Support Group and FORDSTAR. Provided helpdesk support for Show more Assisted Ford dealerships in the activation of their Service Bay Diagnostic System (SBDS) to the FORDSTAR Satellite Network. Trouble shot network problems concerning SBDS and SBTS and FORDSTAR Terminal. Tested Service Bay Products from remote location. Distributed LAN software and LAN instructions to dealerships. Assisted Hughes Network System field technicians with service problems. Interfaced with Service Bay Product Support Group and FORDSTAR. Provided helpdesk support for LAN activation issues. Recorded service comments and placed service requests for IBM and Hughes technicians. Checked on Satellite connection for FORDSTAR Terminal, SBDS and SBTS. Show less\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Phoenix - Online\",\n                    \"subTitle\": \"BachelorComputer Information System\"\n                },\n                {\n                    \"title\": \"Henry Ford Community College\",\n                    \"subTitle\": \"Associates of ScienceComputer Information System\"\n                },\n                {\n                    \"title\": \"Edsel Ford High School\",\n                    \"subTitle\": \"High School DiplomaGeneral Studies\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693979035197,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Servers\",\n                \"Troubleshooting\",\n                \"VPN\",\n                \"Hardware\",\n                \"Software Documentation\",\n                \"Help Desk Support\",\n                \"Laptops\",\n                \"Networking\",\n                \"Printers\",\n                \"Routers\",\n                \"Management\",\n                \"HP\",\n                \"Team Leadership\",\n                \"Access\",\n                \"Quality Assurance\",\n                \"Microsoft Office\",\n                \"Outlook\",\n                \"Windows Server\",\n                \"Active Directory\",\n                \"Sla\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.3222599,\n                    \"lon\": -83.17631449999999\n                },\n                \"formattedAddress\": \"Dearborn, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7158,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"2FB33FB26D05317C8F9711F2798F9EFA\",\n            \"canonical\": \"https://www.linkedin.com/in/sean-gale-07b61267\",\n            \"fullname\": \"Sean Gale\",\n            \"headline\": \"Project Specialist at Marty Feldman Chevrolet\",\n            \"location\": \"Farmington, Michigan\",\n            \"industry\": \"Security and Investigations\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQHjEugD25m2eA/profile-displayphoto-shrink_800_800/0/1517358931156?e=2147483647&v=beta&t=vAee0L1FhVlgpqLjz3NHbpTMVY9uxGv_kyfv3vmPRS8\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/sean-gale-07b61267\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Marty Feldman Chevrolet\",\n                    \"position\": \"Project Specialist\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2014-03-01\",\n                    \"leaveDate\": \"2018-03-01\",\n                    \"company\": \"United States Army\",\n                    \"position\": \"Firefinder Radar Operator Section Chief\",\n                    \"description\": \"Sergeant in the United States Army.\"\n                },\n                {\n                    \"hiredDate\": \"2013-03-01\",\n                    \"leaveDate\": \"2013-11-01\",\n                    \"company\": \"Asset Control Services, Inc. (ACS Claims Investigations)\",\n                    \"position\": \"Investigator\",\n                    \"description\": \"Conduct surveillance on cases, videotaping, interviews, neighborhood canvases, and report writing.\"\n                },\n                {\n                    \"hiredDate\": \"2013-02-01\",\n                    \"leaveDate\": \"2013-03-01\",\n                    \"company\": \"Pizza Hut\",\n                    \"position\": \"Delivery Driver\",\n                    \"description\": \"Delivering pizza and other menu items to customers. Cleaning dishes and prepping food for cooks.\"\n                },\n                {\n                    \"hiredDate\": \"2012-05-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"Katke Golf Course\",\n                    \"position\": \"Grounds Keeper\",\n                    \"description\": \"Maintaining golf course up keep, mowing grass around the grounds. Helping inside the club house when needed.\"\n                },\n                {\n                    \"hiredDate\": \"2011-05-01\",\n                    \"leaveDate\": \"2011-09-01\",\n                    \"company\": \"Flint Golf and Country Club\",\n                    \"position\": \"Grounds Keeper\",\n                    \"description\": \"Maintaining the golf course grounds, mowing tee's, fairway's, green's and so on. Additional work included taking care of landscaping needs. Along with helping inside the club house when needed.\"\n                },\n                {\n                    \"hiredDate\": \"2008-11-01\",\n                    \"leaveDate\": \"2010-09-01\",\n                    \"company\": \"Techumseh Lawn and Landscape\",\n                    \"position\": \"Landscaper\",\n                    \"description\": \"Mowing lawns at commercial and residential properties. Along with landscaping projects at these properties and Plowing snow.\"\n                },\n                {\n                    \"hiredDate\": \"2008-06-01\",\n                    \"leaveDate\": \"2008-10-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Forklift Driver\",\n                    \"description\": \"Loading and unloading semi trucks and moving automotive parts around the plant.\"\n                },\n                {\n                    \"hiredDate\": \"2006-09-01\",\n                    \"leaveDate\": \"2008-06-01\",\n                    \"company\": \"Flint Golf and Country Club\",\n                    \"position\": \"Grounds Keeper\",\n                    \"description\": \"Maintaining the golf course grounds, mowing tee's, fairway's, green's and so on. Additional work included taking care of landscaping needs. Along with helping inside the club house when needed.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Ferris State University\",\n                    \"subTitle\": \"Bachelor's degreeCriminal Justice and Corrections\"\n                },\n                {\n                    \"title\": \"Kearsley High School\",\n                    \"subTitle\": \"High School diplomaHigh School/Secondary Diploma Programs\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693964009819,\n            \"military\": false,\n            \"clearance\": true,\n            \"about\": \"Well rounded individual with a growing desire to constantly improve and challenge oneself physically and mentally and bring out the best in those around me. During my time at Ferris State University I developed skills in areas of crime scene investigation, including basic training in blood splatter analysis, bullet and finger print analysis along with crime scene photography. I also have learned skills in supervision/management in the Criminal Justice field along with human resource management. I have also received certification in report writing, firearms training in which I have my Concealed Pistol License. I am also certified in CPR and first aid along with PPCT defensive tactics as well as a certification in Michigan Correctional Law. I have also learned skills in the area of conducting work as a private investigator such a mobile and covert surveillance, conducting neighborhood canvass and interviewing. Military training includes digital and wireless communications. Vehicle maintenance and operations on light and heavy duty vehicles and generators. Trouble shooting, maintenance and operational skills relating to field artillery radars (AN/TPQ-36, AN/TPQ-37, AN/TPQ-50, AN/TPQ-53). Accountability of personnel upto a dozen or more people at any given time. Responsible for for the safeguard and operational functionality of military equipment between 2 million-16 million dollars. Skills also include writing monthly personnel evaluations, strategic planning, training and leading individuals in job specific areas. Coaching and mentoring individuals. Expert marksmanship qualified. Top Secret-SCI clearance.\",\n            \"skills\": [\n                \"Time Management\",\n                \"Leadership\",\n                \"First Aid\",\n                \"Landscaping\",\n                \"Forklift Operator\",\n                \"Lawn Care\",\n                \"Firearms\",\n                \"Criminal Justice\",\n                \"Cpr Certified\",\n                \"Teamwork\",\n                \"Analysis\",\n                \"Private Investigations\",\n                \"Surveillance\",\n                \"Report Writing\",\n                \"Loss Prevention\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4644795,\n                    \"lon\": -83.37632180000001\n                },\n                \"formattedAddress\": \"Farmington, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 3379,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"A61E49969C80CCCF1F0538C665D7F6AA\",\n            \"canonical\": \"https://www.linkedin.com/in/josephine-dannug-455a813\",\n            \"fullname\": \"Josephine Dannug\",\n            \"headline\": \"Project Engineering Manager\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Defense & Space\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/josephine-dannug-455a813\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Dynamics Land Systems\",\n                    \"position\": \"Program Management Specialist\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2014-12-01\",\n                    \"company\": \"Virtual celebration\",\n                    \"position\": \"Virtual event planner\",\n                    \"description\": \"Independent contractor offering the service and helping consumers to host fun & engaging virtual events. Birthdays, anniversaries, graduations, business grand openings, fundraisers, and more can all be enhanced with a virtual component. Let's get the party started!\"\n                },\n                {\n                    \"hiredDate\": \"2000-07-01\",\n                    \"leaveDate\": \"2008-08-01\",\n                    \"company\": \"Creative Memories\",\n                    \"position\": \"Independent Consultant (Unit Leader)\",\n                    \"description\": \"Provided training to clients procedure on photograph preservation. Organized small and large group sales presentation. Developed recruitment process to attract new independent consultants. Researched and implemented new product market on custom framing.\"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2002-01-01\",\n                    \"company\": \"Visteon Corporation\",\n                    \"position\": \"Manufacturing Engineer\",\n                    \"description\": \"Responsible for the launching and implementation of Injection-molded Throttle Body Assembly manufacturing process. Provided on-site engineering support during initial OEM assembly of the Ford Focus. Collaborated with Design Engineering to determine and test alternative materials for the Throttle body cost savings initiatives. Coordinated configuration management actions as related to automotive vehicles. Maintained documentations such as PFMEA, Process Flow/Quality Plans, and Quality Reports Show more Responsible for the launching and implementation of Injection-molded Throttle Body Assembly manufacturing process. Provided on-site engineering support during initial OEM assembly of the Ford Focus. Collaborated with Design Engineering to determine and test alternative materials for the Throttle body cost savings initiatives. Coordinated configuration management actions as related to automotive vehicles. Maintained documentations such as PFMEA, Process Flow/Quality Plans, and Quality Reports. Provided training and technical assistance to UAW member operators and skilled tradesmen. Designed, planned, cost estimated and tested injection-molded electrical interconnects for instrument panel assembly advanced engineering. Specified and validated components, consolidated building of prototypes, testing and documenting material properties for use on Injection-molded Throttle Body assembly. Created, reviewed, and updated technical specifications for automotive components for spare parts. Addressed Quality Assurance requirements as they pertain to specifications. Wrote statements of work as related to automotive vehicles. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1997-01-01\",\n                    \"leaveDate\": \"2000-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Product Engineer\",\n                    \"description\": \"Planned, cost estimated, designed and implemented Carbon Canister Assembly from concept stage to production launch. Managed and completed each task required at each stage of the product life cycle in accordance with Visteon Product Development System (VPDS). Conducted analysis of testing procedures, eliminating unnecessary processes, thereby realizing cost avoidances. Recommended, reviewed and approved packaging design features and layout. Developed and maintained documentations such as Show more Planned, cost estimated, designed and implemented Carbon Canister Assembly from concept stage to production launch. Managed and completed each task required at each stage of the product life cycle in accordance with Visteon Product Development System (VPDS). Conducted analysis of testing procedures, eliminating unnecessary processes, thereby realizing cost avoidances. Recommended, reviewed and approved packaging design features and layout. Developed and maintained documentations such as DFMEA, DVP&R, Program Sheets, Quality Reports, and others. Performed Benchmarking, Design for Assembly and Maintainability, Value Engineering, and Lean Manufacturing Concept analyses to simplify, optimize, and error proof both the product and process designs. Provided on-site engineering support during initial OEM assembly on vehicle programs (Job1 launch), for the Mustang, Lincoln LS, and Crown Victoria Police fleet. Addressed any production issues which would require further redesign and testing. Redesigned emission components to meet CAF requirements. Regularly presented technical information and briefings to departmental and program superiors. Additional Responsibilities: Provided Test Engineering support for the Emission Test Data. Provided manufacturing Systems Engineering support. Submitted invention disclosure for swirl-port technology for Carbon Canister inlet. Maintained professional and technical knowldege by attending educational semiars and internal/external academic classes related to Systems Engineering and Acquisition. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1995-01-01\",\n                    \"leaveDate\": \"1997-01-01\",\n                    \"company\": \"GE Capital\",\n                    \"position\": \"Co-op engineer\",\n                    \"description\": \"Duties: Attained technical knowledge in the fields of Silicone Elastomers, Gels, Encapsulants, Lubricants, Hardcoats and Paint Applications. Provided technical engineering validation support to Automotive Marketing and Commercial Technology Team on customer inquiries. Facilitated on time response to customer demands through in-house prototype development, application performance testing, and Failure Mode Analysis on parts. Provided timely oral and written report of results to supervisors and Show more Duties: Attained technical knowledge in the fields of Silicone Elastomers, Gels, Encapsulants, Lubricants, Hardcoats and Paint Applications. Provided technical engineering validation support to Automotive Marketing and Commercial Technology Team on customer inquiries. Facilitated on time response to customer demands through in-house prototype development, application performance testing, and Failure Mode Analysis on parts. Provided timely oral and written report of results to supervisors and customers. Assisted on the companys ISO 9000 laboratory certification preparation. Show less\"\n                }\n            ],\n            \"languagesList\": [\n                \"Tagalog\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"BSChemical Enginerring\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693958115029,\n            \"military\": true,\n            \"clearance\": false,\n            \"about\": \"Experienced engineer and program manager with a record of achievement in the design, development and production in military ground vehicles, automotive components and materials. Embodies ability and passion to learn and apply innovative thinking to obtain continuous improvement. Process-oriented with strong knowledge in the field of automotive component product assurance/design verification, project and systems engineering. Known for being reliable, highly responsible and dedicated team player.\",\n            \"skills\": [\n                \"Engineering Management\",\n                \"Engineering\",\n                \"Six Sigma\",\n                \"Systems Engineering\",\n                \"FMEA\",\n                \"Root Cause Analysis\",\n                \"Continuous Improvement\",\n                \"Manufacturing\",\n                \"Manufacturing Engineering\",\n                \"Testing\",\n                \"Program Management\",\n                \"Earned Value Management\",\n                \"Lean Manufacturing\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6026,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"A55408C9E1BF462F99238E12827E01C8\",\n            \"canonical\": \"https://www.linkedin.com/in/john-galvan-22881bb\",\n            \"fullname\": \"John Galvan\",\n            \"headline\": \"Recaro - Manufacturing Engineering Manager\",\n            \"location\": \"Detroit, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/john-galvan-22881bb\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2016-05-01\",\n                    \"leaveDate\": \"2023-06-01\",\n                    \"company\": \"Recaro Holding\",\n                    \"position\": \"Manufacturing Engineering Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2015-02-01\",\n                    \"leaveDate\": \"2016-05-01\",\n                    \"company\": \"The Productivity Team\",\n                    \"position\": \"Project Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2013-03-01\",\n                    \"leaveDate\": \"2015-01-01\",\n                    \"company\": \"ATCO Industries, Inc.\",\n                    \"position\": \"Operations Manager -- Detroit\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2012-06-01\",\n                    \"leaveDate\": \"2013-03-01\",\n                    \"company\": \"The Productivity Team\",\n                    \"position\": \"Project Engineer\",\n                    \"description\": \"Critical team member of the KL Assembly Launch Team with focus on: Facilitating and report-out of loop deliverables Development and tracking of Scopes-of-Work Development and tracking of Station Readiness in Trim-Chassis-Final (TCF) Management of program issues tracking (a best practice)\"\n                },\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2012-05-01\",\n                    \"company\": \"Design Systems, Inc.\",\n                    \"position\": \"Project Engineer\",\n                    \"description\": \"Providied stamping client with concepts to improve material flow; indirect labor utilization; industrial vehicle utilization; and line side presentation.\"\n                },\n                {\n                    \"hiredDate\": \"2011-07-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Manufacturing/Industrial Engineer\",\n                    \"description\": \"Supported Stamping Business Unit plants in improving productivity. Established formal launch performance process for the Industrial Engineering organization. Provided engineering analysis and support of new plant/equipment installations. Created single-point lessons for press line optimization for increasing cycle rates.\"\n                },\n                {\n                    \"hiredDate\": \"2004-03-01\",\n                    \"leaveDate\": \"2008-11-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Production Supervisor\",\n                    \"description\": \"Directly supervised over 80 hourly-unionized employees in trim department of Warren Truck Assembly Plant that assembles Dodge Ram and Dakota trucks. Active change-agent in transforming work culture to achieve lean manufacturing utilizing SMART principles. Engaged in developing workforce knowledge of manufacturing aids such as KANBAN, Practical Problem Solving Reports (PPSR's), FMEA, 5S, and Standardized Work Instructions (SWI). Demonstrated proficiency in problem solving resulting in Show more Directly supervised over 80 hourly-unionized employees in trim department of Warren Truck Assembly Plant that assembles Dodge Ram and Dakota trucks. Active change-agent in transforming work culture to achieve lean manufacturing utilizing SMART principles. Engaged in developing workforce knowledge of manufacturing aids such as KANBAN, Practical Problem Solving Reports (PPSR's), FMEA, 5S, and Standardized Work Instructions (SWI). Demonstrated proficiency in problem solving resulting in continuous improvement in safety, quality delivery, cost, and morale metrics. Show less\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Plant Engineering Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1987-07-01\",\n                    \"leaveDate\": \"1988-07-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Engineering Trainee\",\n                    \"description\": \"Provided support in the Prototype and Warrantee Repair departments.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Phoenix\",\n                    \"subTitle\": \"MSPsychology\"\n                },\n                {\n                    \"title\": \"Kettering University\",\n                    \"subTitle\": \"BSElectrical Engineering\"\n                },\n                {\n                    \"title\": \"Renaissance High School\",\n                    \"subTitle\": \"-\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693958059764,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Continuous Improvement\",\n                \"Lean Manufacturing\",\n                \"Industrial Engineering\",\n                \"Value Stream Mapping\",\n                \"Manufacturing\",\n                \"Management\",\n                \"5S\",\n                \"Cross-functional Team Leadership\",\n                \"Automation\",\n                \"Project Planning\",\n                \"Engineering\",\n                \"Vehicles\",\n                \"FMEA\",\n                \"Supply Chain Management\",\n                \"Root Cause Analysis\",\n                \"Manufacturing Operations Management\",\n                \"Process Improvement\",\n                \"Manufacturing Engineering\",\n                \"Kaizen\",\n                \"TPM\",\n                \"Stamping\",\n                \"Manufacturing Operations\",\n                \"Quality System\",\n                \"Engineering Management\",\n                \"Injection Molding\",\n                \"Kanban\",\n                \"Six Sigma\",\n                \"Quality Assurance\",\n                \"TS16949\",\n                \"ISO\",\n                \"Quality Management\",\n                \"Process Engineering\",\n                \"Product Design\",\n                \"Mechanical Engineering\",\n                \"DMAIC\",\n                \"Product Development\",\n                \"Operational Excellence\",\n                \"JIT\",\n                \"Automotive\",\n                \"PPAP\",\n                \"Operations Management\",\n                \"APQP\",\n                \"Supplier Quality\",\n                \"MS Project\",\n                \"Toyota Production System\",\n                \"SPC\",\n                \"Black Belt\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.331427,\n                    \"lon\": -83.0457538\n                },\n                \"formattedAddress\": \"Detroit, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6363,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"5D4384FD3911D0763F8A9D03D2AFE3E1\",\n            \"canonical\": \"https://www.linkedin.com/in/christopher-attard-2211063b\",\n            \"fullname\": \"Christopher Attard\",\n            \"headline\": \"Senior Manager - Integration and Test at Argo AI\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Aviation & Aerospace\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQGH3J0DoORHbw/profile-displayphoto-shrink_800_800/0/1624328732479?e=2147483647&v=beta&t=f72dJVTBE_cZWogWDsyCfuyvLyl5n3wTcclINLywJ7Y\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/christopher-attard-2211063b\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-02-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Latitude AI\",\n                    \"position\": \"Director Systems, Integration, and Test\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Argo AI\",\n                    \"position\": \"Senior Manager - Integration and Test\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Lead, Integration and Test - Autonomous Vehicles\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"Northrop Grumman Corporation\",\n                    \"position\": \"System Test Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"Master of Science (MS)Aerospace, Aeronautical and Astronautical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693957981666,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Systems Integration\",\n                \"System Test\",\n                \"Test Planning and Execution\",\n                \"Data Analysis\",\n                \"Mechanical Engineering\",\n                \"Aerospace Engineering\",\n                \"Computer Science\",\n                \"Electrical Engineering\",\n                \"Systems Engineering\",\n                \"Autonomous Vehicles\",\n                \"Active Safety Features\",\n                \"Project Planning\",\n                \"Program Management\",\n                \"Automotive CAN Bus\",\n                \"Vector CANalyzer\",\n                \"Matlab\",\n                \"Simulink\",\n                \"Calibration\",\n                \"INS/IMU/GPS Systems\",\n                \"LiDAR\",\n                \"Radar\",\n                \"Camera\",\n                \"Simulations\",\n                \"Solidworks\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 1159,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"E2F392D032F59C297AB73B7976695530\",\n            \"canonical\": \"https://www.linkedin.com/in/ane-matovski-a0362095\",\n            \"fullname\": \"Ane Matovski\",\n            \"headline\": \"Senior Engineer at General Dynamics\",\n            \"location\": \"Sterling Heights, Michigan\",\n            \"industry\": \"Defense & Space\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4D03AQGaNM_GSK3Gpw/profile-displayphoto-shrink_800_800/0/1577984981127?e=2147483647&v=beta&t=L6ErKTplF7eCgdDctEKCTy9iNq6pgDRxpUT7pjSNziE\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/ane-matovski-a0362095\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Dynamics Corporation\",\n                    \"position\": \"Engineering Specialist\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2000-11-01\",\n                    \"leaveDate\": \"2001-09-01\",\n                    \"company\": \"EPCOM Inc\",\n                    \"position\": \"Electrical Engineer\",\n                    \"description\": \" Managed procurement activities and material requests for engineering hardware and services  Provided technical support and communication to the program offices, customers and other departments within the corporation.  Tested and validated hardware and software improvements on the lethality of Stryker vehicles  Tracked, prioritized and resolved system problem reports during fast paced development environment  Prepared and presented written reports, status reports, and Show more  Managed procurement activities and material requests for engineering hardware and services  Provided technical support and communication to the program offices, customers and other departments within the corporation.  Tested and validated hardware and software improvements on the lethality of Stryker vehicles  Tracked, prioritized and resolved system problem reports during fast paced development environment  Prepared and presented written reports, status reports, and presentations as necessary  Acted as Vehicle Coordinator liaison between shop mechanics and engineers to ensure vehicles were functional and configured correctly for testing  Designed internal harness and slip ring for Commanders Panoramic Viewer along with integration of thermal and day camera and zoom lens. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1999-05-01\",\n                    \"leaveDate\": \"2000-10-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Production Supervisor\",\n                    \"description\": \" Assured product quality throughout manufacturing process  Supervised 50 to 60 production technicians  Managed the allocation of production line manpower  Identified and isolate defective products for repair process as needed  Ran four different zones within the body shop, door line and final line  Participated in pilot build of latest Grand Cherokee to insure successful production launch\"\n                }\n            ],\n            \"languagesList\": [\n                \"Macedonian\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"Master of Science (M.S.)Engineering/Industrial Management\"\n                },\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"Bachelor of ScienceElectrical and Electronics Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693950611466,\n            \"military\": true,\n            \"clearance\": false,\n            \"about\": \"• Extensive and specialized knowledge of product lifecycle, including manufacturing, deployment, modification, aging, balancing cost, schedule, performance impacts and continued support • Experience with electro-optical systems, including cameras, radars, lasers and lens selection, to obtain desired image and field of view characteristics • Knowledge of Infrared cameras technology in all three bands • Selection of proper display for video format and aspect ratio with overlays • Experience resolving equipment failures in the field, independently and managing customer expectations • Knowledge of multiple communication protocols: CAN , RS-232, RS-422, and RS-485 • Experience with lab test equipment: Oscilloscopes, Multimeters, Logic (BUS) Analyzers, Power Supplies, Video and Laser sources • Experience with MATLAB, Visual Basic, DxDesigner, OrCAD, Adobe Acrobat Professional, Microsoft Office, Windows, Windchill, CAMvu, VISIO, PSpice, DOORS, CANalyzer, Creo Schematic\",\n            \"skills\": [\n                \"Engineering\",\n                \"Engineering Management\",\n                \"Integration\",\n                \"Systems Engineering\",\n                \"Testing\",\n                \"Earned Value Management\",\n                \"Electrical Engineering\",\n                \"Matlab\",\n                \"Troubleshooting\",\n                \"Military\",\n                \"Manufacturing\",\n                \"Program Management\",\n                \"Aerospace\",\n                \"Sensors\",\n                \"Systems Design\",\n                \"Six Sigma\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.5803122,\n                    \"lon\": -83.0302033\n                },\n                \"formattedAddress\": \"Sterling Heights, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 823,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"Lfr2mIABSJUTbAXcq57J\",\n            \"canonical\": \"https://www.linkedin.com/in/kavitha-rengasamy-99743814\",\n            \"fullname\": \"Kavitha Rengasamy\",\n            \"headline\": \"Project Configuration and Release Manager Embedded Software\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/kavitha-rengasamy-99743814\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2017-09-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Elektrobit Automotive GmbH (Elektrobit)\",\n                    \"position\": \"Project Release Manager Embedded Software\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2016-04-01\",\n                    \"leaveDate\": \"2017-09-01\",\n                    \"company\": \"United Shore\",\n                    \"position\": \"Configuration Manager\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2015-04-01\",\n                    \"leaveDate\": \"2016-03-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Service Management Specialist\",\n                    \"description\": \"•                                                                                   •                                                                                  •                                                                                                        •                                                    •                                                                                                                                •           ’               …          \"\n                },\n                {\n                    \"hiredDate\": \"2011-05-01\",\n                    \"leaveDate\": \"2015-03-01\",\n                    \"company\": \"GM Onstar\",\n                    \"position\": \"Technical Lead\",\n                    \"description\": \"•                                                                                          •                                                              •                                                                                                              •                                                                                       •                                                                  •                                                      …          \"\n                },\n                {\n                    \"hiredDate\": \"2009-09-01\",\n                    \"leaveDate\": \"2009-11-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Technical Specialist\",\n                    \"description\": \"•                                                                                                                                                                                                        •                                                                      •                                                                          •                                                                                                                                        …          \"\n                },\n                {\n                    \"hiredDate\": \"2008-09-01\",\n                    \"leaveDate\": \"2009-08-01\",\n                    \"company\": \"Broadcom Inc.\",\n                    \"position\": \"Configuration Management Lead\",\n                    \"description\": \"•                                                                                                                                                                                                                   •                                                                        •                                                                                                         •                                                                                               …          \"\n                },\n                {\n                    \"hiredDate\": \"2004-10-01\",\n                    \"leaveDate\": \"2008-07-01\",\n                    \"company\": \"DTE Energy Company\",\n                    \"position\": \"Configuration Manager\",\n                    \"description\": \"•                                                                                •                                                     •                                                                                •                                                                                      •                                                                         •                                                                                                      …          \"\n                },\n                {\n                    \"hiredDate\": \"2003-01-01\",\n                    \"leaveDate\": \"2004-09-01\",\n                    \"company\": \"Blue Cross Blue Shield Association\",\n                    \"position\": \"Technical Manager\",\n                    \"description\": \"•                                                                 •                                                                                                      •                                                                      •                                                                                                              •                                                                                       •                                           …          \"\n                },\n                {\n                    \"hiredDate\": \"2001-11-01\",\n                    \"leaveDate\": \"2002-12-01\",\n                    \"company\": \"Citigroup Salomon Smith Barney\",\n                    \"position\": \"Configuration Manager and Build Release Engineer\",\n                    \"description\": \"•                                                                                       •                                                                                   •                                                                                                            •                                                          •                                                                                   •                                                  …          \"\n                },\n                {\n                    \"hiredDate\": \"2001-05-01\",\n                    \"leaveDate\": \"2001-10-01\",\n                    \"company\": \"Indus International\",\n                    \"position\": \"SCM Build Release Engineer\",\n                    \"description\": \"•                                                                            •                                                           •                                                                             •                                                                      •                                                    •                                                                                                                                             …          \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Master of Business Administration\",\n                    \"subTitle\": \"Master of Business Administration (M.B.A.)\"\n                },\n                {\n                    \"title\": \"Bachelors in Engineering\",\n                    \"subTitle\": \"Bachelors in Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686267345044,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Extensive IT experience in Project Management, Configuration Management, Change Management, DevOps Build and Release Management, Testing, and Scripting. Specialties: Configuration Management, Change management, DevOps, Service Delivery Management, ASPICE, Agile, Scrum, and ITIL. * Proven success in Project Management activities. Expert skills in business case development, resource planning, scheduling, and budgeting. Working knowledge of Agile Scrum, Waterfall Methodology, and Best Practices. * Demonstrated skill in establishing/improving project management methodologies, best practices, and technologies using Project Management Institute PMBOK and Integrated Capability Maturity Model (CMMI). * Rolled out Configuration Management and Change Management based on ITIL. Worked on Service Level Management SLM process definition. ITIL V3 Foundation Certified. * Successfully implemented Change and Configuration Management migration project. Closed the yearly support agreement and transformed it into a call support agreement, saving $$$ for the project. * Development: Java/J2EE, C# and Microsoft Technologies: .NET Specialties: - - Project Management, PMP, ITIL - Configuration Management, Change Management, SCM/CMS - Build/Release Engineering Management, - Quality Assurance/Testing, SQA, - DevOps - Development and - Scripting.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7280,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"20E968222165B1D229717C9FAE3CE65A\",\n            \"canonical\": \"https://www.linkedin.com/in/tim-prechesky-6bb14b12\",\n            \"fullname\": \"Tim Prechesky\",\n            \"headline\": \"Electronics Engineering Technician at Continental Automotive Systems\",\n            \"location\": \"Novi, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/tim-prechesky-6bb14b12\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2010-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Electronics Engineering Technician\",\n                    \"description\": \"                                                                                           –                                                                                                                                                                                                                                                                                                                                                                                                         …          \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2010-03-01\",\n                    \"leaveDate\": \"2010-05-01\",\n                    \"company\": \"TRW\",\n                    \"position\": \"Warranty Technician/Quality Analyst\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            …          \"\n                },\n                {\n                    \"hiredDate\": \"2009-10-01\",\n                    \"leaveDate\": \"2010-01-01\",\n                    \"company\": \"Molex Incorporated\",\n                    \"position\": \"Quality Lab Technician\",\n                    \"description\": \"                                                    –                                                                                                                                                                                                                                                                                                                                                                                                                                           …          \"\n                },\n                {\n                    \"hiredDate\": \"2009-09-01\",\n                    \"leaveDate\": \"2009-10-01\",\n                    \"company\": \"KOSTAL\",\n                    \"position\": \"Electronics Test Technician\",\n                    \"description\": \"                                                                  –                                                                                                                                                                                                                                                                                                                                                                                                                              …          \"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2008-01-01\",\n                    \"company\": \"Visteon Corporation\",\n                    \"position\": \"Sr. Test Technician\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     …          \"\n                },\n                {\n                    \"hiredDate\": \"1978-01-01\",\n                    \"leaveDate\": \"2000-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Test Technician\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         …          \"\n                },\n                {\n                    \"hiredDate\": \"1973-01-01\",\n                    \"leaveDate\": \"1976-01-01\",\n                    \"company\": \"United States Air Force\",\n                    \"position\": \"Radio Communications Equipment Repairman\",\n                    \"description\": \"                                                                                                                     \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Henry Ford College\",\n                    \"subTitle\": \"AssociateElectrical / Electronics Technology\"\n                },\n                {\n                    \"title\": \"National Radio Institute (NRI)\",\n                    \"subTitle\": \"Electronics CertificateElectronics Technology specializing in audio/video servicing\"\n                },\n                {\n                    \"title\": \"United States Air Force, Keesler AFB Technical School\",\n                    \"subTitle\": \"Electronics CertificateElectronics Technology, Ground to Air Radio Communications\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686264720751,\n            \"military\": true,\n            \"clearance\": true,\n            \"about\": \"An electronics/automotive lab test technician with extensive training and technical background experience in the military, and electronics product testing and supervisory experience in a test lab environment at a major automotive manufacturer and automotive component supplier as a Sr. Product Test Technician. Supervised and scheduled validation testing and assigned workload within the test laboratory utilizing the LIMS test request database, and applied the appropriate versions of specification standards, protocols, and test methodologies, providing accurate test results to meet customer needs and timelines. Developed, updated and ensured compliance to corporate/local ISO 9000/TS 16949 and DV test lab procedures, documentation, and workplace safety practices. Environmental - Salt, Dust, Temperature, Humidity, Thermal Shock, water/moisture, vibration, electrical stress, EMI/EMC testing of electronic products. Career product testing including various small motors, wiper motors, blower motors, cooling fan motors, PCM, driver information and instrument cluster, speedometer, audio, radio, amplifier, speaker, antenna, telematics, navigation infotainment systems, vehicle controls, speed control, ride control, traction control, anti-lock brakes (ABS), power seats, air bag, passenger restraint, body, convenience, safety & security, anti-theft, keyless entry, chassis and climate control electronics and subsystems. Specialties: Utilize various soldering, power and hand tools to build mechanical/electrical assemblies and connector/wire harnesses. Ability to interpret electrical schematics, mechanical drawings, blueprints, and diagrams. Compile and analyze engineering test data for preparation of technical reports. Computer skills including DOS, Windows, Word, Excel, PowerPoint, Access, and Outlook. Troubleshooting, repair, testing and calibration of electronic circuits. Programming of environmental test chambers.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.48059,\n                    \"lon\": -83.4754913\n                },\n                \"formattedAddress\": \"Novi, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 17021,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"5C0DD3933FDEE6DD5A4013E36C0BB6A4\",\n            \"canonical\": \"https://www.linkedin.com/in/dawn-chalmers-4582755\",\n            \"fullname\": \"Dawn Chalmers\",\n            \"headline\": \"Executive Administrative Assistant at Continental\",\n            \"location\": \"Clarkston, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQHhdKotAUCuVg/profile-displayphoto-shrink_800_800/0/1517734653184?e=2147483647&v=beta&t=OzCwmx0isrntVH3gMV2YOgjAIx5tZnUBgVFujQe372k\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/dawn-chalmers-4582755\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2019-02-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Executive Administrative Assistant\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2012-06-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Administrative Assistant\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             …          \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2010-12-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"NSK Warner USA\",\n                    \"position\": \"Executive Administrative Assistant to President.\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     …          \"\n                },\n                {\n                    \"hiredDate\": \"2009-04-01\",\n                    \"leaveDate\": \"2010-06-01\",\n                    \"company\": \"Genesys Health System\",\n                    \"position\": \"Director Fund Raising - Volunteer Board of Directors\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                      \"\n                },\n                {\n                    \"hiredDate\": \"1996-10-01\",\n                    \"leaveDate\": \"2008-12-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Executive Administrative Assistant\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     …          \"\n                },\n                {\n                    \"hiredDate\": \"1998-03-01\",\n                    \"leaveDate\": \"2008-11-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Executive Administrative Assistant\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     …          \"\n                },\n                {\n                    \"hiredDate\": \"1996-09-01\",\n                    \"leaveDate\": \"2008-12-01\",\n                    \"company\": \"Chrysler, LLC\",\n                    \"position\": \"Executive Administrative Assistant\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     …          \"\n                },\n                {\n                    \"hiredDate\": \"1989-08-01\",\n                    \"leaveDate\": \"1992-05-01\",\n                    \"company\": \"Honeywell International Inc.\",\n                    \"position\": \"Administrative Assistant\",\n                    \"description\": \"                                                                                                                                                                                                             \"\n                },\n                {\n                    \"hiredDate\": \"1980-06-01\",\n                    \"leaveDate\": \"1983-06-01\",\n                    \"company\": \"Harbor Springs Motor Inn\",\n                    \"position\": \"Manager\",\n                    \"description\": \"                                                                                                                                                                                                                                             \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [],\n            \"lastScraperUpdateTime\": 1686258135792,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Continental Automotive Support 3 Business Units ( NAFTA, Body & Security & Aftermarket) coordinate domestic and international travel arrangements, coordinate executive presentations and meetings, event planning and off site meetings - see summary below NSK - WARNER USA, INC. - Executive Administrative Assistant. Responsible for over $2M in invoicing and payments per month. A/R and A/P, coordinate presentations for International Board Meetings. Maintain calendar and manage Domestic and International travel for President of NSK Warner. Proficient in Excel Spreadsheets and use of formulas. Maintain and create multiple spreadsheets to track invoicing, payments, shipments and forecasts. Create Purchase Orders, place customer orders and invoice accounts with extreme accuracy. Build and Maintain relationships with Procurement and Supply in automotive industry. International correspondence regarding parts, inventory, delivery and invoicing. CHRYSLER - Over 13 years Executive Assistant for Sales and Marketing, Dealer and Customer Relations. Seven years of experience working in advertising with Chrysler Directors and Sr. Managers in Communications and Media Planning in the Detroit area. These include BBDO, PHD, Organic and Global Hue. Accounts included local, regional and national coverage in all media including newspaper, TV, radio and national publications. Responsibilities have included maintaining multiple Directors and Sr. Managers schedule and calendar, travel arrangements, expense reports, meetings and conference calls including conference calls for Chrysler CEO and Executive Vice President with 3300 lines including all Chrysler, Dodge and Jeep Dealers. Host and Operate Executive Office for Dealer Announcement Show 2007 (Las Vegas) assisting Top Executives and President of Chrysler. Facilitate meetings and hotel arrangements for 100+ people including locations, transfers, menus and executive office for offsite DAA and President meetings. Specialties: Excellent Interpersonal & Organization Communication skills. I enjoy working with people. I have built strong relationships with Dealers and Major Advertising agencies in the Detroit area as well as Directors and Managers at Chrysler.\",\n            \"skills\": [\n                \"Microsoft Office\",\n                \"Lotus Notes\",\n                \"Microsoft Excel\",\n                \"PowerPoint\",\n                \"Invoicing\",\n                \"Event Planning\",\n                \"Event Management\",\n                \"Customer Service\",\n                \"Hospitality\",\n                \"Renovation\",\n                \"Bookkeeping\",\n                \"Business\",\n                \"Food\",\n                \"Office Management\",\n                \"Problem Solving\",\n                \"Microsoft Word\",\n                \"Marketing\",\n                \"Automotive\",\n                \"Forecasting\",\n                \"Cross-functional Team Leadership\",\n                \"Customer Satisfaction\",\n                \"Advertising\",\n                \"Team Building\",\n                \"Analysis\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.7351196,\n                    \"lon\": -83.4192941\n                },\n                \"formattedAddress\": \"Village of Clarkston, MI 48346, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11571,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"9D8435C490C34601574CD09333DCF086\",\n            \"canonical\": \"https://www.linkedin.com/in/michael-d-onofrio-27908132\",\n            \"fullname\": \"Michael DOnofrio\",\n            \"headline\": \"Senior Electronic Technician/Impact Barrier Liason at Continental Automotive Systems\",\n            \"location\": \"Allen Park, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQFAOpjfcMaihA/profile-displayphoto-shrink_800_800/0/1516494947556?e=2147483647&v=beta&t=-zntoiU5pK_JO6-OATkYlxPCBMZ9Zr7KG-ErqW6f3j8\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/michael-d-onofrio-27908132\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"1999-11-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Electronic Technician\",\n                    \"description\": \"                                                                                                                      \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"1996-10-01\",\n                    \"leaveDate\": \"1999-11-01\",\n                    \"company\": \"Aastrom Biosciences\",\n                    \"position\": \"Electronic Technician\",\n                    \"description\": \"                                                      \"\n                },\n                {\n                    \"hiredDate\": \"1992-09-01\",\n                    \"leaveDate\": \"1996-10-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Electronic Technician\",\n                    \"description\": \"                                                   \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"NEC Livonia Campus\",\n                    \"subTitle\": \"Associate's degreeElectronic Engineering Technology\"\n                },\n                {\n                    \"title\": \"Allen Park High School\",\n                    \"subTitle\": \"DiplomaArchitecture/Drafting\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686252309387,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Automotive Electronics\",\n                \"Electronics\",\n                \"Test Equipment\",\n                \"Calibration\",\n                \"Automotive\",\n                \"Soldering\",\n                \"Components\",\n                \"SMT\",\n                \"Parts\",\n                \"Lean Manufacturing\",\n                \"Manufacturing\",\n                \"Testing\",\n                \"Continuous Improvement\",\n                \"Troubleshooting\",\n                \"Oscilloscope\",\n                \"Multimeter\",\n                \"Hand Tools\",\n                \"Lathe\",\n                \"Purchase Management\",\n                \"Management\",\n                \"Field Service\",\n                \"Biotechnology Industry\",\n                \"barrier crash testing\",\n                \"Customer Liason\",\n                \"airbags\",\n                \"passive safety applications\",\n                \"barrier impact test set-up\",\n                \"test set-up sign off\",\n                \"Self-driven\",\n                \"Flexible approach to work\",\n                \"Team-oriented\",\n                \"SMD\",\n                \"Electro-mechanical\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.2575385,\n                    \"lon\": -83.2110375\n                },\n                \"formattedAddress\": \"Allen Park, MI 48101, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11237,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"2F871CD7E904AFCC1266C851B32C488C\",\n            \"canonical\": \"https://www.linkedin.com/in/thomas-t-j-malbouef-a56b4a\",\n            \"fullname\": \"Thomas (T.J.) Malbouef\",\n            \"headline\": \"Technical Project Leader, ADAS, Continental Automotive Systems\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4D03AQG6EHJxCcn3Ug/profile-displayphoto-shrink_800_800/0/1516273303998?e=2147483647&v=beta&t=lv-Rg87MSR7e0TxKfb-P0BNDYDBBhwG3aDFW4HAD6i0\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/thomas-t-j-malbouef-a56b4a\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2016-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Technical Project Leader, Advanced Driver Assistance Systems (ADAS)\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Systems Engineer, Passive Safety and Sensorics\",\n                    \"description\": \"                                                                                                                                                                    \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Project Manager, Passive Safety and Advanced Driver Assistance Systems (PSAD)\",\n                    \"description\": \"                                                                                                        \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Project Manager, Passive Safety and Advanced Driver Assistance Systems (PSAD)\",\n                    \"description\": \"                                                                                                                                                                                                           \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2000-05-01\",\n                    \"leaveDate\": \"2006-11-01\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Algorithm engineer, Automotive Crash Sensing System\",\n                    \"description\": \"                                                                                                                                                                              \"\n                },\n                {\n                    \"hiredDate\": \"1997-06-01\",\n                    \"leaveDate\": \"2000-05-01\",\n                    \"company\": \"Ford Motor Company/Visteon\",\n                    \"position\": \"Algorithm Engineer, Crash Sensors\",\n                    \"description\": \"                                                                                                                                                       \"\n                },\n                {\n                    \"hiredDate\": \"1995-06-01\",\n                    \"leaveDate\": \"1997-06-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Product Design Engineer, Mechanical\",\n                    \"description\": \"                                                                         \"\n                },\n                {\n                    \"hiredDate\": \"1994-01-01\",\n                    \"leaveDate\": \"1995-06-01\",\n                    \"company\": \"Ford Motor Company, Dearborn Glass Plant\",\n                    \"position\": \"Manufacturing Process Engineer, Windshield Fabrication\",\n                    \"description\": \"                                                                                                                                                                        \"\n                },\n                {\n                    \"hiredDate\": \"1992-11-01\",\n                    \"leaveDate\": \"1994-01-01\",\n                    \"company\": \"Ford Motor Company, Supplier Quality\",\n                    \"position\": \"Supplier Technical Assistance Engineer\",\n                    \"description\": \"                                                                                    \"\n                },\n                {\n                    \"hiredDate\": \"1991-01-01\",\n                    \"leaveDate\": \"1992-11-01\",\n                    \"company\": \"Ford Motor Company, Tulsa Glass Plant\",\n                    \"position\": \"Manufacturing Process Engineer\",\n                    \"description\": \"                                                                                                                                                                                              \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"MSMEMechanical Engineering, Biomedical\"\n                },\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"BSMEMechanical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686245628540,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Automotive\",\n                \"Electronics\",\n                \"Mechanical Engineering\",\n                \"Product Design\",\n                \"Powertrain\",\n                \"Vehicles\",\n                \"Sensors\",\n                \"Leadership\",\n                \"Requirements Analysis\",\n                \"Calibration\",\n                \"FMEA\",\n                \"Engineering Management\",\n                \"APQP\",\n                \"PPAP\",\n                \"Six Sigma\",\n                \"Lean Manufacturing\",\n                \"Continuous Improvement\",\n                \"Manufacturing\",\n                \"Engineering\",\n                \"Root Cause Analysis\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11846,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"1158FBD18533A2329EA0B2E402D6C322\",\n            \"canonical\": \"https://www.linkedin.com/in/orthelladams\",\n            \"fullname\": \"Orthell Adams\",\n            \"headline\": \"Senior Mechanical Engineer at Continental Automotive Systems\",\n            \"location\": \"Auburn Hills, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQHGDCUpKgT6rA/profile-displayphoto-shrink_800_800/0/1516334853243?e=2147483647&v=beta&t=bHbqrdBlgNl9DhBCZ0i8nwl2R_Drm_T1MMaZwsBY1ME\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/orthelladams\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2011-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Mechanical Engineer\",\n                    \"description\": \"                                                                                                                                                 ’                                                                                                                                                                                                                                                                                                                                                 …          \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2009-12-01\",\n                    \"leaveDate\": \"2010-12-01\",\n                    \"company\": \"GE Consumer & Industrial\",\n                    \"position\": \"Lead Systems Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                               \"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2009-02-01\",\n                    \"company\": \"Visteon Corporation\",\n                    \"position\": \"Lead Senior Applications / Mechanical Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  …          \"\n                },\n                {\n                    \"hiredDate\": \"1998-07-01\",\n                    \"leaveDate\": \"1999-12-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Applications / Mechanical Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    …          \"\n                },\n                {\n                    \"hiredDate\": \"1996-07-01\",\n                    \"leaveDate\": \"1998-07-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Product Design / Systems Development Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                …          \"\n                },\n                {\n                    \"hiredDate\": \"1995-02-01\",\n                    \"leaveDate\": \"1996-06-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Manufacturing Process Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           …          \"\n                },\n                {\n                    \"hiredDate\": \"1994-01-01\",\n                    \"leaveDate\": \"1995-02-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Production Supervisor / Shift Leader\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                      \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Miami University\",\n                    \"subTitle\": \"Bachelor of ScienceManufacturing Engineering with a concentration in Mechanical Engineering\"\n                },\n                {\n                    \"title\": \"Macomber-Whitney High School\",\n                    \"subTitle\": \"High School DiplomaGeneral Studies\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686242070453,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Motivated Mechanical Engineer with extensive experience in complex electro-mechanical control module design and implementation. Over 20 years of experience working for a major automotive component supplier and with top automotive manufacturing companies. Proven strengths are project management, mechanical design, design implementation, product testing and analysis, and excellent organizational and communication skills. Specialties: • Problem Analysis • Project Management • Design Development • DFMEA • Testing Verification • Production Support • GD&T • Tooling Design • Injection Molding • Class A Surface Development\",\n            \"skills\": [\n                \"Automotive\",\n                \"GD&T\",\n                \"Manufacturing\",\n                \"Manufacturing Engineering\",\n                \"Engineering Management\",\n                \"Lean Manufacturing\",\n                \"FMEA\",\n                \"Six Sigma\",\n                \"Continuous Improvement\",\n                \"Engineering\",\n                \"Product Design\",\n                \"PPAP\",\n                \"DFMEA\",\n                \"Product Development\",\n                \"Program Management\",\n                \"SPC\",\n                \"Injection Molding\",\n                \"Design for Manufacturing\",\n                \"Root Cause Analysis\",\n                \"Teamcenter\",\n                \"Electronics\",\n                \"Mechanical Engineering\",\n                \"Process Improvement\",\n                \"APQP\",\n                \"Geometric Dimensioning & Tolerancing\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6875323,\n                    \"lon\": -83.2341028\n                },\n                \"formattedAddress\": \"Auburn Hills, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 10355,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"B1BD2F0733470410098558767EBE0063\",\n            \"canonical\": \"https://www.linkedin.com/in/denny-lombardo-44562010\",\n            \"fullname\": \"Denny Lombardo\",\n            \"headline\": \"Automotive Professional\",\n            \"location\": \"Clarkston, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQHtUEBV56uR7g/profile-displayphoto-shrink_800_800/0/1517727129073?e=2147483647&v=beta&t=pu1KqCLrZObYxMckhGbnFPWvJkTCGPmkDEOWVM2cafE\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/denny-lombardo-44562010\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2010-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Technical Project Lead Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"1973-07-01\",\n                    \"leaveDate\": \"2008-11-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Manager\",\n                    \"description\": \"                                                           –                                                                                                                                                                                                        •                             •                                                       •                               •                        •                     •                             …          \"\n                },\n                {\n                    \"hiredDate\": \"1973-01-01\",\n                    \"leaveDate\": \"2008-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Manager\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1973-01-01\",\n                    \"leaveDate\": \"2008-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Retired - Engineering Group Manager - Electrical\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Youngstown State University\",\n                    \"subTitle\": \"MsEEElectrical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686239782229,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am currently employed as a Technical Project Lead for Continental Automotive Systems where I am responsible for the GM Global A BCM. In late 2008 I accepted an early retirement package from General Motors. I considered this an opportunity to make a career change and not an actually retirement. I was seeking a position that would benefit from my years of experience. My career with General Motors began in advanced electronic design and progressed to numerous leadership positions held throughout the majority of my career. •I have had responsibility for a wide variety of electrical and electronic products ranging from wiring and an array of switches to instrument panel clusters, numerous body computers, brake, traction and stability controllers, adaptive lighting controllers and RF transmitters and receivers. •During my career I have demonstrated technical and leadership skills and the ability to use good judgment. •I have demonstrated a high degree of integrity and work ethics. •I have had the opportunity of creating numerous effective teams. •I have participated in and lead Global activities and teams. •Provided training to GM employees located in Global GM sites. Additional details about my skills and knowledge are available in my resume.\",\n            \"skills\": [\n                \"Vehicles\",\n                \"Program Management\",\n                \"Electronics\",\n                \"Continuous Improvement\",\n                \"Automotive\",\n                \"Automotive Engineering\",\n                \"DFMEA\",\n                \"FMEA\",\n                \"Product Development\",\n                \"Systems Engineering\",\n                \"Powertrain\",\n                \"Engineering\",\n                \"Embedded Systems\",\n                \"GD&T\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.7351196,\n                    \"lon\": -83.4192941\n                },\n                \"formattedAddress\": \"Village of Clarkston, MI 48346, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 17874,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"AC2875E840FA176AF7A583D741E6F921\",\n            \"canonical\": \"https://www.linkedin.com/in/ken-redcap-70069710\",\n            \"fullname\": \"Ken Redcap\",\n            \"headline\": \"Senior Industrial Engineer at Continental Automotive Systems\",\n            \"location\": \"Rochester, Michigan\",\n            \"industry\": \"automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/ken-redcap-70069710\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"1998-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Industrial Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                  \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"1995-01-01\",\n                    \"leaveDate\": \"1998-01-01\",\n                    \"company\": \"EDS Group\",\n                    \"position\": \"Systems Engineer\",\n                    \"description\": \"                                                                                                 \"\n                },\n                {\n                    \"hiredDate\": \"1993-05-01\",\n                    \"leaveDate\": \"1995-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Systems Engineer\",\n                    \"description\": \"                        \"\n                },\n                {\n                    \"hiredDate\": \"1991-06-01\",\n                    \"leaveDate\": \"1993-05-01\",\n                    \"company\": \"AFC-Holcroft\",\n                    \"position\": \"Systems Engineer\",\n                    \"description\": \"                      \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Lawrence Technological University\",\n                    \"subTitle\": \"BSEE/BSChElectrical Engineering/Chemistry3.40 (out of 4.0)\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686231673684,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Experienced Senior Industrial Engineer with a demonstrated history of working in the automotive industry. Strong engineering professional skilled in C#, C, PHP, Visual Basic, Failure Mode and Effects Analysis (FMEA), Six Sigma, Advanced Product Quality Planning (APQP), and Serial Communications.\",\n            \"skills\": [\n                \"APQP\",\n                \"Automotive\",\n                \"Lean Manufacturing\",\n                \"PPAP\",\n                \"Continuous Improvement\",\n                \"Root Cause Analysis\",\n                \"Kaizen\",\n                \"DFMEA\",\n                \"FMEA\",\n                \"Web Applications\",\n                \"Serial Communications\",\n                \"JavaScript\",\n                \"C#\",\n                \"Visual Basic\",\n                \"SPC\",\n                \"Engineering Management\",\n                \"Engineering\",\n                \"Six Sigma\",\n                \"Process Improvement\",\n                \"Manufacturing\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.680588,\n                    \"lon\": -83.1338214\n                },\n                \"formattedAddress\": \"Rochester, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11695,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"5E5345D56B839811DAA6273F31D978D5\",\n            \"canonical\": \"https://www.linkedin.com/in/philboling\",\n            \"fullname\": \"Phil Boling\",\n            \"headline\": \"Sales Manager at Continental Automotive Systems\",\n            \"location\": \"Waterford, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/philboling\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2010-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Sales Manager - Commercial Vehicle\",\n                    \"description\": \"                                                                                                                                                                        \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"1997-09-01\",\n                    \"leaveDate\": \"2009-12-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Global Marketing Manager - Powertrain and Energy\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       …          \"\n                },\n                {\n                    \"hiredDate\": \"2002-11-01\",\n                    \"leaveDate\": \"2006-10-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Business Planner - Battery Business Unit and Sensors & Actuators BU\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \"\n                },\n                {\n                    \"hiredDate\": \"1996-06-01\",\n                    \"leaveDate\": \"1997-09-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Sales & Marketing Manager - South America\",\n                    \"description\": \"                                                                                                                                                                                                                      \"\n                },\n                {\n                    \"hiredDate\": \"1993-06-01\",\n                    \"leaveDate\": \"1996-06-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Account Manager - South America\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                      \"\n                },\n                {\n                    \"hiredDate\": \"1991-01-01\",\n                    \"leaveDate\": \"1993-06-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Divisional Business Planning Administrator\",\n                    \"description\": \"                                                                                                                                                                                                         \"\n                },\n                {\n                    \"hiredDate\": \"1988-01-01\",\n                    \"leaveDate\": \"1991-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Senior Industry Analyst\",\n                    \"description\": \"                                                                                                                                                                                                                  \"\n                },\n                {\n                    \"hiredDate\": \"1983-09-01\",\n                    \"leaveDate\": \"1988-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Sales Analyst\",\n                    \"description\": \"                                                                                                                                                                  \"\n                },\n                {\n                    \"hiredDate\": \"1981-10-01\",\n                    \"leaveDate\": \"1983-09-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Manufacturing - Programmer\",\n                    \"description\": \"                                                                                                                                                                          \"\n                },\n                {\n                    \"hiredDate\": \"1979-06-01\",\n                    \"leaveDate\": \"1981-10-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Human Resource Analyst\",\n                    \"description\": \"                                                                                                                                                                             \"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Portuguese\",\n                \"Japanese\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Purdue University\",\n                    \"subTitle\": \"BSData Processing\"\n                },\n                {\n                    \"title\": \"Purdue University Daniels School of Business\",\n                    \"subTitle\": \"BSIndustrial Management\"\n                },\n                {\n                    \"title\": \"Escola Graduada de São Paulo\",\n                    \"subTitle\": \"HS DiplomaCollege Prep\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686229013040,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Extensive experience as a Sales and Marketing Manager and Business Planner on the business to business side of the automotive, heavy duty, marine and small engine markets primarily with: energy, power-train and exhaust after-treatment products; bringing an international perspective and experience having led sales in new regions (South America): $200M and into new markets (e.g. small engine): $250M per year; bilingual in Portuguese. Specialties: Product Marketing, Product Value Analysis, Business Planning, Technology Planning, Sales Account Management, Sales Forecasting, Vehicle Emission Standards, Fluent in Brazil Portuguese\",\n            \"skills\": [\n                \"Sales Management\",\n                \"Marketing Strategy\",\n                \"Cross-functional Team Leadership\",\n                \"Forecasting\",\n                \"Business Planning\",\n                \"Technology Planning\",\n                \"Automotive\",\n                \"Product Marketing\",\n                \"Leadership\",\n                \"International Sales\",\n                \"International Business\",\n                \"Analysis\",\n                \"B2B\",\n                \"Business Development\",\n                \"Business Strategy\",\n                \"Competitive Analysis\",\n                \"Continuous Improvement\",\n                \"Customer Service\",\n                \"Marketing\",\n                \"Process Improvement\",\n                \"Management\",\n                \"Market Analysis\",\n                \"Project Planning\",\n                \"Sales\",\n                \"Product Lifecycle Management\",\n                \"Strategy\",\n                \"Value Stream Mapping\",\n                \"Vehicles\",\n                \"Product Development\",\n                \"Product Management\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6907443,\n                    \"lon\": -83.4066132\n                },\n                \"formattedAddress\": \"Waterford Twp, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 15835,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"E2AE56F20068A033BB0E4E55F8905AA9\",\n            \"canonical\": \"https://www.linkedin.com/in/davidmerrow\",\n            \"fullname\": \"David Merrow\",\n            \"headline\": \"On to new opportunities with ContiTech\",\n            \"location\": \"Rochester, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQGeyz_ugn2YVA/profile-displayphoto-shrink_800_800/0/1517718706136?e=2147483647&v=beta&t=dn8MnYVc6LDckKP91Bwple4gOZezMvJsanIMDQDJmLs\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/davidmerrow\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2015-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"ContiTech\",\n                    \"position\": \"Technical Project Lead\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2012-04-01\",\n                    \"leaveDate\": \"2015-08-01\",\n                    \"company\": \"TI Fluid Systems\",\n                    \"position\": \"Application Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2010-07-01\",\n                    \"leaveDate\": \"2012-05-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Release Engineer - AC Compressors\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2008-07-01\",\n                    \"leaveDate\": \"2009-02-01\",\n                    \"company\": \"Behr\",\n                    \"position\": \"Team Leader / Validation – Navistar, Freightliner, and PACCAR HVAC\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                          ’                                                                                 •                                                                                                              …          \"\n                },\n                {\n                    \"hiredDate\": \"2005-05-01\",\n                    \"leaveDate\": \"2008-06-01\",\n                    \"company\": \"Behr\",\n                    \"position\": \"Lead Validation Engineer – GM 9XX & Lambda Front & Rear HVAC\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                   •                                                                                                         …          \"\n                },\n                {\n                    \"hiredDate\": \"2004-02-01\",\n                    \"leaveDate\": \"2005-05-01\",\n                    \"company\": \"Behr\",\n                    \"position\": \"Build Coordinator – GM 9XX Front & Rear HVAC\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                               •                                                                          …          \"\n                },\n                {\n                    \"hiredDate\": \"2000-03-01\",\n                    \"leaveDate\": \"2004-01-01\",\n                    \"company\": \"Lear Corporation\",\n                    \"position\": \"Co-op Engineer\",\n                    \"description\": \"                                                                                                                                                                                     ’                                                                                                   •                                                                                                                                                                                                               …          \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Kettering University\",\n                    \"subTitle\": \"MSME\"\n                },\n                {\n                    \"title\": \"Kettering University\",\n                    \"subTitle\": \"BSMEEngineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686226335245,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"A product engineer with years of progressively increasing responsibility at an automotive OEM supplier and a total of 2 years of varied experience as an engineering co-op student. Highly effective in finishing the job at hand regardless of starting at the beginning, the middle, or the end of the project. Demonstrating an organized approach to validation and reducing the cost of the finished product. Skilled in: • Plan and manage product validation • Product development • Product implementation into production • FMEA development • Prototype tracking • Analyze and interpret testing data • Multicultural teamwork • SAP Key User\",\n            \"skills\": [\n                \"FMEA\",\n                \"Manufacturing\",\n                \"Automotive\",\n                \"PPAP\",\n                \"Engineering\",\n                \"Continuous Improvement\",\n                \"Lean Manufacturing\",\n                \"Product Development\",\n                \"Root Cause Analysis\",\n                \"APQP\",\n                \"Automotive Engineering\",\n                \"Product Design\",\n                \"Manufacturing Engineering\",\n                \"Injection Molding\",\n                \"GD\",\n                \"Testing\",\n                \"Six Sigma\",\n                \"Program Management\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.680588,\n                    \"lon\": -83.1338214\n                },\n                \"formattedAddress\": \"Rochester, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7923,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"DDC33136FE030AC04AE0420A37044C06\",\n            \"canonical\": \"https://www.linkedin.com/in/jamespiscopink\",\n            \"fullname\": \"James Piscopink\",\n            \"headline\": \"Senior Staff Engineer\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/jamespiscopink\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2012-09-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Staff Engineer\",\n                    \"description\": \"∙                                                            \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2011-06-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"ESG Automotive\",\n                    \"position\": \"Systems Engineer\",\n                    \"description\": \"∙                                                            ∙                                                                      ∙                                                                                           ∙                                             \"\n                },\n                {\n                    \"hiredDate\": \"2007-12-01\",\n                    \"leaveDate\": \"2008-11-01\",\n                    \"company\": \"Mercedes-Benz Group AG\",\n                    \"position\": \"Core Product Engineer\",\n                    \"description\": \"•                                                                                                                                                                                      •                                                                                                                                                                               •                                                                                                                                 …          \"\n                },\n                {\n                    \"hiredDate\": \"2006-08-01\",\n                    \"leaveDate\": \"2007-12-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Product Engineer - Instrument Cluster\",\n                    \"description\": \"•                                                                                                                                              •                                                                                                                                                                           •                                                                                                                                                                                …          \"\n                },\n                {\n                    \"hiredDate\": \"2004-06-01\",\n                    \"leaveDate\": \"2006-08-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Product Release Engineer - Steering Column Switches\",\n                    \"description\": \"•                                                                                                                                                                                                                 •                                                                                                                                                •                                                                                                                                     …          \"\n                },\n                {\n                    \"hiredDate\": \"1998-05-01\",\n                    \"leaveDate\": \"2004-06-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Product Release Engineer - Wiring Harness Assemblies\",\n                    \"description\": \"•                                                                                                 •                                                                                                                                                                             •                                                                                             •                                                              •                                                    …          \"\n                },\n                {\n                    \"hiredDate\": \"1997-06-01\",\n                    \"leaveDate\": \"1998-06-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Project Leader - Body Control Module\",\n                    \"description\": \"•                                                                                                                    •                                                          •                                                                                  \"\n                },\n                {\n                    \"hiredDate\": \"1996-06-01\",\n                    \"leaveDate\": \"1997-05-01\",\n                    \"company\": \"Chrysler Electronics - Huntsville, Alabama\",\n                    \"position\": \"Liaison Engineer\",\n                    \"description\": \"•                                                                                                                                                                                                                  \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"BSEEElectrical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686181248355,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Automotive Engineer with years of experience in electronic module development, E/E system development, and wiring harness design. My goal is to obtain an engineering position where I can maximize my design, project management, system development, quality assurance, program development, and manufacturing experience.\",\n            \"skills\": [\n                \"Automotive\",\n                \"CANoe\",\n                \"DFMEA\",\n                \"Electronics\",\n                \"Engineering\",\n                \"Manufacturing\",\n                \"Process Improvement\",\n                \"Project Management\",\n                \"Quality Assurance\",\n                \"Vehicles\",\n                \"Automotive Engineering\",\n                \"Components\",\n                \"Testing\",\n                \"PPAP\",\n                \"Engineering Management\",\n                \"FMEA\",\n                \"Failure Mode and Effects Analysis (FMEA)\",\n                \"Continuous Improvement\",\n                \"Production Part Approval Process (PPAP)\",\n                \"Root Cause Analysis\",\n                \"Design Failure Mode and Effect Analysis (DFMEA)\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8863,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"D52A0B6FC3894D94B87C99C64CE9C651\",\n            \"canonical\": \"https://www.linkedin.com/in/harold-rosenbaum-865a8016\",\n            \"fullname\": \"Harold Rosenbaum\",\n            \"headline\": \"Currently seeking employment in Electrical Engineering\",\n            \"location\": \"Oak Park, Michigan\",\n            \"industry\": \"electrical/electronic manufacturing\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/harold-rosenbaum-865a8016\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Stellantis\",\n                    \"position\": \"Wiring Harness Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2021-06-01\",\n                    \"leaveDate\": \"2022-03-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Power & Signal Distribution System Design/Release Engineer\",\n                    \"description\": \"                                                                                                                                  \"\n                },\n                {\n                    \"hiredDate\": \"2018-09-01\",\n                    \"leaveDate\": \"2019-09-01\",\n                    \"company\": \"Furukawa Group\",\n                    \"position\": \"Product Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             …          \"\n                },\n                {\n                    \"hiredDate\": \"2017-10-01\",\n                    \"leaveDate\": \"2018-03-01\",\n                    \"company\": \"RGBSI\",\n                    \"position\": \"Ford Resident Engineer\",\n                    \"description\": \"                                      ’                                                                  \"\n                },\n                {\n                    \"hiredDate\": \"2015-01-01\",\n                    \"leaveDate\": \"2017-02-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Product Engineer Electrical / Electronic\",\n                    \"description\": \"                                                                                                                                                             \"\n                },\n                {\n                    \"hiredDate\": \"2012-09-01\",\n                    \"leaveDate\": \"2014-12-01\",\n                    \"company\": \"Asia Automotive\",\n                    \"position\": \"Wire Harness Engineer\",\n                    \"description\": \"                                                                                                                                                                     \"\n                },\n                {\n                    \"hiredDate\": \"2011-01-01\",\n                    \"leaveDate\": \"2011-07-01\",\n                    \"company\": \"Navistar Inc\",\n                    \"position\": \"Electrical Engineer\",\n                    \"description\": \"                                                                                   \"\n                },\n                {\n                    \"hiredDate\": \"2008-04-01\",\n                    \"leaveDate\": \"2010-12-01\",\n                    \"company\": \"SPX Corporation\",\n                    \"position\": \"Technical Author\",\n                    \"description\": \"                                                                                       \"\n                },\n                {\n                    \"hiredDate\": \"2005-01-01\",\n                    \"leaveDate\": \"2005-03-01\",\n                    \"company\": \"Champion Bus\",\n                    \"position\": \"Electrical Engineer\",\n                    \"description\": \"                                                                                                                                                                                     \"\n                },\n                {\n                    \"hiredDate\": \"2002-12-01\",\n                    \"leaveDate\": \"2004-12-01\",\n                    \"company\": \"Kelly Services, Inc.\",\n                    \"position\": \"Quality Engineering Technician\",\n                    \"description\": \"                                                                                                                                                                                                               \"\n                },\n                {\n                    \"hiredDate\": \"1997-11-01\",\n                    \"leaveDate\": \"2001-12-01\",\n                    \"company\": \"Lear Corporation (formerly UT Automotive)\",\n                    \"position\": \"Project Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        …          \"\n                },\n                {\n                    \"hiredDate\": \"1993-02-01\",\n                    \"leaveDate\": \"1997-11-01\",\n                    \"company\": \"Thomas & Betts Automotive (formerly Augat Automotive)\",\n                    \"position\": \"Project Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                       …          \"\n                },\n                {\n                    \"hiredDate\": \"1987-06-01\",\n                    \"leaveDate\": \"1992-01-01\",\n                    \"company\": \"Hughes Electronic Products\",\n                    \"position\": \"Screen Printer\",\n                    \"description\": \"                                                                                                                                                                                                                                                          \"\n                },\n                {\n                    \"hiredDate\": \"1982-05-01\",\n                    \"leaveDate\": \"1986-09-01\",\n                    \"company\": \"General Dynamics Corporation\",\n                    \"position\": \"Q. C. Inspector/ Troubleshooter\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             …          \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Lawrence Technological University\",\n                    \"subTitle\": \"Bachelor of Science DegreeElectrical Engineering\"\n                },\n                {\n                    \"title\": \"Baker College of Flint\",\n                    \"subTitle\": \"Bachelor of ScienceMechanical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686133104538,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"More than 20 years of experience as an electrical engineer. I have also earned a bachelors degree in Mechanical Engineering; graduation date - June 2010. Specialties: * Analytical and troubleshooting skills * Self-starter; able to work effectively with minimal supervision * Able to work in a team environment\",\n            \"skills\": [\n                \"Electrical Engineering\",\n                \"Wiring\",\n                \"Testing\",\n                \"Engineering\",\n                \"Electronics\",\n                \"FMEA\",\n                \"Automotive\",\n                \"CAD\",\n                \"Root Cause Analysis\",\n                \"AutoCAD\",\n                \"DFMEA\",\n                \"Mechanical Engineering\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4594803,\n                    \"lon\": -83.18270509999999\n                },\n                \"formattedAddress\": \"Oak Park, MI 48237, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11050,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"F434939899C130CFAC9C2E9245CA863F\",\n            \"canonical\": \"https://www.linkedin.com/in/chirapatsakul-pat-303a9910\",\n            \"fullname\": \"Chirapatsakul Pat\",\n            \"headline\": \"Program Manager at FCA Fiat Chrysler Automobiles\",\n            \"location\": \"Novi, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQFqMgW3x6zqdQ/profile-displayphoto-shrink_800_800/0/1589990455492?e=2147483647&v=beta&t=jJNe1EYc8epNhH2b2khFLVUsVwsiuHv_LHQ77abO1qw\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/chirapatsakul-pat-303a9910\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2020-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Program Manager\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"System Engineer - Exterior Lights\",\n                    \"description\": \"•                                                                                              •                                                                                          •                                                                                                     •                                                                                                                                                         •                                          …          \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Engineering Supervisor\",\n                    \"description\": \"•                                                                                                                                                                                                                    •                                                                                                                                                                          •                                                                                                           …          \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Program Manager\",\n                    \"description\": \"•                                                                                                                                                                                                                                                  •                                                                                                          •                                                                                                                                          …          \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Engineering Supervisor - Electomechanical\",\n                    \"description\": \"•                                                                                                            •                                                                                                                                                                  •                                                                              •                                                                                                                                      …          \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Safety Engineer - Side Impact Crash Test\",\n                    \"description\": \"•                                                                                                                                                                                                •                                                                                 •                                                                                                       •                                                                                                       …          \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Engineering Supervisor\",\n                    \"description\": \"•                                                                                                                                                                                                                                                            •                                                                                     •                                                                                                                                ’                       …          \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2004-08-01\",\n                    \"leaveDate\": \"2005-12-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Validation Engineer - Electrical System\",\n                    \"description\": \"•                                                                                                                                        •                                                                                                                                                                                                      •                                                                                                                                             …          \"\n                },\n                {\n                    \"hiredDate\": \"2003-07-01\",\n                    \"leaveDate\": \"2004-07-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Product Development Engineer - Switches\",\n                    \"description\": \"•                                                                                                                                                                                   •                                                                                                                                                                                                                       •                                                                                            •…          \"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2003-08-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Resident Engineer - Electrical / HVAC / Instrument Panel\",\n                    \"description\": \"•                                                                                                                                                         •                                                                                           •                                                                                                                                                                            •                                                                   …          \"\n                },\n                {\n                    \"hiredDate\": \"1998-01-01\",\n                    \"leaveDate\": \"1999-12-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Quality Engineer - Electrical\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Fontbonne University\",\n                    \"subTitle\": \"Master of Business Administration - MBAFinance, General\"\n                },\n                {\n                    \"title\": \"University of Missouri-Columbia\",\n                    \"subTitle\": \"Master of Engineering - MEngIndustrial Engineering\"\n                },\n                {\n                    \"title\": \"University of Missouri-Columbia\",\n                    \"subTitle\": \"Bachelor's degreeElectrical and Electronics Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686130154127,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"A goal-oriented, energetic engineer with Program Management, Electrical Validation, product releasing, as well as supervisory experience, who works well as a team and as an individual. Fluent in Thai and Chinese Mandarin\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.48059,\n                    \"lon\": -83.4754913\n                },\n                \"formattedAddress\": \"Novi, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 9164,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"47C0E2C39968BFC275AD534B69F4BCAF\",\n            \"canonical\": \"https://www.linkedin.com/in/kathryn-blackwell-6845482\",\n            \"fullname\": \"Kathryn Blackwell\",\n            \"headline\": \"Vice President, Communications & Marketing, Continental Automotive (retired, but open to opportunities!)\",\n            \"location\": \"Northville, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/kathryn-blackwell-6845482\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2008-03-01\",\n                    \"leaveDate\": \"2023-03-01\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Vice President -- Communications & Marketing, NAFTA Region\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2001-07-01\",\n                    \"leaveDate\": \"2008-03-01\",\n                    \"company\": \"Union Pacific Corporation\",\n                    \"position\": \"Assistant Vice President, Corporate Communications\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2000-02-01\",\n                    \"leaveDate\": \"2001-03-01\",\n                    \"company\": \"Mercedes-Benz Group AG\",\n                    \"position\": \"Senior Manager, International Marketing, Jeep Division\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2001-01-01\",\n                    \"company\": \"Mercedes-Benz Group AG\",\n                    \"position\": \"Senior Manager, Jeep Brand Marketing & Communications\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1989-01-01\",\n                    \"leaveDate\": \"1998-08-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Director, Public Affairs\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"Bachelor of ArtsDual Degree -- English and Communications\"\n                },\n                {\n                    \"title\": \"Northwestern University\",\n                    \"subTitle\": \"MSIntegrated Marketing Communications\"\n                },\n                {\n                    \"title\": \"Duke University - The Fuqua School of Business\",\n                    \"subTitle\": \"Executive Marketing Program\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686127581865,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Public Relations\",\n                \"Media Relations\",\n                \"Automotive\",\n                \"Internal Communications\",\n                \"Corporate Communications\",\n                \"Crisis Communications\",\n                \"Continuous Improvement\",\n                \"Marketing Communications\",\n                \"Strategic Planning\",\n                \"Vehicles\",\n                \"Business Strategy\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4311464,\n                    \"lon\": -83.4832692\n                },\n                \"formattedAddress\": \"Northville, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 12202,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"GE0EMX4BBVw90JBmzFOZ\",\n            \"canonical\": \"https://www.linkedin.com/in/akshita-verma\",\n            \"fullname\": \"Akshita V.\",\n            \"headline\": \"2nd Year J.D. Candidate at Wayne Law School\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/D5603AQFqD5vSdiiX7Q/profile-displayphoto-shrink_800_800/0/1669001640064?e=2147483647&v=beta&t=kNc2Hhl1QIU8a4UrywJmwyTcELuEcXVh28TZ93cRQp8\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/akshita-verma\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Wayne State University Law School\",\n                    \"position\": \"Research Assistant\",\n                    \"description\": \"                                                                                           \"\n                },\n                {\n                    \"hiredDate\": \"2023-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Advancement Project\",\n                    \"position\": \"Legal Extern\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2022-09-01\",\n                    \"leaveDate\": \"2022-12-01\",\n                    \"company\": \"Detroit Justice Center\",\n                    \"position\": \"Legal Extern\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2022-06-01\",\n                    \"leaveDate\": \"2022-08-01\",\n                    \"company\": \"Michigan Immigrant Rights Center\",\n                    \"position\": \"Summer Law Clerk\",\n                    \"description\": \"                                                                                                                                                                                                                                                                            \"\n                },\n                {\n                    \"hiredDate\": \"2020-08-01\",\n                    \"leaveDate\": \"2022-07-01\",\n                    \"company\": \"Done Waiting\",\n                    \"position\": \"Co-Founder and Vice Chair\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                              \"\n                },\n                {\n                    \"hiredDate\": \"2019-12-01\",\n                    \"leaveDate\": \"2020-08-01\",\n                    \"company\": \"Solomon Rajput For Congress\",\n                    \"position\": \"Campaign Manager\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               …\"\n                },\n                {\n                    \"hiredDate\": \"2019-09-01\",\n                    \"leaveDate\": \"2019-11-01\",\n                    \"company\": \"Solomon Rajput For Congress\",\n                    \"position\": \"Field Director\",\n                    \"description\": \"                                                                                 \"\n                },\n                {\n                    \"hiredDate\": \"2019-02-01\",\n                    \"leaveDate\": \"2019-11-01\",\n                    \"company\": \"Ellis Porter - The Immigration Attorneys\",\n                    \"position\": \"Legal Writer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                     \"\n                },\n                {\n                    \"hiredDate\": \"2017-09-01\",\n                    \"leaveDate\": \"2018-03-01\",\n                    \"company\": \"University of Michigan\",\n                    \"position\": \"Research Lab Assistant\",\n                    \"description\": \"                                                                                                                                                       \"\n                },\n                {\n                    \"hiredDate\": \"2017-02-01\",\n                    \"leaveDate\": \"2018-01-01\",\n                    \"company\": \"Saint Joseph Mercy Health System\",\n                    \"position\": \"Scribe\",\n                    \"description\": \"                                                                                                                                                                                                                                           \"\n                },\n                {\n                    \"hiredDate\": \"2016-06-01\",\n                    \"leaveDate\": \"2016-08-01\",\n                    \"company\": \"Meridian Health Plan of Michigan, Inc.\",\n                    \"position\": \"Communications Intern\",\n                    \"description\": \"                                                                                                                                                                   ’                                                                                                                                        \"\n                },\n                {\n                    \"hiredDate\": \"2016-01-01\",\n                    \"leaveDate\": \"2016-05-01\",\n                    \"company\": \"The State News\",\n                    \"position\": \"Paid Intern\",\n                    \"description\": \"                                                                                                                                                   \"\n                },\n                {\n                    \"hiredDate\": \"2015-05-01\",\n                    \"leaveDate\": \"2015-08-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Medical Intern\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                               \"\n                },\n                {\n                    \"hiredDate\": \"2015-05-01\",\n                    \"leaveDate\": \"2015-08-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Public Relations Intern\",\n                    \"description\": \"                                                                                                                                                            \"\n                }\n            ],\n            \"languagesList\": [\n                \"Hindi\",\n                \"Spanish\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University Law School\",\n                    \"subTitle\": \"Doctor of Law - JD\"\n                },\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Post-BaccalaureateMedical Neuroscience\"\n                },\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Bachelor of Arts - BAJournalism with a concentration in Environmental Journalism\"\n                },\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Bachelor of Science - BSNeuroscience, with a concentration in Behavioral and Systems Neuroscience\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1684434745107,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am a second-year law student at Wayne State Law and a member of the National Moot Court team. I am an experienced writer, having been a legal writer for a law firm and a policy writer for a congressional campaign. I am also an experienced leader and self-starter, having worked as a congressional campaign manager and creating and managing a Federal PAC. I believe my experience illustrates my work ethic and my drive to learn new information and use it to create structures and products that benefit the work of those around me.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 2204,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"9A0BFEBEBD95E0081AE2935E79C1924F\",\n            \"canonical\": \"https://www.linkedin.com/in/michael-weiler-46664025\",\n            \"fullname\": \"Michael Weiler\",\n            \"headline\": \"Senior Systems Architect\",\n            \"location\": \"Lake Orion, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/michael-weiler-46664025\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-11-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"CAE USA\",\n                    \"position\": \"Windchill Systems Administrator\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2006-12-01\",\n                    \"leaveDate\": \"2022-09-01\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Systems Architect\",\n                    \"description\": \"Development, support, and configuration for Windchill (PTC PDMLink) systems, servers, and publishing. Monitoring of systems and servers using Dynatrace, Icinga and custom scripts. Automated reports for performance tracking. ▪ Product Life-cycle Management, Product Data Management and Change Management for Engineering Release. Analysis of business and IT needs to adapt workflow, system and processes. ▪ Interface between Engineering community and software developers for Business Process…\"\n                },\n                {\n                    \"hiredDate\": \"2006-05-01\",\n                    \"leaveDate\": \"2006-12-01\",\n                    \"company\": \"Tata Sons Private Limited\",\n                    \"position\": \"PLM IT Services Manager\",\n                    \"description\": \"Managed System Engineers across North America\"\n                },\n                {\n                    \"hiredDate\": \"2004-03-01\",\n                    \"leaveDate\": \"2006-05-01\",\n                    \"company\": \"Siemens AG\",\n                    \"position\": \"IT Systems Architect\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1997-07-01\",\n                    \"leaveDate\": \"2004-03-01\",\n                    \"company\": \"INCAT\",\n                    \"position\": \"Systems Engineer\",\n                    \"description\": \"System Engineer; UNIX and Windows administrator, MCAD administrator. Installation, configuration and troubleshooting.\"\n                },\n                {\n                    \"hiredDate\": \"1996-07-01\",\n                    \"leaveDate\": \"1997-07-01\",\n                    \"company\": \"North American Lighting, Inc.\",\n                    \"position\": \"Unix Systems Administrator\",\n                    \"description\": \"▪ UNIX installation and system administration for AIX, HP-UX, IRIX. MCAD software installation and administration for CATIA V4, PDGS, and SDRC Ideas.\"\n                },\n                {\n                    \"hiredDate\": \"1995-12-01\",\n                    \"leaveDate\": \"1996-07-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Team Data Management\",\n                    \"description\": \"SDRC Ideas and Metaphase installation and administration on Solaris, HP-UX, and IRIX. TDM Template implementation of CPSC codes and data management practices.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"Bachelor of Science (B.S.)Aerospace, Aeronautical and Astronautical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1681092010797,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Unix\",\n                \"Systems Engineering\",\n                \"Troubleshooting\",\n                \"Product Lifecycle Management\",\n                \"Windows\",\n                \"Automotive\",\n                \"PDM\",\n                \"Manufacturing\",\n                \"Teamcenter\",\n                \"Catia\",\n                \"Engineering\",\n                \"Unigraphics\",\n                \"Automotive Electronics\",\n                \"Operating Systems\",\n                \"TCP/IP\",\n                \"Automotive Engineering\",\n                \"IT Service Management\",\n                \"CATIA\",\n                \"NX Unigraphics\",\n                \"Engineering Management\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.7844752,\n                    \"lon\": -83.2396612\n                },\n                \"formattedAddress\": \"Lake Orion, Orion Charter Township, MI 48362, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 9931,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"71383095BF16E7ACAF86024A8ECD53B9\",\n            \"canonical\": \"https://www.linkedin.com/in/katalenic\",\n            \"fullname\": \"Robert Katalenic\",\n            \"headline\": \"Helping automotive OEMs and suppliers cultivate innovative electronics into saleable products which meet customer needs\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQEA4EUkXVVmeA/profile-displayphoto-shrink_800_800/0/1602091938075?e=2147483647&v=beta&t=B1aehPkZDrh3Tpi2SOUosqynKGS33CbOV0Fgw1U7a9k\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/katalenic\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Manager Business Development, North America\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2015-01-01\",\n                    \"leaveDate\": \"2019-01-01\",\n                    \"company\": \"VOXX International Corporation\",\n                    \"position\": \"Strategic Business Development, Product Development and Marketing\",\n                    \"description\": \"VOXX Automotive is a global supplier of vehicle access/control and rear seat entertainment (RSE) systems to automotive OEMs. Took innovative technologies, nurtured into production intent products and determined alignment with customer requirements. Developed and executed a targeted strategy for the West Coast startup EV OEMs to promote the company’s proprietary bluetooth (BTLE) technology as a smartphone replacement of keyfobs and traditional passive entry systems. Utilizing…\"\n                },\n                {\n                    \"hiredDate\": \"2011-01-01\",\n                    \"leaveDate\": \"2015-01-01\",\n                    \"company\": \"JATO Dynamics\",\n                    \"position\": \"Vice President of Sales, North America\",\n                    \"description\": \"JATO Dynamics is a global supplier of automotive business intelligence with comprehensive research on vehicle specifications, pricing, sales registrations and automotive industry news for over 60 countries. As Vice President, I lead the 5 member North American sales team. I was the single point of contact for regional performance to corporate executives in UK in coordination with multicultural team of regional leadership in Europe, South America and Asia. I supported development of…\"\n                },\n                {\n                    \"hiredDate\": \"2009-01-01\",\n                    \"leaveDate\": \"2011-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"New Product Business Innovation\",\n                    \"description\": \"Supported the newly re-acquired Delphi Kokomo manufacturing facility which produced Semiconductor Integrated Circuits (IC), Power Electronics, Engine Controllers and Sensors. Facilitated the initial critical post-bankruptcy emergence objectives to transition all existing Delphi programs and their entire customer base to the newly formed GM Components Holdings and ensured an uninterrupted supply of components and revenue. Developed and presented business case proposals to senior…\"\n                },\n                {\n                    \"hiredDate\": \"2003-01-01\",\n                    \"leaveDate\": \"2009-01-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Product Marketing and Business Development\",\n                    \"description\": \"Delphi Electronics & Safety Systems was a leading global supplier of not only Infotainment Systems: Touchscreen Navigation, OnStar telematics, XM Satellite Radios and SDARS Antennas but also ADAS and Safety Systems: Adaptive Cruise Control (ACC), Radar Back Up (BUA) and Passenger Occupant Detection Systems (PODS). Successfully developed cross functional relationship with customer’s engineering, product planning, marketing and brand development teams to identify target…\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"German\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Lawrence Technological University\",\n                    \"subTitle\": \"Bachelor of ScienceElectrical Engineering\"\n                },\n                {\n                    \"title\": \"Macomb Community College\",\n                    \"subTitle\": \"Associate of ArtsElectrical and Electronics Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1681091654799,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am an inquisitive business development leader with an art to part career representation of electronic components, systems and services which combines a unique blend of marketing and technical sales with a bachelor’s degree in Electrical Engineering (BSEE). My ability to communicate and understand both technical and business requirements has been invaluable to successfully facilitate cross functional collaboration resulting in multiple new business opportunities and increased customer satisfaction. I have been successful at taking an idea, nurture it into a production-intent product and find an OEM to deliver. I thrive when focused on developing innovative technologies in automotive. My passion shines through with latest achievement developing a Bluetooth Phone-as-a-Key vehicle access system from concept all the way through to company’s first business award and even industry recognition by Automotive News. My career has given me exposure to a breadth of technologies: Infotainment, Telematics, Wireless, Bluetooth, Semiconductor IC, Advanced Driver Assistance Systems (Radar, LiDAR, Ultrasonic), Powertrain Control Modules, Sensors, Embedded Software Development, Finite Element Analysis and Competitive Intelligence.\",\n            \"skills\": [\n                \"Automotive\",\n                \"Vehicles\",\n                \"Product Development\",\n                \"Product Planning\",\n                \"Telematics\",\n                \"Cross-functional Team Leadership\",\n                \"Competitive Analysis\",\n                \"New Business Development\",\n                \"Product Launch\",\n                \"Sales Management\",\n                \"Pricing\",\n                \"Engineering\",\n                \"Lean Manufacturing\",\n                \"Automobile\",\n                \"Account Management\",\n                \"Product Management\",\n                \"Product Marketing\",\n                \"Negotiation\",\n                \"Program Management\",\n                \"Market Analysis\",\n                \"CRM\",\n                \"Start-ups\",\n                \"Contract Negotiation\",\n                \"Strategic Partnerships\",\n                \"Management\",\n                \"Strategy\",\n                \"Business Development\",\n                \"Sales\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6673,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"52320551DE5C236E22A32F352551E516\",\n            \"canonical\": \"https://www.linkedin.com/in/fabricio-alvaro-88b9b241\",\n            \"fullname\": \"Fabricio Alvaro\",\n            \"headline\": \"Senior Resident Engineer at General Motors\",\n            \"location\": \"Warren, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQEtA_-v1_a5gg/profile-displayphoto-shrink_800_800/0/1516956400280?e=2147483647&v=beta&t=nMAY3_gzCAbvMNt04Nolipnv69oYZxdFzaeh99lKQ0A\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/fabricio-alvaro-88b9b241\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2019-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Resident Engineer\",\n                    \"description\": \"Responsible for the Long Range Radars for Global A platforms and the new generation of digital cameras for all the vehicles at GM.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2016-07-01\",\n                    \"leaveDate\": \"2019-03-01\",\n                    \"company\": \"Valeo S.A.\",\n                    \"position\": \"GM Resident Engineer\",\n                    \"description\": \"Responsible for follow up of project planning, Design Reviews [Internal, Customer, Supplier,] CAD/ Drawing Reviews and associated document reviews Responsible of creation/maintenance of BOM for Surround vision system Support different vehicle build stages at GM\"\n                },\n                {\n                    \"hiredDate\": \"2014-11-01\",\n                    \"leaveDate\": \"2016-06-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Exterior Accessories Design Release Engineer\",\n                    \"description\": \"• Led changes proposed by Marketing to the bed liner (K2XX and 31XX programs) to increase revenue of the commodity. Leading a PDT with Marketing, Validation engineer, Technical integration engineer, Design studio, BFO, GSSLT lead, Supplier quality and Supplier have incorporated features for tie down hooks and have developed a best practice for bed liners plugs. • Led creation of State of Requirements. Have worked with Material, ICE, Manufacturing, Validation engineers and studio for the…\"\n                },\n                {\n                    \"hiredDate\": \"2013-03-01\",\n                    \"leaveDate\": \"2014-11-01\",\n                    \"company\": \"Aerotek-Allegis : contract assignment with General Motors\",\n                    \"position\": \"Exterior Accessories Design Release Engineer\",\n                    \"description\": \"• Led changes proposed by Marketing to the bed liner (K2XX and 31XX programs) to increase revenue of the commodity. Leading a PDT with Marketing, Validation engineer, Technical integration engineer, Design studio, BFO, GSSLT lead, Supplier quality and Supplier have incorporated features for tie down hooks and have developed a best practice for bed liners plugs. • Led creation of State of Requirements. Have worked with Material, ICE, Manufacturing, Validation engineers and studio for the…\"\n                },\n                {\n                    \"hiredDate\": \"2009-07-01\",\n                    \"leaveDate\": \"2013-02-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Design and Release Engineer\",\n                    \"description\": \"• Led design and implementation of the Cross Car Beam of the MKX SUV. Have Interacted with IP, CAE, safety (FMVSS), NVH and electrical commodities on Peer reviews to develop and comply the global IP and console requirements. • Led PDT reviews to meet target of cost, timing and mass of the parts.\"\n                },\n                {\n                    \"hiredDate\": \"2006-08-01\",\n                    \"leaveDate\": \"2009-07-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Design and Release Engineer\",\n                    \"description\": \"• Led the design and packaging of the HVAC and PTC lines for Theta platform, have interacted with others SMTs and suppliers to solve and support performance and packaging issues, have supported virtual reviews (CIT) and cost reduction ideas, have coordinated the execution of production and prototypes parts to support vehicle builds. Have worked closely with purchasing department in GM-Asia to develop suppliers that comply with the requirements of the parts (SOR), have supported peer reviews for…\"\n                },\n                {\n                    \"hiredDate\": \"2006-01-01\",\n                    \"leaveDate\": \"2006-08-01\",\n                    \"company\": \"Plastic-Tec\",\n                    \"position\": \"Product Engineer\",\n                    \"description\": \"• Led process to achieve PPAP for A4 pillars, • Have developed dunnage and have provided technical support to customers. • Achievements: Release of tooling pillars at grade 1 for the A4 platform. • Led A5 pillar tooling startup release process with production, logistic and quality departments. Start-up of the line production for the pillars. • Have worked with production on the creation and release of the plastic mold for the A4 pillars.\"\n                },\n                {\n                    \"hiredDate\": \"2000-10-01\",\n                    \"leaveDate\": \"2004-02-01\",\n                    \"company\": \"Volkswagen de Mexico\",\n                    \"position\": \"Design Release Enginner\",\n                    \"description\": \"• Led the A5 interior garnish and overhead system launch on production. • Have proposed and worked with design studio on a new CD carrier box for the New Beetle. • Have worked on bench tests to validate A4 platform upper interior parts.\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Spanish\",\n                \"German\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"University of the Americas – Puebla\",\n                    \"subTitle\": \"Diploma - minorInterior Automotive Partsminor\"\n                },\n                {\n                    \"title\": \"University of the Americas - Puebla\",\n                    \"subTitle\": \"Bachelor’s DegreeMechanical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1681091354561,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Mechanical Engineer with more than 18 years of experience in the automotive industry. Areas of expertise include design and release automotive parts from early concept in studio phases to mass production, BOM maintenance and support to the assembly plant. Technical Skills:Team work, Proficient in NX and Catia V5, GD&T Knowledge, Green and Black Belt verified and Program Management, Vehicle Spy, XCP, DPS Good communication skills due to the holistic view derived from the interaction with various functional team throughout the product development process.\",\n            \"skills\": [\n                \"PPAP\",\n                \"Manufacturing\",\n                \"GD&T\",\n                \"Automotive Engineering\",\n                \"Automotive\",\n                \"Geometric Dimensioning & Tolerancing\",\n                \"DFMEA\",\n                \"NX Unigraphics\",\n                \"Machine Tools\",\n                \"Teamcenter\",\n                \"FMEA\",\n                \"Six Sigma\",\n                \"APQP\",\n                \"Vehicles\",\n                \"Green Belt\",\n                \"CATIA\",\n                \". NX3 and NX5 basic trainings.\",\n                \"Time Management\",\n                \"DRBFM\",\n                \"GPDS\",\n                \"E2\",\n                \"Supplier Negotiation\",\n                \"Distant Learning\",\n                \"UGS NX5\",\n                \"Vismuckup\",\n                \"Unigraphics\",\n                \"Geometric Dimensioning\",\n                \"Black Belt\",\n                \"Continuous Improvement\",\n                \"Product Development\",\n                \"Production Part Approval Process (PPAP)\",\n                \"Siemens NX\",\n                \"DFSS Green Belt\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.5144566,\n                    \"lon\": -83.01465259999999\n                },\n                \"formattedAddress\": \"Warren, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7468,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"A33A33266800B33BD65B53FDEA9FF5D1\",\n            \"canonical\": \"https://www.linkedin.com/in/greg-crain-83a88011\",\n            \"fullname\": \"Greg Crain\",\n            \"headline\": \"Electrical/Computer Engineer at Vitesco Technologies\",\n            \"location\": \"Clarkston, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": {\n                    \"url\": \"https://github.com/gscrain1\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/greg-crain-83a88011\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-09-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Vitesco Technologies Group AG\",\n                    \"position\": \"Electrical/Computer Engineer at Vitesco Technologies\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2023-02-01\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Electrical/Computer Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2008-01-01\",\n                    \"company\": \"Siemens AG\",\n                    \"position\": \"Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1997-01-01\",\n                    \"leaveDate\": \"1999-01-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Product Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1993-01-01\",\n                    \"leaveDate\": \"1997-01-01\",\n                    \"company\": \"Jabil Inc.\",\n                    \"position\": \"Test Engineer\",\n                    \"description\": \"Test Engineer for Automotive modules and assemblies.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"MSEEEngineering\"\n                },\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"BSEE, BSCEEngineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1681091056852,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Embedded Software Development - Low Level device drivers for Automotive Engine Control Modules (ECM) and Drivetrain Control Modules. Test Engineering: Agilent VXI Systems, National Instruments LabView & LabWindows CVI customized production test for Powertrain electronics and Automotive Interior subsystems. Specialties: People Skills.\",\n            \"skills\": [\n                \"Embedded Systems\",\n                \"Engineering\",\n                \"Electronics\",\n                \"Testing\",\n                \"Automotive\",\n                \"Microcontrollers\",\n                \"Labview\",\n                \"PLC\",\n                \"Device Drivers\",\n                \"Embedded Software\",\n                \"Software Engineering\",\n                \"LabVIEW\",\n                \"Systems Engineering\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.7351196,\n                    \"lon\": -83.4192941\n                },\n                \"formattedAddress\": \"Village of Clarkston, MI 48346, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11056,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"C33D9F1CE367E06BEBAFC9B0EB7DE8CA\",\n            \"canonical\": \"https://www.linkedin.com/in/dave-newman-85b13180\",\n            \"fullname\": \"Dave Newman\",\n            \"headline\": \"Staff Software Engineer - Autonomous Vehicles at Latitude AI\",\n            \"location\": \"Livonia, Michigan\",\n            \"industry\": \"automotive\",\n            \"picture\": \"https://static.licdn.com/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/dave-newman-85b13180\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-02-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Latitude AI\",\n                    \"position\": \"Staff Software Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2017-04-01\",\n                    \"leaveDate\": \"2023-02-01\",\n                    \"company\": \"Argo AI\",\n                    \"position\": \"Staff Software Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2016-06-01\",\n                    \"leaveDate\": \"2017-04-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Research Engineer - Automated Driving\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1992-01-01\",\n                    \"leaveDate\": \"2016-06-01\",\n                    \"company\": \"Perceptron\",\n                    \"position\": \"Senior Software Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [],\n            \"lastScraperUpdateTime\": 1680489739081,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Automation\",\n                \"Testing\",\n                \"C\",\n                \"Embedded Systems\",\n                \"C++\",\n                \"Programming\",\n                \"Embedded Software\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.36837,\n                    \"lon\": -83.35270969999999\n                },\n                \"formattedAddress\": \"Livonia, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11415,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"7AF86EFCB1624C67B792A35CE3EC0969\",\n            \"canonical\": \"https://www.linkedin.com/in/nishant-prakash-2079a74a\",\n            \"fullname\": \"Nishant Prakash\",\n            \"headline\": \"Project Engineering Lead- L2 ADAS / AD Features\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQH6729ciTAEqw/profile-displayphoto-shrink_800_800/0/1553899583665?e=2147483647&v=beta&t=bHB3TCMgNuL5u-GEQEWuFd8kFQbAL6EtVRuv59ZAoho\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/nishant-prakash-2079a74a\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-06-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"MAGNA ELECTRONICS LIMITED\",\n                    \"position\": \"Project Engineering Lead- L2 ADAS/AD Features\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2021-05-01\",\n                    \"leaveDate\": \"2022-06-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Senior Systems Engineer/ Features Team Lead- L2+ ADAS Systems\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2019-07-01\",\n                    \"leaveDate\": \"2021-12-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Autonomous Driving Systems Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2017-02-01\",\n                    \"leaveDate\": \"2019-07-01\",\n                    \"company\": \"Valeo S.A.\",\n                    \"position\": \"System Engineer- ADAS Features\",\n                    \"description\": \"•Lead customer demonstrations of ADAS feature released by the platform development teams. It involves integrating the software on demonstration vehicles and debug the system for any issues •Coordinate with the Systems Architects, Software developers and System test engineers to ensure requirement implementation and validate the test cases •Actively participate in internal discussions and suggest improvements to the research and development teams based on issue debug in the…\"\n                },\n                {\n                    \"hiredDate\": \"2016-01-01\",\n                    \"leaveDate\": \"2017-02-01\",\n                    \"company\": \"IEE\",\n                    \"position\": \"Electrical Systems Engineer\",\n                    \"description\": \"•Responsible for the overall development of capacitance based sensing systems, investigate system’s limitations and develop customized solutions for critical issues as per the customer requirement •Manage requirements using DOORS, create DFMEA for our system and perform testing to replicate the issues on bench to know its root cause and explain the physics behind it •Develop test procedures and prepare set up for the validation of Electrical Systems and work with other teams to…\"\n                },\n                {\n                    \"hiredDate\": \"2014-06-01\",\n                    \"leaveDate\": \"2016-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Hands Free Audio Engineer\",\n                    \"description\": \"•Implemented the Wideband and Narrowband Audio codecs for AMR (Adaptive Multi Rate), VMR (Variable Multi Rate) and EVRC (Enhanced Variable Rate Codec) standardized by ITU-T and developed network simulation software to measure the quality of audio codecs based on MOS scoring including PESQ. •Developed the GUI for the simulation software and established connection to database. Entire development was done in UNIX (Cygwin) and Linux environment using GCC compiler, subversion tools, C/C++…\"\n                },\n                {\n                    \"hiredDate\": \"2012-08-01\",\n                    \"leaveDate\": \"2014-06-01\",\n                    \"company\": \"University Of Houston\",\n                    \"position\": \"Research Assistant\",\n                    \"description\": \"•Used the Electroencephalogram machine for recording of EEG signals in the Lab. •Worked with large amount of real time data and used data processing and analysis techniques including feature extraction, clustering, AR modeling and Pattern recognition •Developed a software using MATLAB and C language to perform automated sleep staging using artificially generated EEG signals and later extending it for real time EEG data.\"\n                },\n                {\n                    \"hiredDate\": \"2012-02-01\",\n                    \"leaveDate\": \"2012-07-01\",\n                    \"company\": \"Accenture plc\",\n                    \"position\": \"Associate Software Engineer (Java Developer)\",\n                    \"description\": \"•Worked on Struts and Spring Framework along with the application of Swing Concepts, JSP, Servlets, html and Core Java. •Worked on Informatica Tool used for maintenance of large Database systems using SQL and PL/SQL language. •Created test cases, deliverables and performed unit testing for the softwares designed to be delivered to clients.\"\n                },\n                {\n                    \"hiredDate\": \"2009-05-01\",\n                    \"leaveDate\": \"2009-06-01\",\n                    \"company\": \"Bharat Sanchar Nigam Limited\",\n                    \"position\": \"Intern\",\n                    \"description\": \"•Gained practical experience of the process from the touch point of how calls are made via mobile and landline using the BTS and MTS to complex working of various devices.\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Bengali\",\n                \"Hindi\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Houston\",\n                    \"subTitle\": \"Master's degreeSignal Processing & Communications\"\n                },\n                {\n                    \"title\": \"Rice University\",\n                    \"subTitle\": \"Master of Science (MS)Digital Signal ProcessingGPA 4.0\"\n                },\n                {\n                    \"title\": \"Nagpur University\",\n                    \"subTitle\": \"Bachelor's in EngineeringElectrical, Electronics and Communications Engineering3.8\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1679182412292,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am currently working as a Project Engineering lead for L2 Autonomous driving systems at Magna Electronics. My experience has been focused in the ADAS Systems for past 7 years and am experienced with the end to end ADAS system development. I have worked and led the development of L2 and L2+ ADAS systems based on Radars, Ultrasonic sensors, MAP and near range Cameras with North American OEMs like Ford and Stellantis. I am experienced in requirements elicitation, system design, FMEA analysis, performing feasibility study and have created detailed system level design/requirements using IBM DOORS and Polarion. Tools used: Automotive: IBM DOORS, Polarion, Enterprise Architect, PTC Integriti , CANalyzer, Vector tool, JIRA Software: MATLAB, CANoe, dSpace, Cygwin, QT Tools, CMU200, ACQUA, Audacity Programming Languages:Python, PyQt, Shell Scripting, C/C++, SQL\",\n            \"skills\": [\n                \"Automotive Infotainment\",\n                \"Electrical Engineering\",\n                \"Matlab\",\n                \"Telecommunications\",\n                \"Signal Processing\",\n                \"Audio Engineering\",\n                \"Programming\",\n                \"Pattern Recognition\",\n                \"PyQt\",\n                \"MOS\",\n                \"C++\",\n                \"C\",\n                \"SQL\",\n                \"Unix Shell Scripting\",\n                \"Python\",\n                \"Pspice\",\n                \"Java\",\n                \"VHDL\",\n                \"Testing\",\n                \"Algorithms\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 4063,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"C220A5CAB3069177FEECEC8BA658DC6E\",\n            \"canonical\": \"https://www.linkedin.com/in/gary-c-43652924\",\n            \"fullname\": \"Gary C.\",\n            \"headline\": \"Systems Engineer\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"Defense & Space\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4D03AQE7KFmle7TARA/profile-displayphoto-shrink_800_800/0/1517078234577?e=2147483647&v=beta&t=F_aPuuyC8w8RVo3bQiFotcbo7Mv0iuk0iGlnJPYqQss\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/gary-c-43652924\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2017-01-01\",\n                    \"leaveDate\": \"2022-01-01\",\n                    \"company\": \"Confidential (In stealth mode)\",\n                    \"position\": \"System Engineer\",\n                    \"description\": \"Technical Planning & Management, Requirements, ORSA, & Architecture\"\n                },\n                {\n                    \"hiredDate\": \"2014-06-01\",\n                    \"leaveDate\": \"2016-08-01\",\n                    \"company\": \"AM General LLC\",\n                    \"position\": \"Sr. Systems Engineer Staff\",\n                    \"description\": \"Requirements Management, TIRs, RAM Testing, Problem Solving and Resolution, Modeling and Simulations, FE Analysis, BCNs, DFMEAs, DARTs.\"\n                },\n                {\n                    \"hiredDate\": \"2013-08-01\",\n                    \"leaveDate\": \"2014-03-01\",\n                    \"company\": \"Gentex\",\n                    \"position\": \"Sr. Systems Engineer Defense\",\n                    \"description\": \"• Requirements Management and Product Development • Purchase Description/SOW Document Auditor • Requirements Management, Allocation, and Compliance using DOORs/MS Excel software. • DVT Test Development. • Deriving Requirements, Defining new Product Requirements. • Working with Military Standards and Specifications, SRR, TRR, SME Reviews. • Evaluate designs for Performance, Safety, and Reliability.\"\n                },\n                {\n                    \"hiredDate\": \"2012-10-01\",\n                    \"leaveDate\": \"2013-05-01\",\n                    \"company\": \"General Dynamics Corporation\",\n                    \"position\": \"Systems Engineer Sr. Defense\",\n                    \"description\": \"• Requirements Management, Allocation, and Compliance using DOORs software. • Deriving Requirements, Defining new Product Requirements, Developing Function Lists, Developing Environmental Requirements • Working with Military Standards and Specifications, PEER Reviews, SME Reviews, STRs • Impact Analysis on Contract Mods to the System and Subsystem level Performance Specifications. • Working with Thermal Group to develop worst case drivetrain heat rejection information for the…\"\n                },\n                {\n                    \"hiredDate\": \"2012-03-01\",\n                    \"leaveDate\": \"2012-10-01\",\n                    \"company\": \"BAE Systems plc\",\n                    \"position\": \"System Engineer Defense\",\n                    \"description\": \"• Measurement and Analysis, Measurement Definition development, tracking of program metrics for the following: (Risk, Headcount, Labor Hours, CPI, CV, EAC, VAC, SV, SPI, DT%, Refurb%, TIRs, System Weight, Force Protection, Survivability, Maximum Velocity, Transportation, Accuracy, Rate of Fire, Firing Range, Reliability%, Availability, Net Ready, Reliability MTBSA, Parts Availability, Engineering Changes, Engineering Requests, and LEAD BOM cost data. • Risk Management using ARM and…\"\n                },\n                {\n                    \"hiredDate\": \"2011-12-01\",\n                    \"leaveDate\": \"2012-02-01\",\n                    \"company\": \"Force Protection\",\n                    \"position\": \"Systems Engineer Defense\",\n                    \"description\": \"Requirement Management using DOORs ver.9.3 Bid and Proposal, System Archetecture (SysML) using magic draw, upgrades and egress modications.\"\n                },\n                {\n                    \"hiredDate\": \"2008-01-01\",\n                    \"leaveDate\": \"2011-04-01\",\n                    \"company\": \"BAE Systems plc\",\n                    \"position\": \"Systems Engineer Defense\",\n                    \"description\": \"Following the LCM/CMMI Project management process. Upgrading the M88A2 Hercules Heavy Recovery Vehicle for increased ride performance,towing capabilities, and increase GVW by 5 tons. Using Trade Studies to evaluate the different M88 Suspension Vendors technologies in regards to Cost, performance, packaging, and system intergration. Gathered specifications and performance data for an FE Analysis evaluation of Suspension components, and also Modeling and Simulation comparisons of different…\"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2003-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Reliability Implementation Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [\n                \"Spanish\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Detroit Mercy\",\n                    \"subTitle\": \"MS MEProduct Development\"\n                },\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"BS CHEProduct Development, Material Science, Environmental Science\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1679182018913,\n            \"military\": true,\n            \"clearance\": true,\n            \"about\": \"\",\n            \"skills\": [\n                \"Systems Engineering\",\n                \"Earned Value Management\",\n                \"Requirements Management\",\n                \"Engineering Management\",\n                \"CMMI\",\n                \"DoDAF\",\n                \"Integration\",\n                \"Telelogic DOORS\",\n                \"Trade Studies\",\n                \"C4ISR\",\n                \"Engineering\",\n                \"Requirements Analysis\",\n                \"System Design\",\n                \"SysML\",\n                \"GD&T\",\n                \"System Architecture\",\n                \"Program Management\",\n                \"Configuration Management\",\n                \"Government Contracting\",\n                \"DoD\",\n                \"Cost Engineering\",\n                \"Quality Management\",\n                \"Six Sigma\",\n                \"Process Improvement\",\n                \"Aerospace\",\n                \"Avionics\",\n                \"IBM DOORS\",\n                \"Proposal Writing\",\n                \"Security Clearance\",\n                \"Military\",\n                \"Defence\",\n                \"Defense\",\n                \"Testing\",\n                \"Space Systems\",\n                \"Spacecraft\",\n                \"System Safety\",\n                \"Radar\",\n                \"System Requirements\",\n                \"MIL-STD-1553\",\n                \"Flight Test\",\n                \"Rhapsody\",\n                \"Systems Design\",\n                \"Geometric Dimensioning & Tolerancing\",\n                \"Rational DOORS\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 5600,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"034796B59F2613A4F5CB58CBF0B3691F\",\n            \"canonical\": \"https://www.linkedin.com/in/viveka-mishra-68741a49\",\n            \"fullname\": \"Viveka Mishra\",\n            \"headline\": \"Staff Systems Engineer at Latitude AI\",\n            \"location\": \"Detroit, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQH3Z2WNTUTUmw/profile-displayphoto-shrink_800_800/0/1614438578012?e=2147483647&v=beta&t=f4MeFc8OScutfEJgs8mX2JhHm4ofP8uVgojtbRaQknE\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/viveka-mishra-68741a49\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Latitude AI\",\n                    \"position\": \"Staff Systems Engineer at Latitude AI\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2022-09-01\",\n                    \"leaveDate\": \"2022-12-01\",\n                    \"company\": \"Argo AI\",\n                    \"position\": \"Sensing & Perception Architecture Tech Lead\",\n                    \"description\": \"Developed & implemented probabilistic design verification plans for perception of objects & road actors, traffic lights, occlusions & free space. Led implementation - planned 60+ full time engineer weeks of work per quarter for 5 quarters- and validation of these functions and ran a cross-functional failure triage. Individually developed statistical case based test methods, built tools in python and SQL for statistically significant functional performance visualization and clearly communicated…\"\n                },\n                {\n                    \"hiredDate\": \"2021-02-01\",\n                    \"leaveDate\": \"2022-10-01\",\n                    \"company\": \"Argo AI\",\n                    \"position\": \"Senior System Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2017-09-01\",\n                    \"leaveDate\": \"2021-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Autonomous Emergency Braking (VRU) Global Feature Owner\",\n                    \"description\": \"Responsible for deploying the autonomous emergency braking algorithm to prevent collisions with pedestrians and cyclists on Ford, Mustang and Lincoln vehicles globally. Developed sensing, hardware, software, interface and feature requirements as well as verification and validation methods. Ensured that the requirements were testable and met for each vehicle line. Ran feature development sub-team to deploy multiple vehicle lines globally, concurrently. Characterized positive and negative…\"\n                },\n                {\n                    \"hiredDate\": \"2017-01-01\",\n                    \"leaveDate\": \"2017-08-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Electrical Systems Engineer\",\n                    \"description\": \"Ran the electrical systems validation effort and drove wiring, software and electrical component manufacturing issue resolution for the 2018 Ford Expedition and Lincoln Navigator, which was awarded Best In Class and North American Truck of the Year. Ensured all parts related to electrical systems in the vehicle were delivered in time for tooling trial, prototype and the initial launch builds at Ford’s Kentucky Truck Plant.\"\n                },\n                {\n                    \"hiredDate\": \"2015-01-01\",\n                    \"leaveDate\": \"2017-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Automated Driving Development Engineer\",\n                    \"description\": \"Developed the algorithm for collision mitigation in intersection scenarios. Was primarily responsible for the controls algorithm on the braking request and the path prediction compensation algorithm for sensor latency. This work was transitioned into production code as of 2019 on 3 vehicle lines.\"\n                },\n                {\n                    \"hiredDate\": \"2014-01-01\",\n                    \"leaveDate\": \"2015-01-01\",\n                    \"company\": \"PegaSense\",\n                    \"position\": \"Co-Founder and CEO\",\n                    \"description\": \"Led team to become 2014 MassChallenge Finalists. Developed prototype from idea to initial iteration by evaluating the target market and working with potential users. Led the product design team to develop a manufacturable design. Ran study with the prototype to validate core value proposition. Closed an initial round of funding for a year of company development. Acquired committed customers and completed a viable business plan and developed a manufacturable prototype planned for large-scale…\"\n                },\n                {\n                    \"hiredDate\": \"2013-06-01\",\n                    \"leaveDate\": \"2013-08-01\",\n                    \"company\": \"Thermo Fisher Scientific Inc.\",\n                    \"position\": \"Mechanical Engineering Intern\",\n                    \"description\": \"• Designed and fabricated a pneumatic-powered robot from scratch to autonomously run a lifetime test. • Lifetime test controlled by Arduino and code • Several replicas built by the company after the internship\"\n                },\n                {\n                    \"hiredDate\": \"2012-06-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"KVA matx\",\n                    \"position\": \"Mechanical and Electrical Portable Light Technician\",\n                    \"description\": \"• Spearheaded the beta prototype of Portable Light project with mechanical and electrical modifications. • Developed and integrated solar technology for Amazon river communities in Brazil\"\n                },\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"Takachar Project, Engineers without Borders\",\n                    \"position\": \"Technical Consultant and Operations Manager\",\n                    \"description\": \"• Tested and implemented charcoal briquetting using waste materials. • Developed a waste management pilot project to be utilized in Kibera and Mathare slums.\"\n                },\n                {\n                    \"hiredDate\": \"2011-05-01\",\n                    \"leaveDate\": \"2011-08-01\",\n                    \"company\": \"Massachusetts Institute of Technology\",\n                    \"position\": \"Student Researcher Ionnis Yannas Lab\",\n                    \"description\": \"· Studied how certain structures of scaffolds used in nerve healing affect the quality of wound healing · Helped design a Matlab program for a customized laser microscope · Image and data process in Matlab\"\n                },\n                {\n                    \"hiredDate\": \"2009-06-01\",\n                    \"leaveDate\": \"2009-10-01\",\n                    \"company\": \"National Institutes of Health\",\n                    \"position\": \"Student Researcher\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2007-12-01\",\n                    \"leaveDate\": \"2008-08-01\",\n                    \"company\": \"Georgetown University\",\n                    \"position\": \"Student Researcher\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Swahili\",\n                \"Spanish\",\n                \"Hindi\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Massachusetts Institute of Technology\",\n                    \"subTitle\": \"Bachelor's DegreeMechanical Engineering\"\n                },\n                {\n                    \"title\": \"University of Michigan - Rackham Graduate School\",\n                    \"subTitle\": \"Master’s DegreeElectrical and Computer Engineering\"\n                },\n                {\n                    \"title\": \"Sidwell Friends School\",\n                    \"subTitle\": \"High School Diploma\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1679179370199,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am a trained mechanical, electrical and intelligent systems engineer with demonstrated experience bringing a product from idea to prototype and leading a team from prototype to VC-backed corporation. Ive built upon my roles as a controls algorithm engineer and electrical systems engineer to cross functionally develop, integrate, validate and deploy Fords Autonomous Emergency Braking feature mitigating collisions with pedestrians and cyclists globally, both in production and for Fords pre-production Co-Pilot 360 platform. Most recently I’ve developed and lead a cross-functional team in the implementation of a novel statistical approach to perception stack verification at Argo AI and have provided the company critical insights into perception architecture design decisions and functional performance given the context of launch targets.\",\n            \"skills\": [\n                \"Engineering\",\n                \"Matlab\",\n                \"Simulink\",\n                \"Public Speaking\",\n                \"Solidworks\",\n                \"Teaching\",\n                \"Mechanical Engineering\",\n                \"Machining\",\n                \"Soldering\",\n                \"Assembly Language\",\n                \"Python\",\n                \"C\",\n                \"Injection Molding\",\n                \"Thermoforming\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.331427,\n                    \"lon\": -83.0457538\n                },\n                \"formattedAddress\": \"Detroit, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 4002,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"5542A1F11FD666B557B1B5D3F3F9F252\",\n            \"canonical\": \"https://www.linkedin.com/in/roman-kapitanec-77908b68\",\n            \"fullname\": \"Roman Kapitanec\",\n            \"headline\": \"Controller NA at Macauto Industrial Co., Ltd.\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQHCvIG95pbIkw/profile-displayphoto-shrink_800_800/0/1520985268831?e=2147483647&v=beta&t=PA6Sg8aiUbjbJB-cD_39kdigdH0YDxj2JCa6gqYFTvk\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/roman-kapitanec-77908b68\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2017-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Macauto Industrial Co., Ltd.\",\n                    \"position\": \"Controller NA\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2014-12-01\",\n                    \"leaveDate\": \"2017-02-01\",\n                    \"company\": \"Recaro Holding\",\n                    \"position\": \"Sr. Financial Analyst/Account Financial Manager\",\n                    \"description\": \"Under the direction of the Controller-NA/Director RKIH perform financial analysis and business case studies with Program Teams to help drive continued business wins and to ensure the proper program profitability. Manage and develop program business cases including required capital investment, tooling investment and engineering investment to ensure the proper IRR, ROS and ROA for each program. Provide input to quarterly forecasts and annual Profit Plan in regards to engineering spending…\"\n                },\n                {\n                    \"hiredDate\": \"2010-09-01\",\n                    \"leaveDate\": \"2014-12-01\",\n                    \"company\": \"Bridgewater Interiors, LLC\",\n                    \"position\": \"BU Controller / Sr. Financial Analyst\",\n                    \"description\": \"Provide direct support to BWI CFO on routine financial matters and special projects. Review treasury information on a daily basis. Monitor cash flow and Working Capital position noting impact on AR, AP and Payroll. Ensure funds used for Working Capital are reasonable and in line with business expectations. Prepare payroll summary for plants to use for recording labor. expense in the month and coordinate any issues with the plant. Full responsibility for month-end closing for BWI HQ…\"\n                },\n                {\n                    \"hiredDate\": \"2010-04-01\",\n                    \"leaveDate\": \"2010-09-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Sr. Financial Analyst\",\n                    \"description\": \"Managed and executed monthly portfolio processes. Track portfolio through various company ledgers. Coordinated accruals with project managers. Optimized business plans to improve business results. Provided internal and/or external financial analysis, consultation and decision support. Prepared, analyzed, and selected methods of presenting various data Solved problems and developed new methods of analysis. Wrote reports and summaries of findings in accordance to…\"\n                },\n                {\n                    \"hiredDate\": \"2009-12-01\",\n                    \"leaveDate\": \"2010-04-01\",\n                    \"company\": \"Detroit Diesel\",\n                    \"position\": \"Sr. Financial Analyst\",\n                    \"description\": \"Documented monthly Sarbanes-Oxley (SOX) compliance for Diesel integrated business Systems, Hyperion and SAP. Coordinated with Accounting, Controlling, and Operations personnel to resolve financial statement discrepancies and ensure accurate information. Prepare financial statement footnotes, provision report, and income statement review following SEC guidelines, GAAP and IFRS. Prepare reports and reconciliation and collect and review input from other analysts to ensure accuracy and…\"\n                },\n                {\n                    \"hiredDate\": \"1999-11-01\",\n                    \"leaveDate\": \"2009-05-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Operations Planning Analyst\",\n                    \"description\": \"Reconciled six (6) Deficiency & Extension Lockbox accounts (bank & ledger accts.) averaging $1.2B per month. Research and resolve remote location requests utilizing every resource available with in DaimlerChrysler Services. Work closely with the Retail Accounting, Lease Accounting, Internal/External Audit, and Bankruptcy depts., as well as the Business Centers., Remarketing, and Deficiency Center to ensure accurate and timely presentation of financial reports. Audited…\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2007-05-01\",\n                    \"company\": \"Chrysler Corporation/Chrysler Financial\",\n                    \"position\": \"Sr. Financial Analyst\",\n                    \"description\": \"Assisted in the development, enhancement, and maintenance of IT applications utilized by CFC financial Controlling team. Primarily responsible for supporting the forecast tool (VPT) and finance engine (US, Canada, Mexico, Puerto Rico, and Argentina). Solely responsible for data validation and analysis, creative problem solving, project management, and customer relations. Assisted in corporate level controls and SOX compliance. Controller’s Office project leader for separation of…\"\n                },\n                {\n                    \"hiredDate\": \"1997-10-01\",\n                    \"leaveDate\": \"1999-11-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Financial Analyst/Cost Analyst\",\n                    \"description\": \"Maintained General Ledger accounts related to OME, Scrap, Direct and Indirect Labor. Daily analysis of actual to target costs as it relates to units of production. Worked closely with the various cost and profit centers within the plant compiling and analyzing financial data, as well as recommending cost savings. Worked directly with Engineering, Production Control and outside vendors on recoveries and engineering-related charges. Assisted in annual model year budget preparation…\"\n                },\n                {\n                    \"hiredDate\": \"1996-01-01\",\n                    \"leaveDate\": \"1997-01-01\",\n                    \"company\": \"BTR Sealing Systems N.A\",\n                    \"position\": \"Senior Accountant\",\n                    \"description\": \"Complete maintenance of the Design Center General Ledger. Prepared, reviewed and submitted accurate financial reports (monthly, quarterly and annually). Compiled detailed annual plan schedules in conformity with US GAAP and established corporate guidelines. Provided account analysis and miscellaneous reports to plant controllers, department managers, and VP’s of Finance. Translated financial statements from foreign currency to U.S. dollars. Developed and managed $1.8 million…\"\n                },\n                {\n                    \"hiredDate\": \"1993-01-01\",\n                    \"leaveDate\": \"1996-01-01\",\n                    \"company\": \"Waste Management, Inc.\",\n                    \"position\": \"Staff Accountant\",\n                    \"description\": \"Primarily involved in monthly, quarterly and yearly close of the Midwest Region (comprising four states and Ontario, Canada). Implemented account reconciliation standards for all divisions. Involved in yearly budget preparation. Audited divisional Accounts Receivable and Cash Accounts. Assisted divisional controllers with day-to-day operations when needed.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"B.SBusiness Administration; Accounting\"\n                },\n                {\n                    \"title\": \"University of Phoenix\",\n                    \"subTitle\": \"MastersBusiness Administration\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1676128653296,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Process Improvement\",\n                \"Microsoft Office\",\n                \"Management\",\n                \"Microsoft Excel\",\n                \"Leadership\",\n                \"Microsoft Word\",\n                \"PowerPoint\",\n                \"Outlook\",\n                \"HTML\",\n                \"Real Estate Transactions\",\n                \"Variance Analysis\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 10483,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"BEE6C40E4086C8ED23DF642850B103D7\",\n            \"canonical\": \"https://www.linkedin.com/in/amitchoudhury\",\n            \"fullname\": \"Amit Choudhury\",\n            \"headline\": \"#Mobility #Cross-Domain #System #Safety #Security\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4D03AQF3SPcMX5Q0Yg/profile-displayphoto-shrink_800_800/0/1601863149028?e=2147483647&v=beta&t=9l1HlzxL0MdvTUzozNuTcgb-0g25PsVgCUjEmNAPt8I\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/amitchoudhury\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Robert Bosch GmbH\",\n                    \"position\": \"Sr Functional Safety Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2022-03-01\",\n                    \"leaveDate\": \"2022-07-01\",\n                    \"company\": \"Argo AI\",\n                    \"position\": \"System Safety Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2019-09-01\",\n                    \"leaveDate\": \"2021-12-01\",\n                    \"company\": \"Visteon Corporation\",\n                    \"position\": \"ADAS System Architect\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2017-06-01\",\n                    \"leaveDate\": \"2019-09-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Functional Safety, Cyber Security Architect, ADAS Systems\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2015-02-01\",\n                    \"leaveDate\": \"2017-06-01\",\n                    \"company\": \"ZF Friedrichshafen AG\",\n                    \"position\": \"Principal Systems Engineer, ADAS Systems\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2014-04-01\",\n                    \"leaveDate\": \"2015-01-01\",\n                    \"company\": \"Hella KGaA Hueck & Co.\",\n                    \"position\": \"Sr. Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2012-11-01\",\n                    \"leaveDate\": \"2014-03-01\",\n                    \"company\": \"ADVICS NA\",\n                    \"position\": \"Senior Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2011-05-01\",\n                    \"leaveDate\": \"2012-11-01\",\n                    \"company\": \"ESG GmbH\",\n                    \"position\": \"Senior Systems Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2011-05-01\",\n                    \"leaveDate\": \"2012-11-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"AUTOSAR Specialist Engineer (Contract)\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1998-01-01\",\n                    \"leaveDate\": \"2011-05-01\",\n                    \"company\": \"Renesas Electronics Corporation\",\n                    \"position\": \"Staff Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1996-01-01\",\n                    \"leaveDate\": \"1997-01-01\",\n                    \"company\": \"Cigital\",\n                    \"position\": \"Software Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1994-01-01\",\n                    \"leaveDate\": \"1997-01-01\",\n                    \"company\": \"Silicon Interfaces\",\n                    \"position\": \"VLSI Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1994-01-01\",\n                    \"leaveDate\": \"1996-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Software Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1990-01-01\",\n                    \"leaveDate\": \"1994-01-01\",\n                    \"company\": \"Tata Telecom Limited\",\n                    \"position\": \"Senior Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [\n                \"Bengali\",\n                \"English\",\n                \"Hindi\",\n                \"Spanish\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Government Engineering College, Jabalpur\",\n                    \"subTitle\": \"BSEE\"\n                },\n                {\n                    \"title\": \"Rani Durgavati Vishwavidyalaya\",\n                    \"subTitle\": \"BSEE\"\n                },\n                {\n                    \"title\": \"St. Aloysius HS School\",\n                    \"subTitle\": \"Higher Secondary Certificate\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1676125856101,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am an Open Networker. I accept all invites. Academia, Industry, Science and Humanities are truly welcome! My intentions and goals with LinkedIN profile: Connect and Collaborate. To leverage each other via knowledge acquisition (as much allowed without violating mutual employers contract). Information age is about creating values with cross functional knowledge. This is truly transforming the industrial age products with increasingly iterative & integrated level of analysis of holistic system and synthesis of its optimal components. My specific area are: - Product System Safety — ISO 26262, SOTIF - System Engineering - Electronic System Level Modeling and Simulation -- Model Based Development -- Model Driven Architecture -- Distributed System Level Prototype -- ECU Virtual Prototype - GENIVI, ANDROID - Standardized Platform SW for Embedded Applications for Automotive, Mobile Infotainment and Industrial. -- Product-line Methodology and Development Tooling - Drumming: Bongo, Cajon (Amateur Level) - Languages and Cuisine (Amateur Level)\",\n            \"skills\": [\n                \"Embedded Systems\",\n                \"Embedded Software\",\n                \"Microcontrollers\",\n                \"Software Engineering\",\n                \"Simulations\",\n                \"Electronics\",\n                \"Automotive\",\n                \"Software Development\",\n                \"ASIC\",\n                \"Programming\",\n                \"Systems Engineering\",\n                \"Powertrain\",\n                \"Debugging\",\n                \"ARM\",\n                \"System Architecture\",\n                \"RF\",\n                \"VLSI\",\n                \"Digital Signal Processors\",\n                \"Security\",\n                \"Simulation\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11546,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"9678B9B51F375F938CECF51F4E76F128\",\n            \"canonical\": \"https://www.linkedin.com/in/jeffreysbeckett\",\n            \"fullname\": \"Jeff Beckett\",\n            \"headline\": \"Senior Consultant at Maven Wave, an Atos Company\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"information technology and services\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQH7K00oh6ekOQ/profile-displayphoto-shrink_800_800/0/1523039148250?e=2147483647&v=beta&t=ahSiGSJzIKxCP4rbjs7lnsOyyWty1wwJLw2V0XoK1gs\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/jeffreysbeckett\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-06-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Maven Wave Partners LLC\",\n                    \"position\": \"Senior Consultant\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-10-01\",\n                    \"leaveDate\": \"2021-06-01\",\n                    \"company\": \"DocNetwork\",\n                    \"position\": \"AWS Engineer\",\n                    \"description\": \"I currently serve as DocNetworks DevOps Engineer to help manage their growing Infrastructure in AWS. My current Projects for this year include: - Automating Infrastructure Deployments and scaling via Terraform and CloudFormation - Manage and Maintain our current application performance with Prometheus and Grafana - We run a good mix of Linux, MySQL, Redis, and use Docker Containers extensively - Create better deployment pipelines with GitLab, GitHub, Jenkins -…\"\n                },\n                {\n                    \"hiredDate\": \"2018-03-01\",\n                    \"leaveDate\": \"2019-10-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Virtualization Engineer\",\n                    \"description\": \"Currently, I serve Ford Motor Companys Virtualization Engineering team as a Subject Matter Expert focusing in VM performance and optimization. My recent work has been to lead the design and deployment of Turbonomic/Cisco Workload Optimization Manager across 3 data centers and Microsoft Azure. As a senior member of my team, I am helping to drive the integration of Agile and DevOps methodologies in to our workflows so we can support the current and future needs of Ford Motor Company.\"\n                },\n                {\n                    \"hiredDate\": \"2015-04-01\",\n                    \"leaveDate\": \"2019-10-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Agile Cloud Engineer - VMWARE Engineering team\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2017-10-01\",\n                    \"leaveDate\": \"2018-03-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Team Lead - Agile Cloud Engineering\",\n                    \"description\": \"I served as the Team Lead of FoMoCos Agile Hosting Infrastructure Cloud for the final six months it was funded for. During this time, my team of four DevOps engineers bolstered new IT initiatives by enabling teams to deploy new development environments within hours. Our engineers also served as SMEs when teams needed knowledge gaps filled. At the sunset of the project we had deployed ~5700 virtual machines through HP Cloud Service Automation toolkit. Windows 2012 R2 servers could…\"\n                },\n                {\n                    \"hiredDate\": \"2014-09-01\",\n                    \"leaveDate\": \"2015-03-01\",\n                    \"company\": \"Kaufman Financial Group\",\n                    \"position\": \"Systems Engineer. VMware and Storage\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2011-07-01\",\n                    \"leaveDate\": \"2014-06-01\",\n                    \"company\": \"Logicalis Group\",\n                    \"position\": \"Data Center Services Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2005-12-01\",\n                    \"leaveDate\": \"2011-07-01\",\n                    \"company\": \"Thomson Reuters\",\n                    \"position\": \"Web Services Administrator\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2004-08-01\",\n                    \"leaveDate\": \"2005-12-01\",\n                    \"company\": \"The University of Toledo\",\n                    \"position\": \"Desktop Support Technician - Level 2\",\n                    \"description\": \"Maintained and managed Desktops and Servers throughout the university faculty and staff. Ran desktop migrations and also created specifications for new hardware. Served as a main point of contact for technical issues that could not be handled via phone or email.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Toledo\",\n                    \"subTitle\": \"Bachelor's DegreeInformation Technology, Business Economics3.4 GPA\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1673906726763,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Specialties Include: HP Cloud Service Automation HP Operations Orchestration HP Server Automation HP DMA SUSE 11/12 Administration Windows Server 2003/200R28/2012R2 EMC VNX EMC Avamar EMC Recoverpoint Data retention and disaster recovery VMware 6.5/5.5/5.0 server virtualization VMware Site Recovery Manager Powershell scripting Double-Take Availability replication IBM XIV storage SolarWinds Orion Dell Compellent and Equallogic Sharepoint VMturbo/Turbonomic virtualization management RHEL Administration\",\n            \"skills\": [\n                \"Windows Server\",\n                \"VMware\",\n                \"EMC Avamar\",\n                \"EMC Recoverpoint\",\n                \"Powershell\",\n                \"Yottabyte backup solution\",\n                \"Linux server administration\",\n                \"Citrix Xenapp Administration\",\n                \"EMC Storage\",\n                \"Linux System Administration\",\n                \"Citrix Metaframe\",\n                \"Servers\",\n                \"Troubleshooting\",\n                \"RecoverPoint\",\n                \"Data Center\",\n                \"Technical Support\",\n                \"VMware ESX\",\n                \"Disaster Recovery\",\n                \"Virtualization\",\n                \"Software Documentation\",\n                \"Cisco Technologies\",\n                \"Citrix\",\n                \"Microsoft Exchange\",\n                \"Active Directory\",\n                \"SAN\",\n                \"DNS\",\n                \"Hyper-V\",\n                \"Hardware\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6619,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"F305E05E1711B631A954275361832797\",\n            \"canonical\": \"https://www.linkedin.com/in/michaelcrawford1975\",\n            \"fullname\": \"Michael Crawford\",\n            \"headline\": \"Manufacturing Chief Engineer, Powertrain - Global/ North America\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/michaelcrawford1975\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Stellantis\",\n                    \"position\": \"Manufacturing Chief Engineer, Powertrain - Director, Global/North America\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-05-01\",\n                    \"leaveDate\": \"2021-08-01\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Director - Deputy Plant Manager Toledo Assembly Complex\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2018-02-01\",\n                    \"leaveDate\": \"2019-05-01\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Plant Manager Trenton North Engine Plant\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2014-05-01\",\n                    \"leaveDate\": \"2018-01-01\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Director Program Management and Manufacturing Engineering (ME) Engine Programs\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2013-06-01\",\n                    \"leaveDate\": \"2014-05-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Manufacturing Manager - Trenton Engine Complex\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2011-01-01\",\n                    \"leaveDate\": \"2013-05-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Sr. Manufacturing Engineering Manager\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2004-07-01\",\n                    \"leaveDate\": \"2011-11-01\",\n                    \"company\": \"GEMA\",\n                    \"position\": \"Manufacturing Engineering Manager\",\n                    \"description\": \"Responsible for all process engineering, project management, long term and short term problem solving Managed six Lead engineers for all Machining and Assembly. Responsible for development of all engineers, 32 Electrical and Mechanical Responsible for maintenance improvement projects, scheduling, implementation and execution. Developed training program for non-experienced engineers Complete Reactive Green belt projects (3 Problem Solving, 1 Decision Making) Lead…\"\n                },\n                {\n                    \"hiredDate\": \"2004-04-01\",\n                    \"leaveDate\": \"2004-07-01\",\n                    \"company\": \"North Star BlueScope Steel, LLC\",\n                    \"position\": \"Melt Shop EAF Engineer\",\n                    \"description\": \"Managing multiple studies for evacuation control Process and capability control implementation on EAF – furnace optimization & emission optimization\"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2004-04-01\",\n                    \"company\": \"North Star Steel Michigan\",\n                    \"position\": \"Rolling Mill Maintenance General Foreman\",\n                    \"description\": \"Rolling Mill Maintenance General Supervisor - 10/02 – 4/04 ******************************************************************** Direct supervision of seven salaried supervisors & technicians and forty UAW skilled trades personnel Managed $6M maintenance budget, CMMS utilization as well as Predictive Maintenance Technology implementation Responsible for Environmental, Safety and ISO/QS compliance. Reduced Downtime %50 while also reducing total labor hours. IBM Greenbelt &…\"\n                },\n                {\n                    \"hiredDate\": \"1997-06-01\",\n                    \"leaveDate\": \"2000-01-01\",\n                    \"company\": \"North Star Steel Arizona\",\n                    \"position\": \"Rolling Mill Electrical Maintenance Supervisor\",\n                    \"description\": \"High Performance Team management environment at a Greenfield plant Direct supervision of 12 Electrical Technicians. Responsible for the Electrical Maintenance of the entire Rolling Mill – Rod and Rebar, Water Treatment Plant, and 5 Mill-duty overhead cranes. Worked closely with ABB to improve process and eliminate recurrent control problems responsible of large amounts of downtime. Electrical Downtime was reduced over %500 during my supervision. Melt Shop Electrical Supervisor -…\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"The University of Toledo\",\n                    \"subTitle\": \"BSEEElectrical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1673906218989,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Director of Manufacturing Director of Manufacturing Engineering Plant Management Powertrain Vehicle Assembly Process and Maintenance Engineering Lean Manufacturing Specialties: University of Michigan Lean Manufacturing Certification World Class Manufacturing - Auditor\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 9298,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"xzF9_3gBh0Jh8fFlHtVW\",\n            \"canonical\": \"https://www.linkedin.com/in/pengfeiren\",\n            \"fullname\": \"Pengfei Ren\",\n            \"headline\": \"Senior Software Engineer at Aurora\",\n            \"location\": \"Warren, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQHMun44cbjasw/profile-displayphoto-shrink_800_800/0/1593470773798?e=2147483647&v=beta&t=-cYRzYUxH7zYMkY-jfccPysS39B8UbOl8frj9gqLdxo\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/pengfeiren\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-09-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Aurora Health Care\",\n                    \"position\": \"Senior Software Engineer, Perception\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2020-07-01\",\n                    \"leaveDate\": \"2022-09-01\",\n                    \"company\": \"Argo AI\",\n                    \"position\": \"Senior Software Engineer, Perception\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2019-02-01\",\n                    \"leaveDate\": \"2020-07-01\",\n                    \"company\": \"Horizon Robotics\",\n                    \"position\": \"Applied AI Researcher, Perception\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2018-03-01\",\n                    \"leaveDate\": \"2019-02-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Research Engineer, Perception & Localization\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Chinese\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"Master's degreeComputer Science3.9/4.0\"\n                },\n                {\n                    \"title\": \"Chongqing University\",\n                    \"subTitle\": \"Bachelor's degreeAutomation Engineering/Robotics\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1673905344794,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.5144566,\n                    \"lon\": -83.01465259999999\n                },\n                \"formattedAddress\": \"Warren, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 1782,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"wh9PN3kB-DOZvg69apfM\",\n            \"canonical\": \"https://www.linkedin.com/in/chetna-sinha-5958a913\",\n            \"fullname\": \"Chetna Sinha\",\n            \"headline\": \"Director- HR Technology and Workforce Analytics at Beaumont Health\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQGCiFJiCm_liQ/profile-displayphoto-shrink_800_800/0/1603472780385?e=2147483647&v=beta&t=0LQHUH_2CU0hMtRmjGwpR-dtYxLGxjzofrmr-vwrFmI\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/chetna-sinha-5958a913\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2019-04-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Beaumont Health\",\n                    \"position\": \"Director- HR Technology and Workforce Analytics\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-01-01\",\n                    \"leaveDate\": \"2019-04-01\",\n                    \"company\": \"Henry Ford Hospital and Health Network\",\n                    \"position\": \"Director- HR Technology\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2013-04-01\",\n                    \"leaveDate\": \"2018-12-01\",\n                    \"company\": \"Henry Ford Hospital and Health Network\",\n                    \"position\": \"Manager - HR Technology\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2008-03-01\",\n                    \"leaveDate\": \"2008-11-01\",\n                    \"company\": \"Computer Sciences Corporation\",\n                    \"position\": \"Senior Manager\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2006-03-01\",\n                    \"leaveDate\": \"2007-12-01\",\n                    \"company\": \"TechTeam Global Inc.\",\n                    \"position\": \"Peoplesoft Functional Consultant\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2003-06-01\",\n                    \"leaveDate\": \"2004-04-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"PeopleSoft Team Lead\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2000-08-01\",\n                    \"leaveDate\": \"2002-07-01\",\n                    \"company\": \"Dow Inc.\",\n                    \"position\": \"Lead Developer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1996-01-01\",\n                    \"leaveDate\": \"1999-06-01\",\n                    \"company\": \"KPMG International\",\n                    \"position\": \"Senior Consultant\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [],\n            \"lastScraperUpdateTime\": 1673904939020,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Innovative and experienced leader in HCM solutions across different industries with a business focus on realignment and process improvement. Extensive experience in implementation of Human Capital Management (HR/Payroll/Total Rewards/Recruiting/Performance/Talent) systems. Successful track record of building, implementing and supporting strategic solutions for a dynamic enterprise. Proven ability to provide functional (subject matter) expertise in all areas of HR systems, lead projects through design, development and implementation in alignment with the organization needs. Led several PeopleSoft HCM implementations and other ERP solutions through implementation, upgrades and integrations, while guiding the teams through major project milestones. Strong leader with exceptional people skills who can effectively lead project teams and deliver consistently on time and budget. Strong technical competencies in PeopleSoft, databases and software development who has also worked in emerging technology areas like machine learning, AI, neural networks and predictive analytics. Specialties: * Strategic Planning and execution * Technology Implementation/migration * HR Transformation, Complex ERP Implementation * PeopleSoft, Workday, HR Analytics, Databases * Change Management * HR M & A\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6682,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"Xp0Bym8BFVkhVdRhjdhl\",\n            \"canonical\": \"https://www.linkedin.com/in/christinachateauvert\",\n            \"fullname\": \"Christina Chateauvert, Ph.D.\",\n            \"headline\": \"Human Experience Advocate I Compassionate People Partner I Design Thinker\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"human resources\",\n            \"picture\": \"https://media-exp1.licdn.com/dms/image/C4E03AQGjKqarCJ3WOA/profile-displayphoto-shrink_800_800/0/1600222783656?e=2147483647&v=beta&t=OvgJjm-Lo9XVAmQfJd7_ReN-FNT82rkGgJ_a4DQHers\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/christinachateauvert\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-12-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Allstate\",\n                    \"position\": \"Senior Manager, People/Employee Experience\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2021-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Yes, And Coaching Institute\",\n                    \"position\": \"Director of Learner Experience\",\n                    \"description\": \"We have a unique opportunity ahead of us to help the world end a cycle of stress and burnout as it recovers from the Covid pandemic. We believe that coaching with a Yes, And mindset - with confidence, flexibility and creativity - has the distinctive ability to help accelerate our emergence from this time with resilience, purpose and joy.\"\n                },\n                {\n                    \"hiredDate\": \"2020-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Institute for Corporate Productivity (i4cp)\",\n                    \"position\": \"Chair of Employee Experience Exchange\",\n                    \"description\": \"Chair who sets the agenda and direction for the Employee Experience Exchange. Our exchange meets every other month to exchange best practices and brainstorm next practices that trailblaze my industry. As co-chair, I lead a community of diverse talent and culture leaders aimed at exploring how to design, operationalize, and scale the moments, attitudes, and behaviors with a purpose to shape a satisfying employee experience. This exchange provides the space to share best practices and…\"\n                },\n                {\n                    \"hiredDate\": \"2019-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"c.c.design LLC\",\n                    \"position\": \"Founder and Chief Human Experience Officer\",\n                    \"description\": \"Care & Curiosity [consulting in and coaching with design thinking]. Also facilitate individual and small group Dare to Lead™ coaching experiences.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2015-01-01\",\n                    \"leaveDate\": \"2022-04-01\",\n                    \"company\": \"Wayne State University\",\n                    \"position\": \"Adjunct Instructor, Learning Design and Technology\",\n                    \"description\": \"Redesigned and facilitated courses in the Learning Design and Technology Graduate Program that included the Design Thinking & Knowledge and the Capstone Course in Learning Design and Technology. Assisted students in using design thinking methodology to craft learning experiences and enhance improvement initiatives through empathic design and developing comprehensive design plans.\"\n                },\n                {\n                    \"hiredDate\": \"2019-06-01\",\n                    \"leaveDate\": \"2021-11-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Talent Programs Manager, Employee Experience\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2018-03-01\",\n                    \"leaveDate\": \"2019-06-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Design Thinking Learning Lead\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2016-04-01\",\n                    \"leaveDate\": \"2018-03-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"IT User Experience Strategist, Digital Worker\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2014-11-01\",\n                    \"leaveDate\": \"2016-04-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"End User Engagement Lead, Digital Worker\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2018-10-01\",\n                    \"leaveDate\": \"2020-12-01\",\n                    \"company\": \"the SheHive\",\n                    \"position\": \"Partner\",\n                    \"description\": \"The SheHive provides classes, coaching, and community for women focused on connection and self-empowerment.\"\n                },\n                {\n                    \"hiredDate\": \"2017-07-01\",\n                    \"leaveDate\": \"2017-12-01\",\n                    \"company\": \"IDEO U\",\n                    \"position\": \"Alumni Coach, Global Network of Coaches, Fellowship\",\n                    \"description\": \"Alumni Coach for Insights for Innovation and From Ideas to Action\"\n                },\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2014-11-01\",\n                    \"company\": \"Blue Cross Blue Shield Association\",\n                    \"position\": \"Talent Management Specialist, Human Performance\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2010-08-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"Blue Cross Blue Shield Association\",\n                    \"position\": \"Instructional Designer, Sales Force Development\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"Doctor of Philosophy - PhDLearning Design and Technology\"\n                },\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"MTDInstructional Design\"\n                },\n                {\n                    \"title\": \"Emerson College\",\n                    \"subTitle\": \"MAWriting and Publishing\"\n                },\n                {\n                    \"title\": \"Olivet College\",\n                    \"subTitle\": \"BAEnglish and Communications\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1672001767760,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Inspired by the quote, “she designed a life she loved,” I’ve created a life as a champion of human experience, a compassionate people partner, and a design thinker. My design and implementation of employee experiences ensures that skilled, engaged talent can be utilized at the right time in the right place, resulting in a work atmosphere that cultivates personal and professional growth. Driving successful business transformation is what I do best. To do this, I work side-by-side with leadership, shifting mindsets, asking the tough questions, and developing and implementing creative solutions to solve complicated challenges through people, process, and technology. I enjoy connecting disparate people and ideas to solve challenging problems that previously seemed insurmountable or to revisit a business process that has “always been done this way” for improvements. My expertise lies in unleashing the power of people by creating working environments that prioritize employee support, learning and innovation, and ensuring that employees are challenged to grow personally and professionally to contribute in meaningful ways that positively impact the business. I am entrepreneurial-minded. I am a learner. I am a researcher. I am a connector. Please feel free to contact me with any thoughts or questions about my work - I am always interested in making new professional acquaintances.\",\n            \"skills\": [\n                \"Employee Experience\",\n                \"Leadership\",\n                \"Talent Management\",\n                \"Human-Centered Design\",\n                \"Instructional Design\",\n                \"Blended Learning\",\n                \"Learning Management\",\n                \"Onboarding\",\n                \"Performance Management\",\n                \"Succession Planning\",\n                \"Coaching\",\n                \"Leadership Development\",\n                \"Employee Engagement\",\n                \"Public Speaking\",\n                \"Facilitation\",\n                \"Training\",\n                \"Training Delivery\",\n                \"Instructor-led Training\",\n                \"Organizational Development\",\n                \"Organizational Effectiveness\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 4529,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"AeRSSYUBrAcoFWo16PTn\",\n            \"canonical\": \"https://www.linkedin.com/in/renee-bowers-bba-4ab84394\",\n            \"fullname\": \"Renee Bowers BBA\",\n            \"headline\": \"Rental Assistance Counselor at United Community Housing Coalition\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media-exp1.licdn.com/dms/image/D5603AQEBYYRV4D6SZA/profile-displayphoto-shrink_800_800/0/1669108521849?e=2147483647&v=beta&t=h95FkUAXnwO1wa7uvdw1y3C7IW5tcKujy3E7emRd0ek\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/renee-bowers-bba-4ab84394\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-06-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"United Community Housing Coalition\",\n                    \"position\": \"Rental Assistance Counselor\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2021-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Advanced Clinical\",\n                    \"position\": \"Operations Assistant\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-02-01\",\n                    \"leaveDate\": \"2019-10-01\",\n                    \"company\": \"Volunteer caregiver services in Metro Detroit Area Hospice of Michigan recipient\",\n                    \"position\": \"Seeking new career opportunities.\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2016-11-01\",\n                    \"leaveDate\": \"2018-10-01\",\n                    \"company\": \"Volunteer caregiver services in Metro Detroit Area Hospice of Michigan recipient\",\n                    \"position\": \"Volunteer Caregiver\",\n                    \"description\": \"• Entrusted to financial management (banking, bill payments and legal matters) • Schedule and transport to business and physician appointments • Provide medication disbursement, meals, personal care, prescription refills, hygiene and domestic services • Support with community activities • Manage caregiver shift rotation to provide around the clock care • Provide transportation for relief assistance\"\n                },\n                {\n                    \"hiredDate\": \"2016-10-01\",\n                    \"leaveDate\": \"2016-12-01\",\n                    \"company\": \"Toyota Tsusho America\",\n                    \"position\": \"Sales Assistant\",\n                    \"description\": \"• Monitored customer forecast, actual delivered volume and open POs • Facilitated purchase order activity to secure on-time delivery • Processed for payment broker delivery invoices in compliance to customs and hazmat policies • Reported buy/sell pricing discrepancies between customer /vendor documents\"\n                },\n                {\n                    \"hiredDate\": \"2014-11-01\",\n                    \"leaveDate\": \"2014-12-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Design Release Engineer Assistant\",\n                    \"description\": \"• Wrote miscellaneous material type work orders and track through implementation on to production • Escalated unresolved and high-risk issues • Assisted DRE’s with creating BOM orders • Communicated with eSOR and ePeer approvers on status up through approval to facilitate timely sign-offs. • Issued part shippers, pick-up and delivered parts to GM and supplier locations • Monitored and ensure DRE codes are up to date on all released part numbers • Maintained detailed time log…\"\n                },\n                {\n                    \"hiredDate\": \"2012-10-01\",\n                    \"leaveDate\": \"2014-03-01\",\n                    \"company\": \"Severstal\",\n                    \"position\": \"Traffic Coordinator\",\n                    \"description\": \"• Experienced in negotiating freight rates and carrier contracting • Monitored, tracked and maximize shipments while minimizing cost per transit • Customer liaison to carriers, sales team and traffic manager • Coordinated flow of inbound raw materials via rail and vessel • Experienced in dispatching steel bands and coils • Managed planning and scheduling outbound shipments to processor • Processed freight bill exceptions generated via third party vendor\"\n                },\n                {\n                    \"hiredDate\": \"2007-08-01\",\n                    \"leaveDate\": \"2011-07-01\",\n                    \"company\": \"Convergys\",\n                    \"position\": \"OnStar-Customer Service Problem Resolution\",\n                    \"description\": \"Call intake Sales and services Account management Escalations Monitoring Point resolutions Maintained sales quotas\"\n                },\n                {\n                    \"hiredDate\": \"2001-11-01\",\n                    \"leaveDate\": \"2005-07-01\",\n                    \"company\": \"RadioShack\",\n                    \"position\": \"District Sales Administrator\",\n                    \"description\": \"Manage district office District Manager Assistant Recruiting and staffing Coaching and developing sales team Process hire pack Perform terminations Data systems management\"\n                },\n                {\n                    \"hiredDate\": \"1975-09-01\",\n                    \"leaveDate\": \"2001-01-01\",\n                    \"company\": \"Kmart International Headquarters\",\n                    \"position\": \"Logistics Event Planner\",\n                    \"description\": \"• Managed merchandise inventory disposition for 14 distribution centers, over 2000 stores world-wide • Supervised seasonal clean-outs using WMS, AS400 and Planner Workbench, which generated annual savings over $1,000,000 • Planned seasonal and promotional events via coordination with merchandisers, in-store dates, planned quantities and vendor information • Expedited time-sensitive domestic and import shipments via Import 2000 and EDI 856/ASN’s, which required 24 hour resolution on 90%…\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Davenport University\",\n                    \"subTitle\": \"Bachelor's DegreeBusiness Administration\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1671972429165,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Creative and energetic professional skilled in Accounting, Administration, Customer Service and Logistics. I am dependable and committed to responsibility. I am always in a position to learn.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 14204,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"KYpGSYUBlI4_KugK120n\",\n            \"canonical\": \"https://www.linkedin.com/in/ramiro-pinon\",\n            \"fullname\": \"Ramiro Pinon\",\n            \"headline\": \"Director (Technical Track) - Electric Propulsion Systems\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://static-exp1.licdn.com/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/ramiro-pinon\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-07-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Aviation & Aerospace Co. - Confidential\",\n                    \"position\": \"Director (Technical Track) - Electric Propulsion Systems\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2022-02-01\",\n                    \"leaveDate\": \"2022-07-01\",\n                    \"company\": \"ELMS: Electric Last Mile Solutions\",\n                    \"position\": \"Senior Manager - Electric Propulsion Systems Validation (Strategy & Execution)\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2021-07-01\",\n                    \"leaveDate\": \"2022-02-01\",\n                    \"company\": \"ELMS: Electric Last Mile Solutions\",\n                    \"position\": \"Manager - Power Electronics Systems Application\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2021-02-01\",\n                    \"leaveDate\": \"2021-07-01\",\n                    \"company\": \"Froude, Ltd/Inc | Dynamometer Test Systems\",\n                    \"position\": \"Technical Leader - Electric Motor & Power Electronics Technology (Strategy)\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2020-02-01\",\n                    \"leaveDate\": \"2021-02-01\",\n                    \"company\": \"Mercedes-Benz Research & Development North America, Inc.\",\n                    \"position\": \"Senior Electric Motor Controls & Calibrations Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2017-01-01\",\n                    \"leaveDate\": \"2020-01-01\",\n                    \"company\": \"Stellantis (Previously FCA)\",\n                    \"position\": \"Electric Motor Controls & Calibrations Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2014-01-01\",\n                    \"leaveDate\": \"2016-12-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Research Scientist\",\n                    \"description\": \"Ford Motor Co. Research & Advanced Engineering - Precision Systems Design Laboratory (U of M) - Investigation of Gasoline Direct Injection (GDI) Fuel Injectors - Novel High Performance Solenoid Actuated GDI Fuel Injector Designs (Patent)\"\n                },\n                {\n                    \"hiredDate\": \"2013-09-01\",\n                    \"leaveDate\": \"2016-12-01\",\n                    \"company\": \"University of Michigan\",\n                    \"position\": \"Graduate Researcher\",\n                    \"description\": \"Precision Systems Design Laboratory - Graduate Instructor - Mechatronics Laboratory Graduate Course - Diaphragm Flexure Design improvements applied to Novel Moving Magnet Actuators - Robotic Instrument Tracking Endo-illuminator for Intraocular Surgeries (Publication)\"\n                },\n                {\n                    \"hiredDate\": \"2012-06-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"Massachusetts Institute of Technology\",\n                    \"position\": \"Undergraduate Researcher\",\n                    \"description\": \"- BioInstrumentation Laboratory - MSRP Program\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Ph.D.Mechanical Engineering - Advanced Controls / E-motors / A.I. (M.L. / Deep Learning) / FEA\"\n                },\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"M.Sc.Mechanical Engineering - Controls / Design\"\n                },\n                {\n                    \"title\": \"The University of Texas at El Paso\",\n                    \"subTitle\": \"B.Sc.(Honors)Mechanical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1671971640677,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"“Driven Leader, and Subject Matter Expert, with years of experience in both Global/Industry-Leading-Companies and Start-Ups/Niche-Product-Companies, experienced in directing teams, programs, and projects, advancing from beginning to end the Creation and Development of World-Class Technology in the areas of Electric Motors, Power electronics (AC Inverters, On-Board Chargers, EV Chargers), HV Batteries, and Advanced Propulsion Systems for the e-Mobility, Automotive, Aerospace, EV, and Testing industries. In Charge of Leading, Defining, and Executing Strategy involving a vast array of tasks crucial in development: Engineering Design (Alpha/Beta/Gamma stages), Testing (Test System Creation, Test-article calibration, DVP design, DMFEA, and End-of-line-testing), Simulation (MATLAB/Simulink, Hardware-in-the-Loop, Software-in-the-loop), and Algorithm Design (C Code, Model-Based-Code). Subject Matter Expert on other areas including Artificial Intelligence (Deep learning/Machine learning/Neural Networks) and Advanced Control strategies. Example-driven leadership style with strong emphasis on Team Development.”\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 3401,\n            \"selectedAt\": null\n        }\n    ],\n        \"count\": 23253\n}"}],"_postman_id":"03f036fb-d609-437d-a67f-e291ebb310fa"},{"name":"Long Paged List of Prospects","event":[{"listen":"test","script":{"id":"27aaea54-c84b-4dd3-bef6-1c3e37eb965c","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()).to.have.property('selectedCount');","pm.expect(pm.response.json()).to.have.property('highlights');","pm.expect(pm.response.json()).to.have.property('data');","pm.expect(pm.response.json()).to.have.property('count');","pm.expect(pm.response.json()['highlights'][0]).to.have.property('fields');","pm.expect(pm.response.json()['highlights'][0]).to.have.property('id');","","pm.expect(pm.response.json()['data'][0]).to.have.property('id');","pm.expect(pm.response.json()['data'][0]).to.have.property('canonical');","pm.expect(pm.response.json()['data'][0]).to.have.property('fullname');","pm.expect(pm.response.json()['data'][0]).to.have.property('headline');","pm.expect(pm.response.json()['data'][0]).to.have.property('location');","pm.expect(pm.response.json()['data'][0]).to.have.property('industry');","pm.expect(pm.response.json()['data'][0]).to.have.property('picture');","pm.expect(pm.response.json()['data'][0]).to.have.property('social');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('youtube');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('github');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('wordpress');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('facebook');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('foursquare');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('tumblr');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('google');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('personal');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('instagram');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('twitter');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('vimeo');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('flickr');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('blogspot');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('stackoverflow');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('stackexchange');","pm.expect(pm.response.json()['data'][0]['social']).to.have.property('linkedIn');","pm.expect(pm.response.json()['data'][0]).to.have.property('active');","pm.expect(pm.response.json()['data'][0]).to.have.property('trackedByUser');","pm.expect(pm.response.json()['data'][0]).to.have.property('likedByUser');","pm.expect(pm.response.json()['data'][0]).to.have.property('experienceCurrentList');","// pm.expect(pm.response.json()['data'][1]['experienceCurrentList'][0]).to.have.property('hiredDate');","// pm.expect(pm.response.json()['data'][1]['experienceCurrentList'][0]).to.have.property('leaveDate');","// pm.expect(pm.response.json()['data'][1]['experienceCurrentList'][0]).to.have.property('company');","// pm.expect(pm.response.json()['data'][1]['experienceCurrentList'][0]).to.have.property('position');","// pm.expect(pm.response.json()['data'][1]['experienceCurrentList'][0]).to.have.property('description');","pm.expect(pm.response.json()['data'][0]).to.have.property('experiencePrevious');","","pm.expect(pm.response.json()['data'][0]).to.have.property('languagesList');","pm.expect(pm.response.json()['data'][0]).to.have.property('educationList');","// pm.expect(pm.response.json()['data'][0]['educationList'][0]).to.have.property('title');","// pm.expect(pm.response.json()['data'][0]['educationList'][0]).to.have.property('subTitle');","pm.expect(pm.response.json()['data'][0]).to.have.property('lastScraperUpdateTime');","pm.expect(pm.response.json()['data'][0]).to.have.property('military');","pm.expect(pm.response.json()['data'][0]).to.have.property('clearance');","pm.expect(pm.response.json()['data'][0]).to.have.property('about');","pm.expect(pm.response.json()['data'][0]).to.have.property('skills');","// loc","pm.expect(pm.response.json()['data'][0]).to.have.property('loc');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('geo');","pm.expect(pm.response.json()['data'][0]['loc']['geo']).to.have.property('lat');","pm.expect(pm.response.json()['data'][0]['loc']['geo']).to.have.property('lon');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('formattedAddress');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('country');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('state');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('cbsa');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('country_code');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('state_code');","pm.expect(pm.response.json()['data'][0]).to.have.property('experienceInDays');","pm.expect(pm.response.json()['data'][0]).to.have.property('selectedAt');","})"],"type":"text/javascript"}}],"id":"4f1cd7cf-a230-4d6f-8443-1621a2a53d53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"searchParameters\": [\n            {\n                \"parameterValue\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"cbsa\"\n            },\n            {\n                \"parameterValue\": [\n                    \"AND\"\n                ],\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\"\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"general motors\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"ford\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"chrysler\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"NOT\",\n                \"parameterValue\": [\n                    \"NOT\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"general motors\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"ford\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"chrysler\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            }\n]\n}"},"url":"//supplyData/listDataApi/:page","description":"<p>This endpoint is another extension of the previous <a href=\"#list-of-prospects\">List of Prospects</a> endpoint. This endpoint returns the same information, but with 100k results divided into a maximum of 10 pages. Each page contains a maximum of 10k results; enter a whole number value 1-10 at the end of the path to return the 10k results associated with that page.</p>\n<p><em>UPDATE: Sending requests from one Bearer token to this endpoint must be spaced out to have</em> <em><strong>at least 10 seconds in between requests</strong></em>.</p>\n<p>Here is a description of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to use to create one.</p>\n<p><strong>Claro will show a maximum of 100k prospects per /listDataApi/ query. Replace :page at the end of the path with a whole number 1-10 to successfully return data.</strong></p>\n<p>Below is a sample query that will return prospects who live in Detroit that used to work at Ford, GM, or Chrysler and currently do not work at either of the three. This query has 41146 total results, so only 5 pages of data for this query are available using this endpoint, and the example shows page 1:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n\"searchParameters\": [\n            {\n                \"parameterValue\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ]\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"cbsa\"\n            },\n            {\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\"\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"general motors\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"ford\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"chrysler\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"NOT\",\n                \"parameterValue\": [\n                    \"NOT\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"general motors\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"ford\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"chrysler\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            }\n]\n}\n\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","listDataApi",":page"],"host":["/"],"query":[],"variable":[{"id":"a7ea2084-1bdc-45c2-a418-e60e60cca9a2","description":{"content":"<p>Page number [min: 1, max: 10] (Required)</p>\n","type":"text/plain"},"type":"string","value":"1","key":"page"}]}},"response":[{"id":"f21bad21-7d2a-48a6-a0aa-674a13157596","name":"Leaving the Automotive Industry in Detroit (long paged)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","type":"text","value":"{{token}}"}],"body":{"mode":"raw","raw":"{\n\"searchParameters\": [\n            {\n                \"parameterValue\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"cbsa\"\n            },\n            {\n                \"parameterValue\": [\n                    \"AND\"\n                ],\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\"\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"general motors\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"ford\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"chrysler\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"NOT\",\n                \"parameterValue\": [\n                    \"NOT\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"general motors\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"ford\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"chrysler\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            }\n]\n}"},"url":{"raw":"//supplyData/listDataApi/:page","host":["/"],"path":["supplyData","listDataApi",":page"],"variable":[{"id":"cdde6342-7958-499c-9b5e-bc03c2cf0f09","key":"page","value":"1","type":"string","description":"Page number [min: 1, max: 100] (Required)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Jul 2020 14:07:39 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"03d580515900001f21c90ec200000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5b029cc88b7b1f21-FRA"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"selectedCount\": 0,\n    \"data\": [\n        {\n            \"id\": \"8CAD5688DEF80C1773420873CC39BB38\",\n            \"canonical\": \"https://www.linkedin.com/in/lawrence-luca-0080138b\",\n            \"fullname\": \"Lawrence Luca\",\n            \"headline\": \"First Responder Police/Fire\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/D5603AQE1GiMNJ6uSeg/profile-displayphoto-shrink_800_800/0/1673750699530?e=2147483647&v=beta&t=gxA-YaOD4F11qorY79Ej59-OVfbu0MOAeRB8fGvknYk\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/lawrence-luca-0080138b\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": true,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Oakland County Sheriff Dept\",\n                    \"position\": \"Oakland County Sheriff Office\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2018-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"City of Troy\",\n                    \"position\": \"Fleet Mechanic\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2017-10-01\",\n                    \"leaveDate\": \"2023-06-01\",\n                    \"company\": \"City of Troy (Michigan)\",\n                    \"position\": \"Firefighter\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2022-01-01\",\n                    \"leaveDate\": \"2023-01-01\",\n                    \"company\": \"Bloomfield hills public saftey\",\n                    \"position\": \"Bloomfield hills public saftey\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2015-10-01\",\n                    \"leaveDate\": \"2018-02-01\",\n                    \"company\": \"Diesel doctors LLC\",\n                    \"position\": \"Chief Executive Officer\",\n                    \"description\": \"Business owner and operator.\"\n                },\n                {\n                    \"hiredDate\": \"2014-03-01\",\n                    \"leaveDate\": \"2015-10-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Diesel Technician\",\n                    \"description\": \"- Identify and determine parts required for repair of dissembled units - Perform all levels of preventative maintenance services - Identify warrantable repairs and document on repair order - Maintain work area appearance and safety - Road test Vehicles when necessary to diagnose malfunctions or to ensure that they are working properly -Use hand tools such as screwdrivers, pliers, wrenches, pressure gauges, and precision instruments, as well as power tools such as pneumatic Show more - Identify and determine parts required for repair of dissembled units - Perform all levels of preventative maintenance services - Identify warrantable repairs and document on repair order - Maintain work area appearance and safety - Road test Vehicles when necessary to diagnose malfunctions or to ensure that they are working properly -Use hand tools such as screwdrivers, pliers, wrenches, pressure gauges, and precision instruments, as well as power tools such as pneumatic wrenches, welding equipment, and jacks and hoists. - Inspect brake systems, steering mechanisms, wheel bearings, and other important parts to ensure that they are in proper operating condition. - Perform routine maintenance such as changing oil, checking batteries, and lubricating equipment and machinery. - Adjust and replace brakes, tighten bolts and screws, and reassemble equipment Show less\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Romanian\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Baker College of Owosso\",\n                    \"subTitle\": \"CertificationDiesel Mechanics Technology/Technician\"\n                },\n                {\n                    \"title\": \"University of Phoenix\",\n                    \"subTitle\": \"Associate's DegreeCriminal Justice/Police Science\"\n                },\n                {\n                    \"title\": \"Rochester high school 2000-2004\",\n                    \"subTitle\": \"-\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696160185119,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Do something good, it might change someone’s life!\",\n            \"skills\": [\n                \"Commercial Drivers License\",\n                \"Communication\",\n                \"moral integrity\",\n                \"Automotive Electrical Systems\",\n                \"automotive and truck braking systems\",\n                \"heavy duty diesel engine repair\",\n                \"Customer Satisfaction\",\n                \"Delegation\",\n                \"People Skills\",\n                \"Maintenance\",\n                \"Heavy Equipment\",\n                \"Preventive Maintenance\",\n                \"Vehicles\",\n                \"Welding\",\n                \"Motors\",\n                \"Parts\",\n                \"Diesel Engine\",\n                \"Automobile\",\n                \"Maintenance\",\n                \"Diesel\",\n                \"Supervisory Skills\",\n                \"Automotive\",\n                \"Machinery\",\n                \"Customer Service\",\n                \"Operations Management\",\n                \"Inventory Management\",\n                \"Testing\",\n                \"Leadership\",\n                \"Management\",\n                \"Microsoft Excel\",\n                \"Microsoft Office\",\n                \"Microsoft Word\",\n                \"Photoshop\",\n                \"PowerPoint\",\n                \"Research\",\n                \"Sales\",\n                \"Training\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 3501,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"pMIXDH8BdbruSb0IbqlB\",\n            \"canonical\": \"https://www.linkedin.com/in/raul-o-bed\",\n            \"fullname\": \"Raul Benitez\",\n            \"headline\": \"Product Owner | Systems engineer | Product engineer en Ford Motor Company\",\n            \"location\": \"Dearborn, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/raul-o-bed\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": true,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-09-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Sirius XM Holdings Inc.\",\n                    \"position\": \"Senior software - tester\",\n                    \"description\": \"Automation testing\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-08-01\",\n                    \"leaveDate\": \"2022-08-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Product Development Engineer\",\n                    \"description\": \"- Design, develop and run test plans, (functional, integration, black/white box testing, end to end), on breadboard/ bench/ in-vehicle testing. - Product management; signoffs, tracking/report defects, priorities management, GPDS milestones, requirements design, traceability and implementation, DFMEA, FUSA. - ECU virtual simulation for in-vehicle validation, android automotive simulation. - Technical design review with internal external clients and suppliers. - Embedded Show more - Design, develop and run test plans, (functional, integration, black/white box testing, end to end), on breadboard/ bench/ in-vehicle testing. - Product management; signoffs, tracking/report defects, priorities management, GPDS milestones, requirements design, traceability and implementation, DFMEA, FUSA. - ECU virtual simulation for in-vehicle validation, android automotive simulation. - Technical design review with internal external clients and suppliers. - Embedded system design for connected vehicle and telematics, UML, - In-vehicle connectivity system testing for L3 & L4 autonomous vehicles (LTE,Wi-Fi, automotive Ethernet). - In-vehicle connectivity system design for L0 toL4 vehicles based on QNX OS and Android automotive(LTE,Wi-Fi, automotive Ethernet, LAN). - C/C++ and python system prototyping and test application development for telematics. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2018-08-01\",\n                    \"leaveDate\": \"2019-08-01\",\n                    \"company\": \"Avon\",\n                    \"position\": \"Senior Software Analyst/ Developer\",\n                    \"description\": \"-System design. -Business analysis. -SQL database management. -Microsoft server administrator. -Supply chain, payments and logistics system management. -Translated internal customer requirements into written use cases. -Analysis and development of software (C++/Java EE) application for supply chain. -Technical support and software development for AVON Mexico nation wide supply chain.\"\n                },\n                {\n                    \"hiredDate\": \"2018-01-01\",\n                    \"leaveDate\": \"2019-08-01\",\n                    \"company\": \"Freelance.\",\n                    \"position\": \"Automation Engineer\",\n                    \"description\": \"- Software development with python, NodeJs, ruby, C++. - IoT system design, integration an implementation. - Linux systems operation. - Functional and manual testing - Symulink Model - Team management - Project management. - Client-Server system design, - Sensors selection and installation. - Hardware design, selection and impl\"\n                },\n                {\n                    \"hiredDate\": \"2017-01-01\",\n                    \"leaveDate\": \"2018-07-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"HMI CAE Engineer\",\n                    \"description\": \"- QML, JavaScript & C++ software development for infotainment system. - QML widgets and API development for ADAS and active safety systems such as Cruise Control/Adaptive Cruise, Lane Keeping System , Traffic Jam Assist, Traffic Sign Recognition. - Product management and HMI team management. - Manual functional testing of HMI models. - Hardware CAE design for prototyping. - Electronic circuits design for signals acquisition - Simulink system design for CAN signal acquisition Show more - QML, JavaScript & C++ software development for infotainment system. - QML widgets and API development for ADAS and active safety systems such as Cruise Control/Adaptive Cruise, Lane Keeping System , Traffic Jam Assist, Traffic Sign Recognition. - Product management and HMI team management. - Manual functional testing of HMI models. - Hardware CAE design for prototyping. - Electronic circuits design for signals acquisition - Simulink system design for CAN signal acquisition and automotive simulation. - API creation of HMI ADAS components for global markets. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2015-09-01\",\n                    \"leaveDate\": \"2017-07-01\",\n                    \"company\": \"Celex\",\n                    \"position\": \"Teacher of English Language\",\n                    \"description\": \" Basic, intermediate and advanced teaching.  3-30 student group handling.  Trimestral class planning.  Technical English tutoring to engineering students.  Translating of engineering texts and manuals.\"\n                },\n                {\n                    \"hiredDate\": \"2015-07-01\",\n                    \"leaveDate\": \"2015-12-01\",\n                    \"company\": \"DIAMSA\",\n                    \"position\": \"Field Engineer\",\n                    \"description\": \" Providing expert maintenance advice to operations through maintenance planning.  User formation.  Assembling of manuals and functionality guides.  Installing and configuring internal and external components.  Processes, products, services and toolbag proposal.  Installing hardware and software systems.  After-sales service.  Technical support.  Dealing with multiple providers.\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Spanish\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Instituto Politécnico Nacional\",\n                    \"subTitle\": \"Bachelor's degreeIndustrial Robotics EngineeringCounselor student 2013-2014\"\n                },\n                {\n                    \"title\": \"Colegio de Estudios Científicos y Tecnológicos del Estado de México\",\n                    \"subTitle\": \"TechnicianTécnico en electricidad\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696176946448,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Product Engineer with 5 years background working within technology industry. Polished in product management, system design, building digital models of concepts, testing and creating prototypes. Proficient in software development, system design, UI design, debugging and testing. Focused and results-oriented professional possessing strong communication and motivational skills. IoT enthusiast.\",\n            \"skills\": [\n                \"Liderazgo\",\n                \"Gestión de proyectos\",\n                \"Administración y dirección de empresas\",\n                \"Servicio de atención al cliente\",\n                \"Microsoft Office\",\n                \"Lean manufacturing\",\n                \"Electrónica\",\n                \"SolidWorks\",\n                \"Electricidad\",\n                \"AutoCAD\",\n                \"Mastercam\",\n                \"CNC\",\n                \"Mejora de procesos\",\n                \"Controlador lógico programable (PLC) de Allen Bradley\",\n                \"Programación con control numérico\",\n                \"Programación de PLC´s\",\n                \"Negociación\",\n                \"Neumática\",\n                \"Hidráulica\",\n                \"Microsoft Excel\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.3222599,\n                    \"lon\": -83.17631449999999\n                },\n                \"formattedAddress\": \"Dearborn, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 2983,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"4DE7ED0990486B7831FDD4080D7EBB14\",\n            \"canonical\": \"https://www.linkedin.com/in/angela-cook-pe-csp-64828018\",\n            \"fullname\": \"Angela CSP\",\n            \"headline\": \"Head of Environmental Protection, Sustainability, Security, Safety & Health USA & Canada\",\n            \"location\": \"Auburn Hills, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQEifb5iRJKY1Q/profile-displayphoto-shrink_800_800/0/1628295856047?e=2147483647&v=beta&t=XuFB6IxJttBCbvIkFWZxRq1iomMpxLKuhZYf817UqMc\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/angela-cook-pe-csp-64828018\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2020-11-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Vitesco Technologies Group AG\",\n                    \"position\": \"Head of Environmental Protection, Sustainability, Security, Safety & Health USA & Canada\",\n                    \"description\": \"Head of US & Canada ESH and Sustainability team, including leader of NA Crisis Team and emergency response programs. Leads US & Canada sustainability core team in support of CO2 neutrality roadmap with 2030 targets for clean mobility, climate protection, resource efficiency and circularity, responsible sourcing, and occupational safety & health. Also, manages environmental remediation at legacy sites.  Leads ESH & Sustainability functions for US & Canada manufacturing, R&D and Show more Head of US & Canada ESH and Sustainability team, including leader of NA Crisis Team and emergency response programs. Leads US & Canada sustainability core team in support of CO2 neutrality roadmap with 2030 targets for clean mobility, climate protection, resource efficiency and circularity, responsible sourcing, and occupational safety & health. Also, manages environmental remediation at legacy sites.  Leads ESH & Sustainability functions for US & Canada manufacturing, R&D and warehousing, managing a team of direct and indirect reports.  Sets North American KPIs and tracks sustainability and environmental objectives and targets  Workers Compensation Management and case review  Administers ESH e-Learning platform for R&D locations (SaaS),  Global ISO 14001 and 45001 internal auditor,  Implemented ISO 45003 Psycho-Social Risk Assessment in US & CAN  Coordinates insurance risk loss control visits and surveys by insurance vendors Show less\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2015-08-01\",\n                    \"leaveDate\": \"2020-11-01\",\n                    \"company\": \"Acument Global Technologies\",\n                    \"position\": \"Corporate EHS Manager - North America\",\n                    \"description\": \"Managed Acument Global Technologies North America EHS initiatives and policies including maintaining ISO 14001 Corporate Multi-Site Umbrella Certification, North America Sustainability requests, and Corporate Environmental, Health & Safety.  Directed US & Mexico EHS programs at 10 manufacturing plants and 2 distribution centers with a team of 10 direct and indirect reports,  Successfully led company to an umbrella multi-site certification for ISO 14001:2015 saving over $100k annually, Show more Managed Acument Global Technologies North America EHS initiatives and policies including maintaining ISO 14001 Corporate Multi-Site Umbrella Certification, North America Sustainability requests, and Corporate Environmental, Health & Safety.  Directed US & Mexico EHS programs at 10 manufacturing plants and 2 distribution centers with a team of 10 direct and indirect reports,  Successfully led company to an umbrella multi-site certification for ISO 14001:2015 saving over $100k annually,  Reduced Workers Compensation spend by 25% with strict case review and management,  Set corporate safety KPIs, and environmental objectives and targets,  Reported monthly EHS statistics to CEO and senior management team,  Maintained documentation for OSHA and EPA requirements  Conducted walk through/GEMBA audits at all facilities to eliminate unsafe acts and/or conditions, and environmental risks,  Local compliance management at the Fenton Processing Center including zinc and nickel plating lines, waste water treatment plants and heat treat processes. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2014-01-01\",\n                    \"leaveDate\": \"2015-08-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"EHS Manager - Viper Plant, Warren Stamping & Corporate Safety\",\n                    \"description\": \" Corporate Safety Manager for Powertrain - Launched new transmission plant from a safety perspective, - Audited new equipment and launch safety processes, - Lead of corporate Arc Flash program, - Key author for equipment safety specifications for industrial machinery manual.  EHS Department Manager Warren Stamping Plant - Led team of 6 direct and 4 indirect reports, - World Class Manufacturing (WCM) Safety Pillar Lead, - Obtained Show more  Corporate Safety Manager for Powertrain - Launched new transmission plant from a safety perspective, - Audited new equipment and launch safety processes, - Lead of corporate Arc Flash program, - Key author for equipment safety specifications for industrial machinery manual.  EHS Department Manager Warren Stamping Plant - Led team of 6 direct and 4 indirect reports, - World Class Manufacturing (WCM) Safety Pillar Lead, - Obtained ISO 50001 and OHSAS 18001 certifications at the plant, along with maintaining ISO14001.  Viper Plant EHS Manager and WCM Safety and Environment Pillar lead. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2012-03-01\",\n                    \"leaveDate\": \"2014-02-01\",\n                    \"company\": \"TRW\",\n                    \"position\": \"HS&E Manager\",\n                    \"description\": \"Manager for the Health, Safety, Environment and Security Department at TRW Automotive and was responsible for development and implementation of health and safety systems and processes for two Plants of 650 employees. Responsibilities included supervision of direct and indirect reports, oversight of Medical Department including Workers Compensation Management and case review; management of Security Department, environmental and energy engineers, metal working fluids contractor, and UAW trainer. Show more Manager for the Health, Safety, Environment and Security Department at TRW Automotive and was responsible for development and implementation of health and safety systems and processes for two Plants of 650 employees. Responsibilities included supervision of direct and indirect reports, oversight of Medical Department including Workers Compensation Management and case review; management of Security Department, environmental and energy engineers, metal working fluids contractor, and UAW trainer. Responsible for continued ISO 14001 certification. Ms. Cook was also the Business Unit Energy Champion for TRW North American Braking responsible for implementing and reporting on energy cost reduction projects at 12 Sites in US, Canada and Mexico. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1996-03-01\",\n                    \"leaveDate\": \"2012-03-01\",\n                    \"company\": \"Golder Associates\",\n                    \"position\": \"Senior Environmental Engineer & Regional Safety Coordinator\",\n                    \"description\": \"Regional Health and Safety Manager for the Great Lakes Operations (Michigan, Ohio, Illinois and Wisconsin offices) ensuring training requirements are met for staff and preparing or reviewing site-specific health and safety plans for various field efforts. As a consultant, I managed and completed many projects assisting manufacturing, transportation, mining, food and beverage, and pharmaceutical companies throughout the United States with their EHS compliance programs such as SPCC and SWPPP Show more Regional Health and Safety Manager for the Great Lakes Operations (Michigan, Ohio, Illinois and Wisconsin offices) ensuring training requirements are met for staff and preparing or reviewing site-specific health and safety plans for various field efforts. As a consultant, I managed and completed many projects assisting manufacturing, transportation, mining, food and beverage, and pharmaceutical companies throughout the United States with their EHS compliance programs such as SPCC and SWPPP plans, RMP and PSM programs and emergency response plans. I was also the regional health and safety trainer teaching HAZWOPER 4- hour and 8-hour, first aid, CPR, AED, DOT and RCRA courses for clients and internally for Golder employees. I performed In-Plant Environmental, Health and Safety Audits at for various clients to assist in meeting OSHA and EPA Compliance programs. I was the Program Director for the Canadian National Rail, Real Estate Program in the USA which involved conducting Phase I, II, III Environmental Site Assessments, decommissioning and demolition, tank removals, and regulated materials inventories at 120 properties in Michigan, Ohio, Indiana, Illinois, Vermont and Connecticut when CN purchased the Illinois Central Rail line and also the Grand Truck Rail Line. My responsibilities included client interface, project and personnel management, soliciting RFPs, scheduling field work, sampling and laboratory services, subcontractor oversight and contract negotiations. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1994-01-01\",\n                    \"leaveDate\": \"1996-03-01\",\n                    \"company\": \"Weston Solutions, Inc.\",\n                    \"position\": \"Environmental Engineer and Safety Officer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1993-05-01\",\n                    \"leaveDate\": \"1994-06-01\",\n                    \"company\": \"Halliburton Company\",\n                    \"position\": \"Environmental Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"MIT Professional Education\",\n                    \"subTitle\": \"Sustainable Industry, Clean Energy, Sustainable Infrastructure https://www.credential.net/9a6b0012-9043-48e3-bc30-9df29ec10809\"\n                },\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Master of Science, Bachelor of ScienceCivil and Environmental Engineering, 1993, Engineering Arts Civil Engineering & Business Minor, 1991\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696328476013,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Experienced Corporate Sustainability, Environmental, Health, Safety, and Security Manager focused on compliance and leadership of multi-site/multi-country EHS programs. Highlights include: lead US & Canada sustainability core team, ensure compliance with Federal, State and local environmental and safety regulations; lead regional auditing team for maintaining management system certifications (ISO 14001, 45001 and 50001), Worker’s Compensation management, responsible for training and tracking KPIs, crisis team and emergency response program leader. Supports CO2 neutrality roadmap with 2030 targets for clean mobility, climate protection, resource efficiency and circularity, responsible sourcing, and occupational safety & health. Certified Safety Professional (CSP), and a registered Professional Environmental Engineer (PE) in the State of Michigan. I have a key focus on internal customer service and team leadership.\",\n            \"skills\": [\n                \"Industrial Hygiene\",\n                \"EHS\",\n                \"Environmental\",\n                \"Emergency Management\",\n                \"Compliance Audits\",\n                \"PSM\",\n                \"Hazardous Waste Management\",\n                \"Environmental Compliance\",\n                \"Environmental Management\",\n                \"Occupational Health\",\n                \"HAZWOPER\",\n                \"Risk Assessment\",\n                \"RCRA\",\n                \"Safety Management\",\n                \"Auditing\",\n                \"Environmental Awareness\",\n                \"Environmental Management Systems\",\n                \"Safety Management Systems\",\n                \"Waste Management\",\n                \"Root Cause Analysis\",\n                \"Environmental Engineering\",\n                \"Accident Investigation\",\n                \"ISO 14001\",\n                \"Environmental Auditing\",\n                \"Industrial Safety\",\n                \"Workplace Safety\",\n                \"Construction Safety\",\n                \"Remediation\",\n                \"Quality Auditing\",\n                \"Environmental Consulting\",\n                \"Behavior Based Safety\",\n                \"Hazard Analysis\",\n                \"Hazardous Materials\",\n                \"Waste\",\n                \"Hazard Recognition\",\n                \"Environmental Impact Assessment\",\n                \"Mining\",\n                \"Safety Auditing\",\n                \"Ergonomics\",\n                \"Environmental Permitting\",\n                \"Asbestos\",\n                \"Phase I\",\n                \"EPA\",\n                \"Water\",\n                \"Environment, Health, and Safety (EHS)\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6875323,\n                    \"lon\": -83.2341028\n                },\n                \"formattedAddress\": \"Auburn Hills, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11112,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"E2515E542616659CF185CA1161383C48\",\n            \"canonical\": \"https://www.linkedin.com/in/sandystojkovski\",\n            \"fullname\": \"Sandy Stojkovski\",\n            \"headline\": \"CEO North America at Vitesco Technologies\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQHuvVU3ex_N_w/profile-displayphoto-shrink_800_800/0/1612565210341?e=2147483647&v=beta&t=AbcOtii3uXVTpirAsaT4RPghzWmyTccQeFyx-eSYfnw\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/sandystojkovski\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Vitesco Technologies Group AG\",\n                    \"position\": \"CEO & Head of Electrification Solutions Division North America\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2016-01-01\",\n                    \"leaveDate\": \"2017-01-01\",\n                    \"company\": \"Marelli\",\n                    \"position\": \"President and General Manager Powertrain North America\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2014-01-01\",\n                    \"leaveDate\": \"2015-01-01\",\n                    \"company\": \"ZF Friedrichshafen AG\",\n                    \"position\": \"Vice President Global Engineering Excellence\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"2014-01-01\",\n                    \"company\": \"AVL\",\n                    \"position\": \"President\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ricardo plc\",\n                    \"position\": \"Director, Complex Systems Engineering and Director US Government Market Sector\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"PAT Leader, Vehicle Engineering\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"BSMechanical Engineering\"\n                },\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"MastersBusiness Administration\"\n                },\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"MSIndustrial Manufacturing Systems Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696317561031,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am results oriented, hands-on strategic and operational leader with a technical foundation and broad business experience in the manufacturing industry with companies ranging in size from Fortune 500 corporations to start-ups. Collaborative and entrepreneurial, I build and lead teams to capitalize on change in technology based businesses. Competencies: Full P&L accountability, powertrain electrification, vision led leadership, business transformation (start up, turnaround, growth, restructuring, acquisition, spin-off), operational improvement, team and culture building, board advisor/member/interface.\",\n            \"skills\": [\n                \"Strategy\",\n                \"Automotive\",\n                \"Program Management\",\n                \"Product Development\",\n                \"Strategic Planning\",\n                \"New Business Development\",\n                \"Management Consulting\",\n                \"Management\",\n                \"Continuous Improvement\",\n                \"Leadership\",\n                \"Cross-functional Team Leadership\",\n                \"Business Development\",\n                \"Engineering\",\n                \"Engineering Management\",\n                \"Analytics\",\n                \"Enterprise Software\",\n                \"Business Strategy\",\n                \"Systems Engineering\",\n                \"Start-ups\",\n                \"Project Planning\",\n                \"Team Leadership\",\n                \"Competitive Analysis\",\n                \"Business Modeling\",\n                \"Risk Management\",\n                \"Six Sigma\",\n                \"Complex Systems\",\n                \"Innovation Based Growth\",\n                \"Fuel Economy Regulations\",\n                \"Scenario Planning\",\n                \"Value Proposition Analysis\",\n                \"Information Visualization\",\n                \"Lean Business Processes\",\n                \"Change Management\",\n                \"Analysis\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 2192,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"2mPNhIABdbruSb0Iq2IL\",\n            \"canonical\": \"https://www.linkedin.com/in/leif-millar\",\n            \"fullname\": \"Leif Millar\",\n            \"headline\": \"Software Analyst\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5103AQEVH3EDIwVgww/profile-displayphoto-shrink_800_800/0/1516921728291?e=2147483647&v=beta&t=Lk8X0uS1KVwDoJGKQjutdJuZ2KR7PC0sPNGqiGIQRA4\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": {\n                    \"url\": \"https://www.facebook.com/leif.millar\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/leif-millar\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Rapita Systems\",\n                    \"position\": \"Embedded Software Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Embedded Software Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"University of Michigan\",\n                    \"position\": \"Research Assistant\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2017-05-01\",\n                    \"leaveDate\": \"2017-07-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Autonomous Vehicle Software Engineer Intern\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2016-05-01\",\n                    \"leaveDate\": \"2016-08-01\",\n                    \"company\": \"ESG Automotive USA\",\n                    \"position\": \"Infotainment Software Engineer Intern\",\n                    \"description\": \"**Supporting Ford Motor Company** * Automate modification of DBC files using Python to support vehicle emulation on Test Development Kit (TDK). * Implement unit testing framework in MATLAB using Jenkins to remotely initiate tests of TDK vehicle emulation states and manage test log data.\"\n                },\n                {\n                    \"hiredDate\": \"2015-05-01\",\n                    \"leaveDate\": \"2015-08-01\",\n                    \"company\": \"The Mitre Corporation\",\n                    \"position\": \"Application Developer Intern\",\n                    \"description\": \"* Develop CAVT radio capability simulation application for the US Army using C#, HTML, and .NET framework in Visual Studio. * Designed and implemented algorithm for placing platforms on map according to placement in echelon structure.\"\n                },\n                {\n                    \"hiredDate\": \"2014-05-01\",\n                    \"leaveDate\": \"2014-08-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Strategy and Planning Intern\",\n                    \"description\": \"* Conducted bench-marking of OEMs in the automotive industry to examine how strategic objectives influence make/buy decisions. * Created net impact tool to analyze how different sourcing decisions will affect NPV, headcount, and floor space across GM North American plants. * Side Project: Automated conversion of parts breakdown file for bill of material generation program compatibility. Saves 15.6 engineering hours per week.\"\n                },\n                {\n                    \"hiredDate\": \"2012-05-01\",\n                    \"leaveDate\": \"2013-08-01\",\n                    \"company\": \"Texas Instruments Incorporated\",\n                    \"position\": \"Product Test Engineer Intern\",\n                    \"description\": \"Note: Summer internship for 2012 and 2013. * Tested and made recommendations to strengthen 20 wafer probe test interface card diagnostic programs in Pascal, improving fault detection capabilities of and increasing automated test program generation capabilities * Performed statistical analysis on wafer test results of over 200 testers to determine root source of high fail rates for top-10 failing test programs; actively monitored testers to identify potential problems in test setup Show more Note: Summer internship for 2012 and 2013. * Tested and made recommendations to strengthen 20 wafer probe test interface card diagnostic programs in Pascal, improving fault detection capabilities of and increasing automated test program generation capabilities * Performed statistical analysis on wafer test results of over 200 testers to determine root source of high fail rates for top-10 failing test programs; actively monitored testers to identify potential problems in test setup and material production * Automated report generation of weekly test data top-10 offenders, saving 5 engineering hours per week Show less\"\n                },\n                {\n                    \"hiredDate\": \"2004-01-01\",\n                    \"leaveDate\": \"2010-01-01\",\n                    \"company\": \"United States Air Force\",\n                    \"position\": \"F-15 Avionics Backshop Technician\",\n                    \"description\": \"* Operated and maintained F-15 electronics warfare test station and 500+ aircraft components and contributed to monthly repair of over $30 million of equipment with 92% equipment serviceability rate from 2006-2009 * Led team to plan and organize avionics maintenance activities of electronics warfare section. Contributed to 35% lower than Air Force average backlog from 2008-2009 and contributed to 96% quality assurance pass rate from 2007-2009 * Performed major hardware upgrade of Show more * Operated and maintained F-15 electronics warfare test station and 500+ aircraft components and contributed to monthly repair of over $30 million of equipment with 92% equipment serviceability rate from 2006-2009 * Led team to plan and organize avionics maintenance activities of electronics warfare section. Contributed to 35% lower than Air Force average backlog from 2008-2009 and contributed to 96% quality assurance pass rate from 2007-2009 * Performed major hardware upgrade of electronic warfare test station, resulting in increased accuracy of performance testing and 20% decrease in system-wide run time Show less\"\n                }\n            ],\n            \"languagesList\": [\n                \"German\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan College of Engineering\",\n                    \"subTitle\": \"MSEComputer Science Engineering\"\n                },\n                {\n                    \"title\": \"University of Michigan College of Engineering\",\n                    \"subTitle\": \"BSEComputer Engineering\"\n                },\n                {\n                    \"title\": \"Oakland Community College\",\n                    \"subTitle\": \"N/APre-Engineering3.9\"\n                },\n                {\n                    \"title\": \"Community College of the Air Force\",\n                    \"subTitle\": \"Associate in Applied ScienceAvionic Systems Technology4.0\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696313672063,\n            \"military\": false,\n            \"clearance\": true,\n            \"about\": \"After starting my career in the automotive industry working on embedded system software development using Vector-based AUTOSAR tools, I am looking to move into aeronautical, medical device, or startup embedded system software development.\",\n            \"skills\": [\n                \"C++\",\n                \"Teamwork\",\n                \"Microsoft Excel\",\n                \"PowerPoint\",\n                \"Microsoft Word\",\n                \"Project Management\",\n                \"Public Speaking\",\n                \"Matlab\",\n                \"Data Analysis\",\n                \"Testing\",\n                \"Electrical Troubleshooting\",\n                \"C\",\n                \"Engineering\",\n                \"Debugging\",\n                \"Microsoft Office\",\n                \"Java\",\n                \"Verilog HDL\",\n                \"Visual Basic\",\n                \"Verilog\",\n                \"AUTOSAR\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 3353,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"87B70474C9845A300F2D6B3573E798CA\",\n            \"canonical\": \"https://www.linkedin.com/in/mark-greenwald-9697911\",\n            \"fullname\": \"Mark Greenwald\",\n            \"headline\": \"Manufacturing Quality Systems | Supplier Quality and Development | Operational Excellence\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Machinery\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5103AQE3b1BdXO4MQw/profile-displayphoto-shrink_800_800/0/1516317682251?e=2147483647&v=beta&t=P4I9S6cBYtTWLC-d5_Bu9lF3NdyHVuXyqG8rgLJMQ_A\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/mark-greenwald-9697911\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2017-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Thermo King Corporation\",\n                    \"position\": \"VP of Quality\",\n                    \"description\": \"Thermo King is a $2 B global leader in transport refrigeration and heating for trailers, trucks, buses, rail cars, and shipboard containers.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2017-03-01\",\n                    \"company\": \"Ingersoll Rand Inc.\",\n                    \"position\": \"VP, Global Supplier Quality and Development\",\n                    \"description\": \"Ingersoll Rand is a $14 B global business committed to creating and sustaining safe, comfortable and efficient environments. Brands - include Club Car, Ingersoll Rand, Thermo King and Trane.\"\n                },\n                {\n                    \"hiredDate\": \"2006-05-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"Eaton Corporation, PLC\",\n                    \"position\": \"Global Director - Supplier Development -Vehicle Group\",\n                    \"description\": \"A $22 B diversified industrial company that manufactures electrical power distribution and control equipment, hydraulic products, aerospace propulsion systems, truck safety systems and automotive systems.\"\n                },\n                {\n                    \"hiredDate\": \"2001-01-01\",\n                    \"leaveDate\": \"2006-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Powertrain Manager - Supplier Technical Assistance\",\n                    \"description\": \"A $112B fortune 500 company which designs, develops, manufactures, and services cars and trucks worldwide.\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2001-01-01\",\n                    \"company\": \"Rolls-Royce North America\",\n                    \"position\": \"North American Director - Value Improvement and Supplier Quality\",\n                    \"description\": \"A $13B global company which designs, develops and manufactures integrated power systems for use on land, at sea and in the air.\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Commodity Manager - Supplier Technical Assistance\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"State University of New York College at Buffalo\",\n                    \"subTitle\": \"BSIndustrial Technology\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696305676748,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am an innovative, decisive and hands-on executive with a history of leading geographically dispersed and culturally diverse organizations. My global leadership experience with Fortune 500 companies in Automotive, Aerospace and Diversified Industrials has enabled me to successfully develop and deploy multi-site quality and operational excellence architectures for both internal manufacturing and suppliers. This has led to a proven track record of developing and executing strategies that deliver bottom line results. My skills allow me to build and effectively lead cross-functional teams and align organizations around winning operational strategies. My cross-industry experience coupled with my authentic leadership style equips me with broad expertise in quality management systems, customer quality, supplier development, operational excellence, talent management and employee development. Technical/Systems Competencies • Manufacturing Quality Systems (ISO, IATF, APQP, PPAP) • Supplier Quality Systems • Customer Quality • Warranty Reduction • Lean Deployment • A3 Problem Solving Leadership Competencies • Transformational Thinking • Servant Leadership • Coaching/Mentoring • Cross-Functional Collaboration • Leadership Through Influence • Change Management\",\n            \"skills\": [\n                \"Lean Manufacturing\",\n                \"Supplier Quality\",\n                \"Automotive\",\n                \"Manufacturing\",\n                \"Supply Chain\",\n                \"Sourcing\",\n                \"Global Sourcing\",\n                \"Kaizen\",\n                \"Kanban\",\n                \"Supply Chain Management\",\n                \"Value Stream Mapping\",\n                \"Supply Management\",\n                \"Manufacturing Engineering\",\n                \"Quality System\",\n                \"FMEA\",\n                \"Supplier Development\",\n                \"Six Sigma\",\n                \"Industrial Engineering\",\n                \"Continuous Improvement\",\n                \"5S\",\n                \"Program Management\",\n                \"APQP\",\n                \"Leadership\",\n                \"Cross-functional Team Leadership\",\n                \"Procurement\",\n                \"TQM\",\n                \"DMAIC\",\n                \"Manufacturing Operations Management\",\n                \"Root Cause Analysis\",\n                \"Strategic Sourcing\",\n                \"Production Planning\",\n                \"ISO\",\n                \"Aerospace\",\n                \"MRP\",\n                \"Process Engineering\",\n                \"Toyota Production System\",\n                \"PPAP\",\n                \"Engineering Management\",\n                \"Product Development\",\n                \"Process Improvement\",\n                \"Operational Excellence\",\n                \"TPM\",\n                \"Materials Management\",\n                \"Purchasing\",\n                \"Quality Management\",\n                \"SPC\",\n                \"Manufacturing Operations\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8921,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"tNwb5nABFVkhVdRhDVe9\",\n            \"canonical\": \"https://www.linkedin.com/in/rachelawoodruff\",\n            \"fullname\": \"Rachel Woodruff\",\n            \"headline\": \"Corporate Legal, Compliance & Regulatory Affairs\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"law practice\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQGI2EuUZUv68w/profile-displayphoto-shrink_800_800/0/1517282220225?e=2147483647&v=beta&t=96q_proLxfvmKIAUdXovgqbKBgumQ0UmH_FtuFMSppQ\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/rachelawoodruff\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Optum\",\n                    \"position\": \"Senior Recruiter: Corporate Legal, Compliance & Regulatory Affairs\",\n                    \"description\": \"Optum is a health services and innovation company on a mission to help people live healthier lives and to help make the health system work better for everyone. Optum, part of the UnitedHealth Group family of businesses, is powering modern health care by connecting and serving the whole health system across 150 countries. We combine cutting-edge technology, the worlds largest health care database and vast expertise to improve health care delivery, quality and efficiency. We are Show more Optum is a health services and innovation company on a mission to help people live healthier lives and to help make the health system work better for everyone. Optum, part of the UnitedHealth Group family of businesses, is powering modern health care by connecting and serving the whole health system across 150 countries. We combine cutting-edge technology, the worlds largest health care database and vast expertise to improve health care delivery, quality and efficiency. We are revolutionizing health care that serves more than 100,000 physicians, practices and other health care facilities, as well as 127 million individual consumers. How we power modern health: - Data and analytics - Health care delivery - Health care operations - Pharmacy care services - Population health management - Advisory services Simpler health plans, better experience, healthier lives. Our Values: Integrity - Honor commitments. Never compromise ethics. Compassion - Walk in the shoes of people we serve and those with whom we work. Relationships - Build trust through collaboration. Innovation - Invent the future, learn from the past. Performance - Demonstrate excellence in everything we do. Learn more about Optum at: https://www.optum.com/ Search and apply for Optum careers at: https://www.workatoptum.com Show less\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-02-01\",\n                    \"leaveDate\": \"2021-12-01\",\n                    \"company\": \"Baker McKenzie\",\n                    \"position\": \"Recruitment Manager, North America\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2016-05-01\",\n                    \"leaveDate\": \"2019-02-01\",\n                    \"company\": \"Robert Half International Inc.\",\n                    \"position\": \"Project Fulfillment Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2014-03-01\",\n                    \"leaveDate\": \"2016-05-01\",\n                    \"company\": \"Lumen Legal\",\n                    \"position\": \"Legal Recruiter\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2009-05-01\",\n                    \"leaveDate\": \"2014-03-01\",\n                    \"company\": \"Freelancer\",\n                    \"position\": \"Attorney\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2000-08-01\",\n                    \"leaveDate\": \"2007-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Marketing Communications Project Manager\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [\n                \"English\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University Law School\",\n                    \"subTitle\": \"Juris Doctor\"\n                },\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"Bachelor of Arts - BA\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696286588420,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Recruitment Manager for Baker Mckenzies new Tampa Center State Bar of Michigan: Active and in good standing\",\n            \"skills\": [\n                \"Recruiting\",\n                \"Applicant Tracking Systems\",\n                \"Sourcing\",\n                \"Project Management\",\n                \"Public Speaking\",\n                \"Corporate Communications\",\n                \"Strategic Planning\",\n                \"Leadership\",\n                \"Marketing Communications\",\n                \"Marketing Strategy\",\n                \"Relativity\",\n                \"Document Review Staffing\",\n                \"RFP Generation\",\n                \"Vendor Contracts\",\n                \"Distance Learning\",\n                \"RFP Management\",\n                \"Resume Writing\",\n                \"Screening Resumes\",\n                \"Sendouts\",\n                \"Secondments\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7580,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"7F265376F899A6E9B7F6FBF8730ACAFB\",\n            \"canonical\": \"https://www.linkedin.com/in/karen-carmody-204b281b\",\n            \"fullname\": \"Karen Carmody\",\n            \"headline\": \"Instructional Designer at Raytheon Professional Services\",\n            \"location\": \"Allen Park, Michigan\",\n            \"industry\": \"Professional Training & Coaching\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4D03AQHZinIPiplEGA/profile-displayphoto-shrink_800_800/0/1516883368482?e=2147483647&v=beta&t=cA4YT1Ftd67M_cNUGFe38rLFPPLZqbxn1sQak-8mbYY\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/karen-carmody-204b281b\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2010-07-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Raytheon Company\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Design and develop web-based training programs for global initiatives.\"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Raytheon Company\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Design and coordinate the development of a 2 hour web-based technical training program for General Motors Brazil. The course was translated into Portuguese and required many specific design considerations. Both the SME and client reside in Brazil, which offered the opportunity to work internationally.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"2010-01-01\",\n                    \"company\": \"Launch Learning Group\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Assisted in the design of a one week state-certified training program to prepare individuals for the State of Michigan's insurance broker licensing exam.\"\n                },\n                {\n                    \"hiredDate\": \"2006-01-01\",\n                    \"leaveDate\": \"2007-02-01\",\n                    \"company\": \"Pulte Homes Incorporated\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Design and develop both on-line and instructor led training programs, as well as conduct train-the-trainer sessions to prepare the staff for implementation. Programs included a financial forecasting software program for senior analysts in the Finance Division and a comprehensive reporting software program used throughout the Purchasing Division.\"\n                },\n                {\n                    \"hiredDate\": \"2004-08-01\",\n                    \"leaveDate\": \"2005-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Responsibilities: Design web-based training programs for the Division of Health and Occupational Safety. These programs help the North American facilities align operations with the new OSHA standards. Programs included Hazard Communication, Electrical Arc Safety and The Protection of Drinking Water.\"\n                },\n                {\n                    \"hiredDate\": \"2002-07-01\",\n                    \"leaveDate\": \"2003-08-01\",\n                    \"company\": \"Blue Care Network\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Design, develop, implement and facilitate training to support the launch of a new data management software program. Extensive work done to align workflows, processes and procedures. Training medium included instructor-led, self-study, computer-based and on-the-job training.\"\n                },\n                {\n                    \"hiredDate\": \"1998-11-01\",\n                    \"leaveDate\": \"2003-08-01\",\n                    \"company\": \"Tracey & Associates Incorporated\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Design, develop and facilitate various training programs including, but not limited to, leadership development courses for GM University (interactive distance learning), an operations curriculum for ADP-Ford and a Creative Thinking course for Chrysler executives (both instructor-led).\"\n                },\n                {\n                    \"hiredDate\": \"2001-01-01\",\n                    \"leaveDate\": \"2001-10-01\",\n                    \"company\": \"Kmart Resource Center\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Responsibilities: Oversee project completion for the Interactive Distance Learning Team, conduct needs assessments, design instruction, develop materials and facilitate distance learning sessions. Analyze session data, prepare summary reports, and present training results to clients. Maintain technical integrity of the studio by performing routine analyses and troubleshooting as needed. Advertise and promote the capabilities of interactive distance learning to internal clients.\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2000-10-01\",\n                    \"company\": \"UAW-Blue Cross Blue Shield of Michigan\",\n                    \"position\": \"Instructional Designer\",\n                    \"description\": \"Responsibilities: Design a corporate-wide leadership development curriculum for management and union employees. Oversee material development as completed by both Wayne State University and external CBT developers. Evaluate available and appropriate computer-based and web-based instruction, select vendor resources and oversee customization. Provide change management consultation as policies were adjusted to align with legal provisions.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Detroit Mercy\",\n                    \"subTitle\": \"Bachelors of ScienceEducation; Special Education; Special Education\"\n                },\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"Masters of ArtsEducation; Instructional Technology; Interactive Multimedia\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696280495015,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I have worked as an instructional designer for 11 years. Analysis, design, development, implementation, facilitation and evaluation have all been part of my professional responsibilities. The courses I have designed cover a wide range of content areas including healthcare, construction, retail, health and safety, insurance, and automotive to name a few. Delivery methods have included web-based, computer-based, instructor led, self-study and interactive distance learning. I prefer project-based work and have benefited tremendously from working with a wide range of organizations. Specialties: web-based, computer-based, instructor led, self-study and interactive distance learning\",\n            \"skills\": [\n                \"Program Management\",\n                \"Curriculum Design\",\n                \"Training\",\n                \"Leadership Development\",\n                \"E-Learning\",\n                \"Change Management\",\n                \"Analysis\",\n                \"Teaching\",\n                \"Employee Training\",\n                \"Distance Learning\",\n                \"Instructional Design\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.2575385,\n                    \"lon\": -83.2110375\n                },\n                \"formattedAddress\": \"Allen Park, MI 48101, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7213,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"D760DB287AE20B219CE750343F35DC64\",\n            \"canonical\": \"https://www.linkedin.com/in/yu-sun-4a289910\",\n            \"fullname\": \"Yu Sun\",\n            \"headline\": \"Principal Software Engineer at WBTL USA\",\n            \"location\": \"Utica, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/yu-sun-4a289910\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2020-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"WBTL USA Inc\",\n                    \"position\": \"Principal Software Engineer\",\n                    \"description\": \"Developing vision based Autonomous Driving Assistance System. Basic sofftware module development based Autosar architecture, including modeling and implementing the communication between ECU and Sensors, as well as different software modules.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2017-03-01\",\n                    \"leaveDate\": \"2020-05-01\",\n                    \"company\": \"Zenuity\",\n                    \"position\": \"Senior Algorithm Engineer\",\n                    \"description\": \"Developing software for multi sensor perception(radar, lidar, camera) and data fusion, and target tracking algorithms in autonomous driving system.\"\n                },\n                {\n                    \"hiredDate\": \"2012-08-01\",\n                    \"leaveDate\": \"2017-03-01\",\n                    \"company\": \"MAGNA ELECTRONICS LIMITED\",\n                    \"position\": \"Lead Control Software Engineer on ADAS\",\n                    \"description\": \"Developing model based control software for camera-based ADAS features, including lateral control ( lane centering, lane keeping), longitudinal control (ACC). Verification in simulation using Carmaker and vehicle test.\"\n                },\n                {\n                    \"hiredDate\": \"2005-05-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Senior Research Engineer\",\n                    \"description\": \"My job is related to automotive research and development, It mainly involves the subjects of sensor fusion, vehicle control, diagnosis of vehicular battery charging system, and advanced control technology of propulsion systems.\"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2004-01-01\",\n                    \"company\": \"Michigan State University\",\n                    \"position\": \"Research Assistant at Robotics Automation Lab\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Ph.D.Electrical and Computer Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696273029106,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Simulink\",\n                \"Matlab\",\n                \"C++\",\n                \"Embedded Systems\",\n                \"Robotics\",\n                \"Labview\",\n                \"Simulations\",\n                \"Automotive\",\n                \"Testing\",\n                \"Algorithms\",\n                \"Optimization\",\n                \"Programming\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6261446,\n                    \"lon\": -83.0335384\n                },\n                \"formattedAddress\": \"Utica, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8189,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"290s6XABFVkhVdRheDkN\",\n            \"canonical\": \"https://www.linkedin.com/in/franktyrybon\",\n            \"fullname\": \"Frank Tyrybon\",\n            \"headline\": \"Market Development Manager at Evonik Degussa\",\n            \"location\": \"Wyandotte, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static-exp1.licdn.com/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/franktyrybon\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2006-04-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Evonik Industries AG\",\n                    \"position\": \"Market Development Manager\",\n                    \"description\": \"Identify new applications and increase market share for Evonik Degussa High Performance Polymers.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2003-01-01\",\n                    \"leaveDate\": \"2006-01-01\",\n                    \"company\": \"Summit Polymers\",\n                    \"position\": \"Project Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2003-01-01\",\n                    \"company\": \"Injectronics\",\n                    \"position\": \"Project Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1998-01-01\",\n                    \"leaveDate\": \"1999-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Chemical Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Detroit Mercy\",\n                    \"subTitle\": \"BSChemical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696270806145,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.21420639999999,\n                    \"lon\": -83.14992389999999\n                },\n                \"formattedAddress\": \"Wyandotte, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 9315,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"W6ZpbH4BbmB1jfD0EDd_\",\n            \"canonical\": \"https://www.linkedin.com/in/phphilpott\",\n            \"fullname\": \"Paul MSME)\",\n            \"headline\": \"Technical Solutions Executive - Automotive Named Accounts at Autodesk - Automotive Engineer\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQEcLOovv57E5g/profile-displayphoto-shrink_800_800/0/1591180650072?e=2147483647&v=beta&t=bAmLYwL8m3KGlorkntwUzk_zPajCIsgX4QEbm4IY-fY\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/phphilpott\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Autodesk, Inc.\",\n                    \"position\": \"Technical Solutions Executive\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2008-06-01\",\n                    \"leaveDate\": \"2016-01-01\",\n                    \"company\": \"Fisher Unitech LLC\",\n                    \"position\": \"Senior PLM-PDM Implementation Consultant\",\n                    \"description\": \"RESPONSIBLITIES: Implemented SolidWorks PDM projects on various customer sites, remotely and onsite, including SQL Server install. Participated in sales cycle: perform demonstrations, help prospects clarify and prioritize their needs, design custom solutions that match those needs, manage expectations, construct appealing possibilities that they had not anticipated. Manage projects to bring within budget, and assist customer with obtaining additional funding if needed. Established Show more RESPONSIBLITIES: Implemented SolidWorks PDM projects on various customer sites, remotely and onsite, including SQL Server install. Participated in sales cycle: perform demonstrations, help prospects clarify and prioritize their needs, design custom solutions that match those needs, manage expectations, construct appealing possibilities that they had not anticipated. Manage projects to bring within budget, and assist customer with obtaining additional funding if needed. Established and maintained productive customer relations to keep project pipeline full and to leave each initial project as likely sources of future projects. Designed and implemented data migrations from Workgroup PDM, Windows shared drives, and arbitrary vault systems. Designed creative configuration solutions that take software beyond its normal capabilities. Advised customers on best practices and watch-outs; foster customer dependency as necessary member of data management team. Traveled 75% time to work onsite at customer facilities. ACCOMPLISHMENTS: Billed annual counseling hours of $300,000 - $400,000, including two years 100% billable. Led API programmers to develop set of SW PDM AddIns that provide commonly desired functionality. Led API programmers to develop tool to migrate CAD files from Windows folders into SW PDM vault. Companys first in-house implementation consultant; built all processes, practices, and documentation from scratch. Corporate leader in billable hours every year. Regular recognition as Employee of the Month, at least once each year. Show less\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Teamcenter PLM Application Engineer: C3P Business Unit\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1997-08-01\",\n                    \"leaveDate\": \"2007-05-01\",\n                    \"company\": \"Ben Carson Lifetime Scholars\",\n                    \"position\": \"Director, Co-Founder\",\n                    \"description\": \"The Lifetime Scholars Program operated out of Lawrence Tech University and then Wayne State University for ten years. We trained 150 Detroit-area High School students per semester & summer for the SAT as well as the basic math, grammar, and reading comprehension skills that form the bases for all rigorous academic fields. Most of our students were at risk and from designated failing high schools. We produced data proving that such students attain academic excellence when rigorously drilled Show more The Lifetime Scholars Program operated out of Lawrence Tech University and then Wayne State University for ten years. We trained 150 Detroit-area High School students per semester & summer for the SAT as well as the basic math, grammar, and reading comprehension skills that form the bases for all rigorous academic fields. Most of our students were at risk and from designated failing high schools. We produced data proving that such students attain academic excellence when rigorously drilled by subject matter experts who provide them encouragement, a detailed gameplan, and a suitable workspace. See our legacy webpage: http://lifetimescholars.keygraphicdesign.com/ Show less\"\n                },\n                {\n                    \"hiredDate\": \"1998-01-01\",\n                    \"leaveDate\": \"2004-01-01\",\n                    \"company\": \"The Second City\",\n                    \"position\": \"Writer, Performer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1990-01-01\",\n                    \"leaveDate\": \"1992-10-01\",\n                    \"company\": \"Austin American-Statesman\",\n                    \"position\": \"Contributing Writer\",\n                    \"description\": \"Music writer\"\n                },\n                {\n                    \"hiredDate\": \"1989-01-01\",\n                    \"leaveDate\": \"1992-01-01\",\n                    \"company\": \"The Daily Texan\",\n                    \"position\": \"Columnist\",\n                    \"description\": \"Named editorial page editor at the student paper of the University of Texas.\"\n                },\n                {\n                    \"hiredDate\": \"1989-01-01\",\n                    \"leaveDate\": \"1992-01-01\",\n                    \"company\": \"KAZI 88.7 Radio\",\n                    \"position\": \"On Air Personality\",\n                    \"description\": \"Long live soul music! I spun vinyl on the FM dial. ConFunkShun, The Time, Chaka Khan, Frankie Beverly & MAZE, Teena Maria, Slave, LTD, The Whispers, Rick James, Bobby Womack, Ohio Players, etc.\"\n                },\n                {\n                    \"hiredDate\": \"1988-01-01\",\n                    \"leaveDate\": \"1992-01-01\",\n                    \"company\": \"United States Army\",\n                    \"position\": \"Infantry Soldier - Army Reserves\",\n                    \"description\": \"Transferred to reserves to attend college. 11 Bravo!\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Georgia Institute of Technology\",\n                    \"subTitle\": \"Master’s DegreeMechanical Engineering\"\n                },\n                {\n                    \"title\": \"The University of Texas at Austin\",\n                    \"subTitle\": \"Bachelor’s DegreeMechanical Engineering\"\n                },\n                {\n                    \"title\": \"Florida Agricultural and Mechanical University\",\n                    \"subTitle\": \"Master of ScienceBiochemistry\"\n                },\n                {\n                    \"title\": \"Prairie View A&M University\",\n                    \"subTitle\": \"First year of collegeMechanical Engineering\"\n                },\n                {\n                    \"title\": \"Lbj High School\",\n                    \"subTitle\": \"-\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696270599709,\n            \"military\": false,\n            \"clearance\": true,\n            \"about\": \"An Austin boy who has served many technical roles across Detroits fabled automotive industry. Greatest achievement: training over a thousand Detroit high school students in academic rigor at the Lifetime Scholars program that I founded and directed.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8065,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"aaUjU3sBnZOAU3NytchY\",\n            \"canonical\": \"https://www.linkedin.com/in/markwgreenwald\",\n            \"fullname\": \"Mark Greenwald\",\n            \"headline\": \"Manufacturing Quality Systems | Supplier Quality and Development | Operational Excellence\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5103AQE3b1BdXO4MQw/profile-displayphoto-shrink_800_800/0/1516317682251?e=2147483647&v=beta&t=P4I9S6cBYtTWLC-d5_Bu9lF3NdyHVuXyqG8rgLJMQ_A\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/markwgreenwald\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2017-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Thermo King Corporation\",\n                    \"position\": \"VP of Quality\",\n                    \"description\": \"Thermo King is a $2 B global leader in transport refrigeration and heating for trailers, trucks, buses, rail cars, and shipboard containers.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2017-03-01\",\n                    \"company\": \"Ingersoll Rand Inc.\",\n                    \"position\": \"VP, Global Supplier Quality and Development\",\n                    \"description\": \"Ingersoll Rand is a $14 B global business committed to creating and sustaining safe, comfortable and efficient environments. Brands - include Club Car, Ingersoll Rand, Thermo King and Trane.\"\n                },\n                {\n                    \"hiredDate\": \"2006-05-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"Eaton Corporation, PLC\",\n                    \"position\": \"Global Director - Supplier Development -Vehicle Group\",\n                    \"description\": \"A $22 B diversified industrial company that manufactures electrical power distribution and control equipment, hydraulic products, aerospace propulsion systems, truck safety systems and automotive systems.\"\n                },\n                {\n                    \"hiredDate\": \"2001-01-01\",\n                    \"leaveDate\": \"2006-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Powertrain Manager - Supplier Technical Assistance\",\n                    \"description\": \"A $112B fortune 500 company which designs, develops, manufactures, and services cars and trucks worldwide.\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2001-01-01\",\n                    \"company\": \"Rolls-Royce North America\",\n                    \"position\": \"North American Director - Value Improvement and Supplier Quality\",\n                    \"description\": \"A $13B global company which designs, develops and manufactures integrated power systems for use on land, at sea and in the air.\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Commodity Manager - Supplier Technical Assistance\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"State University of New York College at Buffalo\",\n                    \"subTitle\": \"BSIndustrial Technology\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696270416266,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am an innovative, decisive and hands-on executive with a history of leading geographically dispersed and culturally diverse organizations. My global leadership experience with Fortune 500 companies in Automotive, Aerospace and Diversified Industrials has enabled me to successfully develop and deploy multi-site quality and operational excellence architectures for both internal manufacturing and suppliers. This has led to a proven track record of developing and executing strategies that deliver bottom line results. My skills allow me to build and effectively lead cross-functional teams and align organizations around winning operational strategies. My cross-industry experience coupled with my authentic leadership style equips me with broad expertise in quality management systems, customer quality, supplier development, operational excellence, talent management and employee development. Technical/Systems Competencies • Manufacturing Quality Systems (ISO, IATF, APQP, PPAP) • Supplier Quality Systems • Customer Quality • Warranty Reduction • Lean Deployment • A3 Problem Solving Leadership Competencies • Transformational Thinking • Servant Leadership • Coaching/Mentoring • Cross-Functional Collaboration • Leadership Through Influence • Change Management\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8920,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"QN7YzoIBwsNvXoZzWHxA\",\n            \"canonical\": \"https://www.linkedin.com/in/rich-johnson-1409b49b\",\n            \"fullname\": \"Rich Johnson\",\n            \"headline\": \"Automotive Technician at DC side street garage\",\n            \"location\": \"Pinckney, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQHDfRt6npNraA/profile-displayphoto-shrink_800_800/0/1581962626003?e=2147483647&v=beta&t=1M_rP-317nhvRaeY7SqVedDJoXRddrL4sqk_zFfDE0c\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/rich-johnson-1409b49b\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Lloyd Bridges Traveland\",\n                    \"position\": \"RV Tech\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2019-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"DC side street garage\",\n                    \"position\": \"Automotive Technician\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2002-04-01\",\n                    \"leaveDate\": \"2008-02-01\",\n                    \"company\": \"ASSEMBLERS PRECAST & STEEL SERVICES, INC\",\n                    \"position\": \"Oiler local 324\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1996-02-01\",\n                    \"leaveDate\": \"2002-02-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Prototype Technician\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [],\n            \"lastScraperUpdateTime\": 1696267655407,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4567013,\n                    \"lon\": -83.9463358\n                },\n                \"formattedAddress\": \"Pinckney, MI 48169, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 5786,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"-RLaXIAB5C_80KOhBZqF\",\n            \"canonical\": \"https://www.linkedin.com/in/cmpdiso\",\n            \"fullname\": \"Chris Paradiso\",\n            \"headline\": \"I enjoy engaging customers with my passion for solving complex Supply Chain challenges with cloud innovations.\",\n            \"location\": \"Clarkston, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/cmpdiso\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Autodesk, Inc.\",\n                    \"position\": \"Sr. Platform Solution Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2017-09-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Pure Barre Clarkston\",\n                    \"position\": \"Co-Owner\",\n                    \"description\": \"As a Pure Barre franchise owner it is a fun, demanding, and a rewarding experience that I'm happy to be sharing with my wife. We enjoy working within our local community building brand awareness, bringing a unique fitness alternative to the community, and empowering our Instructors and Clients to be the best they can be.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2013-06-01\",\n                    \"leaveDate\": \"2018-09-01\",\n                    \"company\": \"Oracle Corporation\",\n                    \"position\": \"Sr. Solution Consultant\",\n                    \"description\": \"Work with prospective and existing customers to understand their Product Lifecycle Management (PLM) business objectives; determine the optimal technology and software to facilitate achieving these objectives. Areas of focus: - Innovation Management - Product Development - Engineering Change Management - Supply Chain Collaboration - Program and Portfolio Management - Product Quality Management As part of the sales team create and deliver customer: - Product Show more Work with prospective and existing customers to understand their Product Lifecycle Management (PLM) business objectives; determine the optimal technology and software to facilitate achieving these objectives. Areas of focus: - Innovation Management - Product Development - Engineering Change Management - Supply Chain Collaboration - Program and Portfolio Management - Product Quality Management As part of the sales team create and deliver customer: - Product demonstrations and presentations - Value assessments - Implementation Roadmaps Show less\"\n                },\n                {\n                    \"hiredDate\": \"2010-02-01\",\n                    \"leaveDate\": \"2013-05-01\",\n                    \"company\": \"PTC Inc.\",\n                    \"position\": \"Sr. Technical Sales Specialist\",\n                    \"description\": \"Assists account managers in qualifying customer's requests against PTC's ability to provide a solution and probability of success. Collaborates with the customer to capture requirements, influence decision criteria and set expectations that match PTCs ability to execute. Formulates, articulates and presents value propositions on how PTCs solutions address particular technical customer requirements.\"\n                },\n                {\n                    \"hiredDate\": \"2006-06-01\",\n                    \"leaveDate\": \"2010-03-01\",\n                    \"company\": \"Freelancer\",\n                    \"position\": \"Operation Management Consultant\",\n                    \"description\": \"Medical Device - Enabled Field sales lead generation improvements resulting in $5.0 Million USD in annual revenue. Directed inside sales operations process improvements results in excess of $500K USD annually by establishing and defining performance KPI's. Coordinated and conducted field inventory audits which reduced shrink reserves by 10% with an annualized impact of $4.0 Million USD. Financial Services - Overhauled and outsourced six contract processing centers for a major Show more Medical Device - Enabled Field sales lead generation improvements resulting in $5.0 Million USD in annual revenue. Directed inside sales operations process improvements results in excess of $500K USD annually by establishing and defining performance KPI's. Coordinated and conducted field inventory audits which reduced shrink reserves by 10% with an annualized impact of $4.0 Million USD. Financial Services - Overhauled and outsourced six contract processing centers for a major financial services company, by removing unnecessary bottlenecks and process steps while creating training materials for a client's offshore vendor that assisted in the clients cost reduction initiative. CPG & Manufacturing - Recaptured $650,000 USD in savings for a maintenance and janitorial department at one of the world's largest food product manufacturers by balancing workload and optimizing maintenance processes. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2000-06-01\",\n                    \"leaveDate\": \"2006-06-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Export Project Leader\",\n                    \"description\": \"Project Leader for three Export Programs contributing roughly $60 million dollars in annual revenue to Ford Motor Company. Established and maintained program timing, developed engineering SOW's, designed and released export specific parts, and tracked variable and fixed program costs related to export specific features. Directed multiple organizations together to meet country specific design and regulatory requirements to ensure a flawless launch per export program. Six month Show more Project Leader for three Export Programs contributing roughly $60 million dollars in annual revenue to Ford Motor Company. Established and maintained program timing, developed engineering SOW's, designed and released export specific parts, and tracked variable and fixed program costs related to export specific features. Directed multiple organizations together to meet country specific design and regulatory requirements to ensure a flawless launch per export program. Six month international service employee in Taiwan supporting Ford Lio Ho launch of the 3.0L Engine exported to Australia, Japan and Taiwan. Responsible for the Design and Release, Localization, and PPAP of the alternator, alternator air duct, alternator bracket, and alternator fasteners. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1997-01-01\",\n                    \"leaveDate\": \"1998-01-01\",\n                    \"company\": \"International Business Machines Corporation\",\n                    \"position\": \"Co-Op\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [\n                \"German\",\n                \"Japanese\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"D'Amore-McKim School of Business at Northeastern University\",\n                    \"subTitle\": \"MBAHigh Tech\"\n                },\n                {\n                    \"title\": \"University of Michigan-Dearborn\",\n                    \"subTitle\": \"MSEngineering Management\"\n                },\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"BSMEMechanical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696267290345,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Im passionate about helping customers understand how technology can address their most critical business challenges. I continuously seek the opportunity to educate, provide guidance and be a trusted advisor to those assessing the myriad of options that are presented within our global marketplace. I believe in delivering business value and creating lasting relationships through trust, candor and true business acumen. Expertise in B2B sales, Cloud Sales, Product Life Cycle Management.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.7351196,\n                    \"lon\": -83.4192941\n                },\n                \"formattedAddress\": \"Village of Clarkston, MI 48346, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8857,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"58CCEDB3CE6096589352F60229F2709F\",\n            \"canonical\": \"https://www.linkedin.com/in/robert-boyle-09a44314\",\n            \"fullname\": \"Robert Boyle\",\n            \"headline\": \"Vice President, General Counsel - Europe at BorgWarner Inc.\",\n            \"location\": \"Auburn Hills, Michigan\",\n            \"industry\": \"Law Practice\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/robert-boyle-09a44314\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-07-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"PHINIA\",\n                    \"position\": \"Vice President, General Counsel and Secretary\",\n                    \"description\": \"PHINIA Inc (NYSE: PHIN) is a leader in premium fuel systems, electrical systems and aftermarket parts. It will begin trading as an independent company on the New York Stock Exchange under the ticker symbol PHIN effective at the market opening July 5th. PHINIA is an independent, market-leading, premium solutions and components provider with over 100 years of manufacturing expertise and industry relationships, with a strong brand portfolio that includes Delphi, Delco Remy and Hartridge. Show more PHINIA Inc (NYSE: PHIN) is a leader in premium fuel systems, electrical systems and aftermarket parts. It will begin trading as an independent company on the New York Stock Exchange under the ticker symbol PHIN effective at the market opening July 5th. PHINIA is an independent, market-leading, premium solutions and components provider with over 100 years of manufacturing expertise and industry relationships, with a strong brand portfolio that includes Delphi, Delco Remy and Hartridge. With 12,900 employees across 44 locations in 20 countries, PHINIA is headquartered in Auburn Hills, Michigan, USA. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2020-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"BorgWarner Inc.\",\n                    \"position\": \"Vice President, General Counsel - Europe\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2018-11-01\",\n                    \"leaveDate\": \"2020-10-01\",\n                    \"company\": \"Delphi Technologies PLC\",\n                    \"position\": \"Vice President, Corporate & Securities\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2015-04-01\",\n                    \"leaveDate\": \"2018-11-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Attorney - Securities and Transactions\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Beam Suntory Inc.\",\n                    \"position\": \"Senior Counsel\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2008-08-01\",\n                    \"leaveDate\": \"2012-09-01\",\n                    \"company\": \"Taft Stettinius & Hollister LLP (f/k/a Shefsky & Froelich Ltd.)\",\n                    \"position\": \"Associate\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [\n                \"English\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Georgetown University\",\n                    \"subTitle\": \"Bachelor's degreeEnglish\"\n                },\n                {\n                    \"title\": \"DePaul University College of Law\",\n                    \"subTitle\": \"Juris Doctorate\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696262013360,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"My practice focuses on securities, transactions and corporate governance matters including public and private securities offerings, public and private mergers and acquisitions, public company reporting and governance issues, internal controls and corporate secretarial functions. I have years of experience with federal and state securities laws, state corporate codes, stock exchange rules and Sarbanes-Oxley and Dodd-Frank Act compliance.\",\n            \"skills\": [\n                \"Corporate Governance\",\n                \"Securities\",\n                \"Corporate Law\",\n                \"Securities Regulation\",\n                \"Intellectual Property\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6875323,\n                    \"lon\": -83.2341028\n                },\n                \"formattedAddress\": \"Auburn Hills, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 4598,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"9O_IpYMBwsNvXoZzOs7D\",\n            \"canonical\": \"https://www.linkedin.com/in/msnishapatel\",\n            \"fullname\": \"Nisha Patel\",\n            \"headline\": \"\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/msnishapatel\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-04-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Vitesco Technologies Group AG\",\n                    \"position\": \"NFC Technical Project Leader\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-10-01\",\n                    \"leaveDate\": \"2020-11-01\",\n                    \"company\": \"Ford Motor Company / Insight Global\",\n                    \"position\": \"Core NFC Engineer/ Technical Program HW lead\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Purchasing Program Control Manager, NA Cross Vehicle Prototype Builds\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2007-11-01\",\n                    \"leaveDate\": \"2008-02-01\",\n                    \"company\": \"Magna International, Inc.\",\n                    \"position\": \"Mechanical Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1998-06-01\",\n                    \"leaveDate\": \"2007-11-01\",\n                    \"company\": \"Visteon Corporation\",\n                    \"position\": \"Product Design Engineer, for Powertrain Control Modules (PCMs) and Line Power Unit (LPU)\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University at Buffalo\",\n                    \"subTitle\": \"Bachelor of Science\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696254648411,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Engineering professional with 22 years of interdisciplinary experience in quality, manufacturing and design within the automotive and industrial product industry. Skilled in new product launch, quality, problem solving, and design optimization.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 4843,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"FT_0aH4BIdOjo8H7lq4r\",\n            \"canonical\": \"https://www.linkedin.com/in/sierra-harper-b8aba5169\",\n            \"fullname\": \"Sierra Harper\",\n            \"headline\": \"Talent Acquisition Recruiter at SC Johnson\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQGmPAUG1dC1KA/profile-displayphoto-shrink_800_800/0/1610683054340?e=2147483647&v=beta&t=65RIpGFe-t3riv8JPbjXEsEmTDfCa-xt8V_kFhXJfI4\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/sierra-harper-b8aba5169\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Wilson Human Capital Group, Inc.\",\n                    \"position\": \"Recruitment Consultant\",\n                    \"description\": \"WilsonHCG is an award-winning, global leader in total talent solutions. Operating as a strategic partner, it helps some of the worlds most admired brands build comprehensive talent functions. With a global presence spanning more than 65 countries and six continents, WilsonHCG provides a full suite of configurable talent services including recruitment process outsourcing (RPO), executive search, contingent talent solutions and technology advisory.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-01-01\",\n                    \"leaveDate\": \"2022-01-01\",\n                    \"company\": \"The Adecco Group AG\",\n                    \"position\": \"Recruiter\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2017-12-01\",\n                    \"leaveDate\": \"2018-12-01\",\n                    \"company\": \"Apptree\",\n                    \"position\": \"Driver Recruiter\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2016-07-01\",\n                    \"leaveDate\": \"2017-07-01\",\n                    \"company\": \"Pilot Freight Services\",\n                    \"position\": \"Executive Assistant\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2014-01-01\",\n                    \"leaveDate\": \"2016-07-01\",\n                    \"company\": \"Whiting Corporation\",\n                    \"position\": \"Executive Administrative Assistant\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2012-04-01\",\n                    \"leaveDate\": \"2013-12-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Customer Retention Manager\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Henry Ford College\",\n                    \"subTitle\": \"Associate's degreeLiberal Arts and Sciences/Liberal Studies\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696187444481,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Professional Recruiter with 7 years of proven skills in using diverse traditional and online methods for finding top candidates for business openings along with Full cycle recruiting. Adept at collecting data and analyzing metrics to make proactive decisions about recruiting strategies. Experienced in handling onboarding, training and registration of new employees. As well as establishing point of contact with Clients.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 3985,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"DC9F2FA35EA16E4343FB662EAC27728C\",\n            \"canonical\": \"https://www.linkedin.com/in/michaelwright4587\",\n            \"fullname\": \"Mike Wright\",\n            \"headline\": \"Automotive Seat Complete Lead Engineer & Commercial and Military Seating Engineer at RECARO North Amercia\",\n            \"location\": \"Madison Heights, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/michaelwright4587\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Recaro Holding\",\n                    \"position\": \"Automotive Seat Complete Lead Engineer & Commercial and Military Seating Engineer\",\n                    \"description\": \"Automotive Seat Complete Lead Engineer Duties: Front seat complete system product development for high performance Cadillac CTS/ATS V Series program  Advanced Design Concept and BOM development for new business sales and acquisition  Developed Design Execution Sections enabling customer Studio designers to accurately work within seating and vehicle packaging constraints reducing design issues during DV and PV phases  Coordination of early development teams including Studio Show more Automotive Seat Complete Lead Engineer Duties: Front seat complete system product development for high performance Cadillac CTS/ATS V Series program  Advanced Design Concept and BOM development for new business sales and acquisition  Developed Design Execution Sections enabling customer Studio designers to accurately work within seating and vehicle packaging constraints reducing design issues during DV and PV phases  Coordination of early development teams including Studio, Design Engineering, Directed and Tier 2 supply base  Developed and managed DVP&R test plan with RECARO and customer Validation Engineering groups  Managed integration of system level performance seat bolsters with adjustability and memory recall capability while maintaining a level of quality, comfort and appearance required in luxury performance car segment  Assisted electronic control module development, validation and launch for adjustable memory bolster system Commercial Vehicle and Military Seating Engineer 2010 - 2012 Duties: Development, validation and launch of new model seating systems based on customer specific requirements and regulatory specifications for regional and industry specific applications.  Commercial seating for public transit applications in US and Canadian markets  UAV (drone) pilot ground control station seating for United States Air Force Show less\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"2010-01-01\",\n                    \"company\": \"RCO Engineering\",\n                    \"position\": \"Lead Engineer - Initial Concept Development - Seat Systems\",\n                    \"description\": \"Duties: Developed the design concepts of Chrysler seating programs prior to program award to a Tier 1 seat supplier.  Developed feasibility studies for Chrysler Studio engineers to use for surface and seat contour development.  Determined design constraints and potential solutions within the vehicle environment for Studio engineers.  Provided design interface to Fiat product development for the design of a corporate seat frame structure.  Created a complete seat system in math Show more Duties: Developed the design concepts of Chrysler seating programs prior to program award to a Tier 1 seat supplier.  Developed feasibility studies for Chrysler Studio engineers to use for surface and seat contour development.  Determined design constraints and potential solutions within the vehicle environment for Studio engineers.  Provided design interface to Fiat product development for the design of a corporate seat frame structure.  Created a complete seat system in math data and directed uploaded to Chrysler Teamcenter.  Prepared math data designs and material specifications for Purchasing Sourcing Package.  Built prototype properties, H pointed and performed comfort evaluations of seats at concept design level.  Provided a concept development service that Chrysler may utilize as a means to bring in-house more of their seat design and development work. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2007-01-01\",\n                    \"leaveDate\": \"2009-01-01\",\n                    \"company\": \"Key Safety Systems\",\n                    \"position\": \"Product Engineer\",\n                    \"description\": \"Airbag Product Engineer/Test Engineer Lead development of side impact curtain and seat mounted pelvic/thorax airbags for automotive OEMs.  Developed ADVP&R and airbag designs from concept through to production integration.  Wrote test reports per customer submission requirements and archived per legal requirements.  Performed dynamic airbag deployment testing during development to achieve required performance.  Provided engineering support for barrier crash testing at Show more Airbag Product Engineer/Test Engineer Lead development of side impact curtain and seat mounted pelvic/thorax airbags for automotive OEMs.  Developed ADVP&R and airbag designs from concept through to production integration.  Wrote test reports per customer submission requirements and archived per legal requirements.  Performed dynamic airbag deployment testing during development to achieve required performance.  Provided engineering support for barrier crash testing at General Motors Proving Grounds.  Determine occupant survivability based on head and thorax injury criteria assessments.  Recommended vehicle structure modifications to enable system level performance improvements. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1998-01-01\",\n                    \"leaveDate\": \"2006-01-01\",\n                    \"company\": \"Lear Corporation\",\n                    \"position\": \"Product Engineer\",\n                    \"description\": \"Seat System Lead Product Engineer Lead advanced design & development of future model seating systems for General Motors Buick Lucerne, Cadillac DTS and GMT900 Full Size Truck from initial concept through start of production.  Developed new seat systems utilizing occupant control points, Design Failure Mode and Effects Analysis (DFMEA) and GD&T principles which achieved world class design criteria.  Managed engineering PLM and CAD/CAE teams to ensure design release and program Show more Seat System Lead Product Engineer Lead advanced design & development of future model seating systems for General Motors Buick Lucerne, Cadillac DTS and GMT900 Full Size Truck from initial concept through start of production.  Developed new seat systems utilizing occupant control points, Design Failure Mode and Effects Analysis (DFMEA) and GD&T principles which achieved world class design criteria.  Managed engineering PLM and CAD/CAE teams to ensure design release and program milestones.  Reduced production costs and improved quality by providing engineering launch support and build issue resolution.  Incorporated Design For Manufacturing principles which prevented ergonomic & quality problems at production integration.  Developed seat air conditioning & heat systems for luxury car market segment.  Developed seat designs that enabled vehicles to meet Federal 5 Star Side Impact Crash rating.  Validated design compliance to all applicable Federal Motor Vehicle Safety Standards and OEM requirements.  Utilized Finite Element Analysis (FEA) for structural testing reducing validation costs by 15%. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1994-01-01\",\n                    \"leaveDate\": \"1998-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Manufacturing Engineer\",\n                    \"description\": \"Lead Manufacturing Engineer Lead the development of seat assembly production systems for future model seat programs at the corporate world headquarters. Responsibilities included process and production equipment development and managing a $1 million plus capital expenditures budget for manufacturing system. Lead teams that included Manufacturing Engineering, Product Engineering, Industrial Engineering, Plant Engineering / Operations, Purchasing and Program Management.  Developed Show more Lead Manufacturing Engineer Lead the development of seat assembly production systems for future model seat programs at the corporate world headquarters. Responsibilities included process and production equipment development and managing a $1 million plus capital expenditures budget for manufacturing system. Lead teams that included Manufacturing Engineering, Product Engineering, Industrial Engineering, Plant Engineering / Operations, Purchasing and Program Management.  Developed production equipment with the latest technology and controls to achieve new levels of process capability and first time quality.  Utilized PDP process and interfaced with product design engineers at alpha, beta, and pre-prototype phase of product development, incorporating manufacturability features in the product.  Lead the Manufacturing Development Team in the design, specification, acceptance testing and implementation of a world-class JIT seat assembly system.  Developed a seat manufacturing system and recommended seat design changes which utilized DOE, PFMEA, DFM / DFA, Continuous Improvement and Kaizen / Lean Manufacturing techniques.  Created and maintained SPC data collection and Process Control Plans, Process Flow Diagrams and Seat Process Documents for customer submission packages.  Provided Manufacturing Engineering support for operations in Oklahoma City, Kansas City, Windsor, Ontario, Canada and Juarez, Mexico. Show less\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Central Michigan University\",\n                    \"subTitle\": \"Bachelor's degreeIndustrial Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696185095416,\n            \"military\": true,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4858692,\n                    \"lon\": -83.1052028\n                },\n                \"formattedAddress\": \"Madison Heights, MI 48071, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 10135,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"7780BB9FB1FB16EC7DFFBD8C10DBFB3D\",\n            \"canonical\": \"https://www.linkedin.com/in/terry-stuart-8a8537\",\n            \"fullname\": \"Terry Stuart\",\n            \"headline\": \"VP of Sales Engineering at Xcitium\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"information technology and services\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQH-3sswFKHipA/profile-displayphoto-shrink_800_800/0/1613010944003?e=2147483647&v=beta&t=w2HYeLhcwDjk0DZTGiSzOJ8FkcdaUgYh4OHHMWvgaqc\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/terry-stuart-8a8537\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Xcitium\",\n                    \"position\": \"VP of Sales Engineering & Professional Services\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2020-01-01\",\n                    \"leaveDate\": \"2021-03-01\",\n                    \"company\": \"ShieldX\",\n                    \"position\": \"Director of Sales Engineering\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2017-05-01\",\n                    \"leaveDate\": \"2019-12-01\",\n                    \"company\": \"McAfee Corp.\",\n                    \"position\": \"Technical Director - Security Operations and Manager of Pre-Sales Security Operations Specialists\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2014-10-01\",\n                    \"leaveDate\": \"2017-05-01\",\n                    \"company\": \"Intel Corporation\",\n                    \"position\": \"Manager, Enterprise Technology Specialists - Americas\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2014-10-01\",\n                    \"company\": \"McAfee Corp.\",\n                    \"position\": \"Enterprise Technology Specialist - SIEM\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2008-12-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"NitroSecurity Inc.\",\n                    \"position\": \"Security Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2007-07-01\",\n                    \"leaveDate\": \"2008-12-01\",\n                    \"company\": \"High Tower Software\",\n                    \"position\": \"Director, Professional Services\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2004-12-01\",\n                    \"leaveDate\": \"2007-07-01\",\n                    \"company\": \"multiple\",\n                    \"position\": \"Consultant\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2002-09-01\",\n                    \"leaveDate\": \"2004-12-01\",\n                    \"company\": \"Cylant, Inc.\",\n                    \"position\": \"Dir. Product and Services & Facility Security Officer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1998-03-01\",\n                    \"leaveDate\": \"2002-08-01\",\n                    \"company\": \"Forcepoint\",\n                    \"position\": \"Director, Field Support\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1997-02-01\",\n                    \"leaveDate\": \"1998-03-01\",\n                    \"company\": \"Sequel Technologies\",\n                    \"position\": \"Regional Manager, System Engineering\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1995-07-01\",\n                    \"leaveDate\": \"1997-02-01\",\n                    \"company\": \"American/SCI\",\n                    \"position\": \"Manager Information Systems\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1993-10-01\",\n                    \"leaveDate\": \"1995-07-01\",\n                    \"company\": \"EMC\",\n                    \"position\": \"Senior Systems Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1987-01-01\",\n                    \"leaveDate\": \"1991-01-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Systems Anaylst\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Ferris State University\",\n                    \"subTitle\": \"Bachelor's degree\"\n                },\n                {\n                    \"title\": \"Ferris State University\",\n                    \"subTitle\": \"Bachelor of Science (BS)\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696182536754,\n            \"military\": false,\n            \"clearance\": true,\n            \"about\": \"I have lead or worked on, sales support teams for over 20 years. During this portion of my career, I have garnered experience in a variety of hardware and software products for various vendors and have worked with over 200 of the Fortune 500, countless mid-sized organizations, and have experience in Federal, State, and local governments. Examples of these are the US Dept of Interior, IRS, Census, USGS, City of New Orleans, City of New York, Chicago Public Schools, Atlanta Public Schools, and the State of Florida. I also have considerable experience with foreign corporations and governments with a focus on Europe (England, Germany), the Middle East (Kuwait, Saudi Arabia, Qatar), South America (Brazil, Argentina), Mexico, and Japan. This experience comes from leading various world-wide pre-sales technical teams as well as an individual contributor. My communications skills have been honed through thousands of demonstrations and presentations worldwide to audiences ranging in size from 1 to over 1000 in traditional business, user group, and industry conference settings. Through my sales efforts, I have gain experience through the installation of hundreds of networks using Windows, Linux, and other networking operating systems. I have extensive experience with network systems such as firewalls, IDS/IPS, caching devices, routers/switches, and directory services including Active Directory, LDAP, and RADIUS. I have a working knowledge of virtual environments, public cloud environments, and security tools required for these.\",\n            \"skills\": [\n                \"Security\",\n                \"IPS\",\n                \"SIEM\",\n                \"Linux\",\n                \"Perl\",\n                \"Solaris\",\n                \"Networking\",\n                \"LDAP\",\n                \"Microsoft SQL Server\",\n                \"Checkpoint\",\n                \"DHCP\",\n                \"Oracle\",\n                \"JavaScript\",\n                \"Top Secret\",\n                \"MySQL\",\n                \"Snort\",\n                \"PIX\",\n                \"PHP\",\n                \"Mac OS X\",\n                \"Sales\",\n                \"IP\",\n                \"Director level\",\n                \"Photoshop\",\n                \"Microsoft Office\",\n                \"Apache\",\n                \"Websense\",\n                \"Training Delivery\",\n                \"IT Management\",\n                \"Project Management\",\n                \"Product Management\",\n                \"Product Development\",\n                \"McAfee\",\n                \"Firewalls\",\n                \"Travel\",\n                \"Overseas\",\n                \"Information Security Management\",\n                \"Security Clearance\",\n                \"DLP\",\n                \"IDS\",\n                \"CISSP\",\n                \"Network Security\",\n                \"Computer Security\",\n                \"Data Security\",\n                \"Unix\",\n                \"Application Security\",\n                \"PCI DSS\",\n                \"Vulnerability Assessment\",\n                \"Intrusion Detection\",\n                \"Information Security\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 12295,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"870B28EE41CB9D65D12B7A1CDEC5ECAF\",\n            \"canonical\": \"https://www.linkedin.com/in/smccutcheon\",\n            \"fullname\": \"Stuart McCutcheon\",\n            \"headline\": \"Global Vice President - Global Sales & Customer Success - NPDI & Digital Twin @ Siemens Digital Industries Software\",\n            \"location\": \"Northville, Michigan\",\n            \"industry\": \"Computer Software\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQHVRkM7pPgEpA/profile-displayphoto-shrink_800_800/0/1661004232043?e=2147483647&v=beta&t=BWy1imYWE7tJqvqN5KNF-GvhWy6B1zOHEF8zmYQOc0A\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/smccutcheon\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2017-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Siemens Digital Industries Software\",\n                    \"position\": \"Global Vice President - Global Sales & Customer Success - NPDI & Digital Twin\",\n                    \"description\": \"Current Leading activities, Digital Twin, eXecutable Digital Twin, Industrial MetaVerse, Enterprise Bill of Material Management, SaaS transformation, Industrial Cloud, IIOT projects, strategic partner relstionships, AWS, Nvidia, Microsoft\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Siemens AG\",\n                    \"position\": \"Vice President Global Business Development - for Global Sales and Services\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Siemens AG\",\n                    \"position\": \"Vice President\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2004-06-01\",\n                    \"leaveDate\": \"2007-04-01\",\n                    \"company\": \"UGS - Global Automotive\",\n                    \"position\": \"Vice President\",\n                    \"description\": \"Consulting and interacting with all major Automotive OEM's globally and key suppliers. Role initially started off in the Automotive Industry Vertical then was transitioned into Marketing as Business Development and Industry Marketing for Automotive Sector Key achievement Spend 2 years in /Japan @ Nissan successfully helping them re-develop their VDP (Vehicle Development Program) down to below 12 months\"\n                },\n                {\n                    \"hiredDate\": \"2002-06-01\",\n                    \"leaveDate\": \"2004-06-01\",\n                    \"company\": \"EDS / Global Automotive PLM Strategy\",\n                    \"position\": \"President\",\n                    \"description\": \"EDS purchased a number of companies and created a PLM organization EDS - PLM 2 years later they sold this entity to private equity companies\"\n                },\n                {\n                    \"hiredDate\": \"2001-01-01\",\n                    \"leaveDate\": \"2002-01-01\",\n                    \"company\": \"Unigraphics Solutions\",\n                    \"position\": \"Vice President\",\n                    \"description\": \"Automotive center of excellence Focused on the top 40 OEM's Globally\"\n                },\n                {\n                    \"hiredDate\": \"1997-01-01\",\n                    \"leaveDate\": \"2001-01-01\",\n                    \"company\": \"Engineering Animation, Inc.\",\n                    \"position\": \"Senior Director\",\n                    \"description\": \"Lead Global PreSales and Services Driving vision, development and deployment of Vis products suits Vis View, Vis Mockup, Vis Concept (VR), Vis ...\"\n                },\n                {\n                    \"hiredDate\": \"1987-09-01\",\n                    \"leaveDate\": \"1997-11-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Manager\",\n                    \"description\": \"Ford of Europe IT organization supporting Product development and Manufacturing - moved to Ford North America as part of the C3P initiative Innovated / Created GT Model - industry first - PMI 3D Model software solution - Author of PMI - Received Henry Ford Technology award for this innovation - drove to a ANSI standard for 3d GD&T (3D PMI definition) GT View - first lightweight 3D viewer that included the ability to view PMI with a 3d model for multiple CAD systems - deployed Show more Ford of Europe IT organization supporting Product development and Manufacturing - moved to Ford North America as part of the C3P initiative Innovated / Created GT Model - industry first - PMI 3D Model software solution - Author of PMI - Received Henry Ford Technology award for this innovation - drove to a ANSI standard for 3d GD&T (3D PMI definition) GT View - first lightweight 3D viewer that included the ability to view PMI with a 3d model for multiple CAD systems - deployed 15000 seats - outsourced to Company to become World defacto engineering 3d Viewer Show less\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Newcastle University\",\n                    \"subTitle\": \"BSC (Hons)Mechanical Engineering\"\n                },\n                {\n                    \"title\": \"Regent House Grammer School\",\n                    \"subTitle\": \"High SchoolGrammer school\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696177455801,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Currently position :- Global Vice President,Global Sales and Customer Success responsible for DT & NPI (Digital Twin & New Product Introduction) at Siemens Digital Industries Software Inc. +30yrs industry experience previously positions for Siemens- Global Sales and Services & P&L responsibility for new line of business -Specialized Engineering Software (SES). VP Global Accounts VP of Global Automotive Bus Dev & Strategy VP Industry Marketing VP Automotive Marketing VP PreSales / Service /Sales (for a business unit) Heavily involved with many mergers & acquisitions over the last 15 years (full M&A process) GSMS Executive sponsor for OEM Automotive BOM Solution, Global Sales responsibility for or new product introduction (only commercial usage based BOM solution) IoT Internet of Things - Integration of Mindsphere with PLM 20 years experience working in Asia Pacific - Japan, China, Korea, India, currently driving a number of strategic accounts in China Global Industry knowledge, with domain expertise in - PLM . I have gained experience in many diverse industry segments around PLM, but Automotive has continued to be a strong focus for most of my career, due to the strength of PLM. Product Development through to Manufacturing, CAD - PDM - Mfg - Mechatronics - BOM - Collaboration - ect. Worked extensively on a global bases selling to the top 100 OEMs. Previously worked for - Ford Motor Company (Europe and NA) - 11 yrs - Transitioned to Siemens via acquisition:- EAI - Unigraphics Solutions - EDS - UGS- (private equity) Siemens A&D purchased UGS May 2007 Specialties: 25 years experience in the Global Industry with domain expertise in - PLM - I have gained experience in many diverse industry segments around PLM, but Automotive has continued to be a strong focus for most of my career. Automotive Development & Mfg CAD - PDM - Mfg - Mechatronics - BOM - Global Collaboration Experience in all disciplines - Sales, Marketing, Product Dev, Bus Dev\",\n            \"skills\": [\n                \"Global Account Management\",\n                \"Mergers and Acquisitions\",\n                \"PLM\",\n                \"Global PreSales\",\n                \"Strategic Selling\",\n                \"Marketing\",\n                \"Industry Solutions\",\n                \"Composites\",\n                \"CAD/CAM\",\n                \"BOM management\",\n                \"Sales Management\",\n                \"Teamcenter\",\n                \"Team Building\",\n                \"Strategic Planning\",\n                \"Automotive Design\",\n                \"Business Development\",\n                \"Product Lifecycle Management\",\n                \"Pre-sales\",\n                \"Enterprise Software\",\n                \"Management\",\n                \"Account Management\",\n                \"Solution Selling\",\n                \"Product Development\",\n                \"Automotive\",\n                \"Strategy\",\n                \"Leadership\",\n                \"Strategic Partnerships\",\n                \"PDM\",\n                \"Product Management\",\n                \"Product Marketing\",\n                \"Business Alliances\",\n                \"Industrial Sector\",\n                \"Manufacturing\",\n                \"Program Management\",\n                \"Mergers & Acquisitions\",\n                \"Salesforce.com\",\n                \"Product Launch\",\n                \"Go-to-market Strategy\",\n                \"Lead Generation\",\n                \"mergers and acquisitions\",\n                \"Mergers\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4311464,\n                    \"lon\": -83.4832692\n                },\n                \"formattedAddress\": \"Northville, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 9192,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"Wd0K7HABFVkhVdRhJ910\",\n            \"canonical\": \"https://www.linkedin.com/in/paul-bourgeois-b5983022\",\n            \"fullname\": \"Paul Bourgeois\",\n            \"headline\": \"Executive, Strategic Delivery Technology at Allegis Global Solutions\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/paul-bourgeois-b5983022\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Allegis Global Solutions\",\n                    \"position\": \"Senior Manager, Technology Business Partner\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2004-06-01\",\n                    \"leaveDate\": \"2005-11-01\",\n                    \"company\": \"Aerotek\",\n                    \"position\": \"Automotive Recruiter\",\n                    \"description\": \"Automotive Recruiter who sourced candidates for long-term contract positions for General Motors Corporation in the state of Michigan. Negotiated preliminary terms of contract with candidates including wage, vacation, and benefits. Conducted daily one-on-one interviews and gave career counseling to potential candidates. Sourced candidates by telephone, cold calling into client competitors, performing resume searches on the TeamTrak database, candidate referrals, and by Show more Automotive Recruiter who sourced candidates for long-term contract positions for General Motors Corporation in the state of Michigan. Negotiated preliminary terms of contract with candidates including wage, vacation, and benefits. Conducted daily one-on-one interviews and gave career counseling to potential candidates. Sourced candidates by telephone, cold calling into client competitors, performing resume searches on the TeamTrak database, candidate referrals, and by reviewing unsolicited resumes. Performed reference checks on all potential candidates submitted for hire. Before transitioning out of recruiting, all recruiting goals and expectations were exceeded. Achieved weekly dollar spread numbers in excess of $10,500 in spend. Show less\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Loss Prevention Supervisor\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Bachelor of ArtsCriminal Justice\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696176285022,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"The world of work has changed. As the leading provider of workforce solutions, Allegis Global Solutions (AGS) guides companies through a transformative journey to rethink the way work gets done. We know what it takes to attract the best talent while designing and executing strategies that align workforce capabilities with the agility required to stay ahead of what’s next. With decades of experience, continuous investment in innovation and a robust portfolio of workforce analytics and insights capabilities, we’re equipped to help companies better navigate uncertainty and complexity by empowering their ability to run, evolve and work smarter through creative workforce solutions. Im proud to be helping transform the way the world gets work done to not only improve business outcomes but to enhance the work experience for all.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 518,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"GcQjMoAB5C_80KOhQDGS\",\n            \"canonical\": \"https://www.linkedin.com/in/alexandre-frank\",\n            \"fullname\": \"Alexandre FRANK\",\n            \"headline\": \"Business & Sales Development Representative\",\n            \"location\": \"Clinton Township, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/alexandre-frank\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2020-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Blindspace\",\n                    \"position\": \"Business Development Representative\",\n                    \"description\": \"Blindspace is an international high-end interior design company originally from Europe. They hired me as a remote business development representative in order to expand their business to North America (USA, Mexico, Canada) which was a perfect fit since I am able to speak English, French and Spanish. My job was to manage inbound requests from potential clients and turn them into actual customers. Besides, my main tasks was to prospect new customers/partners located in North America in order to Show more Blindspace is an international high-end interior design company originally from Europe. They hired me as a remote business development representative in order to expand their business to North America (USA, Mexico, Canada) which was a perfect fit since I am able to speak English, French and Spanish. My job was to manage inbound requests from potential clients and turn them into actual customers. Besides, my main tasks was to prospect new customers/partners located in North America in order to grow the business. Contract currently paused on common agreement, looking for some different opportunities in the tech/SaaS industry. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2020-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Indépendant\",\n                    \"position\": \"Ecommerce Business Owner\",\n                    \"description\": \"This is a part-time activity that I most likely do during my free time; Creation of various e-commerce stores for ourselves and other auto-entrepreneurs. Different types of works specialized in online sales, website creation/design, digital marketing, operations & logistics, customer support and more. Our team is currently preparing the launch of a new brand that will be ready to operate in the US market by summer 2022.\"\n                },\n                {\n                    \"hiredDate\": \"2020-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Upwork Inc.\",\n                    \"position\": \"Sales Business Development\",\n                    \"description\": \"As a freelancer, I have been helping several companies of all types to develop their businesses throughout the last few years. My services are mainly focused on the following tasks; Business Development, Sales/Lead generation, Marketing, E-commerce, French/English translations & optimizations (etc.)\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2020-01-01\",\n                    \"leaveDate\": \"2022-01-01\",\n                    \"company\": \"Michigan Stars FC\",\n                    \"position\": \"Professional Athlete\",\n                    \"description\": \"Transferred to Michigan Stars FC, club of NISA (National Independent Soccer Association) where I played professionally until now.\"\n                },\n                {\n                    \"hiredDate\": \"2019-08-01\",\n                    \"leaveDate\": \"2019-12-01\",\n                    \"company\": \"Atlanta Soccer Club\",\n                    \"position\": \"Professional Athlete\",\n                    \"description\": \"First season as a professional soccer player for Atlanta SC, club of NISA (National Independent Soccer Association).\"\n                },\n                {\n                    \"hiredDate\": \"2017-01-01\",\n                    \"leaveDate\": \"2017-08-01\",\n                    \"company\": \"Decathlon\",\n                    \"position\": \"Store Manager\",\n                    \"description\": \"Worked as an assistant manager alongside the fitness/gym department manager at Decathlon which is a worldwide retailer and leader in the sporting goods industry. Our main task was obviously selling but there was also a lot of other things to manage such as the fitness department team, schedules, stocks, logistics, marketing and more.\"\n                },\n                {\n                    \"hiredDate\": \"2014-06-01\",\n                    \"leaveDate\": \"2014-12-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Sales Representative\",\n                    \"description\": \"Sales Representative for a Ford Dealership based in Valence. I had the chance of discovering most of the skills & tasks needed to work in the sales and business industry. From prospecting (cold calling, emailing, meetings etc.) to selling, I learned a lot and enjoyed my time as an intern there. Most of my work was focused on B2B (commercial and utility vehicles mainly).\"\n                },\n                {\n                    \"hiredDate\": \"2013-01-01\",\n                    \"leaveDate\": \"2013-06-01\",\n                    \"company\": \"CHEVIGNON\",\n                    \"position\": \"Seller\",\n                    \"description\": \"Internship as a seller for the clothing brand Chevignon. Responsible of various in-store tasks such as sales, logistic and marketing.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"American International College\",\n                    \"subTitle\": \"Master of Business Administration - MBABusiness\"\n                },\n                {\n                    \"title\": \"IAE Nice (Graduate School of Management)\",\n                    \"subTitle\": \"Management Master's DegreeManagement\"\n                },\n                {\n                    \"title\": \"Galway-Mayo Institute of Technology\",\n                    \"subTitle\": \"Bachelor of BusinessBusiness\"\n                },\n                {\n                    \"title\": \"IUT de Valence\",\n                    \"subTitle\": \"Undergraduate Degree in Business and MarketingBusiness\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696175227676,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"After spending several years in France and Ireland completing respectively a 2-year undergraduate, a 1-year bachelor and a 1-year Master degrees in business and marketing, I graduated from a Master Business Administration at American International College in Springfield (MA) in 2019 where I was a also student/athlete for 2 years. This opportunity allowed me to grow as a person, discover new cultures, expand my network and be able to acquire important knowledges about the business industry as a whole. It also gave me the chance to learn and speak fluently English and Spanish on top of my native language which is French. Once I graduated, I had the opportunity to pursue my childhood dream of becoming a professional soccer player and was able to do it until now. During these past years, I used my free time to learn about e-commerce, digital marketing and sales in general in order build something on my own and be ready for the after career. I started a part-time freelancing activity to actually put my hands on these fields and educate myself to be more knowledgeable. After attentive reflection and consideration, I estimate that this is the right moment for me to start my professional career. Therefore, I am currently looking for a position as a sales/business development representative in the tech industry in order to discover this world that I am really interested in and accomplish my objectives. Feel free to contact me directly on LinkedIn or via email at alexandre.frank1995@gmail.com for any purpose.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.5868882,\n                    \"lon\": -82.9195514\n                },\n                \"formattedAddress\": \"Clinton Twp, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 2037,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"smX9Bn8BdbruSb0IJPtG\",\n            \"canonical\": \"https://www.linkedin.com/in/john-dombrowski-73366217b\",\n            \"fullname\": \"John Dombrowski\",\n            \"headline\": \"Lead Technical Program Manager\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQFN04P4AG0waA/profile-displayphoto-shrink_800_800/0/1652136411179?e=2147483647&v=beta&t=JM0HubgCj6tg3zSyGv-ms3U8Ra6P2db96Y1-GvWhtiw\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/john-dombrowski-73366217b\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Bridgestone Corporation\",\n                    \"position\": \"Lead Technical Program Manager\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-11-01\",\n                    \"leaveDate\": \"2022-05-01\",\n                    \"company\": \"DAVCO TECHNOLOGIES INC\",\n                    \"position\": \"Senior Engineering Project Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Lead Vehicle Dynamics Performance Engineer Full Size Truck\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Kettering University\",\n                    \"subTitle\": \"Bachelor of Science Mechanical Engineering (Automotive Specialty)\"\n                },\n                {\n                    \"title\": \"Macomb Community College\",\n                    \"subTitle\": \"Associate's degreeAutomotive Body Design\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696170777641,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Engineering leader with extensive experience in product development, vehicle dynamics integration, chassis component design, and engineering technical positions. Proven leader adept at managing multiple programs from concept to production launch while meeting challenging deadlines and technical requirements. Solid business acumen with a valuable blend of leadership skills and technical knowledge resulting in significant contributions to the organization bottom line. Specialties: Project management, communication skills, vehicle dynamics development, steering development, off-road development, competitive benchmarking, performance testing, analysis modeling, mentoring and coaching.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 1430,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"QP20Tn8BdbruSb0IyhoG\",\n            \"canonical\": \"https://www.linkedin.com/in/thomas-hosmer-20971851\",\n            \"fullname\": \"Thomas Hosmer\",\n            \"headline\": \"Director Car Dealer Channel at Bridgestone Americas\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5103AQE2dFUEsCYnhg/profile-displayphoto-shrink_800_800/0/1516526849992?e=2147483647&v=beta&t=Cfo1FQFsft3lrfiupZA0p61X6-jV0hFJF8oZnJRk4Gs\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/thomas-hosmer-20971851\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-04-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Bridgestone Corporation\",\n                    \"position\": \"Director Car Dealer Channel\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2017-06-01\",\n                    \"leaveDate\": \"2021-04-01\",\n                    \"company\": \"Maserati\",\n                    \"position\": \"Head of Aftersales Parts, Accessories & Merchandise\",\n                    \"description\": \"Lead the Commercial Team that is responsible for all activities related to aftersales parts, accessories, merchandise, equipment, pre-paid maintenance, & extended warranties for Maserati North & South America. Responsibilities include: product development, sales, marketing, promotions, plan and implement business growth strategies, and oversight of the P & L.\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Product Line Manager--Mopar Maintenance Portfolio\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2009-03-01\",\n                    \"leaveDate\": \"2012-07-01\",\n                    \"company\": \"Hubbard Auto Center\",\n                    \"position\": \"Service Manager/Store Owner\",\n                    \"description\": \"Ran the day-to-day operations. Performed HR duties such as interviewing, hiring, reprimanding, and terminating employees. Managed 4 employees. Ordered and maintaining parts inventory. Created a competitive pricing structure, while consistently growing year-over-year net profit. Created and developed complete marketing strategy, including company website, direct mail, email blasts, company newsletter, building signage, and local promotions.\"\n                },\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"Motor Cities National Heritage Area\",\n                    \"position\": \"Board Member\",\n                    \"description\": \"Developed marketing plans, membership structure, operating budget, and overall strategic planning.\"\n                },\n                {\n                    \"hiredDate\": \"2003-08-01\",\n                    \"leaveDate\": \"2009-02-01\",\n                    \"company\": \"Goodyear Franchise\",\n                    \"position\": \"Store Manager\",\n                    \"description\": \"Managed day-to-day operations of the facility including six employees. Managed inventory stocking levels. Wrote and presented estimates to customers. Completed manufactures product training.\"\n                },\n                {\n                    \"hiredDate\": \"2001-04-01\",\n                    \"leaveDate\": \"2003-07-01\",\n                    \"company\": \"Lemmon Grand Chevrolet. Buick, Pontiac\",\n                    \"position\": \"Service Advisor\",\n                    \"description\": \"Ensured each customer received a world class experience when interacting with the dealership. Created quotes and advised customers on needed vehicle repairs. Completed manufactures product training.\"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2003-01-01\",\n                    \"company\": \"Thomas Hosmer Racing\",\n                    \"position\": \"Race Car Driver\",\n                    \"description\": \"Raced stock cars on dirt ovals in the Michigan/Ohio region. Built and setup my own race cars. Spent a lot of time and money learning what it takes to be competitive in auto racing, and loved every minute of it....\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Ferris State University\",\n                    \"subTitle\": \"Associate's degreeAutomotive Technology\"\n                },\n                {\n                    \"title\": \"Baker College of Jackson\",\n                    \"subTitle\": \"Bachelor of Business Administration (B.B.A.)Marketing\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696169752336,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Nothing gets me charged more than leading a team to achieving strong targets. I also enjoy discussing and strategizing about the future of the automotive industry including new modes of mobility, connected technology, autonomous vehicles, and world class customer service. I am a self-starter that has always been passionate about all things Automotive/Transportation related. From racing stock cars on high-banked dirt tracks, to giving presentations on the past, present, and future of automotive technology, I enjoy both getting my hands dirty to restore a classic car, and developing a creative solution to a challenging business case.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6819,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"E76E926B48E572AE9A00EF7FB87DB3DC\",\n            \"canonical\": \"https://www.linkedin.com/in/stevekhoe\",\n            \"fullname\": \"Steve Khoe\",\n            \"headline\": \"Enterprise Sales Leader | Electrification | DE&I | Engineer | NFL Owner | Scottish Lord\",\n            \"location\": \"Royal Oak, Michigan\",\n            \"industry\": \"marketing and advertising\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4D03AQEqo7O2NGuu6Q/profile-displayphoto-shrink_800_800/0/1579880452044?e=2147483647&v=beta&t=iHQbKsj2mSF4GCGtOaB8KngbW_-IIqro061BWcsM6k4\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/stevekhoe\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2019-04-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Vitesco Technologies Group AG\",\n                    \"position\": \"Sales Manager\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2014-11-01\",\n                    \"leaveDate\": \"2019-03-01\",\n                    \"company\": \"Magna International, Inc.\",\n                    \"position\": \"Account Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2013-04-01\",\n                    \"leaveDate\": \"2014-10-01\",\n                    \"company\": \"Illinois Tool Works Inc.\",\n                    \"position\": \"Account Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2012-04-01\",\n                    \"leaveDate\": \"2013-04-01\",\n                    \"company\": \"One Up Consulting\",\n                    \"position\": \"Marketing Specialist / Account Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2009-07-01\",\n                    \"leaveDate\": \"2012-02-01\",\n                    \"company\": \"Alert Medical\",\n                    \"position\": \"Marketing and Project Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2011-08-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"Alert Communications Inc\",\n                    \"position\": \"Project Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"2011-06-01\",\n                    \"company\": \"TRUST Brands Inc\",\n                    \"position\": \"Director of Marketing / Founder\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2006-09-01\",\n                    \"leaveDate\": \"2009-07-01\",\n                    \"company\": \"Toyota Motor Corporation\",\n                    \"position\": \"Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2003-01-01\",\n                    \"leaveDate\": \"2005-01-01\",\n                    \"company\": \"TRW\",\n                    \"position\": \"Co-Op\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2000-09-01\",\n                    \"leaveDate\": \"2001-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Intern\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan-Dearborn\",\n                    \"subTitle\": \"Bachelor of Science (B.S.)Electrical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696166150284,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"An experienced & high-performing Technical Sales Leader & Account Manager, with previous roles supporting Small Business Management, Marketing & Project Management, and Electrical Engineering. Curious and passionate about trends in artificial intelligence, cybersecurity, DE&I, electrification & mobility, marketing/branding, business strategy & development, entrepreneurship, investing & finance, economics, and society Shareholder of the Green Bay Packers and landowner in the Scottish highlands. → Highly-skilled written and verbal communicator → Effective leader, presenter, and collaborator → Focused project manager → Fiercely analytical, data-driven, customer-focused, creative thinker and problem solver → Positive, motivated, friendly, and adaptable Simplicity is the ultimate sophistication. -Da Vinci Hakuna Matata. -Timon & Pumbaa Skills & Training Overview: Dale Carnegie Explore Leadership, IMPACT Selling, Karrass Negotiation, Costing & Finance, Presentation Skills, Cultural Awareness (Mexican, Japanese, and German/Austrian), Crucial Conversations & Crucial Accountability, OEM Supplier Portals (Toyota, Nissan, Honda, Mazda), Franklin Covey (The 7 Habits of Highly Effective People, The 5 Choices of Extraordinary Productivity), Technical Sales, Brand Strategy, Relationship Building, Sales Presentation, Quoting Strategy, OneNote, OEM Supplier Portals, Effective Email & Time Management (zero inbox; “Getting Things Done”), Project Management, Marketing, Direct Mail Advertising, e-Commerce, Website Design, Compliance, Medical Billing, Social Media, Graphic Design, Copywriting, Client Relations, Facebook Advertising, Google AdWords, Japanese Language (Beginner), Supplier Negotiation, VE/VA, A3 Reporting, Toyota Practical Problem Solving, CATIA V5, DRBFM, Y14.5M-1994 GD&T, Plant Auditing, Project Management, SPICE, Design\",\n            \"skills\": [\n                \"Product Development\",\n                \"Project Management\",\n                \"Continuous Improvement\",\n                \"Marketing Strategy\",\n                \"Automotive\",\n                \"Process Improvement\",\n                \"Program Management\",\n                \"Social Media Marketing\",\n                \"Marketing\",\n                \"Sales Engineering\",\n                \"Electrical Engineering\",\n                \"Negotiation\",\n                \"Time Management\",\n                \"Sales\",\n                \"Facebook\",\n                \"Online Marketing\",\n                \"Digital Marketing\",\n                \"Advertising\",\n                \"Account Management\",\n                \"Writing\",\n                \"Packaging Artwork\",\n                \"Marketing Material Creation\",\n                \"Branding Ideas\",\n                \"Verbal & Written Communicator\",\n                \"DRBFM\",\n                \"Team Leadership\",\n                \"Engineering\",\n                \"Project Planning\",\n                \"Training\",\n                \"Brand Development\",\n                \"Leadership\",\n                \"Manufacturing\",\n                \"Social Media\",\n                \"Public Relations\",\n                \"Management\",\n                \"Strategy\",\n                \"Online Advertising\",\n                \"Analysis\",\n                \"Market Research\",\n                \"Creative Direction\",\n                \"Copywriting\",\n                \"E-commerce\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4894801,\n                    \"lon\": -83.1446485\n                },\n                \"formattedAddress\": \"Royal Oak, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6970,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"1C41509505317C075ACD7051CBA99A4A\",\n            \"canonical\": \"https://www.linkedin.com/in/susan-callaghan-b2997315\",\n            \"fullname\": \"Susan Callaghan\",\n            \"headline\": \"Senior Account Executive at Gartner\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"information technology and services\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQE4XI5RdF_f2Q/profile-displayphoto-shrink_800_800/0/1545850079593?e=2147483647&v=beta&t=WteO3i8Vs4yOLojPPNnl7UN3pTGM2Iw0HSkyfRpF8sA\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/susan-callaghan-b2997315\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2018-11-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Gartner, Inc.\",\n                    \"position\": \"Senior Account Executive\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Thomson Reuters\",\n                    \"position\": \"Enterprise Account Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1997-12-01\",\n                    \"leaveDate\": \"2009-08-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Tax Manager\",\n                    \"description\": \"Responsible for managing the Federal, state and local tax processes for worldwide operations. Served as outsourcing liaison for informational reporting relationship both internally and externally and provided support to audit and planning groups when appropriate. Served as main point of contact for new tax employees as they integrated into the General Motors culture. Selected achievements:  Represented General Motors on the ONESOURCE Income Tax Steering Committee meeting 4x a year Show more Responsible for managing the Federal, state and local tax processes for worldwide operations. Served as outsourcing liaison for informational reporting relationship both internally and externally and provided support to audit and planning groups when appropriate. Served as main point of contact for new tax employees as they integrated into the General Motors culture. Selected achievements:  Represented General Motors on the ONESOURCE Income Tax Steering Committee meeting 4x a year providing insight and guidance to the product roadmap  Streamlined administration tasks related to preparation, review, signature and e-filing General Motors Corporation and Subsidiaries Federal return reducing preparation/consolidation time by 20%  Developed and delivered technical and functional training plans for offsite locations enabling efficiency during preparation and review of work programs Show less\"\n                },\n                {\n                    \"hiredDate\": \"1996-08-01\",\n                    \"leaveDate\": \"1997-12-01\",\n                    \"company\": \"Price Waterhouse\",\n                    \"position\": \"Tax Analyst\",\n                    \"description\": \"Prepared Federal, state and local tax returns for a wide variety of clients. Served as main point of contact for required documentation by taxing authorities in response to Federal and state audit requests. Selected achievements:  Loan staff to Fortune #10 tax department enabling a successful compliance season which led to full-time employment\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Walsh College\",\n                    \"subTitle\": \"Master of ScienceTaxation\"\n                },\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Bachelor of ArtsAccounting\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696164239532,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Enterprise Account Manager with expansive knowledge achieved through understanding tax department challenges, developing value-driven strategies, and delivering measurable improvements to critical business systems and tax technology processes. Strategic partner with an established reputation of collaboration to identify opportunities for improvements and who is passionate about establishing client relationships, developing rapport and generating long-term revenue and profit. Areas of Expertise Tax Technology  Corporate Tax  Relationship Selling  Strategic Account Development  Customer-Oriented\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6543,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"19C1D2051537B9CF80852BBEA628D143\",\n            \"canonical\": \"https://www.linkedin.com/in/akinkunle-akinlua-453b9538\",\n            \"fullname\": \"Akinkunle Akinlua\",\n            \"headline\": \"Accounting Clerk at Vision Information Technologies\",\n            \"location\": \"Detroit, Michigan\",\n            \"industry\": \"Human Resources\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQEzBEj1XPONIA/profile-displayphoto-shrink_800_800/0/1516359866444?e=2147483647&v=beta&t=CkVYSyZ6vtFeb9vbxR9UdNK2Tq2ThknGlm5rT6cm-Vo\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/akinkunle-akinlua-453b9538\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2015-12-01\",\n                    \"leaveDate\": \"2016-05-01\",\n                    \"company\": \"Veritiv Corporation\",\n                    \"position\": \"Payroll Specialist\",\n                    \"description\": \"Processed commissions and payroll; auditing, bank reconciliations, process improvement, month-end responsibilities etc.\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Early Response Adviser\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Burroughs, Inc.\",\n                    \"position\": \"Customer Service\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Yoruba\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"Bachelor of Applied Science (B.A.Sc.)Finance, General\"\n                },\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"Bachelor of Applied Science (B.A.Sc.)Human Resources Management/Personnel Administration, General\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696160001792,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Seeking a position in the accounting/finance field where my excellent analytical and technical skills can be utilized to improve the profitability of the organization.\",\n            \"skills\": [\n                \"HRIS proficient; highly proficient operating Microsoft Office: Excel, Visio, etc\",\n                \"Economics\",\n                \"PowerPoint\",\n                \"Microsoft Office\",\n                \"Teamwork\",\n                \"Leadership\",\n                \"Research\",\n                \"Microsoft Word\",\n                \"Java\",\n                \"Business Planning\",\n                \"Customer Service\",\n                \"Financial Analysis\",\n                \"Microsoft Excel\",\n                \"Public Speaking\",\n                \"Accounting\",\n                \"Time Management\",\n                \"Management\",\n                \"Outlook\",\n                \"Human Resources\",\n                \"Visio\",\n                \"Payroll\",\n                \"Sales\",\n                \"Analysis\",\n                \"Team Leadership\",\n                \"Access\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.331427,\n                    \"lon\": -83.0457538\n                },\n                \"formattedAddress\": \"Detroit, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 152,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"DB5674DECB4D19BE8704419DA476B4F1\",\n            \"canonical\": \"https://www.linkedin.com/in/jawwad-sayeed-68264967\",\n            \"fullname\": \"Jawwad Sayeed\",\n            \"headline\": \"Senior Electrical Design Engineer at BGM-ES\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media-exp1.licdn.com/dms/image/C5603AQGDb1to6mk0Ng/profile-displayphoto-shrink_200_200/0/1573050793903?e=2147483647&v=beta&t=PLhsSG70hUGw8kX-WhQqGmtEexHgZhNw24swAlTi_lA\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/jawwad-sayeed-68264967\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-02-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"BGM Electronic Services\",\n                    \"position\": \"Senior Electrical Design Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2018-10-01\",\n                    \"leaveDate\": \"2022-08-01\",\n                    \"company\": \"Flex Ltd.\",\n                    \"position\": \"Senior Hardware Design and Development Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2017-05-01\",\n                    \"leaveDate\": \"2018-10-01\",\n                    \"company\": \"Emphatec Inc.\",\n                    \"position\": \"Hardware Design Engineer\",\n                    \"description\": \" Designed multiple robust CSA/UL approved products for use within industrial environments following ISO standards.  Hardware design for various applications, including analog and digital systems.  Designed firmware using C language for multiple products on Cypress PSOC4/5.  Designed a sensor front-end processor to interface multiple sensors with PLC GPIO systems.  Designed a solenoid power saving driver.  Designed a switched mode power supply with an embedded health Show more  Designed multiple robust CSA/UL approved products for use within industrial environments following ISO standards.  Hardware design for various applications, including analog and digital systems.  Designed firmware using C language for multiple products on Cypress PSOC4/5.  Designed a sensor front-end processor to interface multiple sensors with PLC GPIO systems.  Designed a solenoid power saving driver.  Designed a switched mode power supply with an embedded health monitoring system.  Designed a relay status monitor, voltage sensor monitor, and a relay driver with built in logic functions.  Designed test jigs for automated testing of products.  Manage multiple projects at a time.  Manage all documentation related to projects, including bill of materials, test procedures, design review notes, and documents related to standards. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2016-09-01\",\n                    \"leaveDate\": \"2017-05-01\",\n                    \"company\": \"4D Retail Technology Corp.\",\n                    \"position\": \"Electronics Engineer\",\n                    \"description\": \" Developing product from prototyping phase to commercialization.  Designed PCBs for product development.  Closed loop control systems design and implementation to accurately maintain temperature of robot.  Embedded C and assembly level coding for TI ARM Cortex-M processor and ATMega microcontrollers.  Optimized power distribution, and designed new power management system for the Space Genius robot.  Designed and implemented centralized controller for space genius Show more  Developing product from prototyping phase to commercialization.  Designed PCBs for product development.  Closed loop control systems design and implementation to accurately maintain temperature of robot.  Embedded C and assembly level coding for TI ARM Cortex-M processor and ATMega microcontrollers.  Optimized power distribution, and designed new power management system for the Space Genius robot.  Designed and implemented centralized controller for space genius robot.  Reduced complexity, and cost of production for the space genius robot.  Testing and integration of new components introduced to the space genius robot.  Troubleshooting system failures, and developing improvement strategies to prevent future failures. Show less\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Body Shop Production Supervisor (Flex)\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2014-01-01\",\n                    \"leaveDate\": \"2015-08-01\",\n                    \"company\": \"IEEE-UOIT\",\n                    \"position\": \"Project Coordination Team Member\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2013-05-01\",\n                    \"leaveDate\": \"2013-08-01\",\n                    \"company\": \"Canadian National Railway Company\",\n                    \"position\": \"Signals and Communications Intern\",\n                    \"description\": \"Assisted in designing, verifying, and updating blueprints for new and existing crossings. Assisted with management work, which included cost control, evaluations, and generating reports. Designed programs that generated trouble call reports, helped with scheduling, and helped with inventory. All the field supervisors working at CN in the state of Wisconsin now use these programs. Tested, installed, and maintained railway crossings and wayside signals on the field, as well as some Show more Assisted in designing, verifying, and updating blueprints for new and existing crossings. Assisted with management work, which included cost control, evaluations, and generating reports. Designed programs that generated trouble call reports, helped with scheduling, and helped with inventory. All the field supervisors working at CN in the state of Wisconsin now use these programs. Tested, installed, and maintained railway crossings and wayside signals on the field, as well as some design. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2012-05-01\",\n                    \"leaveDate\": \"2012-07-01\",\n                    \"company\": \"Vision Fiber Optic Ltd\",\n                    \"position\": \"Quality and Assurance intern\",\n                    \"description\": \" Tested fiber optic cables using optic time-domain readers.  Designed 2D and 3D drawings of fiber optic cables using CAD based on customer specifications.  Promoted within a week based on adaptability, and efficiency.\"\n                }\n            ],\n            \"languagesList\": [\n                \"Urdu\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Ontario Institute of Technology\",\n                    \"subTitle\": \"Master of applied sciencesElectrical and Electronics Engineering3.90\"\n                },\n                {\n                    \"title\": \"University of Ontario Institute of Technology\",\n                    \"subTitle\": \"Bachelor of Engineering (B.Eng.)Electrical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696105131760,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I have had experience in design, project management, maintenance, and quality and assurance. I demonstrate good leadership in school and in the work force, I am a team player. Most of all I love to learn new and exciting things. In the past I have taught myself multiple different programming languages. I have good technical skills, thorough knowledge of electronic components, circuit design principles and techniques. I have familiarity using electrical test equipment such as oscilloscopes, DVM, logic analyzers, power supplies, and optical time-domain reflectometeres (OTDRs). If youre looking for a candidate that is an excellent team player, takes initiative and is willing to take on exciting and challenging projects look no further. To learn more about me and my experience call me or email me at: e-mail: jawwadsayeed19@gmail.com Thank you SKILLS: Circuit design, Multi-sim, FPGA, robots, VHDL, Verilog, PLC, C, C++, MatLab, Assembly Language, Simulink, Fritzing, Visio, Excel, Java, oscilloscopes, multi-meters, power supplies, HMI, manufacturing process, design process, microprocessors, optical time domain reflectometers, transformers, generators, motors, relays, amplifiers, electronics, embedded systems, communication systems, digital signal processing.\",\n            \"skills\": [\n                \"Engineering\",\n                \"Electrical Engineering\",\n                \"Design\",\n                \"Electronics Hardware Design\",\n                \"Circuit Design\",\n                \"Circuit Analysis\",\n                \"Electronics\",\n                \"C\",\n                \"Power Electronics\",\n                \"Multisim\",\n                \"Matlab\",\n                \"Simulink\",\n                \"EagleCAD\",\n                \"Verilog\",\n                \"Problem Solving\",\n                \"Java\",\n                \"C++\",\n                \"Microsoft Excel\",\n                \"Teamwork\",\n                \"Management\",\n                \"Public Speaking\",\n                \"Leadership\",\n                \"Analysis\",\n                \"Research\",\n                \"Xilinx\",\n                \"Project Management\",\n                \"Manufacturing\",\n                \"Automation\",\n                \"Project Planning\",\n                \"Process Improvement\",\n                \"Programming\",\n                \"Product Development\",\n                \"Microsoft Project\",\n                \"PLC\",\n                \"Automotive\",\n                \"VHDL\",\n                \"Testing\",\n                \"Troubleshooting\",\n                \"Simulations\",\n                \"Visio\",\n                \"FPGA\",\n                \"Great\",\n                \"•\",\n                \"Has errors\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 3315,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"25B21C50884406F908067614B2DEAA81\",\n            \"canonical\": \"https://www.linkedin.com/in/mujadded-qureshi-68860431\",\n            \"fullname\": \"Mujadded Qureshi\",\n            \"headline\": \"Manufacturing Quality Engineer at Apple\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media-exp1.licdn.com/dms/image/C4E03AQHLFXCorAd9mg/profile-displayphoto-shrink_800_800/0/1552661158397?e=2147483647&v=beta&t=55lWp3vinMOS-GpYJKFSzDyk2spGr0xcxcbf6OdI-AY\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/mujadded-qureshi-68860431\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-06-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Rivian Automotive, Inc.\",\n                    \"position\": \"Lead Supplier Development Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2022-06-01\",\n                    \"leaveDate\": \"2023-06-01\",\n                    \"company\": \"Apple Inc.\",\n                    \"position\": \"Manufacturing Quality Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2021-02-01\",\n                    \"leaveDate\": \"2022-06-01\",\n                    \"company\": \"Tesla, Inc.\",\n                    \"position\": \"Senior Manufacturing Quality Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Advanced Aluminum Technology Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Magna International, Inc.\",\n                    \"position\": \"Advanced Quality Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Kettering University\",\n                    \"subTitle\": \"Bachelors of ScienceMechanical Engineering\"\n                },\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"Master of Science - MSEngineering/Industrial Management\"\n                },\n                {\n                    \"title\": \"Hochschule Ulm\",\n                    \"subTitle\": \"Bachelor of Science (B.S.)Mechanical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1696100544501,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Experienced Project Management Engineer with a demonstrated history in the automotive industry. Skilled in Advanced Product Quality Planning (APQP), Root Cause Analysis, Manufacturing Engineering, Mechanical Engineering, and Project Management. Strong engineering professional with a Master of Science - Engineering Management from Oakland University.\",\n            \"skills\": [\n                \"Finite Element Analysis\",\n                \"Engineering\",\n                \"Machining\",\n                \"Microsoft Office\",\n                \"Teamcenter\",\n                \"Unigraphics\",\n                \"NX 5\",\n                \"GD&T\",\n                \"Manufacturing Engineering\",\n                \"DFMEA\",\n                \"Catia\",\n                \"FMEA\",\n                \"APQP\",\n                \"PPAP\",\n                \"Automotive\",\n                \"Mechanical Engineering\",\n                \"Automotive Engineering\",\n                \"Lean Manufacturing\",\n                \"Advanced Product Quality Planning (APQP)\",\n                \"Powertrain\",\n                \"CAD\",\n                \"Minitab\",\n                \"Root Cause Analysis\",\n                \"Failure Mode and Effects Analysis (FMEA)\",\n                \"Design for Manufacturing\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 971,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"DBE96337F230D8C2CEBA74D155C272D2\",\n            \"canonical\": \"https://www.linkedin.com/in/jbowen\",\n            \"fullname\": \"Jack Bowen\",\n            \"headline\": \"\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"marketing and advertising\",\n            \"picture\": \"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/1/000/002/2b1/2c086c2.jpg\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/jbowen\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Chief Outsiders\",\n                    \"position\": \"Chief Marketing Officer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2019-11-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"JMB, LLC\",\n                    \"position\": \"Chief Marketing Officer\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2018-10-01\",\n                    \"leaveDate\": \"2019-11-01\",\n                    \"company\": \"Author Solutions, LLC\",\n                    \"position\": \"Chief Marketing Officer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2017-08-01\",\n                    \"leaveDate\": \"2018-09-01\",\n                    \"company\": \"Harrison College\",\n                    \"position\": \"CMO\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2002-01-01\",\n                    \"leaveDate\": \"2017-01-01\",\n                    \"company\": \"Detroit Golf Club\",\n                    \"position\": \"Member\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2014-10-01\",\n                    \"leaveDate\": \"2016-01-01\",\n                    \"company\": \"AcademixDirect, Inc.\",\n                    \"position\": \"Chief Marketing Officer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2012-08-01\",\n                    \"leaveDate\": \"2014-09-01\",\n                    \"company\": \"Education Management Corporation -- EDMC\",\n                    \"position\": \"CMO, President, Marketing & Advertising\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2010-11-01\",\n                    \"leaveDate\": \"2012-07-01\",\n                    \"company\": \"Acxiom / Media Inc\",\n                    \"position\": \"Managing Partner\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2005-10-01\",\n                    \"leaveDate\": \"2010-01-01\",\n                    \"company\": \"Urban Science Applications, Inc\",\n                    \"position\": \"CMO\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2005-01-01\",\n                    \"leaveDate\": \"2008-01-01\",\n                    \"company\": \"Detroit Lacrosse Club\",\n                    \"position\": \"Parent\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"General Manager Digital, Online and CRM\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1986-09-01\",\n                    \"leaveDate\": \"1996-08-01\",\n                    \"company\": \"Leo Burnett Worldwide, Inc.\",\n                    \"position\": \"Account Director\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1981-05-01\",\n                    \"leaveDate\": \"1986-08-01\",\n                    \"company\": \"United States Army\",\n                    \"position\": \"Captain\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"French\",\n                \"German\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Southern California\",\n                    \"subTitle\": \"MS\"\n                },\n                {\n                    \"title\": \"United States Military Academy at West Point\",\n                    \"subTitle\": \"BS General Engineering\"\n                },\n                {\n                    \"title\": \"Trinity High\",\n                    \"subTitle\": \"-\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1695090974211,\n            \"military\": true,\n            \"clearance\": true,\n            \"about\": \"\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 13229,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"039BC596F89B72B6515257B1B5DB36A1\",\n            \"canonical\": \"https://www.linkedin.com/in/jwhitty\",\n            \"fullname\": \"Jessica Whitty\",\n            \"headline\": \"Senior Talent Acquisition Partner| Mental Health Advocate\",\n            \"location\": \"Richmond, Michigan\",\n            \"industry\": \"E-Learning\",\n            \"picture\": \"https://media.licdn.com/dms/image/D5603AQEpoAEnX9K29w/profile-displayphoto-shrink_100_100/0/1666012371973?e=1700092800&v=beta&t=IF0DelzmbqeoeMPFzgCw4T3grpetLvG5_Sf1otsjhKI\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/jwhitty\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Walker-Miller Energy Services\",\n                    \"position\": \"Senior Talent Acquisition Partner\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2022-10-01\",\n                    \"leaveDate\": \"2023-02-01\",\n                    \"company\": \"Better Life Partners\",\n                    \"position\": \"Talent Acquisition Partner\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \"\n                },\n                {\n                    \"hiredDate\": \"2021-11-01\",\n                    \"leaveDate\": \"2022-08-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Technical Talent Specialist\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \"\n                },\n                {\n                    \"hiredDate\": \"2021-02-01\",\n                    \"leaveDate\": \"2021-11-01\",\n                    \"company\": \"Walker-Miller Energy Services\",\n                    \"position\": \"Talent Acquisition Manager\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2020-05-01\",\n                    \"leaveDate\": \"2021-02-01\",\n                    \"company\": \"Trillium Teamologies, Inc.\",\n                    \"position\": \"Senior Resource Development Specialist\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2018-07-01\",\n                    \"leaveDate\": \"2019-11-01\",\n                    \"company\": \"ABM Industries Incorporated\",\n                    \"position\": \"Talent Acquisition Manager\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \"\n                },\n                {\n                    \"hiredDate\": \"2013-06-01\",\n                    \"leaveDate\": \"2018-05-01\",\n                    \"company\": \"Allegis Global Solutions\",\n                    \"position\": \"Recruiting Manager\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \"\n                },\n                {\n                    \"hiredDate\": \"2012-04-01\",\n                    \"leaveDate\": \"2013-06-01\",\n                    \"company\": \"North American Bancard & Pay Anywhere\",\n                    \"position\": \"Corporate Recruiter\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \"\n                },\n                {\n                    \"hiredDate\": \"2009-03-01\",\n                    \"leaveDate\": \"2012-03-01\",\n                    \"company\": \"Kelly Services, Inc.\",\n                    \"position\": \"U.S. Services- Recruiter\",\n                    \"description\": \"                                                                                                                                                                                                                                           \"\n                },\n                {\n                    \"hiredDate\": \"2008-02-01\",\n                    \"leaveDate\": \"2009-03-01\",\n                    \"company\": \"Kelly Services, Inc.\",\n                    \"position\": \"Recruiter - Outsourcing and Consulting Group\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \"\n                },\n                {\n                    \"hiredDate\": \"2006-04-01\",\n                    \"leaveDate\": \"2008-02-01\",\n                    \"company\": \"Kelly Services, Inc.\",\n                    \"position\": \"Sr. Sourcing Specialist - Outsourcing and Consulting Group\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \"\n                },\n                {\n                    \"hiredDate\": \"2004-03-01\",\n                    \"leaveDate\": \"2006-03-01\",\n                    \"company\": \"Allstate Insurance\",\n                    \"position\": \"HR Associate - Regional Recruiter\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                   \"\n                },\n                {\n                    \"hiredDate\": \"2002-03-01\",\n                    \"leaveDate\": \"2004-03-01\",\n                    \"company\": \"Aflac Incorporated\",\n                    \"position\": \"Regional Recruiting Coordinator\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                             \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Walsh College\",\n                    \"subTitle\": \"MBAInternational Business\"\n                },\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"BSHuman Resources\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1695090150503,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Lifes too short to not love what you do! Throughout my career, I’ve worked with diverse clients and candidates in various industries across the US and Canada. My commitment to strategically targeting and identifying top talent has earned me the reputation of being an expert partner in the talent acquisition space. I have a diverse background in supporting Mental Health/Recovery Addiction, Automotive, Corporate roles, Insurance, Financial Services, Institutional Investments, Clinical Research, Healthcare, Merchant Services, K20 Education, & IT as well as high volume and entry level to C-level hires. My specialties include: •Developing and leading the overall strategy and execution of Talent Acquisition Programs. •Leading, coaching, developing and mentoring Talent Acquisition teams. •Maintaining market expertise of industry trends and competitors. •Create, review, measure & manage SLAs, KPIs and metrics. •Outcome focused. •Best in class recruiting practices and continuous improvement. •Building partnerships with HR, Operations, Executive Leadership, Business Units, Vendors & Suppliers. •Identifying the right fit for the candidate, and the company! •Full-life cycle recruitment. •Corporate, contract & permanent placement recruitment, as well as Recruitment Process Outsourcing (RPO). •Background checks & negotiations. •ATS/CRM/HRIS: My Staffing Pro, Taleo, SilkRoad, Avature, Recruitsoft, Peoplesoft, Source Point, Share Point, Fieldglass, Active Recruiter, JazzHR, Workday, Monster, Jobalign, Open Hire, Team Member Gateway, Brass Ring, Oracle and Bullhorn.\",\n            \"skills\": [\n                \"Talent Acquisition\",\n                \"Applicant Tracking Systems\",\n                \"Sourcing\",\n                \"Screening\",\n                \"Technical Recruiting\",\n                \"Internet Recruiting\",\n                \"Hiring\",\n                \"College Recruiting\",\n                \"Onboarding\",\n                \"Contract Recruitment\",\n                \"Negotiation\",\n                \"Resume Writing\",\n                \"Vendor Management\",\n                \"Interviewing\",\n                \"Mentoring\",\n                \"Merchant Services\",\n                \"OFCCP\",\n                \"Team Leadership\",\n                \"Team Building\",\n                \"Leadership\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8091969,\n                    \"lon\": -82.7557554\n                },\n                \"formattedAddress\": \"Richmond, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7374,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"FXcveYEBdbruSb0I5sRA\",\n            \"canonical\": \"https://www.linkedin.com/in/belindacargile\",\n            \"fullname\": \"Belinda C.\",\n            \"headline\": \"Clinical Account Specialist at Biosense Webster\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/belindacargile\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Biosense Webster Inc\",\n                    \"position\": \"Clinical Account Specialist\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2020-01-01\",\n                    \"leaveDate\": \"2021-07-01\",\n                    \"company\": \"University of Michigan\",\n                    \"position\": \"Research Assistant\",\n                    \"description\": \"Working in the University of Michigan Neuromuscular Rehabilitation Robotics (NeuRRo) Laboratory to study motor learning and recovery after stroke  using advanced motion capture and physiological measurement techniques to study the biomechanics and neural plasticity during gait training.\"\n                },\n                {\n                    \"hiredDate\": \"2019-07-01\",\n                    \"leaveDate\": \"2019-12-01\",\n                    \"company\": \"Rainbow Rehabilitation Centers\",\n                    \"position\": \"Rehabilitation Assistant\",\n                    \"description\": \" Collaborated with the clinical treatment team, which included nurses and physical therapists, in order to ensure the safety and health of clients  Administered bedside care, performed healthcare-related tasks such as monitoring vital signs and medication; also aided in therapeutic rehabilitation programs\"\n                },\n                {\n                    \"hiredDate\": \"2018-08-01\",\n                    \"leaveDate\": \"2019-05-01\",\n                    \"company\": \"Ferris State University\",\n                    \"position\": \"Desk Service Assistant\",\n                    \"description\": \" Responsible for the overall operations involved with working the residence hall front desk.  Assisted residents, answered phones, performed functions with night security, checked out desk equipment, and assisted the hall director and desk manager as needed.  Performed various clerical duties, including opening mail, answering the telephone, etc.\"\n                },\n                {\n                    \"hiredDate\": \"2017-08-01\",\n                    \"leaveDate\": \"2018-02-01\",\n                    \"company\": \"Ferris State University\",\n                    \"position\": \"General Clerical\",\n                    \"description\": \" My duties included answering phones, data entry, filing, typing, and photocopying.  Other jobs included assisting faculty, scheduling appointments, research, assisting patrons and other general office duties.\"\n                },\n                {\n                    \"hiredDate\": \"2016-06-01\",\n                    \"leaveDate\": \"2016-08-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Student Corps Intern\",\n                    \"description\": \" Worked with my team on small start-ups and managed aspects of their restoration, repair and clean-up projects, from budgeting, planning and problem solving to execution.  Completed community service projects including community improvement projects and working in food banks.  Attended mentoring sessions and training programs to enhance employment skills.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan College of Engineering\",\n                    \"subTitle\": \"Bachelor of Engineering - BSE, Biomedical Engineering\"\n                },\n                {\n                    \"title\": \"Ferris State University\",\n                    \"subTitle\": \"Associate of Science - ASPre-Science\"\n                },\n                {\n                    \"title\": \"Madison high school\",\n                    \"subTitle\": \"-\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1694785358577,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 1218,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"2svsLH4B9VcM4flOtjvH\",\n            \"canonical\": \"https://www.linkedin.com/in/ellen-lu-a3bb926\",\n            \"fullname\": \"Ellen Lu\",\n            \"headline\": \"Senior Manager, Automotive Cybersecurity\",\n            \"location\": \"Novi, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static-exp1.licdn.com/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/ellen-lu-a3bb926\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Dana Incorporated\",\n                    \"position\": \"Senior Cybersecurity Manager\",\n                    \"description\": \"Head of product cybersecurity for Light Vehicle Business Unit - EV powertrain System & Software cybersecurity engineering. Building a brand new cybersecurity team and managing limited resources to efficiently work on multiple projects. Directing cybersecurity development (onboard HSM, SecOC, Secure boot, Secure update in AUTOSAR based architecture) and the delivery of full package of cybersecurity work products compliant with ISO 21434 standard.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"HARMAN International\",\n                    \"position\": \"Senior Manager, Automotive Cybersecurity Office\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2011-12-01\",\n                    \"leaveDate\": \"2012-12-01\",\n                    \"company\": \"A123 Systems\",\n                    \"position\": \"Sr. Software Engineer Lead\",\n                    \"description\": \"Deliver Battery Management System software\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Visteon Corporation\",\n                    \"position\": \"Lead Software Engineer\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Software Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"Master of Science (MS)Computer Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1694035845910,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"An expert skillfully navigating in automotive business environment to always succefully drive teams reaching goals, with 27 years of automotive industry engineering and management experience - first 18 years in ECU software, from validation to SW development and project management; then 4 years in system requirements management, followed by 2 years in program management, recent 3 years in automotive cybersecurity mamagement.\",\n            \"skills\": [\n                \"Embedded Systems\",\n                \"Embedded Software\",\n                \"Automotive\",\n                \"Engineering Management\",\n                \"C\",\n                \"Integration\",\n                \"Product Development\",\n                \"Electronics\",\n                \"Testing\",\n                \"Software Project Management\",\n                \"RTOS\",\n                \"Automotive Electronics\",\n                \"Systems Engineering\",\n                \"Software Design\",\n                \"Software Development\",\n                \"Debugging\",\n                \"Device Drivers\",\n                \"Microcontrollers\",\n                \"Manufacturing\",\n                \"Program Management\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.48059,\n                    \"lon\": -83.4754913\n                },\n                \"formattedAddress\": \"Novi, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 706,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"C20E0F535D607DD1EB689E219E6CC320\",\n            \"canonical\": \"https://www.linkedin.com/in/wendycurcuri\",\n            \"fullname\": \"Wendy Bauer\",\n            \"headline\": \"General Manager, AWS Automotive | AWS at Amazon | Chief Member | DEI Champion\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"computer software\",\n            \"picture\": \"https://media-exp1.licdn.com/dms/image/C4E03AQEzCMnX8SfGcg/profile-displayphoto-shrink_800_800/0/1641417112015?e=2147483647&v=beta&t=yYI7tWdP-5p0sTDxIu8apo26OxC7b-0pRETjV3UOMrM\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/wendycurcuri\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Amazon Web Services, Inc.\",\n                    \"position\": \"General Manager, Automotive & Manufacturing\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2022-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Chief\",\n                    \"position\": \"Member\",\n                    \"description\": \"Chief is a private network built to drive more women into positions of power and keep them there. Chief is the only organization specifically designed for senior women leaders to strengthen their leadership journey, cross-pollinate ideas across industries, magnify their influence, and pave the way to bring others with them.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Microsoft Corporation\",\n                    \"position\": \"Worldwide Manufacturing & Resources Industry, Business Strategy Leader\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2013-09-01\",\n                    \"leaveDate\": \"2016-07-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Global Sales Director - Electronics & Safety\",\n                    \"description\": \"Formerly Delphi, now Aptiv\"\n                },\n                {\n                    \"hiredDate\": \"2012-10-01\",\n                    \"leaveDate\": \"2013-09-01\",\n                    \"company\": \"Eaton Corporation, PLC\",\n                    \"position\": \"Director of Sales - Automotive\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2006-03-01\",\n                    \"leaveDate\": \"2012-09-01\",\n                    \"company\": \"DENSO International America, Inc.\",\n                    \"position\": \"Senior Sales Manager\",\n                    \"description\": \"Ford Motor Company - Global Electronics & Engine Electric Business April 2010 - September 2012 Nissan, Subaru, Mitsubishi - North America Thermal, Powertrain, Electronics & Engine Electric Business March 2006 - March 2010\"\n                },\n                {\n                    \"hiredDate\": \"1994-10-01\",\n                    \"leaveDate\": \"2006-02-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Purchasing, Finance Cost Estimating, Product Design Engineering, Quality Engineering\",\n                    \"description\": \"Variety of positions across functional organizations: * Cost Reduction Manager (Purchasing) - Vehicle Line Team * Finance Cost Estimating - Process Development * Product Design Engineering * Vehicle Assembly (Quality) Engineering * Engineering Co-op Student\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Indiana University - Kelley School of Business\",\n                    \"subTitle\": \"MBAGeneral Management\"\n                },\n                {\n                    \"title\": \"Purdue University\",\n                    \"subTitle\": \"MSEngineering\"\n                },\n                {\n                    \"title\": \"Kettering University\",\n                    \"subTitle\": \"B.S.Electrical Eng. & B.S. Mechanical Eng.\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693991451339,\n            \"military\": false,\n            \"clearance\": true,\n            \"about\": \"\",\n            \"skills\": [\n                \"Automotive\",\n                \"Global Business Development\",\n                \"Sales Management\",\n                \"Strategic Planning\",\n                \"Product Development\",\n                \"Cross-functional Team Leadership\",\n                \"Powertrain\",\n                \"Vehicles\",\n                \"Continuous Improvement\",\n                \"Engineering\",\n                \"Root Cause Analysis\",\n                \"PDCA\",\n                \"Business Process Improvement\",\n                \"Cost Reduction Strategies\",\n                \"APQP\",\n                \"Supply Chain Management\",\n                \"Kaizen\",\n                \"Team Building\",\n                \"Purchasing\",\n                \"New Business Development\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8379,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"3D2A1AA6D9BF1620B1FC24E9A356FC5C\",\n            \"canonical\": \"https://www.linkedin.com/in/scott-ertell-6925218\",\n            \"fullname\": \"Scott Ertell\",\n            \"headline\": \"Wellspring Lutheran Services\",\n            \"location\": \"Dearborn, Michigan\",\n            \"industry\": \"information technology and services\",\n            \"picture\": \"https://media-exp1.licdn.com/dms/image/C4E03AQErbi2TtKpJNg/profile-displayphoto-shrink_400_400/0/1553782357497?e=1635379200&v=beta&t=SaHlCARIOjjZW2rdzF3Nagv9DqHNQesV8HSoG6NV8BI\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/scott-ertell-6925218\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2015-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Wellspring Lutheran Services\",\n                    \"position\": \"IT Helpdesk Technician I\",\n                    \"description\": \" Reset email and network passwords  Create New User accounts; including AD, email, shared drive access and setup laptops, network printers and configuring Outlook.  Complete Termination request, disabling all user accounts  Trouble shoot Wi-Fi and connectivity issues  Troubleshooting email locking up, sharing calendar and setting up supervisors with access to terminated employees email.  Troubleshoot Xerox WorkCentre printer issues  Setting Show more  Reset email and network passwords  Create New User accounts; including AD, email, shared drive access and setup laptops, network printers and configuring Outlook.  Complete Termination request, disabling all user accounts  Trouble shoot Wi-Fi and connectivity issues  Troubleshooting email locking up, sharing calendar and setting up supervisors with access to terminated employees email.  Troubleshoot Xerox WorkCentre printer issues  Setting permissions on shared drives  New employee setup (laptop, printers, shared drives, phones and key fobs)  Update IT Inventory and Employee Status Report Sheet Show less\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2010-12-01\",\n                    \"leaveDate\": \"2013-06-01\",\n                    \"company\": \"Corporation Service Company\",\n                    \"position\": \"Incident Coordinator\",\n                    \"description\": \"Assign tickets to technicians according to locations to resolve issue. Work as an integral part of a team of many different Incident Coordinators. Review all tickets to drive efficiencies and decrease resolution times. Escalate productivity issues to the Incident Managers and Site Managers. Monitor and assign tickets from filtering queue to the help desk so tickets can be created. Resign ticket per technician request to different support group through a buy-off request Show more Assign tickets to technicians according to locations to resolve issue. Work as an integral part of a team of many different Incident Coordinators. Review all tickets to drive efficiencies and decrease resolution times. Escalate productivity issues to the Incident Managers and Site Managers. Monitor and assign tickets from filtering queue to the help desk so tickets can be created. Resign ticket per technician request to different support group through a buy-off request (technician assuming responsibility of ticket). Trained Incident Coordinators on creating Networking and PBX Report. Trained Incident Coordinators on running Bi-weekly Networking and PBX call in meeting. Escalate tickets to technicians for immediate work. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2010-02-01\",\n                    \"leaveDate\": \"2010-11-01\",\n                    \"company\": \"St. John Health Care\",\n                    \"position\": \"Incident Coordinator\",\n                    \"description\": \"Assign tickets to technicians according to locations to resolve issue. Work as an integral part of a team of eighteen Incident Coordinators. Correct and report inaccurately coded and assigned tickets for Quality Assurance. Facilitate Plan of the Day Meeting with Technicians, Team Leads, and Site Managers. Review all tickets to drive efficiencies and decrease resolution times. Escalate productivity issues to the Incident Managers and Site Managers. Review and audit tickets for Show more Assign tickets to technicians according to locations to resolve issue. Work as an integral part of a team of eighteen Incident Coordinators. Correct and report inaccurately coded and assigned tickets for Quality Assurance. Facilitate Plan of the Day Meeting with Technicians, Team Leads, and Site Managers. Review all tickets to drive efficiencies and decrease resolution times. Escalate productivity issues to the Incident Managers and Site Managers. Review and audit tickets for Process Compliance. Support SLA attainment by identifying, reporting, and escalating all tickets close to or missing Service Levels to appropriate individuals. Provide Metrics and Reporting Support for Month End Billing and SLA Reports by scrubbing tickets and correcting inaccuracies. Show less\"\n                },\n                {\n                    \"hiredDate\": \"2008-12-01\",\n                    \"leaveDate\": \"2009-01-01\",\n                    \"company\": \"J P Morgan Chase & Co\",\n                    \"position\": \"Media Operator\",\n                    \"description\": \"Retrieved media tapes from tape racks and inserted them into media library. Took out ejected tapes from media library and re-racked tapes. Inserted cleaning tapes into media library.\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford SDSS Server Team\",\n                    \"position\": \"Network Administrator\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2004-11-01\",\n                    \"leaveDate\": \"2005-06-01\",\n                    \"company\": \"Handleman Group\",\n                    \"position\": \"Senior Laptop Support Technician\",\n                    \"description\": \"Support Outlook 98 & 2000; answer user questions and provide problem resolution. Swap out hardware for HP Omnibook 510, Gateway, Compaq; Dell Axim PDA's & SD Memory Cards; Canon BJC-80 &85, parallel and ac adapter cords; Scanner Guns and Cords. Backup data, restage, restore data and configure laptop computers. Assisted users in synching store data from server to laptop and then to PDA, also synching from server to PDA. Assisted user in troubleshooting dial-up problems Show more Support Outlook 98 & 2000; answer user questions and provide problem resolution. Swap out hardware for HP Omnibook 510, Gateway, Compaq; Dell Axim PDA's & SD Memory Cards; Canon BJC-80 &85, parallel and ac adapter cords; Scanner Guns and Cords. Backup data, restage, restore data and configure laptop computers. Assisted users in synching store data from server to laptop and then to PDA, also synching from server to PDA. Assisted user in troubleshooting dial-up problems in connecting on Laptop's and Socket 56K Modem on PDA's. Reset and unlocked users network passwords. Emailed and called users and open tickets. Logging in as administrator to Portal Page to see if user has territory and store setup to configure PDA and Laptop for new user. Give user manual overrite and auth code for users to sign into stores with. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2004-11-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Senior Laptop Support Technician\",\n                    \"description\": \" Assist and troubleshoot Ford users in connecting Cable Modem and DSL with router and VPN Client.  Create and publish articles for the IPortal, through Web Authoring.  Pushed through and corrected articles for the IPortal, being Knowledge Engineer.  Troubleshoot LAN connectivity issues and reset LAN passwords.  Create GIRS tickets and called users on open tickets to resolve problems.  Support Outlook 98 & 2000; answer user questions and provide problem resolution. Show more  Assist and troubleshoot Ford users in connecting Cable Modem and DSL with router and VPN Client.  Create and publish articles for the IPortal, through Web Authoring.  Pushed through and corrected articles for the IPortal, being Knowledge Engineer.  Troubleshoot LAN connectivity issues and reset LAN passwords.  Create GIRS tickets and called users on open tickets to resolve problems.  Support Outlook 98 & 2000; answer user questions and provide problem resolution.  Support Microsoft Office applications.  Swap out hardware for Dell Latitude CPX, C600 & C610; HP DeskJet Printers and Brother MFC Printers.  Troubleshoot modem problems and assist Ford users in activating their Securid cards.  Stage, restage and configure laptop computers; instruct users on running system cleanup.  Help users to map network drives, assist users in creating their dial-up-network connection. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1997-12-01\",\n                    \"leaveDate\": \"1999-06-01\",\n                    \"company\": \"Mati's Deli\",\n                    \"position\": \"Inside Sales Representative\",\n                    \"description\": \"Trained new employees, light stock work, answered phone orders and questions.\"\n                },\n                {\n                    \"hiredDate\": \"1997-09-01\",\n                    \"leaveDate\": \"1997-12-01\",\n                    \"company\": \"CCN\",\n                    \"position\": \"Help Desk Analyst\",\n                    \"description\": \"Resolved system conflicts on a multiple server network. Monitored and documented data on server activity. Created documentation to track login memory space available, voice mails, messages and call status on open tickets. Assisted the staging and distribution of systems to remote sites throughout the country. Updated the phone status line in regards to server downtime and accessibility.\"\n                },\n                {\n                    \"hiredDate\": \"1996-09-01\",\n                    \"leaveDate\": \"1997-02-01\",\n                    \"company\": \"Cyber Inc\",\n                    \"position\": \"Satellite Network Analyst\",\n                    \"description\": \"Assisted Ford dealerships in the activation of their Service Bay Diagnostic System (SBDS) to the FORDSTAR Satellite Network. Trouble shot network problems concerning SBDS and SBTS and FORDSTAR Terminal. Tested Service Bay Products from remote location. Distributed LAN software and LAN instructions to dealerships. Assisted Hughes Network System field technicians with service problems. Interfaced with Service Bay Product Support Group and FORDSTAR. Provided helpdesk support for Show more Assisted Ford dealerships in the activation of their Service Bay Diagnostic System (SBDS) to the FORDSTAR Satellite Network. Trouble shot network problems concerning SBDS and SBTS and FORDSTAR Terminal. Tested Service Bay Products from remote location. Distributed LAN software and LAN instructions to dealerships. Assisted Hughes Network System field technicians with service problems. Interfaced with Service Bay Product Support Group and FORDSTAR. Provided helpdesk support for LAN activation issues. Recorded service comments and placed service requests for IBM and Hughes technicians. Checked on Satellite connection for FORDSTAR Terminal, SBDS and SBTS. Show less\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Phoenix - Online\",\n                    \"subTitle\": \"BachelorComputer Information System\"\n                },\n                {\n                    \"title\": \"Henry Ford Community College\",\n                    \"subTitle\": \"Associates of ScienceComputer Information System\"\n                },\n                {\n                    \"title\": \"Edsel Ford High School\",\n                    \"subTitle\": \"High School DiplomaGeneral Studies\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693979035197,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Servers\",\n                \"Troubleshooting\",\n                \"VPN\",\n                \"Hardware\",\n                \"Software Documentation\",\n                \"Help Desk Support\",\n                \"Laptops\",\n                \"Networking\",\n                \"Printers\",\n                \"Routers\",\n                \"Management\",\n                \"HP\",\n                \"Team Leadership\",\n                \"Access\",\n                \"Quality Assurance\",\n                \"Microsoft Office\",\n                \"Outlook\",\n                \"Windows Server\",\n                \"Active Directory\",\n                \"Sla\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.3222599,\n                    \"lon\": -83.17631449999999\n                },\n                \"formattedAddress\": \"Dearborn, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7158,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"2FB33FB26D05317C8F9711F2798F9EFA\",\n            \"canonical\": \"https://www.linkedin.com/in/sean-gale-07b61267\",\n            \"fullname\": \"Sean Gale\",\n            \"headline\": \"Project Specialist at Marty Feldman Chevrolet\",\n            \"location\": \"Farmington, Michigan\",\n            \"industry\": \"Security and Investigations\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQHjEugD25m2eA/profile-displayphoto-shrink_800_800/0/1517358931156?e=2147483647&v=beta&t=vAee0L1FhVlgpqLjz3NHbpTMVY9uxGv_kyfv3vmPRS8\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/sean-gale-07b61267\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Marty Feldman Chevrolet\",\n                    \"position\": \"Project Specialist\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2014-03-01\",\n                    \"leaveDate\": \"2018-03-01\",\n                    \"company\": \"United States Army\",\n                    \"position\": \"Firefinder Radar Operator Section Chief\",\n                    \"description\": \"Sergeant in the United States Army.\"\n                },\n                {\n                    \"hiredDate\": \"2013-03-01\",\n                    \"leaveDate\": \"2013-11-01\",\n                    \"company\": \"Asset Control Services, Inc. (ACS Claims Investigations)\",\n                    \"position\": \"Investigator\",\n                    \"description\": \"Conduct surveillance on cases, videotaping, interviews, neighborhood canvases, and report writing.\"\n                },\n                {\n                    \"hiredDate\": \"2013-02-01\",\n                    \"leaveDate\": \"2013-03-01\",\n                    \"company\": \"Pizza Hut\",\n                    \"position\": \"Delivery Driver\",\n                    \"description\": \"Delivering pizza and other menu items to customers. Cleaning dishes and prepping food for cooks.\"\n                },\n                {\n                    \"hiredDate\": \"2012-05-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"Katke Golf Course\",\n                    \"position\": \"Grounds Keeper\",\n                    \"description\": \"Maintaining golf course up keep, mowing grass around the grounds. Helping inside the club house when needed.\"\n                },\n                {\n                    \"hiredDate\": \"2011-05-01\",\n                    \"leaveDate\": \"2011-09-01\",\n                    \"company\": \"Flint Golf and Country Club\",\n                    \"position\": \"Grounds Keeper\",\n                    \"description\": \"Maintaining the golf course grounds, mowing tee's, fairway's, green's and so on. Additional work included taking care of landscaping needs. Along with helping inside the club house when needed.\"\n                },\n                {\n                    \"hiredDate\": \"2008-11-01\",\n                    \"leaveDate\": \"2010-09-01\",\n                    \"company\": \"Techumseh Lawn and Landscape\",\n                    \"position\": \"Landscaper\",\n                    \"description\": \"Mowing lawns at commercial and residential properties. Along with landscaping projects at these properties and Plowing snow.\"\n                },\n                {\n                    \"hiredDate\": \"2008-06-01\",\n                    \"leaveDate\": \"2008-10-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Forklift Driver\",\n                    \"description\": \"Loading and unloading semi trucks and moving automotive parts around the plant.\"\n                },\n                {\n                    \"hiredDate\": \"2006-09-01\",\n                    \"leaveDate\": \"2008-06-01\",\n                    \"company\": \"Flint Golf and Country Club\",\n                    \"position\": \"Grounds Keeper\",\n                    \"description\": \"Maintaining the golf course grounds, mowing tee's, fairway's, green's and so on. Additional work included taking care of landscaping needs. Along with helping inside the club house when needed.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Ferris State University\",\n                    \"subTitle\": \"Bachelor's degreeCriminal Justice and Corrections\"\n                },\n                {\n                    \"title\": \"Kearsley High School\",\n                    \"subTitle\": \"High School diplomaHigh School/Secondary Diploma Programs\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693964009819,\n            \"military\": false,\n            \"clearance\": true,\n            \"about\": \"Well rounded individual with a growing desire to constantly improve and challenge oneself physically and mentally and bring out the best in those around me. During my time at Ferris State University I developed skills in areas of crime scene investigation, including basic training in blood splatter analysis, bullet and finger print analysis along with crime scene photography. I also have learned skills in supervision/management in the Criminal Justice field along with human resource management. I have also received certification in report writing, firearms training in which I have my Concealed Pistol License. I am also certified in CPR and first aid along with PPCT defensive tactics as well as a certification in Michigan Correctional Law. I have also learned skills in the area of conducting work as a private investigator such a mobile and covert surveillance, conducting neighborhood canvass and interviewing. Military training includes digital and wireless communications. Vehicle maintenance and operations on light and heavy duty vehicles and generators. Trouble shooting, maintenance and operational skills relating to field artillery radars (AN/TPQ-36, AN/TPQ-37, AN/TPQ-50, AN/TPQ-53). Accountability of personnel upto a dozen or more people at any given time. Responsible for for the safeguard and operational functionality of military equipment between 2 million-16 million dollars. Skills also include writing monthly personnel evaluations, strategic planning, training and leading individuals in job specific areas. Coaching and mentoring individuals. Expert marksmanship qualified. Top Secret-SCI clearance.\",\n            \"skills\": [\n                \"Time Management\",\n                \"Leadership\",\n                \"First Aid\",\n                \"Landscaping\",\n                \"Forklift Operator\",\n                \"Lawn Care\",\n                \"Firearms\",\n                \"Criminal Justice\",\n                \"Cpr Certified\",\n                \"Teamwork\",\n                \"Analysis\",\n                \"Private Investigations\",\n                \"Surveillance\",\n                \"Report Writing\",\n                \"Loss Prevention\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4644795,\n                    \"lon\": -83.37632180000001\n                },\n                \"formattedAddress\": \"Farmington, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 3379,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"A61E49969C80CCCF1F0538C665D7F6AA\",\n            \"canonical\": \"https://www.linkedin.com/in/josephine-dannug-455a813\",\n            \"fullname\": \"Josephine Dannug\",\n            \"headline\": \"Project Engineering Manager\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Defense & Space\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/josephine-dannug-455a813\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Dynamics Land Systems\",\n                    \"position\": \"Program Management Specialist\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2014-12-01\",\n                    \"company\": \"Virtual celebration\",\n                    \"position\": \"Virtual event planner\",\n                    \"description\": \"Independent contractor offering the service and helping consumers to host fun & engaging virtual events. Birthdays, anniversaries, graduations, business grand openings, fundraisers, and more can all be enhanced with a virtual component. Let's get the party started!\"\n                },\n                {\n                    \"hiredDate\": \"2000-07-01\",\n                    \"leaveDate\": \"2008-08-01\",\n                    \"company\": \"Creative Memories\",\n                    \"position\": \"Independent Consultant (Unit Leader)\",\n                    \"description\": \"Provided training to clients procedure on photograph preservation. Organized small and large group sales presentation. Developed recruitment process to attract new independent consultants. Researched and implemented new product market on custom framing.\"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2002-01-01\",\n                    \"company\": \"Visteon Corporation\",\n                    \"position\": \"Manufacturing Engineer\",\n                    \"description\": \"Responsible for the launching and implementation of Injection-molded Throttle Body Assembly manufacturing process. Provided on-site engineering support during initial OEM assembly of the Ford Focus. Collaborated with Design Engineering to determine and test alternative materials for the Throttle body cost savings initiatives. Coordinated configuration management actions as related to automotive vehicles. Maintained documentations such as PFMEA, Process Flow/Quality Plans, and Quality Reports Show more Responsible for the launching and implementation of Injection-molded Throttle Body Assembly manufacturing process. Provided on-site engineering support during initial OEM assembly of the Ford Focus. Collaborated with Design Engineering to determine and test alternative materials for the Throttle body cost savings initiatives. Coordinated configuration management actions as related to automotive vehicles. Maintained documentations such as PFMEA, Process Flow/Quality Plans, and Quality Reports. Provided training and technical assistance to UAW member operators and skilled tradesmen. Designed, planned, cost estimated and tested injection-molded electrical interconnects for instrument panel assembly advanced engineering. Specified and validated components, consolidated building of prototypes, testing and documenting material properties for use on Injection-molded Throttle Body assembly. Created, reviewed, and updated technical specifications for automotive components for spare parts. Addressed Quality Assurance requirements as they pertain to specifications. Wrote statements of work as related to automotive vehicles. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1997-01-01\",\n                    \"leaveDate\": \"2000-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Product Engineer\",\n                    \"description\": \"Planned, cost estimated, designed and implemented Carbon Canister Assembly from concept stage to production launch. Managed and completed each task required at each stage of the product life cycle in accordance with Visteon Product Development System (VPDS). Conducted analysis of testing procedures, eliminating unnecessary processes, thereby realizing cost avoidances. Recommended, reviewed and approved packaging design features and layout. Developed and maintained documentations such as Show more Planned, cost estimated, designed and implemented Carbon Canister Assembly from concept stage to production launch. Managed and completed each task required at each stage of the product life cycle in accordance with Visteon Product Development System (VPDS). Conducted analysis of testing procedures, eliminating unnecessary processes, thereby realizing cost avoidances. Recommended, reviewed and approved packaging design features and layout. Developed and maintained documentations such as DFMEA, DVP&R, Program Sheets, Quality Reports, and others. Performed Benchmarking, Design for Assembly and Maintainability, Value Engineering, and Lean Manufacturing Concept analyses to simplify, optimize, and error proof both the product and process designs. Provided on-site engineering support during initial OEM assembly on vehicle programs (Job1 launch), for the Mustang, Lincoln LS, and Crown Victoria Police fleet. Addressed any production issues which would require further redesign and testing. Redesigned emission components to meet CAF requirements. Regularly presented technical information and briefings to departmental and program superiors. Additional Responsibilities: Provided Test Engineering support for the Emission Test Data. Provided manufacturing Systems Engineering support. Submitted invention disclosure for swirl-port technology for Carbon Canister inlet. Maintained professional and technical knowldege by attending educational semiars and internal/external academic classes related to Systems Engineering and Acquisition. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1995-01-01\",\n                    \"leaveDate\": \"1997-01-01\",\n                    \"company\": \"GE Capital\",\n                    \"position\": \"Co-op engineer\",\n                    \"description\": \"Duties: Attained technical knowledge in the fields of Silicone Elastomers, Gels, Encapsulants, Lubricants, Hardcoats and Paint Applications. Provided technical engineering validation support to Automotive Marketing and Commercial Technology Team on customer inquiries. Facilitated on time response to customer demands through in-house prototype development, application performance testing, and Failure Mode Analysis on parts. Provided timely oral and written report of results to supervisors and Show more Duties: Attained technical knowledge in the fields of Silicone Elastomers, Gels, Encapsulants, Lubricants, Hardcoats and Paint Applications. Provided technical engineering validation support to Automotive Marketing and Commercial Technology Team on customer inquiries. Facilitated on time response to customer demands through in-house prototype development, application performance testing, and Failure Mode Analysis on parts. Provided timely oral and written report of results to supervisors and customers. Assisted on the companys ISO 9000 laboratory certification preparation. Show less\"\n                }\n            ],\n            \"languagesList\": [\n                \"Tagalog\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"BSChemical Enginerring\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693958115029,\n            \"military\": true,\n            \"clearance\": false,\n            \"about\": \"Experienced engineer and program manager with a record of achievement in the design, development and production in military ground vehicles, automotive components and materials. Embodies ability and passion to learn and apply innovative thinking to obtain continuous improvement. Process-oriented with strong knowledge in the field of automotive component product assurance/design verification, project and systems engineering. Known for being reliable, highly responsible and dedicated team player.\",\n            \"skills\": [\n                \"Engineering Management\",\n                \"Engineering\",\n                \"Six Sigma\",\n                \"Systems Engineering\",\n                \"FMEA\",\n                \"Root Cause Analysis\",\n                \"Continuous Improvement\",\n                \"Manufacturing\",\n                \"Manufacturing Engineering\",\n                \"Testing\",\n                \"Program Management\",\n                \"Earned Value Management\",\n                \"Lean Manufacturing\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6026,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"A55408C9E1BF462F99238E12827E01C8\",\n            \"canonical\": \"https://www.linkedin.com/in/john-galvan-22881bb\",\n            \"fullname\": \"John Galvan\",\n            \"headline\": \"Recaro - Manufacturing Engineering Manager\",\n            \"location\": \"Detroit, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/john-galvan-22881bb\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2016-05-01\",\n                    \"leaveDate\": \"2023-06-01\",\n                    \"company\": \"Recaro Holding\",\n                    \"position\": \"Manufacturing Engineering Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2015-02-01\",\n                    \"leaveDate\": \"2016-05-01\",\n                    \"company\": \"The Productivity Team\",\n                    \"position\": \"Project Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2013-03-01\",\n                    \"leaveDate\": \"2015-01-01\",\n                    \"company\": \"ATCO Industries, Inc.\",\n                    \"position\": \"Operations Manager -- Detroit\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2012-06-01\",\n                    \"leaveDate\": \"2013-03-01\",\n                    \"company\": \"The Productivity Team\",\n                    \"position\": \"Project Engineer\",\n                    \"description\": \"Critical team member of the KL Assembly Launch Team with focus on: Facilitating and report-out of loop deliverables Development and tracking of Scopes-of-Work Development and tracking of Station Readiness in Trim-Chassis-Final (TCF) Management of program issues tracking (a best practice)\"\n                },\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2012-05-01\",\n                    \"company\": \"Design Systems, Inc.\",\n                    \"position\": \"Project Engineer\",\n                    \"description\": \"Providied stamping client with concepts to improve material flow; indirect labor utilization; industrial vehicle utilization; and line side presentation.\"\n                },\n                {\n                    \"hiredDate\": \"2011-07-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Manufacturing/Industrial Engineer\",\n                    \"description\": \"Supported Stamping Business Unit plants in improving productivity. Established formal launch performance process for the Industrial Engineering organization. Provided engineering analysis and support of new plant/equipment installations. Created single-point lessons for press line optimization for increasing cycle rates.\"\n                },\n                {\n                    \"hiredDate\": \"2004-03-01\",\n                    \"leaveDate\": \"2008-11-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Production Supervisor\",\n                    \"description\": \"Directly supervised over 80 hourly-unionized employees in trim department of Warren Truck Assembly Plant that assembles Dodge Ram and Dakota trucks. Active change-agent in transforming work culture to achieve lean manufacturing utilizing SMART principles. Engaged in developing workforce knowledge of manufacturing aids such as KANBAN, Practical Problem Solving Reports (PPSR's), FMEA, 5S, and Standardized Work Instructions (SWI). Demonstrated proficiency in problem solving resulting in Show more Directly supervised over 80 hourly-unionized employees in trim department of Warren Truck Assembly Plant that assembles Dodge Ram and Dakota trucks. Active change-agent in transforming work culture to achieve lean manufacturing utilizing SMART principles. Engaged in developing workforce knowledge of manufacturing aids such as KANBAN, Practical Problem Solving Reports (PPSR's), FMEA, 5S, and Standardized Work Instructions (SWI). Demonstrated proficiency in problem solving resulting in continuous improvement in safety, quality delivery, cost, and morale metrics. Show less\"\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Plant Engineering Manager\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"1987-07-01\",\n                    \"leaveDate\": \"1988-07-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Engineering Trainee\",\n                    \"description\": \"Provided support in the Prototype and Warrantee Repair departments.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Phoenix\",\n                    \"subTitle\": \"MSPsychology\"\n                },\n                {\n                    \"title\": \"Kettering University\",\n                    \"subTitle\": \"BSElectrical Engineering\"\n                },\n                {\n                    \"title\": \"Renaissance High School\",\n                    \"subTitle\": \"-\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693958059764,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Continuous Improvement\",\n                \"Lean Manufacturing\",\n                \"Industrial Engineering\",\n                \"Value Stream Mapping\",\n                \"Manufacturing\",\n                \"Management\",\n                \"5S\",\n                \"Cross-functional Team Leadership\",\n                \"Automation\",\n                \"Project Planning\",\n                \"Engineering\",\n                \"Vehicles\",\n                \"FMEA\",\n                \"Supply Chain Management\",\n                \"Root Cause Analysis\",\n                \"Manufacturing Operations Management\",\n                \"Process Improvement\",\n                \"Manufacturing Engineering\",\n                \"Kaizen\",\n                \"TPM\",\n                \"Stamping\",\n                \"Manufacturing Operations\",\n                \"Quality System\",\n                \"Engineering Management\",\n                \"Injection Molding\",\n                \"Kanban\",\n                \"Six Sigma\",\n                \"Quality Assurance\",\n                \"TS16949\",\n                \"ISO\",\n                \"Quality Management\",\n                \"Process Engineering\",\n                \"Product Design\",\n                \"Mechanical Engineering\",\n                \"DMAIC\",\n                \"Product Development\",\n                \"Operational Excellence\",\n                \"JIT\",\n                \"Automotive\",\n                \"PPAP\",\n                \"Operations Management\",\n                \"APQP\",\n                \"Supplier Quality\",\n                \"MS Project\",\n                \"Toyota Production System\",\n                \"SPC\",\n                \"Black Belt\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.331427,\n                    \"lon\": -83.0457538\n                },\n                \"formattedAddress\": \"Detroit, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6363,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"5D4384FD3911D0763F8A9D03D2AFE3E1\",\n            \"canonical\": \"https://www.linkedin.com/in/christopher-attard-2211063b\",\n            \"fullname\": \"Christopher Attard\",\n            \"headline\": \"Senior Manager - Integration and Test at Argo AI\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Aviation & Aerospace\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQGH3J0DoORHbw/profile-displayphoto-shrink_800_800/0/1624328732479?e=2147483647&v=beta&t=f72dJVTBE_cZWogWDsyCfuyvLyl5n3wTcclINLywJ7Y\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/christopher-attard-2211063b\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-02-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Latitude AI\",\n                    \"position\": \"Director Systems, Integration, and Test\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Argo AI\",\n                    \"position\": \"Senior Manager - Integration and Test\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Lead, Integration and Test - Autonomous Vehicles\",\n                    \"description\": null\n                },\n                {\n                    \"hiredDate\": \"2010-01-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"Northrop Grumman Corporation\",\n                    \"position\": \"System Test Engineer\",\n                    \"description\": null\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"Master of Science (MS)Aerospace, Aeronautical and Astronautical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693957981666,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Systems Integration\",\n                \"System Test\",\n                \"Test Planning and Execution\",\n                \"Data Analysis\",\n                \"Mechanical Engineering\",\n                \"Aerospace Engineering\",\n                \"Computer Science\",\n                \"Electrical Engineering\",\n                \"Systems Engineering\",\n                \"Autonomous Vehicles\",\n                \"Active Safety Features\",\n                \"Project Planning\",\n                \"Program Management\",\n                \"Automotive CAN Bus\",\n                \"Vector CANalyzer\",\n                \"Matlab\",\n                \"Simulink\",\n                \"Calibration\",\n                \"INS/IMU/GPS Systems\",\n                \"LiDAR\",\n                \"Radar\",\n                \"Camera\",\n                \"Simulations\",\n                \"Solidworks\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 1159,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"E2F392D032F59C297AB73B7976695530\",\n            \"canonical\": \"https://www.linkedin.com/in/ane-matovski-a0362095\",\n            \"fullname\": \"Ane Matovski\",\n            \"headline\": \"Senior Engineer at General Dynamics\",\n            \"location\": \"Sterling Heights, Michigan\",\n            \"industry\": \"Defense & Space\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4D03AQGaNM_GSK3Gpw/profile-displayphoto-shrink_800_800/0/1577984981127?e=2147483647&v=beta&t=L6ErKTplF7eCgdDctEKCTy9iNq6pgDRxpUT7pjSNziE\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/ane-matovski-a0362095\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": null,\n                    \"leaveDate\": null,\n                    \"company\": \"General Dynamics Corporation\",\n                    \"position\": \"Engineering Specialist\",\n                    \"description\": null\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2000-11-01\",\n                    \"leaveDate\": \"2001-09-01\",\n                    \"company\": \"EPCOM Inc\",\n                    \"position\": \"Electrical Engineer\",\n                    \"description\": \" Managed procurement activities and material requests for engineering hardware and services  Provided technical support and communication to the program offices, customers and other departments within the corporation.  Tested and validated hardware and software improvements on the lethality of Stryker vehicles  Tracked, prioritized and resolved system problem reports during fast paced development environment  Prepared and presented written reports, status reports, and Show more  Managed procurement activities and material requests for engineering hardware and services  Provided technical support and communication to the program offices, customers and other departments within the corporation.  Tested and validated hardware and software improvements on the lethality of Stryker vehicles  Tracked, prioritized and resolved system problem reports during fast paced development environment  Prepared and presented written reports, status reports, and presentations as necessary  Acted as Vehicle Coordinator liaison between shop mechanics and engineers to ensure vehicles were functional and configured correctly for testing  Designed internal harness and slip ring for Commanders Panoramic Viewer along with integration of thermal and day camera and zoom lens. Show less\"\n                },\n                {\n                    \"hiredDate\": \"1999-05-01\",\n                    \"leaveDate\": \"2000-10-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Production Supervisor\",\n                    \"description\": \" Assured product quality throughout manufacturing process  Supervised 50 to 60 production technicians  Managed the allocation of production line manpower  Identified and isolate defective products for repair process as needed  Ran four different zones within the body shop, door line and final line  Participated in pilot build of latest Grand Cherokee to insure successful production launch\"\n                }\n            ],\n            \"languagesList\": [\n                \"Macedonian\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"Master of Science (M.S.)Engineering/Industrial Management\"\n                },\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"Bachelor of ScienceElectrical and Electronics Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1693950611466,\n            \"military\": true,\n            \"clearance\": false,\n            \"about\": \"• Extensive and specialized knowledge of product lifecycle, including manufacturing, deployment, modification, aging, balancing cost, schedule, performance impacts and continued support • Experience with electro-optical systems, including cameras, radars, lasers and lens selection, to obtain desired image and field of view characteristics • Knowledge of Infrared cameras technology in all three bands • Selection of proper display for video format and aspect ratio with overlays • Experience resolving equipment failures in the field, independently and managing customer expectations • Knowledge of multiple communication protocols: CAN , RS-232, RS-422, and RS-485 • Experience with lab test equipment: Oscilloscopes, Multimeters, Logic (BUS) Analyzers, Power Supplies, Video and Laser sources • Experience with MATLAB, Visual Basic, DxDesigner, OrCAD, Adobe Acrobat Professional, Microsoft Office, Windows, Windchill, CAMvu, VISIO, PSpice, DOORS, CANalyzer, Creo Schematic\",\n            \"skills\": [\n                \"Engineering\",\n                \"Engineering Management\",\n                \"Integration\",\n                \"Systems Engineering\",\n                \"Testing\",\n                \"Earned Value Management\",\n                \"Electrical Engineering\",\n                \"Matlab\",\n                \"Troubleshooting\",\n                \"Military\",\n                \"Manufacturing\",\n                \"Program Management\",\n                \"Aerospace\",\n                \"Sensors\",\n                \"Systems Design\",\n                \"Six Sigma\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.5803122,\n                    \"lon\": -83.0302033\n                },\n                \"formattedAddress\": \"Sterling Heights, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 823,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"Lfr2mIABSJUTbAXcq57J\",\n            \"canonical\": \"https://www.linkedin.com/in/kavitha-rengasamy-99743814\",\n            \"fullname\": \"Kavitha Rengasamy\",\n            \"headline\": \"Project Configuration and Release Manager Embedded Software\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/kavitha-rengasamy-99743814\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2017-09-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Elektrobit Automotive GmbH (Elektrobit)\",\n                    \"position\": \"Project Release Manager Embedded Software\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2016-04-01\",\n                    \"leaveDate\": \"2017-09-01\",\n                    \"company\": \"United Shore\",\n                    \"position\": \"Configuration Manager\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2015-04-01\",\n                    \"leaveDate\": \"2016-03-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Service Management Specialist\",\n                    \"description\": \"•                                                                                   •                                                                                  •                                                                                                        •                                                    •                                                                                                                                •           ’               …          \"\n                },\n                {\n                    \"hiredDate\": \"2011-05-01\",\n                    \"leaveDate\": \"2015-03-01\",\n                    \"company\": \"GM Onstar\",\n                    \"position\": \"Technical Lead\",\n                    \"description\": \"•                                                                                          •                                                              •                                                                                                              •                                                                                       •                                                                  •                                                      …          \"\n                },\n                {\n                    \"hiredDate\": \"2009-09-01\",\n                    \"leaveDate\": \"2009-11-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Technical Specialist\",\n                    \"description\": \"•                                                                                                                                                                                                        •                                                                      •                                                                          •                                                                                                                                        …          \"\n                },\n                {\n                    \"hiredDate\": \"2008-09-01\",\n                    \"leaveDate\": \"2009-08-01\",\n                    \"company\": \"Broadcom Inc.\",\n                    \"position\": \"Configuration Management Lead\",\n                    \"description\": \"•                                                                                                                                                                                                                   •                                                                        •                                                                                                         •                                                                                               …          \"\n                },\n                {\n                    \"hiredDate\": \"2004-10-01\",\n                    \"leaveDate\": \"2008-07-01\",\n                    \"company\": \"DTE Energy Company\",\n                    \"position\": \"Configuration Manager\",\n                    \"description\": \"•                                                                                •                                                     •                                                                                •                                                                                      •                                                                         •                                                                                                      …          \"\n                },\n                {\n                    \"hiredDate\": \"2003-01-01\",\n                    \"leaveDate\": \"2004-09-01\",\n                    \"company\": \"Blue Cross Blue Shield Association\",\n                    \"position\": \"Technical Manager\",\n                    \"description\": \"•                                                                 •                                                                                                      •                                                                      •                                                                                                              •                                                                                       •                                           …          \"\n                },\n                {\n                    \"hiredDate\": \"2001-11-01\",\n                    \"leaveDate\": \"2002-12-01\",\n                    \"company\": \"Citigroup Salomon Smith Barney\",\n                    \"position\": \"Configuration Manager and Build Release Engineer\",\n                    \"description\": \"•                                                                                       •                                                                                   •                                                                                                            •                                                          •                                                                                   •                                                  …          \"\n                },\n                {\n                    \"hiredDate\": \"2001-05-01\",\n                    \"leaveDate\": \"2001-10-01\",\n                    \"company\": \"Indus International\",\n                    \"position\": \"SCM Build Release Engineer\",\n                    \"description\": \"•                                                                            •                                                           •                                                                             •                                                                      •                                                    •                                                                                                                                             …          \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Master of Business Administration\",\n                    \"subTitle\": \"Master of Business Administration (M.B.A.)\"\n                },\n                {\n                    \"title\": \"Bachelors in Engineering\",\n                    \"subTitle\": \"Bachelors in Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686267345044,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Extensive IT experience in Project Management, Configuration Management, Change Management, DevOps Build and Release Management, Testing, and Scripting. Specialties: Configuration Management, Change management, DevOps, Service Delivery Management, ASPICE, Agile, Scrum, and ITIL. * Proven success in Project Management activities. Expert skills in business case development, resource planning, scheduling, and budgeting. Working knowledge of Agile Scrum, Waterfall Methodology, and Best Practices. * Demonstrated skill in establishing/improving project management methodologies, best practices, and technologies using Project Management Institute PMBOK and Integrated Capability Maturity Model (CMMI). * Rolled out Configuration Management and Change Management based on ITIL. Worked on Service Level Management SLM process definition. ITIL V3 Foundation Certified. * Successfully implemented Change and Configuration Management migration project. Closed the yearly support agreement and transformed it into a call support agreement, saving $$$ for the project. * Development: Java/J2EE, C# and Microsoft Technologies: .NET Specialties: - - Project Management, PMP, ITIL - Configuration Management, Change Management, SCM/CMS - Build/Release Engineering Management, - Quality Assurance/Testing, SQA, - DevOps - Development and - Scripting.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7280,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"20E968222165B1D229717C9FAE3CE65A\",\n            \"canonical\": \"https://www.linkedin.com/in/tim-prechesky-6bb14b12\",\n            \"fullname\": \"Tim Prechesky\",\n            \"headline\": \"Electronics Engineering Technician at Continental Automotive Systems\",\n            \"location\": \"Novi, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/tim-prechesky-6bb14b12\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2010-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Electronics Engineering Technician\",\n                    \"description\": \"                                                                                           –                                                                                                                                                                                                                                                                                                                                                                                                         …          \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2010-03-01\",\n                    \"leaveDate\": \"2010-05-01\",\n                    \"company\": \"TRW\",\n                    \"position\": \"Warranty Technician/Quality Analyst\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            …          \"\n                },\n                {\n                    \"hiredDate\": \"2009-10-01\",\n                    \"leaveDate\": \"2010-01-01\",\n                    \"company\": \"Molex Incorporated\",\n                    \"position\": \"Quality Lab Technician\",\n                    \"description\": \"                                                    –                                                                                                                                                                                                                                                                                                                                                                                                                                           …          \"\n                },\n                {\n                    \"hiredDate\": \"2009-09-01\",\n                    \"leaveDate\": \"2009-10-01\",\n                    \"company\": \"KOSTAL\",\n                    \"position\": \"Electronics Test Technician\",\n                    \"description\": \"                                                                  –                                                                                                                                                                                                                                                                                                                                                                                                                              …          \"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2008-01-01\",\n                    \"company\": \"Visteon Corporation\",\n                    \"position\": \"Sr. Test Technician\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     …          \"\n                },\n                {\n                    \"hiredDate\": \"1978-01-01\",\n                    \"leaveDate\": \"2000-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Test Technician\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         …          \"\n                },\n                {\n                    \"hiredDate\": \"1973-01-01\",\n                    \"leaveDate\": \"1976-01-01\",\n                    \"company\": \"United States Air Force\",\n                    \"position\": \"Radio Communications Equipment Repairman\",\n                    \"description\": \"                                                                                                                     \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Henry Ford College\",\n                    \"subTitle\": \"AssociateElectrical / Electronics Technology\"\n                },\n                {\n                    \"title\": \"National Radio Institute (NRI)\",\n                    \"subTitle\": \"Electronics CertificateElectronics Technology specializing in audio/video servicing\"\n                },\n                {\n                    \"title\": \"United States Air Force, Keesler AFB Technical School\",\n                    \"subTitle\": \"Electronics CertificateElectronics Technology, Ground to Air Radio Communications\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686264720751,\n            \"military\": true,\n            \"clearance\": true,\n            \"about\": \"An electronics/automotive lab test technician with extensive training and technical background experience in the military, and electronics product testing and supervisory experience in a test lab environment at a major automotive manufacturer and automotive component supplier as a Sr. Product Test Technician. Supervised and scheduled validation testing and assigned workload within the test laboratory utilizing the LIMS test request database, and applied the appropriate versions of specification standards, protocols, and test methodologies, providing accurate test results to meet customer needs and timelines. Developed, updated and ensured compliance to corporate/local ISO 9000/TS 16949 and DV test lab procedures, documentation, and workplace safety practices. Environmental - Salt, Dust, Temperature, Humidity, Thermal Shock, water/moisture, vibration, electrical stress, EMI/EMC testing of electronic products. Career product testing including various small motors, wiper motors, blower motors, cooling fan motors, PCM, driver information and instrument cluster, speedometer, audio, radio, amplifier, speaker, antenna, telematics, navigation infotainment systems, vehicle controls, speed control, ride control, traction control, anti-lock brakes (ABS), power seats, air bag, passenger restraint, body, convenience, safety & security, anti-theft, keyless entry, chassis and climate control electronics and subsystems. Specialties: Utilize various soldering, power and hand tools to build mechanical/electrical assemblies and connector/wire harnesses. Ability to interpret electrical schematics, mechanical drawings, blueprints, and diagrams. Compile and analyze engineering test data for preparation of technical reports. Computer skills including DOS, Windows, Word, Excel, PowerPoint, Access, and Outlook. Troubleshooting, repair, testing and calibration of electronic circuits. Programming of environmental test chambers.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.48059,\n                    \"lon\": -83.4754913\n                },\n                \"formattedAddress\": \"Novi, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 17021,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"5C0DD3933FDEE6DD5A4013E36C0BB6A4\",\n            \"canonical\": \"https://www.linkedin.com/in/dawn-chalmers-4582755\",\n            \"fullname\": \"Dawn Chalmers\",\n            \"headline\": \"Executive Administrative Assistant at Continental\",\n            \"location\": \"Clarkston, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQHhdKotAUCuVg/profile-displayphoto-shrink_800_800/0/1517734653184?e=2147483647&v=beta&t=OzCwmx0isrntVH3gMV2YOgjAIx5tZnUBgVFujQe372k\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/dawn-chalmers-4582755\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2019-02-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Executive Administrative Assistant\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2012-06-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Administrative Assistant\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             …          \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2010-12-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"NSK Warner USA\",\n                    \"position\": \"Executive Administrative Assistant to President.\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     …          \"\n                },\n                {\n                    \"hiredDate\": \"2009-04-01\",\n                    \"leaveDate\": \"2010-06-01\",\n                    \"company\": \"Genesys Health System\",\n                    \"position\": \"Director Fund Raising - Volunteer Board of Directors\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                      \"\n                },\n                {\n                    \"hiredDate\": \"1996-10-01\",\n                    \"leaveDate\": \"2008-12-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Executive Administrative Assistant\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     …          \"\n                },\n                {\n                    \"hiredDate\": \"1998-03-01\",\n                    \"leaveDate\": \"2008-11-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Executive Administrative Assistant\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     …          \"\n                },\n                {\n                    \"hiredDate\": \"1996-09-01\",\n                    \"leaveDate\": \"2008-12-01\",\n                    \"company\": \"Chrysler, LLC\",\n                    \"position\": \"Executive Administrative Assistant\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     …          \"\n                },\n                {\n                    \"hiredDate\": \"1989-08-01\",\n                    \"leaveDate\": \"1992-05-01\",\n                    \"company\": \"Honeywell International Inc.\",\n                    \"position\": \"Administrative Assistant\",\n                    \"description\": \"                                                                                                                                                                                                             \"\n                },\n                {\n                    \"hiredDate\": \"1980-06-01\",\n                    \"leaveDate\": \"1983-06-01\",\n                    \"company\": \"Harbor Springs Motor Inn\",\n                    \"position\": \"Manager\",\n                    \"description\": \"                                                                                                                                                                                                                                             \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [],\n            \"lastScraperUpdateTime\": 1686258135792,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Continental Automotive Support 3 Business Units ( NAFTA, Body & Security & Aftermarket) coordinate domestic and international travel arrangements, coordinate executive presentations and meetings, event planning and off site meetings - see summary below NSK - WARNER USA, INC. - Executive Administrative Assistant. Responsible for over $2M in invoicing and payments per month. A/R and A/P, coordinate presentations for International Board Meetings. Maintain calendar and manage Domestic and International travel for President of NSK Warner. Proficient in Excel Spreadsheets and use of formulas. Maintain and create multiple spreadsheets to track invoicing, payments, shipments and forecasts. Create Purchase Orders, place customer orders and invoice accounts with extreme accuracy. Build and Maintain relationships with Procurement and Supply in automotive industry. International correspondence regarding parts, inventory, delivery and invoicing. CHRYSLER - Over 13 years Executive Assistant for Sales and Marketing, Dealer and Customer Relations. Seven years of experience working in advertising with Chrysler Directors and Sr. Managers in Communications and Media Planning in the Detroit area. These include BBDO, PHD, Organic and Global Hue. Accounts included local, regional and national coverage in all media including newspaper, TV, radio and national publications. Responsibilities have included maintaining multiple Directors and Sr. Managers schedule and calendar, travel arrangements, expense reports, meetings and conference calls including conference calls for Chrysler CEO and Executive Vice President with 3300 lines including all Chrysler, Dodge and Jeep Dealers. Host and Operate Executive Office for Dealer Announcement Show 2007 (Las Vegas) assisting Top Executives and President of Chrysler. Facilitate meetings and hotel arrangements for 100+ people including locations, transfers, menus and executive office for offsite DAA and President meetings. Specialties: Excellent Interpersonal & Organization Communication skills. I enjoy working with people. I have built strong relationships with Dealers and Major Advertising agencies in the Detroit area as well as Directors and Managers at Chrysler.\",\n            \"skills\": [\n                \"Microsoft Office\",\n                \"Lotus Notes\",\n                \"Microsoft Excel\",\n                \"PowerPoint\",\n                \"Invoicing\",\n                \"Event Planning\",\n                \"Event Management\",\n                \"Customer Service\",\n                \"Hospitality\",\n                \"Renovation\",\n                \"Bookkeeping\",\n                \"Business\",\n                \"Food\",\n                \"Office Management\",\n                \"Problem Solving\",\n                \"Microsoft Word\",\n                \"Marketing\",\n                \"Automotive\",\n                \"Forecasting\",\n                \"Cross-functional Team Leadership\",\n                \"Customer Satisfaction\",\n                \"Advertising\",\n                \"Team Building\",\n                \"Analysis\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.7351196,\n                    \"lon\": -83.4192941\n                },\n                \"formattedAddress\": \"Village of Clarkston, MI 48346, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11571,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"9D8435C490C34601574CD09333DCF086\",\n            \"canonical\": \"https://www.linkedin.com/in/michael-d-onofrio-27908132\",\n            \"fullname\": \"Michael DOnofrio\",\n            \"headline\": \"Senior Electronic Technician/Impact Barrier Liason at Continental Automotive Systems\",\n            \"location\": \"Allen Park, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQFAOpjfcMaihA/profile-displayphoto-shrink_800_800/0/1516494947556?e=2147483647&v=beta&t=-zntoiU5pK_JO6-OATkYlxPCBMZ9Zr7KG-ErqW6f3j8\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/michael-d-onofrio-27908132\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"1999-11-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Electronic Technician\",\n                    \"description\": \"                                                                                                                      \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"1996-10-01\",\n                    \"leaveDate\": \"1999-11-01\",\n                    \"company\": \"Aastrom Biosciences\",\n                    \"position\": \"Electronic Technician\",\n                    \"description\": \"                                                      \"\n                },\n                {\n                    \"hiredDate\": \"1992-09-01\",\n                    \"leaveDate\": \"1996-10-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Electronic Technician\",\n                    \"description\": \"                                                   \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"NEC Livonia Campus\",\n                    \"subTitle\": \"Associate's degreeElectronic Engineering Technology\"\n                },\n                {\n                    \"title\": \"Allen Park High School\",\n                    \"subTitle\": \"DiplomaArchitecture/Drafting\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686252309387,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Automotive Electronics\",\n                \"Electronics\",\n                \"Test Equipment\",\n                \"Calibration\",\n                \"Automotive\",\n                \"Soldering\",\n                \"Components\",\n                \"SMT\",\n                \"Parts\",\n                \"Lean Manufacturing\",\n                \"Manufacturing\",\n                \"Testing\",\n                \"Continuous Improvement\",\n                \"Troubleshooting\",\n                \"Oscilloscope\",\n                \"Multimeter\",\n                \"Hand Tools\",\n                \"Lathe\",\n                \"Purchase Management\",\n                \"Management\",\n                \"Field Service\",\n                \"Biotechnology Industry\",\n                \"barrier crash testing\",\n                \"Customer Liason\",\n                \"airbags\",\n                \"passive safety applications\",\n                \"barrier impact test set-up\",\n                \"test set-up sign off\",\n                \"Self-driven\",\n                \"Flexible approach to work\",\n                \"Team-oriented\",\n                \"SMD\",\n                \"Electro-mechanical\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.2575385,\n                    \"lon\": -83.2110375\n                },\n                \"formattedAddress\": \"Allen Park, MI 48101, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11237,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"2F871CD7E904AFCC1266C851B32C488C\",\n            \"canonical\": \"https://www.linkedin.com/in/thomas-t-j-malbouef-a56b4a\",\n            \"fullname\": \"Thomas (T.J.) Malbouef\",\n            \"headline\": \"Technical Project Leader, ADAS, Continental Automotive Systems\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4D03AQG6EHJxCcn3Ug/profile-displayphoto-shrink_800_800/0/1516273303998?e=2147483647&v=beta&t=lv-Rg87MSR7e0TxKfb-P0BNDYDBBhwG3aDFW4HAD6i0\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/thomas-t-j-malbouef-a56b4a\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2016-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Technical Project Leader, Advanced Driver Assistance Systems (ADAS)\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Systems Engineer, Passive Safety and Sensorics\",\n                    \"description\": \"                                                                                                                                                                    \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Project Manager, Passive Safety and Advanced Driver Assistance Systems (PSAD)\",\n                    \"description\": \"                                                                                                        \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Project Manager, Passive Safety and Advanced Driver Assistance Systems (PSAD)\",\n                    \"description\": \"                                                                                                                                                                                                           \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2000-05-01\",\n                    \"leaveDate\": \"2006-11-01\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Algorithm engineer, Automotive Crash Sensing System\",\n                    \"description\": \"                                                                                                                                                                              \"\n                },\n                {\n                    \"hiredDate\": \"1997-06-01\",\n                    \"leaveDate\": \"2000-05-01\",\n                    \"company\": \"Ford Motor Company/Visteon\",\n                    \"position\": \"Algorithm Engineer, Crash Sensors\",\n                    \"description\": \"                                                                                                                                                       \"\n                },\n                {\n                    \"hiredDate\": \"1995-06-01\",\n                    \"leaveDate\": \"1997-06-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Product Design Engineer, Mechanical\",\n                    \"description\": \"                                                                         \"\n                },\n                {\n                    \"hiredDate\": \"1994-01-01\",\n                    \"leaveDate\": \"1995-06-01\",\n                    \"company\": \"Ford Motor Company, Dearborn Glass Plant\",\n                    \"position\": \"Manufacturing Process Engineer, Windshield Fabrication\",\n                    \"description\": \"                                                                                                                                                                        \"\n                },\n                {\n                    \"hiredDate\": \"1992-11-01\",\n                    \"leaveDate\": \"1994-01-01\",\n                    \"company\": \"Ford Motor Company, Supplier Quality\",\n                    \"position\": \"Supplier Technical Assistance Engineer\",\n                    \"description\": \"                                                                                    \"\n                },\n                {\n                    \"hiredDate\": \"1991-01-01\",\n                    \"leaveDate\": \"1992-11-01\",\n                    \"company\": \"Ford Motor Company, Tulsa Glass Plant\",\n                    \"position\": \"Manufacturing Process Engineer\",\n                    \"description\": \"                                                                                                                                                                                              \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"MSMEMechanical Engineering, Biomedical\"\n                },\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"BSMEMechanical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686245628540,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Automotive\",\n                \"Electronics\",\n                \"Mechanical Engineering\",\n                \"Product Design\",\n                \"Powertrain\",\n                \"Vehicles\",\n                \"Sensors\",\n                \"Leadership\",\n                \"Requirements Analysis\",\n                \"Calibration\",\n                \"FMEA\",\n                \"Engineering Management\",\n                \"APQP\",\n                \"PPAP\",\n                \"Six Sigma\",\n                \"Lean Manufacturing\",\n                \"Continuous Improvement\",\n                \"Manufacturing\",\n                \"Engineering\",\n                \"Root Cause Analysis\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11846,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"1158FBD18533A2329EA0B2E402D6C322\",\n            \"canonical\": \"https://www.linkedin.com/in/orthelladams\",\n            \"fullname\": \"Orthell Adams\",\n            \"headline\": \"Senior Mechanical Engineer at Continental Automotive Systems\",\n            \"location\": \"Auburn Hills, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQHGDCUpKgT6rA/profile-displayphoto-shrink_800_800/0/1516334853243?e=2147483647&v=beta&t=bHbqrdBlgNl9DhBCZ0i8nwl2R_Drm_T1MMaZwsBY1ME\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/orthelladams\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2011-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Mechanical Engineer\",\n                    \"description\": \"                                                                                                                                                 ’                                                                                                                                                                                                                                                                                                                                                 …          \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2009-12-01\",\n                    \"leaveDate\": \"2010-12-01\",\n                    \"company\": \"GE Consumer & Industrial\",\n                    \"position\": \"Lead Systems Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                               \"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2009-02-01\",\n                    \"company\": \"Visteon Corporation\",\n                    \"position\": \"Lead Senior Applications / Mechanical Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  …          \"\n                },\n                {\n                    \"hiredDate\": \"1998-07-01\",\n                    \"leaveDate\": \"1999-12-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Applications / Mechanical Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    …          \"\n                },\n                {\n                    \"hiredDate\": \"1996-07-01\",\n                    \"leaveDate\": \"1998-07-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Product Design / Systems Development Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                …          \"\n                },\n                {\n                    \"hiredDate\": \"1995-02-01\",\n                    \"leaveDate\": \"1996-06-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Manufacturing Process Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           …          \"\n                },\n                {\n                    \"hiredDate\": \"1994-01-01\",\n                    \"leaveDate\": \"1995-02-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Production Supervisor / Shift Leader\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                      \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Miami University\",\n                    \"subTitle\": \"Bachelor of ScienceManufacturing Engineering with a concentration in Mechanical Engineering\"\n                },\n                {\n                    \"title\": \"Macomber-Whitney High School\",\n                    \"subTitle\": \"High School DiplomaGeneral Studies\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686242070453,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Motivated Mechanical Engineer with extensive experience in complex electro-mechanical control module design and implementation. Over 20 years of experience working for a major automotive component supplier and with top automotive manufacturing companies. Proven strengths are project management, mechanical design, design implementation, product testing and analysis, and excellent organizational and communication skills. Specialties: • Problem Analysis • Project Management • Design Development • DFMEA • Testing Verification • Production Support • GD&T • Tooling Design • Injection Molding • Class A Surface Development\",\n            \"skills\": [\n                \"Automotive\",\n                \"GD&T\",\n                \"Manufacturing\",\n                \"Manufacturing Engineering\",\n                \"Engineering Management\",\n                \"Lean Manufacturing\",\n                \"FMEA\",\n                \"Six Sigma\",\n                \"Continuous Improvement\",\n                \"Engineering\",\n                \"Product Design\",\n                \"PPAP\",\n                \"DFMEA\",\n                \"Product Development\",\n                \"Program Management\",\n                \"SPC\",\n                \"Injection Molding\",\n                \"Design for Manufacturing\",\n                \"Root Cause Analysis\",\n                \"Teamcenter\",\n                \"Electronics\",\n                \"Mechanical Engineering\",\n                \"Process Improvement\",\n                \"APQP\",\n                \"Geometric Dimensioning & Tolerancing\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6875323,\n                    \"lon\": -83.2341028\n                },\n                \"formattedAddress\": \"Auburn Hills, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 10355,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"B1BD2F0733470410098558767EBE0063\",\n            \"canonical\": \"https://www.linkedin.com/in/denny-lombardo-44562010\",\n            \"fullname\": \"Denny Lombardo\",\n            \"headline\": \"Automotive Professional\",\n            \"location\": \"Clarkston, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQHtUEBV56uR7g/profile-displayphoto-shrink_800_800/0/1517727129073?e=2147483647&v=beta&t=pu1KqCLrZObYxMckhGbnFPWvJkTCGPmkDEOWVM2cafE\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/denny-lombardo-44562010\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2010-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Technical Project Lead Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"1973-07-01\",\n                    \"leaveDate\": \"2008-11-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Manager\",\n                    \"description\": \"                                                           –                                                                                                                                                                                                        •                             •                                                       •                               •                        •                     •                             …          \"\n                },\n                {\n                    \"hiredDate\": \"1973-01-01\",\n                    \"leaveDate\": \"2008-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Manager\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1973-01-01\",\n                    \"leaveDate\": \"2008-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Retired - Engineering Group Manager - Electrical\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Youngstown State University\",\n                    \"subTitle\": \"MsEEElectrical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686239782229,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am currently employed as a Technical Project Lead for Continental Automotive Systems where I am responsible for the GM Global A BCM. In late 2008 I accepted an early retirement package from General Motors. I considered this an opportunity to make a career change and not an actually retirement. I was seeking a position that would benefit from my years of experience. My career with General Motors began in advanced electronic design and progressed to numerous leadership positions held throughout the majority of my career. •I have had responsibility for a wide variety of electrical and electronic products ranging from wiring and an array of switches to instrument panel clusters, numerous body computers, brake, traction and stability controllers, adaptive lighting controllers and RF transmitters and receivers. •During my career I have demonstrated technical and leadership skills and the ability to use good judgment. •I have demonstrated a high degree of integrity and work ethics. •I have had the opportunity of creating numerous effective teams. •I have participated in and lead Global activities and teams. •Provided training to GM employees located in Global GM sites. Additional details about my skills and knowledge are available in my resume.\",\n            \"skills\": [\n                \"Vehicles\",\n                \"Program Management\",\n                \"Electronics\",\n                \"Continuous Improvement\",\n                \"Automotive\",\n                \"Automotive Engineering\",\n                \"DFMEA\",\n                \"FMEA\",\n                \"Product Development\",\n                \"Systems Engineering\",\n                \"Powertrain\",\n                \"Engineering\",\n                \"Embedded Systems\",\n                \"GD&T\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.7351196,\n                    \"lon\": -83.4192941\n                },\n                \"formattedAddress\": \"Village of Clarkston, MI 48346, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 17874,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"AC2875E840FA176AF7A583D741E6F921\",\n            \"canonical\": \"https://www.linkedin.com/in/ken-redcap-70069710\",\n            \"fullname\": \"Ken Redcap\",\n            \"headline\": \"Senior Industrial Engineer at Continental Automotive Systems\",\n            \"location\": \"Rochester, Michigan\",\n            \"industry\": \"automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/ken-redcap-70069710\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"1998-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Industrial Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                  \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"1995-01-01\",\n                    \"leaveDate\": \"1998-01-01\",\n                    \"company\": \"EDS Group\",\n                    \"position\": \"Systems Engineer\",\n                    \"description\": \"                                                                                                 \"\n                },\n                {\n                    \"hiredDate\": \"1993-05-01\",\n                    \"leaveDate\": \"1995-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Systems Engineer\",\n                    \"description\": \"                        \"\n                },\n                {\n                    \"hiredDate\": \"1991-06-01\",\n                    \"leaveDate\": \"1993-05-01\",\n                    \"company\": \"AFC-Holcroft\",\n                    \"position\": \"Systems Engineer\",\n                    \"description\": \"                      \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Lawrence Technological University\",\n                    \"subTitle\": \"BSEE/BSChElectrical Engineering/Chemistry3.40 (out of 4.0)\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686231673684,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Experienced Senior Industrial Engineer with a demonstrated history of working in the automotive industry. Strong engineering professional skilled in C#, C, PHP, Visual Basic, Failure Mode and Effects Analysis (FMEA), Six Sigma, Advanced Product Quality Planning (APQP), and Serial Communications.\",\n            \"skills\": [\n                \"APQP\",\n                \"Automotive\",\n                \"Lean Manufacturing\",\n                \"PPAP\",\n                \"Continuous Improvement\",\n                \"Root Cause Analysis\",\n                \"Kaizen\",\n                \"DFMEA\",\n                \"FMEA\",\n                \"Web Applications\",\n                \"Serial Communications\",\n                \"JavaScript\",\n                \"C#\",\n                \"Visual Basic\",\n                \"SPC\",\n                \"Engineering Management\",\n                \"Engineering\",\n                \"Six Sigma\",\n                \"Process Improvement\",\n                \"Manufacturing\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.680588,\n                    \"lon\": -83.1338214\n                },\n                \"formattedAddress\": \"Rochester, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11695,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"5E5345D56B839811DAA6273F31D978D5\",\n            \"canonical\": \"https://www.linkedin.com/in/philboling\",\n            \"fullname\": \"Phil Boling\",\n            \"headline\": \"Sales Manager at Continental Automotive Systems\",\n            \"location\": \"Waterford, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/philboling\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2010-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Sales Manager - Commercial Vehicle\",\n                    \"description\": \"                                                                                                                                                                        \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"1997-09-01\",\n                    \"leaveDate\": \"2009-12-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Global Marketing Manager - Powertrain and Energy\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       …          \"\n                },\n                {\n                    \"hiredDate\": \"2002-11-01\",\n                    \"leaveDate\": \"2006-10-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Business Planner - Battery Business Unit and Sensors & Actuators BU\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \"\n                },\n                {\n                    \"hiredDate\": \"1996-06-01\",\n                    \"leaveDate\": \"1997-09-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Sales & Marketing Manager - South America\",\n                    \"description\": \"                                                                                                                                                                                                                      \"\n                },\n                {\n                    \"hiredDate\": \"1993-06-01\",\n                    \"leaveDate\": \"1996-06-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Account Manager - South America\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                      \"\n                },\n                {\n                    \"hiredDate\": \"1991-01-01\",\n                    \"leaveDate\": \"1993-06-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Divisional Business Planning Administrator\",\n                    \"description\": \"                                                                                                                                                                                                         \"\n                },\n                {\n                    \"hiredDate\": \"1988-01-01\",\n                    \"leaveDate\": \"1991-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Senior Industry Analyst\",\n                    \"description\": \"                                                                                                                                                                                                                  \"\n                },\n                {\n                    \"hiredDate\": \"1983-09-01\",\n                    \"leaveDate\": \"1988-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Sales Analyst\",\n                    \"description\": \"                                                                                                                                                                  \"\n                },\n                {\n                    \"hiredDate\": \"1981-10-01\",\n                    \"leaveDate\": \"1983-09-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Manufacturing - Programmer\",\n                    \"description\": \"                                                                                                                                                                          \"\n                },\n                {\n                    \"hiredDate\": \"1979-06-01\",\n                    \"leaveDate\": \"1981-10-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Human Resource Analyst\",\n                    \"description\": \"                                                                                                                                                                             \"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Portuguese\",\n                \"Japanese\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Purdue University\",\n                    \"subTitle\": \"BSData Processing\"\n                },\n                {\n                    \"title\": \"Purdue University Daniels School of Business\",\n                    \"subTitle\": \"BSIndustrial Management\"\n                },\n                {\n                    \"title\": \"Escola Graduada de São Paulo\",\n                    \"subTitle\": \"HS DiplomaCollege Prep\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686229013040,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Extensive experience as a Sales and Marketing Manager and Business Planner on the business to business side of the automotive, heavy duty, marine and small engine markets primarily with: energy, power-train and exhaust after-treatment products; bringing an international perspective and experience having led sales in new regions (South America): $200M and into new markets (e.g. small engine): $250M per year; bilingual in Portuguese. Specialties: Product Marketing, Product Value Analysis, Business Planning, Technology Planning, Sales Account Management, Sales Forecasting, Vehicle Emission Standards, Fluent in Brazil Portuguese\",\n            \"skills\": [\n                \"Sales Management\",\n                \"Marketing Strategy\",\n                \"Cross-functional Team Leadership\",\n                \"Forecasting\",\n                \"Business Planning\",\n                \"Technology Planning\",\n                \"Automotive\",\n                \"Product Marketing\",\n                \"Leadership\",\n                \"International Sales\",\n                \"International Business\",\n                \"Analysis\",\n                \"B2B\",\n                \"Business Development\",\n                \"Business Strategy\",\n                \"Competitive Analysis\",\n                \"Continuous Improvement\",\n                \"Customer Service\",\n                \"Marketing\",\n                \"Process Improvement\",\n                \"Management\",\n                \"Market Analysis\",\n                \"Project Planning\",\n                \"Sales\",\n                \"Product Lifecycle Management\",\n                \"Strategy\",\n                \"Value Stream Mapping\",\n                \"Vehicles\",\n                \"Product Development\",\n                \"Product Management\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6907443,\n                    \"lon\": -83.4066132\n                },\n                \"formattedAddress\": \"Waterford Twp, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 15835,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"E2AE56F20068A033BB0E4E55F8905AA9\",\n            \"canonical\": \"https://www.linkedin.com/in/davidmerrow\",\n            \"fullname\": \"David Merrow\",\n            \"headline\": \"On to new opportunities with ContiTech\",\n            \"location\": \"Rochester, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQGeyz_ugn2YVA/profile-displayphoto-shrink_800_800/0/1517718706136?e=2147483647&v=beta&t=dn8MnYVc6LDckKP91Bwple4gOZezMvJsanIMDQDJmLs\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/davidmerrow\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2015-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"ContiTech\",\n                    \"position\": \"Technical Project Lead\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2012-04-01\",\n                    \"leaveDate\": \"2015-08-01\",\n                    \"company\": \"TI Fluid Systems\",\n                    \"position\": \"Application Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2010-07-01\",\n                    \"leaveDate\": \"2012-05-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Release Engineer - AC Compressors\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2008-07-01\",\n                    \"leaveDate\": \"2009-02-01\",\n                    \"company\": \"Behr\",\n                    \"position\": \"Team Leader / Validation – Navistar, Freightliner, and PACCAR HVAC\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                          ’                                                                                 •                                                                                                              …          \"\n                },\n                {\n                    \"hiredDate\": \"2005-05-01\",\n                    \"leaveDate\": \"2008-06-01\",\n                    \"company\": \"Behr\",\n                    \"position\": \"Lead Validation Engineer – GM 9XX & Lambda Front & Rear HVAC\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                   •                                                                                                         …          \"\n                },\n                {\n                    \"hiredDate\": \"2004-02-01\",\n                    \"leaveDate\": \"2005-05-01\",\n                    \"company\": \"Behr\",\n                    \"position\": \"Build Coordinator – GM 9XX Front & Rear HVAC\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                               •                                                                          …          \"\n                },\n                {\n                    \"hiredDate\": \"2000-03-01\",\n                    \"leaveDate\": \"2004-01-01\",\n                    \"company\": \"Lear Corporation\",\n                    \"position\": \"Co-op Engineer\",\n                    \"description\": \"                                                                                                                                                                                     ’                                                                                                   •                                                                                                                                                                                                               …          \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Kettering University\",\n                    \"subTitle\": \"MSME\"\n                },\n                {\n                    \"title\": \"Kettering University\",\n                    \"subTitle\": \"BSMEEngineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686226335245,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"A product engineer with years of progressively increasing responsibility at an automotive OEM supplier and a total of 2 years of varied experience as an engineering co-op student. Highly effective in finishing the job at hand regardless of starting at the beginning, the middle, or the end of the project. Demonstrating an organized approach to validation and reducing the cost of the finished product. Skilled in: • Plan and manage product validation • Product development • Product implementation into production • FMEA development • Prototype tracking • Analyze and interpret testing data • Multicultural teamwork • SAP Key User\",\n            \"skills\": [\n                \"FMEA\",\n                \"Manufacturing\",\n                \"Automotive\",\n                \"PPAP\",\n                \"Engineering\",\n                \"Continuous Improvement\",\n                \"Lean Manufacturing\",\n                \"Product Development\",\n                \"Root Cause Analysis\",\n                \"APQP\",\n                \"Automotive Engineering\",\n                \"Product Design\",\n                \"Manufacturing Engineering\",\n                \"Injection Molding\",\n                \"GD\",\n                \"Testing\",\n                \"Six Sigma\",\n                \"Program Management\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.680588,\n                    \"lon\": -83.1338214\n                },\n                \"formattedAddress\": \"Rochester, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7923,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"DDC33136FE030AC04AE0420A37044C06\",\n            \"canonical\": \"https://www.linkedin.com/in/jamespiscopink\",\n            \"fullname\": \"James Piscopink\",\n            \"headline\": \"Senior Staff Engineer\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/jamespiscopink\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2012-09-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Staff Engineer\",\n                    \"description\": \"∙                                                            \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2011-06-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"ESG Automotive\",\n                    \"position\": \"Systems Engineer\",\n                    \"description\": \"∙                                                            ∙                                                                      ∙                                                                                           ∙                                             \"\n                },\n                {\n                    \"hiredDate\": \"2007-12-01\",\n                    \"leaveDate\": \"2008-11-01\",\n                    \"company\": \"Mercedes-Benz Group AG\",\n                    \"position\": \"Core Product Engineer\",\n                    \"description\": \"•                                                                                                                                                                                      •                                                                                                                                                                               •                                                                                                                                 …          \"\n                },\n                {\n                    \"hiredDate\": \"2006-08-01\",\n                    \"leaveDate\": \"2007-12-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Product Engineer - Instrument Cluster\",\n                    \"description\": \"•                                                                                                                                              •                                                                                                                                                                           •                                                                                                                                                                                …          \"\n                },\n                {\n                    \"hiredDate\": \"2004-06-01\",\n                    \"leaveDate\": \"2006-08-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Product Release Engineer - Steering Column Switches\",\n                    \"description\": \"•                                                                                                                                                                                                                 •                                                                                                                                                •                                                                                                                                     …          \"\n                },\n                {\n                    \"hiredDate\": \"1998-05-01\",\n                    \"leaveDate\": \"2004-06-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Product Release Engineer - Wiring Harness Assemblies\",\n                    \"description\": \"•                                                                                                 •                                                                                                                                                                             •                                                                                             •                                                              •                                                    …          \"\n                },\n                {\n                    \"hiredDate\": \"1997-06-01\",\n                    \"leaveDate\": \"1998-06-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Project Leader - Body Control Module\",\n                    \"description\": \"•                                                                                                                    •                                                          •                                                                                  \"\n                },\n                {\n                    \"hiredDate\": \"1996-06-01\",\n                    \"leaveDate\": \"1997-05-01\",\n                    \"company\": \"Chrysler Electronics - Huntsville, Alabama\",\n                    \"position\": \"Liaison Engineer\",\n                    \"description\": \"•                                                                                                                                                                                                                  \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"BSEEElectrical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686181248355,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Automotive Engineer with years of experience in electronic module development, E/E system development, and wiring harness design. My goal is to obtain an engineering position where I can maximize my design, project management, system development, quality assurance, program development, and manufacturing experience.\",\n            \"skills\": [\n                \"Automotive\",\n                \"CANoe\",\n                \"DFMEA\",\n                \"Electronics\",\n                \"Engineering\",\n                \"Manufacturing\",\n                \"Process Improvement\",\n                \"Project Management\",\n                \"Quality Assurance\",\n                \"Vehicles\",\n                \"Automotive Engineering\",\n                \"Components\",\n                \"Testing\",\n                \"PPAP\",\n                \"Engineering Management\",\n                \"FMEA\",\n                \"Failure Mode and Effects Analysis (FMEA)\",\n                \"Continuous Improvement\",\n                \"Production Part Approval Process (PPAP)\",\n                \"Root Cause Analysis\",\n                \"Design Failure Mode and Effect Analysis (DFMEA)\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 8863,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"D52A0B6FC3894D94B87C99C64CE9C651\",\n            \"canonical\": \"https://www.linkedin.com/in/harold-rosenbaum-865a8016\",\n            \"fullname\": \"Harold Rosenbaum\",\n            \"headline\": \"Currently seeking employment in Electrical Engineering\",\n            \"location\": \"Oak Park, Michigan\",\n            \"industry\": \"electrical/electronic manufacturing\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/harold-rosenbaum-865a8016\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Stellantis\",\n                    \"position\": \"Wiring Harness Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2021-06-01\",\n                    \"leaveDate\": \"2022-03-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Power & Signal Distribution System Design/Release Engineer\",\n                    \"description\": \"                                                                                                                                  \"\n                },\n                {\n                    \"hiredDate\": \"2018-09-01\",\n                    \"leaveDate\": \"2019-09-01\",\n                    \"company\": \"Furukawa Group\",\n                    \"position\": \"Product Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             …          \"\n                },\n                {\n                    \"hiredDate\": \"2017-10-01\",\n                    \"leaveDate\": \"2018-03-01\",\n                    \"company\": \"RGBSI\",\n                    \"position\": \"Ford Resident Engineer\",\n                    \"description\": \"                                      ’                                                                  \"\n                },\n                {\n                    \"hiredDate\": \"2015-01-01\",\n                    \"leaveDate\": \"2017-02-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Product Engineer Electrical / Electronic\",\n                    \"description\": \"                                                                                                                                                             \"\n                },\n                {\n                    \"hiredDate\": \"2012-09-01\",\n                    \"leaveDate\": \"2014-12-01\",\n                    \"company\": \"Asia Automotive\",\n                    \"position\": \"Wire Harness Engineer\",\n                    \"description\": \"                                                                                                                                                                     \"\n                },\n                {\n                    \"hiredDate\": \"2011-01-01\",\n                    \"leaveDate\": \"2011-07-01\",\n                    \"company\": \"Navistar Inc\",\n                    \"position\": \"Electrical Engineer\",\n                    \"description\": \"                                                                                   \"\n                },\n                {\n                    \"hiredDate\": \"2008-04-01\",\n                    \"leaveDate\": \"2010-12-01\",\n                    \"company\": \"SPX Corporation\",\n                    \"position\": \"Technical Author\",\n                    \"description\": \"                                                                                       \"\n                },\n                {\n                    \"hiredDate\": \"2005-01-01\",\n                    \"leaveDate\": \"2005-03-01\",\n                    \"company\": \"Champion Bus\",\n                    \"position\": \"Electrical Engineer\",\n                    \"description\": \"                                                                                                                                                                                     \"\n                },\n                {\n                    \"hiredDate\": \"2002-12-01\",\n                    \"leaveDate\": \"2004-12-01\",\n                    \"company\": \"Kelly Services, Inc.\",\n                    \"position\": \"Quality Engineering Technician\",\n                    \"description\": \"                                                                                                                                                                                                               \"\n                },\n                {\n                    \"hiredDate\": \"1997-11-01\",\n                    \"leaveDate\": \"2001-12-01\",\n                    \"company\": \"Lear Corporation (formerly UT Automotive)\",\n                    \"position\": \"Project Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        …          \"\n                },\n                {\n                    \"hiredDate\": \"1993-02-01\",\n                    \"leaveDate\": \"1997-11-01\",\n                    \"company\": \"Thomas & Betts Automotive (formerly Augat Automotive)\",\n                    \"position\": \"Project Engineer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                       …          \"\n                },\n                {\n                    \"hiredDate\": \"1987-06-01\",\n                    \"leaveDate\": \"1992-01-01\",\n                    \"company\": \"Hughes Electronic Products\",\n                    \"position\": \"Screen Printer\",\n                    \"description\": \"                                                                                                                                                                                                                                                          \"\n                },\n                {\n                    \"hiredDate\": \"1982-05-01\",\n                    \"leaveDate\": \"1986-09-01\",\n                    \"company\": \"General Dynamics Corporation\",\n                    \"position\": \"Q. C. Inspector/ Troubleshooter\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             …          \"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Lawrence Technological University\",\n                    \"subTitle\": \"Bachelor of Science DegreeElectrical Engineering\"\n                },\n                {\n                    \"title\": \"Baker College of Flint\",\n                    \"subTitle\": \"Bachelor of ScienceMechanical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686133104538,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"More than 20 years of experience as an electrical engineer. I have also earned a bachelors degree in Mechanical Engineering; graduation date - June 2010. Specialties: * Analytical and troubleshooting skills * Self-starter; able to work effectively with minimal supervision * Able to work in a team environment\",\n            \"skills\": [\n                \"Electrical Engineering\",\n                \"Wiring\",\n                \"Testing\",\n                \"Engineering\",\n                \"Electronics\",\n                \"FMEA\",\n                \"Automotive\",\n                \"CAD\",\n                \"Root Cause Analysis\",\n                \"AutoCAD\",\n                \"DFMEA\",\n                \"Mechanical Engineering\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4594803,\n                    \"lon\": -83.18270509999999\n                },\n                \"formattedAddress\": \"Oak Park, MI 48237, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11050,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"F434939899C130CFAC9C2E9245CA863F\",\n            \"canonical\": \"https://www.linkedin.com/in/chirapatsakul-pat-303a9910\",\n            \"fullname\": \"Chirapatsakul Pat\",\n            \"headline\": \"Program Manager at FCA Fiat Chrysler Automobiles\",\n            \"location\": \"Novi, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQFqMgW3x6zqdQ/profile-displayphoto-shrink_800_800/0/1589990455492?e=2147483647&v=beta&t=jJNe1EYc8epNhH2b2khFLVUsVwsiuHv_LHQ77abO1qw\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/chirapatsakul-pat-303a9910\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2020-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Program Manager\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"System Engineer - Exterior Lights\",\n                    \"description\": \"•                                                                                              •                                                                                          •                                                                                                     •                                                                                                                                                         •                                          …          \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Engineering Supervisor\",\n                    \"description\": \"•                                                                                                                                                                                                                    •                                                                                                                                                                          •                                                                                                           …          \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Program Manager\",\n                    \"description\": \"•                                                                                                                                                                                                                                                  •                                                                                                          •                                                                                                                                          …          \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Engineering Supervisor - Electomechanical\",\n                    \"description\": \"•                                                                                                            •                                                                                                                                                                  •                                                                              •                                                                                                                                      …          \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Safety Engineer - Side Impact Crash Test\",\n                    \"description\": \"•                                                                                                                                                                                                •                                                                                 •                                                                                                       •                                                                                                       …          \"\n                },\n                {\n                    \"hiredDate\": \"\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Engineering Supervisor\",\n                    \"description\": \"•                                                                                                                                                                                                                                                            •                                                                                     •                                                                                                                                ’                       …          \"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2004-08-01\",\n                    \"leaveDate\": \"2005-12-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Validation Engineer - Electrical System\",\n                    \"description\": \"•                                                                                                                                        •                                                                                                                                                                                                      •                                                                                                                                             …          \"\n                },\n                {\n                    \"hiredDate\": \"2003-07-01\",\n                    \"leaveDate\": \"2004-07-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Product Development Engineer - Switches\",\n                    \"description\": \"•                                                                                                                                                                                   •                                                                                                                                                                                                                       •                                                                                            •…          \"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2003-08-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Resident Engineer - Electrical / HVAC / Instrument Panel\",\n                    \"description\": \"•                                                                                                                                                         •                                                                                           •                                                                                                                                                                            •                                                                   …          \"\n                },\n                {\n                    \"hiredDate\": \"1998-01-01\",\n                    \"leaveDate\": \"1999-12-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Quality Engineer - Electrical\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Fontbonne University\",\n                    \"subTitle\": \"Master of Business Administration - MBAFinance, General\"\n                },\n                {\n                    \"title\": \"University of Missouri-Columbia\",\n                    \"subTitle\": \"Master of Engineering - MEngIndustrial Engineering\"\n                },\n                {\n                    \"title\": \"University of Missouri-Columbia\",\n                    \"subTitle\": \"Bachelor's degreeElectrical and Electronics Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686130154127,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"A goal-oriented, energetic engineer with Program Management, Electrical Validation, product releasing, as well as supervisory experience, who works well as a team and as an individual. Fluent in Thai and Chinese Mandarin\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.48059,\n                    \"lon\": -83.4754913\n                },\n                \"formattedAddress\": \"Novi, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 9164,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"47C0E2C39968BFC275AD534B69F4BCAF\",\n            \"canonical\": \"https://www.linkedin.com/in/kathryn-blackwell-6845482\",\n            \"fullname\": \"Kathryn Blackwell\",\n            \"headline\": \"Vice President, Communications & Marketing, Continental Automotive (retired, but open to opportunities!)\",\n            \"location\": \"Northville, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/kathryn-blackwell-6845482\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2008-03-01\",\n                    \"leaveDate\": \"2023-03-01\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Vice President -- Communications & Marketing, NAFTA Region\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2001-07-01\",\n                    \"leaveDate\": \"2008-03-01\",\n                    \"company\": \"Union Pacific Corporation\",\n                    \"position\": \"Assistant Vice President, Corporate Communications\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2000-02-01\",\n                    \"leaveDate\": \"2001-03-01\",\n                    \"company\": \"Mercedes-Benz Group AG\",\n                    \"position\": \"Senior Manager, International Marketing, Jeep Division\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2001-01-01\",\n                    \"company\": \"Mercedes-Benz Group AG\",\n                    \"position\": \"Senior Manager, Jeep Brand Marketing & Communications\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1989-01-01\",\n                    \"leaveDate\": \"1998-08-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Director, Public Affairs\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"Bachelor of ArtsDual Degree -- English and Communications\"\n                },\n                {\n                    \"title\": \"Northwestern University\",\n                    \"subTitle\": \"MSIntegrated Marketing Communications\"\n                },\n                {\n                    \"title\": \"Duke University - The Fuqua School of Business\",\n                    \"subTitle\": \"Executive Marketing Program\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1686127581865,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Public Relations\",\n                \"Media Relations\",\n                \"Automotive\",\n                \"Internal Communications\",\n                \"Corporate Communications\",\n                \"Crisis Communications\",\n                \"Continuous Improvement\",\n                \"Marketing Communications\",\n                \"Strategic Planning\",\n                \"Vehicles\",\n                \"Business Strategy\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.4311464,\n                    \"lon\": -83.4832692\n                },\n                \"formattedAddress\": \"Northville, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 12202,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"GE0EMX4BBVw90JBmzFOZ\",\n            \"canonical\": \"https://www.linkedin.com/in/akshita-verma\",\n            \"fullname\": \"Akshita V.\",\n            \"headline\": \"2nd Year J.D. Candidate at Wayne Law School\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/D5603AQFqD5vSdiiX7Q/profile-displayphoto-shrink_800_800/0/1669001640064?e=2147483647&v=beta&t=kNc2Hhl1QIU8a4UrywJmwyTcELuEcXVh28TZ93cRQp8\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/akshita-verma\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Wayne State University Law School\",\n                    \"position\": \"Research Assistant\",\n                    \"description\": \"                                                                                           \"\n                },\n                {\n                    \"hiredDate\": \"2023-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Advancement Project\",\n                    \"position\": \"Legal Extern\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2022-09-01\",\n                    \"leaveDate\": \"2022-12-01\",\n                    \"company\": \"Detroit Justice Center\",\n                    \"position\": \"Legal Extern\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2022-06-01\",\n                    \"leaveDate\": \"2022-08-01\",\n                    \"company\": \"Michigan Immigrant Rights Center\",\n                    \"position\": \"Summer Law Clerk\",\n                    \"description\": \"                                                                                                                                                                                                                                                                            \"\n                },\n                {\n                    \"hiredDate\": \"2020-08-01\",\n                    \"leaveDate\": \"2022-07-01\",\n                    \"company\": \"Done Waiting\",\n                    \"position\": \"Co-Founder and Vice Chair\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                              \"\n                },\n                {\n                    \"hiredDate\": \"2019-12-01\",\n                    \"leaveDate\": \"2020-08-01\",\n                    \"company\": \"Solomon Rajput For Congress\",\n                    \"position\": \"Campaign Manager\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               …\"\n                },\n                {\n                    \"hiredDate\": \"2019-09-01\",\n                    \"leaveDate\": \"2019-11-01\",\n                    \"company\": \"Solomon Rajput For Congress\",\n                    \"position\": \"Field Director\",\n                    \"description\": \"                                                                                 \"\n                },\n                {\n                    \"hiredDate\": \"2019-02-01\",\n                    \"leaveDate\": \"2019-11-01\",\n                    \"company\": \"Ellis Porter - The Immigration Attorneys\",\n                    \"position\": \"Legal Writer\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                     \"\n                },\n                {\n                    \"hiredDate\": \"2017-09-01\",\n                    \"leaveDate\": \"2018-03-01\",\n                    \"company\": \"University of Michigan\",\n                    \"position\": \"Research Lab Assistant\",\n                    \"description\": \"                                                                                                                                                       \"\n                },\n                {\n                    \"hiredDate\": \"2017-02-01\",\n                    \"leaveDate\": \"2018-01-01\",\n                    \"company\": \"Saint Joseph Mercy Health System\",\n                    \"position\": \"Scribe\",\n                    \"description\": \"                                                                                                                                                                                                                                           \"\n                },\n                {\n                    \"hiredDate\": \"2016-06-01\",\n                    \"leaveDate\": \"2016-08-01\",\n                    \"company\": \"Meridian Health Plan of Michigan, Inc.\",\n                    \"position\": \"Communications Intern\",\n                    \"description\": \"                                                                                                                                                                   ’                                                                                                                                        \"\n                },\n                {\n                    \"hiredDate\": \"2016-01-01\",\n                    \"leaveDate\": \"2016-05-01\",\n                    \"company\": \"The State News\",\n                    \"position\": \"Paid Intern\",\n                    \"description\": \"                                                                                                                                                   \"\n                },\n                {\n                    \"hiredDate\": \"2015-05-01\",\n                    \"leaveDate\": \"2015-08-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Medical Intern\",\n                    \"description\": \"                                                                                                                                                                                                                                                                                                                                               \"\n                },\n                {\n                    \"hiredDate\": \"2015-05-01\",\n                    \"leaveDate\": \"2015-08-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Public Relations Intern\",\n                    \"description\": \"                                                                                                                                                            \"\n                }\n            ],\n            \"languagesList\": [\n                \"Hindi\",\n                \"Spanish\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University Law School\",\n                    \"subTitle\": \"Doctor of Law - JD\"\n                },\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Post-BaccalaureateMedical Neuroscience\"\n                },\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Bachelor of Arts - BAJournalism with a concentration in Environmental Journalism\"\n                },\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Bachelor of Science - BSNeuroscience, with a concentration in Behavioral and Systems Neuroscience\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1684434745107,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am a second-year law student at Wayne State Law and a member of the National Moot Court team. I am an experienced writer, having been a legal writer for a law firm and a policy writer for a congressional campaign. I am also an experienced leader and self-starter, having worked as a congressional campaign manager and creating and managing a Federal PAC. I believe my experience illustrates my work ethic and my drive to learn new information and use it to create structures and products that benefit the work of those around me.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 2204,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"9A0BFEBEBD95E0081AE2935E79C1924F\",\n            \"canonical\": \"https://www.linkedin.com/in/michael-weiler-46664025\",\n            \"fullname\": \"Michael Weiler\",\n            \"headline\": \"Senior Systems Architect\",\n            \"location\": \"Lake Orion, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/michael-weiler-46664025\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-11-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"CAE USA\",\n                    \"position\": \"Windchill Systems Administrator\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2006-12-01\",\n                    \"leaveDate\": \"2022-09-01\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Systems Architect\",\n                    \"description\": \"Development, support, and configuration for Windchill (PTC PDMLink) systems, servers, and publishing. Monitoring of systems and servers using Dynatrace, Icinga and custom scripts. Automated reports for performance tracking. ▪ Product Life-cycle Management, Product Data Management and Change Management for Engineering Release. Analysis of business and IT needs to adapt workflow, system and processes. ▪ Interface between Engineering community and software developers for Business Process…\"\n                },\n                {\n                    \"hiredDate\": \"2006-05-01\",\n                    \"leaveDate\": \"2006-12-01\",\n                    \"company\": \"Tata Sons Private Limited\",\n                    \"position\": \"PLM IT Services Manager\",\n                    \"description\": \"Managed System Engineers across North America\"\n                },\n                {\n                    \"hiredDate\": \"2004-03-01\",\n                    \"leaveDate\": \"2006-05-01\",\n                    \"company\": \"Siemens AG\",\n                    \"position\": \"IT Systems Architect\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1997-07-01\",\n                    \"leaveDate\": \"2004-03-01\",\n                    \"company\": \"INCAT\",\n                    \"position\": \"Systems Engineer\",\n                    \"description\": \"System Engineer; UNIX and Windows administrator, MCAD administrator. Installation, configuration and troubleshooting.\"\n                },\n                {\n                    \"hiredDate\": \"1996-07-01\",\n                    \"leaveDate\": \"1997-07-01\",\n                    \"company\": \"North American Lighting, Inc.\",\n                    \"position\": \"Unix Systems Administrator\",\n                    \"description\": \"▪ UNIX installation and system administration for AIX, HP-UX, IRIX. MCAD software installation and administration for CATIA V4, PDGS, and SDRC Ideas.\"\n                },\n                {\n                    \"hiredDate\": \"1995-12-01\",\n                    \"leaveDate\": \"1996-07-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Team Data Management\",\n                    \"description\": \"SDRC Ideas and Metaphase installation and administration on Solaris, HP-UX, and IRIX. TDM Template implementation of CPSC codes and data management practices.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"Bachelor of Science (B.S.)Aerospace, Aeronautical and Astronautical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1681092010797,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Unix\",\n                \"Systems Engineering\",\n                \"Troubleshooting\",\n                \"Product Lifecycle Management\",\n                \"Windows\",\n                \"Automotive\",\n                \"PDM\",\n                \"Manufacturing\",\n                \"Teamcenter\",\n                \"Catia\",\n                \"Engineering\",\n                \"Unigraphics\",\n                \"Automotive Electronics\",\n                \"Operating Systems\",\n                \"TCP/IP\",\n                \"Automotive Engineering\",\n                \"IT Service Management\",\n                \"CATIA\",\n                \"NX Unigraphics\",\n                \"Engineering Management\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.7844752,\n                    \"lon\": -83.2396612\n                },\n                \"formattedAddress\": \"Lake Orion, Orion Charter Township, MI 48362, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 9931,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"71383095BF16E7ACAF86024A8ECD53B9\",\n            \"canonical\": \"https://www.linkedin.com/in/katalenic\",\n            \"fullname\": \"Robert Katalenic\",\n            \"headline\": \"Helping automotive OEMs and suppliers cultivate innovative electronics into saleable products which meet customer needs\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQEA4EUkXVVmeA/profile-displayphoto-shrink_800_800/0/1602091938075?e=2147483647&v=beta&t=B1aehPkZDrh3Tpi2SOUosqynKGS33CbOV0Fgw1U7a9k\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/katalenic\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Manager Business Development, North America\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2015-01-01\",\n                    \"leaveDate\": \"2019-01-01\",\n                    \"company\": \"VOXX International Corporation\",\n                    \"position\": \"Strategic Business Development, Product Development and Marketing\",\n                    \"description\": \"VOXX Automotive is a global supplier of vehicle access/control and rear seat entertainment (RSE) systems to automotive OEMs. Took innovative technologies, nurtured into production intent products and determined alignment with customer requirements. Developed and executed a targeted strategy for the West Coast startup EV OEMs to promote the company’s proprietary bluetooth (BTLE) technology as a smartphone replacement of keyfobs and traditional passive entry systems. Utilizing…\"\n                },\n                {\n                    \"hiredDate\": \"2011-01-01\",\n                    \"leaveDate\": \"2015-01-01\",\n                    \"company\": \"JATO Dynamics\",\n                    \"position\": \"Vice President of Sales, North America\",\n                    \"description\": \"JATO Dynamics is a global supplier of automotive business intelligence with comprehensive research on vehicle specifications, pricing, sales registrations and automotive industry news for over 60 countries. As Vice President, I lead the 5 member North American sales team. I was the single point of contact for regional performance to corporate executives in UK in coordination with multicultural team of regional leadership in Europe, South America and Asia. I supported development of…\"\n                },\n                {\n                    \"hiredDate\": \"2009-01-01\",\n                    \"leaveDate\": \"2011-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"New Product Business Innovation\",\n                    \"description\": \"Supported the newly re-acquired Delphi Kokomo manufacturing facility which produced Semiconductor Integrated Circuits (IC), Power Electronics, Engine Controllers and Sensors. Facilitated the initial critical post-bankruptcy emergence objectives to transition all existing Delphi programs and their entire customer base to the newly formed GM Components Holdings and ensured an uninterrupted supply of components and revenue. Developed and presented business case proposals to senior…\"\n                },\n                {\n                    \"hiredDate\": \"2003-01-01\",\n                    \"leaveDate\": \"2009-01-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Product Marketing and Business Development\",\n                    \"description\": \"Delphi Electronics & Safety Systems was a leading global supplier of not only Infotainment Systems: Touchscreen Navigation, OnStar telematics, XM Satellite Radios and SDARS Antennas but also ADAS and Safety Systems: Adaptive Cruise Control (ACC), Radar Back Up (BUA) and Passenger Occupant Detection Systems (PODS). Successfully developed cross functional relationship with customer’s engineering, product planning, marketing and brand development teams to identify target…\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"German\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Lawrence Technological University\",\n                    \"subTitle\": \"Bachelor of ScienceElectrical Engineering\"\n                },\n                {\n                    \"title\": \"Macomb Community College\",\n                    \"subTitle\": \"Associate of ArtsElectrical and Electronics Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1681091654799,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am an inquisitive business development leader with an art to part career representation of electronic components, systems and services which combines a unique blend of marketing and technical sales with a bachelor’s degree in Electrical Engineering (BSEE). My ability to communicate and understand both technical and business requirements has been invaluable to successfully facilitate cross functional collaboration resulting in multiple new business opportunities and increased customer satisfaction. I have been successful at taking an idea, nurture it into a production-intent product and find an OEM to deliver. I thrive when focused on developing innovative technologies in automotive. My passion shines through with latest achievement developing a Bluetooth Phone-as-a-Key vehicle access system from concept all the way through to company’s first business award and even industry recognition by Automotive News. My career has given me exposure to a breadth of technologies: Infotainment, Telematics, Wireless, Bluetooth, Semiconductor IC, Advanced Driver Assistance Systems (Radar, LiDAR, Ultrasonic), Powertrain Control Modules, Sensors, Embedded Software Development, Finite Element Analysis and Competitive Intelligence.\",\n            \"skills\": [\n                \"Automotive\",\n                \"Vehicles\",\n                \"Product Development\",\n                \"Product Planning\",\n                \"Telematics\",\n                \"Cross-functional Team Leadership\",\n                \"Competitive Analysis\",\n                \"New Business Development\",\n                \"Product Launch\",\n                \"Sales Management\",\n                \"Pricing\",\n                \"Engineering\",\n                \"Lean Manufacturing\",\n                \"Automobile\",\n                \"Account Management\",\n                \"Product Management\",\n                \"Product Marketing\",\n                \"Negotiation\",\n                \"Program Management\",\n                \"Market Analysis\",\n                \"CRM\",\n                \"Start-ups\",\n                \"Contract Negotiation\",\n                \"Strategic Partnerships\",\n                \"Management\",\n                \"Strategy\",\n                \"Business Development\",\n                \"Sales\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6673,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"52320551DE5C236E22A32F352551E516\",\n            \"canonical\": \"https://www.linkedin.com/in/fabricio-alvaro-88b9b241\",\n            \"fullname\": \"Fabricio Alvaro\",\n            \"headline\": \"Senior Resident Engineer at General Motors\",\n            \"location\": \"Warren, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQEtA_-v1_a5gg/profile-displayphoto-shrink_800_800/0/1516956400280?e=2147483647&v=beta&t=nMAY3_gzCAbvMNt04Nolipnv69oYZxdFzaeh99lKQ0A\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/fabricio-alvaro-88b9b241\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2019-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Senior Resident Engineer\",\n                    \"description\": \"Responsible for the Long Range Radars for Global A platforms and the new generation of digital cameras for all the vehicles at GM.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2016-07-01\",\n                    \"leaveDate\": \"2019-03-01\",\n                    \"company\": \"Valeo S.A.\",\n                    \"position\": \"GM Resident Engineer\",\n                    \"description\": \"Responsible for follow up of project planning, Design Reviews [Internal, Customer, Supplier,] CAD/ Drawing Reviews and associated document reviews Responsible of creation/maintenance of BOM for Surround vision system Support different vehicle build stages at GM\"\n                },\n                {\n                    \"hiredDate\": \"2014-11-01\",\n                    \"leaveDate\": \"2016-06-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Exterior Accessories Design Release Engineer\",\n                    \"description\": \"• Led changes proposed by Marketing to the bed liner (K2XX and 31XX programs) to increase revenue of the commodity. Leading a PDT with Marketing, Validation engineer, Technical integration engineer, Design studio, BFO, GSSLT lead, Supplier quality and Supplier have incorporated features for tie down hooks and have developed a best practice for bed liners plugs. • Led creation of State of Requirements. Have worked with Material, ICE, Manufacturing, Validation engineers and studio for the…\"\n                },\n                {\n                    \"hiredDate\": \"2013-03-01\",\n                    \"leaveDate\": \"2014-11-01\",\n                    \"company\": \"Aerotek-Allegis : contract assignment with General Motors\",\n                    \"position\": \"Exterior Accessories Design Release Engineer\",\n                    \"description\": \"• Led changes proposed by Marketing to the bed liner (K2XX and 31XX programs) to increase revenue of the commodity. Leading a PDT with Marketing, Validation engineer, Technical integration engineer, Design studio, BFO, GSSLT lead, Supplier quality and Supplier have incorporated features for tie down hooks and have developed a best practice for bed liners plugs. • Led creation of State of Requirements. Have worked with Material, ICE, Manufacturing, Validation engineers and studio for the…\"\n                },\n                {\n                    \"hiredDate\": \"2009-07-01\",\n                    \"leaveDate\": \"2013-02-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Design and Release Engineer\",\n                    \"description\": \"• Led design and implementation of the Cross Car Beam of the MKX SUV. Have Interacted with IP, CAE, safety (FMVSS), NVH and electrical commodities on Peer reviews to develop and comply the global IP and console requirements. • Led PDT reviews to meet target of cost, timing and mass of the parts.\"\n                },\n                {\n                    \"hiredDate\": \"2006-08-01\",\n                    \"leaveDate\": \"2009-07-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Design and Release Engineer\",\n                    \"description\": \"• Led the design and packaging of the HVAC and PTC lines for Theta platform, have interacted with others SMTs and suppliers to solve and support performance and packaging issues, have supported virtual reviews (CIT) and cost reduction ideas, have coordinated the execution of production and prototypes parts to support vehicle builds. Have worked closely with purchasing department in GM-Asia to develop suppliers that comply with the requirements of the parts (SOR), have supported peer reviews for…\"\n                },\n                {\n                    \"hiredDate\": \"2006-01-01\",\n                    \"leaveDate\": \"2006-08-01\",\n                    \"company\": \"Plastic-Tec\",\n                    \"position\": \"Product Engineer\",\n                    \"description\": \"• Led process to achieve PPAP for A4 pillars, • Have developed dunnage and have provided technical support to customers. • Achievements: Release of tooling pillars at grade 1 for the A4 platform. • Led A5 pillar tooling startup release process with production, logistic and quality departments. Start-up of the line production for the pillars. • Have worked with production on the creation and release of the plastic mold for the A4 pillars.\"\n                },\n                {\n                    \"hiredDate\": \"2000-10-01\",\n                    \"leaveDate\": \"2004-02-01\",\n                    \"company\": \"Volkswagen de Mexico\",\n                    \"position\": \"Design Release Enginner\",\n                    \"description\": \"• Led the A5 interior garnish and overhead system launch on production. • Have proposed and worked with design studio on a new CD carrier box for the New Beetle. • Have worked on bench tests to validate A4 platform upper interior parts.\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Spanish\",\n                \"German\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"University of the Americas – Puebla\",\n                    \"subTitle\": \"Diploma - minorInterior Automotive Partsminor\"\n                },\n                {\n                    \"title\": \"University of the Americas - Puebla\",\n                    \"subTitle\": \"Bachelor’s DegreeMechanical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1681091354561,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Mechanical Engineer with more than 18 years of experience in the automotive industry. Areas of expertise include design and release automotive parts from early concept in studio phases to mass production, BOM maintenance and support to the assembly plant. Technical Skills:Team work, Proficient in NX and Catia V5, GD&T Knowledge, Green and Black Belt verified and Program Management, Vehicle Spy, XCP, DPS Good communication skills due to the holistic view derived from the interaction with various functional team throughout the product development process.\",\n            \"skills\": [\n                \"PPAP\",\n                \"Manufacturing\",\n                \"GD&T\",\n                \"Automotive Engineering\",\n                \"Automotive\",\n                \"Geometric Dimensioning & Tolerancing\",\n                \"DFMEA\",\n                \"NX Unigraphics\",\n                \"Machine Tools\",\n                \"Teamcenter\",\n                \"FMEA\",\n                \"Six Sigma\",\n                \"APQP\",\n                \"Vehicles\",\n                \"Green Belt\",\n                \"CATIA\",\n                \". NX3 and NX5 basic trainings.\",\n                \"Time Management\",\n                \"DRBFM\",\n                \"GPDS\",\n                \"E2\",\n                \"Supplier Negotiation\",\n                \"Distant Learning\",\n                \"UGS NX5\",\n                \"Vismuckup\",\n                \"Unigraphics\",\n                \"Geometric Dimensioning\",\n                \"Black Belt\",\n                \"Continuous Improvement\",\n                \"Product Development\",\n                \"Production Part Approval Process (PPAP)\",\n                \"Siemens NX\",\n                \"DFSS Green Belt\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.5144566,\n                    \"lon\": -83.01465259999999\n                },\n                \"formattedAddress\": \"Warren, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 7468,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"A33A33266800B33BD65B53FDEA9FF5D1\",\n            \"canonical\": \"https://www.linkedin.com/in/greg-crain-83a88011\",\n            \"fullname\": \"Greg Crain\",\n            \"headline\": \"Electrical/Computer Engineer at Vitesco Technologies\",\n            \"location\": \"Clarkston, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/aero-v1/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": {\n                    \"url\": \"https://github.com/gscrain1\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/greg-crain-83a88011\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-09-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Vitesco Technologies Group AG\",\n                    \"position\": \"Electrical/Computer Engineer at Vitesco Technologies\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2023-02-01\",\n                    \"company\": \"Continental AG\",\n                    \"position\": \"Electrical/Computer Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2008-01-01\",\n                    \"company\": \"Siemens AG\",\n                    \"position\": \"Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1997-01-01\",\n                    \"leaveDate\": \"1999-01-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Product Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1993-01-01\",\n                    \"leaveDate\": \"1997-01-01\",\n                    \"company\": \"Jabil Inc.\",\n                    \"position\": \"Test Engineer\",\n                    \"description\": \"Test Engineer for Automotive modules and assemblies.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"MSEEEngineering\"\n                },\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"BSEE, BSCEEngineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1681091056852,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Embedded Software Development - Low Level device drivers for Automotive Engine Control Modules (ECM) and Drivetrain Control Modules. Test Engineering: Agilent VXI Systems, National Instruments LabView & LabWindows CVI customized production test for Powertrain electronics and Automotive Interior subsystems. Specialties: People Skills.\",\n            \"skills\": [\n                \"Embedded Systems\",\n                \"Engineering\",\n                \"Electronics\",\n                \"Testing\",\n                \"Automotive\",\n                \"Microcontrollers\",\n                \"Labview\",\n                \"PLC\",\n                \"Device Drivers\",\n                \"Embedded Software\",\n                \"Software Engineering\",\n                \"LabVIEW\",\n                \"Systems Engineering\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.7351196,\n                    \"lon\": -83.4192941\n                },\n                \"formattedAddress\": \"Village of Clarkston, MI 48346, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11056,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"C33D9F1CE367E06BEBAFC9B0EB7DE8CA\",\n            \"canonical\": \"https://www.linkedin.com/in/dave-newman-85b13180\",\n            \"fullname\": \"Dave Newman\",\n            \"headline\": \"Staff Software Engineer - Autonomous Vehicles at Latitude AI\",\n            \"location\": \"Livonia, Michigan\",\n            \"industry\": \"automotive\",\n            \"picture\": \"https://static.licdn.com/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/dave-newman-85b13180\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-02-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Latitude AI\",\n                    \"position\": \"Staff Software Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2017-04-01\",\n                    \"leaveDate\": \"2023-02-01\",\n                    \"company\": \"Argo AI\",\n                    \"position\": \"Staff Software Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2016-06-01\",\n                    \"leaveDate\": \"2017-04-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Research Engineer - Automated Driving\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1992-01-01\",\n                    \"leaveDate\": \"2016-06-01\",\n                    \"company\": \"Perceptron\",\n                    \"position\": \"Senior Software Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [],\n            \"lastScraperUpdateTime\": 1680489739081,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Automation\",\n                \"Testing\",\n                \"C\",\n                \"Embedded Systems\",\n                \"C++\",\n                \"Programming\",\n                \"Embedded Software\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.36837,\n                    \"lon\": -83.35270969999999\n                },\n                \"formattedAddress\": \"Livonia, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11415,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"7AF86EFCB1624C67B792A35CE3EC0969\",\n            \"canonical\": \"https://www.linkedin.com/in/nishant-prakash-2079a74a\",\n            \"fullname\": \"Nishant Prakash\",\n            \"headline\": \"Project Engineering Lead- L2 ADAS / AD Features\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQH6729ciTAEqw/profile-displayphoto-shrink_800_800/0/1553899583665?e=2147483647&v=beta&t=bHB3TCMgNuL5u-GEQEWuFd8kFQbAL6EtVRuv59ZAoho\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/nishant-prakash-2079a74a\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-06-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"MAGNA ELECTRONICS LIMITED\",\n                    \"position\": \"Project Engineering Lead- L2 ADAS/AD Features\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2021-05-01\",\n                    \"leaveDate\": \"2022-06-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Senior Systems Engineer/ Features Team Lead- L2+ ADAS Systems\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2019-07-01\",\n                    \"leaveDate\": \"2021-12-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Autonomous Driving Systems Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2017-02-01\",\n                    \"leaveDate\": \"2019-07-01\",\n                    \"company\": \"Valeo S.A.\",\n                    \"position\": \"System Engineer- ADAS Features\",\n                    \"description\": \"•Lead customer demonstrations of ADAS feature released by the platform development teams. It involves integrating the software on demonstration vehicles and debug the system for any issues •Coordinate with the Systems Architects, Software developers and System test engineers to ensure requirement implementation and validate the test cases •Actively participate in internal discussions and suggest improvements to the research and development teams based on issue debug in the…\"\n                },\n                {\n                    \"hiredDate\": \"2016-01-01\",\n                    \"leaveDate\": \"2017-02-01\",\n                    \"company\": \"IEE\",\n                    \"position\": \"Electrical Systems Engineer\",\n                    \"description\": \"•Responsible for the overall development of capacitance based sensing systems, investigate system’s limitations and develop customized solutions for critical issues as per the customer requirement •Manage requirements using DOORS, create DFMEA for our system and perform testing to replicate the issues on bench to know its root cause and explain the physics behind it •Develop test procedures and prepare set up for the validation of Electrical Systems and work with other teams to…\"\n                },\n                {\n                    \"hiredDate\": \"2014-06-01\",\n                    \"leaveDate\": \"2016-01-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Hands Free Audio Engineer\",\n                    \"description\": \"•Implemented the Wideband and Narrowband Audio codecs for AMR (Adaptive Multi Rate), VMR (Variable Multi Rate) and EVRC (Enhanced Variable Rate Codec) standardized by ITU-T and developed network simulation software to measure the quality of audio codecs based on MOS scoring including PESQ. •Developed the GUI for the simulation software and established connection to database. Entire development was done in UNIX (Cygwin) and Linux environment using GCC compiler, subversion tools, C/C++…\"\n                },\n                {\n                    \"hiredDate\": \"2012-08-01\",\n                    \"leaveDate\": \"2014-06-01\",\n                    \"company\": \"University Of Houston\",\n                    \"position\": \"Research Assistant\",\n                    \"description\": \"•Used the Electroencephalogram machine for recording of EEG signals in the Lab. •Worked with large amount of real time data and used data processing and analysis techniques including feature extraction, clustering, AR modeling and Pattern recognition •Developed a software using MATLAB and C language to perform automated sleep staging using artificially generated EEG signals and later extending it for real time EEG data.\"\n                },\n                {\n                    \"hiredDate\": \"2012-02-01\",\n                    \"leaveDate\": \"2012-07-01\",\n                    \"company\": \"Accenture plc\",\n                    \"position\": \"Associate Software Engineer (Java Developer)\",\n                    \"description\": \"•Worked on Struts and Spring Framework along with the application of Swing Concepts, JSP, Servlets, html and Core Java. •Worked on Informatica Tool used for maintenance of large Database systems using SQL and PL/SQL language. •Created test cases, deliverables and performed unit testing for the softwares designed to be delivered to clients.\"\n                },\n                {\n                    \"hiredDate\": \"2009-05-01\",\n                    \"leaveDate\": \"2009-06-01\",\n                    \"company\": \"Bharat Sanchar Nigam Limited\",\n                    \"position\": \"Intern\",\n                    \"description\": \"•Gained practical experience of the process from the touch point of how calls are made via mobile and landline using the BTS and MTS to complex working of various devices.\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Bengali\",\n                \"Hindi\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Houston\",\n                    \"subTitle\": \"Master's degreeSignal Processing & Communications\"\n                },\n                {\n                    \"title\": \"Rice University\",\n                    \"subTitle\": \"Master of Science (MS)Digital Signal ProcessingGPA 4.0\"\n                },\n                {\n                    \"title\": \"Nagpur University\",\n                    \"subTitle\": \"Bachelor's in EngineeringElectrical, Electronics and Communications Engineering3.8\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1679182412292,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am currently working as a Project Engineering lead for L2 Autonomous driving systems at Magna Electronics. My experience has been focused in the ADAS Systems for past 7 years and am experienced with the end to end ADAS system development. I have worked and led the development of L2 and L2+ ADAS systems based on Radars, Ultrasonic sensors, MAP and near range Cameras with North American OEMs like Ford and Stellantis. I am experienced in requirements elicitation, system design, FMEA analysis, performing feasibility study and have created detailed system level design/requirements using IBM DOORS and Polarion. Tools used: Automotive: IBM DOORS, Polarion, Enterprise Architect, PTC Integriti , CANalyzer, Vector tool, JIRA Software: MATLAB, CANoe, dSpace, Cygwin, QT Tools, CMU200, ACQUA, Audacity Programming Languages:Python, PyQt, Shell Scripting, C/C++, SQL\",\n            \"skills\": [\n                \"Automotive Infotainment\",\n                \"Electrical Engineering\",\n                \"Matlab\",\n                \"Telecommunications\",\n                \"Signal Processing\",\n                \"Audio Engineering\",\n                \"Programming\",\n                \"Pattern Recognition\",\n                \"PyQt\",\n                \"MOS\",\n                \"C++\",\n                \"C\",\n                \"SQL\",\n                \"Unix Shell Scripting\",\n                \"Python\",\n                \"Pspice\",\n                \"Java\",\n                \"VHDL\",\n                \"Testing\",\n                \"Algorithms\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 4063,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"C220A5CAB3069177FEECEC8BA658DC6E\",\n            \"canonical\": \"https://www.linkedin.com/in/gary-c-43652924\",\n            \"fullname\": \"Gary C.\",\n            \"headline\": \"Systems Engineer\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"Defense & Space\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4D03AQE7KFmle7TARA/profile-displayphoto-shrink_800_800/0/1517078234577?e=2147483647&v=beta&t=F_aPuuyC8w8RVo3bQiFotcbo7Mv0iuk0iGlnJPYqQss\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/gary-c-43652924\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2017-01-01\",\n                    \"leaveDate\": \"2022-01-01\",\n                    \"company\": \"Confidential (In stealth mode)\",\n                    \"position\": \"System Engineer\",\n                    \"description\": \"Technical Planning & Management, Requirements, ORSA, & Architecture\"\n                },\n                {\n                    \"hiredDate\": \"2014-06-01\",\n                    \"leaveDate\": \"2016-08-01\",\n                    \"company\": \"AM General LLC\",\n                    \"position\": \"Sr. Systems Engineer Staff\",\n                    \"description\": \"Requirements Management, TIRs, RAM Testing, Problem Solving and Resolution, Modeling and Simulations, FE Analysis, BCNs, DFMEAs, DARTs.\"\n                },\n                {\n                    \"hiredDate\": \"2013-08-01\",\n                    \"leaveDate\": \"2014-03-01\",\n                    \"company\": \"Gentex\",\n                    \"position\": \"Sr. Systems Engineer Defense\",\n                    \"description\": \"• Requirements Management and Product Development • Purchase Description/SOW Document Auditor • Requirements Management, Allocation, and Compliance using DOORs/MS Excel software. • DVT Test Development. • Deriving Requirements, Defining new Product Requirements. • Working with Military Standards and Specifications, SRR, TRR, SME Reviews. • Evaluate designs for Performance, Safety, and Reliability.\"\n                },\n                {\n                    \"hiredDate\": \"2012-10-01\",\n                    \"leaveDate\": \"2013-05-01\",\n                    \"company\": \"General Dynamics Corporation\",\n                    \"position\": \"Systems Engineer Sr. Defense\",\n                    \"description\": \"• Requirements Management, Allocation, and Compliance using DOORs software. • Deriving Requirements, Defining new Product Requirements, Developing Function Lists, Developing Environmental Requirements • Working with Military Standards and Specifications, PEER Reviews, SME Reviews, STRs • Impact Analysis on Contract Mods to the System and Subsystem level Performance Specifications. • Working with Thermal Group to develop worst case drivetrain heat rejection information for the…\"\n                },\n                {\n                    \"hiredDate\": \"2012-03-01\",\n                    \"leaveDate\": \"2012-10-01\",\n                    \"company\": \"BAE Systems plc\",\n                    \"position\": \"System Engineer Defense\",\n                    \"description\": \"• Measurement and Analysis, Measurement Definition development, tracking of program metrics for the following: (Risk, Headcount, Labor Hours, CPI, CV, EAC, VAC, SV, SPI, DT%, Refurb%, TIRs, System Weight, Force Protection, Survivability, Maximum Velocity, Transportation, Accuracy, Rate of Fire, Firing Range, Reliability%, Availability, Net Ready, Reliability MTBSA, Parts Availability, Engineering Changes, Engineering Requests, and LEAD BOM cost data. • Risk Management using ARM and…\"\n                },\n                {\n                    \"hiredDate\": \"2011-12-01\",\n                    \"leaveDate\": \"2012-02-01\",\n                    \"company\": \"Force Protection\",\n                    \"position\": \"Systems Engineer Defense\",\n                    \"description\": \"Requirement Management using DOORs ver.9.3 Bid and Proposal, System Archetecture (SysML) using magic draw, upgrades and egress modications.\"\n                },\n                {\n                    \"hiredDate\": \"2008-01-01\",\n                    \"leaveDate\": \"2011-04-01\",\n                    \"company\": \"BAE Systems plc\",\n                    \"position\": \"Systems Engineer Defense\",\n                    \"description\": \"Following the LCM/CMMI Project management process. Upgrading the M88A2 Hercules Heavy Recovery Vehicle for increased ride performance,towing capabilities, and increase GVW by 5 tons. Using Trade Studies to evaluate the different M88 Suspension Vendors technologies in regards to Cost, performance, packaging, and system intergration. Gathered specifications and performance data for an FE Analysis evaluation of Suspension components, and also Modeling and Simulation comparisons of different…\"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2003-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Reliability Implementation Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [\n                \"Spanish\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Detroit Mercy\",\n                    \"subTitle\": \"MS MEProduct Development\"\n                },\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"BS CHEProduct Development, Material Science, Environmental Science\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1679182018913,\n            \"military\": true,\n            \"clearance\": true,\n            \"about\": \"\",\n            \"skills\": [\n                \"Systems Engineering\",\n                \"Earned Value Management\",\n                \"Requirements Management\",\n                \"Engineering Management\",\n                \"CMMI\",\n                \"DoDAF\",\n                \"Integration\",\n                \"Telelogic DOORS\",\n                \"Trade Studies\",\n                \"C4ISR\",\n                \"Engineering\",\n                \"Requirements Analysis\",\n                \"System Design\",\n                \"SysML\",\n                \"GD&T\",\n                \"System Architecture\",\n                \"Program Management\",\n                \"Configuration Management\",\n                \"Government Contracting\",\n                \"DoD\",\n                \"Cost Engineering\",\n                \"Quality Management\",\n                \"Six Sigma\",\n                \"Process Improvement\",\n                \"Aerospace\",\n                \"Avionics\",\n                \"IBM DOORS\",\n                \"Proposal Writing\",\n                \"Security Clearance\",\n                \"Military\",\n                \"Defence\",\n                \"Defense\",\n                \"Testing\",\n                \"Space Systems\",\n                \"Spacecraft\",\n                \"System Safety\",\n                \"Radar\",\n                \"System Requirements\",\n                \"MIL-STD-1553\",\n                \"Flight Test\",\n                \"Rhapsody\",\n                \"Systems Design\",\n                \"Geometric Dimensioning & Tolerancing\",\n                \"Rational DOORS\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 5600,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"034796B59F2613A4F5CB58CBF0B3691F\",\n            \"canonical\": \"https://www.linkedin.com/in/viveka-mishra-68741a49\",\n            \"fullname\": \"Viveka Mishra\",\n            \"headline\": \"Staff Systems Engineer at Latitude AI\",\n            \"location\": \"Detroit, Michigan\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQH3Z2WNTUTUmw/profile-displayphoto-shrink_800_800/0/1614438578012?e=2147483647&v=beta&t=f4MeFc8OScutfEJgs8mX2JhHm4ofP8uVgojtbRaQknE\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/viveka-mishra-68741a49\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2023-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Latitude AI\",\n                    \"position\": \"Staff Systems Engineer at Latitude AI\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2022-09-01\",\n                    \"leaveDate\": \"2022-12-01\",\n                    \"company\": \"Argo AI\",\n                    \"position\": \"Sensing & Perception Architecture Tech Lead\",\n                    \"description\": \"Developed & implemented probabilistic design verification plans for perception of objects & road actors, traffic lights, occlusions & free space. Led implementation - planned 60+ full time engineer weeks of work per quarter for 5 quarters- and validation of these functions and ran a cross-functional failure triage. Individually developed statistical case based test methods, built tools in python and SQL for statistically significant functional performance visualization and clearly communicated…\"\n                },\n                {\n                    \"hiredDate\": \"2021-02-01\",\n                    \"leaveDate\": \"2022-10-01\",\n                    \"company\": \"Argo AI\",\n                    \"position\": \"Senior System Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2017-09-01\",\n                    \"leaveDate\": \"2021-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Autonomous Emergency Braking (VRU) Global Feature Owner\",\n                    \"description\": \"Responsible for deploying the autonomous emergency braking algorithm to prevent collisions with pedestrians and cyclists on Ford, Mustang and Lincoln vehicles globally. Developed sensing, hardware, software, interface and feature requirements as well as verification and validation methods. Ensured that the requirements were testable and met for each vehicle line. Ran feature development sub-team to deploy multiple vehicle lines globally, concurrently. Characterized positive and negative…\"\n                },\n                {\n                    \"hiredDate\": \"2017-01-01\",\n                    \"leaveDate\": \"2017-08-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Electrical Systems Engineer\",\n                    \"description\": \"Ran the electrical systems validation effort and drove wiring, software and electrical component manufacturing issue resolution for the 2018 Ford Expedition and Lincoln Navigator, which was awarded Best In Class and North American Truck of the Year. Ensured all parts related to electrical systems in the vehicle were delivered in time for tooling trial, prototype and the initial launch builds at Ford’s Kentucky Truck Plant.\"\n                },\n                {\n                    \"hiredDate\": \"2015-01-01\",\n                    \"leaveDate\": \"2017-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Automated Driving Development Engineer\",\n                    \"description\": \"Developed the algorithm for collision mitigation in intersection scenarios. Was primarily responsible for the controls algorithm on the braking request and the path prediction compensation algorithm for sensor latency. This work was transitioned into production code as of 2019 on 3 vehicle lines.\"\n                },\n                {\n                    \"hiredDate\": \"2014-01-01\",\n                    \"leaveDate\": \"2015-01-01\",\n                    \"company\": \"PegaSense\",\n                    \"position\": \"Co-Founder and CEO\",\n                    \"description\": \"Led team to become 2014 MassChallenge Finalists. Developed prototype from idea to initial iteration by evaluating the target market and working with potential users. Led the product design team to develop a manufacturable design. Ran study with the prototype to validate core value proposition. Closed an initial round of funding for a year of company development. Acquired committed customers and completed a viable business plan and developed a manufacturable prototype planned for large-scale…\"\n                },\n                {\n                    \"hiredDate\": \"2013-06-01\",\n                    \"leaveDate\": \"2013-08-01\",\n                    \"company\": \"Thermo Fisher Scientific Inc.\",\n                    \"position\": \"Mechanical Engineering Intern\",\n                    \"description\": \"• Designed and fabricated a pneumatic-powered robot from scratch to autonomously run a lifetime test. • Lifetime test controlled by Arduino and code • Several replicas built by the company after the internship\"\n                },\n                {\n                    \"hiredDate\": \"2012-06-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"KVA matx\",\n                    \"position\": \"Mechanical and Electrical Portable Light Technician\",\n                    \"description\": \"• Spearheaded the beta prototype of Portable Light project with mechanical and electrical modifications. • Developed and integrated solar technology for Amazon river communities in Brazil\"\n                },\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"Takachar Project, Engineers without Borders\",\n                    \"position\": \"Technical Consultant and Operations Manager\",\n                    \"description\": \"• Tested and implemented charcoal briquetting using waste materials. • Developed a waste management pilot project to be utilized in Kibera and Mathare slums.\"\n                },\n                {\n                    \"hiredDate\": \"2011-05-01\",\n                    \"leaveDate\": \"2011-08-01\",\n                    \"company\": \"Massachusetts Institute of Technology\",\n                    \"position\": \"Student Researcher Ionnis Yannas Lab\",\n                    \"description\": \"· Studied how certain structures of scaffolds used in nerve healing affect the quality of wound healing · Helped design a Matlab program for a customized laser microscope · Image and data process in Matlab\"\n                },\n                {\n                    \"hiredDate\": \"2009-06-01\",\n                    \"leaveDate\": \"2009-10-01\",\n                    \"company\": \"National Institutes of Health\",\n                    \"position\": \"Student Researcher\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2007-12-01\",\n                    \"leaveDate\": \"2008-08-01\",\n                    \"company\": \"Georgetown University\",\n                    \"position\": \"Student Researcher\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Swahili\",\n                \"Spanish\",\n                \"Hindi\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Massachusetts Institute of Technology\",\n                    \"subTitle\": \"Bachelor's DegreeMechanical Engineering\"\n                },\n                {\n                    \"title\": \"University of Michigan - Rackham Graduate School\",\n                    \"subTitle\": \"Master’s DegreeElectrical and Computer Engineering\"\n                },\n                {\n                    \"title\": \"Sidwell Friends School\",\n                    \"subTitle\": \"High School Diploma\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1679179370199,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am a trained mechanical, electrical and intelligent systems engineer with demonstrated experience bringing a product from idea to prototype and leading a team from prototype to VC-backed corporation. Ive built upon my roles as a controls algorithm engineer and electrical systems engineer to cross functionally develop, integrate, validate and deploy Fords Autonomous Emergency Braking feature mitigating collisions with pedestrians and cyclists globally, both in production and for Fords pre-production Co-Pilot 360 platform. Most recently I’ve developed and lead a cross-functional team in the implementation of a novel statistical approach to perception stack verification at Argo AI and have provided the company critical insights into perception architecture design decisions and functional performance given the context of launch targets.\",\n            \"skills\": [\n                \"Engineering\",\n                \"Matlab\",\n                \"Simulink\",\n                \"Public Speaking\",\n                \"Solidworks\",\n                \"Teaching\",\n                \"Mechanical Engineering\",\n                \"Machining\",\n                \"Soldering\",\n                \"Assembly Language\",\n                \"Python\",\n                \"C\",\n                \"Injection Molding\",\n                \"Thermoforming\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.331427,\n                    \"lon\": -83.0457538\n                },\n                \"formattedAddress\": \"Detroit, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 4002,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"5542A1F11FD666B557B1B5D3F3F9F252\",\n            \"canonical\": \"https://www.linkedin.com/in/roman-kapitanec-77908b68\",\n            \"fullname\": \"Roman Kapitanec\",\n            \"headline\": \"Controller NA at Macauto Industrial Co., Ltd.\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQHCvIG95pbIkw/profile-displayphoto-shrink_800_800/0/1520985268831?e=2147483647&v=beta&t=PA6Sg8aiUbjbJB-cD_39kdigdH0YDxj2JCa6gqYFTvk\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/roman-kapitanec-77908b68\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2017-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Macauto Industrial Co., Ltd.\",\n                    \"position\": \"Controller NA\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2014-12-01\",\n                    \"leaveDate\": \"2017-02-01\",\n                    \"company\": \"Recaro Holding\",\n                    \"position\": \"Sr. Financial Analyst/Account Financial Manager\",\n                    \"description\": \"Under the direction of the Controller-NA/Director RKIH perform financial analysis and business case studies with Program Teams to help drive continued business wins and to ensure the proper program profitability. Manage and develop program business cases including required capital investment, tooling investment and engineering investment to ensure the proper IRR, ROS and ROA for each program. Provide input to quarterly forecasts and annual Profit Plan in regards to engineering spending…\"\n                },\n                {\n                    \"hiredDate\": \"2010-09-01\",\n                    \"leaveDate\": \"2014-12-01\",\n                    \"company\": \"Bridgewater Interiors, LLC\",\n                    \"position\": \"BU Controller / Sr. Financial Analyst\",\n                    \"description\": \"Provide direct support to BWI CFO on routine financial matters and special projects. Review treasury information on a daily basis. Monitor cash flow and Working Capital position noting impact on AR, AP and Payroll. Ensure funds used for Working Capital are reasonable and in line with business expectations. Prepare payroll summary for plants to use for recording labor. expense in the month and coordinate any issues with the plant. Full responsibility for month-end closing for BWI HQ…\"\n                },\n                {\n                    \"hiredDate\": \"2010-04-01\",\n                    \"leaveDate\": \"2010-09-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Sr. Financial Analyst\",\n                    \"description\": \"Managed and executed monthly portfolio processes. Track portfolio through various company ledgers. Coordinated accruals with project managers. Optimized business plans to improve business results. Provided internal and/or external financial analysis, consultation and decision support. Prepared, analyzed, and selected methods of presenting various data Solved problems and developed new methods of analysis. Wrote reports and summaries of findings in accordance to…\"\n                },\n                {\n                    \"hiredDate\": \"2009-12-01\",\n                    \"leaveDate\": \"2010-04-01\",\n                    \"company\": \"Detroit Diesel\",\n                    \"position\": \"Sr. Financial Analyst\",\n                    \"description\": \"Documented monthly Sarbanes-Oxley (SOX) compliance for Diesel integrated business Systems, Hyperion and SAP. Coordinated with Accounting, Controlling, and Operations personnel to resolve financial statement discrepancies and ensure accurate information. Prepare financial statement footnotes, provision report, and income statement review following SEC guidelines, GAAP and IFRS. Prepare reports and reconciliation and collect and review input from other analysts to ensure accuracy and…\"\n                },\n                {\n                    \"hiredDate\": \"1999-11-01\",\n                    \"leaveDate\": \"2009-05-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Operations Planning Analyst\",\n                    \"description\": \"Reconciled six (6) Deficiency & Extension Lockbox accounts (bank & ledger accts.) averaging $1.2B per month. Research and resolve remote location requests utilizing every resource available with in DaimlerChrysler Services. Work closely with the Retail Accounting, Lease Accounting, Internal/External Audit, and Bankruptcy depts., as well as the Business Centers., Remarketing, and Deficiency Center to ensure accurate and timely presentation of financial reports. Audited…\"\n                },\n                {\n                    \"hiredDate\": \"1999-01-01\",\n                    \"leaveDate\": \"2007-05-01\",\n                    \"company\": \"Chrysler Corporation/Chrysler Financial\",\n                    \"position\": \"Sr. Financial Analyst\",\n                    \"description\": \"Assisted in the development, enhancement, and maintenance of IT applications utilized by CFC financial Controlling team. Primarily responsible for supporting the forecast tool (VPT) and finance engine (US, Canada, Mexico, Puerto Rico, and Argentina). Solely responsible for data validation and analysis, creative problem solving, project management, and customer relations. Assisted in corporate level controls and SOX compliance. Controller’s Office project leader for separation of…\"\n                },\n                {\n                    \"hiredDate\": \"1997-10-01\",\n                    \"leaveDate\": \"1999-11-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Financial Analyst/Cost Analyst\",\n                    \"description\": \"Maintained General Ledger accounts related to OME, Scrap, Direct and Indirect Labor. Daily analysis of actual to target costs as it relates to units of production. Worked closely with the various cost and profit centers within the plant compiling and analyzing financial data, as well as recommending cost savings. Worked directly with Engineering, Production Control and outside vendors on recoveries and engineering-related charges. Assisted in annual model year budget preparation…\"\n                },\n                {\n                    \"hiredDate\": \"1996-01-01\",\n                    \"leaveDate\": \"1997-01-01\",\n                    \"company\": \"BTR Sealing Systems N.A\",\n                    \"position\": \"Senior Accountant\",\n                    \"description\": \"Complete maintenance of the Design Center General Ledger. Prepared, reviewed and submitted accurate financial reports (monthly, quarterly and annually). Compiled detailed annual plan schedules in conformity with US GAAP and established corporate guidelines. Provided account analysis and miscellaneous reports to plant controllers, department managers, and VP’s of Finance. Translated financial statements from foreign currency to U.S. dollars. Developed and managed $1.8 million…\"\n                },\n                {\n                    \"hiredDate\": \"1993-01-01\",\n                    \"leaveDate\": \"1996-01-01\",\n                    \"company\": \"Waste Management, Inc.\",\n                    \"position\": \"Staff Accountant\",\n                    \"description\": \"Primarily involved in monthly, quarterly and yearly close of the Midwest Region (comprising four states and Ontario, Canada). Implemented account reconciliation standards for all divisions. Involved in yearly budget preparation. Audited divisional Accounts Receivable and Cash Accounts. Assisted divisional controllers with day-to-day operations when needed.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"B.SBusiness Administration; Accounting\"\n                },\n                {\n                    \"title\": \"University of Phoenix\",\n                    \"subTitle\": \"MastersBusiness Administration\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1676128653296,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [\n                \"Process Improvement\",\n                \"Microsoft Office\",\n                \"Management\",\n                \"Microsoft Excel\",\n                \"Leadership\",\n                \"Microsoft Word\",\n                \"PowerPoint\",\n                \"Outlook\",\n                \"HTML\",\n                \"Real Estate Transactions\",\n                \"Variance Analysis\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 10483,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"BEE6C40E4086C8ED23DF642850B103D7\",\n            \"canonical\": \"https://www.linkedin.com/in/amitchoudhury\",\n            \"fullname\": \"Amit Choudhury\",\n            \"headline\": \"#Mobility #Cross-Domain #System #Safety #Security\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4D03AQF3SPcMX5Q0Yg/profile-displayphoto-shrink_800_800/0/1601863149028?e=2147483647&v=beta&t=9l1HlzxL0MdvTUzozNuTcgb-0g25PsVgCUjEmNAPt8I\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/amitchoudhury\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Robert Bosch GmbH\",\n                    \"position\": \"Sr Functional Safety Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2022-03-01\",\n                    \"leaveDate\": \"2022-07-01\",\n                    \"company\": \"Argo AI\",\n                    \"position\": \"System Safety Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2019-09-01\",\n                    \"leaveDate\": \"2021-12-01\",\n                    \"company\": \"Visteon Corporation\",\n                    \"position\": \"ADAS System Architect\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2017-06-01\",\n                    \"leaveDate\": \"2019-09-01\",\n                    \"company\": \"Aptiv PLC\",\n                    \"position\": \"Functional Safety, Cyber Security Architect, ADAS Systems\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2015-02-01\",\n                    \"leaveDate\": \"2017-06-01\",\n                    \"company\": \"ZF Friedrichshafen AG\",\n                    \"position\": \"Principal Systems Engineer, ADAS Systems\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2014-04-01\",\n                    \"leaveDate\": \"2015-01-01\",\n                    \"company\": \"Hella KGaA Hueck & Co.\",\n                    \"position\": \"Sr. Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2012-11-01\",\n                    \"leaveDate\": \"2014-03-01\",\n                    \"company\": \"ADVICS NA\",\n                    \"position\": \"Senior Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2011-05-01\",\n                    \"leaveDate\": \"2012-11-01\",\n                    \"company\": \"ESG GmbH\",\n                    \"position\": \"Senior Systems Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2011-05-01\",\n                    \"leaveDate\": \"2012-11-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"AUTOSAR Specialist Engineer (Contract)\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1998-01-01\",\n                    \"leaveDate\": \"2011-05-01\",\n                    \"company\": \"Renesas Electronics Corporation\",\n                    \"position\": \"Staff Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1996-01-01\",\n                    \"leaveDate\": \"1997-01-01\",\n                    \"company\": \"Cigital\",\n                    \"position\": \"Software Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1994-01-01\",\n                    \"leaveDate\": \"1997-01-01\",\n                    \"company\": \"Silicon Interfaces\",\n                    \"position\": \"VLSI Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1994-01-01\",\n                    \"leaveDate\": \"1996-01-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Software Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1990-01-01\",\n                    \"leaveDate\": \"1994-01-01\",\n                    \"company\": \"Tata Telecom Limited\",\n                    \"position\": \"Senior Engineer\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [\n                \"Bengali\",\n                \"English\",\n                \"Hindi\",\n                \"Spanish\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Government Engineering College, Jabalpur\",\n                    \"subTitle\": \"BSEE\"\n                },\n                {\n                    \"title\": \"Rani Durgavati Vishwavidyalaya\",\n                    \"subTitle\": \"BSEE\"\n                },\n                {\n                    \"title\": \"St. Aloysius HS School\",\n                    \"subTitle\": \"Higher Secondary Certificate\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1676125856101,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"I am an Open Networker. I accept all invites. Academia, Industry, Science and Humanities are truly welcome! My intentions and goals with LinkedIN profile: Connect and Collaborate. To leverage each other via knowledge acquisition (as much allowed without violating mutual employers contract). Information age is about creating values with cross functional knowledge. This is truly transforming the industrial age products with increasingly iterative & integrated level of analysis of holistic system and synthesis of its optimal components. My specific area are: - Product System Safety — ISO 26262, SOTIF - System Engineering - Electronic System Level Modeling and Simulation -- Model Based Development -- Model Driven Architecture -- Distributed System Level Prototype -- ECU Virtual Prototype - GENIVI, ANDROID - Standardized Platform SW for Embedded Applications for Automotive, Mobile Infotainment and Industrial. -- Product-line Methodology and Development Tooling - Drumming: Bongo, Cajon (Amateur Level) - Languages and Cuisine (Amateur Level)\",\n            \"skills\": [\n                \"Embedded Systems\",\n                \"Embedded Software\",\n                \"Microcontrollers\",\n                \"Software Engineering\",\n                \"Simulations\",\n                \"Electronics\",\n                \"Automotive\",\n                \"Software Development\",\n                \"ASIC\",\n                \"Programming\",\n                \"Systems Engineering\",\n                \"Powertrain\",\n                \"Debugging\",\n                \"ARM\",\n                \"System Architecture\",\n                \"RF\",\n                \"VLSI\",\n                \"Digital Signal Processors\",\n                \"Security\",\n                \"Simulation\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 11546,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"9678B9B51F375F938CECF51F4E76F128\",\n            \"canonical\": \"https://www.linkedin.com/in/jeffreysbeckett\",\n            \"fullname\": \"Jeff Beckett\",\n            \"headline\": \"Senior Consultant at Maven Wave, an Atos Company\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"information technology and services\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQH7K00oh6ekOQ/profile-displayphoto-shrink_800_800/0/1523039148250?e=2147483647&v=beta&t=ahSiGSJzIKxCP4rbjs7lnsOyyWty1wwJLw2V0XoK1gs\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/jeffreysbeckett\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-06-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Maven Wave Partners LLC\",\n                    \"position\": \"Senior Consultant\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-10-01\",\n                    \"leaveDate\": \"2021-06-01\",\n                    \"company\": \"DocNetwork\",\n                    \"position\": \"AWS Engineer\",\n                    \"description\": \"I currently serve as DocNetworks DevOps Engineer to help manage their growing Infrastructure in AWS. My current Projects for this year include: - Automating Infrastructure Deployments and scaling via Terraform and CloudFormation - Manage and Maintain our current application performance with Prometheus and Grafana - We run a good mix of Linux, MySQL, Redis, and use Docker Containers extensively - Create better deployment pipelines with GitLab, GitHub, Jenkins -…\"\n                },\n                {\n                    \"hiredDate\": \"2018-03-01\",\n                    \"leaveDate\": \"2019-10-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Virtualization Engineer\",\n                    \"description\": \"Currently, I serve Ford Motor Companys Virtualization Engineering team as a Subject Matter Expert focusing in VM performance and optimization. My recent work has been to lead the design and deployment of Turbonomic/Cisco Workload Optimization Manager across 3 data centers and Microsoft Azure. As a senior member of my team, I am helping to drive the integration of Agile and DevOps methodologies in to our workflows so we can support the current and future needs of Ford Motor Company.\"\n                },\n                {\n                    \"hiredDate\": \"2015-04-01\",\n                    \"leaveDate\": \"2019-10-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Agile Cloud Engineer - VMWARE Engineering team\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2017-10-01\",\n                    \"leaveDate\": \"2018-03-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Team Lead - Agile Cloud Engineering\",\n                    \"description\": \"I served as the Team Lead of FoMoCos Agile Hosting Infrastructure Cloud for the final six months it was funded for. During this time, my team of four DevOps engineers bolstered new IT initiatives by enabling teams to deploy new development environments within hours. Our engineers also served as SMEs when teams needed knowledge gaps filled. At the sunset of the project we had deployed ~5700 virtual machines through HP Cloud Service Automation toolkit. Windows 2012 R2 servers could…\"\n                },\n                {\n                    \"hiredDate\": \"2014-09-01\",\n                    \"leaveDate\": \"2015-03-01\",\n                    \"company\": \"Kaufman Financial Group\",\n                    \"position\": \"Systems Engineer. VMware and Storage\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2011-07-01\",\n                    \"leaveDate\": \"2014-06-01\",\n                    \"company\": \"Logicalis Group\",\n                    \"position\": \"Data Center Services Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2005-12-01\",\n                    \"leaveDate\": \"2011-07-01\",\n                    \"company\": \"Thomson Reuters\",\n                    \"position\": \"Web Services Administrator\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2004-08-01\",\n                    \"leaveDate\": \"2005-12-01\",\n                    \"company\": \"The University of Toledo\",\n                    \"position\": \"Desktop Support Technician - Level 2\",\n                    \"description\": \"Maintained and managed Desktops and Servers throughout the university faculty and staff. Ran desktop migrations and also created specifications for new hardware. Served as a main point of contact for technical issues that could not be handled via phone or email.\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"University of Toledo\",\n                    \"subTitle\": \"Bachelor's DegreeInformation Technology, Business Economics3.4 GPA\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1673906726763,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Specialties Include: HP Cloud Service Automation HP Operations Orchestration HP Server Automation HP DMA SUSE 11/12 Administration Windows Server 2003/200R28/2012R2 EMC VNX EMC Avamar EMC Recoverpoint Data retention and disaster recovery VMware 6.5/5.5/5.0 server virtualization VMware Site Recovery Manager Powershell scripting Double-Take Availability replication IBM XIV storage SolarWinds Orion Dell Compellent and Equallogic Sharepoint VMturbo/Turbonomic virtualization management RHEL Administration\",\n            \"skills\": [\n                \"Windows Server\",\n                \"VMware\",\n                \"EMC Avamar\",\n                \"EMC Recoverpoint\",\n                \"Powershell\",\n                \"Yottabyte backup solution\",\n                \"Linux server administration\",\n                \"Citrix Xenapp Administration\",\n                \"EMC Storage\",\n                \"Linux System Administration\",\n                \"Citrix Metaframe\",\n                \"Servers\",\n                \"Troubleshooting\",\n                \"RecoverPoint\",\n                \"Data Center\",\n                \"Technical Support\",\n                \"VMware ESX\",\n                \"Disaster Recovery\",\n                \"Virtualization\",\n                \"Software Documentation\",\n                \"Cisco Technologies\",\n                \"Citrix\",\n                \"Microsoft Exchange\",\n                \"Active Directory\",\n                \"SAN\",\n                \"DNS\",\n                \"Hyper-V\",\n                \"Hardware\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6619,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"F305E05E1711B631A954275361832797\",\n            \"canonical\": \"https://www.linkedin.com/in/michaelcrawford1975\",\n            \"fullname\": \"Michael Crawford\",\n            \"headline\": \"Manufacturing Chief Engineer, Powertrain - Global/ North America\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"Automotive\",\n            \"picture\": \"https://static.licdn.com/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/michaelcrawford1975\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-08-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Stellantis\",\n                    \"position\": \"Manufacturing Chief Engineer, Powertrain - Director, Global/North America\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-05-01\",\n                    \"leaveDate\": \"2021-08-01\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Director - Deputy Plant Manager Toledo Assembly Complex\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2018-02-01\",\n                    \"leaveDate\": \"2019-05-01\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Plant Manager Trenton North Engine Plant\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2014-05-01\",\n                    \"leaveDate\": \"2018-01-01\",\n                    \"company\": \"Fiat Chrysler Automobiles N.V.\",\n                    \"position\": \"Director Program Management and Manufacturing Engineering (ME) Engine Programs\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2013-06-01\",\n                    \"leaveDate\": \"2014-05-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Manufacturing Manager - Trenton Engine Complex\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2011-01-01\",\n                    \"leaveDate\": \"2013-05-01\",\n                    \"company\": \"Chrysler\",\n                    \"position\": \"Sr. Manufacturing Engineering Manager\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2004-07-01\",\n                    \"leaveDate\": \"2011-11-01\",\n                    \"company\": \"GEMA\",\n                    \"position\": \"Manufacturing Engineering Manager\",\n                    \"description\": \"Responsible for all process engineering, project management, long term and short term problem solving Managed six Lead engineers for all Machining and Assembly. Responsible for development of all engineers, 32 Electrical and Mechanical Responsible for maintenance improvement projects, scheduling, implementation and execution. Developed training program for non-experienced engineers Complete Reactive Green belt projects (3 Problem Solving, 1 Decision Making) Lead…\"\n                },\n                {\n                    \"hiredDate\": \"2004-04-01\",\n                    \"leaveDate\": \"2004-07-01\",\n                    \"company\": \"North Star BlueScope Steel, LLC\",\n                    \"position\": \"Melt Shop EAF Engineer\",\n                    \"description\": \"Managing multiple studies for evacuation control Process and capability control implementation on EAF – furnace optimization & emission optimization\"\n                },\n                {\n                    \"hiredDate\": \"2000-01-01\",\n                    \"leaveDate\": \"2004-04-01\",\n                    \"company\": \"North Star Steel Michigan\",\n                    \"position\": \"Rolling Mill Maintenance General Foreman\",\n                    \"description\": \"Rolling Mill Maintenance General Supervisor - 10/02 – 4/04 ******************************************************************** Direct supervision of seven salaried supervisors & technicians and forty UAW skilled trades personnel Managed $6M maintenance budget, CMMS utilization as well as Predictive Maintenance Technology implementation Responsible for Environmental, Safety and ISO/QS compliance. Reduced Downtime %50 while also reducing total labor hours. IBM Greenbelt &…\"\n                },\n                {\n                    \"hiredDate\": \"1997-06-01\",\n                    \"leaveDate\": \"2000-01-01\",\n                    \"company\": \"North Star Steel Arizona\",\n                    \"position\": \"Rolling Mill Electrical Maintenance Supervisor\",\n                    \"description\": \"High Performance Team management environment at a Greenfield plant Direct supervision of 12 Electrical Technicians. Responsible for the Electrical Maintenance of the entire Rolling Mill – Rod and Rebar, Water Treatment Plant, and 5 Mill-duty overhead cranes. Worked closely with ABB to improve process and eliminate recurrent control problems responsible of large amounts of downtime. Electrical Downtime was reduced over %500 during my supervision. Melt Shop Electrical Supervisor -…\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"The University of Toledo\",\n                    \"subTitle\": \"BSEEElectrical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1673906218989,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Director of Manufacturing Director of Manufacturing Engineering Plant Management Powertrain Vehicle Assembly Process and Maintenance Engineering Lean Manufacturing Specialties: University of Michigan Lean Manufacturing Certification World Class Manufacturing - Auditor\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 9298,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"xzF9_3gBh0Jh8fFlHtVW\",\n            \"canonical\": \"https://www.linkedin.com/in/pengfeiren\",\n            \"fullname\": \"Pengfei Ren\",\n            \"headline\": \"Senior Software Engineer at Aurora\",\n            \"location\": \"Warren, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C5603AQHMun44cbjasw/profile-displayphoto-shrink_800_800/0/1593470773798?e=2147483647&v=beta&t=-cYRzYUxH7zYMkY-jfccPysS39B8UbOl8frj9gqLdxo\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/pengfeiren\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-09-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Aurora Health Care\",\n                    \"position\": \"Senior Software Engineer, Perception\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2020-07-01\",\n                    \"leaveDate\": \"2022-09-01\",\n                    \"company\": \"Argo AI\",\n                    \"position\": \"Senior Software Engineer, Perception\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2019-02-01\",\n                    \"leaveDate\": \"2020-07-01\",\n                    \"company\": \"Horizon Robotics\",\n                    \"position\": \"Applied AI Researcher, Perception\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2018-03-01\",\n                    \"leaveDate\": \"2019-02-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Research Engineer, Perception & Localization\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [\n                \"English\",\n                \"Chinese\"\n            ],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"Master's degreeComputer Science3.9/4.0\"\n                },\n                {\n                    \"title\": \"Chongqing University\",\n                    \"subTitle\": \"Bachelor's degreeAutomation Engineering/Robotics\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1673905344794,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.5144566,\n                    \"lon\": -83.01465259999999\n                },\n                \"formattedAddress\": \"Warren, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 1782,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"wh9PN3kB-DOZvg69apfM\",\n            \"canonical\": \"https://www.linkedin.com/in/chetna-sinha-5958a913\",\n            \"fullname\": \"Chetna Sinha\",\n            \"headline\": \"Director- HR Technology and Workforce Analytics at Beaumont Health\",\n            \"location\": \"Troy, Michigan\",\n            \"industry\": \"\",\n            \"picture\": \"https://media.licdn.com/dms/image/C4E03AQGCiFJiCm_liQ/profile-displayphoto-shrink_800_800/0/1603472780385?e=2147483647&v=beta&t=0LQHUH_2CU0hMtRmjGwpR-dtYxLGxjzofrmr-vwrFmI\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/chetna-sinha-5958a913\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2019-04-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Beaumont Health\",\n                    \"position\": \"Director- HR Technology and Workforce Analytics\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-01-01\",\n                    \"leaveDate\": \"2019-04-01\",\n                    \"company\": \"Henry Ford Hospital and Health Network\",\n                    \"position\": \"Director- HR Technology\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2013-04-01\",\n                    \"leaveDate\": \"2018-12-01\",\n                    \"company\": \"Henry Ford Hospital and Health Network\",\n                    \"position\": \"Manager - HR Technology\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2008-03-01\",\n                    \"leaveDate\": \"2008-11-01\",\n                    \"company\": \"Computer Sciences Corporation\",\n                    \"position\": \"Senior Manager\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2006-03-01\",\n                    \"leaveDate\": \"2007-12-01\",\n                    \"company\": \"TechTeam Global Inc.\",\n                    \"position\": \"Peoplesoft Functional Consultant\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2003-06-01\",\n                    \"leaveDate\": \"2004-04-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"PeopleSoft Team Lead\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2000-08-01\",\n                    \"leaveDate\": \"2002-07-01\",\n                    \"company\": \"Dow Inc.\",\n                    \"position\": \"Lead Developer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"1996-01-01\",\n                    \"leaveDate\": \"1999-06-01\",\n                    \"company\": \"KPMG International\",\n                    \"position\": \"Senior Consultant\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [],\n            \"lastScraperUpdateTime\": 1673904939020,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Innovative and experienced leader in HCM solutions across different industries with a business focus on realignment and process improvement. Extensive experience in implementation of Human Capital Management (HR/Payroll/Total Rewards/Recruiting/Performance/Talent) systems. Successful track record of building, implementing and supporting strategic solutions for a dynamic enterprise. Proven ability to provide functional (subject matter) expertise in all areas of HR systems, lead projects through design, development and implementation in alignment with the organization needs. Led several PeopleSoft HCM implementations and other ERP solutions through implementation, upgrades and integrations, while guiding the teams through major project milestones. Strong leader with exceptional people skills who can effectively lead project teams and deliver consistently on time and budget. Strong technical competencies in PeopleSoft, databases and software development who has also worked in emerging technology areas like machine learning, AI, neural networks and predictive analytics. Specialties: * Strategic Planning and execution * Technology Implementation/migration * HR Transformation, Complex ERP Implementation * PeopleSoft, Workday, HR Analytics, Databases * Change Management * HR M & A\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.6064095,\n                    \"lon\": -83.1497751\n                },\n                \"formattedAddress\": \"Troy, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 6682,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"Xp0Bym8BFVkhVdRhjdhl\",\n            \"canonical\": \"https://www.linkedin.com/in/christinachateauvert\",\n            \"fullname\": \"Christina Chateauvert, Ph.D.\",\n            \"headline\": \"Human Experience Advocate I Compassionate People Partner I Design Thinker\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"human resources\",\n            \"picture\": \"https://media-exp1.licdn.com/dms/image/C4E03AQGjKqarCJ3WOA/profile-displayphoto-shrink_800_800/0/1600222783656?e=2147483647&v=beta&t=OvgJjm-Lo9XVAmQfJd7_ReN-FNT82rkGgJ_a4DQHers\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/christinachateauvert\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-12-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Allstate\",\n                    \"position\": \"Senior Manager, People/Employee Experience\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2021-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Yes, And Coaching Institute\",\n                    \"position\": \"Director of Learner Experience\",\n                    \"description\": \"We have a unique opportunity ahead of us to help the world end a cycle of stress and burnout as it recovers from the Covid pandemic. We believe that coaching with a Yes, And mindset - with confidence, flexibility and creativity - has the distinctive ability to help accelerate our emergence from this time with resilience, purpose and joy.\"\n                },\n                {\n                    \"hiredDate\": \"2020-10-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Institute for Corporate Productivity (i4cp)\",\n                    \"position\": \"Chair of Employee Experience Exchange\",\n                    \"description\": \"Chair who sets the agenda and direction for the Employee Experience Exchange. Our exchange meets every other month to exchange best practices and brainstorm next practices that trailblaze my industry. As co-chair, I lead a community of diverse talent and culture leaders aimed at exploring how to design, operationalize, and scale the moments, attitudes, and behaviors with a purpose to shape a satisfying employee experience. This exchange provides the space to share best practices and…\"\n                },\n                {\n                    \"hiredDate\": \"2019-01-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"c.c.design LLC\",\n                    \"position\": \"Founder and Chief Human Experience Officer\",\n                    \"description\": \"Care & Curiosity [consulting in and coaching with design thinking]. Also facilitate individual and small group Dare to Lead™ coaching experiences.\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2015-01-01\",\n                    \"leaveDate\": \"2022-04-01\",\n                    \"company\": \"Wayne State University\",\n                    \"position\": \"Adjunct Instructor, Learning Design and Technology\",\n                    \"description\": \"Redesigned and facilitated courses in the Learning Design and Technology Graduate Program that included the Design Thinking & Knowledge and the Capstone Course in Learning Design and Technology. Assisted students in using design thinking methodology to craft learning experiences and enhance improvement initiatives through empathic design and developing comprehensive design plans.\"\n                },\n                {\n                    \"hiredDate\": \"2019-06-01\",\n                    \"leaveDate\": \"2021-11-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Talent Programs Manager, Employee Experience\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2018-03-01\",\n                    \"leaveDate\": \"2019-06-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Design Thinking Learning Lead\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2016-04-01\",\n                    \"leaveDate\": \"2018-03-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"IT User Experience Strategist, Digital Worker\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2014-11-01\",\n                    \"leaveDate\": \"2016-04-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"End User Engagement Lead, Digital Worker\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2018-10-01\",\n                    \"leaveDate\": \"2020-12-01\",\n                    \"company\": \"the SheHive\",\n                    \"position\": \"Partner\",\n                    \"description\": \"The SheHive provides classes, coaching, and community for women focused on connection and self-empowerment.\"\n                },\n                {\n                    \"hiredDate\": \"2017-07-01\",\n                    \"leaveDate\": \"2017-12-01\",\n                    \"company\": \"IDEO U\",\n                    \"position\": \"Alumni Coach, Global Network of Coaches, Fellowship\",\n                    \"description\": \"Alumni Coach for Insights for Innovation and From Ideas to Action\"\n                },\n                {\n                    \"hiredDate\": \"2012-01-01\",\n                    \"leaveDate\": \"2014-11-01\",\n                    \"company\": \"Blue Cross Blue Shield Association\",\n                    \"position\": \"Talent Management Specialist, Human Performance\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2010-08-01\",\n                    \"leaveDate\": \"2012-01-01\",\n                    \"company\": \"Blue Cross Blue Shield Association\",\n                    \"position\": \"Instructional Designer, Sales Force Development\",\n                    \"description\": \"\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Wayne State University\",\n                    \"subTitle\": \"Doctor of Philosophy - PhDLearning Design and Technology\"\n                },\n                {\n                    \"title\": \"Oakland University\",\n                    \"subTitle\": \"MTDInstructional Design\"\n                },\n                {\n                    \"title\": \"Emerson College\",\n                    \"subTitle\": \"MAWriting and Publishing\"\n                },\n                {\n                    \"title\": \"Olivet College\",\n                    \"subTitle\": \"BAEnglish and Communications\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1672001767760,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Inspired by the quote, “she designed a life she loved,” I’ve created a life as a champion of human experience, a compassionate people partner, and a design thinker. My design and implementation of employee experiences ensures that skilled, engaged talent can be utilized at the right time in the right place, resulting in a work atmosphere that cultivates personal and professional growth. Driving successful business transformation is what I do best. To do this, I work side-by-side with leadership, shifting mindsets, asking the tough questions, and developing and implementing creative solutions to solve complicated challenges through people, process, and technology. I enjoy connecting disparate people and ideas to solve challenging problems that previously seemed insurmountable or to revisit a business process that has “always been done this way” for improvements. My expertise lies in unleashing the power of people by creating working environments that prioritize employee support, learning and innovation, and ensuring that employees are challenged to grow personally and professionally to contribute in meaningful ways that positively impact the business. I am entrepreneurial-minded. I am a learner. I am a researcher. I am a connector. Please feel free to contact me with any thoughts or questions about my work - I am always interested in making new professional acquaintances.\",\n            \"skills\": [\n                \"Employee Experience\",\n                \"Leadership\",\n                \"Talent Management\",\n                \"Human-Centered Design\",\n                \"Instructional Design\",\n                \"Blended Learning\",\n                \"Learning Management\",\n                \"Onboarding\",\n                \"Performance Management\",\n                \"Succession Planning\",\n                \"Coaching\",\n                \"Leadership Development\",\n                \"Employee Engagement\",\n                \"Public Speaking\",\n                \"Facilitation\",\n                \"Training\",\n                \"Training Delivery\",\n                \"Instructor-led Training\",\n                \"Organizational Development\",\n                \"Organizational Effectiveness\"\n            ],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 4529,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"AeRSSYUBrAcoFWo16PTn\",\n            \"canonical\": \"https://www.linkedin.com/in/renee-bowers-bba-4ab84394\",\n            \"fullname\": \"Renee Bowers BBA\",\n            \"headline\": \"Rental Assistance Counselor at United Community Housing Coalition\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://media-exp1.licdn.com/dms/image/D5603AQEBYYRV4D6SZA/profile-displayphoto-shrink_800_800/0/1669108521849?e=2147483647&v=beta&t=h95FkUAXnwO1wa7uvdw1y3C7IW5tcKujy3E7emRd0ek\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/renee-bowers-bba-4ab84394\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2021-06-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"United Community Housing Coalition\",\n                    \"position\": \"Rental Assistance Counselor\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2021-03-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Advanced Clinical\",\n                    \"position\": \"Operations Assistant\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2019-02-01\",\n                    \"leaveDate\": \"2019-10-01\",\n                    \"company\": \"Volunteer caregiver services in Metro Detroit Area Hospice of Michigan recipient\",\n                    \"position\": \"Seeking new career opportunities.\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2016-11-01\",\n                    \"leaveDate\": \"2018-10-01\",\n                    \"company\": \"Volunteer caregiver services in Metro Detroit Area Hospice of Michigan recipient\",\n                    \"position\": \"Volunteer Caregiver\",\n                    \"description\": \"• Entrusted to financial management (banking, bill payments and legal matters) • Schedule and transport to business and physician appointments • Provide medication disbursement, meals, personal care, prescription refills, hygiene and domestic services • Support with community activities • Manage caregiver shift rotation to provide around the clock care • Provide transportation for relief assistance\"\n                },\n                {\n                    \"hiredDate\": \"2016-10-01\",\n                    \"leaveDate\": \"2016-12-01\",\n                    \"company\": \"Toyota Tsusho America\",\n                    \"position\": \"Sales Assistant\",\n                    \"description\": \"• Monitored customer forecast, actual delivered volume and open POs • Facilitated purchase order activity to secure on-time delivery • Processed for payment broker delivery invoices in compliance to customs and hazmat policies • Reported buy/sell pricing discrepancies between customer /vendor documents\"\n                },\n                {\n                    \"hiredDate\": \"2014-11-01\",\n                    \"leaveDate\": \"2014-12-01\",\n                    \"company\": \"General Motors Company\",\n                    \"position\": \"Design Release Engineer Assistant\",\n                    \"description\": \"• Wrote miscellaneous material type work orders and track through implementation on to production • Escalated unresolved and high-risk issues • Assisted DRE’s with creating BOM orders • Communicated with eSOR and ePeer approvers on status up through approval to facilitate timely sign-offs. • Issued part shippers, pick-up and delivered parts to GM and supplier locations • Monitored and ensure DRE codes are up to date on all released part numbers • Maintained detailed time log…\"\n                },\n                {\n                    \"hiredDate\": \"2012-10-01\",\n                    \"leaveDate\": \"2014-03-01\",\n                    \"company\": \"Severstal\",\n                    \"position\": \"Traffic Coordinator\",\n                    \"description\": \"• Experienced in negotiating freight rates and carrier contracting • Monitored, tracked and maximize shipments while minimizing cost per transit • Customer liaison to carriers, sales team and traffic manager • Coordinated flow of inbound raw materials via rail and vessel • Experienced in dispatching steel bands and coils • Managed planning and scheduling outbound shipments to processor • Processed freight bill exceptions generated via third party vendor\"\n                },\n                {\n                    \"hiredDate\": \"2007-08-01\",\n                    \"leaveDate\": \"2011-07-01\",\n                    \"company\": \"Convergys\",\n                    \"position\": \"OnStar-Customer Service Problem Resolution\",\n                    \"description\": \"Call intake Sales and services Account management Escalations Monitoring Point resolutions Maintained sales quotas\"\n                },\n                {\n                    \"hiredDate\": \"2001-11-01\",\n                    \"leaveDate\": \"2005-07-01\",\n                    \"company\": \"RadioShack\",\n                    \"position\": \"District Sales Administrator\",\n                    \"description\": \"Manage district office District Manager Assistant Recruiting and staffing Coaching and developing sales team Process hire pack Perform terminations Data systems management\"\n                },\n                {\n                    \"hiredDate\": \"1975-09-01\",\n                    \"leaveDate\": \"2001-01-01\",\n                    \"company\": \"Kmart International Headquarters\",\n                    \"position\": \"Logistics Event Planner\",\n                    \"description\": \"• Managed merchandise inventory disposition for 14 distribution centers, over 2000 stores world-wide • Supervised seasonal clean-outs using WMS, AS400 and Planner Workbench, which generated annual savings over $1,000,000 • Planned seasonal and promotional events via coordination with merchandisers, in-store dates, planned quantities and vendor information • Expedited time-sensitive domestic and import shipments via Import 2000 and EDI 856/ASN’s, which required 24 hour resolution on 90%…\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Davenport University\",\n                    \"subTitle\": \"Bachelor's DegreeBusiness Administration\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1671972429165,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"Creative and energetic professional skilled in Accounting, Administration, Customer Service and Logistics. I am dependable and committed to responsibility. I am always in a position to learn.\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 14204,\n            \"selectedAt\": null\n        },\n        {\n            \"id\": \"KYpGSYUBlI4_KugK120n\",\n            \"canonical\": \"https://www.linkedin.com/in/ramiro-pinon\",\n            \"fullname\": \"Ramiro Pinon\",\n            \"headline\": \"Director (Technical Track) - Electric Propulsion Systems\",\n            \"location\": \"Greater Detroit Area\",\n            \"industry\": \"\",\n            \"picture\": \"https://static-exp1.licdn.com/sc/h/244xhbkr7g40x6bsu4gi6q4ry\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": {\n                    \"url\": \"https://www.linkedin.com/in/ramiro-pinon\",\n                    \"type\": \"DEFAULT\"\n                },\n                \"anothers\": null\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2022-07-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Aviation & Aerospace Co. - Confidential\",\n                    \"position\": \"Director (Technical Track) - Electric Propulsion Systems\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [\n                {\n                    \"hiredDate\": \"2022-02-01\",\n                    \"leaveDate\": \"2022-07-01\",\n                    \"company\": \"ELMS: Electric Last Mile Solutions\",\n                    \"position\": \"Senior Manager - Electric Propulsion Systems Validation (Strategy & Execution)\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2021-07-01\",\n                    \"leaveDate\": \"2022-02-01\",\n                    \"company\": \"ELMS: Electric Last Mile Solutions\",\n                    \"position\": \"Manager - Power Electronics Systems Application\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2021-02-01\",\n                    \"leaveDate\": \"2021-07-01\",\n                    \"company\": \"Froude, Ltd/Inc | Dynamometer Test Systems\",\n                    \"position\": \"Technical Leader - Electric Motor & Power Electronics Technology (Strategy)\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2020-02-01\",\n                    \"leaveDate\": \"2021-02-01\",\n                    \"company\": \"Mercedes-Benz Research & Development North America, Inc.\",\n                    \"position\": \"Senior Electric Motor Controls & Calibrations Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2017-01-01\",\n                    \"leaveDate\": \"2020-01-01\",\n                    \"company\": \"Stellantis (Previously FCA)\",\n                    \"position\": \"Electric Motor Controls & Calibrations Engineer\",\n                    \"description\": \"\"\n                },\n                {\n                    \"hiredDate\": \"2014-01-01\",\n                    \"leaveDate\": \"2016-12-01\",\n                    \"company\": \"Ford Motor Company\",\n                    \"position\": \"Research Scientist\",\n                    \"description\": \"Ford Motor Co. Research & Advanced Engineering - Precision Systems Design Laboratory (U of M) - Investigation of Gasoline Direct Injection (GDI) Fuel Injectors - Novel High Performance Solenoid Actuated GDI Fuel Injector Designs (Patent)\"\n                },\n                {\n                    \"hiredDate\": \"2013-09-01\",\n                    \"leaveDate\": \"2016-12-01\",\n                    \"company\": \"University of Michigan\",\n                    \"position\": \"Graduate Researcher\",\n                    \"description\": \"Precision Systems Design Laboratory - Graduate Instructor - Mechatronics Laboratory Graduate Course - Diaphragm Flexure Design improvements applied to Novel Moving Magnet Actuators - Robotic Instrument Tracking Endo-illuminator for Intraocular Surgeries (Publication)\"\n                },\n                {\n                    \"hiredDate\": \"2012-06-01\",\n                    \"leaveDate\": \"2012-08-01\",\n                    \"company\": \"Massachusetts Institute of Technology\",\n                    \"position\": \"Undergraduate Researcher\",\n                    \"description\": \"- BioInstrumentation Laboratory - MSRP Program\"\n                }\n            ],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"Michigan State University\",\n                    \"subTitle\": \"Ph.D.Mechanical Engineering - Advanced Controls / E-motors / A.I. (M.L. / Deep Learning) / FEA\"\n                },\n                {\n                    \"title\": \"University of Michigan\",\n                    \"subTitle\": \"M.Sc.Mechanical Engineering - Controls / Design\"\n                },\n                {\n                    \"title\": \"The University of Texas at El Paso\",\n                    \"subTitle\": \"B.Sc.(Honors)Mechanical Engineering\"\n                }\n            ],\n            \"lastScraperUpdateTime\": 1671971640677,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"“Driven Leader, and Subject Matter Expert, with years of experience in both Global/Industry-Leading-Companies and Start-Ups/Niche-Product-Companies, experienced in directing teams, programs, and projects, advancing from beginning to end the Creation and Development of World-Class Technology in the areas of Electric Motors, Power electronics (AC Inverters, On-Board Chargers, EV Chargers), HV Batteries, and Advanced Propulsion Systems for the e-Mobility, Automotive, Aerospace, EV, and Testing industries. In Charge of Leading, Defining, and Executing Strategy involving a vast array of tasks crucial in development: Engineering Design (Alpha/Beta/Gamma stages), Testing (Test System Creation, Test-article calibration, DVP design, DMFEA, and End-of-line-testing), Simulation (MATLAB/Simulink, Hardware-in-the-Loop, Software-in-the-loop), and Algorithm Design (C Code, Model-Based-Code). Subject Matter Expert on other areas including Artificial Intelligence (Deep learning/Machine learning/Neural Networks) and Advanced Control strategies. Example-driven leadership style with strong emphasis on Team Development.”\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8105356,\n                    \"lon\": -83.0790865\n                },\n                \"formattedAddress\": \"Detroit Metropolitan Area, MI, USA\",\n                \"country\": \"United States\",\n                \"state\": \"Michigan\",\n                \"cbsa\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ],\n                \"country_code\": \"US\",\n                \"state_code\": \"MI\"\n            },\n            \"experienceInDays\": 3401,\n            \"selectedAt\": null\n        }\n    ],\n        \"count\": 23253\n}"}],"_postman_id":"4f1cd7cf-a230-4d6f-8443-1621a2a53d53"},{"name":"Record of Prospect by Id","event":[{"listen":"test","script":{"id":"1dbd40d9-1758-4672-9f67-e16fb2b793bf","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","  pm.environment.set(\"defaultRequestBody\", null);","});","","// pm.test(\"Tha data is of correct format\", function () {","// pm.expect(pm.response.json()).to.have.property('selectedCount');","// pm.expect(pm.response.json()).to.have.property('highlights');","// pm.expect(pm.response.json()).to.have.property('data');","// pm.expect(pm.response.json()).to.have.property('count');","","// // highlights","// pm.expect(pm.response.json()['highlights'][0]).to.have.property('fields');","// pm.expect(pm.response.json()['highlights'][0]).to.have.property('id');","","// pm.expect(pm.response.json()['data'][0]).to.have.property('id');","// pm.expect(pm.response.json()['data'][0]).to.have.property('canonical');","// pm.expect(pm.response.json()['data'][0]).to.have.property('fullname');","// pm.expect(pm.response.json()['data'][0]).to.have.property('headline');","// pm.expect(pm.response.json()['data'][0]).to.have.property('location');","// pm.expect(pm.response.json()['data'][0]).to.have.property('industry');","// pm.expect(pm.response.json()['data'][0]).to.have.property('picture');","// pm.expect(pm.response.json()['data'][0]).to.have.property('social');","// pm.expect(pm.response.json()['data'][0]['social']).to.have.property('youtube');","// pm.expect(pm.response.json()['data'][0]['social']).to.have.property('github');","// pm.expect(pm.response.json()['data'][0]['social']).to.have.property('wordpress');","// pm.expect(pm.response.json()['data'][0]['social']).to.have.property('facebook');","// pm.expect(pm.response.json()['data'][0]['social']).to.have.property('foursquare');","// pm.expect(pm.response.json()['data'][0]['social']).to.have.property('tumblr');","// pm.expect(pm.response.json()['data'][0]['social']).to.have.property('google');","// pm.expect(pm.response.json()['data'][0]['social']).to.have.property('personal');","// pm.expect(pm.response.json()['data'][0]['social']).to.have.property('instagram');","// pm.expect(pm.response.json()['data'][0]['social']).to.have.property('twitter');","// pm.expect(pm.response.json()['data'][0]['social']).to.have.property('vimeo');","// pm.expect(pm.response.json()['data'][0]['social']).to.have.property('flickr');","// pm.expect(pm.response.json()['data'][0]['social']).to.have.property('blogspot');","// pm.expect(pm.response.json()['data'][0]['social']).to.have.property('stackoverflow');","// pm.expect(pm.response.json()['data'][0]['social']).to.have.property('stackexchange');","// pm.expect(pm.response.json()['data'][0]['social']).to.have.property('linkedIn');","// pm.expect(pm.response.json()['data'][0]).to.have.property('active');","// pm.expect(pm.response.json()['data'][0]).to.have.property('trackedByUser');","// pm.expect(pm.response.json()['data'][0]).to.have.property('likedByUser');","// pm.expect(pm.response.json()['data'][0]).to.have.property('experienceCurrentList');","// // pm.expect(pm.response.json()['data'][0]['experienceCurrentList'][0]).to.have.property('hiredDate');","// // pm.expect(pm.response.json()['data'][0]['experienceCurrentList'][0]).to.have.property('leaveDate');","// // pm.expect(pm.response.json()['data'][0]['experienceCurrentList'][0]).to.have.property('company');","// // pm.expect(pm.response.json()['data'][0]['experienceCurrentList'][0]).to.have.property('position');","// // pm.expect(pm.response.json()['data'][0]['experienceCurrentList'][0]).to.have.property('description');","// pm.expect(pm.response.json()['data'][0]).to.have.property('experiencePrevious');","","// pm.expect(pm.response.json()['data'][0]).to.have.property('languagesList');","// pm.expect(pm.response.json()['data'][0]).to.have.property('educationList');","// // pm.expect(pm.response.json()['data'][0]['educationList'][0]).to.have.property('title');","// // pm.expect(pm.response.json()['data'][0]['educationList'][0]).to.have.property('subTitle');","// pm.expect(pm.response.json()['data'][0]).to.have.property('lastScraperUpdateTime');","// pm.expect(pm.response.json()['data'][0]).to.have.property('military');","// pm.expect(pm.response.json()['data'][0]).to.have.property('clearance');","// pm.expect(pm.response.json()['data'][0]).to.have.property('about');","// pm.expect(pm.response.json()['data'][0]).to.have.property('skills');","// // loc","// pm.expect(pm.response.json()['data'][0]).to.have.property('loc');","// pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('geo');","// pm.expect(pm.response.json()['data'][0]['loc']['geo']).to.have.property('lat');","// pm.expect(pm.response.json()['data'][0]['loc']['geo']).to.have.property('lon');","// pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('formattedAddress');","// pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('country');","// pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('state');","// pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('cbsa');","// pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('country_code');","// pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('state_code');","// pm.expect(pm.response.json()['data'][0]).to.have.property('experienceInDays');","// pm.expect(pm.response.json()['data'][0]).to.have.property('selectedAt');","// })"],"type":"text/javascript"}}],"id":"07065797-8e7b-4e2a-b417-1db680a029e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"//supplyData/listData/{{test_prospect_doc_id}}","description":"<p>This endpoint returns the complete record associated with the given id.</p>\n<p>To query using this path, enter the <code>idValue</code> of the prospect you wish to view at the end of the path by replacing \":id\". </p>\n<p>You can find the <code>id</code> of a prospect by searching using the <a href=\"#list-of-prospects\">List of Prospects</a> endpoint above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","listData","{{test_prospect_doc_id}}"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"0d242dbd-97b4-4fc1-9511-6f78e0ce3155","name":"Example of 1 user ID","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","type":"text","value":"{{token}}"}],"url":{"raw":"//supplyData/listData/:id","host":["/"],"path":["supplyData","listData",":id"],"variable":[{"key":"id","value":"375FC8E0D2E255DABB94094512E3AA74","description":"Document id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Jul 2020 14:07:39 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"03d580515900001f21c90ec200000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5b029cc88b7b1f21-FRA"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"selectedCount\": 0,\n    \"highlights\": [\n        {\n            \"id\": \"375FC8E0D2E255DABB94094512E3AA74\",\n            \"fields\": {}\n        }\n    ],\n    \"data\": [\n        {\n            \"id\": \"375FC8E0D2E255DABB94094512E3AA74\",\n            \"canonical\": \"https://www.linkedin.com/in/kazi-atik-b6269496\",\n            \"fullname\": \"Kazi Atik\",\n            \"headline\": \"Executive\",\n            \"location\": \"Dhaka\",\n            \"industry\": \"Apparel & Fashion\",\n            \"picture\": \"\",\n            \"social\": {\n                \"youtube\": null,\n                \"github\": null,\n                \"wordpress\": null,\n                \"facebook\": null,\n                \"foursquare\": null,\n                \"tumblr\": null,\n                \"google\": null,\n                \"personal\": null,\n                \"instagram\": null,\n                \"twitter\": null,\n                \"vimeo\": null,\n                \"flickr\": null,\n                \"blogspot\": null,\n                \"stackoverflow\": null,\n                \"stackexchange\": null,\n                \"linkedIn\": \"https://www.linkedin.com/in/kazi-atik-b6269496\"\n            },\n            \"active\": false,\n            \"trackedByUser\": false,\n            \"likedByUser\": false,\n            \"experienceCurrentList\": [\n                {\n                    \"hiredDate\": \"2008-05-01\",\n                    \"leaveDate\": \"\",\n                    \"company\": \"Ananta Group\",\n                    \"position\": \"Executive\",\n                    \"description\": \"\"\n                }\n            ],\n            \"experiencePrevious\": [],\n            \"languagesList\": [],\n            \"educationList\": [\n                {\n                    \"title\": \"The People's University of Bangladesh\",\n                    \"subTitle\": \"Bachelor of Science (BSc), Textile engineeringBachelor of Science (BSc), Textile engineering\"\n                },\n                {\n                    \"title\": \"textile engineering college Chittagong\",\n                    \"subTitle\": \"Diploma in textile engineering, Clothing technologyDiploma in textile engineering, Clothing technology\"\n                },\n                {\n                    \"title\": \"Suti v.m pilot high school\",\n                    \"subTitle\": \"Ssc, ScienceSsc, Science\"\n                }\n            ],\n            \"lastScraperUpdateTime\": null,\n            \"military\": false,\n            \"clearance\": false,\n            \"about\": \"\",\n            \"skills\": [],\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 23.810332,\n                    \"lon\": 90.4125181\n                },\n                \"formattedAddress\": \"Dhaka, Bangladesh\",\n                \"country\": \"Bangladesh\",\n                \"state\": \"Dhaka Division\",\n                \"cbsa\": [],\n                \"country_code\": \"BD\",\n                \"state_code\": \"Dhaka Division\"\n            },\n            \"experienceInDays\": 5127,\n            \"selectedAt\": null\n        }\n    ],\n    \"count\": 1\n}"}],"_postman_id":"07065797-8e7b-4e2a-b417-1db680a029e0"}],"id":"3a18bbbf-e0ce-491d-8498-88c692643e98","description":"<p>The following endpoints return a list of prospect records. The example in the right panel shows the fields present in a record. Actual lists for queries with more than 10,000 results are very long (over 1 million lines), so they may take a couple minutes to create.</p>\n","_postman_id":"3a18bbbf-e0ce-491d-8498-88c692643e98","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}}},{"name":"Data for Job Seeking Activity","item":[{"name":"Job Seeking Sonar (Alerts Only)","id":"dafe37d3-7e43-42b2-8871-f266d2dc8546","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n \"searchParameters\": [\n                    {\n                        \"parameterType\": \"text\",\n                        \"parameterKey\": \"companyCurrent\",\n                        \"parameterValue\": [\n                            \"Allegis Global Solutions\"\n                        ]\n                    },\n                    {\n                        \"parameterType\": \"operator\",\n                        \"parameterKey\": \"AND\",\n                        \"parameterValue\": [\n                            \"AND\"\n                        ]\n                    },\n                    {\n                        \"parameterType\": \"bool\",\n                        \"parameterKey\": \"statistic\",\n                        \"parameterValue\": [\n                        ]\n                    }\n ],\n \"id\":\"d_6xVoMBQHmfWnEKCCG_\"\n}\n","options":{"raw":{"language":"json"}}},"url":"//supplyData/activeLogProc/:days","description":"<p>This endpoint returns a record of prospects who are exhibiting passive job seeking activities over a variable amount of time. <strong>Replace :days at the end of the path with 30, 60, 90, 180, or 360 to return a list of prospects who have shown activity for that number of days.</strong></p>\n<p>You must set Alerts on prospects to associate them with your userID before using this Endpoint. For help with setting up Alerts or increasing your Alerts limit, please contact <a href=\"https://mailto:support@claro.hr\">support@claro.hr</a>.</p>\n<p>Here is a description of a <a href=\"https://apidocs.claro.hr/#queries\">query</a> and the <a href=\"https://apidocs.claro.hr/#tokens\">tokens</a> you will need to use to create one.</p>\n<p>Below is a sample query that will return the statistics of how many prospects were active on a given day from an example saved search:</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","activeLogProc",":days"],"host":["/"],"query":[],"variable":[{"type":"any","value":"","key":"days"}]}},"response":[{"id":"a9099bd0-a145-4cb5-bf79-7f33be858302","name":"Tracked Search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{alerttoken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n \"searchParameters\": [\n                    {\n                        \"parameterType\": \"text\",\n                        \"parameterKey\": \"companyCurrent\",\n                        \"parameterValue\": [\n                            \"Allegis Global Solutions\"\n                        ]\n                    },\n                    {\n                        \"parameterType\": \"operator\",\n                        \"parameterKey\": \"AND\",\n                        \"parameterValue\": [\n                            \"AND\"\n                        ]\n                    },\n                    {\n                        \"parameterType\": \"bool\",\n                        \"parameterKey\": \"statistic\",\n                        \"parameterValue\": [\n                        ]\n                    }\n ],\n \"id\":\"d_6xVoMBQHmfWnEKCCG_\"\n}"},"url":"//supplyData/activeLogProc/360"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 21 May 2020 07:47:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"596cafe8ce8cb514-VNO"},{"key":"Content-Encoding","value":"br"},{"key":"cf-request-id","value":"02d7cc457a0000b5142c8fa200000001"}],"cookie":[],"responseTime":null,"body":"{\n    \"activeCount\": 31,\n    \"data\": {\n        \"2021-12-17\": {\n            \"scraped\": 177,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2021-12-18\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2021-12-19\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2021-12-20\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2021-12-21\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2021-12-22\": {\n            \"scraped\": 187,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2021-12-23\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2021-12-24\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2021-12-25\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2021-12-26\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2021-12-27\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2021-12-28\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2021-12-29\": {\n            \"scraped\": 185,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2021-12-30\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2021-12-31\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-01\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-02\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-03\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-04\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-05\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-06\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-07\": {\n            \"scraped\": 193,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-08\": {\n            \"scraped\": 191,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-09\": {\n            \"scraped\": 189,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-10\": {\n            \"scraped\": 193,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-11\": {\n            \"scraped\": 192,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-12\": {\n            \"scraped\": 196,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-13\": {\n            \"scraped\": 190,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-14\": {\n            \"scraped\": 188,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-15\": {\n            \"scraped\": 4,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-16\": {\n            \"scraped\": 190,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-17\": {\n            \"scraped\": 188,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-18\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-19\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-20\": {\n            \"scraped\": 174,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-21\": {\n            \"scraped\": 184,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-22\": {\n            \"scraped\": 187,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-23\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-24\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-25\": {\n            \"scraped\": 189,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-26\": {\n            \"scraped\": 187,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-27\": {\n            \"scraped\": 187,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-28\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-29\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-30\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-01-31\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-01\": {\n            \"scraped\": 187,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-02\": {\n            \"scraped\": 162,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-03\": {\n            \"scraped\": 184,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-04\": {\n            \"scraped\": 183,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-05\": {\n            \"scraped\": 183,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-06\": {\n            \"scraped\": 183,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-07\": {\n            \"scraped\": 184,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-08\": {\n            \"scraped\": 190,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-09\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-10\": {\n            \"scraped\": 187,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-11\": {\n            \"scraped\": 188,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-12\": {\n            \"scraped\": 189,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-13\": {\n            \"scraped\": 188,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-14\": {\n            \"scraped\": 190,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-15\": {\n            \"scraped\": 189,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-16\": {\n            \"scraped\": 185,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-17\": {\n            \"scraped\": 198,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-18\": {\n            \"scraped\": 202,\n            \"activeCount\": 11,\n            \"value\": 2.65\n        },\n        \"2022-02-19\": {\n            \"scraped\": 203,\n            \"activeCount\": 12,\n            \"value\": 2.89\n        },\n        \"2022-02-20\": {\n            \"scraped\": 205,\n            \"activeCount\": 10,\n            \"value\": 2.41\n        },\n        \"2022-02-21\": {\n            \"scraped\": 190,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-22\": {\n            \"scraped\": 193,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-23\": {\n            \"scraped\": 189,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-24\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-25\": {\n            \"scraped\": 188,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-26\": {\n            \"scraped\": 190,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-27\": {\n            \"scraped\": 188,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-02-28\": {\n            \"scraped\": 189,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-01\": {\n            \"scraped\": 187,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-02\": {\n            \"scraped\": 189,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-03\": {\n            \"scraped\": 187,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-04\": {\n            \"scraped\": 190,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-05\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-06\": {\n            \"scraped\": 190,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-07\": {\n            \"scraped\": 187,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-08\": {\n            \"scraped\": 187,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-09\": {\n            \"scraped\": 188,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-10\": {\n            \"scraped\": 187,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-11\": {\n            \"scraped\": 189,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-12\": {\n            \"scraped\": 190,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-13\": {\n            \"scraped\": 187,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-14\": {\n            \"scraped\": 188,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-15\": {\n            \"scraped\": 187,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-16\": {\n            \"scraped\": 187,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-17\": {\n            \"scraped\": 187,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-18\": {\n            \"scraped\": 190,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-19\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-20\": {\n            \"scraped\": 187,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-21\": {\n            \"scraped\": 186,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-22\": {\n            \"scraped\": 17,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-03-23\": {\n            \"scraped\": 413,\n            \"activeCount\": 13,\n            \"value\": 3.13\n        },\n        \"2022-03-24\": {\n            \"scraped\": 413,\n            \"activeCount\": 21,\n            \"value\": 5.06\n        },\n        \"2022-03-25\": {\n            \"scraped\": 413,\n            \"activeCount\": 29,\n            \"value\": 6.99\n        },\n        \"2022-03-26\": {\n            \"scraped\": 413,\n            \"activeCount\": 32,\n            \"value\": 7.71\n        },\n        \"2022-03-27\": {\n            \"scraped\": 413,\n            \"activeCount\": 33,\n            \"value\": 7.95\n        },\n        \"2022-03-28\": {\n            \"scraped\": 413,\n            \"activeCount\": 31,\n            \"value\": 7.47\n        },\n        \"2022-03-29\": {\n            \"scraped\": 413,\n            \"activeCount\": 31,\n            \"value\": 7.47\n        },\n        \"2022-03-30\": {\n            \"scraped\": 413,\n            \"activeCount\": 32,\n            \"value\": 7.71\n        },\n        \"2022-03-31\": {\n            \"scraped\": 413,\n            \"activeCount\": 37,\n            \"value\": 8.92\n        },\n        \"2022-04-01\": {\n            \"scraped\": 413,\n            \"activeCount\": 40,\n            \"value\": 9.64\n        },\n        \"2022-04-02\": {\n            \"scraped\": 413,\n            \"activeCount\": 42,\n            \"value\": 10.12\n        },\n        \"2022-04-03\": {\n            \"scraped\": 413,\n            \"activeCount\": 48,\n            \"value\": 11.57\n        },\n        \"2022-04-04\": {\n            \"scraped\": 413,\n            \"activeCount\": 49,\n            \"value\": 11.81\n        },\n        \"2022-04-05\": {\n            \"scraped\": 413,\n            \"activeCount\": 47,\n            \"value\": 11.33\n        },\n        \"2022-04-06\": {\n            \"scraped\": 413,\n            \"activeCount\": 47,\n            \"value\": 11.33\n        },\n        \"2022-04-07\": {\n            \"scraped\": 413,\n            \"activeCount\": 53,\n            \"value\": 12.77\n        },\n        \"2022-04-08\": {\n            \"scraped\": 413,\n            \"activeCount\": 54,\n            \"value\": 13.01\n        },\n        \"2022-04-09\": {\n            \"scraped\": 371,\n            \"activeCount\": 59,\n            \"value\": 14.22\n        },\n        \"2022-04-10\": {\n            \"scraped\": 413,\n            \"activeCount\": 60,\n            \"value\": 14.46\n        },\n        \"2022-04-11\": {\n            \"scraped\": 413,\n            \"activeCount\": 59,\n            \"value\": 14.22\n        },\n        \"2022-04-12\": {\n            \"scraped\": 413,\n            \"activeCount\": 58,\n            \"value\": 13.98\n        },\n        \"2022-04-13\": {\n            \"scraped\": 413,\n            \"activeCount\": 58,\n            \"value\": 13.98\n        },\n        \"2022-04-14\": {\n            \"scraped\": 413,\n            \"activeCount\": 60,\n            \"value\": 14.46\n        },\n        \"2022-04-15\": {\n            \"scraped\": 413,\n            \"activeCount\": 57,\n            \"value\": 13.73\n        },\n        \"2022-04-16\": {\n            \"scraped\": 413,\n            \"activeCount\": 57,\n            \"value\": 13.73\n        },\n        \"2022-04-17\": {\n            \"scraped\": 413,\n            \"activeCount\": 54,\n            \"value\": 13.01\n        },\n        \"2022-04-18\": {\n            \"scraped\": 413,\n            \"activeCount\": 50,\n            \"value\": 12.05\n        },\n        \"2022-04-19\": {\n            \"scraped\": 413,\n            \"activeCount\": 50,\n            \"value\": 12.05\n        },\n        \"2022-04-20\": {\n            \"scraped\": 413,\n            \"activeCount\": 49,\n            \"value\": 11.81\n        },\n        \"2022-04-21\": {\n            \"scraped\": 413,\n            \"activeCount\": 50,\n            \"value\": 12.05\n        },\n        \"2022-04-22\": {\n            \"scraped\": 413,\n            \"activeCount\": 50,\n            \"value\": 12.05\n        },\n        \"2022-04-23\": {\n            \"scraped\": 413,\n            \"activeCount\": 49,\n            \"value\": 11.81\n        },\n        \"2022-04-24\": {\n            \"scraped\": 413,\n            \"activeCount\": 47,\n            \"value\": 11.33\n        },\n        \"2022-04-25\": {\n            \"scraped\": 413,\n            \"activeCount\": 46,\n            \"value\": 11.08\n        },\n        \"2022-04-26\": {\n            \"scraped\": 413,\n            \"activeCount\": 45,\n            \"value\": 10.84\n        },\n        \"2022-04-27\": {\n            \"scraped\": 413,\n            \"activeCount\": 43,\n            \"value\": 10.36\n        },\n        \"2022-04-28\": {\n            \"scraped\": 413,\n            \"activeCount\": 47,\n            \"value\": 11.33\n        },\n        \"2022-04-29\": {\n            \"scraped\": 413,\n            \"activeCount\": 49,\n            \"value\": 11.81\n        },\n        \"2022-04-30\": {\n            \"scraped\": 413,\n            \"activeCount\": 50,\n            \"value\": 12.05\n        },\n        \"2022-05-01\": {\n            \"scraped\": 413,\n            \"activeCount\": 52,\n            \"value\": 12.53\n        },\n        \"2022-05-02\": {\n            \"scraped\": 413,\n            \"activeCount\": 52,\n            \"value\": 12.53\n        },\n        \"2022-05-03\": {\n            \"scraped\": 413,\n            \"activeCount\": 48,\n            \"value\": 11.57\n        },\n        \"2022-05-04\": {\n            \"scraped\": 413,\n            \"activeCount\": 51,\n            \"value\": 12.29\n        },\n        \"2022-05-05\": {\n            \"scraped\": 392,\n            \"activeCount\": 49,\n            \"value\": 11.81\n        },\n        \"2022-05-06\": {\n            \"scraped\": 412,\n            \"activeCount\": 50,\n            \"value\": 12.05\n        },\n        \"2022-05-07\": {\n            \"scraped\": 413,\n            \"activeCount\": 52,\n            \"value\": 12.53\n        },\n        \"2022-05-08\": {\n            \"scraped\": 413,\n            \"activeCount\": 53,\n            \"value\": 12.77\n        },\n        \"2022-05-09\": {\n            \"scraped\": 413,\n            \"activeCount\": 51,\n            \"value\": 12.29\n        },\n        \"2022-05-10\": {\n            \"scraped\": 413,\n            \"activeCount\": 49,\n            \"value\": 11.81\n        },\n        \"2022-05-11\": {\n            \"scraped\": 413,\n            \"activeCount\": 51,\n            \"value\": 12.29\n        },\n        \"2022-05-12\": {\n            \"scraped\": 413,\n            \"activeCount\": 52,\n            \"value\": 12.53\n        },\n        \"2022-05-13\": {\n            \"scraped\": 413,\n            \"activeCount\": 52,\n            \"value\": 12.53\n        },\n        \"2022-05-14\": {\n            \"scraped\": 413,\n            \"activeCount\": 54,\n            \"value\": 13.01\n        },\n        \"2022-05-15\": {\n            \"scraped\": 413,\n            \"activeCount\": 56,\n            \"value\": 13.49\n        },\n        \"2022-05-16\": {\n            \"scraped\": 413,\n            \"activeCount\": 54,\n            \"value\": 13.01\n        },\n        \"2022-05-17\": {\n            \"scraped\": 413,\n            \"activeCount\": 54,\n            \"value\": 13.01\n        },\n        \"2022-05-18\": {\n            \"scraped\": 413,\n            \"activeCount\": 52,\n            \"value\": 12.53\n        },\n        \"2022-05-19\": {\n            \"scraped\": 413,\n            \"activeCount\": 50,\n            \"value\": 12.05\n        },\n        \"2022-05-20\": {\n            \"scraped\": 413,\n            \"activeCount\": 47,\n            \"value\": 11.33\n        },\n        \"2022-05-21\": {\n            \"scraped\": 413,\n            \"activeCount\": 51,\n            \"value\": 12.29\n        },\n        \"2022-05-22\": {\n            \"scraped\": 413,\n            \"activeCount\": 55,\n            \"value\": 13.25\n        },\n        \"2022-05-23\": {\n            \"scraped\": 413,\n            \"activeCount\": 52,\n            \"value\": 12.53\n        },\n        \"2022-05-24\": {\n            \"scraped\": 413,\n            \"activeCount\": 50,\n            \"value\": 12.05\n        },\n        \"2022-05-25\": {\n            \"scraped\": 413,\n            \"activeCount\": 52,\n            \"value\": 12.53\n        },\n        \"2022-05-26\": {\n            \"scraped\": 413,\n            \"activeCount\": 51,\n            \"value\": 12.29\n        },\n        \"2022-05-27\": {\n            \"scraped\": 413,\n            \"activeCount\": 51,\n            \"value\": 12.29\n        },\n        \"2022-05-28\": {\n            \"scraped\": 413,\n            \"activeCount\": 52,\n            \"value\": 12.53\n        },\n        \"2022-05-29\": {\n            \"scraped\": 413,\n            \"activeCount\": 50,\n            \"value\": 12.05\n        },\n        \"2022-05-30\": {\n            \"scraped\": 413,\n            \"activeCount\": 49,\n            \"value\": 11.81\n        },\n        \"2022-05-31\": {\n            \"scraped\": 413,\n            \"activeCount\": 48,\n            \"value\": 11.57\n        },\n        \"2022-06-01\": {\n            \"scraped\": 413,\n            \"activeCount\": 50,\n            \"value\": 12.05\n        },\n        \"2022-06-02\": {\n            \"scraped\": 413,\n            \"activeCount\": 49,\n            \"value\": 11.81\n        },\n        \"2022-06-03\": {\n            \"scraped\": 413,\n            \"activeCount\": 49,\n            \"value\": 11.81\n        },\n        \"2022-06-04\": {\n            \"scraped\": 413,\n            \"activeCount\": 53,\n            \"value\": 12.77\n        },\n        \"2022-06-05\": {\n            \"scraped\": 413,\n            \"activeCount\": 49,\n            \"value\": 11.81\n        },\n        \"2022-06-06\": {\n            \"scraped\": 413,\n            \"activeCount\": 47,\n            \"value\": 11.33\n        },\n        \"2022-06-07\": {\n            \"scraped\": 413,\n            \"activeCount\": 45,\n            \"value\": 10.84\n        },\n        \"2022-06-08\": {\n            \"scraped\": 413,\n            \"activeCount\": 48,\n            \"value\": 11.57\n        },\n        \"2022-06-09\": {\n            \"scraped\": 413,\n            \"activeCount\": 49,\n            \"value\": 11.81\n        },\n        \"2022-06-10\": {\n            \"scraped\": 413,\n            \"activeCount\": 47,\n            \"value\": 11.33\n        },\n        \"2022-06-11\": {\n            \"scraped\": 413,\n            \"activeCount\": 47,\n            \"value\": 11.33\n        },\n        \"2022-06-12\": {\n            \"scraped\": 413,\n            \"activeCount\": 43,\n            \"value\": 10.36\n        },\n        \"2022-06-13\": {\n            \"scraped\": 413,\n            \"activeCount\": 42,\n            \"value\": 10.12\n        },\n        \"2022-06-14\": {\n            \"scraped\": 412,\n            \"activeCount\": 44,\n            \"value\": 10.6\n        },\n        \"2022-06-15\": {\n            \"scraped\": 1,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-06-16\": {\n            \"scraped\": 413,\n            \"activeCount\": 40,\n            \"value\": 9.64\n        },\n        \"2022-06-17\": {\n            \"scraped\": 413,\n            \"activeCount\": 42,\n            \"value\": 10.12\n        },\n        \"2022-06-18\": {\n            \"scraped\": 413,\n            \"activeCount\": 45,\n            \"value\": 10.84\n        },\n        \"2022-06-19\": {\n            \"scraped\": 413,\n            \"activeCount\": 44,\n            \"value\": 10.6\n        },\n        \"2022-06-20\": {\n            \"scraped\": 413,\n            \"activeCount\": 43,\n            \"value\": 10.36\n        },\n        \"2022-06-21\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-06-22\": {\n            \"scraped\": 413,\n            \"activeCount\": 40,\n            \"value\": 9.64\n        },\n        \"2022-06-23\": {\n            \"scraped\": 413,\n            \"activeCount\": 44,\n            \"value\": 10.6\n        },\n        \"2022-06-24\": {\n            \"scraped\": 410,\n            \"activeCount\": 44,\n            \"value\": 10.6\n        },\n        \"2022-06-25\": {\n            \"scraped\": 411,\n            \"activeCount\": 41,\n            \"value\": 9.88\n        },\n        \"2022-06-26\": {\n            \"scraped\": 412,\n            \"activeCount\": 40,\n            \"value\": 9.64\n        },\n        \"2022-06-27\": {\n            \"scraped\": 406,\n            \"activeCount\": 39,\n            \"value\": 9.4\n        },\n        \"2022-06-28\": {\n            \"scraped\": 407,\n            \"activeCount\": 39,\n            \"value\": 9.4\n        },\n        \"2022-06-29\": {\n            \"scraped\": 388,\n            \"activeCount\": 44,\n            \"value\": 10.6\n        },\n        \"2022-06-30\": {\n            \"scraped\": 382,\n            \"activeCount\": 44,\n            \"value\": 10.6\n        },\n        \"2022-07-01\": {\n            \"scraped\": 386,\n            \"activeCount\": 45,\n            \"value\": 10.84\n        },\n        \"2022-07-02\": {\n            \"scraped\": 386,\n            \"activeCount\": 49,\n            \"value\": 11.81\n        },\n        \"2022-07-03\": {\n            \"scraped\": 386,\n            \"activeCount\": 47,\n            \"value\": 11.33\n        },\n        \"2022-07-04\": {\n            \"scraped\": 409,\n            \"activeCount\": 45,\n            \"value\": 10.84\n        },\n        \"2022-07-05\": {\n            \"scraped\": 390,\n            \"activeCount\": 43,\n            \"value\": 10.36\n        },\n        \"2022-07-06\": {\n            \"scraped\": 413,\n            \"activeCount\": 43,\n            \"value\": 10.36\n        },\n        \"2022-07-07\": {\n            \"scraped\": 413,\n            \"activeCount\": 44,\n            \"value\": 10.6\n        },\n        \"2022-07-08\": {\n            \"scraped\": 413,\n            \"activeCount\": 40,\n            \"value\": 9.64\n        },\n        \"2022-07-09\": {\n            \"scraped\": 413,\n            \"activeCount\": 43,\n            \"value\": 10.36\n        },\n        \"2022-07-10\": {\n            \"scraped\": 378,\n            \"activeCount\": 42,\n            \"value\": 10.12\n        },\n        \"2022-07-11\": {\n            \"scraped\": 413,\n            \"activeCount\": 40,\n            \"value\": 9.64\n        },\n        \"2022-07-12\": {\n            \"scraped\": 413,\n            \"activeCount\": 40,\n            \"value\": 9.64\n        },\n        \"2022-07-13\": {\n            \"scraped\": 413,\n            \"activeCount\": 39,\n            \"value\": 9.4\n        },\n        \"2022-07-14\": {\n            \"scraped\": 413,\n            \"activeCount\": 40,\n            \"value\": 9.64\n        },\n        \"2022-07-15\": {\n            \"scraped\": 413,\n            \"activeCount\": 41,\n            \"value\": 9.88\n        },\n        \"2022-07-16\": {\n            \"scraped\": 413,\n            \"activeCount\": 42,\n            \"value\": 10.12\n        },\n        \"2022-07-17\": {\n            \"scraped\": 413,\n            \"activeCount\": 42,\n            \"value\": 10.12\n        },\n        \"2022-07-18\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-07-19\": {\n            \"scraped\": 413,\n            \"activeCount\": 41,\n            \"value\": 9.88\n        },\n        \"2022-07-20\": {\n            \"scraped\": 413,\n            \"activeCount\": 42,\n            \"value\": 10.12\n        },\n        \"2022-07-21\": {\n            \"scraped\": 413,\n            \"activeCount\": 45,\n            \"value\": 10.84\n        },\n        \"2022-07-22\": {\n            \"scraped\": 413,\n            \"activeCount\": 44,\n            \"value\": 10.6\n        },\n        \"2022-07-23\": {\n            \"scraped\": 262,\n            \"activeCount\": 44,\n            \"value\": 10.6\n        },\n        \"2022-07-24\": {\n            \"scraped\": 413,\n            \"activeCount\": 40,\n            \"value\": 9.64\n        },\n        \"2022-07-25\": {\n            \"scraped\": 413,\n            \"activeCount\": 36,\n            \"value\": 8.67\n        },\n        \"2022-07-26\": {\n            \"scraped\": 413,\n            \"activeCount\": 33,\n            \"value\": 7.95\n        },\n        \"2022-07-27\": {\n            \"scraped\": 410,\n            \"activeCount\": 36,\n            \"value\": 8.67\n        },\n        \"2022-07-28\": {\n            \"scraped\": 409,\n            \"activeCount\": 35,\n            \"value\": 8.43\n        },\n        \"2022-07-29\": {\n            \"scraped\": 373,\n            \"activeCount\": 33,\n            \"value\": 7.95\n        },\n        \"2022-07-30\": {\n            \"scraped\": 408,\n            \"activeCount\": 31,\n            \"value\": 7.47\n        },\n        \"2022-07-31\": {\n            \"scraped\": 413,\n            \"activeCount\": 33,\n            \"value\": 7.95\n        },\n        \"2022-08-01\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-08-02\": {\n            \"scraped\": 410,\n            \"activeCount\": 29,\n            \"value\": 6.99\n        },\n        \"2022-08-03\": {\n            \"scraped\": 14,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-08-04\": {\n            \"scraped\": 413,\n            \"activeCount\": 30,\n            \"value\": 7.23\n        },\n        \"2022-08-05\": {\n            \"scraped\": 413,\n            \"activeCount\": 29,\n            \"value\": 6.99\n        },\n        \"2022-08-06\": {\n            \"scraped\": 411,\n            \"activeCount\": 31,\n            \"value\": 7.47\n        },\n        \"2022-08-07\": {\n            \"scraped\": 413,\n            \"activeCount\": 35,\n            \"value\": 8.43\n        },\n        \"2022-08-08\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-08-09\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-08-10\": {\n            \"scraped\": 413,\n            \"activeCount\": 37,\n            \"value\": 8.92\n        },\n        \"2022-08-11\": {\n            \"scraped\": 413,\n            \"activeCount\": 37,\n            \"value\": 8.92\n        },\n        \"2022-08-12\": {\n            \"scraped\": 413,\n            \"activeCount\": 36,\n            \"value\": 8.67\n        },\n        \"2022-08-13\": {\n            \"scraped\": 409,\n            \"activeCount\": 34,\n            \"value\": 8.19\n        },\n        \"2022-08-14\": {\n            \"scraped\": 413,\n            \"activeCount\": 34,\n            \"value\": 8.19\n        },\n        \"2022-08-15\": {\n            \"scraped\": 122,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-08-16\": {\n            \"scraped\": 413,\n            \"activeCount\": 31,\n            \"value\": 7.47\n        },\n        \"2022-08-17\": {\n            \"scraped\": 413,\n            \"activeCount\": 33,\n            \"value\": 7.95\n        },\n        \"2022-08-18\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-08-19\": {\n            \"scraped\": 413,\n            \"activeCount\": 35,\n            \"value\": 8.43\n        },\n        \"2022-08-20\": {\n            \"scraped\": 413,\n            \"activeCount\": 36,\n            \"value\": 8.67\n        },\n        \"2022-08-21\": {\n            \"scraped\": 413,\n            \"activeCount\": 39,\n            \"value\": 9.4\n        },\n        \"2022-08-22\": {\n            \"scraped\": 411,\n            \"activeCount\": 38,\n            \"value\": 9.16\n        },\n        \"2022-08-23\": {\n            \"scraped\": 413,\n            \"activeCount\": 34,\n            \"value\": 8.19\n        },\n        \"2022-08-24\": {\n            \"scraped\": 411,\n            \"activeCount\": 37,\n            \"value\": 8.92\n        },\n        \"2022-08-25\": {\n            \"scraped\": 413,\n            \"activeCount\": 39,\n            \"value\": 9.4\n        },\n        \"2022-08-26\": {\n            \"scraped\": 411,\n            \"activeCount\": 40,\n            \"value\": 9.64\n        },\n        \"2022-08-27\": {\n            \"scraped\": 411,\n            \"activeCount\": 39,\n            \"value\": 9.4\n        },\n        \"2022-08-28\": {\n            \"scraped\": 413,\n            \"activeCount\": 42,\n            \"value\": 10.12\n        },\n        \"2022-08-29\": {\n            \"scraped\": 413,\n            \"activeCount\": 42,\n            \"value\": 10.12\n        },\n        \"2022-08-30\": {\n            \"scraped\": 413,\n            \"activeCount\": 42,\n            \"value\": 10.12\n        },\n        \"2022-08-31\": {\n            \"scraped\": 413,\n            \"activeCount\": 38,\n            \"value\": 9.16\n        },\n        \"2022-09-01\": {\n            \"scraped\": 413,\n            \"activeCount\": 39,\n            \"value\": 9.4\n        },\n        \"2022-09-02\": {\n            \"scraped\": 412,\n            \"activeCount\": 42,\n            \"value\": 10.12\n        },\n        \"2022-09-03\": {\n            \"scraped\": 412,\n            \"activeCount\": 44,\n            \"value\": 10.6\n        },\n        \"2022-09-04\": {\n            \"scraped\": 413,\n            \"activeCount\": 42,\n            \"value\": 10.12\n        },\n        \"2022-09-05\": {\n            \"scraped\": 413,\n            \"activeCount\": 39,\n            \"value\": 9.4\n        },\n        \"2022-09-06\": {\n            \"scraped\": 413,\n            \"activeCount\": 36,\n            \"value\": 8.67\n        },\n        \"2022-09-07\": {\n            \"scraped\": 413,\n            \"activeCount\": 35,\n            \"value\": 8.43\n        },\n        \"2022-09-08\": {\n            \"scraped\": 413,\n            \"activeCount\": 33,\n            \"value\": 7.95\n        },\n        \"2022-09-09\": {\n            \"scraped\": 413,\n            \"activeCount\": 35,\n            \"value\": 8.43\n        },\n        \"2022-09-10\": {\n            \"scraped\": 413,\n            \"activeCount\": 36,\n            \"value\": 8.67\n        },\n        \"2022-09-11\": {\n            \"scraped\": 412,\n            \"activeCount\": 38,\n            \"value\": 9.16\n        },\n        \"2022-09-12\": {\n            \"scraped\": 413,\n            \"activeCount\": 38,\n            \"value\": 9.16\n        },\n        \"2022-09-13\": {\n            \"scraped\": 413,\n            \"activeCount\": 36,\n            \"value\": 8.67\n        },\n        \"2022-09-14\": {\n            \"scraped\": 413,\n            \"activeCount\": 40,\n            \"value\": 9.64\n        },\n        \"2022-09-15\": {\n            \"scraped\": 413,\n            \"activeCount\": 39,\n            \"value\": 9.4\n        },\n        \"2022-09-16\": {\n            \"scraped\": 413,\n            \"activeCount\": 43,\n            \"value\": 10.36\n        },\n        \"2022-09-17\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-09-18\": {\n            \"scraped\": 413,\n            \"activeCount\": 45,\n            \"value\": 10.84\n        },\n        \"2022-09-19\": {\n            \"scraped\": 410,\n            \"activeCount\": 42,\n            \"value\": 10.12\n        },\n        \"2022-09-20\": {\n            \"scraped\": 413,\n            \"activeCount\": 41,\n            \"value\": 9.88\n        },\n        \"2022-09-21\": {\n            \"scraped\": 413,\n            \"activeCount\": 40,\n            \"value\": 9.64\n        },\n        \"2022-09-22\": {\n            \"scraped\": 413,\n            \"activeCount\": 38,\n            \"value\": 9.16\n        },\n        \"2022-09-23\": {\n            \"scraped\": 413,\n            \"activeCount\": 42,\n            \"value\": 10.12\n        },\n        \"2022-09-24\": {\n            \"scraped\": 323,\n            \"activeCount\": 44,\n            \"value\": 10.6\n        },\n        \"2022-09-25\": {\n            \"scraped\": 413,\n            \"activeCount\": 41,\n            \"value\": 9.88\n        },\n        \"2022-09-26\": {\n            \"scraped\": 413,\n            \"activeCount\": 38,\n            \"value\": 9.16\n        },\n        \"2022-09-27\": {\n            \"scraped\": 413,\n            \"activeCount\": 36,\n            \"value\": 8.67\n        },\n        \"2022-09-28\": {\n            \"scraped\": 412,\n            \"activeCount\": 36,\n            \"value\": 8.67\n        },\n        \"2022-09-29\": {\n            \"scraped\": 409,\n            \"activeCount\": 38,\n            \"value\": 9.16\n        },\n        \"2022-09-30\": {\n            \"scraped\": 413,\n            \"activeCount\": 42,\n            \"value\": 10.12\n        },\n        \"2022-10-01\": {\n            \"scraped\": 412,\n            \"activeCount\": 37,\n            \"value\": 8.92\n        },\n        \"2022-10-02\": {\n            \"scraped\": 410,\n            \"activeCount\": 35,\n            \"value\": 8.43\n        },\n        \"2022-10-03\": {\n            \"scraped\": 413,\n            \"activeCount\": 35,\n            \"value\": 8.43\n        },\n        \"2022-10-04\": {\n            \"scraped\": 413,\n            \"activeCount\": 35,\n            \"value\": 8.43\n        },\n        \"2022-10-05\": {\n            \"scraped\": 413,\n            \"activeCount\": 38,\n            \"value\": 9.16\n        },\n        \"2022-10-06\": {\n            \"scraped\": 413,\n            \"activeCount\": 36,\n            \"value\": 8.67\n        },\n        \"2022-10-07\": {\n            \"scraped\": 413,\n            \"activeCount\": 38,\n            \"value\": 9.16\n        },\n        \"2022-10-08\": {\n            \"scraped\": 412,\n            \"activeCount\": 42,\n            \"value\": 10.12\n        },\n        \"2022-10-09\": {\n            \"scraped\": 413,\n            \"activeCount\": 37,\n            \"value\": 8.92\n        },\n        \"2022-10-10\": {\n            \"scraped\": 413,\n            \"activeCount\": 35,\n            \"value\": 8.43\n        },\n        \"2022-10-11\": {\n            \"scraped\": 413,\n            \"activeCount\": 34,\n            \"value\": 8.19\n        },\n        \"2022-10-12\": {\n            \"scraped\": 413,\n            \"activeCount\": 35,\n            \"value\": 8.43\n        },\n        \"2022-10-13\": {\n            \"scraped\": 413,\n            \"activeCount\": 37,\n            \"value\": 8.92\n        },\n        \"2022-10-14\": {\n            \"scraped\": 411,\n            \"activeCount\": 40,\n            \"value\": 9.64\n        },\n        \"2022-10-15\": {\n            \"scraped\": 413,\n            \"activeCount\": 37,\n            \"value\": 8.92\n        },\n        \"2022-10-16\": {\n            \"scraped\": 413,\n            \"activeCount\": 34,\n            \"value\": 8.19\n        },\n        \"2022-10-17\": {\n            \"scraped\": 413,\n            \"activeCount\": 33,\n            \"value\": 7.95\n        },\n        \"2022-10-18\": {\n            \"scraped\": 413,\n            \"activeCount\": 32,\n            \"value\": 7.71\n        },\n        \"2022-10-19\": {\n            \"scraped\": 413,\n            \"activeCount\": 32,\n            \"value\": 7.71\n        },\n        \"2022-10-20\": {\n            \"scraped\": 413,\n            \"activeCount\": 33,\n            \"value\": 7.95\n        },\n        \"2022-10-21\": {\n            \"scraped\": 413,\n            \"activeCount\": 36,\n            \"value\": 8.67\n        },\n        \"2022-10-22\": {\n            \"scraped\": 413,\n            \"activeCount\": 34,\n            \"value\": 8.19\n        },\n        \"2022-10-23\": {\n            \"scraped\": 413,\n            \"activeCount\": 36,\n            \"value\": 8.67\n        },\n        \"2022-10-24\": {\n            \"scraped\": 413,\n            \"activeCount\": 32,\n            \"value\": 7.71\n        },\n        \"2022-10-25\": {\n            \"scraped\": 413,\n            \"activeCount\": 34,\n            \"value\": 8.19\n        },\n        \"2022-10-26\": {\n            \"scraped\": 413,\n            \"activeCount\": 32,\n            \"value\": 7.71\n        },\n        \"2022-10-27\": {\n            \"scraped\": 413,\n            \"activeCount\": 35,\n            \"value\": 8.43\n        },\n        \"2022-10-28\": {\n            \"scraped\": 412,\n            \"activeCount\": 36,\n            \"value\": 8.67\n        },\n        \"2022-10-29\": {\n            \"scraped\": 413,\n            \"activeCount\": 35,\n            \"value\": 8.43\n        },\n        \"2022-10-30\": {\n            \"scraped\": 413,\n            \"activeCount\": 38,\n            \"value\": 9.16\n        },\n        \"2022-10-31\": {\n            \"scraped\": 413,\n            \"activeCount\": 37,\n            \"value\": 8.92\n        },\n        \"2022-11-01\": {\n            \"scraped\": 413,\n            \"activeCount\": 35,\n            \"value\": 8.43\n        },\n        \"2022-11-02\": {\n            \"scraped\": 358,\n            \"activeCount\": 34,\n            \"value\": 8.19\n        },\n        \"2022-11-03\": {\n            \"scraped\": 93,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-11-04\": {\n            \"scraped\": 413,\n            \"activeCount\": 36,\n            \"value\": 8.67\n        },\n        \"2022-11-05\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-11-06\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-11-07\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-11-08\": {\n            \"scraped\": 413,\n            \"activeCount\": 34,\n            \"value\": 8.19\n        },\n        \"2022-11-09\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-11-10\": {\n            \"scraped\": 408,\n            \"activeCount\": 36,\n            \"value\": 8.67\n        },\n        \"2022-11-11\": {\n            \"scraped\": 5,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-11-12\": {\n            \"scraped\": 413,\n            \"activeCount\": 33,\n            \"value\": 7.95\n        },\n        \"2022-11-13\": {\n            \"scraped\": 409,\n            \"activeCount\": 32,\n            \"value\": 7.71\n        },\n        \"2022-11-14\": {\n            \"scraped\": 404,\n            \"activeCount\": 28,\n            \"value\": 6.75\n        },\n        \"2022-11-15\": {\n            \"scraped\": 409,\n            \"activeCount\": 27,\n            \"value\": 6.51\n        },\n        \"2022-11-16\": {\n            \"scraped\": 407,\n            \"activeCount\": 26,\n            \"value\": 6.27\n        },\n        \"2022-11-17\": {\n            \"scraped\": 401,\n            \"activeCount\": 28,\n            \"value\": 6.75\n        },\n        \"2022-11-18\": {\n            \"scraped\": 407,\n            \"activeCount\": 29,\n            \"value\": 6.99\n        },\n        \"2022-11-19\": {\n            \"scraped\": 407,\n            \"activeCount\": 32,\n            \"value\": 7.71\n        },\n        \"2022-11-20\": {\n            \"scraped\": 406,\n            \"activeCount\": 32,\n            \"value\": 7.71\n        },\n        \"2022-11-21\": {\n            \"scraped\": 413,\n            \"activeCount\": 31,\n            \"value\": 7.47\n        },\n        \"2022-11-22\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-11-23\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-11-24\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-11-25\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-11-26\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-11-27\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-11-28\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-11-29\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-11-30\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-12-01\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-12-02\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-12-03\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-12-04\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-12-05\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-12-06\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        },\n        \"2022-12-07\": {\n            \"scraped\": null,\n            \"activeCount\": null,\n            \"value\": null\n        }\n    },\n    \"alertSet\": 867\n}"}],"_postman_id":"dafe37d3-7e43-42b2-8871-f266d2dc8546"},{"name":"Select One (Alerts) Endpoint","id":"18fb318d-27c8-4751-9d6c-b2ced7fcc3ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"{{token}}","type":"text"}],"url":"//user/addOne/:userId/:profileId/:searchId","description":"<p>This endpoint allows you to set an alert on 1 profile contained within a saved document, as per the <strong>Create a Saved Document</strong> Endpoint below; this allows you to see (over time) if they are displaying job seeking activity.</p>\n<p>Replace the userId in the path with the userId associated to your authorization credentials.</p>\n<p>Replace the profileId in the path with the id of the profile contained within the search results. It is recommended to send the search terms to the <strong>List of Prospects</strong> Endpoint to get the list of profileIds within the search.</p>\n<p>Replace the searchId in the path with the id of the search that you received from the <strong>Create a Saved Document</strong> Endpoint below.</p>\n<p>The only result you should receive from this endpoint on success is a 200 OK code.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["user","addOne",":userId",":profileId",":searchId"],"host":["/"],"query":[],"variable":[{"id":"9e9d39dc-e225-4b56-9d54-73d8bae590fd","type":"any","value":null,"key":"userId"},{"id":"8651ecf5-8d01-48af-b3eb-577c0a9cf1f5","type":"any","value":null,"key":"profileId"},{"id":"73dcdaea-8581-45cd-b5ce-cf9afff2c4ce","type":"any","value":null,"key":"searchId"}]}},"response":[],"_postman_id":"18fb318d-27c8-4751-9d6c-b2ced7fcc3ce"},{"name":"Unselect One (Alerts) Endpoint","id":"fabae59a-c8ca-432d-9377-80ee17fc6987","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"{{token}}","type":"text"}],"url":"//user/removeOne/:userId/:profileId/:searchId","description":"<p>This endpoint allows you to remove an alert on 1 profile contained within a saved document, as per the <strong>Create a Saved Document</strong> Endpoint below.</p>\n<p>Replace the userId in the path with the userId associated to your authorization credentials.</p>\n<p>Replace the profileId in the path with the id of the profile contained within the search results. It is recommended to send the search terms to the <strong>List of Prospects</strong> Endpoint to get the list of profileIds within the search.</p>\n<p>Replace the searchId in the path with the id of the search that you received from the <strong>Create a Saved Document</strong> Endpoint below.</p>\n<p>The only result you should receive from this endpoint on success is a 200 OK code.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["user","removeOne",":userId",":profileId",":searchId"],"host":["/"],"query":[],"variable":[{"id":"9e9d39dc-e225-4b56-9d54-73d8bae590fd","type":"any","value":null,"key":"userId"},{"id":"8651ecf5-8d01-48af-b3eb-577c0a9cf1f5","type":"any","value":null,"key":"profileId"},{"id":"73dcdaea-8581-45cd-b5ce-cf9afff2c4ce","type":"any","value":null,"key":"searchId"}]}},"response":[],"_postman_id":"fabae59a-c8ca-432d-9377-80ee17fc6987"},{"name":"Select All (Alerts) Endpoint","id":"319c81e6-3ea6-40d7-8a5c-57dd69bac135","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"E9ACW56qRCugnduTeXTr0Q\",\n    \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"DevOps Engineer\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"Boston-Cambridge-Newton, MA-NH\",\"10\",\"mi\",\"CBSA\",\"United States\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"locationRange\"\n    }\n  ]\n}"},"url":"//user/selectAll/:userId","description":"<p>This endpoint allows you to set alerts on a population that you have associated with a saved document, as per the <strong>Create a Saved Document</strong> Endpoint below. Sending a search to this endpoint will automatically set alerts on all the people contained within the results, so you can (over time) see who among them are displaying job seeking activity.</p>\n<p>Replace the userId in the path with the userId associated to your authorization credentials.</p>\n<p>Formatting the body of this request requires you to follow one more step than the other endpoints:</p>\n<p>Body:</p>\n<p>\"id\": copy the 'id' from the result of the Create a Saved Document Endpoint, this is the same as the 'id' of a saved search.</p>\n<p>\"searchParameters\": enter the search terms here, like you would for any other endpoint. Here are descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>The only result you should receive from this endpoint on success is a 200 OK code.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["user","selectAll",":userId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"","key":"userId"}]}},"response":[{"id":"aef9203f-1125-4c94-847a-75630e91858a","name":"Devops Engineers in Boston","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"E9ACW56qRCugnduTeXTr0Q\",\n    \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"DevOps Engineer\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"Boston-Cambridge-Newton, MA-NH\",\"10\",\"mi\",\"CBSA\",\"United States\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"locationRange\"\n    }\n  ]\n}"},"url":{"raw":"//user/selectAll/:userId","host":["/"],"path":["user","selectAll",":userId"],"variable":[{"key":"userId","value":null}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"319c81e6-3ea6-40d7-8a5c-57dd69bac135"},{"name":"Unselect All (Alerts) Endpoint","id":"def66d7f-7ea8-41f5-8781-ef7233c9e87d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"E9ACW56qRCugnduTeXTr0Q\",\n    \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"DevOps Engineer\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"Boston-Cambridge-Newton, MA-NH\",\"10\",\"mi\",\"CBSA\",\"United States\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"locationRange\"\n    }\n  ]\n}"},"url":"//user/unselectAll/:userId","description":"<p>This endpoint allows you to remove alerts on a population that you have associated with a saved document, as per the <strong>Create a Saved Document</strong> Endpoint below. Sending a search to this endpoint will automatically remove any alerts you had set on all the people contained within the results.</p>\n<p>Replace the userId in the path with the userId associated to your authorization credentials.</p>\n<p>Formatting the body of this request requires you to follow one more step than the other endpoints:</p>\n<p>Body:</p>\n<p>\"id\": copy the 'id' from the result of the Create a Saved Document Endpoint, this is the same as the 'id' of a saved search.</p>\n<p>\"searchParameters\": enter the search terms here, like you would for any other endpoint. Here are descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>The only result you should receive from this endpoint on success is a 200 OK code.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["user","unselectAll",":userId"],"host":["/"],"query":[],"variable":[{"id":"7b8f66ae-4ebf-4c9c-947b-605f240bd715","type":"any","value":"","key":"userId"}]}},"response":[{"id":"85a9962d-aa1b-4566-9516-702707506ec5","name":"Devops Engineers in Boston","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"E9ACW56qRCugnduTeXTr0Q\",\n    \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"DevOps Engineer\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"Boston-Cambridge-Newton, MA-NH\",\"10\",\"mi\",\"CBSA\",\"United States\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"locationRange\"\n    }\n  ]\n}"},"url":{"raw":"//user/selectAll/:userId","host":["/"],"path":["user","selectAll",":userId"],"variable":[{"key":"userId","value":null}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"def66d7f-7ea8-41f5-8781-ef7233c9e87d"},{"name":"Search Status Endpoint","id":"80acd6e3-a6a4-48a7-a7ab-0a3eb09f7d6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"//searches/status/:userId/:searchId","description":"<p>This endpoint allows you to confirm whether you have successfully set alerts on a population using the <strong>Select All</strong> or <strong>Select One</strong> Endpoints above. Sending a search to this endpoint will return the number of profiles who have alerts set on them within this search, the boolean status of whether alert-setting is complete, and the number of total profiles that met the search criteria.</p>\n<p>Replace the userId in the path with the userId associated to your authorization credentials.</p>\n<p>Replace the searchId in the path with the id of the search that you received from the <strong>Create a Saved Document</strong> Endpoint below.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["searches","status",":userId",":searchId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"","key":"userId"},{"type":"any","value":"","key":"searchId"}]}},"response":[{"id":"263df3a6-bdcd-412f-97c3-f580c554034e","name":"Devops Engineers in Boston","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"E9ACW56qRCugnduTeXTr0Q\",\n    \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"DevOps Engineer\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"Boston-Cambridge-Newton, MA-NH\",\"10\",\"mi\",\"CBSA\",\"United States\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"locationRange\"\n    }\n  ]\n}"},"url":{"raw":"//searches/status/:userId/:searchId","host":["/"],"path":["searches","status",":userId",":searchId"],"variable":[{"key":"userId","value":null},{"key":"searchId","value":""}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"selectedCount\": 1,\n    \"finished\": true,\n    \"totalCount\": 732\n}"}],"_postman_id":"80acd6e3-a6a4-48a7-a7ab-0a3eb09f7d6f"}],"id":"1223edc7-1ccf-43a4-a01e-42abef02bda5","_postman_id":"1223edc7-1ccf-43a4-a01e-42abef02bda5","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}}},{"name":"Talent Mobility Chart Endpoint (FROM)","event":[{"listen":"test","script":{"id":"d5878da8-cb0f-4b56-a24f-a0645af683fd","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()).to.have.property('center');","pm.expect(pm.response.json()).to.have.property('side');","pm.expect(pm.response.json()['center']).to.have.property('name');","pm.expect(pm.response.json()['center']).to.have.property('ticker');","pm.expect(pm.response.json()['center']).to.have.property('count');","pm.expect(pm.response.json()['center']).to.have.property('countBackward');","pm.expect(pm.response.json()['center']).to.have.property('pct');","pm.expect(pm.response.json()['center']).to.have.property('iconUrl');","pm.expect(pm.response.json()['side'][0]).to.have.property('name');","pm.expect(pm.response.json()['side'][0]).to.have.property('ticker');","pm.expect(pm.response.json()['side'][0]).to.have.property('count');","pm.expect(pm.response.json()['side'][0]).to.have.property('countBackward');","pm.expect(pm.response.json()['side'][0]).to.have.property('pct');","pm.expect(pm.response.json()['side'][0]).to.have.property('iconUrl');","});",""],"type":"text/javascript"}}],"id":"31072263-06d8-40ca-bd8f-e13bcbb0ba5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"Apple Inc.\"\n                ]\n            }\n        ]\n}"},"url":"//supplyData/employees-flow/from?internalMobility=false","description":"<p>This endpoint requires a user to include 1 companyCurrent token in their search query to successfully return data, searching for 0 or &gt;1 company will produce an error.</p>\n<p>This endpoint returns data on the flow of talent in and out of the company designated in the search. Results show (up to) 50 companies where talent was acquired from and where talent has departed to. <strong>This FROM endpoint sorts results by which other companies the designated company has lost the most talent (people FROM the company who have since left).</strong> Results include several values for each company: count - number of prospects who left the company, countBackward - number of prospects who joined the company, pct - relative amount of prospects who left the company compared to the total of leavers. The record is organized in descending numerical order.</p>\n<p>\"internalMobility\" is a setting that can be selected as false or true at the end of the path. When it is set to 'false', the results will hide any prospects who changed jobs between subsidiaries of the same parent company. For example, searching for 'Facebook, Inc.' will not show any prospects who moved to/from Facebook to Instagram or any other Meta Platforms subsidiary in the results. When \"internalMobility\" is set to 'true', these subsidiaries may be present in the results based on their ranking of how many prospects left/joined.</p>\n<p>Here are the descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return the list of Apple Inc.'s Talent Mobility:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"Apple Inc.\"\n                ]\n            }\n        ]\n}\n\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","employees-flow","from"],"host":["/"],"query":[{"key":"internalMobility","value":"false"}],"variable":[]}},"response":[{"id":"cc36065d-3c99-480b-adec-0039f455f371","name":"Apple Talent Mobility","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"Apple Inc.\"\n                ]\n            }\n        ]\n}"},"url":{"raw":"//supplyData/employees-flow/from?internalMobility=false","host":["/"],"path":["supplyData","employees-flow","from"],"query":[{"key":"internalMobility","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 16:32:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1998"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Qc2Pwyaj2GFAF0hvuZQ0MV%2Bw3lu1iPNeOTXEM%2B%2FvgMPpgRb4miDQcvn2tqPfUQtpYvF%2BpkDCKuSYyCKmbl0Glf8IWcbiR4FoXn5PXChpW6vnPwq0A6kvfBDtW22hDpY9XhUosotsgML5j4c%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7eff79b878d328ca-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"center\": {\n        \"name\": \"Apple Inc.\",\n        \"count\": 64630,\n        \"countBackward\": 101077,\n        \"pct\": 100.0,\n        \"iconUrl\": \"image.url/apple-inc.\"\n    },\n    \"side\": [\n        {\n            \"name\": \"Freelancer\",\n            \"count\": 5303,\n            \"countBackward\": 948,\n            \"pct\": 8.205167878694104,\n            \"iconUrl\": \"image.url/freelancer.png\"\n        },\n        {\n            \"name\": \"Google\",\n            \"count\": 1458,\n            \"countBackward\": 761,\n            \"pct\": 2.2559183041930995,\n            \"iconUrl\": \"image.url/google\"\n        },\n        {\n            \"name\": \"Amazon.com, Inc.\",\n            \"count\": 1321,\n            \"countBackward\": 1518,\n            \"pct\": 2.0439424415905925,\n            \"iconUrl\": \"image.url/2a215cce5dd00ae3e4b6b7060ee1ea08\"\n        },\n        {\n            \"name\": \"Microsoft Corporation\",\n            \"count\": 594,\n            \"countBackward\": 989,\n            \"pct\": 0.9190778276342256,\n            \"iconUrl\": \"image.url/microsoft-corporation\"\n        },\n        {\n            \"name\": \"Meta Platforms, Inc.\",\n            \"count\": 550,\n            \"countBackward\": 116,\n            \"pct\": 0.8509979885502089,\n            \"iconUrl\": \"image.url/meta-platforms,-inc.\"\n        },\n        {\n            \"name\": \"Tesla, Inc.\",\n            \"count\": 416,\n            \"countBackward\": 331,\n            \"pct\": 0.6436639331579762,\n            \"iconUrl\": \"image.url/tesla,-inc.\"\n        },\n        {\n            \"name\": \"Facebook, Inc.\",\n            \"count\": 386,\n            \"countBackward\": 310,\n            \"pct\": 0.5972458610552375,\n            \"iconUrl\": \"image.url/meta-platforms,-inc.\"\n        },\n        {\n            \"name\": \"Retired or Not in the Workforce\",\n            \"count\": 198,\n            \"countBackward\": 103,\n            \"pct\": 0.3063592758780752,\n            \"iconUrl\": \"image.url/retired-or-not-in-the-workforce\"\n        },\n        {\n            \"name\": \"Accenture plc\",\n            \"count\": 181,\n            \"countBackward\": 220,\n            \"pct\": 0.2800557016865233,\n            \"iconUrl\": \"image.url/223e851d7e1482a4077210903ea147b9\"\n        },\n        {\n            \"name\": \"Intel Corporation\",\n            \"count\": 168,\n            \"countBackward\": 2152,\n            \"pct\": 0.2599412037753365,\n            \"iconUrl\": \"image.url/intel-corporation\"\n        },\n        {\n            \"name\": \"LinkedIn\",\n            \"count\": 166,\n            \"countBackward\": 113,\n            \"pct\": 0.25684666563515396,\n            \"iconUrl\": \"image.url/linkedin\"\n        },\n        {\n            \"name\": \"International Business Machines Corporation\",\n            \"count\": 162,\n            \"countBackward\": 360,\n            \"pct\": 0.2506575893547888,\n            \"iconUrl\": \"image.url/international-business-machines-corporation\"\n        },\n        {\n            \"name\": \"Adobe Inc.\",\n            \"count\": 158,\n            \"countBackward\": 167,\n            \"pct\": 0.24446851307442363,\n            \"iconUrl\": \"image.url/adobe-inc.\"\n        },\n        {\n            \"name\": \"Cisco Systems, Inc.\",\n            \"count\": 151,\n            \"countBackward\": 537,\n            \"pct\": 0.23363762958378462,\n            \"iconUrl\": \"image.url/cisco-systems\"\n        },\n        {\n            \"name\": \"NVIDIA Corporation\",\n            \"count\": 144,\n            \"countBackward\": 249,\n            \"pct\": 0.2228067460931456,\n            \"iconUrl\": \"image.url/nvidia-corporation\"\n        },\n        {\n            \"name\": \"Nike, Inc.\",\n            \"count\": 139,\n            \"countBackward\": 301,\n            \"pct\": 0.21507040074268913,\n            \"iconUrl\": \"image.url/9c2b30d4bd7dbaa3ff4107ac9028586d\"\n        },\n        {\n            \"name\": \"Netflix, Inc.\",\n            \"count\": 135,\n            \"countBackward\": 126,\n            \"pct\": 0.20888132446232402,\n            \"iconUrl\": \"image.url/2536711439fd7b108da1c1d122ec0232\"\n        },\n        {\n            \"name\": \"Dell Technologies Inc.\",\n            \"count\": 118,\n            \"countBackward\": 329,\n            \"pct\": 0.18257775027077208,\n            \"iconUrl\": \"image.url/dell-technologies-inc.\"\n        },\n        {\n            \"name\": \"Oracle Corporation\",\n            \"count\": 114,\n            \"countBackward\": 309,\n            \"pct\": 0.17638867399040692,\n            \"iconUrl\": \"image.url/oracle-corporation\"\n        },\n        {\n            \"name\": \"Salesforce.com Inc\",\n            \"count\": 112,\n            \"countBackward\": 90,\n            \"pct\": 0.17329413585022435,\n            \"iconUrl\": \"image.url/salesforce.com-inc\"\n        },\n        {\n            \"name\": \"苹果\",\n            \"count\": 111,\n            \"countBackward\": 66,\n            \"pct\": 0.17174686678013307,\n            \"iconUrl\": null\n        },\n        {\n            \"name\": \"AT&T Inc.\",\n            \"count\": 108,\n            \"countBackward\": 429,\n            \"pct\": 0.1671050595698592,\n            \"iconUrl\": \"image.url/at&t-inc.\"\n        },\n        {\n            \"name\": \"Rivian Automotive, Inc.\",\n            \"count\": 105,\n            \"countBackward\": 21,\n            \"pct\": 0.16246325235958534,\n            \"iconUrl\": null\n        },\n        {\n            \"name\": \"Jamf Holding\",\n            \"count\": 103,\n            \"countBackward\": 15,\n            \"pct\": 0.15936871421940274,\n            \"iconUrl\": null\n        },\n        {\n            \"name\": \"Deloitte Touche Tohmatsu Limited\",\n            \"count\": 102,\n            \"countBackward\": 218,\n            \"pct\": 0.15782144514931146,\n            \"iconUrl\": null\n        },\n        {\n            \"name\": \"Uber Technologies Inc\",\n            \"count\": 100,\n            \"countBackward\": 207,\n            \"pct\": 0.1547269070091289,\n            \"iconUrl\": \"image.url/uber-technologies-inc\"\n        },\n        {\n            \"name\": \"Walmart Inc.\",\n            \"count\": 100,\n            \"countBackward\": 224,\n            \"pct\": 0.1547269070091289,\n            \"iconUrl\": \"image.url/walmart-inc.\"\n        },\n        {\n            \"name\": \"Square, Inc.\",\n            \"count\": 88,\n            \"countBackward\": 19,\n            \"pct\": 0.13615967816803343,\n            \"iconUrl\": null\n        },\n        {\n            \"name\": \"Airbnb, Inc.\",\n            \"count\": 86,\n            \"countBackward\": 74,\n            \"pct\": 0.13306514002785083,\n            \"iconUrl\": null\n        },\n        {\n            \"name\": \"Adidas AG\",\n            \"count\": 79,\n            \"countBackward\": 132,\n            \"pct\": 0.12223425653721182,\n            \"iconUrl\": \"image.url/adidas-ag\"\n        },\n        {\n            \"name\": \"PricewaterhouseCoopers Company\",\n            \"count\": 79,\n            \"countBackward\": 138,\n            \"pct\": 0.12223425653721182,\n            \"iconUrl\": \"image.url/pricewaterhousecoopers-company\"\n        },\n        {\n            \"name\": \"Wells Fargo & Company\",\n            \"count\": 76,\n            \"countBackward\": 160,\n            \"pct\": 0.11759244932693796,\n            \"iconUrl\": \"image.url/wells-fargo-&-company\"\n        },\n        {\n            \"name\": \"Abbott Laboratories\",\n            \"count\": 72,\n            \"countBackward\": 86,\n            \"pct\": 0.1114033730465728,\n            \"iconUrl\": \"image.url/abbott-laboratories\"\n        },\n        {\n            \"name\": \"Stanford University\",\n            \"count\": 72,\n            \"countBackward\": 207,\n            \"pct\": 0.1114033730465728,\n            \"iconUrl\": \"image.url/stanford-university\"\n        },\n        {\n            \"name\": \"The Walt Disney Company\",\n            \"count\": 71,\n            \"countBackward\": 221,\n            \"pct\": 0.10985610397648152,\n            \"iconUrl\": \"image.url/the-walt-disney-company\"\n        },\n        {\n            \"name\": \"Samsung Electronics\",\n            \"count\": 69,\n            \"countBackward\": 185,\n            \"pct\": 0.10676156583629894,\n            \"iconUrl\": \"image.url/b768b41c47f64f447cbfb7544a0c28ce\"\n        },\n        {\n            \"name\": \"Vmware, Inc.\",\n            \"count\": 69,\n            \"countBackward\": 124,\n            \"pct\": 0.10676156583629894,\n            \"iconUrl\": \"image.url/dell-technologies-inc.\"\n        },\n        {\n            \"name\": \"Shopify Inc.\",\n            \"count\": 67,\n            \"countBackward\": 13,\n            \"pct\": 0.10366702769611635,\n            \"iconUrl\": \"image.url/shopify-inc.\"\n        },\n        {\n            \"name\": \"Enjoy Technology, Inc.\",\n            \"count\": 65,\n            \"countBackward\": 24,\n            \"pct\": 0.10057248955593377,\n            \"iconUrl\": null\n        },\n        {\n            \"name\": \"Ernst & Young Global Limited\",\n            \"count\": 65,\n            \"countBackward\": 122,\n            \"pct\": 0.10057248955593377,\n            \"iconUrl\": \"image.url/ernst-&-young-global-limited\"\n        },\n        {\n            \"name\": \"PayPal Holdings, Inc.\",\n            \"count\": 65,\n            \"countBackward\": 151,\n            \"pct\": 0.10057248955593377,\n            \"iconUrl\": \"image.url/paypal-holdings,-inc.\"\n        },\n        {\n            \"name\": \"Verizon Communications Inc.\",\n            \"count\": 64,\n            \"countBackward\": 289,\n            \"pct\": 0.0990252204858425,\n            \"iconUrl\": null\n        },\n        {\n            \"name\": \"Starbucks Corporation\",\n            \"count\": 61,\n            \"countBackward\": 682,\n            \"pct\": 0.09438341327556862,\n            \"iconUrl\": \"image.url/starbucks-corporation\"\n        },\n        {\n            \"name\": \"Automatic Data Processing, Inc.\",\n            \"count\": 60,\n            \"countBackward\": 62,\n            \"pct\": 0.09283614420547734,\n            \"iconUrl\": \"image.url/automatic-data-processing,-inc.\"\n        },\n        {\n            \"name\": \"QUALCOMM, Inc.\",\n            \"count\": 60,\n            \"countBackward\": 1051,\n            \"pct\": 0.09283614420547734,\n            \"iconUrl\": \"image.url/ecd5ad49f309601cb2c396894e166945\"\n        },\n        {\n            \"name\": \"American Express Company\",\n            \"count\": 58,\n            \"countBackward\": 94,\n            \"pct\": 0.08974160606529476,\n            \"iconUrl\": \"image.url/american-express-company\"\n        },\n        {\n            \"name\": \"Target Corporation\",\n            \"count\": 58,\n            \"countBackward\": 383,\n            \"pct\": 0.08974160606529476,\n            \"iconUrl\": \"image.url/target-corporation\"\n        },\n        {\n            \"name\": \"Best Buy Co., Inc.\",\n            \"count\": 56,\n            \"countBackward\": 1121,\n            \"pct\": 0.08664706792511218,\n            \"iconUrl\": \"image.url/best-buy-co.,-inc.\"\n        },\n        {\n            \"name\": \"United States Army\",\n            \"count\": 56,\n            \"countBackward\": 81,\n            \"pct\": 0.08664706792511218,\n            \"iconUrl\": \"image.url/united-states-department-of-the-army\"\n        },\n        {\n            \"name\": \"Bank of America Corporation\",\n            \"count\": 55,\n            \"countBackward\": 146,\n            \"pct\": 0.08509979885502089,\n            \"iconUrl\": \"image.url/fdcfb87823fd5ccac5c2e9b4b80dd507\"\n        }\n    ]\n}"}],"_postman_id":"31072263-06d8-40ca-bd8f-e13bcbb0ba5f"},{"name":"Talent Mobility Chart Endpoint (TO)","event":[{"listen":"test","script":{"id":"d5878da8-cb0f-4b56-a24f-a0645af683fd","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()).to.have.property('center');","pm.expect(pm.response.json()).to.have.property('side');","pm.expect(pm.response.json()['center']).to.have.property('name');","pm.expect(pm.response.json()['center']).to.have.property('ticker');","pm.expect(pm.response.json()['center']).to.have.property('count');","pm.expect(pm.response.json()['center']).to.have.property('countBackward');","pm.expect(pm.response.json()['center']).to.have.property('pct');","pm.expect(pm.response.json()['center']).to.have.property('iconUrl');","pm.expect(pm.response.json()['side'][0]).to.have.property('name');","pm.expect(pm.response.json()['side'][0]).to.have.property('ticker');","pm.expect(pm.response.json()['side'][0]).to.have.property('count');","pm.expect(pm.response.json()['side'][0]).to.have.property('countBackward');","pm.expect(pm.response.json()['side'][0]).to.have.property('pct');","pm.expect(pm.response.json()['side'][0]).to.have.property('iconUrl');","});",""],"type":"text/javascript"}}],"id":"88421c28-f0b7-4432-9db2-ed5be5e8bc49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"Apple Inc.\"\n                ]\n            }\n        ]\n}"},"url":"//supplyData/employees-flow/to?internalMobility=false","description":"<p>This endpoint requires a user to include 1 companyCurrent token in their search query to successfully return data, searching for 0 or &gt;1 company will produce an error.</p>\n<p>This endpoint returns data on the flow of talent in and out of the company designated in the search. Results show (up to) 50 companies where talent was acquired from and where talent has departed to. <strong>This TO endpoint sorts results by which other companies the designated company has acquired the most talent (prospects who left their jobs TO join the company).</strong> Results include several values for each company: count - number of prospects who joined the company, countBackward - number of prospects who left the company, pct - relative amount of prospects who joined the company compared to the total of joiners. The record is organized in descending numerical order.</p>\n<p>\"internalMobility\" is a setting that can be selected as false or true at the end of the path. When it is set to 'false', the results will hide any prospects who changed jobs between subsidiaries of the same parent company. For example, searching for 'Facebook, Inc.' will not show any prospects who moved to/from Facebook to Instagram or any other Meta Platforms subsidiary in the results. When \"internalMobility\" is set to 'true', these subsidiaries may be present in the results based on their ranking of how many prospects left/joined.</p>\n<p>Here are the descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return the list of Apple Inc.'s Talent Mobility:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"Apple Inc.\"\n                ]\n            }\n        ]\n}\n\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","employees-flow","to"],"host":["/"],"query":[{"key":"internalMobility","value":"false"}],"variable":[]}},"response":[{"id":"c4df93da-1a00-46ed-847b-eabf30f3d55a","name":"Apple Talent Mobility","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"Apple Inc.\"\n                ]\n            }\n        ]\n}"},"url":{"raw":"//supplyData/employees-flow/to?internalMobility=false","host":["/"],"path":["supplyData","employees-flow","to"],"query":[{"key":"internalMobility","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 16:32:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1998"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Qc2Pwyaj2GFAF0hvuZQ0MV%2Bw3lu1iPNeOTXEM%2B%2FvgMPpgRb4miDQcvn2tqPfUQtpYvF%2BpkDCKuSYyCKmbl0Glf8IWcbiR4FoXn5PXChpW6vnPwq0A6kvfBDtW22hDpY9XhUosotsgML5j4c%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7eff79b878d328ca-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"center\": {\n        \"name\": \"Apple Inc.\",\n        \"count\": 101077,\n        \"countBackward\": 64629,\n        \"pct\": 100.0,\n        \"iconUrl\": \"image.url/apple-inc.\"\n    },\n    \"side\": [\n        {\n            \"name\": \"Intel Corporation\",\n            \"count\": 2152,\n            \"countBackward\": 175,\n            \"pct\": 2.129069916993975,\n            \"iconUrl\": \"image.url/intel-corporation\"\n        },\n        {\n            \"name\": \"Amazon.com, Inc.\",\n            \"count\": 1518,\n            \"countBackward\": 1322,\n            \"pct\": 1.501825341076605,\n            \"iconUrl\": \"image.url/2a215cce5dd00ae3e4b6b7060ee1ea08\"\n        },\n        {\n            \"name\": \"Best Buy Co., Inc.\",\n            \"count\": 1121,\n            \"countBackward\": 73,\n            \"pct\": 1.109055472560523,\n            \"iconUrl\": \"image.url/best-buy-co.,-inc.\"\n        },\n        {\n            \"name\": \"QUALCOMM, Inc.\",\n            \"count\": 1051,\n            \"countBackward\": 72,\n            \"pct\": 1.039801339572801,\n            \"iconUrl\": \"image.url/ecd5ad49f309601cb2c396894e166945\"\n        },\n        {\n            \"name\": \"Microsoft Corporation\",\n            \"count\": 989,\n            \"countBackward\": 594,\n            \"pct\": 0.9784619646408184,\n            \"iconUrl\": \"image.url/microsoft-corporation\"\n        },\n        {\n            \"name\": \"Freelancer\",\n            \"count\": 948,\n            \"countBackward\": 5308,\n            \"pct\": 0.9378988296051525,\n            \"iconUrl\": \"image.url/freelancer.png\"\n        },\n        {\n            \"name\": \"Google\",\n            \"count\": 761,\n            \"countBackward\": 1458,\n            \"pct\": 0.7528913600522374,\n            \"iconUrl\": \"image.url/google\"\n        },\n        {\n            \"name\": \"Starbucks Corporation\",\n            \"count\": 682,\n            \"countBackward\": 80,\n            \"pct\": 0.674733124251808,\n            \"iconUrl\": \"image.url/starbucks-corporation\"\n        },\n        {\n            \"name\": \"Cisco Systems, Inc.\",\n            \"count\": 537,\n            \"countBackward\": 158,\n            \"pct\": 0.5312781344915263,\n            \"iconUrl\": \"image.url/cisco-systems\"\n        },\n        {\n            \"name\": \"AT&T Inc.\",\n            \"count\": 429,\n            \"countBackward\": 115,\n            \"pct\": 0.4244289007390405,\n            \"iconUrl\": \"image.url/at&t-inc.\"\n        },\n        {\n            \"name\": \"Target Corporation\",\n            \"count\": 383,\n            \"countBackward\": 74,\n            \"pct\": 0.37891904191853737,\n            \"iconUrl\": \"image.url/target-corporation\"\n        },\n        {\n            \"name\": \"International Business Machines Corporation\",\n            \"count\": 360,\n            \"countBackward\": 165,\n            \"pct\": 0.3561641125082858,\n            \"iconUrl\": \"image.url/international-business-machines-corporation\"\n        },\n        {\n            \"name\": \"Tesla, Inc.\",\n            \"count\": 330,\n            \"countBackward\": 416,\n            \"pct\": 0.32648376979926197,\n            \"iconUrl\": \"image.url/tesla,-inc.\"\n        },\n        {\n            \"name\": \"Dell Technologies Inc.\",\n            \"count\": 329,\n            \"countBackward\": 125,\n            \"pct\": 0.3254944250422945,\n            \"iconUrl\": \"image.url/dell-technologies-inc.\"\n        },\n        {\n            \"name\": \"Texas Instruments Incorporated\",\n            \"count\": 317,\n            \"countBackward\": 10,\n            \"pct\": 0.31362228795868496,\n            \"iconUrl\": \"image.url/538b5c708f407970841d991e218cf276\"\n        },\n        {\n            \"name\": \"Facebook, Inc.\",\n            \"count\": 310,\n            \"countBackward\": 386,\n            \"pct\": 0.30669687465991274,\n            \"iconUrl\": \"image.url/meta-platforms,-inc.\"\n        },\n        {\n            \"name\": \"Oracle Corporation\",\n            \"count\": 309,\n            \"countBackward\": 124,\n            \"pct\": 0.3057075299029453,\n            \"iconUrl\": \"image.url/oracle-corporation\"\n        },\n        {\n            \"name\": \"Nike, Inc.\",\n            \"count\": 301,\n            \"countBackward\": 145,\n            \"pct\": 0.2977927718472056,\n            \"iconUrl\": \"image.url/9c2b30d4bd7dbaa3ff4107ac9028586d\"\n        },\n        {\n            \"name\": \"Infosys Ltd\",\n            \"count\": 297,\n            \"countBackward\": 68,\n            \"pct\": 0.29383539281933574,\n            \"iconUrl\": \"image.url/infosys-ltd\"\n        },\n        {\n            \"name\": \"Verizon Communications Inc.\",\n            \"count\": 281,\n            \"countBackward\": 76,\n            \"pct\": 0.2780058767078564,\n            \"iconUrl\": null\n        },\n        {\n            \"name\": \"Broadcom Inc.\",\n            \"count\": 277,\n            \"countBackward\": 20,\n            \"pct\": 0.27404849767998657,\n            \"iconUrl\": \"image.url/d916e2540e7f13fc801b409296f00e1b\"\n        },\n        {\n            \"name\": \"Yahoo!\",\n            \"count\": 252,\n            \"countBackward\": 26,\n            \"pct\": 0.24931487875580002,\n            \"iconUrl\": null\n        },\n        {\n            \"name\": \"Hewlett Packard Enterprise Company\",\n            \"count\": 250,\n            \"countBackward\": 57,\n            \"pct\": 0.2473361892418651,\n            \"iconUrl\": \"image.url/hewlett-packard-enterprise-company\"\n        },\n        {\n            \"name\": \"NVIDIA Corporation\",\n            \"count\": 249,\n            \"countBackward\": 150,\n            \"pct\": 0.24634684448489766,\n            \"iconUrl\": \"image.url/nvidia-corporation\"\n        },\n        {\n            \"name\": \"Advanced Micro Devices, Inc.\",\n            \"count\": 244,\n            \"countBackward\": 39,\n            \"pct\": 0.24140012070006037,\n            \"iconUrl\": \"image.url/5f1014a177213146a99fec691ba34765\"\n        },\n        {\n            \"name\": \"Accenture plc\",\n            \"count\": 219,\n            \"countBackward\": 181,\n            \"pct\": 0.21666650177587385,\n            \"iconUrl\": \"image.url/223e851d7e1482a4077210903ea147b9\"\n        },\n        {\n            \"name\": \"Deloitte Touche Tohmatsu Limited\",\n            \"count\": 213,\n            \"countBackward\": 112,\n            \"pct\": 0.2107304332340691,\n            \"iconUrl\": null\n        },\n        {\n            \"name\": \"The Walt Disney Company\",\n            \"count\": 213,\n            \"countBackward\": 92,\n            \"pct\": 0.2107304332340691,\n            \"iconUrl\": \"image.url/the-walt-disney-company\"\n        },\n        {\n            \"name\": \"Walmart Inc.\",\n            \"count\": 212,\n            \"countBackward\": 108,\n            \"pct\": 0.2097410884771016,\n            \"iconUrl\": \"image.url/walmart-inc.\"\n        },\n        {\n            \"name\": \"Gap\",\n            \"count\": 206,\n            \"countBackward\": 31,\n            \"pct\": 0.20380501993529687,\n            \"iconUrl\": \"image.url/gap\"\n        },\n        {\n            \"name\": \"T-Mobile US, Inc.\",\n            \"count\": 202,\n            \"countBackward\": 66,\n            \"pct\": 0.19984764090742702,\n            \"iconUrl\": \"image.url/deutsche-telekom-ag\"\n        },\n        {\n            \"name\": \"Uber Technologies Inc\",\n            \"count\": 197,\n            \"countBackward\": 107,\n            \"pct\": 0.1949009171225897,\n            \"iconUrl\": \"image.url/uber-technologies-inc\"\n        },\n        {\n            \"name\": \"Stanford University\",\n            \"count\": 196,\n            \"countBackward\": 86,\n            \"pct\": 0.19391157236562226,\n            \"iconUrl\": \"image.url/stanford-university\"\n        },\n        {\n            \"name\": \"eBay Inc.\",\n            \"count\": 192,\n            \"countBackward\": 66,\n            \"pct\": 0.1899541933377524,\n            \"iconUrl\": \"image.url/b16d407fc1a7e84a4ab70b4085c73d91\"\n        },\n        {\n            \"name\": \"Marvell Technology Group Ltd.\",\n            \"count\": 189,\n            \"countBackward\": 8,\n            \"pct\": 0.18698615906685,\n            \"iconUrl\": \"image.url/marvell-technology-group-ltd.\"\n        },\n        {\n            \"name\": \"Geek Squad\",\n            \"count\": 188,\n            \"countBackward\": 15,\n            \"pct\": 0.18599681430988255,\n            \"iconUrl\": \"image.url/best-buy-co.,-inc.\"\n        },\n        {\n            \"name\": \"Motorola Solutions, Inc.\",\n            \"count\": 181,\n            \"countBackward\": 12,\n            \"pct\": 0.17907140101111035,\n            \"iconUrl\": \"image.url/motorola-solutions,-inc.\"\n        },\n        {\n            \"name\": \"Samsung Electronics\",\n            \"count\": 179,\n            \"countBackward\": 83,\n            \"pct\": 0.17709271149717543,\n            \"iconUrl\": \"image.url/b768b41c47f64f447cbfb7544a0c28ce\"\n        },\n        {\n            \"name\": \"Volt Information Sciences, Inc.\",\n            \"count\": 176,\n            \"countBackward\": 8,\n            \"pct\": 0.17412467722627303,\n            \"iconUrl\": \"image.url/11913184644a64ffe81e436233a899cd\"\n        },\n        {\n            \"name\": \"Adobe Inc.\",\n            \"count\": 159,\n            \"countBackward\": 158,\n            \"pct\": 0.1573058163578262,\n            \"iconUrl\": \"image.url/adobe-inc.\"\n        },\n        {\n            \"name\": \"Dialog Semiconductor\",\n            \"count\": 152,\n            \"countBackward\": 5,\n            \"pct\": 0.150380403059054,\n            \"iconUrl\": null\n        },\n        {\n            \"name\": \"PayPal Holdings, Inc.\",\n            \"count\": 148,\n            \"countBackward\": 80,\n            \"pct\": 0.14642302403118415,\n            \"iconUrl\": \"image.url/paypal-holdings,-inc.\"\n        },\n        {\n            \"name\": \"Applied Materials, Inc.\",\n            \"count\": 140,\n            \"countBackward\": 42,\n            \"pct\": 0.13850826597544447,\n            \"iconUrl\": \"image.url/b2c7ca05911e61598e7d2afb6735744f\"\n        },\n        {\n            \"name\": \"Sprint Corporation\",\n            \"count\": 140,\n            \"countBackward\": 14,\n            \"pct\": 0.13850826597544447,\n            \"iconUrl\": \"image.url/9fc6789660b98c7e53ca18241b3abe0b\"\n        },\n        {\n            \"name\": \"Bank of America Corporation\",\n            \"count\": 138,\n            \"countBackward\": 70,\n            \"pct\": 0.13652957646150954,\n            \"iconUrl\": \"image.url/fdcfb87823fd5ccac5c2e9b4b80dd507\"\n        },\n        {\n            \"name\": \"Carnegie Mellon University\",\n            \"count\": 134,\n            \"countBackward\": 41,\n            \"pct\": 0.13257219743363968,\n            \"iconUrl\": null\n        },\n        {\n            \"name\": \"Nokia Corporation\",\n            \"count\": 134,\n            \"countBackward\": 11,\n            \"pct\": 0.13257219743363968,\n            \"iconUrl\": \"image.url/e1a9954b9485a565fa1f3ddd0c514aed\"\n        },\n        {\n            \"name\": \"PricewaterhouseCoopers Company\",\n            \"count\": 132,\n            \"countBackward\": 95,\n            \"pct\": 0.13059350791970478,\n            \"iconUrl\": \"image.url/pricewaterhousecoopers-company\"\n        },\n        {\n            \"name\": \"Adidas AG\",\n            \"count\": 127,\n            \"countBackward\": 79,\n            \"pct\": 0.1256467841348675,\n            \"iconUrl\": \"image.url/adidas-ag\"\n        },\n        {\n            \"name\": \"Wells Fargo & Company\",\n            \"count\": 125,\n            \"countBackward\": 87,\n            \"pct\": 0.12366809462093255,\n            \"iconUrl\": \"image.url/wells-fargo-&-company\"\n        }\n    ]\n}"}],"_postman_id":"88421c28-f0b7-4432-9db2-ed5be5e8bc49"},{"name":"Heat Map Area Endpoint ","event":[{"listen":"test","script":{"id":"5fea7026-d0f8-4a8e-9a9b-808772eb2b09","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()).to.have.property('geo');","pm.expect(pm.response.json()).to.have.property('data');","pm.expect(pm.response.json()['data'][0]).to.have.property('docCount');","pm.expect(pm.response.json()['data'][0]).to.have.property('lon');","pm.expect(pm.response.json()['data'][0]).to.have.property('lat');","pm.expect(pm.response.json()).to.have.property('min');","pm.expect(pm.response.json()).to.have.property('max');","pm.expect(pm.response.json()).to.have.property('count');","})"],"type":"text/javascript"}}],"id":"97e185ad-ba04-42a9-8ac4-9bed35663944","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"hotel\"\n            ],\n            \"parameterType\": \"fields\",\n            \"parameterKey\": \"experienceCurrent\"\n        },\n         {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n         {\n            \"parameterValue\": [\n                \"resort\"\n            ],\n            \"parameterType\": \"fields\",\n            \"parameterKey\": \"experienceCurrent\"\n        },\n         {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"NOT\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"NOT\"\n        },\n         {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"country\"\n        }\n    ],\n    \"topLeft\": {\n        \"lat\": 26.06722,\n        \"lon\": -85.27848\n    },\n    \"bottomRight\": {\n        \"lat\": 9.98030,\n        \"lon\":  -58.03239\n    }\n}"},"url":"//supplyData/heatMapData/:precision","description":"<p>This endpoint returns latitude/longitude coordinates and the number of prospects who live closest to these coordinates. The record is organized in descending order.</p>\n<p><strong>To use this function, enter lat/lon coordinates that correspond to the desired top-left and bottom-right corners of a heat map, in addition to at least 1 other token.</strong> </p>\n<p>You must add a whole number value (2-9) to the end of the path to account for precision: for the default view, enter 2. Changing the precision value does NOT change the total number of results. Greater precision equals a greater number of individual data points, to see more precisely where the prospects are in your chosen area of the heat map. Changing the level of precision will not affect the performance of your query.</p>\n<p>Here is a description of a <a href=\"#queries-description\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create them.</p>\n<p>Below is a sample query that will return the prospects with experience working in hotels and resorts that live in the Caribbean (excluding US territories) using a precision of 2:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"hotel\"\n            ],\n            \"parameterType\": \"fields\",\n            \"parameterKey\": \"experienceCurrent\"\n        },\n         {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n         {\n            \"parameterValue\": [\n                \"resort\"\n            ],\n            \"parameterType\": \"fields\",\n            \"parameterKey\": \"experienceCurrent\"\n        },\n         {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"NOT\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"NOT\"\n        },\n         {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"country\"\n        }\n    ],\n    \"topLeft\": {\n        \"lat\": 26.06722,\n        \"lon\": -85.27848\n    },\n    \"bottomRight\": {\n        \"lat\": 9.98030,\n        \"lon\":  -58.03239\n    }\n}\n</code></pre><p>Use the same <code>searchParameters</code> as usual, but be sure to <strong>add \"topLeft\" and \"bottomRight\" to represent the appropriate corners of the Heat Map.</strong></p>\n<p>Check out the results for this query by clicking the example on the right panel.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["supplyData","heatMapData",":precision"],"host":["/"],"query":[],"variable":[{"id":"9dd499a0-383c-4450-a233-f02b8d39f982","description":{"content":"<p>Precision (zoom level) [min: 2, max: 9] (Required)</p>\n","type":"text/plain"},"type":"string","value":"2","key":"precision"}]}},"response":[{"id":"30cd7fb5-920c-4a85-a5a5-04c0cd7fc8f4","name":"Hotel Employees in the Caribbean","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","type":"text","value":"{{token}}"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"hotel\"\n            ],\n            \"parameterType\": \"fields\",\n            \"parameterKey\": \"experienceCurrent\"\n        },\n         {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n         {\n            \"parameterValue\": [\n                \"resort\"\n            ],\n            \"parameterType\": \"fields\",\n            \"parameterKey\": \"experienceCurrent\"\n        },\n         {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"NOT\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"NOT\"\n        },\n         {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"country\"\n        }\n    ],\n    \"topLeft\": {\n        \"lat\": 26.06722,\n        \"lon\": -85.27848\n    },\n    \"bottomRight\": {\n        \"lat\": 9.98030,\n        \"lon\":  -58.03239\n    }\n}"},"url":{"raw":"//supplyData/heatMapData/:precision","host":["/"],"path":["supplyData","heatMapData",":precision"],"variable":[{"id":"9dd499a0-383c-4450-a233-f02b8d39f982","key":"precision","value":"2","type":"string","description":"Precision (zoom level) [min: 2, max: 9] (Required)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 17:07:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1999"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=03bLEdehIHivIQe10SVTwSt9ADksQ0EumjoZGC4fQyHVR90MoBQWUNVuhTEGk1fzSARhgl6BUuZ5W%2B2tYicvOLTOIC3JfCuMlDI5pF3W8Hr%2FuX0v5w5aSE0nfAM1N%2BIw%2FSzqa%2BDY5C28B4c%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7effad78dd7d208a-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"geo\": null,\n    \"min\": 18,\n    \"data\": [\n        {\n            \"docCount\": 1648,\n            \"lat\": 25.591723005393593,\n            \"lon\": -80.34757786077782\n        },\n        {\n            \"docCount\": 1249,\n            \"lat\": 18.797104328302584,\n            \"lon\": -72.75249358411995\n        },\n        {\n            \"docCount\": 708,\n            \"lat\": 18.139496691331615,\n            \"lon\": -65.24572202351766\n        },\n        {\n            \"docCount\": 405,\n            \"lat\": 10.598371064497364,\n            \"lon\": -64.49442522103588\n        },\n        {\n            \"docCount\": 351,\n            \"lat\": 10.561636342690923,\n            \"lon\": -72.61087348613029\n        },\n        {\n            \"docCount\": 331,\n            \"lat\": 13.566891261266708,\n            \"lon\": -60.654118548335894\n        },\n        {\n            \"docCount\": 226,\n            \"lat\": 25.01385460416086,\n            \"lon\": -77.32501554813862\n        },\n        {\n            \"docCount\": 165,\n            \"lat\": 12.36752189738168,\n            \"lon\": -70.01188656518406\n        },\n        {\n            \"docCount\": 134,\n            \"lat\": 10.07736134085693,\n            \"lon\": -84.04013607324337\n        },\n        {\n            \"docCount\": 106,\n            \"lat\": 19.689469683590293,\n            \"lon\": -81.17176244799751\n        },\n        {\n            \"docCount\": 18,\n            \"lat\": 12.493110704235733,\n            \"lon\": -83.88020201120526\n        }\n    ],\n    \"max\": 1648,\n    \"count\": 330715\n}"}],"_postman_id":"97e185ad-ba04-42a9-8ac4-9bed35663944"},{"name":"Radius Autocomplete Endpoint Supply","event":[{"listen":"test","script":{"id":"ae403a55-61d0-4c88-9275-2459f95cadf3","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"8ab48577-9fb0-4555-a5d8-823bbedd56fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"text\": \"washington\",\n    \"ignored\" : []\n}"},"url":"//autocomplete/location-range","description":"<h1 id=\"radius-autocomplete-endpoint-supply\">Radius Autocomplete Endpoint Supply</h1>\n<p>This endpoint returns the top 5 suggested results of a location matching the entered value. This endpoint is used to successfully resolve the \"radius\" token, since that token requires an exact match in the parameterValue field to return data. Copy the exact text of your desired result from this list, and paste it into the correct line of the parameterValue field in the radius token to search for prospects in that area.</p>\n<p>Below is a sample path that will return a list of 5 suggested locations matching Washington:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://apijavaanalytics.claro.hr/2.0.0/autocomplete/location-range\n\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["autocomplete","location-range"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"7e22fc8a-5822-407a-a30d-44b3fd00bdb7","name":"Radius Autocomplete Washington","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","type":"text","value":"{{token}}"}],"body":{"mode":"raw","raw":"{\n    \"text\": \"washington\",\n    \"ignored\" : []\n}"},"url":"//autocomplete/location-range"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 17:08:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1999"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=oB0SMz%2BdJDkrwypJlSt%2BC7T6KXtWIj7UMRTC2TCkLf72ko8uvO8gnW73uru0yB5CtZZTmkdaJaEU8Gx8pGmAIyKrMtm5uJsr7xjqLuT6up1KVQt2yi081HELWOs%2Bkr%2Ba88%2Fy9aVqeRRg4io%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7effaeb3c89c3920-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    \"Washington D.C., DC, USA\",\n    \"Washington, USA\",\n    \"Washington, D.C., USA\",\n    \"Washington, PA, USA\",\n    \"Washington, NC, USA\"\n]"}],"_postman_id":"8ab48577-9fb0-4555-a5d8-823bbedd56fc"},{"name":"Occupation Autocomplete Endpoint Supply","id":"210d0058-a7ac-45e4-8f4b-601620db933e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"text\": \"Software\"\n}","options":{"raw":{"language":"json"}}},"url":"//autocomplete/job-title-merged","description":"<h1 id=\"occupation-autocomplete-endpoint-supply\">Occupation Autocomplete Endpoint Supply</h1>\n<p>This endpoint returns a list of all related parent and child occupations. The response is a complete list of parent and child occupations we have associated with the string value supplied within the request body.</p>\n<p>Here is a description of a <a href=\"https://apidocs.claro.hr/#queries\">query</a> and the <a href=\"https://apidocs.claro.hr/#tokens\">tokens</a> you will need to use to create one.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["autocomplete","job-title-merged"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"b8c57487-e88b-48fa-9bda-2f511bca3612","name":"Occupation Autocomplete Endpoint Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"text\": \"Software\"\n}","options":{"raw":{"language":"json"}}},"url":"//autocomplete/job-title-merged"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Software Developers\",\n        \"children\": [\n            \"Software Tester\",\n            \"Principal Software Engineer\",\n            \"Software Writer\",\n            \"Senior Software Engineer\",\n            \"Software Quality Engineer\",\n            \"Windows Software Engineer\",\n            \"Java Software Engineer\",\n            \"Software Architect\",\n            \"Embedded Systems Software Developer\",\n            \"Software Design Engineer\",\n            \"Software Installer\",\n            \"Java Software Developer\",\n            \"Software Requirements Engineer\",\n            \"Software Engineering Supervisor\",\n            \"Drone Software Development Engineer\",\n            \"Full Stack Software Engineer\",\n            \"Senior Software Developer\",\n            \"Software Designer\",\n            \"Software Developer\",\n            \"Embedded Software Engineer\",\n            \"Software Engineer\",\n            \"Secure Software Assessor\"\n        ]\n    },\n    {\n        \"name\": \"Personal Service Managers, All Other\",\n        \"children\": [\n            \"Software Publisher\"\n        ]\n    },\n    {\n        \"name\": \"Web Developers\",\n        \"children\": [\n            \"Web Software Engineer\"\n        ]\n    },\n    {\n        \"name\": \"Computer Systems Analysts\",\n        \"children\": [\n            \"Software Consultant\",\n            \"Software Analyst\"\n        ]\n    },\n    {\n        \"name\": \"Computer Occupations, All Other\",\n        \"children\": [\n            \"Software Development Project Manager\",\n            \"Software Project Manager\",\n            \"Cybersecurity Software Developer\"\n        ]\n    },\n    {\n        \"name\": \"Database Architects\",\n        \"children\": []\n    },\n    {\n        \"name\": \"Database Administrators\",\n        \"children\": [\n            \"Database Software Technician\"\n        ]\n    },\n    {\n        \"name\": \"Web and Digital Interface Designers\",\n        \"children\": []\n    },\n    {\n        \"name\": \"Computer and Information Systems Managers\",\n        \"children\": [\n            \"Software Project Manager\",\n            \"Software Engineering Director\",\n            \"Software Development Director\",\n            \"Programming and Software Development Project Manager\"\n        ]\n    },\n    {\n        \"name\": \"Network and Computer Systems Administrators\",\n        \"children\": [\n            \"Software Manager\"\n        ]\n    },\n    {\n        \"name\": \"Training and Development Specialists\",\n        \"children\": [\n            \"Software Trainer\"\n        ]\n    },\n    {\n        \"name\": \"Computer User Support Specialists\",\n        \"children\": []\n    },\n    {\n        \"name\": \"Computer Programmers\",\n        \"children\": [\n            \"Software Programmer\"\n        ]\n    },\n    {\n        \"name\": \"Software Quality Assurance Analysts and Testers\",\n        \"children\": [\n            \"Software Tester\",\n            \"Software Systems Engineer\",\n            \"Software Quality Engineer\",\n            \"Software Installer\",\n            \"Software Application Support Specialist\",\n            \"Software Requirements Engineer\",\n            \"Secure Software Assessor\"\n        ]\n    }\n]"}],"_postman_id":"210d0058-a7ac-45e4-8f4b-601620db933e"},{"name":"Company Name Autocomplete Endpoint Supply","event":[{"listen":"test","script":{"id":"ae403a55-61d0-4c88-9275-2459f95cadf3","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"31f046d6-8b95-42f8-8331-61d6706a3f35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"text\": \"micro\",\n    \"ignored\" : []\n}"},"url":"//autocomplete/company","description":"<h1 id=\"company-autocomplete-endpoint-supply\">Company Autocomplete Endpoint Supply</h1>\n<p>This endpoint returns the top 10 suggested results of a company name matching the entered value. This endpoint is used to successfully resolve the \"companyCurrent\" token, since that token functions optimally with an exact company match in the parameterValue field. Copy the exact text of your desired company name result from this list, and paste it into the correct line of the parameterValue field in the companyCurrent token to search for prospects who work at that company. For many large companies, typing the beginning of the names of subsidiaries will show the larger entity in the list of 10 results, as shown below.</p>\n<p>Below is a sample path that will return a list of 10 suggested companies that start with the letters 'micro':</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://apijavaanalytics.claro.hr/2.0.0/autocomplete/company?text=micro\n\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["autocomplete","company"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"82246140-588e-4325-9845-6ec8f335fcac","name":"Company Name Autocomplete Micro","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","type":"text","value":"{{token}}"}],"body":{"mode":"raw","raw":"{\n    \"text\": \"micro\",\n    \"ignored\" : []\n}"},"url":"//autocomplete/company"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 17:10:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1998"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=g%2BlRGD8Lo15Fi67ly0yrqctwahlqkSAp4Ct86xsjZtJ7dgnb%2FCLbOdqBgEBs7v79dTY%2Bms0KVHFIDsTSfAIdFo%2FDudiazv%2BHVCpffAVWqmQbcIkj2s7ShndeMqak6m4QRnrkABJhJW4iZyU%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7effb1deac5f0780-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    \"Microsoft Corporation\",\n    \"Micron Technology, Inc.\",\n    \"Microchip Technology Incorporated\",\n    \"Micro Focus Intl PLC\",\n    \"Microland\",\n    \"MicroStrategy Incorporated\",\n    \"MICROCAMP\",\n    \"Microsemi Corporation (Microchip Technology Incorporated)\",\n    \"Microtel Inn & Suites by Wyndham Microtel Inns & Suites Franchising, Inc. (Wyndham Hotels & Resorts, Inc.)\",\n    \"MicroVention, Inc. (Terumo Corporation)\"\n]"}],"_postman_id":"31f046d6-8b95-42f8-8331-61d6706a3f35"}],"id":"463b5af9-ff02-4619-89d5-544d8f2733e5","description":"<p>The following endpoints allow you to work with analytical data about prospects. Each endpoint is a different way to view data, and they can be used to render relevant information in many visualization environments.</p>\n","_postman_id":"463b5af9-ff02-4619-89d5-544d8f2733e5","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}}},{"name":"Talent Demand Insights Endpoints","item":[{"name":"Data for Bar Charts","item":[{"name":"Location Chart Endpoint","event":[{"listen":"test","script":{"id":"429f48c9-ede6-4753-91be-753dddcef3bf","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentOfFirst');","});"],"type":"text/javascript"}}],"id":"5050900d-880e-4620-8928-c0ba1ed090da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"ZA\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"phlebotomy\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"phlebotomist\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"blood draw\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"medical assistant\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}"},"url":"//demandData/barData/location","description":"<p>This endpoint returns data divided into (up to) 50 bars and lists several values for each: total number of job listings, percent of the total, and percent of the largest result. The record is organized in descending numerical order. </p>\n<p>Here are descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>The location endpoint will display global data. To restrict your results by a specific country or region, be sure to include the appropriate <code>jobCountry</code> or <code>region</code> tokens in your query. If you want to find location information ONLY in the US, we recommend that you use the <a href=\"#CBSA-Chart-Endpoint\">CBSA Chart Endpoint</a>.</p>\n<p>Below is a sample query that will return listings for phlebotomist jobs in South Africa:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"ZA\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"phlebotomy\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"phlebotomist\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"blood draw\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"medical assistant\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["demandData","barData","location"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"fd17932f-489f-48f0-8bf3-14044a0da39c","name":"South Africa Phlebotomist Jobs","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"ZA\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"phlebotomy\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"phlebotomist\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"blood draw\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"medical assistant\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}"},"url":"//demandData/barData/location"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Feb 2021 18:36:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"0852e0ae2300003b7004015000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=KWvaeiuSRjt%2Fr%2BjZhenXifn9J%2BGye49%2BWlLtEOxf%2FodbQ07lEdsR58717d0Kjb%2FsyR8KgMaoP6YW%2FzG05XumaxUnrxYl7JIJVHFznJqK1cemRY0xERwNANtz\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"max_age\":604800,\"report_to\":\"cf-nel\"}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"62319d5d0d9c3b70-BOS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"Cape Town Western Cape\",\n        \"docCount\": 8,\n        \"percentOfTotal\": 14.285714285714286,\n        \"percentOfFirst\": 100.0\n    },\n    {\n        \"key\": \"Pretoria Gauteng\",\n        \"docCount\": 4,\n        \"percentOfTotal\": 7.142857142857143,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Cape Town Area South Africa\",\n        \"docCount\": 3,\n        \"percentOfTotal\": 5.357142857142857,\n        \"percentOfFirst\": 37.5\n    },\n    {\n        \"key\": \"Ballito Kwazulu-natal\",\n        \"docCount\": 2,\n        \"percentOfTotal\": 3.5714285714285716,\n        \"percentOfFirst\": 25.0\n    },\n    {\n        \"key\": \"Durban Area South Africa\",\n        \"docCount\": 2,\n        \"percentOfTotal\": 3.5714285714285716,\n        \"percentOfFirst\": 25.0\n    },\n    {\n        \"key\": \"East London Eastern Cape\",\n        \"docCount\": 2,\n        \"percentOfTotal\": 3.5714285714285716,\n        \"percentOfFirst\": 25.0\n    },\n    {\n        \"key\": \"Garden Route Western Cape\",\n        \"docCount\": 2,\n        \"percentOfTotal\": 3.5714285714285716,\n        \"percentOfFirst\": 25.0\n    },\n    {\n        \"key\": \"Johannesburg Gauteng\",\n        \"docCount\": 2,\n        \"percentOfTotal\": 3.5714285714285716,\n        \"percentOfFirst\": 25.0\n    },\n    {\n        \"key\": \"Polokwane Limpopo\",\n        \"docCount\": 2,\n        \"percentOfTotal\": 3.5714285714285716,\n        \"percentOfFirst\": 25.0\n    },\n    {\n        \"key\": \"Bloemfontein Free State\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Bloubergstrand Western Cape\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Brits North West\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Bryanston Gauteng\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Dainfern Gauteng\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Durban Kwazulu-natal\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Eldoraigne Gauteng\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Ermelo Mpumalanga\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Germiston Gauteng\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Hartbeespoort North West\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Johannesburg Area South Africa\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Kwadukuza Kwazulu-natal\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Langebaan Western Cape\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Limburg Limpopo\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Louis Trichardt Limpopo\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Mafikeng North West\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Midrand Gauteng\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Modderfontein Gauteng\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Newcastle Kwazulu-natal\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Nuweland Western Cape\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Port Elizabeth Area South Africa\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Port Elizabeth Eastern Cape\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Richards Bay Kwazulu-natal\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Rondebosch Western Cape\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Soweto Gauteng\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Thohoyandou Limpopo\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Vereeniging Gauteng\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Warmbaths Limpopo\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    },\n    {\n        \"key\": \"Worcester Western Cape\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 1.7857142857142858,\n        \"percentOfFirst\": 12.5\n    }\n]"}],"_postman_id":"5050900d-880e-4620-8928-c0ba1ed090da"},{"name":"Salary Chart Endpoint","event":[{"listen":"test","script":{"id":"49c8e9ef-d206-4232-a0ff-f5bd5d13dc35","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentOfFirst');","});"],"type":"text/javascript"}}],"id":"319ecf14-1a4d-4a9a-8039-f5fd9b161f92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"EMEA\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"region\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"java\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"python\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"php\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"c#\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n  ]\n}"},"url":"//demandData/barData/salary/:sliderValue","description":"<p>This endpoint returns data divided into (up to) 50 bars and lists two values for each: total number of job listings and percent of the total. The record is organized in ascending numerical order. <strong>You must enter an integer value 1-50 at the end of the path to resolve this endpoint.</strong> The \"key\" ranges in the record are based upon the sliderValue you choose. We recommend choosing 10 for your sliderValue.</p>\n<p>Here are the descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return the distribution of salaries among available java development jobs in Europe, the Middle East, and Africa:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"EMEA\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"region\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"java\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"python\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"php\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"c#\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n  ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["demandData","barData","salary",":sliderValue"],"host":["/"],"query":[],"variable":[{"id":"18765976-e79d-4bb6-90fd-ce4fa00e200c","type":"string","value":"10","key":"sliderValue"}]}},"response":[{"id":"1df31a62-8e91-4ede-ba98-07a548e41fa2","name":"Java Dev Jobs in EMEA","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","type":"text","value":"{{token}}"}],"body":{"mode":"raw","raw":"{\n  \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"EMEA\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"region\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"java\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"python\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"php\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"c#\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n  ]\n}"},"url":{"raw":"//demandData/barData/salary?sliderValue=10","host":["/"],"path":["demandData","barData","salary"],"query":[{"key":"sliderValue","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Feb 2021 19:38:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"083959d3ea0000ebf4d7b49000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"max_age\":604800,\"group\":\"cf-nel\",\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=yszaqzrv%2Bhzeh3QXOy2Ay8BS6bY56mMBFkQ4C5bhN80vaNa%2BVLN08BFmMfR99n1ZPyIqy5uZyQ0ojDD%2FI0wuABMImjtTaJ%2F%2Fm0Bi0ZfUsDfY9yxJPT2GtqVi\"}]}"},{"key":"NEL","value":"{\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6208c5997baaebf4-BOS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"21766.99 - 28315.72\",\n        \"docCount\": 8912,\n        \"percentOfTotal\": 16.964574648316297,\n        \"percentOfFirst\": null\n    },\n    {\n        \"key\": \"28315.72 - 34864.44\",\n        \"docCount\": 9025,\n        \"percentOfTotal\": 17.179677536024975,\n        \"percentOfFirst\": null\n    },\n    {\n        \"key\": \"34864.44 - 41413.17\",\n        \"docCount\": 10852,\n        \"percentOfTotal\": 20.657491481544934,\n        \"percentOfFirst\": null\n    },\n    {\n        \"key\": \"41413.17 - 47961.89\",\n        \"docCount\": 5460,\n        \"percentOfTotal\": 10.393466963622865,\n        \"percentOfFirst\": null\n    },\n    {\n        \"key\": \"47961.89 - 54510.62\",\n        \"docCount\": 4975,\n        \"percentOfTotal\": 9.470237755315706,\n        \"percentOfFirst\": null\n    },\n    {\n        \"key\": \"54510.62 - 61059.34\",\n        \"docCount\": 3227,\n        \"percentOfTotal\": 6.142805474654027,\n        \"percentOfFirst\": null\n    },\n    {\n        \"key\": \"61059.34 - 67608.06\",\n        \"docCount\": 3143,\n        \"percentOfTotal\": 5.982905982905983,\n        \"percentOfFirst\": null\n    },\n    {\n        \"key\": \"67608.06 - 74156.79\",\n        \"docCount\": 2133,\n        \"percentOfTotal\": 4.060304951173548,\n        \"percentOfFirst\": null\n    },\n    {\n        \"key\": \"74156.79 - 80705.51\",\n        \"docCount\": 1893,\n        \"percentOfTotal\": 3.6034492604648505,\n        \"percentOfFirst\": null\n    },\n    {\n        \"key\": \"80705.51 - 87254.23\",\n        \"docCount\": 2913,\n        \"percentOfTotal\": 5.5450859459768145,\n        \"percentOfFirst\": null\n    }\n]"}],"_postman_id":"319ecf14-1a4d-4a9a-8039-f5fd9b161f92"},{"name":"Median Salary Trend Chart Endpoint","event":[{"listen":"test","script":{"id":"49c8e9ef-d206-4232-a0ff-f5bd5d13dc35","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","// pm.test(\"Tha data is of correct format\", function () {","//     if(pm.response.json().have('monthly')){","//     pm.expect(pm.response.json()['monthly'][0]).to.have.property('key');","//     pm.expect(pm.response.json()['monthly'][0]).to.have.property('docCount');","//     pm.expect(pm.response.json()['monthly'][0]).to.have.property('median');","//     pm.expect(pm.response.json()['monthly'][0]).to.have.property('allDocCount');","","//     pm.expect(pm.response.json()['monthly'][0]).to.have.property('minDocCount');","//     }","// });"],"type":"text/javascript","packages":{}}}],"id":"8aa22d2a-e4c3-4338-8f27-bb1795119868","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"searchParameters\": [\n                    {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"jobPosition\",\n                                \"parameterValue\": [\n                                    \"Phlebotomist\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"AND\",\n                                \"parameterValue\": [\n                                    \"AND\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"(\",\n                                \"parameterValue\": [\n                                    \"(\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"jobCountry\",\n                                \"parameterValue\": [\n                                    \"US\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"AND\",\n                                \"parameterValue\": [\n                                    \"AND\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"locationRange\",\n                                \"parameterValue\": [\n                                    \"California, USA\",\n                                    \"400\",\n                                    \"mi\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"AND\",\n                                \"parameterValue\": [\n                                    \"AND\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"NOT\",\n                                \"parameterValue\": [\n                                    \"NOT\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"(\",\n                                \"parameterValue\": [\n                                    \"(\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"lucene\",\n                                \"parameterValue\": [\n                                    \"nevada\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"OR\",\n                                \"parameterValue\": [\n                                    \"OR\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"lucene\",\n                                \"parameterValue\": [\n                                    \"oregon\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"OR\",\n                                \"parameterValue\": [\n                                    \"OR\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"lucene\",\n                                \"parameterValue\": [\n                                    \"arizona\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"OR\",\n                                \"parameterValue\": [\n                                    \"OR\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"lucene\",\n                                \"parameterValue\": [\n                                    \"utah\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \")\",\n                                \"parameterValue\": [\n                                    \")\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \")\",\n                                \"parameterValue\": [\n                                    \")\"\n                                ]\n                            }\n  ]\n}"},"url":"//demandData/barData/medianSalary","description":"<p>This endpoint returns data divided into (up to) 12 bars and lists three important values for each: number of job listings with salary info (docCount), Median Salary value for a given month, and total number of job listings (allDocCount). The record is organized in ascending order, by month for the past 1 year.</p>\n<p>Here are the descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return the distribution of salaries among available phlebotomist jobs in California:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"searchParameters\": [\n                    {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"jobPosition\",\n                                \"parameterValue\": [\n                                    \"Phlebotomist\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"AND\",\n                                \"parameterValue\": [\n                                    \"AND\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"(\",\n                                \"parameterValue\": [\n                                    \"(\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"jobCountry\",\n                                \"parameterValue\": [\n                                    \"US\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"AND\",\n                                \"parameterValue\": [\n                                    \"AND\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"locationRange\",\n                                \"parameterValue\": [\n                                    \"California, USA\",\n                                    \"400\",\n                                    \"mi\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"AND\",\n                                \"parameterValue\": [\n                                    \"AND\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"NOT\",\n                                \"parameterValue\": [\n                                    \"NOT\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"(\",\n                                \"parameterValue\": [\n                                    \"(\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"lucene\",\n                                \"parameterValue\": [\n                                    \"nevada\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"OR\",\n                                \"parameterValue\": [\n                                    \"OR\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"lucene\",\n                                \"parameterValue\": [\n                                    \"oregon\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"OR\",\n                                \"parameterValue\": [\n                                    \"OR\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"lucene\",\n                                \"parameterValue\": [\n                                    \"arizona\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"OR\",\n                                \"parameterValue\": [\n                                    \"OR\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"lucene\",\n                                \"parameterValue\": [\n                                    \"utah\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \")\",\n                                \"parameterValue\": [\n                                    \")\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \")\",\n                                \"parameterValue\": [\n                                    \")\"\n                                ]\n                            }\n  ]\n}\n\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["demandData","barData","medianSalary"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"368264f3-dac6-477e-a423-b37041a36194","name":"Phlebotomists in California","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","type":"text","value":"{{token}}"}],"body":{"mode":"raw","raw":"{\n  \"searchParameters\": [\n                    {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"jobPosition\",\n                                \"parameterValue\": [\n                                    \"Phlebotomist\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"AND\",\n                                \"parameterValue\": [\n                                    \"AND\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"(\",\n                                \"parameterValue\": [\n                                    \"(\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"jobCountry\",\n                                \"parameterValue\": [\n                                    \"US\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"AND\",\n                                \"parameterValue\": [\n                                    \"AND\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"locationRange\",\n                                \"parameterValue\": [\n                                    \"California, USA\",\n                                    \"400\",\n                                    \"mi\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"AND\",\n                                \"parameterValue\": [\n                                    \"AND\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"NOT\",\n                                \"parameterValue\": [\n                                    \"NOT\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"(\",\n                                \"parameterValue\": [\n                                    \"(\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"lucene\",\n                                \"parameterValue\": [\n                                    \"nevada\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"OR\",\n                                \"parameterValue\": [\n                                    \"OR\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"lucene\",\n                                \"parameterValue\": [\n                                    \"oregon\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"OR\",\n                                \"parameterValue\": [\n                                    \"OR\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"lucene\",\n                                \"parameterValue\": [\n                                    \"arizona\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \"OR\",\n                                \"parameterValue\": [\n                                    \"OR\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"text\",\n                                \"parameterKey\": \"lucene\",\n                                \"parameterValue\": [\n                                    \"utah\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \")\",\n                                \"parameterValue\": [\n                                    \")\"\n                                ]\n                            },\n                            {\n                                \"parameterType\": \"operator\",\n                                \"parameterKey\": \")\",\n                                \"parameterValue\": [\n                                    \")\"\n                                ]\n                            }\n  ]\n}"},"url":"//demandData/barData/medianSalary"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Feb 2021 19:38:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"083959d3ea0000ebf4d7b49000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"max_age\":604800,\"group\":\"cf-nel\",\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=yszaqzrv%2Bhzeh3QXOy2Ay8BS6bY56mMBFkQ4C5bhN80vaNa%2BVLN08BFmMfR99n1ZPyIqy5uZyQ0ojDD%2FI0wuABMImjtTaJ%2F%2Fm0Bi0ZfUsDfY9yxJPT2GtqVi\"}]}"},{"key":"NEL","value":"{\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6208c5997baaebf4-BOS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"2022-09\",\n        \"docCount\": 282,\n        \"median\": 41600.0,\n        \"allDocCount\": 742,\n        \"minDocCount\": 50\n    },\n    {\n        \"key\": \"2022-10\",\n        \"docCount\": 255,\n        \"median\": 42307.2,\n        \"allDocCount\": 696,\n        \"minDocCount\": 50\n    },\n    {\n        \"key\": \"2022-11\",\n        \"docCount\": 140,\n        \"median\": 41600.0,\n        \"allDocCount\": 420,\n        \"minDocCount\": 50\n    },\n    {\n        \"key\": \"2022-12\",\n        \"docCount\": 153,\n        \"median\": 45760.0,\n        \"allDocCount\": 512,\n        \"minDocCount\": 50\n    },\n    {\n        \"key\": \"2023-01\",\n        \"docCount\": 364,\n        \"median\": 46138.61111111111,\n        \"allDocCount\": 573,\n        \"minDocCount\": 50\n    },\n    {\n        \"key\": \"2023-02\",\n        \"docCount\": 462,\n        \"median\": 47840.0,\n        \"allDocCount\": 697,\n        \"minDocCount\": 50\n    },\n    {\n        \"key\": \"2023-03\",\n        \"docCount\": 298,\n        \"median\": 49837.0,\n        \"allDocCount\": 391,\n        \"minDocCount\": 50\n    },\n    {\n        \"key\": \"2023-04\",\n        \"docCount\": 239,\n        \"median\": 47840.0,\n        \"allDocCount\": 367,\n        \"minDocCount\": 50\n    },\n    {\n        \"key\": \"2023-05\",\n        \"docCount\": 170,\n        \"median\": 45760.0,\n        \"allDocCount\": 294,\n        \"minDocCount\": 44\n    },\n    {\n        \"key\": \"2023-06\",\n        \"docCount\": 264,\n        \"median\": 52000.0,\n        \"allDocCount\": 376,\n        \"minDocCount\": 50\n    },\n    {\n        \"key\": \"2023-07\",\n        \"docCount\": 125,\n        \"median\": 52000.0,\n        \"allDocCount\": 326,\n        \"minDocCount\": 48\n    },\n    {\n        \"key\": \"2023-08\",\n        \"docCount\": 183,\n        \"median\": 45760.0,\n        \"allDocCount\": 281,\n        \"minDocCount\": 42\n    }\n]"}],"_postman_id":"8aa22d2a-e4c3-4338-8f27-bb1795119868"},{"name":"CBSA Chart Endpoint","event":[{"listen":"test","script":{"id":"7e8f7065-a65c-4018-b934-770347ad81a2","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentOfFirst');","});"],"type":"text/javascript"}}],"id":"f68c095c-9555-457b-a511-ad4aba182cad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n            \"parameterValue\": [\n                \"50000\",\n                \"1000000\"\n            ],\n            \"parameterType\": \"range\",\n            \"parameterKey\": \"jobSalary\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"NOT\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"NOT\"\n    },\n    {\n      \"parameterValue\": [\n        \"/hr\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobPosition\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"human resources\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobPosition\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"hr\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobPosition\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}"},"url":"//demandData/barData/cbsa","description":"<p>This endpoint returns data divided into (up to) 50 bars and lists several values for each: total number of job listings, percent of the total, and percent of the largest result. The record is organized in descending numerical order. </p>\n<p>Here are descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>CBSA data is restricted to US only. If you want to find location data from outside the US, you must use the <a href=\"#Location-Chart-Endpoint\">Location Chart Endpoint</a>.</p>\n<p>Below is a sample query that will return listings for human resource jobs in the US with an advertised salary over $50k:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n            \"parameterValue\": [\n                \"50000\",\n                \"1000000\"\n            ],\n            \"parameterType\": \"range\",\n            \"parameterKey\": \"jobSalary\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"NOT\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"NOT\"\n    },\n    {\n      \"parameterValue\": [\n        \"/hr\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobPosition\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"human resources\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobPosition\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"hr\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobPosition\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["demandData","barData","cbsa"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"48c00262-43cc-4e7e-b0fb-d4a90abf09dc","name":"HR jobs in the US over $50k","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n            \"parameterValue\": [\n                \"50000\",\n                \"1000000\"\n            ],\n            \"parameterType\": \"range\",\n            \"parameterKey\": \"jobSalary\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"NOT\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"NOT\"\n    },\n    {\n      \"parameterValue\": [\n        \"/hr\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobPosition\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"human resources\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobPosition\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"hr\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobPosition\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}"},"url":"//demandData/barData/cbsa"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Feb 2021 20:20:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"08397fc7eb0000ebfc15a94000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"max_age\":604800,\"group\":\"cf-nel\",\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=8njdUbVipSqpljPJngUVVd2%2Fq9UeIx4HGJeJ1pNAbuNfsMVPpsIZFK5JkhwmUYQk8lSsMEVguW8STZUoJLO4MQg%2B1XeaBxh5IFYeTOd8Xu6f3VXiaibchd1H\"}]}"},{"key":"NEL","value":"{\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"620902531bd5ebfc-BOS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"New York-Newark-Jersey City, NY-NJ-PA\",\n        \"docCount\": 315,\n        \"percentOfTotal\": 14.900662251655628,\n        \"percentOfFirst\": 100.0\n    },\n    {\n        \"key\": \"Los Angeles-Long Beach-Anaheim, CA\",\n        \"docCount\": 197,\n        \"percentOfTotal\": 9.318826868495742,\n        \"percentOfFirst\": 62.53968253968254\n    },\n    {\n        \"key\": \"San Francisco-Oakland-Hayward, CA\",\n        \"docCount\": 87,\n        \"percentOfTotal\": 4.115421002838222,\n        \"percentOfFirst\": 27.61904761904762\n    },\n    {\n        \"key\": \"Chicago-Naperville-Elgin, IL-IN-WI\",\n        \"docCount\": 52,\n        \"percentOfTotal\": 2.4597918637653735,\n        \"percentOfFirst\": 16.50793650793651\n    },\n    {\n        \"key\": \"Washington-Arlington-Alexandria, DC-VA-MD-WV\",\n        \"docCount\": 45,\n        \"percentOfTotal\": 2.128666035950804,\n        \"percentOfFirst\": 14.285714285714286\n    },\n    {\n        \"key\": \"Baltimore-Columbia-Towson, MD\",\n        \"docCount\": 39,\n        \"percentOfTotal\": 1.8448438978240302,\n        \"percentOfFirst\": 12.380952380952381\n    },\n    {\n        \"key\": \"San Diego-Carlsbad, CA\",\n        \"docCount\": 35,\n        \"percentOfTotal\": 1.6556291390728477,\n        \"percentOfFirst\": 11.11111111111111\n    },\n    {\n        \"key\": \"Seattle-Tacoma-Bellevue, WA\",\n        \"docCount\": 32,\n        \"percentOfTotal\": 1.5137180700094608,\n        \"percentOfFirst\": 10.158730158730158\n    },\n    {\n        \"key\": \"Boston-Cambridge-Newton, MA-NH\",\n        \"docCount\": 30,\n        \"percentOfTotal\": 1.4191106906338695,\n        \"percentOfFirst\": 9.523809523809524\n    },\n    {\n        \"key\": \"Minneapolis-St. Paul-Bloomington, MN-WI\",\n        \"docCount\": 30,\n        \"percentOfTotal\": 1.4191106906338695,\n        \"percentOfFirst\": 9.523809523809524\n    },\n    {\n        \"key\": \"Phoenix-Mesa-Scottsdale, AZ\",\n        \"docCount\": 30,\n        \"percentOfTotal\": 1.4191106906338695,\n        \"percentOfFirst\": 9.523809523809524\n    },\n    {\n        \"key\": \"Denver-Aurora-Lakewood, CO\",\n        \"docCount\": 29,\n        \"percentOfTotal\": 1.3718070009460739,\n        \"percentOfFirst\": 9.206349206349206\n    },\n    {\n        \"key\": \"Sacramento--Roseville--Arden-Arcade, CA\",\n        \"docCount\": 27,\n        \"percentOfTotal\": 1.2771996215704824,\n        \"percentOfFirst\": 8.571428571428571\n    },\n    {\n        \"key\": \"Philadelphia-Camden-Wilmington, PA-NJ-DE-MD\",\n        \"docCount\": 26,\n        \"percentOfTotal\": 1.2298959318826868,\n        \"percentOfFirst\": 8.253968253968255\n    },\n    {\n        \"key\": \"Detroit-Warren-Dearborn, MI\",\n        \"docCount\": 24,\n        \"percentOfTotal\": 1.1352885525070955,\n        \"percentOfFirst\": 7.619047619047619\n    },\n    {\n        \"key\": \"Miami-Fort Lauderdale-West Palm Beach, FL\",\n        \"docCount\": 24,\n        \"percentOfTotal\": 1.1352885525070955,\n        \"percentOfFirst\": 7.619047619047619\n    },\n    {\n        \"key\": \"Portland-Vancouver-Hillsboro, OR-WA\",\n        \"docCount\": 24,\n        \"percentOfTotal\": 1.1352885525070955,\n        \"percentOfFirst\": 7.619047619047619\n    },\n    {\n        \"key\": \"Atlanta-Sandy Springs-Roswell, GA\",\n        \"docCount\": 23,\n        \"percentOfTotal\": 1.0879848628192998,\n        \"percentOfFirst\": 7.301587301587301\n    },\n    {\n        \"key\": \"Dallas-Fort Worth-Arlington, TX\",\n        \"docCount\": 18,\n        \"percentOfTotal\": 0.8514664143803217,\n        \"percentOfFirst\": 5.714285714285714\n    },\n    {\n        \"key\": \"Houston-The Woodlands-Sugar Land, TX\",\n        \"docCount\": 18,\n        \"percentOfTotal\": 0.8514664143803217,\n        \"percentOfFirst\": 5.714285714285714\n    },\n    {\n        \"key\": \"Charlotte-Concord-Gastonia, NC-SC\",\n        \"docCount\": 16,\n        \"percentOfTotal\": 0.7568590350047304,\n        \"percentOfFirst\": 5.079365079365079\n    },\n    {\n        \"key\": \"St. Louis, MO-IL\",\n        \"docCount\": 16,\n        \"percentOfTotal\": 0.7568590350047304,\n        \"percentOfFirst\": 5.079365079365079\n    },\n    {\n        \"key\": \"Austin-Round Rock, TX\",\n        \"docCount\": 15,\n        \"percentOfTotal\": 0.7095553453169348,\n        \"percentOfFirst\": 4.761904761904762\n    },\n    {\n        \"key\": \"Las Vegas-Henderson-Paradise, NV\",\n        \"docCount\": 15,\n        \"percentOfTotal\": 0.7095553453169348,\n        \"percentOfFirst\": 4.761904761904762\n    },\n    {\n        \"key\": \"Bakersfield, CA\",\n        \"docCount\": 14,\n        \"percentOfTotal\": 0.6622516556291391,\n        \"percentOfFirst\": 4.444444444444445\n    },\n    {\n        \"key\": \"Urban Honolulu, HI\",\n        \"docCount\": 14,\n        \"percentOfTotal\": 0.6622516556291391,\n        \"percentOfFirst\": 4.444444444444445\n    },\n    {\n        \"key\": \"Riverside-San Bernardino-Ontario, CA\",\n        \"docCount\": 13,\n        \"percentOfTotal\": 0.6149479659413434,\n        \"percentOfFirst\": 4.126984126984127\n    },\n    {\n        \"key\": \"Cleveland-Elyria, OH\",\n        \"docCount\": 12,\n        \"percentOfTotal\": 0.5676442762535477,\n        \"percentOfFirst\": 3.8095238095238093\n    },\n    {\n        \"key\": \"Columbus, OH\",\n        \"docCount\": 11,\n        \"percentOfTotal\": 0.5203405865657521,\n        \"percentOfFirst\": 3.492063492063492\n    },\n    {\n        \"key\": \"Stockton-Lodi, CA\",\n        \"docCount\": 11,\n        \"percentOfTotal\": 0.5203405865657521,\n        \"percentOfFirst\": 3.492063492063492\n    },\n    {\n        \"key\": \"Virginia Beach-Norfolk-Newport News, VA-NC\",\n        \"docCount\": 11,\n        \"percentOfTotal\": 0.5203405865657521,\n        \"percentOfFirst\": 3.492063492063492\n    },\n    {\n        \"key\": \"Albany-Schenectady-Troy, NY\",\n        \"docCount\": 10,\n        \"percentOfTotal\": 0.47303689687795647,\n        \"percentOfFirst\": 3.1746031746031744\n    },\n    {\n        \"key\": \"Hartford-West Hartford-East Hartford, CT\",\n        \"docCount\": 10,\n        \"percentOfTotal\": 0.47303689687795647,\n        \"percentOfFirst\": 3.1746031746031744\n    },\n    {\n        \"key\": \"Pittsburgh, PA\",\n        \"docCount\": 10,\n        \"percentOfTotal\": 0.47303689687795647,\n        \"percentOfFirst\": 3.1746031746031744\n    },\n    {\n        \"key\": \"San Jose-Sunnyvale-Santa Clara, CA\",\n        \"docCount\": 10,\n        \"percentOfTotal\": 0.47303689687795647,\n        \"percentOfFirst\": 3.1746031746031744\n    },\n    {\n        \"key\": \"Kansas City, MO-KS\",\n        \"docCount\": 9,\n        \"percentOfTotal\": 0.42573320719016083,\n        \"percentOfFirst\": 2.857142857142857\n    },\n    {\n        \"key\": \"Providence-Warwick, RI-MA\",\n        \"docCount\": 9,\n        \"percentOfTotal\": 0.42573320719016083,\n        \"percentOfFirst\": 2.857142857142857\n    },\n    {\n        \"key\": \"San Antonio-New Braunfels, TX\",\n        \"docCount\": 9,\n        \"percentOfTotal\": 0.42573320719016083,\n        \"percentOfFirst\": 2.857142857142857\n    },\n    {\n        \"key\": \"Eugene, OR\",\n        \"docCount\": 8,\n        \"percentOfTotal\": 0.3784295175023652,\n        \"percentOfFirst\": 2.5396825396825395\n    },\n    {\n        \"key\": \"Grand Rapids-Wyoming, MI\",\n        \"docCount\": 8,\n        \"percentOfTotal\": 0.3784295175023652,\n        \"percentOfFirst\": 2.5396825396825395\n    },\n    {\n        \"key\": \"Nashville-Davidson--Murfreesboro--Franklin, TN\",\n        \"docCount\": 8,\n        \"percentOfTotal\": 0.3784295175023652,\n        \"percentOfFirst\": 2.5396825396825395\n    },\n    {\n        \"key\": \"Orlando-Kissimmee-Sanford, FL\",\n        \"docCount\": 8,\n        \"percentOfTotal\": 0.3784295175023652,\n        \"percentOfFirst\": 2.5396825396825395\n    },\n    {\n        \"key\": \"Wichita, KS\",\n        \"docCount\": 8,\n        \"percentOfTotal\": 0.3784295175023652,\n        \"percentOfFirst\": 2.5396825396825395\n    },\n    {\n        \"key\": \"Blacksburg-Christiansburg-Radford, VA\",\n        \"docCount\": 7,\n        \"percentOfTotal\": 0.33112582781456956,\n        \"percentOfFirst\": 2.2222222222222223\n    },\n    {\n        \"key\": \"Bridgeport-Stamford-Norwalk, CT\",\n        \"docCount\": 7,\n        \"percentOfTotal\": 0.33112582781456956,\n        \"percentOfFirst\": 2.2222222222222223\n    },\n    {\n        \"key\": \"Fresno, CA\",\n        \"docCount\": 7,\n        \"percentOfTotal\": 0.33112582781456956,\n        \"percentOfFirst\": 2.2222222222222223\n    },\n    {\n        \"key\": \"Louisville/Jefferson County, KY-IN\",\n        \"docCount\": 7,\n        \"percentOfTotal\": 0.33112582781456956,\n        \"percentOfFirst\": 2.2222222222222223\n    },\n    {\n        \"key\": \"Milwaukee-Waukesha-West Allis, WI\",\n        \"docCount\": 7,\n        \"percentOfTotal\": 0.33112582781456956,\n        \"percentOfFirst\": 2.2222222222222223\n    },\n    {\n        \"key\": \"Rochester, NY\",\n        \"docCount\": 7,\n        \"percentOfTotal\": 0.33112582781456956,\n        \"percentOfFirst\": 2.2222222222222223\n    },\n    {\n        \"key\": \"Santa Cruz-Watsonville, CA\",\n        \"docCount\": 7,\n        \"percentOfTotal\": 0.33112582781456956,\n        \"percentOfFirst\": 2.2222222222222223\n    }\n]"}],"_postman_id":"f68c095c-9555-457b-a511-ad4aba182cad"},{"name":"Company Chart Endpoint","event":[{"listen":"test","script":{"id":"6e8a53ec-fc17-416b-8998-714cc5b643dd","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentOfFirst');","});"],"type":"text/javascript"}}],"id":"b3b6c7a9-cb0e-4bad-a9fd-aac568a67dc5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"GB\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n{\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n{\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n{\n            \"parameterValue\": [\n                \"data science\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"data scientist\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"data analyst\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"data analytics\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n{\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}"},"url":"//demandData/barData/company","description":"<p>This endpoint returns data divided into (up to) 50 bars and lists several values for each: total number of job listings, percent of the total, and percent of the largest result. The record is organized in descending numerical order. </p>\n<p>Here are descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return job listings for data scientists in the United Kingdom, sorted by company:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"GB\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n{\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n{\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n{\n            \"parameterValue\": [\n                \"data science\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"data scientist\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"data analyst\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"data analytics\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n{\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["demandData","barData","company"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"16eebffc-5826-4b89-8913-a214ef1929ac","name":"Data Scientist Jobs GB","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"GB\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n{\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n{\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n{\n            \"parameterValue\": [\n                \"data science\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"data scientist\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"data analyst\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"data analytics\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n{\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}"},"url":"//demandData/barData/company"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Feb 2021 05:31:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"0845c513c300003b8e84306000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=ADdSweJGItCjxt9F3YyzJy9XVavZr2No6P2nH41Jwb2UA%2F3TCB7d%2FyRP8PJrtDysyNOaD6HCmeXrOYqOiYE%2Fab%2BcMBxkBw%2BrWY2uKy%2BexZygUj1%2Bt1A%2BLcT9\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"621ca46609423b8e-BOS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"Nigel Frank International\",\n        \"docCount\": 177,\n        \"percentOfTotal\": 11.411992263056092,\n        \"percentOfFirst\": 100.0\n    },\n    {\n        \"key\": \"Harnham\",\n        \"docCount\": 29,\n        \"percentOfTotal\": 1.8697614442295294,\n        \"percentOfFirst\": 16.384180790960453\n    },\n    {\n        \"key\": \"Michael Page\",\n        \"docCount\": 26,\n        \"percentOfTotal\": 1.6763378465506125,\n        \"percentOfFirst\": 14.689265536723164\n    },\n    {\n        \"key\": \"Mbn Solutions\",\n        \"docCount\": 17,\n        \"percentOfTotal\": 1.0960670535138621,\n        \"percentOfFirst\": 9.6045197740113\n    },\n    {\n        \"key\": \"The Adecco Group AG\",\n        \"docCount\": 16,\n        \"percentOfTotal\": 1.0315925209542232,\n        \"percentOfFirst\": 9.03954802259887\n    },\n    {\n        \"key\": \"Qa Apprenticeships\",\n        \"docCount\": 15,\n        \"percentOfTotal\": 0.9671179883945842,\n        \"percentOfFirst\": 8.474576271186441\n    },\n    {\n        \"key\": \"Elite Recruitment Group\",\n        \"docCount\": 10,\n        \"percentOfTotal\": 0.6447453255963894,\n        \"percentOfFirst\": 5.649717514124294\n    },\n    {\n        \"key\": \"Mandeville Recruitment Group\",\n        \"docCount\": 10,\n        \"percentOfTotal\": 0.6447453255963894,\n        \"percentOfFirst\": 5.649717514124294\n    },\n    {\n        \"key\": \"Sure It\",\n        \"docCount\": 9,\n        \"percentOfTotal\": 0.5802707930367504,\n        \"percentOfFirst\": 5.084745762711864\n    },\n    {\n        \"key\": \"JPMorgan Chase Bank NA\",\n        \"docCount\": 8,\n        \"percentOfTotal\": 0.5157962604771116,\n        \"percentOfFirst\": 4.519774011299435\n    },\n    {\n        \"key\": \"Mars, Incorporated\",\n        \"docCount\": 8,\n        \"percentOfTotal\": 0.5157962604771116,\n        \"percentOfFirst\": 4.519774011299435\n    },\n    {\n        \"key\": \"Mbn Recruitment Solutions\",\n        \"docCount\": 8,\n        \"percentOfTotal\": 0.5157962604771116,\n        \"percentOfFirst\": 4.519774011299435\n    },\n    {\n        \"key\": \"Urban Empire Recruitment\",\n        \"docCount\": 8,\n        \"percentOfTotal\": 0.5157962604771116,\n        \"percentOfFirst\": 4.519774011299435\n    },\n    {\n        \"key\": \"Ernst & Young Global Limited\",\n        \"docCount\": 7,\n        \"percentOfTotal\": 0.4513217279174726,\n        \"percentOfFirst\": 3.9548022598870056\n    },\n    {\n        \"key\": \"Liverpool School Of Tropical Medicine\",\n        \"docCount\": 7,\n        \"percentOfTotal\": 0.4513217279174726,\n        \"percentOfFirst\": 3.9548022598870056\n    },\n    {\n        \"key\": \"Robert Walters Group\",\n        \"docCount\": 7,\n        \"percentOfTotal\": 0.4513217279174726,\n        \"percentOfFirst\": 3.9548022598870056\n    },\n    {\n        \"key\": \"Stantec Inc\",\n        \"docCount\": 7,\n        \"percentOfTotal\": 0.4513217279174726,\n        \"percentOfFirst\": 3.9548022598870056\n    },\n    {\n        \"key\": \"Xcede\",\n        \"docCount\": 7,\n        \"percentOfTotal\": 0.4513217279174726,\n        \"percentOfFirst\": 3.9548022598870056\n    },\n    {\n        \"key\": \"Bangura Solutions\",\n        \"docCount\": 6,\n        \"percentOfTotal\": 0.38684719535783363,\n        \"percentOfFirst\": 3.389830508474576\n    },\n    {\n        \"key\": \"Castlefield Recruitment\",\n        \"docCount\": 6,\n        \"percentOfTotal\": 0.38684719535783363,\n        \"percentOfFirst\": 3.389830508474576\n    },\n    {\n        \"key\": \"GCS Recruitment Specialists\",\n        \"docCount\": 6,\n        \"percentOfTotal\": 0.38684719535783363,\n        \"percentOfFirst\": 3.389830508474576\n    },\n    {\n        \"key\": \"Monzo Bank Ltd\",\n        \"docCount\": 6,\n        \"percentOfTotal\": 0.38684719535783363,\n        \"percentOfFirst\": 3.389830508474576\n    },\n    {\n        \"key\": \"Pertemps Network Group Limited\",\n        \"docCount\": 6,\n        \"percentOfTotal\": 0.38684719535783363,\n        \"percentOfFirst\": 3.389830508474576\n    },\n    {\n        \"key\": \"Sanderson Recruitment Plc\",\n        \"docCount\": 6,\n        \"percentOfTotal\": 0.38684719535783363,\n        \"percentOfFirst\": 3.389830508474576\n    },\n    {\n        \"key\": \"Sf Group\",\n        \"docCount\": 6,\n        \"percentOfTotal\": 0.38684719535783363,\n        \"percentOfFirst\": 3.389830508474576\n    },\n    {\n        \"key\": \"University Of Hull\",\n        \"docCount\": 6,\n        \"percentOfTotal\": 0.38684719535783363,\n        \"percentOfFirst\": 3.389830508474576\n    },\n    {\n        \"key\": \"Axiom Software Solutions\",\n        \"docCount\": 5,\n        \"percentOfTotal\": 0.3223726627981947,\n        \"percentOfFirst\": 2.824858757062147\n    },\n    {\n        \"key\": \"Balfour Beatty plc\",\n        \"docCount\": 5,\n        \"percentOfTotal\": 0.3223726627981947,\n        \"percentOfFirst\": 2.824858757062147\n    },\n    {\n        \"key\": \"Cityfibre\",\n        \"docCount\": 5,\n        \"percentOfTotal\": 0.3223726627981947,\n        \"percentOfFirst\": 2.824858757062147\n    },\n    {\n        \"key\": \"Jark Worcester\",\n        \"docCount\": 5,\n        \"percentOfTotal\": 0.3223726627981947,\n        \"percentOfFirst\": 2.824858757062147\n    },\n    {\n        \"key\": \"University Of Oxford\",\n        \"docCount\": 5,\n        \"percentOfTotal\": 0.3223726627981947,\n        \"percentOfFirst\": 2.824858757062147\n    },\n    {\n        \"key\": \"Alexander Mann Solutions\",\n        \"docCount\": 4,\n        \"percentOfTotal\": 0.2578981302385558,\n        \"percentOfFirst\": 2.2598870056497176\n    },\n    {\n        \"key\": \"Cathcart Associates\",\n        \"docCount\": 4,\n        \"percentOfTotal\": 0.2578981302385558,\n        \"percentOfFirst\": 2.2598870056497176\n    },\n    {\n        \"key\": \"Client Server\",\n        \"docCount\": 4,\n        \"percentOfTotal\": 0.2578981302385558,\n        \"percentOfFirst\": 2.2598870056497176\n    },\n    {\n        \"key\": \"Concept Resourcing\",\n        \"docCount\": 4,\n        \"percentOfTotal\": 0.2578981302385558,\n        \"percentOfFirst\": 2.2598870056497176\n    },\n    {\n        \"key\": \"Cubica\",\n        \"docCount\": 4,\n        \"percentOfTotal\": 0.2578981302385558,\n        \"percentOfFirst\": 2.2598870056497176\n    },\n    {\n        \"key\": \"Datatech Analytics\",\n        \"docCount\": 4,\n        \"percentOfTotal\": 0.2578981302385558,\n        \"percentOfFirst\": 2.2598870056497176\n    },\n    {\n        \"key\": \"Dunnhumby Inc\",\n        \"docCount\": 4,\n        \"percentOfTotal\": 0.2578981302385558,\n        \"percentOfFirst\": 2.2598870056497176\n    },\n    {\n        \"key\": \"EPAM Systems, Inc.\",\n        \"docCount\": 4,\n        \"percentOfTotal\": 0.2578981302385558,\n        \"percentOfFirst\": 2.2598870056497176\n    },\n    {\n        \"key\": \"Gwg Associates\",\n        \"docCount\": 4,\n        \"percentOfTotal\": 0.2578981302385558,\n        \"percentOfFirst\": 2.2598870056497176\n    },\n    {\n        \"key\": \"Mackenzie Jones\",\n        \"docCount\": 4,\n        \"percentOfTotal\": 0.2578981302385558,\n        \"percentOfFirst\": 2.2598870056497176\n    },\n    {\n        \"key\": \"Ministry Of Defence\",\n        \"docCount\": 4,\n        \"percentOfTotal\": 0.2578981302385558,\n        \"percentOfFirst\": 2.2598870056497176\n    },\n    {\n        \"key\": \"Miryco Consulting\",\n        \"docCount\": 4,\n        \"percentOfTotal\": 0.2578981302385558,\n        \"percentOfFirst\": 2.2598870056497176\n    },\n    {\n        \"key\": \"Mitie Group PLC\",\n        \"docCount\": 4,\n        \"percentOfTotal\": 0.2578981302385558,\n        \"percentOfFirst\": 2.2598870056497176\n    },\n    {\n        \"key\": \"Nicholson Glover Consulting\",\n        \"docCount\": 4,\n        \"percentOfTotal\": 0.2578981302385558,\n        \"percentOfFirst\": 2.2598870056497176\n    },\n    {\n        \"key\": \"Roke Manor Research\",\n        \"docCount\": 4,\n        \"percentOfTotal\": 0.2578981302385558,\n        \"percentOfFirst\": 2.2598870056497176\n    },\n    {\n        \"key\": \"Salt Recruitment\",\n        \"docCount\": 4,\n        \"percentOfTotal\": 0.2578981302385558,\n        \"percentOfFirst\": 2.2598870056497176\n    },\n    {\n        \"key\": \"Testq Technologies\",\n        \"docCount\": 4,\n        \"percentOfTotal\": 0.2578981302385558,\n        \"percentOfFirst\": 2.2598870056497176\n    },\n    {\n        \"key\": \"Thg\",\n        \"docCount\": 4,\n        \"percentOfTotal\": 0.2578981302385558,\n        \"percentOfFirst\": 2.2598870056497176\n    },\n    {\n        \"key\": \"University College London\",\n        \"docCount\": 4,\n        \"percentOfTotal\": 0.2578981302385558,\n        \"percentOfFirst\": 2.2598870056497176\n    }\n]"}],"_postman_id":"b3b6c7a9-cb0e-4bad-a9fd-aac568a67dc5"},{"name":"Position Chart Endpoint","event":[{"listen":"test","script":{"id":"df665538-0905-4965-b9d1-1c15bf76ea9c","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentOfFirst');","});"],"type":"text/javascript"}}],"id":"3941de1d-86ce-4e17-aee5-1fea326b7142","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"APAC\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"region\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"google\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCompany\"\n        }\n    ]\n}"},"url":"//demandData/barData/position","description":"<p>This endpoint returns data divided into (up to) 50 bars and lists several values for each: total number of job listings, percent of the total, and percent of the largest result. The record is organized in descending numerical order. </p>\n<p>Here are descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return job listings posted by Google in Asia and the Pacific:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"APAC\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"region\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"google\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCompany\"\n        }\n    ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["demandData","barData","position"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"33868b29-8f35-4eb8-b3a3-07dd4b6fe1cf","name":"Google Jobs in APAC","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"APAC\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"region\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"google\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCompany\"\n        }\n    ]\n}"},"url":"//demandData/barData/position"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Feb 2021 05:39:38 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"0845cc97ea0000ff94458a2000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"group\":\"cf-nel\",\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=Nw83y1H5pCY4qadkZR%2FSYZNVait5MnI3v5m4PLRZFrknlTIp2qOc%2BtCq5tiU0FlIE1YYMEwa9fUSRXozJ2kY1LGkIZCrrngUejaCqkJzzZ6P%2FFqflnqbEucR\"}],\"max_age\":604800}"},{"key":"NEL","value":"{\"max_age\":604800,\"report_to\":\"cf-nel\"}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"621cb06caf6eff94-BOS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"Customer Engineer, Security, Google Cloud\",\n        \"docCount\": 2,\n        \"percentOfTotal\": 0.6688963210702341,\n        \"percentOfFirst\": 100.0\n    },\n    {\n        \"key\": \"Customer Engineering Manager, Data Analytics, Google Cloud\",\n        \"docCount\": 2,\n        \"percentOfTotal\": 0.6688963210702341,\n        \"percentOfFirst\": 100.0\n    },\n    {\n        \"key\": \"Metro Network Deployment Engineer\",\n        \"docCount\": 2,\n        \"percentOfTotal\": 0.6688963210702341,\n        \"percentOfFirst\": 100.0\n    },\n    {\n        \"key\": \"Principal Architect, Gaming, Google Cloud\",\n        \"docCount\": 2,\n        \"percentOfTotal\": 0.6688963210702341,\n        \"percentOfFirst\": 100.0\n    },\n    {\n        \"key\": \"Student Researcher, Phd, 2023\",\n        \"docCount\": 2,\n        \"percentOfTotal\": 0.6688963210702341,\n        \"percentOfFirst\": 100.0\n    },\n    {\n        \"key\": \"2023 Software Engineering Intern, People With Disabilities (장애인 채용)\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Account Manager, Engage, Google Customer Solutions\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Account Manager, Google Cloud\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Account Manager, Small/Medium Businesses, Apigee, Google Cloud\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Administrative Business Partner, Cloud\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Administrative Business Partner, Marketing (Fixed-Term Contract)\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Adminsitrative Business Partner, Global Clients And Agency Solutions\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Ai Engagement Manager, Professional Services, Google Cloud\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Analog And Mixed Signal Ip Validation Engineer, Silicon\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Antenna Design Engineer\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Application Engineering Intern, Summer 2023\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Asic Design Verification Engineer\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Asic Platform Software Architect\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Asic Rtl Integration Engineer\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Asic Silicon Design Engineer, Machine Learning\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Assistant Electrical Facilities Technician (English, Mandarin)\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Associate Software Engineer, Greach Program For People With Disabilities\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"BrAnd Planning And Measurement Lead, Southeast Asia\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Business Acquisition Manager, Apps (Vietnamese, English)\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Business Development Representative, Google Cloud, Greach Program For People With Disabilities\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Business Lead, High Performance Computing, Google Cloud\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Business Lead, Networking Practice, Google Cloud\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Business Strategy And Operations Associate, App Development\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Business Systems Analyst, Data Works\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Cad Engineer, Devices And Services\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Category Business Associate, Devices And Services\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Cloud Consultant, Big Data And Analytics, Google Cloud\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Cloud Engineer, Database Engineering\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Cloud Migration Specialist, Customer Engineering, Google Cloud\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Cloud Technical Resident, Cloud Academy, Early Career (English)\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Cloud Technical Resident, Cloud Academy, Early Career (Multiple Languages) - Singapore\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Cloud Technical Solutions Engineer, Sap Priority Solutions\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Connectivity Architect, Silicon Engineering\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Consulting Account Lead, Google Cloud Consulting\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Consumption And Revenue Excellence Lead, Customer Engineering\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Cpu Architect, Devices And Services, Silicon\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Cpu Performance Architect\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Credit Partnerships Manager, Global Partnerships, Google Pay\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Critical Incident Manager, Google Cloud\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Customer Engineer, Ai/Ml, Generative Ai, Google Cloud\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Customer Engineer, Application Modernization, Gaming\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Customer Engineer, Business Application Platform, Google Cloud\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Customer Engineer, Small/Medium Businesses, Apigee (Bahasa Indonesia)\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Customer Engineer, Small/Medium Businesses, Google Cloud\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    },\n    {\n        \"key\": \"Customer Engineer, Small/Medium Businesses, Google Cloud (Vietnamese)\",\n        \"docCount\": 1,\n        \"percentOfTotal\": 0.33444816053511706,\n        \"percentOfFirst\": 50.0\n    }\n]"}],"_postman_id":"3941de1d-86ce-4e17-aee5-1fea326b7142"}],"id":"d95744eb-17b4-4add-953a-01d51fb8211b","description":"<p>All of the following Bar Chart Endpoints return the total number of job postings in our database that satisfy the criteria of your specific query. Data is presented as the total number of job postings, divided into logical categories based on the Endpoint. Each category shows the number of job postings that comprise it, as well as the percentage of your total search population that category represents. The record lists only the top 50 results, since our goal is to support the creation of relevant and easy-to-understand bar charts. To achieve optimal results, try not to use endpoints that match filters in your query; for example, if you search \"Country Code:US AND Company:shop\" do not select a \"Company\" chart endpoint, since you refined your query to show information about only 1 company.</p>\n","_postman_id":"d95744eb-17b4-4add-953a-01d51fb8211b","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}}},{"name":"Data for Pie Charts","item":[{"name":"CBSA Chart Endpoint","event":[{"listen":"test","script":{"id":"816d04b1-770b-4e8c-83d9-e79fcc306316","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentage');","});"],"type":"text/javascript"}}],"id":"321adb47-546f-4b50-bfbc-017b7e51a9a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"searchParameters\": [\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobCountry\",\n                \"parameterValue\": [\n                    \"US\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"auto mechanic\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"automotive technician\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"auto tech\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"auto technician\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"automotive mechanic\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"automotive service\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"automotive maintenance\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"body shop\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"auto body\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            }\n        ]\n    }"},"url":"//demandData/pieData/cbsa","description":"<p>This endpoint returns data divided into 10 slices and lists 2 values for each: total number of job listings and percent of the total. The record is organized in descending numerical order. </p>\n<p>CBSA data is restricted to US only. If you want to find location data from outside the US, you must use the <a href=\"#Location-Chart-Endpoint\">Location Chart Endpoint</a>.</p>\n<p>Here are descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return job listings for automotive mechanics in the US:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n\"searchParameters\": [\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobCountry\",\n                \"parameterValue\": [\n                    \"US\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"auto mechanic\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"automotive technician\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"auto tech\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"auto technician\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"automotive mechanic\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"automotive service\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"automotive maintenance\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"body shop\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"auto body\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            }\n        ]\n    }\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["demandData","pieData","cbsa"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"4563b9ec-5aab-4a39-8c8e-7fc156e78ccd","name":"Auto Mechanics in the US","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\"searchParameters\": [\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobCountry\",\n                \"parameterValue\": [\n                    \"US\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"auto mechanic\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"automotive technician\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"auto tech\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"auto technician\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"automotive mechanic\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"automotive service\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"automotive maintenance\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"body shop\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"auto body\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            }\n        ]\n    }"},"url":"//demandData/pieData/cbsa"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Feb 2021 18:44:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"0852e7aa5500003b707f81f000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=eCTQFfq5DAMXjm7hS6HMyJ78J2CiyXH%2BN1OcssNbqotbQLkAsTBiUiRb5I1cSuxdYelQ6hgvdHCrFjKUQJ12NiLFnOM1lOob%2FAHa76pGq%2B9o1Kd7Evs%2BaA77\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"max_age\":604800,\"report_to\":\"cf-nel\"}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6231a88a2f913b70-BOS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"New York-Newark-Jersey City, NY-NJ-PA\",\n        \"docCount\": 2105,\n        \"percentage\": 29.175329175329175,\n        \"percentOfTotal\": 7.07467903475163\n    },\n    {\n        \"key\": \"Atlanta-Sandy Springs-Roswell, GA\",\n        \"docCount\": 746,\n        \"percentage\": 10.33957033957034,\n        \"percentOfTotal\": 2.507225919204141\n    },\n    {\n        \"key\": \"Chicago-Naperville-Elgin, IL-IN-WI\",\n        \"docCount\": 630,\n        \"percentage\": 8.731808731808732,\n        \"percentOfTotal\": 2.117362371445856\n    },\n    {\n        \"key\": \"Philadelphia-Camden-Wilmington, PA-NJ-DE-MD\",\n        \"docCount\": 620,\n        \"percentage\": 8.593208593208594,\n        \"percentOfTotal\": 2.0837534449149695\n    },\n    {\n        \"key\": \"Dallas-Fort Worth-Arlington, TX\",\n        \"docCount\": 575,\n        \"percentage\": 7.969507969507969,\n        \"percentOfTotal\": 1.9325132755259797\n    },\n    {\n        \"key\": \"Charlotte-Concord-Gastonia, NC-SC\",\n        \"docCount\": 559,\n        \"percentage\": 7.747747747747748,\n        \"percentOfTotal\": 1.8787389930765612\n    },\n    {\n        \"key\": \"Los Angeles-Long Beach-Anaheim, CA\",\n        \"docCount\": 529,\n        \"percentage\": 7.331947331947332,\n        \"percentOfTotal\": 1.7779122134839014\n    },\n    {\n        \"key\": \"Phoenix-Mesa-Scottsdale, AZ\",\n        \"docCount\": 508,\n        \"percentage\": 7.040887040887041,\n        \"percentOfTotal\": 1.7073334677690395\n    },\n    {\n        \"key\": \"Detroit-Warren-Dearborn, MI\",\n        \"docCount\": 474,\n        \"percentage\": 6.56964656964657,\n        \"percentOfTotal\": 1.593063117564025\n    },\n    {\n        \"key\": \"Washington-Arlington-Alexandria, DC-VA-MD-WV\",\n        \"docCount\": 469,\n        \"percentage\": 6.500346500346501,\n        \"percentOfTotal\": 1.5762586542985817\n    }\n]"}],"_postman_id":"321adb47-546f-4b50-bfbc-017b7e51a9a7"},{"name":"Company Chart Endpoint","event":[{"listen":"test","script":{"id":"62ca009e-2bc1-4223-a3a8-6f2004aaa779","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentage');","});"],"type":"text/javascript"}}],"id":"9651fc38-c20a-48a6-9856-1868225342b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobcountry\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n        {\n            \"parameterValue\": [\n                \"remote\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobDescription\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"work from home\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobDescription\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"remotely\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobDescription\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"remote\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobLocation\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"home\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobLocation\"\n        },\n        {\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}"},"url":"//demandData/pieData/company","description":"<p>This endpoint returns data divided into 10 slices and lists 2 values for each: total number of job listings and percent of the total. The record is organized in descending numerical order. </p>\n<p>Here are descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return job listings for remote work opportunities in the US:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobcountry\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n        {\n            \"parameterValue\": [\n                \"remote\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobDescription\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"work from home\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobDescription\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"remotely\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobDescription\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"remote\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobLocation\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"home\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobLocation\"\n        },\n        {\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["demandData","pieData","company"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"5238bb35-7ac7-4838-a190-f99b5e1a3e79","name":"Remote work opportunities in the US","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobcountry\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n        {\n            \"parameterValue\": [\n                \"remote\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobDescription\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"work from home\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobDescription\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"remotely\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobDescription\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"remote\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobLocation\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"home\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobLocation\"\n        },\n        {\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}"},"url":"//demandData/pieData/company"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Feb 2021 18:53:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"0852f0652100003b69b68ed000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"group\":\"cf-nel\",\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=MbNdIZgodNixSo1rhXn8g714avPEIS5LYuMt55BTiz2HspIS1LfKOMETZOjF4p8LpJKJWuBcOl86ZlFOWesQ5SK36PxWWJXNMM%2FTjJCHh5t%2FRw5pZ8WEL5Vl\"}],\"max_age\":604800}"},{"key":"NEL","value":"{\"max_age\":604800,\"report_to\":\"cf-nel\"}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6231b681c9b33b69-BOS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"Obsidian Financial Services\",\n        \"docCount\": 48927,\n        \"percentage\": 52.573497807960116,\n        \"percentOfTotal\": 9.82428451812273\n    },\n    {\n        \"key\": \"H&R Block, Inc.\",\n        \"docCount\": 11686,\n        \"percentage\": 12.556950055875527,\n        \"percentOfTotal\": 2.346487397117792\n    },\n    {\n        \"key\": \"The Kumler Group\",\n        \"docCount\": 8802,\n        \"percentage\": 9.45800739276197,\n        \"percentOfTotal\": 1.7673953507984603\n    },\n    {\n        \"key\": \"Recruiting From Scratch\",\n        \"docCount\": 7337,\n        \"percentage\": 7.8838218860139255,\n        \"percentOfTotal\": 1.4732310484899231\n    },\n    {\n        \"key\": \"The United States Department Of Veterans Affairs\",\n        \"docCount\": 3408,\n        \"percentage\": 3.6619960457319696,\n        \"percentOfTotal\": 0.6843084930153548\n    },\n    {\n        \"key\": \"Deloitte Touche Tohmatsu Limited\",\n        \"docCount\": 3370,\n        \"percentage\": 3.621163930198573,\n        \"percentOfTotal\": 0.6766782926824371\n    },\n    {\n        \"key\": \"PricewaterhouseCoopers Company\",\n        \"docCount\": 3062,\n        \"percentage\": 3.290208888506834,\n        \"percentOfTotal\": 0.6148335110366832\n    },\n    {\n        \"key\": \"Humana Inc.\",\n        \"docCount\": 2307,\n        \"percentage\": 2.4789392246196167,\n        \"percentOfTotal\": 0.4632334781063449\n    },\n    {\n        \"key\": \"Marriott International, Inc\",\n        \"docCount\": 2177,\n        \"percentage\": 2.3392504083211554,\n        \"percentOfTotal\": 0.4371301611779423\n    },\n    {\n        \"key\": \"Big Batch Dispatch\",\n        \"docCount\": 1988,\n        \"percentage\": 2.1361643600103153,\n        \"percentOfTotal\": 0.39917995425895697\n    }\n]"}],"_postman_id":"9651fc38-c20a-48a6-9856-1868225342b6"},{"name":"Job Title Chart Endpoint","event":[{"listen":"test","script":{"id":"f706e6f9-39a0-48fb-a199-35c6569fda47","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentage');","});"],"type":"text/javascript"}}],"id":"57bb80c3-b748-4b87-a2d9-15bfd83e8002","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n            \"parameterValue\": [\n                \"60000\",\n                \"1000000\"\n            ],\n            \"parameterType\": \"range\",\n            \"parameterKey\": \"jobSalary\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"master's\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobDescription\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"doctorate\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobDescription\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"ph.d\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobDescription\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"phd\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobDescription\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}"},"url":"//demandData/pieData/position","description":"<p>This endpoint returns data divided into 10 slices and lists 2 values for each: total number of job listings and percent of the total. The record is organized in descending numerical order. </p>\n<p>Here are descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return job listings in the US that require a master's degree or higher and pay at least $60k per year:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n            \"parameterValue\": [\n                \"60000\",\n                \"1000000\"\n            ],\n            \"parameterType\": \"range\",\n            \"parameterKey\": \"jobSalary\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"master's\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobDescription\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"doctorate\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobDescription\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"ph.d\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobDescription\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"phd\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobDescription\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["demandData","pieData","position"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"dd9a3c22-1b65-4e98-8072-44367621ffd7","name":"Highly educated US jobs paying over $60k","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n            \"parameterValue\": [\n                \"60000\",\n                \"1000000\"\n            ],\n            \"parameterType\": \"range\",\n            \"parameterKey\": \"jobSalary\"\n        },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"master's\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobDescription\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"doctorate\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobDescription\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"ph.d\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobDescription\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"phd\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"jobDescription\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n    ]\n}"},"url":"//demandData/pieData/position"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Feb 2021 19:31:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"__cfduid=df80326de6a446da314c9d7cdd492e5c81613590299; expires=Fri, 19-Mar-21 19:31:39 GMT; path=/; domain=.claro.hr; HttpOnly; SameSite=Lax; Secure"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"08531319f700003bac1a176000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"group\":\"cf-nel\",\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=Otyd2BjbHMkyM7QocQW7ulSVkzFIP75IY4a9QknHdYwv0RNBwiwmr5n22TUFG9LnAnB8KfUvQJBHAQCv8lDys70Ja%2FVkS5VPyylFWpeI%2Bwr3CY2loL9%2FXM4J\"}],\"max_age\":604800}"},{"key":"NEL","value":"{\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6231ee098f9f3bac-BOS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"Physical Therapist\",\n        \"docCount\": 1161,\n        \"percentage\": 27.78841550981331,\n        \"percentOfTotal\": 2.439383115518763\n    },\n    {\n        \"key\": \"Board Certified Behavior Analyst (Bcba)\",\n        \"docCount\": 612,\n        \"percentage\": 14.648157012924845,\n        \"percentOfTotal\": 1.2858763709711307\n    },\n    {\n        \"key\": \"Speech Therapist\",\n        \"docCount\": 576,\n        \"percentage\": 13.786500718046913,\n        \"percentOfTotal\": 1.2102365844434173\n    },\n    {\n        \"key\": \"Speech Language Pathologist\",\n        \"docCount\": 387,\n        \"percentage\": 9.262805169937769,\n        \"percentOfTotal\": 0.813127705172921\n    },\n    {\n        \"key\": \"Occupational Therapist\",\n        \"docCount\": 381,\n        \"percentage\": 9.119195787458114,\n        \"percentOfTotal\": 0.8005210740849686\n    },\n    {\n        \"key\": \"Medical Science Director\",\n        \"docCount\": 287,\n        \"percentage\": 6.869315461943514,\n        \"percentOfTotal\": 0.6030171870403832\n    },\n    {\n        \"key\": \"Nurse Practitioner\",\n        \"docCount\": 265,\n        \"percentage\": 6.342747726184777,\n        \"percentOfTotal\": 0.5567928730512249\n    },\n    {\n        \"key\": \"Mental Health Therapist\",\n        \"docCount\": 179,\n        \"percentage\": 4.284346577309718,\n        \"percentOfTotal\": 0.3760978274572425\n    },\n    {\n        \"key\": \"Clinical Psychologist\",\n        \"docCount\": 171,\n        \"percentage\": 4.092867400670177,\n        \"percentOfTotal\": 0.3592889860066395\n    },\n    {\n        \"key\": \"Postdoctoral Fellow-Msh\",\n        \"docCount\": 159,\n        \"percentage\": 3.8056486357108663,\n        \"percentOfTotal\": 0.33407572383073497\n    }\n]"}],"_postman_id":"57bb80c3-b748-4b87-a2d9-15bfd83e8002"},{"name":"Location Chart Endpoint","event":[{"listen":"test","script":{"id":"65850f73-e71b-447f-97f6-631dc4ad6988","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()[0]).to.have.property('key');","pm.expect(pm.response.json()[0]).to.have.property('docCount');","pm.expect(pm.response.json()[0]).to.have.property('percentOfTotal');","pm.expect(pm.response.json()[0]).to.have.property('percentage');","});"],"type":"text/javascript"}}],"id":"d64efa59-025b-4d49-8936-0a557ccfd4f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"EMEA\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"region\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"java\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"python\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"php\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"c#\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n  ]\n}"},"url":"//demandData/pieData/location","description":"<p>This endpoint returns data divided into 10 slices and lists 2 values for each: total number of job listings and percent of the total. The record is organized in descending numerical order. </p>\n<p>The location endpoint will display global data. To restrict your results by a specific country or region, be sure to include the appropriate <code>jobCountry</code> or <code>region</code> tokens in your query. If you want to find location information ONLY in the US, we recommend that you use the <a href=\"#CBSA-Chart-Endpoint\">CBSA Chart Endpoint</a>.</p>\n<p>Here are descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>Below is a sample query that will return job listings for java developers in Europe, the Middle East, and Africa:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"EMEA\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"region\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"java\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"python\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"php\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"c#\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n  ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["demandData","pieData","location"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"b39c8e1e-67d3-4f6e-990c-e551be73bfd1","name":"Java developers in EMEA","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"EMEA\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"region\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"(\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"(\"\n    },\n    {\n      \"parameterValue\": [\n        \"java\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"python\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"php\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n      {\n      \"parameterValue\": [\n        \"OR\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"OR\"\n    },\n    {\n      \"parameterValue\": [\n        \"c#\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"lucene\"\n    },\n    {\n      \"parameterValue\": [\n        \")\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \")\"\n    }\n  ]\n}"},"url":"//demandData/pieData/location"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Feb 2021 19:47:25 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"0853217ee000003b6f1a3a1000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=ZMWOp%2FmXUjA4cpVoSGgUvkofM96TUrzLj%2BP7Hvc30E%2FLqozl6U58OVzoPvy1YfTlFpMmUF54KsDBqMx2Nypq3ENQiJ%2BcOaERR2XCgsslAsR1cXmvnWT1eapz\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"max_age\":604800,\"report_to\":\"cf-nel\"}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6232051168b03b6f-BOS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"Munchen\",\n        \"docCount\": 8408,\n        \"percentage\": 21.603288797533402,\n        \"percentOfTotal\": 3.479945201624085\n    },\n    {\n        \"key\": \"Paris\",\n        \"docCount\": 5111,\n        \"percentage\": 13.132065775950668,\n        \"percentOfTotal\": 2.1153663089320527\n    },\n    {\n        \"key\": \"London\",\n        \"docCount\": 3988,\n        \"percentage\": 10.246659815005138,\n        \"percentOfTotal\": 1.6505734376875416\n    },\n    {\n        \"key\": \"Bucuresti\",\n        \"docCount\": 3460,\n        \"percentage\": 8.890030832476876,\n        \"percentOfTotal\": 1.4320421500498732\n    },\n    {\n        \"key\": \"Budapest\",\n        \"docCount\": 3264,\n        \"percentage\": 8.386433710174718,\n        \"percentOfTotal\": 1.350920687214678\n    },\n    {\n        \"key\": \"Berlin\",\n        \"docCount\": 3249,\n        \"percentage\": 8.347893114080165,\n        \"percentOfTotal\": 1.3447124119976988\n    },\n    {\n        \"key\": \"Warszawa Mazowieckie\",\n        \"docCount\": 3171,\n        \"percentage\": 8.147482014388489,\n        \"percentOfTotal\": 1.312429380869407\n    },\n    {\n        \"key\": \"Praha\",\n        \"docCount\": 3059,\n        \"percentage\": 7.859712230215828,\n        \"percentOfTotal\": 1.2660742592492953\n    },\n    {\n        \"key\": \"South East\",\n        \"docCount\": 2896,\n        \"percentage\": 7.440904419321686,\n        \"percentOfTotal\": 1.1986110018914544\n    },\n    {\n        \"key\": \"Den Haag\",\n        \"docCount\": 2314,\n        \"percentage\": 5.945529290853032,\n        \"percentOfTotal\": 0.9577299234726608\n    }\n]"}],"_postman_id":"d64efa59-025b-4d49-8936-0a557ccfd4f2"}],"id":"541fd55f-9456-4e95-94e1-c078cfd46dc4","description":"<p>All of the following Pie Chart Endpoints return the total number of job postings in our database that satisfy the criteria of your specific query. Data is presented as the total number of job postings, divided into logical categories based on the Endpoint. Each category shows the number of job postings that comprise it, as well as the percentage of your total search population that category represents. The record lists only the top 10 results, since our goal is to support the creation of relevant and easy-to-understand pie charts. To achieve optimal results, try not to use endpoints that match filters in your query; for example, if you search \"Country Code:US AND Company:shop\" do not select a \"Company\" chart endpoint, since you refined your query to show information about only 1 company.</p>\n","_postman_id":"541fd55f-9456-4e95-94e1-c078cfd46dc4","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}}},{"name":"Data for Lists of Jobs","item":[{"name":"List of Jobs","event":[{"listen":"test","script":{"id":"70074085-520c-49ae-b785-9071c100347f","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()).to.have.property('data');","pm.expect(pm.response.json()).to.have.property('count');","","//  data","pm.expect(pm.response.json()['data'][0]).to.have.property('id');","pm.expect(pm.response.json()['data'][0]).to.have.property('cityName');","pm.expect(pm.response.json()['data'][0]).to.have.property('jobUrl');","pm.expect(pm.response.json()['data'][0]).to.have.property('jobName');","pm.expect(pm.response.json()['data'][0]).to.have.property('companyName');","pm.expect(pm.response.json()['data'][0]).to.have.property('rowSalary');","pm.expect(pm.response.json()['data'][0]).to.have.property('date');","pm.expect(pm.response.json()['data'][0]).to.have.property('dateOfPosted');","pm.expect(pm.response.json()['data'][0]).to.have.property('loc');","","// loc","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('geo');","pm.expect(pm.response.json()['data'][0]['loc']['geo']).to.have.property('lat');","pm.expect(pm.response.json()['data'][0]['loc']['geo']).to.have.property('lon');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('country');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('locality');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('formattedAddress');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('mostlyMatchedLocation');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('country_code');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('state');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('state_code');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('postalTown');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('county');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('cbsa');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('allocated');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('location');","","// location","pm.expect(pm.response.json()['data'][0]['loc']['location']).to.have.property('name');","pm.expect(pm.response.json()['data'][0]['loc']['location']).to.have.property('type');","","pm.expect(pm.response.json()['data'][0]).to.have.property('salaryOriginal');","","// salary original","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('type');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('currency');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('period');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('salaryFrom');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('salaryTo');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('salaries');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('range');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']['range']).to.have.property('gte');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']['range']).to.have.property('gt');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']['range']).to.have.property('lte');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']['range']).to.have.property('lt');","pm.expect(pm.response.json()['data'][0]).to.have.property('description');","pm.expect(pm.response.json()['data'][0]).to.have.property('location');","});"],"type":"text/javascript"}}],"id":"0911659c-95d5-4c6f-a6d9-b4d2c05d11db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"CA\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"20000\",\n                \"10000000\"\n            ],\n            \"parameterType\": \"range\",\n            \"parameterKey\": \"jobSalary\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n        {\n            \"parameterValue\": [\n                \"phone sales\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"call center\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"call centre\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"telephone sales\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"customer service\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}"},"url":"//demandData/listData","description":"<p>This endpoint returns job posting records. The response is a complete list of the information we have associated with the unique <code>id</code>. </p>\n<p>Here is a description of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to use to create one. </p>\n<p><strong>Claro will show a maximum of 10k job postings per /listData/ query.</strong> The responses for this endpoint may take longer than normal to deliver, as the records have more information than other endpoints. If your query returns more than 10k unique <code>id</code>s then a random sample of 10k job postings will be returned. </p>\n<p>Below is a sample query that will return telemarketing job postings in Canada:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"CA\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"50000\",\n                \"10000000\"\n            ],\n            \"parameterType\": \"range\",\n            \"parameterKey\": \"jobSalary\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n        {\n            \"parameterValue\": [\n                \"phone sales\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"call center\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"call centre\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"telephone sales\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"customer service\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["demandData","listData"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"c16e557b-c8af-47d9-bb59-ef8e8fa6d251","name":"Telemarketing Jobs Canada","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"CA\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"20000\",\n                \"10000000\"\n            ],\n            \"parameterType\": \"range\",\n            \"parameterKey\": \"jobSalary\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n        {\n            \"parameterValue\": [\n                \"phone sales\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"call center\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"call centre\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"telephone sales\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"customer service\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}"},"url":"//demandData/listData"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Thu, 04 Jun 2020 13:04:53 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"9FF035E31C8171819269CF32F24E1B3F\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=82f248fc951641aa\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Applied Medical\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694548693829,\n            \"dateOfPosted\": 1688898891657,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" _________________________________________________________________________________:  Applied Medical is a new generation medical device company with a proven business model and commitment to innovation fueled by rapid business growth and expansion. Our company has been developing and manufacturing advanced surgical technologies for over 35 years and has earned a strong reputation for excellence in the healthcare field. Our unique business model, combined with our dedication to delivering the highest quality products, enables team members to contribute in a larger capacity than is possible in typical positions. Position Description:  As a Customer Service Representative, you will be responsible for working within the framework of a team and performing the following activities:  Deliver exceptional customer service by consistently providing high-quality assistance, resolving customer inquiries, and ensuring their satisfaction throughout the interaction Execute order processing tasks including accurately entering customer orders, comprehending Customer Service department procedures, and conducting inventory checks for efficient and smooth operations Handle customer communication through various channels such as phone and email, promptly addressing their concerns, and maintaining a record of interactions for future reference Keep customers informed about their orders by providing order confirmations and timely updates on the status of their requests Collaborate with both external customers and internal departments like Credit, Sales Operations, and Shipping to effectively resolve customer issues and streamline processes Support additional tasks and projects as required, demonstrating flexibility and adaptability in contributing to team objectives Adhere to company policies and safety regulations, ensuring full understanding and compliance for a safe and productive work environment Position Requirements:  This position requires the following skills and attributes:  Bachelor’s degree in a related field Demonstrated proficiency in customer service, with at least one year of experience in a call center setting, preferably within a manufacturing environment Proficiency in using Microsoft Excel and Outlook Preferred:  The following skills and attributes are preferred:  Experience with SAP software Minimum of one year of experience in a manufacturing environment call center setting Benefits:  The base compensation range for this role is $18 - $25 / hour CAD for the position in Mississauga, Ontario, Canada. Actual compensation packages are based on several factors that are unique to each candidate, including but not limited to skill set, depth of experience, certifications, and specific work location. The range displayed reflects the minimum and maximum target for new hire salaries in Mississauga, Ontario, Canada based on the date of this job posting. Your recruiter can share more about the specific salary range compensation package during your hiring process.  Please understand that the compensation range may be modified in the future. Each amount of pay is considered to be wages or compensation once such amount is earned and determinable. The amount and availability of any bonus, commission, benefit or any other form of compensation may be modified at the Company’s sole discretion, consistent with the law.  The total compensation package for this position may also include [bonuses and/or other applicable incentive compensation plans].  Our total reward package also includes the following:  Training and mentorship with ongoing learning and development courses Benefits Allowance for supplemental health insurance coverage, in the absence of a group plan or similar benefits Generous vacation accrual and paid holiday schedule Equal Opportunity Employer  Applied Medical is an Equal Opportunity Employer. All qualified applicants will receive consideration for employment without regard to age, ancestry, color, disability (mental and physical), exercising the right to family care and medical leave, gender, gender expression, gender identity, genetic information, marital status, medical condition, military or veteran status, national origin, political affiliation, race, religious creed, sex (including pregnancy, childbirth, breastfeeding and related medical conditions), or sexual orientation, or any other status protected by federal, state or local laws in the locations where Applied Medical operates. \",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"282E75157AFB05A15DD0CC2D7D0F977A\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3d8bf283d90258f2\",\n            \"jobName\": \"Customer Service Manager - Automobiles\",\n            \"companyName\": \"Carzone Motors Ltd\",\n            \"rowSalary\": \"$32.50 an hour\",\n            \"date\": 1694548660417,\n            \"dateOfPosted\": 1688059795365,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 33.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    33.0\n                ],\n                \"range\": {\n                    \"gte\": 33.0,\n                    \"gt\": null,\n                    \"lte\": 33.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Manage staff and assign duties Study market research and trends to determine consumer demand, potential sales volumes and effect of competitors' operations on sales Determine merchandise and services to be sold Implement price and credits policies Locate, select and procure merchandise for resale Develop and implement marketing strategies Plan budgets and monitor revenues and expenses Determine staffing requirements Resolve problems that arise, such as customer complaints and supply shortages Plan, organize, direct, control and evaluate daily operations Recruit, hire and supervise staff and/or volunteers Supervision 3-4 people 5-10 people Work conditions and physical capabilities Fast-paced environment Work under pressure Attention to detail Combination of sitting, standing, walking Personal suitability Hardworking Positive attitude Time management Client focus Efficient interpersonal skills Excellent oral communicationWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"E1B815E2898C21D060318E4C59FD6EB4\",\n            \"cityName\": \"Petawawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d08f7e899375acb8\",\n            \"jobName\": \"Customer Service Representative - Personal Lines\",\n            \"companyName\": \"Mcdougall Insurance And Financial\",\n            \"rowSalary\": \"$40,000–$48,000 a year\",\n            \"date\": 1694548362173,\n            \"dateOfPosted\": 1694548361981,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.8982631,\n                    \"lon\": -77.2828772\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Petawawa\",\n                \"formattedAddress\": \"Petawawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Renfrew County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Petawawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"_McDougall Insurance is now the largest insurance brokerage in Eastern Ontario. We represent over 50 insurance companies, giving us the ability to offer optimal selection and competitive rates. Here at McDougall we have created an Employee Promise. The leadership of McDougall Insurance promises to foster an environment of support, empowerment and inclusion, while investing in our employee's future with McDougall Insurance. In turn, our employees promise to treat others with dignity and respect and strive to approach each day with a positive attitude and willingness to learn. Together, we promise to deliver Legendary Service to our customers and apply the McDougall principals of Trust, Honesty and Integrity with a goal of building strong lasting relationships. The result is our staff is engaged, accountable and professional._ _At McDougall Insurance and Financial we offer our employees; a comprehensive benefits package, McDougall pension plan, staff appreciation days, social events, a branch-wide yearend bonus, a competitive salary and paid vacation time starting at 3 weeks._ Our growing team is looking for a Customer Service Representative in Personal Lines to join our team in Petawawa, Ontario! Are you looking to start a new career? Do you have strong customer service skills? If so, this might be the perfect opportunity for you. We provide you with all the tools, knowledge and training you need to be successful in this role. Responsibilities: To provide legendary service directly to the client, after the sale by the Sales Executive. Communicate with the client in person, by phone, email, text, etc. to answer all of their questions/inquiries, provide professional advice or recommendations regarding their coverage, and collect relevant information. Process additions, deletions or changes to their policy on the appropriate broker management system (EPIC) Ensure all transactions and renewals are accounted for and processed accurately and on a timely basis. Provide quotations or estimates to clients on premiums, update information, and confirm data and coverage and to record appropriate changes or adjustments. Communicate with insurance company personnel as required. As an independent broker working for your client, acts as liaison with the insurer and balances the interests of the client, McDougall Insurance and the insurance company in force. Function as part of a team responsible for assisting in the collection of accounts receivable and in any other area as required. Where appropriate, procure a sale, normally through upgrading and bundling coverage for personal lines clients Qualifications: Must have exceptional customer service and communication skills. Acts in a professional manner at all times and maintains a position of trust and confidentiality. Acts in an open, respectful, honest and helpful manner with all team members, clients and other staff. Ability to work effectively in a fast-paced environment Must be willing and eligible to obtain a RIBO license RIBO stands for the Registered Insurance Brokers of Ontario. RIBO regulates the licensing, professional competence, ethical conduct and insurance related financial obligations of all independent general insurance brokers in the province of Ontario. To learn more please visit What We Offer: Dedication to investing in our employees' future by offering RIBO, CAIB, and other designation education reimbursement A supportive and inclusive culture where diversity is valued A competitive employee health and dental benefits program including long term disability A competitive pension plan Paid vacation time Access to ongoing training and development through our McDougall training team McDougall Insurance and Financial is proud to be an equal opportunity employer. We aim to find individuals who are passionate about their work and treat others with dignity and respect. If you need assistance or an accommodation, you may reach out to our Human Resources Department through our website: Job Types: Full-time, Permanent Salary: $40,000.00-$48,000.00 per year Benefits: Company events Company pension Dental care Disability insurance Employee assistance program Extended health care Life insurance Paid time off Vision care Schedule: Day shift Monday to Friday Supplemental pay types: Bonus pay Work Location: In person\",\n            \"location\": \"Petawawa, ON\"\n        },\n        {\n            \"id\": \"81189E4A9C755893B156B70D6AE54218\",\n            \"cityName\": \"120 Lowson Cres, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4001639707a94203\",\n            \"jobName\": \"E-Store Customer Service Representative\",\n            \"companyName\": \"The Quark Group\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694548266185,\n            \"dateOfPosted\": 1694548266010,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8357439,\n                    \"lon\": -97.20617569999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Lowson Cres, Winnipeg, MB R3P, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"In Office Position:The E-Store Customer Service Representative performs the daily functions of the Quarks E-Store: Upload merchandise details to the website, generating picking information for the stores, and handle troubleshooting, complaints, returns, and phone orders with exceptional customer service skills.ResponsibilitiesE store Customer Service:· Respond to email and telephone queries.· Handle customer complaints, provide appropriate solutions and alternatives within the time limits; follow up to ensure resolution.· Process special orders, exchanges and returns.Website Updates:· Upload images and group merchandise for the E-Store.\\\\· Communicate with vendors to receive images in advance of upcoming season.- Various other website maintenance dutiesOrder Fulfillment:· Generate picking info to stores.· Supply shipping information to stores.Other:· Adhere to all applicable federal and provincial regulations and company policies.· Consistently look for operational improvements.· Other duties, relevant to the position, shall be assigned as required.Requirements· 1 Year of proven customer support experience or experience as a client service representative.· Strong phone contact handling skills and active listening.· Ability to multi-task, prioritize, and manage time effectively.· Excellent communication skills.· Proficient with Microsoft Excel, Word and Outlook. Knowledge of Imagine is an asset.· Team oriented, and able to manage stress.· Bilingual is an asset.Job Type: Full-timeSalary: $16.50 per hourBenefits:Dental careExtended health carePaid time offSchedule:8 hour shiftEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Lowson Cres, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"B36CDADB489AFEB981B4FB0262F8DEB2\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d1e2d29650fe80c1\",\n            \"jobName\": \"Call Centre Agent - Customer Service\",\n            \"companyName\": \"Silverberry Travels Inc.\",\n            \"rowSalary\": \"$24 an hour\",\n            \"date\": 1694548111279,\n            \"dateOfPosted\": 1690809440670,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Experience an assetTasks Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for refunds and credits Explain the type and cost of services offered Maintain records and statistics Perform general office duties Receive payments Act as spokesperson for an organization Train and supervise staffWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"01A8616636887E540E732ABE5ACD3CE9\",\n            \"cityName\": \"6227 2 St SE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b3d587b31006e569\",\n            \"jobName\": \"Entry-Level Customer Service Representative\",\n            \"companyName\": \"Affinity 1:1\",\n            \"rowSalary\": \"$700–$1,200 a week\",\n            \"date\": 1694547852396,\n            \"dateOfPosted\": 1694547852218,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.96843759999999,\n                    \"lon\": -113.9758168\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"40 St SE, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 700.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    700.0\n                ],\n                \"range\": {\n                    \"gte\": 700.0,\n                    \"gt\": null,\n                    \"lte\": 700.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"POSITION DESCRIPTION: Customer Service Representative with excellent communication skillsWe are looking for full time and part time self-motivated and dependable Customer Service Representatives to join our team!The Customer Service Representative will serve as the primary contact for local communities. They are responsible for not only maintaining strong relationships with potential customers but also serve as a conduit between the customer and the client.POSITION SUMMARY:Working alongside clients through team based community engagement programs on behalf of different client communication campaigns throughout the year. Technical input of data and processing customer transactions. Answer questions and provide high level customer service response to inquries.WHAT WE ARE LOOKING FOR:· Highly motivated individuals· A team player, willing to go out of your way to help, support and coach your team.· Integrity – Honesty – Drive – Reliability – Hard Working – Ambition – Professionalism· Excellent interpersonal and communication skills to effectively build relationships· Ability to effectively interact with people at all levels· A self-starter who can operate with minimal supervision and is motivated to find solutions to challenges as they occur.We value our team members and their right to medical privacy. Personal health information will not be a deciding factor for employment consideration. All applicants are welcome.The health and safety of our team members, candidates and communities is our top priority. We are committed to act responsibly and have numerous health and safety protocols and precautions in place to stop the spread of COVID-19Job Types: Full-time, PermanentSalary: $700.00-$1,200.00 per weekCOVID-19 considerations:Personal preferenceJob Type: Full-timeSalary: $700.00-$1,200.00 per weekBenefits:Company eventsFlexible scheduleOn-site parkingFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payRetention bonusWork Location: In person\",\n            \"location\": \"St SE, Calgary, AB\"\n        },\n        {\n            \"id\": \"80CF7CD3F9C9853A83DF782BC5FC2A94\",\n            \"cityName\": \"6150 Highway 7, Vaughan, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7c7ba1590be7b96c\",\n            \"jobName\": \"Financial Customer Service Representative\",\n            \"companyName\": \"Pay2day\",\n            \"rowSalary\": \"From $17.55 an hour\",\n            \"date\": 1694547820383,\n            \"dateOfPosted\": 1694547820201,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.800579,\n                    \"lon\": -79.499136\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Keele St at Highway 7, Vaughan, ON L4K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you interested in growth, development, and a great team environment? If you are, join our team because you are exactly who we’re looking for! Pay2Day is a rapidly growing company with endless opportunities for career advancement. We offer alternative financial solutions and are looking for people who are client-focused, highly skilled problem solvers, and dedicated to success.Candidates must have a broad availability as this is a 7 day a week operation. Must be available to work mornings, afternoons, evenings and weekends to meet our client’s business needs.Why work for Pay2Day?· You’ll be a part of a company our customers LOVE, and we love them! Check us out on Google and Trust Pilot. We focus on doing what’s right for our clients, not what is easy.· You’ll have opportunities for advancement and development. We love developing our team, and when positions become available, we ALWAYS look internally, first.· You’ll be part of a great team. We all succeed together and want the best for everyone. Check out our Indeed reviews! We’re happily rated 4.6 stars.· You’ll have a platform to share your ideas; your voice will impact internal changes. Team members at all levels have an open-door policy. Feedback makes us stronger as individuals and employees.· You’ll have flexible, varying shifts. Our Stores are open 7 days a week with varying hours. Our team members need to be available for varying shifts throughout the week.Essential duties & responsibilities:Cash handling/teller responsibilitiesOpening/closing the branchPerforming daily calls to remind clients of payment arrangements.Reviewing applicants/completing financial risk assessment to determine approvals.Responding to client inquiries/Information requests by both in store and virtual clientsCollaborate with various departments to maximize profit while focusing on exceptional customer service and sales.Focusing on client retentionMarketing/growing the business.Additional perks:Health, Vision & Dental BenefitsAccess to an external EAPCompany events and incentivesPositive and supportive teamOpportunity for career advancementPay2Day welcomes and encourages applications from people with disabilities. Accommodations are available upon request for candidates taking part in all aspects of the selection process.For more information about our company, visit www.pay2day.ca and check out our locationsJob Types: Full-time, PermanentSalary: From $17.55 per hourBenefits:Company eventsDental careEmployee assistance programExtended health careFlexible scheduleLife insuranceVision careWellness programSchedule:10 hour shift8 hour shiftDay shiftEvening shiftHolidaysWeekends as neededEducation:Secondary School (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Highway , Vaughan, ON\"\n        },\n        {\n            \"id\": \"7C9257E9CD6EDB275EA96A8F018380EB\",\n            \"cityName\": \"1 Bass Pro Mills Drive, Vaughan, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=13f73888b8d874bb\",\n            \"jobName\": \"Teller/Customer Service Representative\",\n            \"companyName\": \"Calforex Currency Exchange\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694547812362,\n            \"dateOfPosted\": 1694547812170,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.82184669999999,\n                    \"lon\": -79.5393173\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Bass Pro Mills Dr, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Location: Vaughan Mills MallCalforex is a Canadian leader in Foreign Exchange services operating 10 retail locations in Canada. At Calforex we take pride in offering our clients competitive personalized foreign exchange services and providing unmatched customer service. Calforex is seeking motivated, talented team members who are dedicated to providing a welcoming and professional environment for our clients and fellow employees.The position of teller is of a front-line ambassador to both our local clientele and tourists from across the globe. Success at Calforex relies on the following:· Providing a welcoming and cheerful environment for clients during their transactions in branch and while interacting with clients by phone and email.· Engaging with clients to accurately determine their needs and offer appropriate products and services.· An aptitude for problem solving and responding flexibly to new challenges.· Communicating effectively and professionally with clients regarding Calforex policy and Federal or Provincial regulations for Money Service Businesses.· Commitment to on-going training for Anti-Money Laundering and Anti-Terrorist Financing legislation and regulatory requirements.Required Qualifications:· High school diploma or equivalent.· Confident in use of computers, email programs, and basic internet usage skills.· Advanced verbal and written communication skills in the following languages: English/French· Minimum 2 years of professional customer service experience.· Minimum 2 years of professional cash handling experience.· Reliable transportation or ability to commute during Branch hours.· Ability to pass a Police Clearance Report.Calforex is committed to providing an inclusive and equitable workplace for all team members and clients. We seek applicants who are committed to upholding these values.Job Type: Part-timePart-time hours: 20-40 per weekSalary: From $17.00 per hourSchedule:8 hour shiftExperience:Cash handling: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Bass Pro Mills Dr, Vaughan, ON\"\n        },\n        {\n            \"id\": \"6EBDABB132C68B136FEB70215088E11C\",\n            \"cityName\": \"126 Bridge St, Bradford, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9fe92a7b87405258\",\n            \"jobName\": \"Financial Customer Service Representative\",\n            \"companyName\": \"Pay2day\",\n            \"rowSalary\": \"From $17.55 an hour\",\n            \"date\": 1694547806010,\n            \"dateOfPosted\": 1694547805843,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.114523,\n                    \"lon\": -79.5509839\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bradford West Gwillimbury\",\n                \"formattedAddress\": \"Bridge St, Bradford West Gwillimbury, ON L0G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bradford West Gwillimbury\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you interested in growth, development, and a great team environment? If you are, join our team because you are exactly who we’re looking for! Pay2Day is a rapidly growing company with endless opportunities for career advancement. We offer alternative financial solutions and are looking for people who are client-focused, highly skilled problem solvers, and dedicated to success.Candidates must have a broad availability as this is a 7 day a week operation. Must be available to work mornings, afternoons, evenings and weekends to meet our client’s business needs.Why work for Pay2Day?· You’ll be a part of a company our customers LOVE, and we love them! Check us out on Google and Trust Pilot. We focus on doing what’s right for our clients, not what is easy.· You’ll have opportunities for advancement and development. We love developing our team, and when positions become available, we ALWAYS look internally, first.· You’ll be part of a great team. We all succeed together and want the best for everyone. Check out our Indeed reviews! We’re happily rated 4.6 stars.· You’ll have a platform to share your ideas; your voice will impact internal changes. Team members at all levels have an open-door policy. Feedback makes us stronger as individuals and employees.· You’ll have flexible, varying shifts. Our Stores are open 7 days a week with varying hours. Our team members need to be available for varying shifts throughout the week.Essential duties & responsibilities:Cash handling/teller responsibilitiesOpening/closing the branchPerforming daily calls to remind clients of payment arrangements.Reviewing applicants/completing financial risk assessment to determine approvals.Responding to client inquiries/Information requests by both in store and virtual clientsCollaborate with various departments to maximize profit while focusing on exceptional customer service and sales.Focusing on client retentionMarketing/growing the business.Additional perks:Health, Vision & Dental BenefitsAccess to an external EAPCompany events and incentivesPositive and supportive teamOpportunity for career advancementPay2Day welcomes and encourages applications from people with disabilities. Accommodations are available upon request for candidates taking part in all aspects of the selection process.For more information about our company, visit www.pay2day.ca and check out our locationsJob Types: Full-time, PermanentSalary: From $17.55 per hourBenefits:Company eventsDental careEmployee assistance programExtended health careFlexible scheduleLife insuranceVision careWellness programSchedule:10 hour shift8 hour shiftDay shiftEvening shiftHolidaysWeekends as neededEducation:Secondary School (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Bridge Street, Bradford, ON\"\n        },\n        {\n            \"id\": \"A95762D4CEDD3D1F79EBC6E4C0D4A678\",\n            \"cityName\": \"Moncton Area, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=718bc24b4dc0cab8\",\n            \"jobName\": \"Mini-Split And Duct Cleaning Technician - Customer Service Focused\",\n            \"companyName\": \"Hydrokleen Atlantic\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694547578863,\n            \"dateOfPosted\": 1694547578689,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.0878165,\n                    \"lon\": -64.7782313\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"* No Experience Required *Are you a customer service superstar looking for a new career that's more than \\\"just a job\\\"?Operating since 2018, HydroKleen Atlantic is a growing service company offering the cleaning of mini-split heat pumps, air exchanger systems, dryer vent ducts, and other HVAC systems. Our primary goals are to deliver the most thorough cleaning and the best customer service our clients can get. We have hundreds of 5-star reviews across different platforms!Our unique and proven system allows our HydroKleen technicians to provide superior cleaning without taking any system apart. No experience necessary! We are offering full training to the right candidate.What makes this a great job?- Operate your own service vehicle- Excellent work-life balance- Work independently- Stay active- Consistent support from the admin staff and other service technicians- Work in different locations every day- Interact with clients- Provide meaningful services- Represent a trustworthy brand- Competitive wages- Bonuses- No trade certification is requiredSend us your resume if you- Have excellent customer service skills- Can provide a clean driving record and clean background check- Have a valid class 5 driver's license- Have an eye for small details- Find satisfaction in being thorough- Can work efficiently with little supervision- Are highly self-motivated- Enjoy interacting with people- Have a high level of professionalism- Can lift to 50 lbs.- Want a long-term career with great pay and a supportive environmentFrench is not required but is an asset.Some marketing will be required between jobs and during quieter times of the year, i.e. door hangers, putting up flyers, approaching nearby businesses.The main job area includes Moncton and the surrounding regions. However, parts of Nova Scotia and Prince Edward Island may be included occasionally.The hours will be full-time for the most of the year, but could be less if demand slows down during the winter months.Fuel and vehicle supplied.Job Types: Full-time, Part-time, Permanent, CasualPart-time hours: 15-40 per weekSalary: From $18.00 per hourBenefits:Company carStore discountSchedule:Day shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payExperience:Customer service: 1 year (preferred)Licence/Certification:Class 5 Driver's License (required)Work Location: In person\",\n            \"location\": \"Moncton, NB\"\n        },\n        {\n            \"id\": \"F2A69D4EC3D0832FBA9A326A249FEC45\",\n            \"cityName\": \"534 17 Av SW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e40b8b3c7e9c7b03\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Affinity One To One\",\n            \"rowSalary\": \"$700–$1,200 a week\",\n            \"date\": 1694547568055,\n            \"dateOfPosted\": 1691698097870,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0696021,\n                    \"lon\": -114.2048762\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Cougar Ridge Ave SW, Calgary, AB T3H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 700.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    700.0\n                ],\n                \"range\": {\n                    \"gte\": 700.0,\n                    \"gt\": null,\n                    \"lte\": 700.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"POSITION DESCRIPTION: Customer Service Representative with excellent communication skillsWe are looking for full time and part time self-motivated and dependable Customer Service Representatives to join our team!The Customer Service Representative will serve as the primary contact for local communities. They are responsible for not only maintaining strong relationships with potential customers but also serve as a conduit between the customer and the client.POSITION SUMMARY:Working alongside clients through team based community engagement programs on behalf of different client communication campaigns throughout the year. Technical input of data and processing customer transactions. Answer questions and provide high level customer service response to inquries.WHAT WE ARE LOOKING FOR:· Highly motivated individuals· A team player, willing to go out of your way to help, support and coach your team.· Integrity – Honesty – Drive – Reliability – Hard Working – Ambition – Professionalism· Excellent interpersonal and communication skills to effectively build relationships· Ability to effectively interact with people at all levels· A self-starter who can operate with minimal supervision and is motivated to find solutions to challenges as they occur.We value our team members and their right to medical privacy. Personal health information will not be a deciding factor for employment consideration. All applicants are welcome.The health and safety of our team members, candidates and communities is our top priority. We are committed to act responsibly and have numerous health and safety protocols and precautions in place to stop the spread of COVID-19Job Types: Full-time, PermanentSalary: $700.00-$1,200.00 per weekCOVID-19 considerations:Personal preferenceJob Type: Full-timeSalary: $700.00-$1,200.00 per weekBenefits:Company eventsFlexible scheduleOn-site parkingFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payRetention bonusWork Location: In person\",\n            \"location\": \"Av SW, Calgary, AB\"\n        },\n        {\n            \"id\": \"ED118D83C561FF4C7C2D9068E775B12C\",\n            \"cityName\": \"110 Copper Creek Drive, Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=572cbb005d81415f\",\n            \"jobName\": \"Receptionist And Customer Service Representative\",\n            \"companyName\": \"Oak Ridges Vision Centre\",\n            \"rowSalary\": \"$15.50–$26.04 an hour\",\n            \"date\": 1694547521619,\n            \"dateOfPosted\": 1694547521426,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.87072740000001,\n                    \"lon\": -79.2209562\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Markham\",\n                \"formattedAddress\": \"Copper Creek Dr, Markham, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Markham\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We have an opening for a Part Time . receptionist/customer service representative in our optical/optometrist's office. This position combines the responsibilities of managing the front desk, assisting with eyewear sales and administrative patient duties. We are seeking to grow our team by adding a dedicated and outgoing person who has a strong desire to learn and a great aptitude for fashion. Being computer savvy, having great interpersonal skills and a passion for providing superb patient care is an asset.Previous optical & administrative experience is preferred, but not necessary.Primary Responsibilities and Duties: *will include but not be limited to*· General reception duties including scheduling appointments, invoicing, insurance billing, answering phones calls/emails, taking payments, etc.· Assisting patients with frame selection and lens recommendations based on the prescription written by the Optometrist· Staying current on product knowledge and fashion trends in order to accurately guide the patient· Pretesting patients using automated equipment prior to seeing the Optometrist· Miscellaneous in-office duties as assignedIf you feel you would be an asset to our team, please forward your resume and a cover letter through the link below.Job Types: Full-time, Part-time, PermanentPart-time hours: 24 per weekSalary: $16.50-$21.56 per hourBenefits:Dental careExtended health careStore discountVision careSchedule:8 hour shiftDay shiftMonday to FridayWeekend availabilitySupplemental pay types:Bonus payCommission payOvertime payAbility to commute/relocate:Markham, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Front desk: 1 year (preferred)Administrative experience: 1 year (preferred)Work Location: In personJob Type: Part-timePart-time hours: 24-40 per weekSalary: $15.50-$26.04 per hourBenefits:Dental carePaid time offFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededSupplemental pay types:Overtime payAbility to commute/relocate:Markham, ON L6B 0P9: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Front desk: 1 year (preferred)Administrative experience: 1 year (preferred)Language:Mandarin (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Copper Creek Drive, Markham, ON\"\n        },\n        {\n            \"id\": \"2DFBBDD1CE858E453B4190DCE8E35262\",\n            \"cityName\": \"Oldcastle, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f0c07c998d1a2cfa\",\n            \"jobName\": \"Customer Service Representative/Inside Sales\",\n            \"companyName\": \"Morton Food Service\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694547437029,\n            \"dateOfPosted\": 1694547436867,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.226672,\n                    \"lon\": -82.95950200000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Tecumseh\",\n                \"formattedAddress\": \"Oldcastle, Tecumseh, ON N0R 1L0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Essex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Tecumseh\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"SUMMARYThe foundation of Morton Food Service lies in our strong relationships with our customers, driven by our ‘Customer First’ philosophy. The Customer Service Representative (CSR) is responsible for providing a high level of customer service to Morton Food Service customers while supporting the initiatives/goals of the Sales Team and the organization. The CSR will be responsible for handling general inquiries, placing accurate orders, communicating with customers, and facilitating communications though all levels of the organization.The CSR is an extension of the Morton Sales Team and is a point of contact for Morton Food Service customers both internal and external. This position plays a critical role in ensuring our customers experience the highest quality of customer service through our customer first focus. Integrity, vision, professionalism, and passion are key components to the success of a Morton Customer Service Representative.CORE COMPETENCIESDetail OrientedTime Management & MultitaskingCreative and Innovative ThinkingDevelopment and Continuous LearningProblem SolvingAccountability and DependabilityDecision Making and JudgementOperating Office EquipmentEthics and IntegrityPlanning and organizingAccuracyEnforcing Policy, Rules, RegulationsNegotiation SkillsExceptional CommunicationCustomer Focused (Internal & External)TeamworkJOB DUTIESRespond to customer service calls in a courteous and professional manner.Process client orders into the company ERP/Business system with accuracy and in a timely manner.Assist customers and the sales department with orders, inquiries, and issues/concerns in a timely manner.Refer customer calls to appropriate manager where necessary (Regional Sales and Business Development Manager or Director of Sales)Investigate and troubleshoot customer service issues.Appropriately communicate brand identity and corporate position.Assist customers with standard account-related inquiries.Provide information about company products and our service.Update the company ERP/Business system (i.e., CRM) with accurate messages regarding transactions.Coordinate and follow-up on customer orders and inquiries on behalf of the Territory Sales Manager when Sales team members are unavailable (i.e., vacation coverage).Conduct call-backs to ensure customer satisfaction, as necessary.Provide customer reports to Sales as needed, including velocity reports.Ensure that Territory Sales Managers are informed of customer interactions and to work as a team to provide our customers with the best service.CSR to generate various velocity reports for customers & vendors as needed with proper approvals.Produce order confirmations and follow-up on shortages by recommending substitutions.CSR to regularly attend General Sales Meetings, product sessions and stay up to date with product knowledge.CSR to ride with Territory Sales Managers to build effective relationships with customers.Embody the Morton Food Service, Customer First philosophy.Other responsibilities may be assigned as required.REQUIREMENTSSecondary School Diploma or General Equivalency Degree required.2-5 years' experience in Customer Service preferred.Administrative skills are an asset.Previous food service experience is an asset.Working knowledge Microsoft Office applications (Outlook, Excel, Word).Excellent communication skills both oral & written.WORKING CONDITIONSManual dexterity is required to operate telephone, computer, and peripherals.Interacts with employees, management, and the customers at large.Repetitive work environmentIrregular hours, various days of the week and overtime will be required as needed.Multi-tasking, detail orientated, sometimes stressful environment.Job Type: Full-timeSalary: $18.00-$20.00 per hourBenefits:Company eventsDental careDiscounted or free foodExtended health careLife insuranceOn-site parkingVision careSchedule:8 hour shiftDay shiftHolidaysMonday to FridayOvertimeWeekends as neededSupplemental pay types:Overtime payAbility to commute/relocate:Oldcastle, ON N9G 0B8: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:customer service : 2 years (required)food service: 2 years (preferred)Work Location: In personApplication deadline: 2023-09-22Expected start date: 2023-10-02\",\n            \"location\": \"Oldcastle, ON\"\n        },\n        {\n            \"id\": \"EE3210874C562EE3364D475D11B7A63D\",\n            \"cityName\": \"More Gate Digital Group in Oshawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0ea6daef1ee43c77\",\n            \"jobName\": \"Customer Service Assistant\",\n            \"companyName\": \"More Gate Digital Group\",\n            \"rowSalary\": \"$45,000–$55,000 a year\",\n            \"date\": 1694547369720,\n            \"dateOfPosted\": 1694547369531,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8970929,\n                    \"lon\": -78.86579119999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oshawa\",\n                \"formattedAddress\": \"Oshawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oshawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Here’s why you should apply:Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingPrimary Functions:Serve as the information center for all customers, community contacts, and other company representativesMust be aware of daily activities and administrative responsibilitiesInteract with customers to provide information in response to inquiries, concerns and requests about products and servicesMust professionally handle all phone calls and route callersAnswers questions in a timely and courteous mannerProduce reports, forms, correspondence, orders and other materials as neededPerform other duties as assigned.QualificationsSolid organization and active listening skillsRazor sharp attention to detail with fast and accurate data entryCustomer service focused with creative problem solving skillsAbility to anticipate and advocate for your customers needsAbility to multi-task, prioritize and adjust to changing needsJust like your resume, a job description never tells the full story. Apply today and if you've got what it takes, we'd love to discuss everything in further detail. We know there's a lot more you'd like to know, why wait? Apply today!Job Types: Full-time, PermanentSalary: $45,000.00-$55,000.00 per yearBenefits:Dental careEmployee assistance programExtended health careOn-site parkingPaid time offFlexible Language Requirement:English not requiredFrench not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payOvertime payTipsEducation:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Oshawa, ON\"\n        },\n        {\n            \"id\": \"6764E0077CCB61873C6B8D19A16AE439\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=20879eef2776156f\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"Heed Consturction Group Ltd\",\n            \"rowSalary\": \"$35 an hour\",\n            \"date\": 1694547250165,\n            \"dateOfPosted\": 1691672910659,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 35.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35.0\n                ],\n                \"range\": {\n                    \"gte\": 35.0,\n                    \"gt\": null,\n                    \"lte\": 35.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 2 years to less than 3 yearsTasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Train or arrange for training Ensure health and safety regulations are followed Recommend personnel actions Read blueprints and drawings Requisition or order materials, equipment and suppliesWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"9CAB91B26CE97972C6D0CC760904FE4A\",\n            \"cityName\": \"3003 Grandview Highway, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=11f0937e070e39db\",\n            \"jobName\": \"Customer Service/Sales Representative\",\n            \"companyName\": \"Weserve Marketing Inc.\",\n            \"rowSalary\": \"$800–$1,500 a week\",\n            \"date\": 1694547131931,\n            \"dateOfPosted\": 1694547131701,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2582225,\n                    \"lon\": -123.0348704\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Grandview Hwy, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 800.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    800.0\n                ],\n                \"range\": {\n                    \"gte\": 800.0,\n                    \"gt\": null,\n                    \"lte\": 800.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you experienced in the Customer Service and Sales field and looking to utilize your customer-centric approach to business development?Ace Management Group is one of Toronto’s leading firms in Customer Service, Sales, and Business Development. We are dedicated to providing our clients with the utmost care and have a history of delivering profitable results and exceeding expectations in a vastly growing consulting industry. Utilizing this customer-centric and consultative approach is a cornerstone in how our Customer Service and Sales Team works together to create a dynamic, diverse and collaborative workspace.We emphasize our employee’s goals, growth, and leadership development to foster this atmosphere. As part of our Customer Service Sales Representative team, you would become an expert in all areas of consulting, customer service, sales, and leadership development. The ideal candidate is undeniably dedicated to advancing our core mission of innovation and inclusiveness. The right candidate for our Customer Service Sales Representative role is also a communications expert, empathetic towards people, and is exceptional at delivering results on behalf of our renowned clientele. If you are confident and possess these traits, joining our Customer Service Sales Representative team would be ideal for you.Customer Service Sales Representative Responsibilities:· Articulate the features and benefits of our client’s products and services directly to our customers and possess the knowledge to answer any additional questions they may have· Build rapport and long-lasting relationships with our customers to help ensure repeat business and brand loyalty· Complete the sales process with any qualifying customer who meets the client’s parameters and maintains the ability to lead with the client brand, not discounts· Support the rest of our Entry Level Customer Service Representatives and Sales teams with remaining daily responsibilities including but not limited to, compliance, product delivery tracking, and quality assurance· Drive customer engagement and satisfaction from initial contact through the point of sale to delivery of products to further help scale acquisition growth and longevity· Effectively and efficiently communicate with customers to handle all inquiries, resolve issues, and overturn any objections while completing the sales processCustomer Service Sales Representative Qualifications:· 1 year of experience in an entry-level or introductory position within the field of customer service and/or sales is preferred· A self-motivated individual dedicated to utilizing their existing skills and have a student mentality to learn new skillsets· Strong leadership skills and capability to mentor other members of the Customer Service Sales Representative and sales teams· Exceptional communication skills, both written and verbal· Tenacious and dedicated to reinforcing the core values of unbelievable customer serviceJob Types: Full-time, Part-time, Permanent, FreelancePart-time hours: 40 per weekSalary: $800.00-$1,500.00 per weekBenefits:Dental carePaid time offSchedule:Monday to FridayWeekends as neededSupplemental pay types:Commission payEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Grandview Highway, Vancouver, BC\"\n        },\n        {\n            \"id\": \"F799A9839C01D61C9260E600624B00B6\",\n            \"cityName\": \"3405 Rue F. X. Tessier, Vaudreuil-Dorion, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=53455374cb858bb2\",\n            \"jobName\": \"Administrative Assistant -Customer Service - Nfh - Adjointe Administrative-\",\n            \"companyName\": \"New Roots Herbal Inc.\",\n            \"rowSalary\": \"$20.00–$23.50 an hour\",\n            \"date\": 1694547129939,\n            \"dateOfPosted\": 1694547129705,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4112764,\n                    \"lon\": -74.0547111\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaudreuil-Dorion\",\n                \"formattedAddress\": \"Rue F.-X.-Tessier, Vaudreuil-Dorion, QC J7V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montérégie\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaudreuil-Dorion\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Administrative Assistant and Customer ServiceAre you looking to kickstart your career in this dynamic environment, Join our team as a Administrative Assistant and customer service, to gain valuable experience and develop versatile skills within the administration realm. You'll be contributing to projects that make a real impact while learning from experienced professionals in a supportive environment.Main Responsibilities✔ Take phone orders/web orders/email orders✔ Enter sales orders in SAP✔ Processing client invoices✔ Process customers’ returns, damages, and pricing errors✔ Handle company invoicing (vendors)✔ Handle client accounts, and customer complaints, issues or questions✔ Handle simple accounting transactions✔ Assist in tasks related to marketing and promotion✔ Help organize and distribute marketing materials✔ Report to the general director and handle calendar, reminders, and ongoing tasks✔ Provide monthly sales reports✔ Assist in organizing events and trips✔ Translate different documents✔ Assist in various office tasksSkills & Qualifications✔ Excellent oral and written communication skills in English and French (90 % of the calls are in English)✔ Minimum of one (1) year of experience in customer service✔ Computer proficiency with MS Office✔ Experience with SAP✔ Excellent interpersonal and communication skills✔ Team-player✔ Be organized and detail oriented✔ Experience with natural health products (an asset)✔ Naturopathic practitioner (an asset)--------------------------------------------------------------------------------------------Adjointe administrative et service à la clientèleVous souhaitez démarrer votre carrière dans un environnement dynamique ? Rejoignez notre équipe en tant qu'assistant administratif et service à la clientèle, afin d'acquérir une expérience précieuse et de développer des compétences polyvalentes dans le domaine de l'administration. Vous contribuerez à des projets qui ont un impact réel tout en apprenant auprès de professionnels expérimentés dans un environnement favorable.Principales tâches et responsabilités✔ Prendre les commandes téléphoniques/en-ligne/courriel✔ Saisir les commandes dans SAP✔ Traiter les factures✔ Gérer les retours d’articles, les dommages et les erreurs de prix des clients✔ Gérer la facturation des fournisseurs✔ Gérer les dossiers des clients, les questions ou les plaintes✔ Gérer la facturation de la compagnie✔ Traiter des transactions comptables simples✔ Assister dans les tâches reliées au marketing et aux promotions✔ Aider à organiser et à distribuer le matériel promotionnel✔ Se rapporter au chef de l’exploitation et gérer le calendrier, les rappels et les tâches en cours✔ Fournir des rapports de ventes mensuels✔ Aider à l'organisation d'événements et de voyages d’affaires✔ Traduire différents documents✔ Aider avec autres tâches de bureauCompétences et qualifications✔ Excellente communication écrite et verbale en anglais et en français (90 % des appels sont en anglais)✔ Minimum d’un (1) an d’expérience au service à la clientèle✔ Maîtrise de la suite MS Office✔ Expérience avec le logiciel SAP✔ Être doué pour la communication et les relations interpersonnelles✔ Détenir un bon esprit d’équipe✔ Être organisé et avoir le souci du détail✔ Expérience dans le domaine des produits naturels (un atout)✔ Naturopathe (un atout)Job Type: Full-timeSalary: $20.00-$23.50 per hourBenefits:Dental carePaid time offVision careSchedule:8 hour shiftDay shiftMonday to FridayAbility to commute/relocate:Vaudreuil-Dorion, QC J7V 5V5: reliably commute or plan to relocate before starting work (required)Education:DCS / DEC (preferred)Experience:Front desk: 1 year (required)Administrative experience: 1 year (required)Language:English (required)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Rue F. X. Tessier, Vaudreuil-Dorion, QC\"\n        },\n        {\n            \"id\": \"FD29D714365D87F48DEE694DBD46F26A\",\n            \"cityName\": \"London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=18ec8f7acb66185d\",\n            \"jobName\": \"Customer Service Representative - Revenue (C0746)\",\n            \"companyName\": \"City Of London\",\n            \"rowSalary\": \"$40,064–$58,655 a year\",\n            \"date\": 1694547115785,\n            \"dateOfPosted\": 1694547115602,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9849233,\n                    \"lon\": -81.2452768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40064.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40064.0\n                ],\n                \"range\": {\n                    \"gte\": 40064.0,\n                    \"gt\": null,\n                    \"lte\": 40064.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Summary of DutiesReports through the Senior Customer Service Representative - Revenue or Senior Cashier to the Manager of Customer and Assessment Services or the Supervisor of Taxation and Revenue. Provides information to the public concerning property taxes and related legislation. Receives and processes payments.Work PerformedReceives and responds to public inquires relating to property taxes at the tax counter, by telephone, or in written form. Informs the public about legislation changes, rebate programs and appeal procedures. Receives, records and deposits all revenues due to the Corporation. Processes tax payment stubs and cheques through automated payment processor in order to generate batch summaries, tapes for mainframe update and related records. Ensures accuracy of data processed. Maintains daily record of revenues received and ensures that cash and cheques reconcile to documents. Controls and files receipts. Provides back-up to the Senior Cashier as required for regular daily duties such as petty cash reimbursements and daily deposits. Researches tax accounts requiring special attention, i.e. cheques do not match remittances, account paid twice. Provides clerical assistance in the issuing of tax bills and receipts for tax payments. Assists in the processing of tax payments received in person, by mail, or by agencies including postdated cheques during installment period. Completes standard form letters as required. Assists Data Entry Transfer Clerk and Tax Certificate Clerk as required. Performs related duties as assigned.Qualifications/ExperienceOne year of a two year Community College Business Administration Diploma. One to two years' related experience.Specialized Training & LicensesSkills and abilities in the following areas are necessary: Unit 1 of the Municipal Tax Administration ProgramCompensation and Other Information$40,064 - $58,655 (Level 7) This position is being filled on a temporary basis for up to 2 years. Current hours of Work: Monday - Friday from 8:30am - 4:30pm These hours of work are subject to change in accordance with the Collective Agreement and may include evening hours and Saturdays. NOTE: Applicants may be required to complete a job related test.As an inclusive employer, we are committed to providing a fully accessible recruitment process. Please contact us at any time during the recruitment process and let us know what accessible supports you may need. FILE NUMBER COL01652  SERVICE AREA Finance Supports  DIVISION Financial Services  CLOSE DATE 19-Sep-2023  POSITION TYPE Temporary - Full Time  EMPLOYEE GROUP CUPE Local 101\",\n            \"location\": \"London, ON\"\n        },\n        {\n            \"id\": \"3601907235DFE4D630ED679DA1E4EFE3\",\n            \"cityName\": \"105 Akerley Blvd, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6d2835c5166d7d95\",\n            \"jobName\": \"Customer Service Coordinator\",\n            \"companyName\": \"Mother Hubbard's Kitchens\",\n            \"rowSalary\": \"$42,549–$56,064 a year\",\n            \"date\": 1694547036251,\n            \"dateOfPosted\": 1694547036067,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.7218486,\n                    \"lon\": -63.58213800000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Akerley Blvd, Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42549.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42549.0\n                ],\n                \"range\": {\n                    \"gte\": 42549.0,\n                    \"gt\": null,\n                    \"lte\": 42549.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job DescriptionMother Hubbard's Kitchens is looking for a full-time Customer Service Manager to join our team. The Customer Service Manager will be responsible for the day-to-day operations of the customer service department. The ideal candidate will have a background in customer service and experience in a fast-paced environment. This position will also be responsible for ensuring that all customers are satisfied with their orders, and that the company is meeting its commitments to quality, customer service, and shipping deadlines.ResponsibilitiesManage incoming calls, emails, and chats from customersRespond to customer questions and requests via phone or emailRespond to customer concerns with appropriate solutions and solutions alternativesRespond to customer complaints in a timely mannerCommunicate with customers about product information, pricing, discounts, and other products as neededBuild long-term relationships with customers by taking the time to understand their specific needsCommunicate with customers about new products and special offersMaintain records of customer interactions and issues in our CRM systemManage the company’s commitments to quality, customer service, and shipping datesKeep up-to-date on changes in policies and procedures related to the day-to-day operations of the companyStay up to date on new products and services we offer through our website or through other marketing channels (ex. TV ads)Other duties as assigned by managementSkills & Qualifications Previous experience in a customer service role (preferred)Strong phone presence; must be able to take control of the phone while maintaining good etiquette with all parties involved (customers, sales reps, management)Ability to multi-task in a fast-paced environment while maintaining patience and professionalism (customers, sales reps, management)Ability to work well under pressure while also being able to prioritize tasks (customers, sales reps, management)Ability to prioritize tasks based on importance while maintaining flexibility (customers, sales reps, management)Job Type: Full-timeSalary: $42,549.42-$56,063.74 per yearBenefits:Casual dressExtended health careLife insuranceOn-site parkingStore discountSchedule:Monday to FridaySupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Dartmouth, NS B3B 1R7: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 3 years (required)Shift availability:Day Shift (required)Work Location: In personExpected start date: 2023-09-25\",\n            \"location\": \"Akerley Blvd, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"F8FF6F701831FD05244547A16A379BF5\",\n            \"cityName\": \"526 Regent Street, Niagara-on-the-Lake, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e98f0b495831a664\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Vintage Hotels\",\n            \"rowSalary\": \"$16.65–$17.53 an hour\",\n            \"date\": 1694547030831,\n            \"dateOfPosted\": 1694547030637,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2525129,\n                    \"lon\": -79.0753177\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara-on-the-Lake\",\n                \"formattedAddress\": \"Regent St, Niagara-on-the-Lake, ON L0S 1J0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Niagara-on-the-Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Vintage Hotels is currently seeking full time Luxury Spa and Travel Advisors to join our growing Reservations team!Situated in the heart of Niagara, this is your chance to gain valuable experience within a collection of Niagara's top hotels!What you'll be doing:Answers the telephone, takes reservations, referring calls to the appropriate person/departments as necessary.Responds to Guest concerns and makes reservations for accommodations, spa, dining and theatre tickets.Performs accounting duties related to credit card approvals for reservations and daily cash reports as needed.Performs sales functions, processes expectancy reports, in-house daily lists, group rooming lists and occupancy reports.Process spa bookings and packages as required.Process forms and assist in booking purchase gift letters and donations.Processes mass mail outs for brochures, promotions, confirmation letters and special occasions for Lais Hotel Properties Limited.Respond to Guest complaints, requests and referrals as necessary.Reserve services/ amenities in conjunction with other packages being purchased.What You'll bring to the team:Excellent computer skills.Pleasant and professional telephone manner.Excellent communication skills both written and oral.Proven ability to provide excellent Guest service.Previous up-selling and/or sales experience is considered an asset.What's in it for you:Benefits & RRSP MatchingProfit SharingCareer advancement opportunitiesA tenured team to support your learning and developmentFree mealsCompany wide discountsTuition reimbursementWhile we encourage all interested candidates to apply, please note that only those selected for an interview will be contacted.Accommodations can be provided throughout the recruitment process upon request.Job Types: Full-time, PermanentSalary: $16.65-$17.53 per hourBenefits:Company eventsDiscounted or free foodEmployee assistance programLife insuranceOn-site parkingProfit sharingRRSP matchStore discountSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayWeekends as neededAbility to commute/relocate:Niagara-on-the-Lake, ON: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Regent Street, Niagara-on-the-Lake, ON\"\n        },\n        {\n            \"id\": \"2E2F3E037A758EB1459BA4FC1B93394F\",\n            \"cityName\": \"Purewater in Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=be62e0e3c390f8ac\",\n            \"jobName\": \"Customer Service Advisor (Permanent Full-Time)\",\n            \"companyName\": \"Purewater\",\n            \"rowSalary\": \"$18–$23 an hour\",\n            \"date\": 1694546879371,\n            \"dateOfPosted\": 1694546879174,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Purewater is Ottawa’s leading specialist in the service and maintenance of pools, hot tubs, and billiard tables, providing years of expertise and quality customer service. Purewater offers one of the largest selections of games tables, darts, chemicals, and parts.As a Purewater employee, you are a partner in our company's success. You will be a part of a fast-paced environment that is collaborative, challenging, and exciting.To keep up with growing demand, our service department is looking to add to their team. We are seeking a Customer Service Advisor to assist clients with troubleshooting, service requirements, and parts for their hot tub, pool, or billiard table. Using our state-of-the-art software system, you will schedule service calls, review sales orders, process transactions, and manage inventory.With in-house training and support, you will develop industry product knowledge that will ensure you can confidently assist our customers.Customer Service Advisorresponsibilities;Greet customers with a friendly attitude as they contact the service department by phone, email, or in personProvide customers with information about parts and service optionsConduct clerical duties, including filing, answering phone calls, responding to emails, and preparing documentsReview technicians' sales orders, process transactions, and send invoicesContact customers to remind them of upcoming service appointmentsHelp customers troubleshoot their technical issuesCustomer Service Advisorskills;Sound organizational skills and attention to detailExcellent verbal and written communication skillsStrong listening and comprehension skillsAbility to lift boxes up to 40lbsAdaptive and flexible in a fast-paced environmentProficient with computers and comfortable with learning new softwareProfessional phone etiquetteExceptional time managementPositive attitudeFrench is an asset, but not requiredWork RemotelyNoJob Types: Full-time, PermanentSalary: $18.00-$23.00 per hourSchedule:8 hour shiftMonday to FridaySupplemental pay types:Commission payWork Location: In person\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"AA823011BD3915ABF8E06E49D733B4D3\",\n            \"cityName\": \"48 Heritage Gate SE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=138b2990cd6acd4b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Perfect Home\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694546811255,\n            \"dateOfPosted\": 1694546811030,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.98854739999999,\n                    \"lon\": -114.0441291\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Heritage Gate SE, Calgary, AB T2H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Perfect Home is now seeking the right candidate for a full-time position as an Customer Service Representative at our Calgary location 3 days a week and 2 days in our Airdrie location.Applicants must be:Comfortable working in an exciting, fast-paced retail environmentHighly skilled in customer service (both by phone and email)Extremely organizedSkilled in time management and staying up to date with in-process files and follow upPassionate about providing excellent customer serviceAble to work independently and as a part of a teamReliableExperience in Customer service in a similar retail field (Furniture, appliances, high-end electronics sales, etc...Job duties include:Answering phones and assisting customers in-store with inquiries or directing incoming calls to the appropriate personsUpdating customers with ETA's on the arrival of their ordersData Entry using QuickbooksFilingPrinting price tagsOrganizing fabric samplesGeneral upkeep of floor detailJob Type / CategoryAs a thriving retailer in the fast-paced furniture industry, the role of Customer Service Representative is critical in ensuring our operations run smoothly and efficiently. The person in this position should have a desire to be a part of a winning team who is willing to go above and beyond to help drive our company toward further success and customer satisfaction.Job Types: Full-time, PermanentSalary: $18.00-$20.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftSupplemental pay types:Overtime payWork Location: In personApplication deadline: 2023-09-16Expected start date: 2023-09-22\",\n            \"location\": \"Heritage Gate SE, Calgary, AB\"\n        },\n        {\n            \"id\": \"C7847D70A24591F4AD6875D295AE6B0F\",\n            \"cityName\": \"6016 Yonge Street, North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=beabcd5e17f3e0a6\",\n            \"jobName\": \"Bi-Lingual Customer Service Representative (Korean And English)\",\n            \"companyName\": \"Hans Lee Insurance Agency\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694546617744,\n            \"dateOfPosted\": 1688059901930,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7542766,\n                    \"lon\": -79.40866609999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Yonge St, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Insurance office is looking for a candidate to fill a full time position. Candidate must be fluent in English and Korean.Candidate will be responsible for assisting clients with their insurance matters. No prior experience required, however previous office experience will be an asset.Candidate must have excellent computer and phone skills.All training will be provided on the job.Job Types: Full-time, PermanentSalary: From $17.00 per hourBenefits:Dental careExtended health careOn-site parkingSchedule:Day shiftMonday to FridayNo weekendsWork Location: In person\",\n            \"location\": \"Yonge Street, North York, ON\"\n        },\n        {\n            \"id\": \"2A91FB5BE94FD6019D1FD47EDF7A98DD\",\n            \"cityName\": \"Antigonish, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1c1b56e5ed91d71a\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"St. Francis Xavier University\",\n            \"rowSalary\": \"$15.93–$19.47 an hour\",\n            \"date\": 1694546281761,\n            \"dateOfPosted\": 1694546281429,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.62266049999999,\n                    \"lon\": -61.9928026\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Antigonish\",\n                \"formattedAddress\": \"Antigonish, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Antigonish County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Antigonish\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Posted: August 28, 2023 Application Deadline (extended): September 18, 2023 Customer Service Representative StFX Store NSGEU Regular Full-TimeClassification: Band 2Salary Rate: $15.93-19.47 (Based on 35 hours per week) Overview StFX is a top ranking Canadian university and we are seeking a Customer Service Representative to be a part of the team at the STFX Store and Academic Services. This opening is for a permanent, full time position. Reporting to the Manager, StFXStore, and operating in conjunction with co-workers within the store, the Customer Service Representative will be responsible for serving various needs of customers and clients of the store. Occasional overtime and alternating weekend work is expected. Responsibilities: Assisting customers in locating desired textbooks, trade books and supplies and in selecting a wide variety retail merchandise, including X-Rings Processing the sale of items via our POS System (BookLog) with timeliness, professionalism, and accuracy Answering phone and email inquiries and / or directing inquiries to appropriate personnel Maintaining a clean and tidy work and display environment. Building retail displays, stocking shelves and packing books and other merchandise for shipment. Providing service support and backfilling for the various store divisions as requested. Providing feedback to management, and area supervisors, arising via customer interaction. Qualifications/Skills: Excellent customer service skills with a focus on professionalism and quality control Excellent time management and organizational skills. Knowledge of Windows XP and MS Office Suite; proficiency in Outlook and Internet Explorer Must be able to work extended hours without sitting and able to lift 25-50lb. Commitment to learn and comply with both University and StFX Store Policies. Ability to work well with others in a cooperative, and often fast-paced, environment. Successful completion of at least one (1) year of post-secondary education would be an asset and a minimum of one (1) year experience in a similar retail environment is required. Application Instructions Closing date for applications is September 18, 2023 at 5:00pm. To apply please submit a letter of application and a resume in confidence to Human Resources, StFX University at careers@stfx.ca. Only those selected for an interview will be contacted. St. Francis Xavier University is located in Mi'kma'ki, the ancestral and unceded territory of the Mi'kmaq People. Our institution is committed to upholding the values of equity, diversity, inclusion and accessibility. We encourage applications from members of groups that have been historically disadvantaged and marginalized, including Indigenous persons (especially Mi'kmaq), racialized persons (especially African Nova Scotians), persons with disabilities, those who identify as women and/or 2SLGBTQIA+ and any others who would contribute to the diversity of our community. Please note that all qualified candidates are encouraged to apply; however, applications from Canadians and permanent residents will be given priority. We are also committed to the elimination of barriers to participation for persons with disabilities. Should you require an accommodation during the recruitment process, please contact Human Resources at hr@stfx.ca or 902-867-5038. About the StFX Store The STFX Store is the principal location for purchasing textbooks for all courses offered by StFX University, including distance courses offered by Continuing Education and Distance Education. The StFX Store also proudly offers a large assortment of StFX crested gifts, books by local authors, and adult and children's clothing. About St. Francis Xavier University Established in 1853, St. Francis Xavier University (StFX) is consistently recognized as one of the best universities in Canada. StFX exceeds the needs of today's undergraduates through providing the very best academic experience - outstanding teaching, exceptional hands-on research opportunities, and global exchanges - all within Canada's most vibrant and inspiring residential campus. Here, the focus is on the academic and the personal development of every student, making community and social engagement a large part of the learning experience. Our students are academically strong and highly engaged in every aspect of life, determined to make a positive impact on the world. In 2022, Maclean's annual university rankings put StFX #1 in student satisfaction and #2 in reputation across Canada in the primarily undergraduate category. For more, visit www.stfx.ca About Antigonish, Nova Scotia The beautiful and historic town of Antigonish is located within the northeastern corner of Nova Scotia. Only a 15-minute drive from the ocean and a two-hour drive to major urban centres, Antigonish is a family-friendly community with a diverse and growing population and provides access to excellent education at all levels. The town is surrounded by rolling countryside and beautiful beaches and is a hotspot for outdoor recreation, sports and other active lifestyle activities. Antigonish supports a vibrant culture in the arts with music, performing arts, visual arts and crafts, and fabulous festivals happening throughout the year. For more information visit www.townofantigonish.ca or www.visitantigonish.ca.\",\n            \"location\": \"Antigonish, NS\"\n        },\n        {\n            \"id\": \"405B7BC35C6C0E12575C235005C28D26\",\n            \"cityName\": \"3019 66 St NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5d53755dbe59db01\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Sweet Castle Bakery\",\n            \"rowSalary\": \"$15–$18 an hour\",\n            \"date\": 1694545108431,\n            \"dateOfPosted\": 1692846934383,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.6065656,\n                    \"lon\": -113.3801256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"24a St NW, Edmonton, AB T5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usSweet Castle Bakery is a small business in Edmonton, AB T6L 4B2. We are social, demanding, fast-paced, and our goal is to Join the Sweet Castle Bakery family, where French-inspired delights meet Edmonton's finest flavors. As the pioneer bakery in the city, we're renowned for crafting exquisite pastries and confections that evoke both nostalgia and innovation. If you're passionate about delivering unparalleled quality and service, and want to contribute to our legacy of delighting loyal customers while enchanting new ones, come be a part of our team and share in the artistry of baking excellence..Our work environment includes:Modern office settingFood providedCustomer Service RepresentativeResponsibilities:- Provide exceptional customer service to clients via phone, email, and chat- Respond to customer inquiries and resolve issues in a timely and professional manner- Analyze customer needs and recommend appropriate products or services- Process orders, returns, and exchanges accurately and efficiently- Maintain customer records and update information as needed- Collaborate with other team members to ensure customer satisfaction- Perform outbound calling to follow up on customer inquiries or resolve any outstanding issuesExperience:- Previous experience in a customer service role preferred- Strong communication skills, both verbal and written- Excellent problem-solving abilities- Ability to multitask and prioritize tasks effectively- Proficient in using computer systems and software applicationsIf you are a motivated individual with a passion for providing exceptional customer service, we would love to hear from you. Join our team and be part of a company that values its employees and offers opportunities for growth.Please note that this position may require occasional evening or weekend availability.To apply, please submit your resume and cover letter detailing your relevant experience. Only qualified candidates will be contacted for an interview.Job Type: Part-timePart-time hours: 25-30 per weekSalary: $15.00-$18.00 per hourBenefits:Store discountDay range:Monday to FridayWeekends as neededFlexible Language Requirement:French not requiredShift:Day shiftAbility to commute/relocate:Edmonton, AB T6L 4B2: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Street NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"D7C45ADFE9CB30AB128870353A47DDEF\",\n            \"cityName\": \"20 Marriott Drive, Moncton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=35d231e84a5c00dd\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Iaa, Inc.\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694544510380,\n            \"dateOfPosted\": 1688061060321,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.0878165,\n                    \"lon\": -64.7782313\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton, NB\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Urgently Hiring, Bilingual French-English, Permanent Full-Time $17/hrIAA, Inc., a leading provider of loss recovery services to the insurance industry in Canada, has an opening for a Customer Service Representative I at our facility in Moncton, NB.IAA is Canada's leading live and live-online salvage vehicle auction company with auction facilities across British Columbia, Alberta, Ontario, Quebec, and Atlantic Canada. IAA's national service offering allows sellers to standardize processes across the country and provides buyers with Canada's most extensive selection of salvage vehicles. IAA (NYSE: IAA) has nearly 4,000 talented employees and more than 200 facilities throughout the US, Canada, and the United Kingdom.The Customer Service Representative addresses all customer inquiries under the direction of the Office Supervisor, including all clerical duties needed in the office.Responsibilities include (but are not limited to the following):Apply knowledge of organization, product services and policies to provide a variety of customer support through mail, telephone and direct personal contactProcess orders and assignmentsEnter data into computer systemReference pricing and delivery informationPerform word processing assignments, filing and related clerical dutiesRespond to customer questions, complaints and requestsSet up new records and maintain existing recordsPerform word processing assignments, filing and related clerical dutiesProcess all necessary paperwork in preparation for auction day, securing necessary approvalsPerforms other duties as assignedEducation & Experience:High School diploma or equivalent experience preferred0-2 years’ previous work experienceJob Requirements:Able to communicate effectively with customersBilingual in English/FrenchAbility to function well as part of a teamBasic computer skillsTime management skillsPositive attitudeAbility to work independentlyClear communication skillsProfessional and clean appearance18 years of age or olderIn return for your excellent skills and abilities, we offer a benefits package including: health insurance, RRSP Employer Matching Contributions, STD/LTD, Life Insurance/AD&D, Employee Stock Purchasing Options.IAA is committed to providing equal employment opportunities regardless of race, religion, creed, color, sex, age, national origin, disability, sexual orientation, gender identity, genetic information, veteran status, citizenship status, or marital status.IAA is a drug-free workplace. EEOE#LI-AS1Job Types: Full-time, PermanentPay: $17.00 per hourBenefits:Dental careEmployee assistance programExtended health careLife insuranceVision careSchedule:8 hour shiftMonday to FridayEducation:Secondary School (preferred)Experience:Customer Support & Client Services Occupations: 1 year (required)Language:French (required)Work Location: In person\",\n            \"location\": \"Moncton, NB\"\n        },\n        {\n            \"id\": \"A49332E29F2B0C8ADA0A672E0A1D7FD4\",\n            \"cityName\": \"1415 Alberni Highway, Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7188c1e6a97f8f54\",\n            \"jobName\": \"Customer Service Supervisor\",\n            \"companyName\": \"Mid Island Liquor\",\n            \"rowSalary\": \"From $19.25 an hour\",\n            \"date\": 1694544207636,\n            \"dateOfPosted\": 1694544207454,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3045941,\n                    \"lon\": -124.3349719\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Parksville\",\n                \"formattedAddress\": \"Alberni Hwy, Parksville, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Parksville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Liquor is looking for a full-time Customer Service Supervisor at our Parksville Liquor Store.Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you!The Customer Service Supervisor position is a developmental role whereby the aim is to move the successful candidate to an Assistant Store Manager (ASM) position within a 12-18 month timeframe (term will be extended in the event there are no ASM positions available within 12-18 months).Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in organizing and directing the activities and operations of the store including but not limited to ordering/receiving merchandise and supplies, organizing and conducting inventory, staff supervision and training, and acting as Health and Safety Committee Liaison.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Supervisor today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. You have a minimum of 1 year liquor retail experience and a valid Serving it Right Certificate (or be willing to get certified prior to your first day).Who we are:Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve.Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op).We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.Job Types: Full-time, Fixed term contractContract length: 12-18 monthsSalary: From $19.25 per hourBenefits:Company pensionDental careDisability insuranceEmployee assistance programExtended health careLife insuranceOn-site parkingPaid time offStore discountTuition reimbursementVision careSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Alberni Highway, Parksville, BC\"\n        },\n        {\n            \"id\": \"6B7A0768C0DCF0C88DB0F4CAA50D06B0\",\n            \"cityName\": \"95 Brown's Line, Etobicoke, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3006e073b47fca5a\",\n            \"jobName\": \"Part Time Call Center Agent\",\n            \"companyName\": \"Brink's Canada Limited\",\n            \"rowSalary\": \"$22–$23 an hour\",\n            \"date\": 1694544181573,\n            \"dateOfPosted\": 1694544181377,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.60122810000001,\n                    \"lon\": -79.54501859999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Brown's Line, Toronto, ON M8W, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Summary:The Brink’s National Client Services (BNCS) department is dedicated to putting the customer at the centre of everything we do while ensuring we deliver Best in Class customer experiences! We are looking for individuals to join our team who are passionate about customers, like to solve problems and offer effectivesolutions.Availability: Monday-Sunday - 10:00-18:00, 11:00-19:00 and 13:00-21:00 shifts and either a Saturday or Sunday shift each week.Location: Etobicoke OntarioKey Responsibilities:Handle inquiries from our internal and external customers relating to our products and services via phone and emailTrouble shoot technical issues with both customers and crew members on a wide range of issues critical to business continuanceEngage with a variety of internal partners to find timely resolution on customer requests and concernsWork within a specified framework and processes to diagnose and resolve issuesExecute the delivery of specific reports through the dayBe engaged to support adhoc projects and be the primary point of contact for customer outreachMust Have Qualifications:A passion for delivering exceptional serviceA positive attitude and a desire to seek ways to improve processes and offer suggestions on how to make things better for all2+ years' experience in a Call Centre, Customer Facing role or Help desk environmentCalm demeanor with the ability to work under pressure and deliver on tight timelinesThe ability to quickly pivot from a technical issue to a billing concern, a phone call to an emailYou are a team player who believes that we win as a team or not at allSome technical savvy and the ability to walk a customer through to a solution over the phoneEffective communication skills both verbal and written – can deliver a message in a concise and easily digestible manner for a wide audienceAbility to work in a 24/7/365 day operation where shifts are scheduled based on business needsExperience working with technologyNice to Have Qualifications:Experience working within the transportation/security industryJob Type: Part-timePart-time hours: 25 per weekSalary: $22.00-$23.00 per hourSchedule:Day shiftEvening shiftMonday to FridayMorning shiftNight shiftWeekends as neededAbility to commute/relocate:Etobicoke, ON M8W 3S2: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (required)Work Location: In person\",\n            \"location\": \"Brown's Line, Toronto, ON\"\n        },\n        {\n            \"id\": \"D74DF14A681AAEC18B0F5EC36405BD6D\",\n            \"cityName\": \"144 Charles St W, Kitchener, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=08aa0ed8b7aa3c4c\",\n            \"jobName\": \"Part-Time U-Haul Rental/Customer Service Representative\",\n            \"companyName\": \"U-Haul Moving & Storage Of Kitchener\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694544175462,\n            \"dateOfPosted\": 1648574413036,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4504563,\n                    \"lon\": -80.4941865\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kitchener\",\n                \"formattedAddress\": \"Charles St W, Kitchener, ON N2G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kitchener\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking a part time Customer Service Representative with flexible hoursMUST have a valid drivers license, minimum G2Primary responsibilities include:Support the site manager with facility operationsAnswer phone inquiries from active and prospective customersShow storage units and explain terms of rental agreementPrepare rental contracts for customersPerform general routine property clean up and minor repair workEnsure all vacant storage units are clean, dry, secure, and available for new customersClick on the link below to learn more about the job.https://www.youtube.com/embed/Z7bFOd9Y2ZUU-Haul offers:Very Competitive PayFlexible HoursUniforms ProvidedRequirements:2+ years of customer service experienceBasic computer skills and knowledgeWell-developed oral, written, and presentation skills, as well as the ability to interact with othersAbility to speak clearly and persuasively in positive or negative situations and responds well to questionsValid driver’s license and the ability to maintain a good driving record to operate commercial motor vehiclesAdhere to all local state and federal vehicular regulations while drivingEducation/Training:High School Diploma or equivalentWork Environment:The work involves moderate risks or discomforts which require special safety precautions, e.g., working around moving parts or machines, fumes or irritant chemicals. May be required to use protective clothing, or gear such as masks, goggles, gloves or shields.Physical Demands:The work requires some physical exertion such as long periods of standing, walking, recurring bending, crouching, stooping, stretching, reaching or similar activities, and lifting a minimum of 50 lbs assisted or unassisted.U-Haul is an equal opportunity employer. All applications for employment will be considered without regard to race, color, religion, sex, national origin, physical or mental disability, veteran status, or any other basis protected by applicable federal, provincial, state, or local law. Individual accommodations are available on requests for applicants taking part in all aspects of the selection process. Information obtained during this process will only be shared on a need to know basis.COVID-19 precaution(s):Personal protective equipment provided or requiredPlastic shield at work stationsSocial distancing guidelines in placeSanitizing, disinfecting, or cleaning procedures in placeJob Duties:Answer incoming customer inquiriesRecord and modify customer information within the databaseEngage with clients in a friendly and professional manner while actively listening to their concernsOffer support and solutions to customers in accordance with the company's customer service policiesOther duties as requestedWork RemotelyNoJob Types: Part-time, PermanentSalary: From $16.00 per hourSchedule:8 hour shiftMonday to FridayWeekend availabilityCOVID-19 considerations:All customer are required to wear a mask, sanitizer available for all customers and staffApplication question(s):Drivers license is requiredEducation:Secondary School (required)Experience:customer service: 1 year (preferred)Licence/Certification:drivers license (required)\",\n            \"location\": \"Charles St W, Kitchener, ON\"\n        },\n        {\n            \"id\": \"0036371CF53397DBA6F937B6DFC2A2BA\",\n            \"cityName\": \"6555 Ch De La Côte De Liesse, Saint-Laurent, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a97de4bbbaea51ff\",\n            \"jobName\": \"Sale/Purchasing And Customer Service Support\",\n            \"companyName\": \"Montreal Polymers\",\n            \"rowSalary\": \"$21–$25 an hour\",\n            \"date\": 1694544086729,\n            \"dateOfPosted\": 1693696247618,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4636212,\n                    \"lon\": -73.7202654\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Ch De La, 10592 De la Côte-de-Liesse Rd, Lachine, QC H8T 1A4, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:· Works under the direction of the CEO and Sales and Purchasing Manager· Assists CEO with sales and marketing efforts to ensure wider reach to clients and potential suppliers· Identifies new markets and potential customers/suppliers, finds new leads· Works in ERP system and ensures accurate data entering,· Manages CRM pipeline for sales and purchasing.· Attends plastic exhibitions, conferences and meetings under the direction of the CEO and Sales/Purchasing Managers. Goes on trips with CEO and Sales/Purchasing Managers to acquire new suppliers and customers· Develops positive relationship with clients and suppliers· Ensures the execution of sales and purchasing deals· Performs other duties as assigned by managementThis description reflects the general details and should not be considered as a detailed description of all work requirements that may inherent in the job nor shall be construed as giving exclusive title to every function described.Qualification & Experience Requirements:· Demonstrated ability to learn software applications and spreadsheet processes and performing maintenance of production data files required.· Intermediate to advances skills with Excel required· Good knowledge of the supply chain processes· Project management experience, experienced use of ERP systems· Must have strong math skills· Ability to work with little supervision while handling multiple prioritiesMust have well developed telephone skills and etiquette and present high level of professionalismRequired Competences:· Good coordination and organizational abilities· Excellent written and verbal communication in English and French· Decisive, assertive, detail oriented, accurate, analytical, deadline-oriented· Customer focused· Excellent problem solving skills· Project management skillsJob Type: Full-timeSalary: $21.00-$25.00 per hourExpected hours: 40 per weekSchedule:Monday to FridayAbility to commute/relocate:Saint-Laurent, QC: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:Sales: 1 year (preferred)Language:English, French (required)Willingness to travel:25% (preferred)Work Location: In person\",\n            \"location\": \"Ch De La Côte De Liesse, Saint-Laurent, QC\"\n        },\n        {\n            \"id\": \"5C21969AB4DD85A00D3D216C667B5064\",\n            \"cityName\": \"579 Kerr St, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a4c95fb3663676a7\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Popeyes Louisiana Kitchen\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694544063453,\n            \"dateOfPosted\": 1659656452705,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4453934,\n                    \"lon\": -79.6845634\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Kerr St, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*The Team member with Popeyes will have skills and behaviors to create memorable experiences for our Guests. A Team member is passionate about providing Guests with the best experience possible. Must be able to follow Cajun Hospitality: Smile, make eye contact, greet the Guest, repeat the order, and thank the Guest. Team members must enjoy working with people who take food seriously yet have fun preparing and serving it. Must be committed to contributing to the collaborative spirit of the team, be energized by the opportunity to learn, grow, and explore your career potential.Essential Duties and ResponsibilitiesGreets Guests with a smile while receiving orders and processing paymentsPrepares and packages food and drink productsResponsible for maintaining the cleanliness of the restaurant, including dining room, restroom & exteriorMaintains health and safety standards in work areasDemonstrate knowledge of the brand and menu itemsCheck food quality and food temperature throughout the day to ensure the food is fresh and safe to serveUnloads and stocks inventory items as neededPrompt and regular attendance on assigned shiftsActs with integrity and honesty, and promotes the culture of PopeyesQualifications and skillsMust be at least sixteen (16) years of ageComfortable working in a fast paced environmentAbility to interact in a positive and professional manner with Guests and coworkersWillingness to learn all areas of restaurant operations & work multiple stationsAvailable to work evenings, weekends and holidaysJob Types: Full-time, PermanentSalary: $15.00-$17.00 per hourAdditional pay:Bonus payTipsBenefits:Company eventsDental careDiscounted or free foodExtended health careFlexible scheduleLife insuranceOn-site parkingProfit sharingStore discountJob Types: Full-time, Part-timeSalary: $15.00-$16.00 per hourBenefits:Dental careDiscounted or free foodExtended health careOn-site parkingVision careFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftEvening shiftSupplemental pay types:TipsAbility to commute/relocate:Oakville, ON: reliably commute or plan to relocate before starting work (required)\",\n            \"location\": \"Kerr St, Oakville, ON\"\n        },\n        {\n            \"id\": \"A2ACA65D29CC0129E2F4F4A9887B1EC0\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cec8d4d48b17dc50\",\n            \"jobName\": \"Mandarin/English Bilingual Customer Service/Scheduler\",\n            \"companyName\": \"Growth Generation Academy\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694544057069,\n            \"dateOfPosted\": 1694544056897,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Requirements:* Chinese/English Bilingual fluently is a must* Experienced in educational organization as an administrator or scheduler at least one year* Familiar with wechat, classin, zoom, google classroom, whatsapp and other app or platform* Good at communication with teachers, tutors and students, parents* Good team player* Detail, specific and accurate* Good at quick respond to customer needs* Good at use of computer and relevant app.* A quick learnerJob requirements:* Communicate between teacher and students, parents for the students' homework, teaching plan, scheduling and specific teaching requirements.* other related tasks* Manage students' homework situation and communicate with parents* Working hour: Monday to Friday at 7am-10am, 6:30pm-9:30pm. Saturday: 7am-10am, 6:30pm-8:30pmJob Type: CasualSalary: $15.50-$16.50 per hourSchedule:Monday to FridayMorning shiftNight shiftWeekends as neededApplication question(s):Do you write and speak English and Mandarin fluently?Do you do job accurately?* Are you good at communication with people？Did you ever work as customer service in educational organization or scheduler, administrator before?Do you do job detail, specific and accurateCan you work: Monday to Friday at 7am-10am, 6:30pm-9:30pm. Saturday: 7am-10am, 6:30pm-8:30pmEducation:Bachelor's Degree (preferred)Experience:scheduler, administrator, customer service: 1 year (preferred)Work Location: Remote\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"BAD6C370AF56BB921FD00913FF4AC7C6\",\n            \"cityName\": \"771 Bedford Highway, Bedford, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e6bce8503cf641db\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Route 66 North\",\n            \"rowSalary\": \"$14.50–$15.00 an hour\",\n            \"date\": 1694543895947,\n            \"dateOfPosted\": 1690835398507,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.72157869999999,\n                    \"lon\": -63.6713822\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bedford\",\n                \"formattedAddress\": \"Bedford Hwy, Bedford, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bedford\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usRoute 66 North is a Veteran-owned and operated motorcycle clothing & accessories store in Bedford, NS. We are innovative, customer-centric, and fun.Our work environment includes:Regular social eventsCasual work attireRelaxed atmosphereOn-the-job trainingCompany perksFlexible working hoursSafe work environmentLively atmosphereOur organization is seeking a Customer Service Representative to join our friendly team. The ideal candidate will take ownership over their work and enjoy the challenge of working in a dynamic and busy office environment. The successful candidate will be responsible for answering customer questions regarding our products and services, helping solve challenges they may be experiencing and prioritizing support requests.Responsibilities:Handle all customer inquiries in a timely and effective manner.Assess and resolve customers' issues, complaints, and problems.Provide regular feedback to management regarding customer satisfaction levels.Gather data on customer satisfaction levels.Use and train on all applicable software packages used by the organization.Verify the facts in situations to ensure they are correct and verifiable.Must be at least 19 years of age (to serve alcohol on our waterfront patio)Other duties as required.Job Types: Part-time, Casual, SeasonalContract length: 2 monthsPart-time hours: 24-30 per weekSalary: $14.50-$15.00 per hourBenefits:Casual dressCompany eventsDiscounted or free foodOn-site parkingSchedule:Day shiftWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Bedford, NS B4A 1A4: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Bedford Highway, Bedford, NS\"\n        },\n        {\n            \"id\": \"C4DAEA62FA15ECCAE1EE18E6F0810808\",\n            \"cityName\": \"637 Berford St, South Bruce Peninsula, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e9d61b430d09d129\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"New Orleans Pizza\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694543721583,\n            \"dateOfPosted\": 1690812654279,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.7375266,\n                    \"lon\": -81.1405109\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Wiarton\",\n                \"formattedAddress\": \"Berford St, Wiarton, ON N0H 2T0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Bruce County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Wiarton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"I am seeking part time help for days, evenings and weekends. 4-5 shifts a week, more hours available if you are willing to work days and nights. 15-20+ hours available. Candidates will be required to work as a team. Previous experience handling money would be an asset.Job Type: Part-timePart-time hours: 15-20 per weekSalary: From $17.00 per hourWork Location: In person\",\n            \"location\": \"BERFORD ST, Wiarton, ON\"\n        },\n        {\n            \"id\": \"10D7F0E095AADE7C8C711330ED20A7E6\",\n            \"cityName\": \"6380 50 Avenue, Red Deer, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fe0683610fc653c5\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Sobeys\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694543679941,\n            \"dateOfPosted\": 1693697584497,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.2720364,\n                    \"lon\": -113.8025523\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Red Deer\",\n                \"formattedAddress\": \"5301 46 Ave, Red Deer, AB T4N 3N3, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Red Deer\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate / CashierWe offer competitive salary and opportunities for professional growth.The cashiers responsibility is mainly to help customers during the checkout process. As a cashier, your job will be serving customers, handling money, counting change, accepting coupons, bagging, collecting carts, and occasional courtesy tasks. We require all staff to maintain a clean and tidy workspace at all times.As a team we must stay professional at all times, calm down situations, and always make the customers feel welcome. Job Types: Casual, Part-timePart-time hours: 20-32 per weekSalary: From $15.00 per hourExpected hours: 20 – 32 per weekBenefits:On-site parkingDay range:HolidaysMonday to FridayWeekends as neededFlexible Language Requirement:French not requiredShift:4 hour shift8 hour shiftAfternoon shiftDay shiftEvening shiftMorning shiftWork setting:Grocery storeAbility to commute/relocate:Red Deer, AB T4N 4C6: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (required)Night Shift (required)Work Location: In person\",\n            \"location\": \"Avenue, Red Deer, AB\"\n        },\n        {\n            \"id\": \"396820766ED15A2C082ACD845CF1A1BA\",\n            \"cityName\": \"CHC Paint & Body Shop Supplies in Woodbridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a82e8ceb3da53454\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Chc Paint & Body Shop Supplies\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694543662244,\n            \"dateOfPosted\": 1694543662053,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7761753,\n                    \"lon\": -79.60924299999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Woodbridge, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usCHC Paint & Body Shop Supplies is a small business in Woodbridge, ON L4L 4Y4. We are professional, agile, innovative, and our goal is to Here we believe that you will grow with the company. We will provide you with the training and tools you need to become the best version of yourself as it fits with the CHC culture and mold. We’re only successful when you are. .In your role as Customer Sales Rep you will be answering incoming customer phone calls and taking orders. You’ll also be serving walk-in customers throughout the day. You’ll need to be able to answer a basic range of questions on products and their use. You will be responsible for utilizing the POS & inventory system to complete day-to-day tasks. You will be directing all incoming and outgoing activity in the branch. Overseeing drivers, managing inventory, and maintaining a positive attitude are all essential to this position.Job Type: Full-timeSalary: From $18.00 per hourBenefits:Company eventsDental careOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Woodbridge, ON L4L 4Y4: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Licence/Certification:Driving Licence (required)Work Location: In person\",\n            \"location\": \"Woodbridge, ON\"\n        },\n        {\n            \"id\": \"53B7DD2250EEFDCC7C79AC47C7682B8E\",\n            \"cityName\": \"1200 Speers Road, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b5e0956d9a11ec85\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Chc Paint & Body Shop Supplies\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694543659311,\n            \"dateOfPosted\": 1694543659105,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4274228,\n                    \"lon\": -79.70875029999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Speers Rd, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usCHC Paint & Body Shop Supplies is a small business in Woodbridge, ON L4L 4Y4. We are professional, agile, innovative, and our goal is to Here we believe that you will grow with the company. We will provide you with the training and tools you need to become the best version of yourself as it fits with the CHC culture and mold. We’re only successful when you are. .In your role as Customer Sales Rep you will be answering incoming customer phone calls and taking orders. You’ll also be serving walk-in customers throughout the day. You’ll need to be able to answer a basic range of questions on products and their use. You will be responsible for utilizing the POS & inventory system to complete day-to-day tasks. You will be directing all incoming and outgoing activity in the branch. Overseeing drivers, managing inventory, and maintaining a positive attitude are all essential to this position.Job Type: Full-timeSalary: From $18.00 per hourBenefits:Company eventsDental careOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Oakville, ON L6L 2X4: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Licence/Certification:Driving Licence (required)Work Location: In person\",\n            \"location\": \"Speers Rd, Oakville, ON\"\n        },\n        {\n            \"id\": \"89586E33CC45C0BF6FD7FD398CCD44A2\",\n            \"cityName\": \"50 Kennedy Rd S, Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bad28675e043a4ec\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"D Light Inc.\",\n            \"rowSalary\": \"$16.00–$20.99 an hour\",\n            \"date\": 1694543658623,\n            \"dateOfPosted\": 1694543658431,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6560885,\n                    \"lon\": -79.6955164\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Kennedy Rd S, Brampton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usD LIGHT INC. is a small business in Brampton, ON L6W 3R7. We are professional, agile and our goal is to D-LIGHT INC is located in Kennedy Square mall (Brampton), Toronto, Mississauga and CherryHill Village Mall (London) is happy to offer its expertise in providing the best quality of TV SERVICE. Our tried and true system is based on many years of cumulative experience. We pride ourselves on setting up our clients for success..Our work environment includes:Modern office settingFood providedJob Title: Customer Service RepresentativeResponsibilities:- Provide exceptional customer service by responding to customer inquiries and resolving issues in a timely and professional manner- Handle a high volume of incoming calls and emails from customers- Assist customers with product information, order status, and general inquiries- Process orders, returns, and exchanges accurately and efficiently- Maintain customer records and update information as needed- Collaborate with other departments to ensure customer satisfaction- Stay up-to-date on product knowledge and company policies to provide accurate information to customers- Identify opportunities for process improvements to enhance the customer experience- Can handle store and over the phone customer-FLEXIBLE TO WORK IN OTHER BRANCH OF THE COMPANY- TECH SAVY IS A PLUSQualifications:- High school diploma or equivalent required; associate's degree preferred- Previous experience in customer service or a related field is a plus- Excellent communication skills, both verbal and written- Strong problem-solving skills and the ability to think quickly on your feet- Ability to multitask and prioritize tasks in a fast-paced environment- Attention to detail and accuracy in data entry and order processingWe offer competitive pay, comprehensive training, and opportunities for career growth within our organization. If you are passionate about providing exceptional customer service and enjoy working in a dynamic team environment, we would love to hear from you.To apply, please submit your resume and cover letter highlighting your relevant experience and why you are interested in this position.Job Type: Part-timePart-time hours: 8-25 per weekPay: $16.00-$20.99 per hourBenefits:Store discountSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayMorning shiftNight shiftOn callOvertimeWeekends as neededSupplemental pay types:Bonus payCommission payOvertime paySigning bonusTipsExperience:Call center: 1 year (required)Customer service: 1 year (required)Work Location: In personExpected start date: 2023-09-18\",\n            \"location\": \"Kennedy Rd S, Brampton, ON\"\n        },\n        {\n            \"id\": \"149742B5A6F82AD3F2A34161E04C4BAF\",\n            \"cityName\": \"759 Yates St, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dc38e8ceb6bbd640\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Peninsula Co-Op\",\n            \"rowSalary\": \"$17.00–$20.44 an hour\",\n            \"date\": 1694543658153,\n            \"dateOfPosted\": 1694543657968,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4255171,\n                    \"lon\": -123.3574492\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Yates St, Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Join our Team! Peninsula Co-op, with a central support office in Victoria, British Columbia and locations throughout Vancouver Island, is a dynamic Co-operative with annual sales in excess of $260 million. As we’ve grown and evolved, our collective roots now date back nearly 60 years, yet we remain a locally-focused Co-op with more than 116,000 members and ambitious plans to continue growing the business. Today Peninsula Co-op encompasses 18 retail gas centres, 9 Liquor Stores, aFood Centre, Commercial Cardlocks and Home Heating services.Peninsula Co-op is inviting applications for the position of Customer Service Representative at our newly acquired Yates Liquor Store (formally Liquor Express) located at 759 Yates Street, Victoria. This is a permanent, part-time role, 8-24 hours each week, applicants must be available for evenings and weekends.Applicants must be at least 19 years of age. WHO WE’RE LOOKING FOR We are a customer first liquor store looking for an individual to join our committed and engaged environment. We have an open, team, and customer-oriented culture that offers career growth and professional development. We are looking for an enthusiastic customer service professionals who:Always look for ways to be helpful and go out of their way to assist others; consistently politeGood with numbers and can handle cash and other basic numerical calculations quickly and accuratelyScan items and process transactions in an accurate and efficient manner including cash, credit and debit transactions and gift card activationsLook out for their safety and the safety of othersValues integrity and honesty; someone to admire and emulateUse your product knowledge to assist customers and answer questionsMust be able to pass a criminal record check.Serving it right certificate required.WHAT YOU’LL BE DOING Besides working with the best group of team mates and serving fantastic customers, you will be cleaning, and stocking the store, and generally ensuring our customers are taken care of and the location is clean and safe. We’ll also train and develop you for Shift Supervisor, Assistant Manager, and Site Manager opportunities if you are looking for advancement! We love to promote from within & over 70% of our leaders started with our organization in roles just like this one!WHAT WE OFFER In addition to a starting wage between $17.00 – $20.44 per hour (experience-based), Peninsula Co-op provides a competitive total compensation package that includes:Great careers and long-term opportunity for personal and professional growthProfit sharing paid four times a year!D 100 - 2261 Keating X Road, Saanichton, BC, V8M 2A5Tel 250.652.5752 peninsulaco-op.comMoving ahead, by giving back EFAPHealth & Wellness reimbursements (gym membership, yoga class, art classes etc.)Educational assistance & tuition reimbursement (100% covered)Social events (Sporting events and concert tickets, company outings)Volunteer opportunities supporting our local community events and charities!Peninsula Co-op is an equal opportunity employer. We take great pride in being a safe and inclusive workplace; supporting and celebrating the diversity of our team. We are committed to every staff member enjoying their experience working with Peninsula Co-op. We reward hard work, commitment, and results.HOW TO APPLY Any way you like! On-line through Indeed, or at www.peninsulaco-op.com. or Jen in Human Resources, 778-426-8120 if you have any questions. Posted: September 12, 2023D 100 - 2261 Keating X Road, Saanichton, BC, V8M 2A5Tel 250.652.5752 peninsulaco-op.comMoving ahead, by giving back Job Types: Part-time, PermanentPart-time hours: 8-24 per weekSalary: $17.00-$20.44 per hourBenefits:Company eventsEmployee assistance programProfit sharingTuition reimbursementWellness programSchedule:Evening shiftEvery WeekendNight shiftAbility to commute/relocate:Victoria, BC V8W 0E2: reliably commute or plan to relocate before starting work (required)Application question(s):Do you have Serving it Right Certification?Are you legally entitled to work in Canada?Work Location: In person\",\n            \"location\": \"Yates St, Victoria, BC\"\n        },\n        {\n            \"id\": \"699996A6B9DF1E3D0A8D7723443ED515\",\n            \"cityName\": \"4700 Kingsway, Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=770c4757b88c183f\",\n            \"jobName\": \"Castella Cheesecake Hiring Cashiers/Customer Service\",\n            \"companyName\": \"Castella Cheesecake Inc.\",\n            \"rowSalary\": \"$17.50–$20.00 an hour\",\n            \"date\": 1694543628632,\n            \"dateOfPosted\": 1694543628439,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.22315889999999,\n                    \"lon\": -122.9831859\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Kingsway, Burnaby, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Locations for hiring:Castella Cheesecake Metrotown StoreWith the rapid expansion of the company.Our little bakery brand is hiring Front Cashier/Customer Service. We are looking for experienced people join in our team.Job Description: -Will be working as store front staff (cashier/customer service）Salary：Starting Hourly wage 17.50-20 /hr (tips included) based on experienceExtended health, dental and vision benefit available after 12 months.Responsibilities· Manage transactions with customers using card machine· Sell goods and ensure pricing is accurate· Collect payments whether credit or debit· Issue receipts, refunds or change· Cross-sell products and introduce new ones· Resolve customer complaints, guide them and provide relevant information· Greet customers when entering or leaving the store· Maintain clean and tidy checkout areas· Track the inventory daily· Bag, box or gift-wrap packagesRequirements:Holding work permit or PR or CitizenAble to work full day shifts ( 5 days full time 8hr/day). Available to work over-time when required.Able to work both weekend.Have access to a daily vehicle or can transit to work on timeObtained Food Safe Level 1 or plan to obtain one on your own within first one months of hiring.Speaking English fluently.Passion to pursue your career as an entrepreneur. Work conscientiously and responsibly.Willing to learn new skill sets and subjects constantly.Please apply by email. ( Include your resume + state your availability and length of time intended to work)Potential applicants will be contacted by text message/call to schedule for an interview. Thanks!Job Types: Permanent, Full-timeSalary: $17.50-$20.00 per hourBenefits:Store discountFlexible Language Requirement:French not requiredShift:8 hour shiftExperience:food and beverage customer service: 2 years (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In personExpected start date: 2023-09-20\",\n            \"location\": \"Kingsway, Burnaby, BC\"\n        },\n        {\n            \"id\": \"BF648A77D81727602AB57816C27FB4EA\",\n            \"cityName\": \"517 King St, Bridgewater, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=046430a0811bee71\",\n            \"jobName\": \"Customer Service Assistant\",\n            \"companyName\": \"Northwood Custom Jewelry\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694543052021,\n            \"dateOfPosted\": 1694543051845,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.3850772,\n                    \"lon\": -64.5265088\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bridgewater\",\n                \"formattedAddress\": \"King St, Bridgewater, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bridgewater\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Overview: We're searching for a dedicated and charismatic individual to join our team as a full-time Customer Service Representative. This role is the heart of our operation, ensuring that every customer feels the warmth and care that defines our brand. If you have a passion for helping customers, an interest in learning about our unique products, and can handle multiple tasks reliably, we want you to be part of our team.Key Responsibilities:Customer Care: Provide exceptional customer service in person, over the phone, and via email, creating a welcoming and inclusive atmosphere.Shipping and Receiving: Manage shipping and receiving processes with precision to ensure the safe arrival of our beautiful jewelry.Order Organization: Maintain order organization within the office to streamline daily operations.Showroom Care: Contribute to the presentation of our jewelry cases and showroom, creating a captivating experience for our customers.Miscellaneous Tasks: Be ready to assist with various duties, including inventory, pricing, and store setup/display creation.Online Tools: Utilize various online tools for shipping, communication, and organization, with a willingness to adapt to new platforms.Communication Skills: Demonstrate excellent verbal and written communication skills to engage effectively with customers and team members.Self-Sufficiency and Time Management: The ideal candidate should possess strong organizational skills and self-discipline to efficiently manage their daily tasks. You will be responsible for various aspects of customer service, office organization, and more. Being able to prioritize and manage your workload independently is a crucial skill to thrive in this role.Reliability: Commit to a full-time schedule, Monday to Friday, from 9:00 AM to 5:30 PM, ensuring consistent and dependable presence.Additional Considerations:We are a jewelry store that sells many custom wedding and engagement rings. We often work with same sex couples and any employee must be able to serve all couples with the same care and enthusiasm. Love is love.We have a 40lb dog that works with us at the location. She is hypo-allergenic and very friendly, and she will want to be part of your day.About Us: Since our founding in 2012, Northwood Custom Jewelry has been crafting fine jewelry with a focus on ethical materials. Located on the picturesque south shore of Nova Scotia in Bridgewater, we are a small, close-knit team dedicated to celebrating love in all its forms. From crafting custom wedding and engagement rings to serving diverse couples, we believe that love knows no bounds.If you're ready to be part of our authentic and passionate team, where each day brings opportunities to create something special, we invite you to apply. Join us in spreading love through the artistry of custom jewelry while enjoying a reliable full-time schedule.Please reply with your resume along with a short introduction on why you feel you'd be a good fit for this position.Job Type: Full-timeSalary: $17.00 per hourBenefits:Dental careExtended health careOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Bridgewater, NS: reliably commute or plan to relocate before starting work (required)Application question(s):Can you tell us why you're interested in this position and why you feel you'd be a good fit with our team?Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"King St, Bridgewater, NS\"\n        },\n        {\n            \"id\": \"F6384D67F9776B36921174FCB0F33862\",\n            \"cityName\": \"Happy Valley-Goose Bay, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=689e917569a63b1d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Enterprise Holdings\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694543042060,\n            \"dateOfPosted\": 1694543041881,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.3016826,\n                    \"lon\": -60.3260842\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Happy Valley-Goose Bay\",\n                \"formattedAddress\": \"Happy Valley-Goose Bay, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 10\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Happy Valley-Goose Bay\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" The Customer Service Representative will provide a high level of customer service by assisting both internal and external customers, primarily face-to-face, supporting their branch and rental needs. The CAR Sr will gain knowledge through local training and hands-on experience to provide administrative support, service customers, and act as a rental back-up in a large home city branch or airport location. This role is available as regular part time  Opening available at the following branch location: 6 Vulcan Rd, Happy Valley-Goose Bay, NL A0P 1C0 This is a part time position that pays $19.00 / hour We offer:  Employee discount Retirement savings plan Training and development Responsibilities: Take incoming calls- reservations, rate quotes, general questions and answers, provide information and resolution for customers, other branches, insurance companies, dealerships, repair shops and other vendors  Manage outgoing calls for callback management, A/Rs and miscellaneous calls as assigned  Provide a high level of customer service by assisting customers and assessing their rental needs in person and over the phone  Meet and greet customers in a friendly and timely manner  Provide directions and general assistance  Assist to assess condition of rental upon return  Process returns, check-ins and exit kiosk transactions  Effectively market the company while picking up customers up and/or dropping off customer in a safe and courteous manner and assisting customers as needed  Understand and communicate rental terms and conditions, vehicle features and other services  May sell optional protection products, upgrades, fuel options and other additional equipment  Responsible for notifying Management of any known vehicle problems and any required vehicle maintenance  Clean vehicle interior and exterior by hand or by operating washing equipment when needed  Perform various administrative and basic accounting functions such as: research and billing support tasks, accounts receivables, transfer and key logs, run miscellaneous reports, supply maintenance, process customer billing  Perform miscellaneous and backup duties job-related duties as assigned  Equal Opportunity Employer/Disability/Veterans Qualifications: Must be at least 18 years of age. High school diploma or above required; some college preferred Must have at least 1 year prior customer service, retail, or administrative support experience Must have a valid Class 5 drivers license with no more than 2 moving violations and/or at-fault accidents on driving record in the past 3 years No drug or alcohol related conviction on driving record in the past 5 years Must be authorized to work in Canada and not require work authorization sponsorship by our company for this position now or in the future. \",\n            \"location\": \"Happy Valley-Goose Bay, NL\"\n        },\n        {\n            \"id\": \"B8AB639B0C25DF8AC31894FED2F5F0FE\",\n            \"cityName\": \"2190 Boul Le Corbusier, Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bf46a31f2dcd3f77\",\n            \"jobName\": \"Customer Service Representative/Sales Associate\",\n            \"companyName\": \"Lierre Import & Export Inc.\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694543022376,\n            \"dateOfPosted\": 1694543022206,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.57645549999999,\n                    \"lon\": -73.7428297\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Boul le Corbusier, Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Lierre.ca is looking for a candidate who has experience in customer service or has held a position as sales in the retail industry. The ideal candidate must be detail oriented, a fast learner, collaborative and can work with least supervisionMain Responsibilities:You will be responsibility of overseeing customer service including answering customer’s questions by phone, email and through our online customer service system.Be responsible for company correspondence both incoming and outgoingManaging practitioner’s schedules: booking appointments, answering questions, and receiving paymentsAssist inventory management including stock inventory receiving, incoming orders from our manufacturers, and cross-checking information.Introduce our products and help with sales service in show roomEnsure the reception and show room is clean and organizedPerforming other miscellaneous office tasks as assigned.Knowledge and Skills Required:At least 3 years previous experience in a customer service/secretary /sale in retail stores, e-commerce business or medical clinic is an assetsStrong computer proficiency and knowledge with Windows 10, Word, Excel, and other office software.Must be a fast learner and have the capacity of working with minimal supervisionStrong communication and interpersonal skills are a mustMust be able to work under pressure and in fast pace environmentMust be able to multi-task as well as a collaborative work capacity is a mustMust be fully bilingual (English and French), writing skills are requiredBenefits:- Competitive salary- Health insurance options- Paid time off- Retirement savings plan- Opportunities for career growth and advancementIf you are a motivated individual with a passion for providing exceptional customer service, we would love to hear from you. Apply now to join our team as a Customer Service Representative!Représentant(e) du service client/ventesLierre.ca est à la recherche d'un(e) candidat(e) ayant de l'expérience en service à la clientèle ou ayant occupé un poste de vendeur dans le secteur du commerce de détail. Le(la) candidat(e ) idéal(e) doit être soucieux(se) du détail, apprendre vite, collaborer et pouvoir travailler avec un minimum de supervision.Principales responsabilités:Vous serez responsable de prendre en charge le service client, notamment en répondant aux questions des clients par téléphone, par courriel et via notre système de service client en ligne.Être responsable de la correspondance de l'entreprise, autant entrante que sortanteGestion des plannings des praticiens: prise de rendez-vous, réponse aux questions et réception des paiements.Aider à la gestion des stocks, y compris la réception des stocks, les commandes entrantes de nos fabricants et la vérification croisée des informations.Présenter nos produits et aider au service de vente dans la boutique.S'assurer que la réception et la boutique sont propres et organisées.Effectuer diverses autres tâches de bureau assignées.Connaissances et compétences requises:Au moins 3 ans d'expérience au service à la clientèle/secrétariat/vente dans un magasin de détail, une entreprise de commerce électronique ou une clinique médicale est un atout.Solide maîtrise de l'informatique et connaissance de Windows 10, Word, Excel et autres logiciels de bureau.Doit apprendre vite et avoir la capacité de travailler avec un minimum de supervision.De solides compétences en communication et en relations interpersonnelles sont indispensables.Doit être capable de travailler sous pression et dans un environnement à rythme rapide.Doit être capable d'effectuer plusieurs tâches à la fois et le fait d’avoir une capacité de travail collaboratif est indispensable.Doit être entièrement bilingue (anglais et français), des compétences rédactionnelles sont requises.Pour postuler:Si vous êtes intéressé, veuillez nous soumettre votre CV, une lettre de motivation et votre salaire attendu.Job Types: Permanent, Full-timeSalary: $16.00-$20.00 per hourBenefits:Casual dressCompany eventsOn-site parkingStore discountSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Laval, QC H7S 2C9: reliably commute or plan to relocate before starting work (required)Education:DCS / DEC (preferred)Shift availability:Day Shift (preferred)Work Location: In personExpected start date: 2023-10-02\",\n            \"location\": \"Boulevard Le Corbusier, Laval, QC\"\n        },\n        {\n            \"id\": \"DE809E25D101CE0B210915E433EED3D9\",\n            \"cityName\": \"Peace River, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3de4f616ea4f33c8\",\n            \"jobName\": \"Customer Service/Office Assistant\",\n            \"companyName\": \"Rendez Vous Rv Park\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694542739249,\n            \"dateOfPosted\": 1692846382916,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 56.2331099,\n                    \"lon\": -117.3340936\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Peace River\",\n                \"formattedAddress\": \"Peace River, AB T0H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 19\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Peace River\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Rendez Vous RV Park and East Side Storage is seeking a friendly, customer-service orientated individual to fill a full-time position for the rest of the Summer that progresses into a part-time position for the Winter. This position is the Customer Service Office Assistant position located at the RV Park in Northern Sunrise County.If you enjoy meeting people from all over the world, have a creative mind, are comfortable in a changing pace environment and can work independently, then this is the job for you.Position Overview:Completing reservations for campground, Uhaul and storage facilityTelephone/reception dutiesCampground AuditsWeekly Storage AuditsCollection callsPromoting and advertising park and storage facility social media sites (create posts)Welcoming guests and helping to optimize their vacation experienceResponsible for providing service to self-storage customers and processing of U-Haul rentals.Promote tourism in our areaHandling cash and doing a daily cash out reportInventory updates and auditsOur ideal candidate will have strong initiative, confidence and possess excellent written and verbal communication skills. They will demonstrate an active interest in the company’s well-being. Be friendly and committed to providing each guest with exceptional customer service. They will be organized, eager to learn, able to work well in a team environment and must be able to work with minimal supervision. Have experience with social media posts advertising. Exceptional time management and organizational skills, react well to challenges, and anticipate needs.All service functions are automated, so comfort with computers is essential to this role. Experience with a computer-based point of sale system, hospitality & tourism is an asset. Keep in mind thisposition also requires candidate to work evenings and weekends and has some hands on/physical tasks.Required Education:Grade 12 DiplomaPrevious office experienceCustomer Service ExperienceSalary: Based on experience starting at $17/hrWe thank all applicants for their interest in the position, however, only those selected for interview will be contacted. Position will remain opened until a qualified candidate is hired.Apply on indeed or Send resume to support@rvpeaceriver.com or drop resume off at the RV park 950 Woods Road – Behind Northern Sunrise County Administration BuildingJob Types: Full-time, Part-time, Permanent, CasualPart-time hours: 20-25 per weekPay: $17.00-$19.00 per hourBenefits:Casual dressCompany eventsFlexible scheduleOn-site parkingFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftEvening shiftHolidaysMorning shiftWeekends as neededAbility to commute/relocate:Peace River, AB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Peace River, AB\"\n        },\n        {\n            \"id\": \"84761174B270F488AAD13535F6525633\",\n            \"cityName\": \"13 Harbour View Dr, Shediac, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=52943ba21cc8e674\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Enterprise Holdings\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694542724961,\n            \"dateOfPosted\": 1688898817311,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.2056036,\n                    \"lon\": -64.5692511\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Shediac\",\n                \"formattedAddress\": \"Harbour View Drive, Shediac, NB E4P, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Shediac\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Harbour View Dr, Shediac, NB Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" The Customer Service Representative Sr (CAR Sr) will provide a high level of customer service by assisting both internal and external customers, primarily face-to-face, supporting their branch and rental needs. The CAR Sr will gain knowledge through local training and hands-on experience to provide administrative support, service customers, and act as a rental back-up in a large home city branch or airport location. This role is available as regular full time.  Opening available at the following branch location: 13 HARBOURVIEW DRIVE, SHEDIAC, NB E4P 8T8This is a full time position that pays $ 17.00 / hour We offer:  Paid time off Employee discount Retirement savings plan Extended Health Benefits (Medical, Prescription Drug, Dental and Vision) Life Insurance Training and development Schedule Monday - Friday: 7:30am - 5:00pm Responsibilities: Take incoming calls- reservations, rate quotes, general questions and answers, provide information and resolution for customers, other branches, insurance companies, dealerships, repair shops and other vendors  Manage outgoing calls for callback management, A/Rs and miscellaneous calls as assigned  Provide a high level of customer service by assisting customers and assessing their rental needs in person and over the phone  Meet and greet customers in a friendly and timely manner  Provide directions and general assistance  Assist to assess condition of rental upon return  Process returns, check-ins and exit kiosk transactions  Effectively market the company while picking up customers up and/or dropping off customer in a safe and courteous manner and assisting customers as needed  Understand and communicate rental terms and conditions, vehicle features and other services  May sell optional protection products, upgrades, fuel options and other additional equipment  Responsible for notifying Management of any known vehicle problems and any required vehicle maintenance  Clean vehicle interior and exterior by hand or by operating washing equipment when needed  Perform various administrative and basic accounting functions such as: research and billing support tasks, accounts receivables, transfer and key logs, run miscellaneous reports, supply maintenance, process customer billing  Perform miscellaneous and backup duties job-related duties as assigned  Equal Opportunity Employer/Disability/Veterans Qualifications: Must be at least 18 years of age. High school diploma or above required; some college preferred Must have at least 1 year prior customer service, retail, or administrative support experience Must have a valid Full Class 5 Canadian drivers license with no more than 2 moving violations and/or at-fault accidents on driving record in the past 3 years No drug or alcohol related conviction on driving record in the past 5 years Must be authorized to work in Canada and not require work authorization sponsorship by our company for this position now or in the future.  Apart from religious observation, must be able to work the following schedule: Monday - Friday: 7:30am - 5:00pm\",\n            \"location\": \"Harbour View Dr, Shediac, NB\"\n        },\n        {\n            \"id\": \"6C2C80DD3DC3B8CBC44F2834585FD3B8\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5e377b3e2dbcf641\",\n            \"jobName\": \"Représentant Bilingue Du Service à La Clientèle / Bilingual Customer Service Rep\",\n            \"companyName\": \"Voxdata\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694542662469,\n            \"dateOfPosted\": 1694542662274,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*English version to follow* *NB : Nous n'acceptons que les candidatures provenant de la grande région de Montréal car la formation se fait à partir du bureau.* *Nous exigeons que nos candidats parlent anglais car certains de nos clients sont à l'extérieur du Québec et ne parlent que l'anglais.* Prêt à vous joindre à l'un des plus importants centres d'appels de Montréal ! VOXDATA vous attend ! Nous cherchons à agrandir notre équipe avec de nouveaux membres qui sont prêts à devenir nos prochains experts en offrant la meilleure expérience client possible ! Pour avoir une meilleure idée de notre entreprise et de nos valeurs, vous pouvez consulter notre site web ici ! https://www.voxdata.com/ Voici quelques raisons pour lesquelles il fait bon travailler chez VOXDATA : Une variété de types de postes, allant du service à la clientèle aux ventes, en passant par le soutien technique, avec des rôles uniquement en anglais ou bilingues et des options d'horaire variées - nous voulons mettre en valeur vos compétences uniques dans un poste qui vous convient le mieux !Un bureau facilement accessible et convoité au cœur du centre-ville de Montréal, et la possibilité de travailler à domicile pour nos postes hybrides !Un environnement de travail diversifié, positif et encourageant, notre objectif étant d'aider nos agents à briller et à réussir au maximum de leur potentiel !Les avantages et les bénéfices pour les employés tels que les plans de primes inclus dans nos postes, les primes supplémentaires pour les personnes les plus performantes (comme des cartes cadeaux et de l'argent supplémentaire !), les couvertures d'assurance, et les primes de recommandation des employés qui peuvent aller jusqu'à 1000 $ par personne !La possibilité d'évoluer et de développer vos compétences par le biais de réunions d'équipe, de séances de coaching individuel et d'évaluations des performances, toutes conçues pour vous aider à renforcer vos capacités et à devenir un maître dans votre travail !Des opportunités de développement interne ouvertes à tous - avec des rôles tels que chef d'équipe, coach, formateur, mentor et même des postes administratifs, nous sommes fiers de toujours nous tourner vers le personnel que nous avons déjà avec nous pour le promouvoir lorsque l'occasion se présente !Pour ce poste, vous travaillerez avec une société d'aviation bien établie. Vos tâches spécifiques seront les suivantes : Fournir un service à la clientèle de premier ordre à chaque interaction avec les clients.Répondre aux appels entrants des clients pour les aider à effectuer des réservations une fois qu'elles ont été achetées.Résoudre les problèmes liés à l'accès aux billets et à la navigation sur le site web.Répondre aux questions concernant les informations sur les billets ou aux questions générales sur les réservations.Ready to join one of the leading call centers in Montreal?! VOXDATA is waiting for you! We're looking to expand our team with new members who are ready to become our next experts in delivering the best customer experience possible! To get a better idea of our company and values, you can check out our website here! https://www.voxdata.com/ Here's a few reasons why it's great to work at VOXDATA: A variety of position types, ranging from customer service, sales, and technical support, with English-only or bilingual roles and ranging scheduling options – we want to highlight your unique skillset in a position that is best suited to you!An easily accessible and coveted office location in the heart of Downtown Montreal, and the option to work from home with our hybrid roles!A diverse, supportive, and encouraging work environment, our goal is to help our agents shine and succeed to their fullest potential!Employee benefits and perks such as bonus plans included into our positions, additional bonuses for top performers (like gift cards and extra money!), insurance coverages, and employee referral bonuses that can go up to $1000 per person!The chance to grow and develop your skills through team meetings, individual coaching sessions, and performance reviews; all designed to help you further strengthen your abilities and become a master at your job!Internal growth opportunities that are open to everyone – with roles like team leader, coach, trainer, mentor, and even administrative positions; we pride ourselves on always looking to the staff we already have with us to promote when the occasion arises!For this role, you will be working with an established aviation company. Your specific tasks will include: Providing top-tier customer service to clients in every interaction.Answering inbound calls from customers to assist with bookings/reservations after they have been purchased.Resolving issues relating to ticket access and website navigation.Answering questions regarding ticket information, or general questions about bookings/reservations.Requirements Qu'est-ce qui fait de quelqu'un un excellent candidat ? Nous recherchons des personnes qui : Disponible pour travailler 40 heures par semaine, du lundi au dimanche, de 7h00 à minuit, de préférence le soir et le week-end.Ont déjà travaillé dans le service à la clientèle, les ventes ou les centres d'appels, ou ont une expérience traduisible dans d'autres secteurs.Sont bilingues en français et en anglais.Vous pouvez apprendre à utiliser et à faire fonctionner plusieurs programmes informatiques avec facilité.Être disponible pour travailler le soir et le week-end si la campagne est opérationnelle pendant ces périodes.Avoir obtenu un diplôme de fin d'études secondaires ou un diplôme équivalent.Se considèrent comme des personnes capables de résoudre des problèmes, de s'adapter à des situations changeantes et sont motivées pour être les meilleures des meilleures !What do we think makes someone a great candidate?! We're looking for people who:Are available to work 40 hours/week within the operational hours of Monday to Sunday, between 7:00 AM to 12:00 AM (midnight), evening and weekend availability is preferred.Have worked in customer service, sales, or call centers before; or have translatable experience from other industries.Are bilingual in French and English.Can learn how to use and operate multiple computer programs with ease.Have graduated high school or have an equivalent diploma.Consider themselves to be problem-solvers, adaptable to changing situations and are motivated to be the best of the best!Benefits Soumettez votre candidature dès maintenant pour lancer le processus d'embauche et voyez par vous-même pourquoi il est formidable d'être un agent VOXDATA !Ce poste est assorti d'un salaire de base de 17,00 $/heure. Submit an application now to get the hiring process started and see for yourself why its great to be a VOXDATA agent! *This position has a base salary of $17.00/hour.*\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"D31E0751E52C34628DDEC118A0DD5AE7\",\n            \"cityName\": \"Coquitlam, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d3708956fdd4fae6\",\n            \"jobName\": \"Customer Service/Inside Sales\",\n            \"companyName\": \"Waste Control Services\",\n            \"rowSalary\": \"$45,000–$50,000 a year\",\n            \"date\": 1694542590634,\n            \"dateOfPosted\": 1694542588403,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2837626,\n                    \"lon\": -122.7932065\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Coquitlam\",\n                \"formattedAddress\": \"Coquitlam, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Coquitlam\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Waste Control Services, we understand the responsibility in front of us and the torch we hold in our line of work. Calling Greater Vancouver, British Columbia our home is a privilege in that we are surrounded by sustainability changemakers – groups who understand the impact they have on the world around them, and are deeply passionate about being a part of that positive change and making waves. In that same vein, WCS is the most comprehensive recycling collection and post-collection company in the region, and we are a recognized industry leader in helping customers achieve their sustainability goals. Our Sales department is undergoing a rapid transformation, and we are currently seeking a dedicated, confident, and enthusiastic individual looking for an opportunity to learn our industry. The Customer Service/Inside Sales Role is a fast-paced, customer satisfaction-driven position within the department, and offers the potential for career growth and future opportunities within the Sales team. The successful candidate will be responsible for providing exceptional customer service and assisting new clients with services available. If your values align with ours and you enjoy a challenge, this is the role for you. Responsibilities:Answer incoming customer calls quickly and efficiently.Respond to questions and concerns about service via phone, email, fax.Consult with customers and evaluate needs to determine best options.Build sustainable relationships and trust with customers through open and interactive communication.Handle customer complaints, provide appropriate solutions and alternatives as quickly as possible.Keep records of customer interactions.Go the ‘extra mile’ to engage customers.Escalate issues as required, i.e., to Operations Manager/Sales Manager.Provide additional service options where appropriate.Assist with inputting and processing contracts and service change forms as needed.Respond to leads that come into the Sales office via online and phone inquiries – identifying customer needs, qualifying them into the proper services, preparing and providing rate quotations.Performing site checks for customers that have come in through leads.Preparing and signing contracts for leads that have agreed to start service with us and collecting keys/fobs as needed for site access prior to service commencement.Processing service changes for new accounts that the Inside Salesperson has onboarded.Obtaining and/or processing service increases for House and Property Management accounts handled by the Sales office in response to driver issues, overweight charges, etc.Assisting with RFP ('Request For Proposal') or tender response preparation for Property Management accounts handled by the Sales office.Other duties as assigned. To be Successful:Must possess a valid Class 5 BC driver’s license.Exceptional written and verbal communication skills.Ability to multi-task, prioritize and manage time effectively.Strong attention to detail and excellent organizational skills, while being adaptable to changing priorities.Customer orientation and ability to adapt/respond to different types of characters.Demonstrate empathy, sincerity and integrity when interacting with customers.Display a positive, ‘can do’ attitude towards your work.Self-motivated, goal oriented while having the ability to work independently and in a team environment with the desire to go above and beyond to contribute to the Team’s successes. What we offer:Great Company culture, employee of the month/year, monthly events, etc. This is a permanent, full-time position that works Monday through Friday.$45,000-$50,000 per yearCompetitive benefits package including premiums paid for by the CompanyDPSP/GRRSPWork in a dynamic, collaborative, progressive and high-performing teamWaste Control Services has been a reputable employer for 29 years - come join our team and work with positive people who love what they do! We thank all applicants who have shown an interest in this position. However, we will only be contacting those candidates who are under further consideration.\",\n            \"location\": \"Coquitlam, BC\"\n        },\n        {\n            \"id\": \"19415C20CB58FF5C8FDF38F87CA116C3\",\n            \"cityName\": \"1a-1881 Steeles Ave W, North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=09d21fee2ff7097a\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Ups Canada\",\n            \"rowSalary\": \"$15.50–$16.00 an hour\",\n            \"date\": 1694541392750,\n            \"dateOfPosted\": 1694416794581,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:Primary responsibility is to deliver world-class customer service to customers. This requires strong interpersonal skills, effective oral/written communication skills and the ability to work well with others.Computer application knowledge, including Microsoft Office (Word and Excel), is recommended and may be required.Knowledge of Internet applications is preferred.Job Types: Part-time, Full-timePart-time hours: 20 per weekSalary: $15.50-$16.00 per hourSchedule:4 hour shift8 hour shiftMonday to FridayWeekends as neededAbility to commute/relocate:North York, ON: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"031E1C81D5314EB506F7843709D839C9\",\n            \"cityName\": \"2020 Rte Transcanadienne, Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a35b68fa6cb59aaa\",\n            \"jobName\": \"Inside Phone Sales Associate\",\n            \"companyName\": \"Assante Wealth Management Ltd\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694541329437,\n            \"dateOfPosted\": 1660324508513,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4903742,\n                    \"lon\": -73.7495411\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Rte Transcanadienne, Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Assante Capital Management Ltd. is one of Canadas largest independent investment firms.This is a great opportunity to join our expanding inside sales team. We are looking for motivated sales reps to generate new prospective clients for our financial advisors.Qualifications:Experience in cold calling a must.Must be assertive and well-spoken.Bilingual preferred but English only accepted.Sales driven with a positive attitude.Ability to work independently.Lead list is provided.This is a permanent part time position that may lead to full time pending results.Start date is immediate.We offer excellent salary plus bonus for qualified candidates.Hours are Monday to Thursday 5:00 p.m. to 9:00 p.m.Serious candidates only please contact 514 832 5148 to arrange for interview.Work remotelyTemporarily due to COVID-19Job Types: Part-time, PermanentSalary: $18.00-$25.00 per hourBenefits:Casual dressOn-site parkingSchedule:No weekendsSupplemental pay types:Bonus pay\",\n            \"location\": \"Rte Transcanadienne, Dorval, QC\"\n        },\n        {\n            \"id\": \"E3E0620CAEAAF6214C6F10EDC5123B47\",\n            \"cityName\": \"Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f113ff2e4eadffa1\",\n            \"jobName\": \"Customer Service Agent Outbound (Remote) - Nova Scotia\",\n            \"companyName\": \"National Diabetes Trust\",\n            \"rowSalary\": \"$15.70 an hour\",\n            \"date\": 1694541110611,\n            \"dateOfPosted\": 1694239174331,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our Organization The National Diabetes Trust is Canada’s largest charitable clothing and small household good collection service. With more than 5,000 donations bins and an active home pick-up service in communities across Canada (excluding Quebec), we collect unwanted gently used clothing and household items, using them to raise much-needed funds for Diabetes Canada.  Each year, the program diverts more than 100 million pounds of clothing and household items from landfill sites across Canada. As an employee on the National Diabetes Trust team, you are part of our national coverage in 2,500 communities, with 28 operations and 100 trucks. Join a team that is making a difference raising money for life altering charitable programs, all while helping the environment. What We Offer:Work from the comfort of your own homeEmployee Assistance Program (EAP)Registered Pension Plan (100% Employer-paid) once eligibility criteria are metCorporate discounts through Perkopolis, Value Village and GoodLife FitnessHours of Work* This role will work up to 29 hours per week in 6-hour daily time blocks, including weekends. A consistent schedule will be developed in collaboration with operational needs.  About the Outbound Customer Service Agent Role Reporting to the Virtual Contact Centre Supervisor, this role is responsible for soliciting, scheduling and confirming donation pick ups of reusable clothing and small household goods from the public. While there is no sales component to this role – we are seeking outgoing individuals with a focus on providing a “best in class” customer experience. Highlights of the role include:To solicit, schedule and/or confirm donations of reusable clothing and miscellaneous itemsThis is accomplished by reading from a standardized script to verify donor informationTo meet or exceed KPI targets and/or productivity standards as outlined by the SupervisorTo understand and promote the mission of Diabetes Canada and the National Diabetes Trust to the general publicProvide potential donors with a high level of customer service by demonstrating a professional manner, discipline and strong organizational skillsInform the Supervisor of any system or process discrepanciesMaintain accurate and up to date recordsAttend all scheduled shifts, training, and meetings as determined by the SupervisorMaintain confidentiality of donor informationAdditional duties as required, ensuring the effective operation of the Virtual Contact Centre function About You The selected candidate for this role will meet the following minimum requirements: Minimum High School Diploma6+ months of experience in customer service and/or a call centre environmentMust have in working order at all times a PC home computer, direct connect (wired) high speed internet (no Wi-Fi/router), a USB noise cancelling headset, and either an All-in-One Printer (copier, scanner, printer) OR the ability to sign documents electronically.Must have full availability between the hours of Monday-Friday 3pm-9pm EST and Saturdays and Sundays 11am -5pm EST.Strong computer skills and experience with computer databases (mouse, keyboarding, opening/closing programs, locating files, installing/uninstalling programs, updating software, basic troubleshooting)Intermediate web and email skills (internet, downloading, logging on/off, clearing history, sending, and receiving email messages, (attaching/saving/opening files), message boards, instant messagingDisciplined and organized self-starter who can succeed in a fast-paced, high volume call environment, while being able to manage multiple tasksBasic competency in Microsoft Office and AdobeAdvanced Oral and Written communication -  Diversity, Equity and Inclusion Statement At National Diabetes Trust, we are guided by our values of Accountability, Teamwork, Integrity, and Respect. We believe in the importance of Diversity, Equity and Inclusion (DEI). We are committed to bringing people together in a respectful, inclusive and supportive environment, no matter their age, gender, identity, race, ethnicity, religion, income, sexual orientation, or where they live. In July of 2020, we signed the BlackNorth Initiative CEO pledge and will hold ourselves accountable in meeting those commitments.  How to Apply Must be legally eligible to work in Canada and, where applicable, must have a valid work permit or study permit that allows the candidate to fulfill the requirements of the role.NDT welcomes applications from all qualified candidates, including women, Indigenous peoples, persons with disabilities, and members of visible minorities. We value a diverse workforce that reflects the communities we serve.We are committed to accommodating people with disabilities as part of our hiring process. If you have special requirements, please advise us during the recruitment process.We thank all interested applicants; however, only those selected for an interview will be contacted. INDNDTL\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"375E6204B9804552C5AE4D5511E5C66B\",\n            \"cityName\": \"211 Carlton Street, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ac1e6f33afdc13b4\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Capital Dodge\",\n            \"rowSalary\": \"$16–$18 an hour\",\n            \"date\": 1694540110931,\n            \"dateOfPosted\": 1666513918762,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.66338409999999,\n                    \"lon\": -79.3721451\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Carlton St, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking to hire conscientious, detail-orientated and responsible individuals for the vacant position of a Customer Service Representative. The successful candidates will provide exceptional customer service to current and potential customers, assisting in customer connections and sales, account establishment, maintenance, etc.Job duties include, but are not limited to the following:Answering inbound phone calls and/or live chats to provide awesome customer serviceMaking outbound warm calls to our customers to help with their inquiriesProviding excellent customer service by guiding and helping others with a friendly attitudeEffectively utilizing and navigating internal resources to arrive at the right solution for the client (e.g. computer systems, online resources)Participating in training and certification coursesQualifications:Strong interpersonal skills, including the ability to communicate effectively, both verbally and in writingDemonstrated ability to set deadlines, manage, prioritize, and plan effectively.Must be articulate and have an excellent command of the English languageMust demonstrate a high level of professionalism with excellent typing, communication, and computer skillsAbility to communicate with co-workers and other departments with professionalism and respectJob Type: Full-timeSalary: $16.00-$18.00 per hourBenefits:Dental careLanguage training providedFlexible Language Requirement:French not requiredSchedule:8 hour shiftSupplemental pay types:Bonus payWork Location: Remote\",\n            \"location\": \"Carlton St, Toronto, ON\"\n        },\n        {\n            \"id\": \"74D48C5135CFE032F63864EC7BE12B8A\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1ebef99a9514943f\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Diamond Delivery\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694539379005,\n            \"dateOfPosted\": 1631254248732,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Diamond Delivery in Surrey, BC is seeking a Full-time or Part-time Customer Service Representative to join our team! Our rapidly growing business is looking for hardworking, motivated, friendly individuals who have a passion for delivering exceptional customer service.  An example of duties include; answering a high volume of inbound calls, order entry, customer service resolutions, driver paperwork maintenance, customer rate quotes.  Desired qualifications: Previous inbound call-centre experienceExcellent customer service skills and a positive attitudeAbility to multi-task and to thrive in a fast-paced environmentCapable of maintaining a calm & collected demeanor when under pressureMotivated to find solutions to challenges that occur, with a focus on follow-throughExceptional communication skillsStrong computer skills with a minimum keyboarding speed of 35 WPM Industry knowledge would be an asset, although training will be provided. We offer a competitive wage based upon experience with benefits after 3 months to full time employees.  Job Duties: Answer incoming customer inquiriesCollaborate with key stakeholders and teams to stay updated on new products, services, and policiesEngage with clients in a friendly and professional manner while actively listening to their concernsOffer support and solutions to customers in accordance with the company's customer service policiesOther duties as requested Please send resume to aholland@rdiamondgroup.com. \",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"E538D69041F8368298151953B0DD8E24\",\n            \"cityName\": \"London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=00e95391d5e07eec\",\n            \"jobName\": \"Customer Service Agent 3 - London - Full Time - Perm - Bilingual (French & English)\",\n            \"companyName\": \"Serco North America\",\n            \"rowSalary\": \"$21.86 an hour\",\n            \"date\": 1694538945534,\n            \"dateOfPosted\": 1691660607138,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9849233,\n                    \"lon\": -81.2452768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Position Description :  This role has a starting hourly rate of $21.86!  Serco Canada Inc. operates all the DriveTest Centres across Ontario on behalf of the Ministry of Transportation. As a customer service agent with Serco Canada Inc., you will be based out of one of our 56 Ontario DriveTest Centres. If you are a positive and professional team player who enjoys working with the public in a high energy environment, rewarding job opportunities await you at Serco Canada Inc.  Customer service agents are responsible for providing information and assisting members of the public at various stages of the driver’s licensing process. Some of the work includes responding to customer inquiries in person and on the telephone, providing information about licence rules and regulations, verifying driver records, taking applicant photos, scheduling road test appointments, collecting applicable fees, and preparing reports. Customer service agents must have excellent time management and organizational skills and exercise superior judgment skills. We require individuals who can work independently, meet deadlines, and strive to achieve customer satisfaction in all aspects of their work.  Purpose of the Job: Provides information and assistance related to driver examination services. Reviews information, determines test(s) requirements, and conducts/processes transactions and exams inside the DriveTest Centre. Assists in the smooth and efficient administration of examinations, including preparation of test takers entry, invigilating, the distribution of exam materials, and the collection of examinations. Ensures the fair and proper conduct of examinations. Creates a calm, professional, and supportive environment that enables applicants to perform to the best of their abilities. Provides Security Guard Testing (SGT) examination services support. Primary Duties and Responsibilities: Responds to inquiries related to driver licensing, determines applicant status, and provides information regarding test/re-test procedures and regulations relating to all classes of licences. Distributes and verifies application forms for accuracy and completeness. Investigates problems or errors in licence records and initiates corrections. Captures applicant photos, administers vision tests to ensure minimum requirements are met, and provides referrals to vision specialists. Collects applicable fees accurately. Conducts and processes knowledge tests, dispatches road test appointments, provides results, issues temporary driver’s licences, and processes licensing changes. Identifies licence exchange privileges and/or test requirements for driver’s licence applicants from other countries, provinces, and jurisdictions; assesses foreign licence eligibility, translations, and letters of authentication from other countries. Contacts members of the public to communicate information and correct errors. Administers commercial licence renewals, including accepting medical examination reports and criminal record checks. Escalates customer concerns and redirects customers to other government agencies, when required. Qualifications :  To be successful in this role, you must have:  Fluency level in French and English. Valid Ontario class “G” of licence is required. 1-4 years of customer service experience in a service environment is preferred to include, but not required:  Airline Industry Financial Industry Banking Industry Federal and Local Government Services Healthcare Industry Must have and maintain an acceptable driving record. Intermediate-level computer skills in Microsoft Office are required. Touch-typing and data entry. Must be able to perform physical duties of the position, this may include sitting or standing for extended periods of time and entering and existing vehicles up to 30 times per shift. Must pass Criminal Record Check (CPIC); Fingerprint Criminal Record Check. **Employee hours vary based on customer demand and location’s operating hours. **This position may require extended shift hours and possibly Saturday hours (depending on location) during certain periods of the year when Drive Test Centre volume is higher. **This position requires the attendance of a formal training session, which includes classroom instruction with experienced and qualified trainers and on-the-job shadowing at a Drive Test Centre facilitated by a coach. If you are unsuccessful at any stage of the training, your employment will end effective immediately. If you are interested in supporting and working with our Customer Service professionals and a passionate Serco team- then submit your application now for immediate consideration. It only takes a few minutes and could change your career! Company Overview :  Serco Inc. (Serco) is the Americas division of Serco Group, plc. In North America, Serco’s 9,000+ employees strive to make an impact every day across 100+ sites in the areas of Defense, Citizen Services, and Transportation. We help our clients deliver vital services more efficiently while increasing the satisfaction of their end customers. Serco serves every branch of the U.S. military, numerous U.S. Federal civilian agencies, the Intelligence Community, the Canadian government, state, provincial and local governments, and commercial clients. While your place may look a little different depending on your role, we know you will find yours here. Wherever you work and whatever you do, we invite you to discover your place in our world. Serco is a place you can count on and where you can make an impact because every contribution matters.  To review Serco benefits please visit: https://www.serco.com/na/careers/benefits-of-choosing-serco. If you require an accommodation with the application process please email: careers@serco-na.com or call the HR Service Desk at 800-628-6458, option 1. Please note, due to EEOC/OFCCP compliance, Serco is unable to accept resumes by email.  Candidates may be asked to present proof of identify during the selection process. If requested, this will require presentation of a government-issued I.D. (with photo) with name and address that match the information entered on the application. Serco will not take possession of or retain/store the information provided as proof of identity. For more information on how Serco uses your information, please see our Applicant Privacy Policy and Notice.  Serco does not accept unsolicited resumes through or from search firms or staffing agencies without being a contracted approved vendor. All unsolicited resumes will be considered the property of Serco and will not be obligated to pay a placement or contract fee. If you are interested in becoming an approved vendor at Serco, please email Agencies@serco-na.com.  Serco is an equal opportunity employer. We evaluate qualified applicants without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, disability, veteran status, and other legally protected characteristics. \",\n            \"location\": \"London, ON\"\n        },\n        {\n            \"id\": \"BCB9CB48F2BF84686F7E2F2799D10F84\",\n            \"cityName\": \"286 Rue Gladstone, Greenfield Park, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dd67454a09d37f2e\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Brossard Bagel Inc.\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694537677368,\n            \"dateOfPosted\": 1692841854417,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4925641,\n                    \"lon\": -73.4805987\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Longueuil\",\n                \"formattedAddress\": \"Rue Gladstone, Longueuil, QC J4V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montérégie\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Rue Gladstone, Greenfield Park, QC Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position: Customer Service RepresentativeLocation: Greenfield Park, QCJob Description:The Customer Service Representative will interact with customers to ensure a positive customer experience.Qualifications:High School Diploma or equivalent required.Must possess the ability to problem solve, multitask, and prioritize tasks.Must be able to work independently with little supervision.Make sandwiches , make orders for ubereats , skip & doordashShift: Mondays to Fridays 12pm -8pmResponsibilities:Provide a positive customer experience.Manage customer complaints in a polite and professional manner.Benefits:Job Type: Full-timeSalary: $15.50 per hourExpected hours: 40 per weekBenefits:Language training providedStore discountFlexible Language Requirement:English not requiredSchedule:Day shiftMonday to FridaySupplemental pay types:TipsAbility to commute/relocate:Greenfield Park, QC J4V 2P7: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Rue Gladstone, Greenfield Park, QC\"\n        },\n        {\n            \"id\": \"2E5814EB21D1DDEF6D4C46DD0F6D4DC9\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d260a0faa0373795\",\n            \"jobName\": \"Customer Service Supervisor - Retail\",\n            \"companyName\": \"Rms Enterprises Ltd.\",\n            \"rowSalary\": \"$28 an hour\",\n            \"date\": 1694537672048,\n            \"dateOfPosted\": 1690809426314,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 28.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    28.0\n                ],\n                \"range\": {\n                    \"gte\": 28.0,\n                    \"gt\": null,\n                    \"lte\": 28.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Order merchandise Establish work schedules Sell merchandise Organize and maintain inventory Supervise and co-ordinate activities of workers Supervise staff (apprentices, stages hands, design team, etc.) Supervision 1 to 2 people Transportation/travel information Public transportation is available Work conditions and physical capabilities Fast-paced environment Personal suitability Team playerWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"EC8CB5D2B61AD01BED424052FAEFD601\",\n            \"cityName\": \"7315 Avenue Mountain Sights, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=072a84f946b99c10\",\n            \"jobName\": \"Customer Service/Sales Advisor\",\n            \"companyName\": \"Canada Tire Inc.\",\n            \"rowSalary\": \"From $825 a week\",\n            \"date\": 1694537527978,\n            \"dateOfPosted\": 1693690070980,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4927947,\n                    \"lon\": -73.6457968\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Ave Mountain Sights, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 825.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    825.0\n                ],\n                \"range\": {\n                    \"gte\": 825.0,\n                    \"gt\": null,\n                    \"lte\": 825.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"La Cie Canada Tire is a leader in the Eastern Canada tire distriution businessThe applicant must be a customer-oriented individual who thrives on offering exceptional serviceMust have customer service experience in the automotive or related industry within Canada.Retail sales experience in a fast-paced tire and mechanical service center is an asset.Ability to adapt and cope with challenging and changing situationsAbility to multi-task and work in a fast-paced environmentMust be computer literateKnowledge of the Autoleap operating system is an assetBackground in managing people in the workplace is an assetExcellent potential to be promoted to a managerial positionJob Types: Permanent, Full-timeSalary: From $825.00 per weekBenefits:Casual dressExtended health careOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededSupplemental pay types:Commission payCOVID-19 considerations:We are a Covid conscience company and follow all protocols required.Experience:Automotive Customer Service: 3 years (required)Work Location: In personExpected start date: 2023-09-11\",\n            \"location\": \"Avenue Mountain Sights, Montréal, QC\"\n        },\n        {\n            \"id\": \"F3697ECF2B7FD4B01638E8D84BD5019F\",\n            \"cityName\": \"680 Progress Avenue, Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8b658464a970cdc3\",\n            \"jobName\": \"Sales And Customer Service Associate\",\n            \"companyName\": \"Salonbrandz.com\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694537288966,\n            \"dateOfPosted\": 1692846829460,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7789414,\n                    \"lon\": -79.2568878\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Progress Ave, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full Time: $17/hr StartingExcellent Hours: Monday - Friday From 9am -5pmClosed on the Weekends,Recently graduated International Students & Immigrants are welcome must be fluent in english and computer literateSalonbrandz.com. - Scarborough, ONSalonbrandz.comis an independent, privately-owned Canadian distributor of professional salon products. We are dedicated to offering a wide variety of high quality, value-added products for our clients. Through inspiration, education and leadership, our ultimate goal is to help the professional enhance their business by assisting them in making their clients feel good and look beautiful.We are currently looking to hire Sales & Order Entry Associates to join our team. We want you to bring your talents, experience, and enthusiasm to a team-oriented and dynamic environment. We believe that our success is based primarily on the quality and hard work of our valued team members to bring the Beauty world to our customers._______________________________________________________Responsibilities:Assist customers with knowledge, empathy and sincerity by directing them to products an explaining product features.Record all sales in the Point of Sale System and handle all monetary transactions accurately and effectively.Maintain excellent store appearance and assist with store merchandising to provide a positive shopping experience for our customers.Ability to explain intermediate computer tasks to non-technical usersExcellent English communication skills (verbal and written)Outstanding organizational skills and an ability to juggle multiple tasksQualifications:Strong and dependable work ethic, with a drive to uphold our Culture of Can DoPossess a passion for the beauty industry with the desire to teach our customers about our products.Self-starter with a drive to continuously learn and develop in their careerMust be 18 years of age of olderPrevious sales and/or cosmetology experience preferred but not required. Work where we treat you and our customers as a priority.Opportunities to grow your career within the companyOn-going product knowledge programs and customer experience coachingWork in an environment focused on and surrounded by beautyJob Type: Full-timeSalary: $17.00-$18.00 per hourExpected hours: 37.5 per weekSchedule:Monday to FridayWork Location: In personApplication deadline: 2023-08-30\",\n            \"location\": \"Progress Ave, Toronto, ON\"\n        },\n        {\n            \"id\": \"EBA43019CCBB47C47FCD583EFAB9AB40\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=62a977b1eedbb7e4\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Point Grey Veterinary Hospital\",\n            \"rowSalary\": \"From $21 an hour\",\n            \"date\": 1694537262705,\n            \"dateOfPosted\": 1692844949693,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Do you want to have fun and laugh with your team while utilizing the skills you have? We can help. We are always looking for rock stars to join our team.You must be problem solvers, outside-the-box thinkers, self-motivators, and all-around superstars to hit the ground running.We are looking for enthusiastic and dedicated individuals who thrive on providing excellent customer service, embracing change, and using their smarts to better our everyday work to deliver the best experience to our clients.Company:Point Grey Veterinary HospitalOur Purpose/Cause/PassionSupportive and Inspiring Environment of GrowthNiche:Providing Genuine Veterinary Care and Client EducationWhat makes us unique:Fear-Free CertifiedKnowledgeable StaffStandard of CareMust Haves:Fluent in English.Bubbly PersonalityDesire to learnAbility to Multitask and retain informationLocation: UBC areaSalary: $21 per hourSchedule: Mon, Tues, Thurs, Fri, SatKindly note that the schedule will be 5 days a week, 8 hours each day, up until January. Starting in January, it will switch back to 4 days: Monday, Tuesday, Friday, and Saturday.Job Type: Full-timeSalary: From $21.00 per hourBenefits:Dental careDisability insuranceExtended health careLife insurancePaid time offVision careSchedule:10 hour shift8 hour shiftApplication question(s):Please acknowledge: Kindly note that the schedule will be 5 days a week, 8 hours each day, up until January. Starting in January, it will switch back to 4 days: Monday, Tuesday, Friday, and Saturday.Work Location: In person\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"568F7A4D50AC48B8AA9F3EE5FBB9AB6E\",\n            \"cityName\": \"Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=06646db9ba820760\",\n            \"jobName\": \"Customer Service Sales Clerk\",\n            \"companyName\": \"Can-Tek Distribution Inc\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694536928678,\n            \"dateOfPosted\": 1690809441590,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsor equivalent experience Tasks Provide advice about merchandise Assist in display of merchandise Estimate or quote prices, credit or contract terms, warranties and delivery dates Greet customers and discuss type, quality and quantity of merchandise or services sought for purchase, rental or lease Prepare merchandise for purchase, rental or leaseWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"BBB2C06866D909D8B3106D6437EA818D\",\n            \"cityName\": \"1269 College St, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a91f120c90eb4c54\",\n            \"jobName\": \"Receptionist/Customer Service\",\n            \"companyName\": \"Papa John's\",\n            \"rowSalary\": \"Up to $15.50 an hour\",\n            \"date\": 1694536848859,\n            \"dateOfPosted\": 1669997754412,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6557161,\n                    \"lon\": -79.411386\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"College St, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"HideDo you like people? Do you like pizza? We are searching for just the right person to join our team at Papa John's Pizza in college and Landsdowne.To join our team, two things are vital; First, and most importantly, you must be friendly! Second, you must be willing to work hard, support your fellow team members, and learn quickly.CSRs must be able to work at least two of Friday, Saturday and Sunday shifts.Customer Service Representatives will take orders by phone-in customers, as well as customers at the store. They are expected to manage the cash drawer when accepting payment for orders and returning change. CSRs will also handle customer concerns using the approach taught during Papa John's onboarding and orientation.We expect the standard professionalism from our team members including arriving on time in complete uniform with a positive attitude. There are other duties a CSR may be asked to perform outside of the above description.In secondary roles, Customer Service Representatives will help make quality products, label boxes, cut pizzas and prepare orders for delivery or to be served to in-store customers. CSRs also help in maintaining the store's professional image by participating in the cleaning tasks assigned to all team members.Benefits of working with Papa John’s Pizza include:Flexible schedulesCompetitive wagesCareer growth opportunitiesREQUIREMENTSPrevious papa John's experience, or experience making pizzas is beneficial. Restaurant experience is required.Friendly and well spokenGood math skills to handle cash handling for in-store customer paymentsSpeak English fluently in order to serve customersFocus on cleanliness and personal hygieneMust live in Toronto, Etobicoke, ScarboroughMust speak EnglishMust be legally permitted to work in CanadaMust be able to work at weekends and holiday shiftsServing communities across Southern Ontario.please contact for more information 416-538-7272 or 647-274-1587 (AJ)Papa John's PizzaJob Types: Full-time, Part-time, PermanentSalary: Up to $15.50 per hourFlexible Language Requirement:English not requiredSchedule:10 hour shift12 hour shift8 hour shiftEveningsNight shiftAbility to commute/relocate:Toronto, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Front desk: 1 year (preferred)Administrative experience: 1 year (preferred)Work Location: In person\",\n            \"location\": \"College St, Toronto, ON\"\n        },\n        {\n            \"id\": \"B97B5786C308312D5B41A3AB0D680E17\",\n            \"cityName\": \"1600 Regent Ave W, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2895b9d34fd415ba\",\n            \"jobName\": \"Customer Service Specialist/Host\",\n            \"companyName\": \"Reality Drop\",\n            \"rowSalary\": \"$15.00–$18.50 an hour\",\n            \"date\": 1694536466674,\n            \"dateOfPosted\": 1690809238727,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.89536890000001,\n                    \"lon\": -97.03688799999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Regent Ave W, Winnipeg, MB R2C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usWelcome to REALITY DROP, where cutting-edge technology meets immersive entertainment! As Winnipeg’s first Virtual Reality Escape Room business, we take pride in providing unparalleled experiences that transport our customers into thrilling virtual worlds.At REALITY DROP, we are passionate about revolutionizing entertainment by merging the real and virtual dimensions. If you're ready to unleash your creativity and be part of something extraordinary, come \\\"Dive into the future\\\" with us at REALITY DROP, where the extraordinary awaits!Customer Service Representative (CRS) responsibilities are but not limited to:Respond to customer inquiries in a timely and professional mannerProblem-solving abilities to resolve issues and provide technical assistance to customers who might experience difficulties with the virtual reality equipment, software, or platformStrong organizational skills to manage scheduling and ensure smooth operationsManage bookings, appointments, and customer databases and perform administrative duties, such as record-keeping, updating customer databases, cash outRegularly clean and disinfect the virtual reality headsets, controllers, and other equipment between each customer use to maintain a hygienic environmentProvide feedback to management on customer service issuesDo you have these qualities?Fun & Motivated?Passionate &Enthusiastic?Multitasker & Detail orientated?Friendly & Charming?Good listener & Problem Solver?Tech Savvy & possess the ability to work in a fast passed environment?If yes, you might just be the right fitJob Types: Permanent, Part-time, Full-timePart-time hours: 24 per weekSalary: $15.00-$18.50 per hourBenefits:Casual dressDiscounted or free foodPaid time offFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftEvening shiftEvery WeekendHolidaysOn callOvertimeSupplemental pay types:Bonus payOvertime payEducation:Secondary School (preferred)Experience:Customer service: 2 years (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In personExpected start date: 2023-09-18\",\n            \"location\": \"Regent, MB\"\n        },\n        {\n            \"id\": \"FDD97B5430C09F21BFF6DA185A525D43\",\n            \"cityName\": \"303 Prince Albert Rd, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c96d8c4740d3566a\",\n            \"jobName\": \"Customer Service Associate / Cashier\",\n            \"companyName\": \"Needs Fast Fuel\",\n            \"rowSalary\": \"From $13.35 an hour\",\n            \"date\": 1694536188256,\n            \"dateOfPosted\": 1659577322288,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6760278,\n                    \"lon\": -63.55868719999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Prince Albert Rd, Dartmouth, NS B2Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cashier/Customer Service 303 Prince Albert RoadDartmouth NS.B2Y 1N1We are seeking a cashier customer service, mature and reliable individual to become integral part of our team. Must be able to work well in a fast paced environment and have your own transportation if possible. This position will include day/evening/weekend shifts. Serious inquiries only, unfortunately this position is not open to students returning to school in September. Please drop off resume in store FastFuel 303 Prince Albert road Dartmouth NSResponsibilities and AccountabilitiesProvide customer service to meet customer needs – solution selling and customer product awarenessProcess customer transactionsMaintain an accurate cash drawer while following company policies and proceduresMaintain store Merchandising and process inventoryAdhere to, and implement all applicable company standardsAdaptability/FlexibilityDependabilityProductivityMaintain a clean and safe work environment according to Health and Safety standards TeamworkEnthused SellingAll other duties as requiredWorking ConditionsRetail storeMay be required to lift up to 50lbsTwo person lift required for weights exceeding 50 lbsAbility to stand for long periods of timePhysical work including; but not limited to bending, lifting, and reachingExposure to varying temperatures over short periods of timecommunicating with one or more people at a time in an everyday and at time in occasionally unpredictable contexts using a wide variety of formats and styles, and dealing with minor conflictsPrioritize and multitask across various dutiesExposure to sanitation and cleaning chemicalsJob Type: Part Time to Full-timeWe offer the A.I.P. designation program.Salary: Starting at minimum wage $13.35 /hour with potential for increase depending on performance and tenure.Work RemotelyNoJob Types: Full-time, Part-time, PermanentPart-time hours: 20-40 per weekSalary: From $13.35 per hourCOVID-19 considerations:The health and wellbeing of our customers, teammates and partners is our top priority.We recommend our customers continue wearing a mask, physical distance and sanitize hands while in the store. we are as well following the government issued guidelines.Application deadline: 2022-08-31Expected start date: 2022-08-04\",\n            \"location\": \"Prince Albert Rd, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"6AB274AFBFA83C85DBE512CDA277B217\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=67cb88c5a22a2c6d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Virtualy Possible\",\n            \"rowSalary\": \"$56,613–$63,263 a year\",\n            \"date\": 1694535453340,\n            \"dateOfPosted\": 1694535451839,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 56613.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    56613.0\n                ],\n                \"range\": {\n                    \"gte\": 56613.0,\n                    \"gt\": null,\n                    \"lte\": 56613.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a motivated and well-spoken inside sales representative to join our sales team. The inside sales representative will be responsible for developing new leads, communicating with customers, understanding their needs, and ensuring a smooth sales process. You should be able to close sales and meet targets.To be successful as an inside sales representative you should be able to build instant rapport and achieve customer satisfaction. A top inside sales representative should also be very competitive and a good listener.Inside Sales Representative Responsibilities:Communicating with customers, making outbound calls to potential customers, and following up on leads.Understanding customers' needs and identifying sales opportunities.Answering potential customers' questions and sending additional information per email.Keeping up with product and service information and updates.Creating and maintaining a database of current and potential customers.Explaining and demonstrating features of products and services.Staying informed about competing products and services.Upselling products and services.Researching and qualifying new leads.Closing sales and achieving sales targets.Inside Sales Representative Requirements:High school diploma/GED.Previous experience in an outbound call center or a related sales position preferred.Proficiency in Microsoft Office and CRM software such as Salesforce.com.Excellent communication skills, both verbal and written.Good organizational skills and the ability to multitask.Excellent phone and cold calling skills.Exceptional customer service skills.Strong listening and sales skills.Ability to achieve targets.Job Type: Full-timePay: $56,613.00-$63,263.00 per yearBenefits:Flexible schedulePaid time offSchedule:Day shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payCommission payExperience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"151475AB1CB7036954F187B73F5DF8F3\",\n            \"cityName\": \"4914 48 Ave, Red Deer, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=016e63054c8efb27\",\n            \"jobName\": \"Customer Service - Licensing\",\n            \"companyName\": \"The City Of Red Deer\",\n            \"rowSalary\": \"$34.40–$36.22 an hour\",\n            \"date\": 1694534317190,\n            \"dateOfPosted\": 1692836225648,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.293905,\n                    \"lon\": -113.8163378\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Red Deer\",\n                \"formattedAddress\": \"6841 52 Ave bay 1, Red Deer, AB T4N 4L2, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Red Deer\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 35.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35.0\n                ],\n                \"range\": {\n                    \"gte\": 35.0,\n                    \"gt\": null,\n                    \"lte\": 35.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Opportunity: This position is the first level of contact for customer requests and complaints for City Bylaw infractions related to licensing and other related queries via telephone, e-mail or in person at the counter. This position would be expected to address all complaints and inquiries as per departmental guidelines/policy including the associated financial processing, administrative tasks and responding to the customers. Makes recommendations and decisions on Licensing Bylaw matters and prepares various responses and documentation related to those decisions. This position would also provide coverage on our main floor for Customer Service. As our preferred candidate, you will have: One (1) year certificate in a business or legal program with minimum 2 years related customer service or legal experience in bylaw review or equivalent. Knowledge of the licensing bylaws or bylaws in general. Ability to accurately type 30 wpm and input data into a computer working with various applications. Ability to understand and communicate various bylaws, acts, manuals, etc. as required. Ability to deal effectively face to face, over the phone and in writing with difficult customers. Resolving conflict in public situations. Ability to work as a team player and work independently with a high degree of accuracy, attention to detail and in accordance with policies and procedures. Demonstrate ability to manage time with a wide range of challenges and high volume of work with frequent interruptions and conflicting priorities. Experience with financial software and Microsoft Office applications. Ability to learn and apply various internal computer programs in day-to-day operations. Ability and creativity to take customer suggestions and provide internal feedback in order to enhance department and corporate procedures. Ability to be innovative and assist with the creation of efficiencies and process improvements for the department. Affiliation: Canadian Union of Public Employees, Local 417 Remuneration: $34.40 to $36.22 per hour. Hours of Work: 75 hours biweekly; Monday to Friday. Some evening and weekend work may be required. We thank you for your application. Only those selected for an interview will be contacted.\",\n            \"location\": \"Ave, Red Deer, AB\"\n        },\n        {\n            \"id\": \"502E6DBB7904219BB3446CE2C37E6325\",\n            \"cityName\": \"Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e742197f45e193b0\",\n            \"jobName\": \"Customer Service RepresentAtive - Work At Home\",\n            \"companyName\": \"Inspire Direct Marketing\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694533699722,\n            \"dateOfPosted\": 1690812675150,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.64876350000001,\n                    \"lon\": -63.5752387\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax Regional Municipality\",\n                \"formattedAddress\": \"Halifax Regional Municipality, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halifax Regional Municipality\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative - Work at Home$20.00-$24.00/hour + Benefits.Quit your day job, come help us save the world!If you are a mature sales or call centre representative, come join our team of professional fundraising agents to elevate your career and use your skills to help make our world a better place.We are a Canadian agency on a mission to inspire fundraising. We provide a warm and friendly voice to the largest and most respected charities in Canada. Our team is passionate, engaged and extremely effective. We call existing supporters to raise funds for important causes around the globe. So while there are no cold calls or high-pressure tactics, we are a performance team and results matter. We hope they motivate you as well.This is a full-time, outbound, work-from-home position.Job Description:Inspire fundraisers connect with, laugh with and uplift the lives of our client's donors - even if just for a few moments. Their work goes beyond raising funds for some of the world's most worthwhile causes; it's about creating a human connection with every donor. They enjoy being able to deliver world-class results autonomously, while representing great causes and being part of a passionate team.Each day and each call can be different. We find new child sponsors, welcome new donors, renew event participants, and invite donors to give monthly. We thank, connect, engage and inspire. We look for creative new ways to delight on every call. We are all about teamwork, customer connections and most importantly, having fun while we do it.Some of the Benefits:Permanent, full-time employment with consistent hours and growth opportunities Premium wages, $20.00 - $24.00 hourly w bonuses Engagement with world-class charitable organizations 100% paid training and health benefits (at 3 months) Trip incentives (to visit child sponsor communities), bonuses and rewards Training opportunities, lunch-and-learns, workshops Team culture and activities, ice breakers, community eventsTo be an Inspire Fundraiser:You should bring:A minimum of 2 years' customer service and call centre experience You love talking to people and are a great communicator You are looking for full-time hours, 40 hours a week Availability to work evenings (1:00PM - 10:00PM EST Mon -Thu, 10:00AM - 7:00PM EST Fri) Availability to work occasional Saturday shifts (10:00AM to 5:00PM) You are technically savvy and self-reliantYou should have:A professional work from home office space newer-version Windows PC or laptop computer (Apple or Mac are not supported) High-speed cabled internet connection (min 25 mbps down/5 mbps up) A USB headset and webcamIf you are looking to be part of something bigger than yourself and to join a mature call centre team with opportunities to grow and support your peers; we would love to hear from you.Inspire is committed to Employment Equity and Diversity. We do not discriminate against any employee or applicant for employment because of national origin, race, religion, ethnicity, age, disability, sex, sexual orientation, gender identity, veteran status or any other federal, provincial, or local protected class. We welcome and encourage applications from persons with disabilities. Accommodations are available upon request for candidates who participate in all aspects of the selection process.Please note: We thank everyone for their interest however only the best qualified candidates may be contacted.\",\n            \"location\": \"Halifax, NS\"\n        },\n        {\n            \"id\": \"9E5D2ED1588D4EC82F79A63296F8F3B2\",\n            \"cityName\": \"Sainte-Anne-des-Monts, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c0ca291c9080c296\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Pâtisserie-Boulangerie Marie 4 Poches s.a.\",\n            \"rowSalary\": \"$15.25–$17.00 an hour\",\n            \"date\": 1694533430204,\n            \"dateOfPosted\": 1690809427136,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.12229199999999,\n                    \"lon\": -66.4924319\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sainte-Anne-des-Monts\",\n                \"formattedAddress\": \"Sainte-Anne-des-Monts, QC G4V 2L4, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"La Haute-Gaspésie Regional County Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sainte-Anne-des-Monts\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Experience an assetor equivalent experience Work setting Rural area Tourism Business Staff accommodation available Tasks Receive payments Sell merchandise Take customers' orders Stock refrigerators and salad bars Serve food and beverages Describe menu items including daily specials for customers Transportation/travel information Own transportation Own vehicle Work conditions and physical capabilities Attention to detail Fast-paced environment Physically demanding Repetitive tasks Standing for extended periods Personal suitability Client focus Efficient interpersonal skills Excellent oral communication Reliability Team player Judgement Ability to multitask Screening questions Are you available for the advertised start date? Are you currently a student? Are you currently legally able to work in Canada? Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Green job Involves duties and responsibilities that lead to positive environmental outcomes Long term benefits Other benefits Registered Retirement Savings Plan (RRSP) Other benefits Free parking available Learning/training paid by employer On-site amenities On-site housing options Team building opportunitiesWork Term: PermanentWork Language: FrenchHours: 20 to 40 hours per week\",\n            \"location\": \"Sainte-Anne-des-Monts, QC\"\n        },\n        {\n            \"id\": \"89F93998066B43553A583F4FF7C4375B\",\n            \"cityName\": \"688 Richmond Street West, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=632bc9c05889c691\",\n            \"jobName\": \"Junior Customer Service And Fulfillment Associate\",\n            \"companyName\": \"Tonic Blooms\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694533307108,\n            \"dateOfPosted\": 1694533306915,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6478501,\n                    \"lon\": -79.3958828\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Richmond St W, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About Us:Tonic Blooms is on a mission to bring the joy back to sending flowers across Canada. We’re an on-demand service delivering petal-packed perfection on your schedule! We focus all our energy to ensure that our customers and their lucky recipients are delighted from the moment they land on the website until they get that coveted \\\"thank you!\\\" phone call. We're here to assist in making someone's day, every step of the way. Happiness guaranteed!Why work with us? You'll get to be in a fast-paced and very fun environment (never a dull moment!), learn the ins and outs of the flower industry and gain valuable insight into a dynamic, exciting young company. Plus, you'll be surrounded by beautiful flowers while making peoples' days - what could be better?!What you’ll do:Customer Service:Be knowledgeable in and confident speaking to the brand and productsAcknowledge and assist every customer (via phone, email, text or in person) promptly with exceptional care; answer questions, recommend products and ensure the entire customer experience is engaging, empathetic and efficient.Notify customers of potential order changes or delivery delays and resolve them promptlyCommunicate with delivery drivers via driver phone line, text and Onfleet messaging, monitoring their progress at all times to ensure deliveries are being made efficiently, troubleshooting problems and working quickly to resolve themFulfill and print order tickets via Shopify, sorting them according to delivery window and driverCollaborate with the customer service manager to ensure seamless operations and efficient workflow.Fulfillment:Thoroughly conduct quality control checks for each bouquetNeatly wrap bouquets according to standard and aesthetic, ensuring correct note card and address label is applied to each packageAssist with packaging prep, i.e. constructing flower cartons, cutting denim squares and ribbon for bouquet wrapping, preparing vases with flower food, etc.Studio Maintenance:Ensure studio, packing area and fridge is neat, tidy and sanitizedUnpack packaging supplies and organize hard goods, ensuring they are clean before going into inventoryParticipate in monthly hardgoods inventoryRequired Skills:Highly organized, meticulous, and detail-orientedStrong verbal and written communication skillsStrong computer skills required, able to operate via several web-based applicationsAdaptable to fast-paced environments with the ability to work collaboratively with a teamPunctual and reliable for time-sensitive servicesStrong problem-solving and critical thinking skillsShopify experience preferred though not requiredBasic knowledge of Excel / Google Sheets requiredFamiliarity of GTA and surrounding areas requiredPassionate about flowers and interacting with customersPrior customer service experience is preferred though not required; what’s more important is someone with a positive attitude, a can-do mindset and eager to learn!Additional Info:This is a part-time position. Although our operating hours vary, the hours for this position are planned to operate Monday - Friday between 3:30 p.m. and 8:00 p.m. Availability during holiday weekends and company blackout periods (i.e. the lead-up to and including Valentine’s Day, International Women’s Day, Mother’s Day, Thanksgiving, etc.) is mandatory.This position requires frequent lifting of buckets and boxes that weigh up to 40 lbs, standing for extended periods (up to 12 hours per day), constantly working with your hands and frequent exposure to cold temperatures from our cooler of 3-6 degreesThis position is in downtown Toronto; proximity to our studio or a manageable commute is preferredJob Types: Full-time, PermanentSalary: $20.00-$22.00 per hourBenefits:Casual dressCompany eventsDental careExtended health careOn-site parkingPaid time offStore discountVision careSchedule:Monday to FridaySupplemental pay types:Bonus payCOVID-19 considerations:Mandatory full Covid-19 vaccination (including booster). Mask to be worn inside the studio at all times.Ability to commute/relocate:Toronto, ON M6J 1C5: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:customer service: 2 years (required)Language:English (required)Work Location: In person\",\n            \"location\": \"Richmond St W, Toronto, ON\"\n        },\n        {\n            \"id\": \"F2CE776B37A6E30E5886A363389B5A31\",\n            \"cityName\": \"150 New Huntington Rd, Woodbridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7de32b34be91c119\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Hls Linen Services\",\n            \"rowSalary\": \"$60,000–$70,000 a year\",\n            \"date\": 1694533290081,\n            \"dateOfPosted\": 1694533289901,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.77436669999999,\n                    \"lon\": -79.6438821\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"New Huntington Rd, Vaughan, ON L0J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 60000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    60000.0\n                ],\n                \"range\": {\n                    \"gte\": 60000.0,\n                    \"gt\": null,\n                    \"lte\": 60000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*HLST Linen Services is looking to fill a role of Customer Service Representative (CSR)/Quality Control Administrator , the primary responsibility is maintaining positive relationships with our valued customers by providing exceptional, over the phone and in person customer service. The CSR must thrive in an extremely fast paced work environment with high deliverables. Must assist with Administrative task as needed.Some of your responsibilities will include but not limited tooBe proactive in following up with customers to discuss the status and progress of service if there is a delay in delivery.Maintain strong working relationships within our valuable customers and productionAct as the primary contact for conflict resolution by demonstrating strong listening and negotiation skills while speaking with irate customers to reduce escalation and increase customer satisfactionMust have vehicleMust be willing to travel to Customer’s sitesYou will also be responsible for Quality Control and assures product quality by monitoring and auditing the quality of processed linen as well as all operational procedures in processing the linen and delivering the linen to the customer. Assures product quality by monitoring and auditing the quality of product as well as all operational procedures in processing linen.Ensures that quality assurance activities are directed towards process improvement, continuous quality improvement, cost effectiveness of processes, systems and procedures, and positive preventative corrective action. Oversees development and implementation of standards, methods and procedures for inspecting, testing and evaluating for precision, accuracy and reliability of company products and services.Conducts random quality checks on product and/or procedures to ensure proper standards are maintained.We offer an excellent benefit package. Must have a minimum of (2) covid vaccines.Job Type: Full-timeSalary: $60,000.00-$70,000.00 per yearBenefits:Dental careExtended health careLife insuranceOn-site parkingPaid time offRRSP matchFlexible Language Requirement:French not requiredSchedule:Monday to FridayAbility to commute/relocate:Woodbridge, ON L4H 4N4: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:customer service in person: 3 years (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"New Huntington Road, Vaughan, ON\"\n        },\n        {\n            \"id\": \"BACC4316A52E8D6EB971A40C77AC5F29\",\n            \"cityName\": \"65 Bessemer Road, London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=816f6c9d8637e482\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Partify\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694533289896,\n            \"dateOfPosted\": 1694533289692,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9302214,\n                    \"lon\": -81.2121738\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"Bessemer Rd, London, ON N6E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a family-owned automotive parts company based in London, Ontario (headquarters), and Michigan, USA. Our company specializes in custom-painted car parts for consumers. Additionally, we sell unpainted auto parts, such as headlights and grilles. The company currently has a combined total of over 50 employees and is looking to grow even further. The company website is https://partify.ca/.Position SummaryThe role of a Customer Service Representative is to help customers with all inquiries before and after placing their orders through calls, emails, chats, texts, social media, or in person. A Customer Service Representative also handles concerns, complaints, and other issues. Their goal is to ensure customer satisfaction throughout their entire interaction with the company.OverviewCollaborate well with team members in a fast-paced environment.Interact with employees in both locations.Learn to use platforms like Shopify, Ring Central, and Gorgias to complete tasks and answer calls.Learn to identify customer needs or desires to recommend the appropriate product or service.Develop a good understanding of the products we supply to answer customers' questions accurately.Provide written communication to customers that is free of spelling and grammatical errors.Work with colleagues when necessary to resolve customer complaints by providing solutions promptly to ensure customer satisfaction.Strong organizational skills.Provide answers to all customer inquiries and requests and conduct follow-ups on time.Roles & ResponsibilitiesRespond to customer inquiries and assist them with placing their orders.Provide information regarding parts and give quotations.Update customers regarding order statuses.Assist customers with tracking their shipments.Resolve order issues and reach out to customers regarding their orders.Updating orders and sending customer invoices.Issuing refunds and following up with customer concerns.Contacting dealerships and shipping companies to facilitate the order process for customers.Responding to reviews and questions.Keeping track of orders to ensure the orders are fulfilled on time.Fulfilling local orders.Maintain files, documentation, and databases.Other Duties as assigned.RequirementsBachelor’s DegreeStrong communication and interpersonal skills.Strong verbal and written skills.A minimum of 55 words per minute.Proficient with Microsoft Office, and other Office applications.Works and communicates well individually and in a team environment.Excellent organization and prioritization skills.Time management skills to multitask in a high volume, rapidly changing work environment.Job Types: Full-time, PermanentSalary: $20.00 per hourBenefits:Casual dressCompany eventsDental careDiscounted or free foodLife insuranceOn-site parkingStore discountVision careSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsAbility to commute/relocate:London, ON N6E 2G1: reliably commute or plan to relocate before starting work (required)Application question(s):Can you type 55 words per minute? This is a requirement.How would you describe customer service?Work Location: In person\",\n            \"location\": \"Bessemer Road, London, ON\"\n        },\n        {\n            \"id\": \"B2158E32FB5AA90051966DFAD946E100\",\n            \"cityName\": \"1400 Weber St E, Kitchener, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=950dbca2d58286ae\",\n            \"jobName\": \"Cannabis Customer Service Representative\",\n            \"companyName\": \"Cannabis Supply Company\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694533274784,\n            \"dateOfPosted\": 1694533274576,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4401555,\n                    \"lon\": -80.4629593\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kitchener\",\n                \"formattedAddress\": \"Weber St E, Kitchener, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kitchener\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Basic Function:Under the direction of the Store Manager, the main role of this position is to provide a superior customer service experience to every person that enters the store. You will be responsible for greeting each customer, inquiring about their needs, providing the education they require to make a well-informed purchase. The expectation is that every customer will be 100% satisfied, guaranteed to return. This position may rotate from floor to checkout, therefore accurate entry of orders into the POS system, dispensing change and receipts and balancing the till at the end of the shift is required.Responsibilities & Tasks:1. Develop and maintain strong customer service skills.2. Maintain up to date knowledge of all products being sold in the store so that you can educate customers on cannabis products and accurately relay information.3. Maintain confidentiality and privacy of company business and customer information.4. Double check every order for accuracy with the customer.5. Navigate the POS system, provide accurate change and receipts and balance till.6. Sign in and out of shift to ensure proper reconciliation of hours.7. Comply with all company policies and procedures, code of conduct and government legislations.8. Promote the safe use of cannabis.9. Contribute to the cleanliness of store by assisting with shift cleaning tasks.10. Maintain a healthy and safe workplace at all times or take corrective action.11. Work co-operatively with others in a team orientated approach.12. Participates in training and professional development as required.13. Represent the company in a professional manner at all times.14. Participates in team meetings.15. Participates in monthly meeting with supervisor.16. Communicate in a professional manner at all times.17. Utilize the problem solving model to address any conflicts that may arise.18. Remain abreast on all internal communication forums.**VALID CANNSELL AND CRIMINAL BACKGROUND CHECK REQUIRED BEFORE START DATE.Job Types: Part-time, PermanentPart-time hours: 10-30 per weekSalary: $17.00 per hourBenefits:Company eventsOn-site parkingStore discountFlexible Language Requirement:French not requiredSchedule:10 hour shift4 hour shift8 hour shiftMonday to FridayWeekend availabilitySupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Weber St E, Kitchener, ON\"\n        },\n        {\n            \"id\": \"1B7A4F2C0025F8F8D6FB13FB4E6B1345\",\n            \"cityName\": \"Goderich, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9e8abc2d2b1cf649\",\n            \"jobName\": \"Customer Service Rep\",\n            \"companyName\": \"Novalink Marketing Inc\",\n            \"rowSalary\": \"$50,000–$75,000 a year\",\n            \"date\": 1694533270414,\n            \"dateOfPosted\": 1694533270219,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7428345,\n                    \"lon\": -81.7138942\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Goderich\",\n                \"formattedAddress\": \"Goderich, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Huron County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Goderich\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you looking for a new career? Do you like helping people? Do you feel like you are a great communicator? Trying to do something more in your life in a competitive, fast - paced, customer focused environment?Novalink Marketing is looking for full-time Customer Service and Sales Reps for our new customer service and sales team. These are IN-PERSON positions, not remote.We are looking for associates with great communication skills who can add to our team. We are located in Goderich, Ontario and are looking for people that are fun and outgoing that want to excel.We work with large companies looking to expand into the Canadian market. English is required as is Canadian work authorization. Additional languages is a plus.*Daily duties include:-Sales presentations-Customer service and retention-Face to face marketing-Training presentations and development programsCandidates who excel in this position are:- competitive spirit, team oriented-have a high school education-Motivated by growth-Written and oral communication skills-Available full timeWe are looking for someone who can start within the next 1-2 weeks.We have been tasked with adding a minimum of 2 new customer service and sales agents by the end of the month and are looking for people that would be the right fit for our team.Job Type: Full-timeSalary: $50,000.00-$75,000.00 per yearBenefits:Flexible scheduleFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftDay shiftSupplemental pay types:Bonus payCommission payAbility to commute/relocate:Goderich, ON: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Licence/Certification:Driving Licence (preferred)Work Location: In person\",\n            \"location\": \"Goderich, ON\"\n        },\n        {\n            \"id\": \"0FFDDE17C482D25DF3B0E0EA405B0439\",\n            \"cityName\": \"420 Richards St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=82447b06f50dfae6\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"The Poke Guy\",\n            \"rowSalary\": \"$17–$20 an hour\",\n            \"date\": 1694532839558,\n            \"dateOfPosted\": 1693686479134,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2788687,\n                    \"lon\": -123.1197521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Richards St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"JOB TITLE: CUSTOMER SERVICE:Provides exceptional customer service and accurately assists in the assembly of menu items.Cleans and maintains dining area in accordance with restaurant policiesKEY RESPONSIBILITIES • Greet all guests in a polite and courteous mannerProvides exceptional customer service and assists customers in the preparation of their poke bowls in accordance with restaurant plating standards and portionsMaintain accurate knowledge of menu items, potential allergens and working knowledge of the history and origins of PokeAccurately enter all orders into the Point of Sale (POS) and take payment from customersAssist with the opening and closing of the till as needed • Assists with food preparation as needed under direct supervision of the cooks or managerKnows and complies with Vancouver Coastal Health food safe practices to ensure safe food handling and sanitizingStocks and maintains sufficient levels of paper products and cutlery at all condiment stations and dining tablesReport any inventory shortages to kitchen managerMaintain a clean and sanitary dining area which includes but is not limited to:-Floors swept on a regular basis and mopped daily,-Windows and all glass are wiped and cleaned,-Bathroom is serviced daily .REQUIREMENTSWillingness to learn, experience not necessaryStrong communication skillsBe able to work in a standing position for long periods of timeMaintain exceptional hygiene and presentationHigh School or equivalent educationFood safe certification is an asset but not a requirement.Job Types: Full-time, Part-time, Permanent, Casual, SeasonalPart-time hours: 20-40 per weekSalary: $17.00-$20.00 per hourSchedule:8 hour shiftDay shiftHolidaysMonday to FridayNight shiftWeekends as neededSupplemental pay types:Bonus payTipsCOVID-19 considerations:To keep all members safe, we have set barriers to keep customers and members 6 ft apart. Masks, gloves, and sanitizer are provided.Ability to commute/relocate:Vancouver, BC V6B 2Z3: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Richards Street, Vancouver, BC\"\n        },\n        {\n            \"id\": \"2AA36E9833A8A6601CBF829D1798E89E\",\n            \"cityName\": \"2121 Carling Avenue, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=df39726578590cfc\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Lifemark Health Group\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694532325067,\n            \"dateOfPosted\": 1691653777951,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.35917600000001,\n                    \"lon\": -75.79599209999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Carling Ave, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative – Lifemark Physiotherapy Carlingwood Mall Location: 2121 Carling Avenue  Ottawa, Ontario  Employment status: Permanent Part-Time  Rate compensation: $17.00 per hour  Do you thrive on having the satisfaction of being on a driven team of industry experts and building a reputation for being one of the best in the industry with exceptional standards of work and quality? If so, join us at Lifemark Physiotherapy Carlingwood Mall, a Lifemark Health Group company, Canada’s premier, largest, and most comprehensive healthcare management organization. We believe when you move better, you feel better. This is at the heart of everything we do, and we are seeking a Customer Service Representative who shares this same philosophy. At Lifemark, we walk the talk of our company's Core Values: \\\"We have fun,\\\" We strive for simplicity,\\\" We trust each other to do the right thing,\\\" We go the extra kilometre,\\\" and \\\"We belong here.\\\" Why Lifemark? Opportunity to work with a multi-disciplinary team of clinicians and the satisfaction of being on a driven team. Flexibility in building your perfect schedule with our understanding Clinic Director. Competitive compensation with an excellent benefits package for permanent employees. Shoppers Drug Mart 30% Employee discount. Employee Stock Purchase Plan. Paid Vacation days. Employee Referral Bonus Program. Pathways for leadership opportunities. Opportunities for mentorship as well as a positive and comforting work environment. Nationally recognized brand with a strong digital presence. Qualifications & Core Competencies: High School Diploma, G.E.D. or equivalent. Excellent customer service skills and telephone etiquette. A high degree of organizational and multi-tasking skills in a busy and fast-paced work environment, preferably with 1-3 years of work experience in a private rehabilitation clinic. Excellent communication and interpersonal skills. Knowledgeable in the LPS system is a definite advantage. Computer savvy and data entry skills in a physiotherapy clinic setting will be an asset but not required. Flexible and adaptable to change. New Graduates are welcome to apply. Key Functions and Responsibilities: Answer telephone calls, greet patients and visitors upon arrival, and provide excellent customer service for all questions or concerns. Coordinate a detailed and accurate intake of information on the patient's first visit to the clinic and throughout their treatment plan. Assist patients with completing paperwork at the clinic to avoid errors and inaccurate information. Coordinate scheduling of patient appointments and maintain the patient's medical record. Collect payment at the time of service. Track coverage for all funding streams to ensure approval Complete data entry and billing Coordinate courier packages (in or outgoing) and process incoming and outgoing emails, mail and faxes. Provide administrative support to the Care Coordinator Manager and Clinic Director. We have gone above and beyond to ensure the safety of our patients and employees with PPE provided, the spacing of patients, screening, and more. Extensive safety protocols and procedures have been put into place and are mandatory. Lifemark welcomes and encourages applications from people with disabilities. Accommodations are available on request for candidates taking part in all aspects of the selection process. Lifemark promotes equal employment opportunities for all job applicants, including that self-identifying as a member of the following groups: Indigenous peoples, Newcomers to Canada, and Visible minorities. Apply today! Visit www.lifemark.ca/careers\",\n            \"location\": \"Carling Avenue, Ottawa, ON\"\n        },\n        {\n            \"id\": \"EB14F7C5A3FD7A6A8F00F1CFDB4D81B6\",\n            \"cityName\": \"1801 Lakeshore Road West, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=05ab2d46042ab44e\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Turtle Creek Cards And Gifts\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694532315042,\n            \"dateOfPosted\": 1674161961338,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5308514,\n                    \"lon\": -79.6082911\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Lakeshore Rd W, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Shipping parcels within Canada,USA and internationally.selling canadapost authorized products,stamps.selling gift itemsTaking passport photosJob Type: Fixed term contractContract length: 12 monthsSalary: From $15.50 per hourSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsCOVID-19 considerations:Wear a maskKeep distance Use sanitizer Ability to commute/relocate:Mississauga, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In personApplication deadline: 2023-01-31\",\n            \"location\": \"Lakeshore Rd W, Mississauga, ON\"\n        },\n        {\n            \"id\": \"76CBFAE213E483AB0EC0C99602A00F5B\",\n            \"cityName\": \"Quebec City, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=264eb584bec13257\",\n            \"jobName\": \"Bilingual Customer Service Representative (Remote)\",\n            \"companyName\": \"Medavie Blue Cross\",\n            \"rowSalary\": \"$21.45 an hour\",\n            \"date\": 1694532216311,\n            \"dateOfPosted\": 1691653738580,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.8138783,\n                    \"lon\": -71.2079809\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Quebec City\",\n                \"formattedAddress\": \"Quebec City, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Québec\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Quebec City\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title: Bilingual Customer Service Representative Department: Member Experience Competition: 86272Internal/External: Internal/External Employment Type: Full Time Permanent Location: Remote Québec Salary: 21,45$ per hour/ comprehensive benefits/ bonus Reports To: Team Leader Starting date : Classes starting: September 11th 2023 and October 16th 2023Referral Bonus Eligible Amount: $1000The opportunity before you We are hiring monthly classes in August, September and October – let us know when you’d like to start!  We are looking for Customer Service Representatives who are critical thinkers, who want to help our members on a daily basis, who have the ability to work in a fast-paced environment, and who are enthusiastic about acting as our company's first point of contact. Our award-winning company culture, caring managers, training and unparalleled support are all ways to ensure your success. Here's what we offer:No weekends or overnights – your shift will end at 8pm!We offer a variety of work options: Remote, Onsite or a combination of Hybrid – let us know what works for you!A stable schedule, established according to shifts from Monday to Friday from 8 a.m. to 8p.m.;A comprehensive health and dental plan, fully paid by the employer, in effect one month after your first day on the job;A comprehensive virtual training program that prepares you for work and call taking;Opportunities for career advancement and development;Work-life balance, wellness benefits, health resources and discounts for select fitness centres;A great work environment, exceptional colleagues and supportive leaders to help you succeed!Our team's star employees:Answer questions about health benefits and plan eligibility, payment inquiries and other general questions;Quickly assess and resolve problematic situations and provide effective strategies for resolution on first call;Are dedicated to customer service excellence and demonstrate a high level of commitment in all areas.Skills needed to succeed:Previous call centre experience is not required, however, candidates who have demonstrated excellent skills in serving clients over the telephone, have the ability to multi-task while providing excellent customer service, and demonstrate an eye for detail are highly successful in this position;Loving helping people is a non-negotiable requirement;Be fluently bilingual (English-French); In order to meet the needs of the English-speaking clientele, this position requires bilingualismBe a good communicator both on the phone and by email. Speaks in a clear, concise and friendly manner;Have the desire to go to the end of things and enjoy new challenges;Relevant training, education or work experience in the areas of customer service or health;Excellent technical skills, ability to manage multiple tasks at once and switch between software without difficulty, while simultaneously continuing to assist the caller;Be able to answer both difficult and easy calls;Be an expert in problem solving, understand the needs of members and quickly learn how to achieve the best results in all settings;A little information about Medavie Blue Cross: For more than 75 years, Medavie Blue Cross has been a recognized health and wellness partner for individuals, employers and governments across Canada. As a not-for-profit organization, we are proud to give back to the communities in which we operate and to build on a collaborative culture to help our employees thrive. Medavie Blue Cross was recognized as having one of Canada's most admired corporate cultures and was named a Caring Company, a title given to national leaders in community investment and social responsibility.  Our team of 2,100 professionals is spread across six provinces. We excel through our shared values: compassion, responsibility, adaptability, innovation and community. We value the health and well-being of our employees and their families, as well as personal and professional development, which is why we offer a wide range of programs and resources at all levels of the company.  Together with Medavie Health Services, Medavie Blue Cross is part of Medavie, a national healthcare company with more than 6,400 employees. Together, our mission is to improve the well-being of Canadians. #CBM1Medavie Blue Cross is an equal opportunity employer. Medavie Blue Cross strives to foster a culture where everyone is enabled to achieve their full potential — a culture of diversity, equity and inclusion (DEI) where we live our values every day in the way we treat each other, our members and the communities we serve. Accessibility is a top priority.  For applicants with disabilities, we provide accommodations throughout the recruitment, selection and/or assessment process. If selected to participate in the recruitment, selection and/or assessment process, please inform Medavie Blue Cross Human Resources staff of the nature of any accommodation(s) that you may require in respect of any materials or processes used to ensure your equal participation. All personal information is collected under the authority of the Municipal Freedom of Information and Protection of Privacy Act.  We would like to thank all candidates for expressing interest. Please note only those selected for interviews will be contacted. Job Segment: Customer Service Representative, Call Center, Equity, Customer Service, Finance\",\n            \"location\": \"Quebec City, QC\"\n        },\n        {\n            \"id\": \"57677F11364896B72987E8B6BA89DFBE\",\n            \"cityName\": \"6133 University Blvd, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2e261f6998dfec68\",\n            \"jobName\": \"Customer Service Representative - Grand Noodle Emporium\",\n            \"companyName\": \"Alma Mater Society Of Ubc Vancouver\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694531962738,\n            \"dateOfPosted\": 1692840343205,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2637763,\n                    \"lon\": -123.2182635\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"University Blvd, Vancouver, BC V6T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Alma Mater Society (AMS) is the University of British Columbia’s (UBC) student society, and works to improve the academic, social and personal lives of the 56,000 UBC students at its Vancouver campus. The AMS also runs nine food and beverage outlets, a catering and conference operation, and the AMS Student Nest, providing on-campus employment opportunities and generating revenue that goes directly back into supporting the students at UBC. Position title: Customer Service Representative Department: Food & Beverage Reports to: Outlet Manager Employee status: Part Time Hours per week: As available (must have morning availability) Compensation: $17.00 per hour  The Customer Service Representative is the first point of contact in all our venues and gives the first impression to our guests. They greet our guests and achieve sales goals through recommendation and suggestive sales techniques, resulting in superior guest service. They handle cash transactions while staying focused and levelheaded even under pressure. We are looking for outgoing, friendly candidates who enjoy dealing with people while being hands on.  Duties & Responsibilities Provide excellent guest serviceMeet and exceed sales goals through suggestive sales techniquesDemonstrate and apply exceptional product knowledge resulting in sales increasesWork in a fast paced environment to complete POS transactions correctly according to AMS proceduresProduce products to AMS standards applying AMS proceduresMaintain a clean and safe work environmentFollow the AMS food safety procedures at all timesWork with the AMS mission statement and values to operate a successful departmentOther duties as required Qualifications & Experience Ability to stand for extended periods of timeAbility to lift up to 20kgs (44 lbs)Ability to do shift work (daytime, evenings, weekends and holidays)Ability to complete small monetary calculation for POS transactionAbility to learn quickly and work as part of a teamPrevious experience in a food service environment an assetFood Safe certification an assetTO APPLY: Please submit your resume (include term 1 availability).  The Alma Mater Society of UBC is an equal opportunity employer and all qualified applicants will receive consideration for employment without regard to race, national or ethnic origin, colour, religion, age, sex, sexual orientation, gender identity or expression, marital status, family status or any other characteristic protected by law. We invite all qualified candidates to apply online with their resume and cover letter. Due to the large volume of resumes we receive at the AMS, we are only able to contact those we are interested in interviewing and cannot reply to email/phone/walk-in inquiries regarding application status.\",\n            \"location\": \"University Blvd, Vancouver, BC\"\n        },\n        {\n            \"id\": \"AE0045996AF2BE5C88CEB9A4AE480923\",\n            \"cityName\": \"UW Calgary in Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=458cec2864f0d999\",\n            \"jobName\": \"Customer Service Assistant\",\n            \"companyName\": \"Uw Calgary\",\n            \"rowSalary\": \"$15–$18 an hour\",\n            \"date\": 1694531937737,\n            \"dateOfPosted\": 1688059934709,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"UW Calgary specializes in client acquisition and business development with a passion for providing exceptional customer service. The UW Calgary team shares a passion for giving back; both to our fellow teammates and to our community. Our team enjoys problem-solving and to continue our efforts in the local area and keep up with client demand, we are hiring a Customer Service Assistant immediately.The Customer Service Assistant will act as the first point of contact with existing customers. They will assist with organizing our sales team and reporting back to the Executive Sales Manager. The Customer Service Assistant will receive hands-on training on all sales and marketing techniques, brand management strategies, territory management, and compliance standards as well as coaching, mentoring, and career development. The ideal candidate will have exceptional communication skills and be genuinely excited to grow with a company.Customer Service Assistant Responsibilities:Meeting planned sales goalsSetting individual sales targets with the sales team.Tracking sales goals and reporting results as necessaryOverseeing the activities and performance of the sales team.Develop and deliver informative sales presentations based on individual customer needs to maximize market shareParticipate in continuous training opportunities with the intent to increase qualified customer contacts, enhance relationships and advance the sales process.Customer Service Assistant Qualifications:Previous experience in marketing, promotions, sales, or account management preferredComfortable taking on a leadership role and support role within a team (must work well with others)Strong interpersonal skillsExperience in customer relationship management (preferred, not required)Experience in a management or leadership roleExcellent written and verbal communication skills.Dedication to providing great customer serviceJob Type: Full-timeSalary: $15.00-$18.00 per hourSchedule:8 hour shiftMonday to FridayWeekend availabilityAbility to commute/relocate:Calgary, AB T2B 1K7: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"8F94546B9F4D1C892895F16F1C60BF00\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a08e53d26950f35d\",\n            \"jobName\": \"Customer Service Supervisor - Retail\",\n            \"companyName\": \"Hns Hannam Supermarket Robson\",\n            \"rowSalary\": \"$22–$25 an hour\",\n            \"date\": 1694531767026,\n            \"dateOfPosted\": 1691653703604,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Assign sales workers to duties Hire and train or arrange for training of staff Authorize payments by cheque Authorize return of merchandise Establish work schedules Resolve problems that arise, such as customer complaints and supply shortages Supervise and co-ordinate activities of workers Health benefits Health care planWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"F7FE05C9C3164C62FEF34B5804BAA032\",\n            \"cityName\": \"10017 Main St N, Winfield, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=af5ea2ecb262c38d\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Iga\",\n            \"rowSalary\": \"$16.75–$18.00 an hour\",\n            \"date\": 1694530504777,\n            \"dateOfPosted\": 1692830611712,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.0221636,\n                    \"lon\": -119.4040817\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lake Country\",\n                \"formattedAddress\": \"Main St, Lake Country, BC V4V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lake Country\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Locally owned and operated IGA in Lake Country is looking for outgoing, customer focused individuals to join the team. If you want to be a part of one of the best Grocery stores within the Okanagan this is the job for you. Duties include, but not limited to: providing exceptional customer service, knowing all produce codes, weighing items to determine price, scanning prices of marked items, resolving pricing issues by requesting price checks, redeeming coupons, gift certificates, receiving cash, making correct change, processing debit and credit cards and bagging products appropriately. Flexible availability required.Drop off resume at store, ask for LauraJob Type: Part-timeSalary: $16.75-$18.00 per hourBenefits:On-site parkingStore discountDay range:Weekends as neededShift:4 hour shift8 hour shiftDay shiftEvening shiftWork setting:Grocery storeWork Location: In person\",\n            \"location\": \"Main St N, Winfield, BC\"\n        },\n        {\n            \"id\": \"0774BD8DEC87E8D9F63116A05F624F18\",\n            \"cityName\": \"50 Church Street, St. Catharines, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1e78e0af642918f7\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"City Of St. Catharines\",\n            \"rowSalary\": \"$29.64 an hour\",\n            \"date\": 1694530300576,\n            \"dateOfPosted\": 1690799639000,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1628678,\n                    \"lon\": -79.2432424\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St. Catharines\",\n                \"formattedAddress\": \"Church St, St. Catharines, ON L2R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"St. Catharines\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 30.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    30.0\n                ],\n                \"range\": {\n                    \"gte\": 30.0,\n                    \"gt\": null,\n                    \"lte\": 30.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"THIS IS A TEMPORARY PART TIME POSITION FOR APPROXIMATELY SIX (6) MONTHSSummary:As a key member of the City of St. Catharines’ Citizens First Program, you are responsible for receiving, answering and referring all calls associated with the City’s Customer Service Division. Additionally, you provide a variety of City transactional services on behalf of all City Departments at the Customer Service Counter.Duties and Responsibilities:(These set out the principal functions of the position, and shall not be considered as a detailed description of all the work requirements).Act as primary contact for the City with the public from a variety of channels; telephone, email and counter.Process a variety of financial transactions for City services and programs including cash, debit and credit cards following department designated collection procedures and payment options.Receive, assess, refer and answer inquiries related to all departments of the City such as tax, water, parking, forestry, roads maintenance, traffic operations, culture and recreation.Prepare daily, weekly and monthly financial reporting, inventory reporting and prepare the required general ledger journal entries.Triage requests, determining information needs and entering information in a variety of computer-based software applications.Enter and maintain online requests, paper files and logs related to service requests.Self-monitor and measure performance against written guidelines to ensure the desired level of customer satisfaction and service using tools available.Recognize trends or changes in types of calls or questions that callers have.React to situational changes by ensuring that appropriate persons are notified.Participate in on-going monitoring of telephone calls to ensure standards are being met.Report regularly on the status of results and performance.Research, prepare, apply and submit adjustments for various departments regarding parking fines, tax accounts, recreation programs, and facility booking and revenue distribution journals.Position Requirements:Minimum of a Grade 12 Diploma plus additional courses in Customer Service and Administration.Experience in a customer service related position is essential.Experience with cash-handling or related functions is an asset.Dynamic customer service skills including well-developed empathy and intuitive skills to be able to assess customer's sometimes unspoken needs and quickly match up those needs with available resources.Established written and verbal communication skills including effective use of grammar and spelling.Proven ability to work within a fast-paced, multi-tasking team environment while maintaining a positive demeanour.Expert awareness of current events related to public health and safety, public programs, flyer distribution, snow removal, cultural events such as festivals, parades, and street fests; public meetings such as Council and public information sessions.Excellent interpersonal and conflict resolution skills.Creativity and flexibility in order to persuade and educate customers.Excellent telephone etiquette; good voice quality, diction and articulation.Ability to work with figures and an understanding of business accounting concepts.Ability to conduct internet searches.Proven experience in Microsoft Word, Excel, and Outlook.Proven completion of Ministry of Labour Worker Health and Safety Awareness training.A demonstrated commitment to enhancing a safety culture.Hourly Rate: $29.64Expected Work Location: City HallHours of Work: Various shifts Monday - Friday, up to 24 hours per weekTHIS IS A TEMPORARY PART TIME POSITION FOR APPROXIMATELY SIX (6) MONTHSApplications will be accepted online at www.stcatharines.ca/jobs. Applications received any other way will not be accepted.The City of St. Catharines is an equal opportunity employer committed to inclusive, barrier-free recruitment and selection processes and work environments. We will accommodate the needs of applicants under the Ontario Human Rights Code and the Accessibility for Ontarians with Disabilities Act (AODA) throughout all stages of the recruitment and selection process. Please advise the Human Resources Division to ensure your accessibility needs are accommodated throughout this processJob Types: Part-time, Fixed term contractContract length: 6 monthsPart-time hours: 24 per weekSalary: $29.64 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftWork Location: In person\",\n            \"location\": \"Church Street, St. Catharines, ON\"\n        },\n        {\n            \"id\": \"9CC8B81C44F59ADF9ABB5C418C46D978\",\n            \"cityName\": \"Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=840645bd8312e2cb\",\n            \"jobName\": \"Testing Centre Invigilator - Casual Part Time/On Call\",\n            \"companyName\": \"Mohawk College\",\n            \"rowSalary\": \"$17.60 an hour\",\n            \"date\": 1694530014068,\n            \"dateOfPosted\": 1693682578540,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2557206,\n                    \"lon\": -79.8711024\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Testing Centre Invigilator - Casual Part Time/On Call Status: Casual Part Time/ On CallHours: Up to 24 hours/weekHome Campus: Fennell, Stoney Creek, IAHSRate of Pay: $17.60Posting Date: August 23rd, 2023Closing Date: Posted until filledWe support and encourage the contributions of our diverse employees. We are committed to nurturing an equitable, diverse and inclusive (EDI) environment for everyone who learns and works at Mohawk College. We believe the rich diversity among our students and the communities we serve should be reflected within our workforce. As educators we believe it is important to act and show leadership in advancing the principles of equity, diversity and inclusion in our community. Mohawk College is currently recruiting for our nextTesting Centre InvigilatorUnder the direction of the Manager, Testing Centres, as a professional staff member, the Invigilator oversees the organization and management of the testing. They are also responsible for proctoring and administering tests to groups, learners, applicants and students while maintaining a quiet atmosphere for testing. The Invigilator is also responsible for following Mohawk Testing Centre’s testing protocol as required by faculty or staff.As the majority of testing will be administered in-person, this position will be on campus. Evening and weekend work required. Candidate must be willing to work or travel to satellite Mohawk College campuses to deliver testing as needed.Responsibilities:This position works with students, faculty and staff on a regular basis and requires the incumbent to use tact and diplomacy in carrying out his or her day-to-day activities. The duties associated with this position will involve considerable exposure to confidential records and student information. Specific responsibilities include: Maintaining an ongoing knowledge of tests administered to ensure efficiencies in testing processes; Ensure the fair and proper conduct in the testing environment that enables a student to perform at their best; Proctoring assessments and tests to ensure academic honesty; Relaying testing instructions to a student as provided by the instructor; Reviewing all accommodations with the student in a discrete and confidential manner; Maintain a quiet and secure atmosphere for testing; Maintain confidentiality and security of all test materials and other test documents; Troubleshooting various minor technical problems that occur with software programs and computers in the Testing Centre and in a remote environment; Reading testing material or scribing answers for students that require this function as a part of their testing accommodation; Office duties such as preparing paperwork, setting up computers, maintaining testing area; Is punctual for duty and reliable; Performs other duties and tasks as required.Invigilator availability must be open for exam periods as outlined in the Mohawk College academic calendar: https://www.mohawkcollege.ca/academic-and-important-datesQualifications:The successful candidate will have:Have a secondary school diploma, or equivalent and more than one year and up to three years of practical experience in a related area.Possess excellent interpersonal, oral and written communications skills; be self-directed; have the ability to work with minimal supervision.Have a positive and friendly attitude and project self-confidence.Be able to work in a team environment with others.Maintain attention to detail, organized work environment and show respect and sensitivity.Knowledge of standard office practices and procedure, and standardized testing tools.Experience with virtual meeting platforms, such as Zoom and Microsoft Teams.Ability to problem solve in a fast-paced environment and access assistance from staff as required.Demonstrate his or her understanding and ability to adhere to the College policies, procedures and/or associated legislation related to privacy and confidentiality of information.Flexibility in scheduling is required (evening and weekend work is required).Be available to work at any of the three Mohawk College campuses (Fennell, Stoney Creek and McMaster) therefore, applicant must have access to a vehicle and a valid driver’s license.Demonstrated commitment and understanding of human rights, equity, diversity and inclusion with the ability to communicate and work effectively with diverse groups of students, employees and the community.Mohawk College prioritizes recruiting and retaining diverse employees. With this in mind, the College is committed to fostering inclusive and barrier-free recruitment and selection processes.Should you require accommodation through any stage of the recruitment process, please contact the Human Resources Department at (905) 575 - 2047.Mohawk College is strongly committed to diversity within its community and especially welcomes applications from racialized persons, women, Indigenous people, persons with disabilities, S2LGBTQIA+ persons, and others who may contribute to the further diversification of ideas.For more information concerning the Mohawk College strategic plan, please see: strategicplan.mohawkcollege.ca/\",\n            \"location\": \"Hamilton, ON\"\n        },\n        {\n            \"id\": \"C2C62907B6AE2109ADB05731641133FE\",\n            \"cityName\": \"1645 Queensway East, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1a5d66e1b9b3d0c0\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Prismaflex Inc\",\n            \"rowSalary\": \"$35,000–$45,000 a year\",\n            \"date\": 1694529706412,\n            \"dateOfPosted\": 1694529706245,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5917384,\n                    \"lon\": -79.5883487\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Queensway E, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job descriptionPrismaflex Inc. is a large format print company that is looking for an energetic and detailed oriented person to work in our CSR department. They will report to Operations and will work closely with Production. This is a very fast paced company where being able to multitask is a prerequisite.Candidate is required to have 2 years progressive customer service experience. Must work well under pressure, be able to juggle many projects simultaneously, and have excellent interpersonal and communication skills. Must also have an excellent sense of priorities.Experience in the print industry would be a plus but not mandatorySkills Required:Good communication skills – verbal and written, with exceptional computer skillsMust be able to work with clients at all levelsFocused and results orientedMust work well with others and independentlyAttention to detail and accuracy, and able to multi task and meet deadlinesOverview of Duties:Receives, processes, and verifies the accuracy of orders from customers utilizing the organization’s internal systems and customer purchase orders and update any changes in customer orders to appropriate departments.Answer calls for the Company and forward to appropriate personnel; attend to customer inquiries as requiredResponsible for notifying administration of any required updates of customer records on the organization’s internal database.Tracking your customer's jobs through production, from order entry to shippingProvide back-up support to other group members in the performance of job duties as required.Performs other related duties as assigned by managementJob Type: Full-timeSalary: $35,000.00-$45,000.00 per yearBenefits:Dental careExtended health careLife insuranceVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayEducation:Secondary School (preferred)Experience:customer service: 2 years (preferred)Work Location: In person\",\n            \"location\": \"Queensway E, Mississauga, ON\"\n        },\n        {\n            \"id\": \"F027325AFCA09F9C684872666F11B7B9\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a0d3d931d6e81b54\",\n            \"jobName\": \"Inbound Customer Service Representative\",\n            \"companyName\": \"Contactpoint 360\",\n            \"rowSalary\": \"$15.25 an hour\",\n            \"date\": 1694529705599,\n            \"dateOfPosted\": 1694529705422,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Inbound Customer Service RepresentativeOperations · Montreal, QuebecJoin our CP360 Family, today!Who We Are:Welcome to ContactPoint 360, the world’s fastest-growing global BPO. At our roots, we are a Canadian privately-owned family company where entrepreneurial spirit and cherished family values come together. With 8 years of remarkable growth, our team has expanded to over 3500+ passionate and successful individuals across Canada, the US, Colombia, Mexico, Jamaica, India, Greece and the Philippines. Our achievements are grounded in an award-winning culture that fosters innovation and empowers every team member, earning us global recognition as a certified Great Place to Work.At ContactPoint 360 Inc., we deeply understand the meaning of family and values. As a family-owned company, we cherish a sense of unity and support that extends beyond the workplace. Our commitment to hiring the best talent is driven by our belief in the importance of family-like bonds within the organization.We empower forward-thinkers and value our team. Together, we enhance interactions, build strong connections, and constantly innovate to deliver exceptional people and customer experiences, putting the human experience first.Our Purpose:Is to create the best human experience, ensuring the highest client satisfaction, and transforming clients’ customers into loyal advocates for life.Check out our YouTube video: https://youtu.be/AsPjX-5uyQQContactPoint 360 provides a career opportunity in Customer Service and Sales with stable shifts and full-time hours. We are seeking motivated self-starters, who thrive on a fast-paced environment and have excellent customer service skills and sales abilities. It is a Remote position while we have isolation measures in place and then it will be completed at our Montreal office.What we offer:A paid learning and development training program.We offer competitive insurance coverage, incentives, and two weeks’ vacation time off after 90 days! Plus surprise perks you'll love.Medical and Dental Insurance after 3 months (Family Plans available)Paid Vacation TimeReferral Bonuses (Earn up to $250 per referral)Opportunities for growth! (You can graduate into a Tier 2 program with a wage increase as quickly at 2 weeks of production!)You MUST have reliable high-speed internet and able to connect directly to the Modem.Equipment can be provided (excluding headset) if located in Montreal QC Area.Responsibilities:Providing outstanding customer service by helping clients with their needs.Upselling/Cross Selling on all inbound customer service calls.Use critical thinking to remain solution focused.Retain and De-escalate customers to ensure an overall positive experience.This is a transitional campaign, with extensive training moments to build a foundational knowledge of systems, processes and customer service expectations. Once a strong foundation has been built the next step to your career begins to a tier two program!Who we are looking for:Candidates must be above the age of 18.Fluent in English and excellent communication and listening skills.High school education or equivalentAbility to pass a background check with a Government Valid IDSolid computer skills and an aptitude for learning new software.Minimum of 1 year working in the Customer Service industryMinimum of 1 year Sales experienceExtras:We are looking for a strong team-player, bringing in a high level of enthusiasm and energy. With a motivation to learn and provide exceptional customer service by using skills such as Empathy and Kindness.Weekly Hours:40 hours, with opportunities for over-timeStart your amazing career with CP360 today!Follow us on:LinkedIn: ContactPoint 360Facebook: ContactPoint 360Instagram: ContactPoint 360Twitter: ContactPoint 360Représentant du service à la clientèleOpérations - Montréal, QuébecJoignez-vous à la famille CP360 dès aujourd'hui !Qui nous sommes:Bienvenue à ContactPoint 360, le BPO mondial à la croissance la plus rapide au monde. À nos racines, nous sommes une entreprise familiale privée canadienne où l'esprit d'entreprise et les valeurs familiales chères se rejoignent. Avec 8 ans de croissance remarquable, notre équipe s'est élargie à plus de 3500 personnes passionnées et prospères à travers le Canada, les États-Unis, la Colombie, le Mexique, la Jamaïque, l'Inde, la Grèce et les Philippines. Nos réalisations sont fondées sur une culture primée qui encourage l'innovation et responsabilise chaque membre de l'équipe, ce qui nous vaut une reconnaissance mondiale en tant que Great Place to Work certifié.Chez ContactPoint 360 Inc., nous comprenons profondément la signification de la famille et des valeurs. En tant qu'entreprise familiale, nous chérissons un sentiment d'unité et de soutien qui s'étend au-delà du lieu de travail. Notre engagement à embaucher les meilleurs talents est motivé par notre conviction en l'importance des liens familiaux au sein de l'organisation.Nous responsabilisons les avant-gardistes et apprécions notre équipe. Ensemble, nous améliorons les interactions, créons des liens solides et innovons constamment pour offrir aux personnes et aux clients des expériences exceptionnelles, en accordant la priorité à l'expérience humaine.Notre but:Est de créer la meilleure expérience humaine, d'assurer la plus grande satisfaction des clients et de transformer les clients des clients en fidèles défenseurs de la vie.Découvrez notre vidéo YouTube: https://youtu.be/AsPjX-5uyQQContactPoint 360 offre une opportunité de carrière dans le service à la clientèle et les ventes avec des horaires stables et à temps plein. Nous recherchons des personnes motivées et autonomes, qui s'épanouissent dans un environnement en constante évolution et qui possèdent d'excellentes compétences en matière de service à la clientèle et de vente. Il s'agit d'un poste à distance pendant que nous mettons en place des mesures d'isolation, puis il sera complété à notre bureau de Montréal.Ce que nous offrons :Un programme de formation et de développement rémunéré.Nous offrons une couverture d'assurance concurrentielle, des incitatifs et deux semaines de vacances après 90 jours ! De plus, nous offrons des avantages surprenants que vous aimerez.Assurance médicale et dentaire après 3 mois (régimes familiaux disponibles)Vacances payéesPrimes de recommandation (gagnez jusqu'à 250 $ par recommandation)Possibilités de croissance ! (Vous pouvez passer à un programme de niveau 2 avec une augmentation de salaire dès 2 semaines de production !)Vous DEVEZ disposer d'une connexion Internet haute vitesse fiable et être en mesure de vous connecter directement au modem.L'équipement peut être fourni (à l'exception du casque d'écoute) si vous êtes situé dans la région de Montréal QC.Responsabilités :Fournir un service à la clientèle exceptionnel en aidant les clients à répondre à leurs besoins.Vous êtes en charge de l'organisation et de la mise en œuvre de l'ensemble des activités de l'entreprise.Faire preuve d'esprit critique pour rester centré sur les solutions.Vous devez être capable de conserver et de désamorcer les clients afin d'assurer une expérience positive globale.Il s'agit d'une campagne de transition, avec des moments de formation intensive pour acquérir une connaissance fondamentale des systèmes, des processus et des attentes en matière de service à la clientèle. Une fois que vous aurez acquis des bases solides, la prochaine étape de votre carrière consistera à passer à un programme de niveau 2 !Qui recherchons-nous ?Les candidats doivent être âgés de plus de 18 ans.Parler couramment l'anglais et avoir d'excellentes capacités de communication et d'écoute.Diplôme d'études secondaires ou équivalent.Capacité à passer un contrôle d'antécédents avec une pièce d'identité valide du gouvernement.Solides compétences en informatique et aptitude à apprendre de nouveaux logiciels.Au moins un an d'expérience dans le secteur du service à la clientèle.Minimum d'un an d'expérience dans la venteExtras :Nous recherchons une personne ayant un fort esprit d'équipe, apportant un haut niveau d'enthousiasme et d'énergie. Avec une motivation pour apprendre et fournir un service client exceptionnel en utilisant des compétences telles que l'empathie et la gentillesse.Heures hebdomadaires :40 heures, avec possibilité de temps supplémentaireCommencez votre carrière avec CP360 dès aujourd'hui !Suivez-nous sur :LinkedIn : ContactPoint 360Facebook : ContactPoint 360Instagram : ContactPoint 360Twitter : ContactPoint 360Job Types: Full-time, PermanentSalary: $15.25 per hourBenefits:Dental careExtended health careTuition reimbursementApplication question(s):Are you comfortable working within the Hours of Operation Mon-Sun 6am EST - 10pm EST?Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Work Location: In personExpected start date: 2023-10-09\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"5336CF1931D9ABB2D364F4D30AA618A4\",\n            \"cityName\": \"916 Windsor Back Rd, Three Mile Plains, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3966228590a213af\",\n            \"jobName\": \"Telephone Sales / Business Development\",\n            \"companyName\": \"Pure Paint Laboratories\",\n            \"rowSalary\": \"$15–$17 an hour\",\n            \"date\": 1694529068974,\n            \"dateOfPosted\": 1667626088630,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.96926999999999,\n                    \"lon\": -64.106021\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Three Mile Plains\",\n                \"formattedAddress\": \"Three Mile Plains, NS B0N 2T0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"West Hants\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Three Mile Plains, NS\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a positive, self motivated sales person to be a part of our dynamic team with endless possibilities for growth. Come on board with our group of hardworking, goal orientated go-getters and work for one of the most sustainable manufacturers in North America, based out of Windsor, NS.We are a high quality luxurious paint manufacturer looking for part-time sales professionals leading to full time.DescriptionService customers by selling product and meeting customer needsService existing accountsObtain ordersEstablish new accountsOrganize daily work load/ schedule to call on existing or potential salesBuild high quality customer relationshipsMeet/exceed sales goalsSelf motivatedResponsible for knowledge of companyEnsure CRM tool is up to dateQualificationsCall centre or direct sales experienceFluent in Word/ Excel/ AdobeComputer and internet connectionQuiet/ private workspaceConfident and outgoing personalityGoal and deadline motivatedReliableJob Type: Part-timePart-time hours: 15 per weekSalary: $15.00-$17.00 per hourSchedule:4 hour shiftMorning shiftNo weekendsSupplemental pay types:Commission payAbility to commute/relocate:Three Mile Plains, NS: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Three Mile Plains, NS\"\n        },\n        {\n            \"id\": \"56457A9C7BB421DF4612855441490125\",\n            \"cityName\": \"3330 Gaetz Avenue, Red Deer, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=771cc233f26143ce\",\n            \"jobName\": \"Cashier/Customer Service/Gas Station Attendant\",\n            \"companyName\": \"Petro Canada\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694528947063,\n            \"dateOfPosted\": 1670453682149,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.257636,\n                    \"lon\": -113.8141506\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Red Deer\",\n                \"formattedAddress\": \"Gaetz Ave, Red Deer, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Red Deer\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Petro Canada (3330 Gaetz Ave, Red Deer)*Hiring for 2 Positions*- Overnight Shifts- Day ShiftsLooking for individuals with superb customer service and excellent work ethics. Work experience in Retail would be an asset.Job duties include processing sales transactions while providing great service to our customers, cleaning and stocking the interior and exterior of the store and capable to work in a fast paced environment.Medical Benefits are provided to full time employees after completion of 6 months.Drop off your resume at 3330 Gaetz Ave or email your resume.Job Types: Full-time, PermanentSalary: $15.00 per hourBenefits:Dental careVision careShift:8 hour shiftWork Location: In person\",\n            \"location\": \"Gaetz Ave, Red Deer, AB\"\n        },\n        {\n            \"id\": \"81D4A2E42CEA50A98EFF3065B045BDEC\",\n            \"cityName\": \"Barriefield Market in Kingston, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=403c29223a8c92e3\",\n            \"jobName\": \"Meat Cutter Customer Service\",\n            \"companyName\": \"Barriefield Market\",\n            \"rowSalary\": \"$18–$21 an hour\",\n            \"date\": 1694528553566,\n            \"dateOfPosted\": 1694528552198,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2311717,\n                    \"lon\": -76.4859544\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kingston\",\n                \"formattedAddress\": \"Kingston, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Frontenac County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kingston\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Barriefield Market currently has an opening for a full and part time meat customer service applicants . We are looking for someone with a positive and outgoing attitude who would love to educate our customers about all the fresh and delicious meats we offer. We are committed to engaging each customer, understanding their needs, and offering information and suggestions that will help them make great choices. And nowhere is this more important than in the meat dept where there is so much good stuff to choose from! In this role you will spend about 60% of your time at the meat counter, which is all about fulfilling orders, product preparation, display, maintenance of product quality, answering questions, and most important of all - getting to know our repeat customers. The other 40% of your time will be spent cleaning up, stocking the area, or prepping food in the back – the behind the scenes work to make sure our meat department is setup for success. There is lots to do in this job – so you’ll find that time flies - and there’s lots to learn too. Thefull-time position will provide approximately 35-40 hours per week,and part time 24 to 30 consisting of days, and weekend shifts.Our ideal candidate will have these qualifications: High School Diploma  Good verbal communication skills Strong organization and planning skills  Strong initiative ability, excellent work ethic and sense of urgency Ability to work in a fast-paced environment  Flexibility – Ability to adapt quickly to new situations, as well as new and changing processes, programs, and services Strong customer service skills.Job Type: Full-timeSalary: $18.00-$21.00 per hourBenefits:Store discountSchedule:8 hour shiftDay shiftMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Kingston, ON\"\n        },\n        {\n            \"id\": \"3A6C690A6A9F2347093E98324BA8D7DC\",\n            \"cityName\": \"209 4 Av SE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=685d47a07178d612\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Brwd Yyc\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694528539554,\n            \"dateOfPosted\": 1693679417259,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0377538,\n                    \"lon\": -113.9657643\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"17 Ave SE, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a locally owned and operated coffee shop from Regina, Saskatchewan (Brewed Awakening) and have opened up our very first location in Calgary, Alberta! We are located downtown inside the Delta.We are currently looking for a couple more baristas to join our growing team!- Candidates must provide outstanding customer service with enthusiasm, kindness, and a big smile!- Candidates must be able to consistently serve up premium quality food and beverages.- Candidates must have passion to learn and grow in a fun and collaborative team environment.- Candidates must be able to also well work independently.- Candidates MUST be available weekends.Previous barista training is an asset. Training will be provided.We're looking forward to meeting you!Job Types: Full-time, PermanentSalary: From $15.00 per hourBenefits:Casual dressSchedule:Day shiftMorning shiftWeekends as neededSupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Av SE, Calgary, AB\"\n        },\n        {\n            \"id\": \"200FF99CE6043C4152250F58B53C1A64\",\n            \"cityName\": \"Saskatoon, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=656470152351c8ab\",\n            \"jobName\": \"Dispatcher/Customer Service\",\n            \"companyName\": \"Quick Apex Trucking Ltd.\",\n            \"rowSalary\": \"$15–$25 an hour\",\n            \"date\": 1694528308241,\n            \"dateOfPosted\": 1623842505386,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.157902,\n                    \"lon\": -106.6701577\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saskatoon\",\n                \"formattedAddress\": \"Saskatoon, SK, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saskatoon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Quick Apex Trucking is looking for a Dispatcher to support the drivers and meet customer scheduling needs.The successful candidate for this position needs to be able to adjust to last minute changes and work withdrivers to schedule pick-up or delivery for new or established clients. A good fit for this role will becustomer service focused, have a strong understanding of heavy equipment and able to work understressful conditions. This role will require someone to be on call based on a schedule that will able you tohave a work life balance.Daily duties:➢ Answer the phones to receive, schedule and enter loads.➢ Dispatch drivers shipment pick-ups and deliveries.➢ Update shipment tracking system in timely fashion.➢ Manage 15 plus drivers.➢ Manage Phone calls and will be able to get the load when required➢ Market and route intelligence is must to receives and coordinates emergency responsecustomer callsExperience and Skills required:➢ Strong understanding of heavy equipment.➢ Has previous 1A Driving experience and equipment hauling experience is an asset.➢ 2 plus years in a Dispatcher or similar role.➢ Leadership capabilities, ability to manage people.➢ High attention to detail, extremely organized, problem solver.➢ Adaptable, ability to adjust based on the immediate needs.➢ Clear, professional verbal and written communication.➢ Approachable, customer serviced orientated.➢ Marketing skills to get new business.Expected start date: 2021-07-01Job Type: PermanentSalary: $15.00-$25.00 per hourBenefits:Extended health careSchedule:8 hour shiftExperience:dispatch: 1 year (preferred)dispatching: 1 year (preferred)\",\n            \"location\": \"Saskatoon, SK\"\n        },\n        {\n            \"id\": \"E247717050EF05CB708F722627B7BC13\",\n            \"cityName\": \"Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6de96bd2aaac5250\",\n            \"jobName\": \"Customer Service Assistant\",\n            \"companyName\": \"Ocean Star Ltd\",\n            \"rowSalary\": \"$19.50 an hour\",\n            \"date\": 1694526277607,\n            \"dateOfPosted\": 1692830747300,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Bachelor's degreeExperience: 3 years to less than 5 yearsWork setting Private sector Tasks Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Explain the type and cost of services offered Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Sell merchandise Advise clients on advertising or sales promotion strategies Answer written and oral inquiries Supervision 1 to 2 people Computer and technology knowledge Internet MS Excel MS Outlook MS Word MS PowerPoint Social Media Area of work experience Marketing Transportation/travel information Own transportation Work conditions and physical capabilities Attention to detail Fast-paced environment Tight deadlines Work under pressure Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Judgement Ability to multitask Green job Involves duties and responsibilities that lead to positive environmental outcomes Involves supporting green economy sectors Other benefits Parking availableWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"A468858FC2DDFA795460115997973A62\",\n            \"cityName\": \"Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c6c8d8728ffc0557\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Fix Auto Scarborough Village\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694524711865,\n            \"dateOfPosted\": 1652789245689,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service Representative (CSR) is responsible for serving customers in person and via the telephone. The CSR is accountable for dealing with customer service, selling of services and processing transactions. CSR follows all procedures and policies when providing customer service. The CSR understands his/her role as brand ambassador and provides positive brand experience to all customers.Core Competencies· Customer Focus· Communication· Energy & Stress Management· Teamwork· Quality Orientation· Problem Solving· Accountability and Dependability· Operating Equipment· Ethics and Integrity· Results Oriented· NegotiationJob Duties· Ensure excellence in the delivery of the customer experience as outlined in Fix Auto best practices and measured by CSI results· Effectively manage front office operations to ensure efficient organization and support of the sales function· Collaboration with production manager and sales manager to ensure vehicles are on track for timely and flawless delivery· Provide regular and standard reporting to production and sales managers to ensure awareness on key performance metrics· Provide service to customers by reviewing the services offered and cross-sell different programs by explaining the advantage of our multiple service offerings.· Sell the Fix Auto Services and provide an outstanding customer service, in order to build strong and long-lasting relationships with clients.· Communicate and interact with clients throughout the different technologies such as text messages, emails, online videocall, etc.· As required, assign the work order to technicians.· Set convenient appointments with the customers, based on the shop availability.· Keep the customer data base up to date to ensure efficiency.· Other related tasks as required.Requirements· High school diploma or GED required· Strong customer service and troubleshooting skills· Experience working as a customer service representative for a body shop preferred· Exceptional conflict resolution, negotiation, and objection handling skills· Highly flexible, with solid interpersonal skills that allow one to work effectively in a diverse working environment· Able to effectively communicate both verbally and in writing· Able to deal with people sensitively, tactfully, diplomatically, and professionally at all times· Computer literate, including effective working skills of MS Word, Excel and e-mail· Professional appearance and manners· Strong work ethic and positive team attitudeWorking Conditions· Manual dexterity required to use desktop computer and peripherals· Overtime as required· Lifting or moving up to 50 lbs may be requiredJob Type: Full-timeSalary: $19.00-$22.00 per hourBenefits:Company eventsOn-site parkingStore discountSchedule:8 hour shiftDay shiftAbility to commute/relocate:Scarborough, ON M1J 2E5: reliably commute or plan to relocate before starting work (preferred)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"0079BE957619E7F33C7F0E8E5EC7AA62\",\n            \"cityName\": \"10828 Hurontario St, Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=755146a8a00df86c\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Brampton Brick\",\n            \"rowSalary\": \"$37,838–$45,000 a year\",\n            \"date\": 1694524518616,\n            \"dateOfPosted\": 1692830606319,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7056942,\n                    \"lon\": -79.7868214\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Hurontario St, Brampton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 37838.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    37838.0\n                ],\n                \"range\": {\n                    \"gte\": 37838.0,\n                    \"gt\": null,\n                    \"lte\": 37838.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service RepresentativeJob PurposeThe Customer Service Representative will work cooperatively with customers, sales representatives, as well as the logistics and technical teams, to ensure that Brampton Brick’s customers receive quality product and service in a timely and professional manner.Primary Duties & ResponsibilitiesProviding product and technical information to customers and sales team in a timely mannerCommunicate with customers and co-workers via phone/email/salesforce/faxAccurately process customer transactions such as orders, picks, packs, and returnsObtain accurate information from clients relating to their orders and projectsManage orders to ensure accurate and timely delivery of productIdentify, research, and resolve customer inquiry and order statusCoordinate the transfer of products from other locations as neededWork closely with other locationsMonitoring inventory and allocationsInter-company billing, inter-branch billing, track customer owned inventoryReporting, analyzing, and performing other duties as assigned.Some travel may be required from time to timeQualifications / ExperienceMinimum high school graduate, post secondary training is an assetExperience in customer service environmentsProficient in the use of Microsoft Office, and capable to quickly gain working knowledge of software applicationsExcellent interpersonal, listening and communication skillsExcellent organizational and time-management skillsStrong problem solving skills; ability to make timely but sound decisionsStrong numerical and analytical skillsManage changing priorities, demands and constant interruptionsAbility to work under pressure, multi-task and meet deadlinesTeam player, but is able to work independentlyFluency in French (written and oral) an assetWork flexible hoursJob Types: Full-time, PermanentSalary: $37,838.00-$45,000.00 per yearBenefits:Dental careVision careSchedule:8 hour shiftMonday to FridayEducation:Secondary School (preferred)Experience:customer service: 3 years (required)Work Location: In person\",\n            \"location\": \"Hurontario St, Brampton, ON\"\n        },\n        {\n            \"id\": \"ABFC4AA81C34D14B871C8B690FDE893D\",\n            \"cityName\": \"5014 49 St, Leduc, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4b812d151fbc7dfe\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Jukebox Diner\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694523362855,\n            \"dateOfPosted\": 1691631177563,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.2646889,\n                    \"lon\": -113.5527442\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Leduc\",\n                \"formattedAddress\": \"Leduc, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Leduc County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Leduc\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate / CashierResponsibilities:- Provide exceptional customer service by greeting and assisting customers in a friendly and professional manner- Process customer transactions accurately and efficiently using the cash register- Handle cash, credit, and debit card transactions with precision- Maintain a clean and organized checkout/kitchen- Answer customer inquiries and resolve any issues or complaints in a timely manner- Collaborate with team members to ensure a positive shopping experience for customersExperience:- Excellent communication skills in English, both verbal and written- Strong organizational skills to manage multiple tasks effectively- Previous experience in customer service or retail is preferred but not required- Technical sales knowledge is a plus- Ability to handle cash transactions accurately and efficiently- Time management skills to prioritize tasks and meet deadlinesWe offer competitive pay, flexible scheduling. Join our team if you are committed to providing exceptional customer service.To apply, please submit your resume highlighting your relevant experience and qualifications. Only qualified candidates will be contacted for an interview.Job Type: Part-timePart-time hours: 20-25 per weekSalary: From $15.00 per hourBenefits:Store discountDay range:Monday to FridayFlexible Language Requirement:English not requiredShift:4 hour shiftAfternoon shiftDay shiftEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Licence/Certification:FoodSafe (preferred)Shift availability:Day Shift (preferred)Ability to Commute:Leduc, AB T9E 6W8 (required)Ability to Relocate:Leduc, AB T9E 6W8: Relocate before starting work (preferred)Work Location: In person\",\n            \"location\": \"Leduc, AB\"\n        },\n        {\n            \"id\": \"4BE88141E5527CC72E2D3A72FFC3A12B\",\n            \"cityName\": \"22740 Dewdney Trunk Rd, Maple Ridge, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1087e5d4d5fe4281\",\n            \"jobName\": \"Service Counter - Lumber / Customer Service\",\n            \"companyName\": \"Haney Builders Supplies (1971) Ltd.\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694521422786,\n            \"dateOfPosted\": 1692825116849,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2202754,\n                    \"lon\": -122.5360144\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Maple Ridge\",\n                \"formattedAddress\": \"Dewdney Trunk Rd, Maple Ridge, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Maple Ridge\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"SUMMARY : Sales Counter Representative is responsible for assisting customers to determine their needs, answer their questions about our products and recommend the right solutions. You should also be able to promptly resolve customer complaints and ensure maximum client satisfaction. Other companies may refer to this job as Customer Service, Inside Sales, Service Advisor, Sales Associate or Store Associate.ESSENTIAL DUTIES AND RESPONSIBILITIES : Responsibilities include but are not limited to:Greet customers and ensure a good customer experienceAssess customer needs and provide expert advice on store productsPresent and demonstrate the product highlighting its positive features and suggest complementary productsProcess Invoices, credits and special orders for customersActively participate in achieving store sales objectivesKeep up to date with new products and their functionsDevelop a basic knowledge of all the departments in the storeBe aware of current promotions and flyersComply with policies and procedures regarding loss prevention, breakage of goods and health and safetyPerform other duties as requested by the supervisor.QUALIFICATIONSKnowledge of lumber, building supply and construction industrySolid communication and interpersonal skillsSpecific area knowledge in plumbing, paint, electrical, and general DIY is a plusA friendly and energetic personality with customer service focusBe able to work well as part of a teamBENEFITS (including but not limited to):Competitive wages based on experienceHealth, Dental, Group Life Insurance (once 3-month probation has been completed)Deferred Profit Sharing Plan and RRSP Deduction Plan (after 12 months FT employment)Job Types: Full-time, PermanentSalary: From $17.00 per hourBenefits:Employee assistance programProfit sharingStore discountSchedule:8 hour shiftWeekends as neededSupplemental pay types:Bonus payOvertime payCOVID-19 considerations:Cleaning staff thoroughly clean our premise each day, plastic barriers between customers and service counter, PPE available to all staff, and more.Experience:customer service: 2 years (preferred)Work Location: In person\",\n            \"location\": \"Dewdney Trunk Road, Maple Ridge, BC\"\n        },\n        {\n            \"id\": \"BF300050E638372ACAB0B142DED53C05\",\n            \"cityName\": \"4412 14th Avenue, Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=14f87b6bf6b62a7d\",\n            \"jobName\": \"Customer Service & Quoting Specialist\",\n            \"companyName\": \"Microart Services Inc.\",\n            \"rowSalary\": \"From $80,000 a year\",\n            \"date\": 1694521326552,\n            \"dateOfPosted\": 1692828546838,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8511546,\n                    \"lon\": -79.27180589999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Markham\",\n                \"formattedAddress\": \"14th Ave, Markham, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Markham\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 80000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    80000.0\n                ],\n                \"range\": {\n                    \"gte\": 80000.0,\n                    \"gt\": null,\n                    \"lte\": 80000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer satisfaction. Everything we do is focused on building and sustaining our customers’ trust, confidence and loyalty.ABOUT MICROART:We are an electronic manufacturing company with a focus in producing PCBS (Printed Circuit Boards). Microart Services Inc. is an ISO9001, ISO13485 & AS9100 registered corporation servicing markets worldwide. Our continued commitment to servicing the prototype to mid-volume clientele has awarded us with strong, stable growth over 40 successful years and many valued long-term partnerships.Job Title: Customer Service and Quoting SpecialistReports To: Supply Chain DirectorDepartment: Supply ChainShift: 8:30 AM – 5:00 PMKey Responsibilities:1. Client Requisition Processingo Ensure customer files are saved and organized in compliance with Microart document control standards.o Ensure customer’s requests for quotes are processed as follows:o Create templates same day quote request is receivedo Replies to “Consigned customers” within 24 hourso Replies for “Boards only” within 48 hourso “New Customers” response within 3 dayso “Turnkey orders” within 5 dayso Track obsolescence and NCNR (Non-returnable, non-cancellable) components; convey reports to customers, and provide solution.o Ensure customer’s purchase orders are processed daily, and delivery confirmed within 24 hours.o Update and ensure the accuracy of Dynamic datao Client information – Address, contact names, products sold, special requests.o Sales Order, Production Order, Finished Good Item Card is complete and updated.o Respond to all client enquiries in a timely manner.o Identify large volume customers, and bring to the attention of your manager.o Proactively solicit and action customer feedback.2. Procurement and Quoting of Materialso Verify customer’s most up-to-date information on file, and import BOMs.o Ensure material orders are placed in a timely manner, committing to your LPIH (Last Part in House) date.o Update MSI BOM on the fileserver to reflect spending.o Apply JIT inventory methodology, and reduce stocked inventory.o Perform MRO (Maintenance, repair and operations) purchasing on an ongoing basis.3. Other duties as assigned by management team.Qualifications:1-2 years customer service work experience, ideally in electronics manufacturing environmentAble to work in a high changed / fast-paced environment under tight deadlinesExperience with MRP systems (ideally Dynamics)Knowledge of MS Office (Excel skills)Effective communication skills to interact effectively with all levels of the organizationEffective organizational, time management and interpersonal skillsExcellent analytical skills and attention to detailDedicated, professional attitude; enthusiastic and willing to learnBonus if completed or aiming to complete PMAC/CGP or other related supply chain/logistics coursesMicroart Services is committed to providing accommodation in its recruitment processes to applicants with disabilities, upon request, taking into account the applicant's accessibility needs. If you require accommodation at any time during the recruitment process please email us at aoda@microartservices.com.To bend over backwards for our customers and to grow our family of people, customers and supply partners treating all with care & attention.Job Type: Full-timeWork Location: In person\",\n            \"location\": \"th Avenue, Markham, ON\"\n        },\n        {\n            \"id\": \"FD8A5D2DA66E447868D625AE5FE66B98\",\n            \"cityName\": \"680 Progress Avenue, Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e018d2fda91a03cb\",\n            \"jobName\": \"Picker Packer And Customer Service Associate\",\n            \"companyName\": \"Salonbrandz.com\",\n            \"rowSalary\": \"$15.75–$16.50 an hour\",\n            \"date\": 1694521307489,\n            \"dateOfPosted\": 1694521306076,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7789414,\n                    \"lon\": -79.2568878\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Progress Ave, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full Time: $15.75-16.50/hr StartingExcellent Hours: Monday - Friday From 9am -5pmClosed on the Weekends,Recently graduated International Students & Immigrants are welcome must be fluent in english and computer literateSalonbrandz.com. - Scarborough, ONSalonbrandz.comis an independent, privately-owned Canadian distributor of professional salon products. We are dedicated to offering a wide variety of high quality, value-added products for our clients. Through inspiration, education and leadership, our ultimate goal is to help the professional enhance their business by assisting them in making their clients feel good and look beautiful.We are currently looking to hire Picker Packer & Sales Entry Associates to join our team. We want you to bring your talents, experience, and enthusiasm to a team-oriented and dynamic environment. We believe that our success is based primarily on the quality and hard work of our valued team members to bring the Beauty world to our customers._______________________________________________________Responsibilities:Pick and pack orders for customers and for online orders.Face to face sales for walk-in customers by directing them to products an explaining product features.Maintain excellent store appearance and assist with store merchandising to provide a positive shopping experience for our customers.Ability to explain intermediate computer tasks to non-technical usersExcellent English communication skills (verbal and written)Outstanding organizational skills and an ability to juggle multiple tasksQualifications:Strong and dependable work ethic, with a drive to uphold our Culture of Can DoPossess a passion for the beauty industry with the desire to teach our customers about our products.Self-starter with a drive to continuously learn and develop in their careerMust be 18 years of age of olderPrevious sales and/or cosmetology experience preferred but not required. Work where we treat you and our customers as a priority.Opportunities to grow your career within the companyOn-going product knowledge programs and customer experience coachingWork in an environment focused on and surrounded by beautyJob Type: Full-timeSalary: $15.75-$16.50 per hourExpected hours: 37.5 per weekSchedule:Monday to FridayWork Location: In personApplication deadline: 2023-09-15\",\n            \"location\": \"Progress Ave, Toronto, ON\"\n        },\n        {\n            \"id\": \"8F74665808ED19216FEF3A039C1C567A\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e658388367b3870e\",\n            \"jobName\": \"Customer Service And Rentals CoordinAtor At Place Dorchester\",\n            \"companyName\": \"Cogir\",\n            \"rowSalary\": \"$40,000 a year\",\n            \"date\": 1694521145016,\n            \"dateOfPosted\": 1668220829241,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Every day, our team of enthusiasts makes a difference to residents. The “human for human” relationship is at the heart of our approach and corporate philosophy. Moreover, the success of COGIR Immobilier is based on the good teamwork between the various departments and on all the people who have joined the company for more than 25 years. POSITION DESCRIPTION: The Place Dorchester building located downtown is currently looking for a Customer Service and Rentals Coordinator. Are you a sales ace? Proactive, with innovative sales-marketing ideas? We have the opportunity for you waiting for you! ROLE AND GENERAL RESPONSIBILITIES:Coordinate with the property manager the interventions requiring a specific action plan.Ensure the provision of high level customer serviceFollow-up of rental filesFulfill leasesManage the collection of rents and the making of deposits according to the standards in forcePlan the arrivals and departures of tenants and ensure the optimal progress of these activities, while maintaining the security of the building and its occupantsPreparation and follow-up of movesRespond to customer inquiries, email follow-upsRespond to rental requests (email follow-ups, Facebook, ILS, etc.)See to the management of the repair work according to the requests of the tenants with the members of the maintenanceUpdate the various administrative reportsUpdate the various rental reportsWork with the property manager for rent collectionEXPERIENCE AND QUALIFICATIONS:Availability as soon as possibleBENEFITS:Rental bonusesCellular providedPossibility of advancementGroup insuranceFloating days offSocial leaveEmployee Assistance ProgramVacationWelcome and integration ProgramA welcoming and tight-knit team!Salary of $40,000 rental commissionsJOB STATUS: Permanent: Full Time JOB SCHEDULE: Day time \",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"2ADB5AB37690962CAB51A5247115BF27\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=80dc7e2936fd85bf\",\n            \"jobName\": \"Customer Service Supervisor - Retail\",\n            \"companyName\": \"Ontario Impex Of Canada Inc.\",\n            \"rowSalary\": \"$21.50 an hour\",\n            \"date\": 1694521063849,\n            \"dateOfPosted\": 1692824922012,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsWork setting Manufacture Tasks Assign sales workers to duties Hire and train or arrange for training of staff Authorize return of merchandise Establish work schedules Prepare reports on sales volumes, merchandising and personnel matters Organize and maintain inventory Resolve problems that arise, such as customer complaints and supply shortages Supervise and co-ordinate activities of workers Supervise staff (apprentices, stages hands, design team, etc.) Supervision 3-4 people Work conditions and physical capabilities Fast-paced environment Work under pressure Tight deadlines Attention to detail Manual dexterity Personal suitability Accurate Client focus Efficient interpersonal skills Excellent oral communication Flexibility Organized Team player Excellent written communication Dependability JudgementWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"38B635CFC446218C72E6D415AD5E7C8D\",\n            \"cityName\": \"Salonbrandz.com in Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b9974f56949a57cb\",\n            \"jobName\": \"Customer Service Sales & Packer\",\n            \"companyName\": \"Salonbrandz.com\",\n            \"rowSalary\": \"$16–$17 an hour\",\n            \"date\": 1694520995549,\n            \"dateOfPosted\": 1694520994366,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We’re an independent, family-owned business, located in Scarborough, Ontario, with an ambitious growth plan. A rapidly expanding company within the Professional Beauty space, with distribution across Canada, the USA and Europe. Extremely social media savy and connected to all major hairstylists around the world.Responsibilities: This individual will be working in a beauty supply store, with customer service, picking/ packing as well as computer orientied in making invoices and bills . The successful candidate must be reliable and detail oriented. We are looking for someone who works well under pressure and who is willing to make positive contributions which will enable our team to work with optimum efficiency.Responsibilities and DutiesDuties: * Pick, Pack and Process orders * Moving and lifting of product, not heavy * General invoicing * Other warehouse duties as needed * Qualifications and SkillsTechnical Skills: * Ability to lift and carry product up to 20-40 lbs. * Attention to detail and a high level of accuracy * Ability to work in a fast paced environment * Ability to work independently or in a team environment * Some computer skills required * Required to stand and walk for long periods of time * Education & Experience: * Warehouse picking/shipping experience is an asset * G.E.D or equivalentBenefitsExcellent work/life balance with a Mon-Fri, 37½ hour work week * Staff discountsMaintains excellent writing and language skills.Ability to work independently while following the overall management strategy.Tech-savvy.Ability to adapt and respond to multiple incoming requests and shifting priorities.Own day-to-day Seller Central account managementSubmit cases and investigate issues with AmazonWeekly reportingCoordinating inventoryInterested, qualified candidates should submit their resume in confidence - Please no phone calls.We thank all candidates for their interest, but only those selected for interview will be contacted3 month probationary period.Masks are to be worn at all time. Daily screening. Not open to public.Job Type: PermanentSchedule:8 hour shift (Mornings)Monday to FridayNo weekendsOvertimeExperience:warehouse: 1 year (preferred)warehouse worker: 1 year (preferred)Work remotely:NoJob Types: Full-time, PermanentSalary: $16.00-$17.00 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In personApplication deadline: 2023-09-15Expected start date: 2023-09-15\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"B7B5202A40D33DE6239AFB55DB54F1FC\",\n            \"cityName\": \"360 Old Airport Road, Yellowknife, NT\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8955d2195fef9307\",\n            \"jobName\": \"Automotive Customer Service Advisor\",\n            \"companyName\": \"Yellowknife Motors\",\n            \"rowSalary\": \"$60,000–$70,000 a year\",\n            \"date\": 1694519518625,\n            \"dateOfPosted\": 1689747458469,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 62.45464380000001,\n                    \"lon\": -114.4074368\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Yellowknife\",\n                \"formattedAddress\": \"Old Airport Rd, Yellowknife, NT X0E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Northwest Territories\",\n                \"state_code\": \"NT\",\n                \"postalTown\": null,\n                \"county\": \"Fort Smith Region\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Yellowknife\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 60000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    60000.0\n                ],\n                \"range\": {\n                    \"gte\": 60000.0,\n                    \"gt\": null,\n                    \"lte\": 60000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"SummaryThe Service Advisor is responsible for creating great first impressions and guides the customers through the maintenance scheduling process and repair of their vehicles.The Service Advisor is a great listener and is a master at executing all the service processes with due diligence and customer service and safety in mind. The Service Advisor has a keen eye for \\\"the details\\\" and strives to be a product knowledge expert ensuring the dealership provides each customer with a personalized service experience.The Service Advisor builds strong relationships with customers in an effort to achieve service targets and utilizes the tools provided to ensure all customers keep coming back to the dealership.The Service Advisor upholds the dealerships’ standards and values so that the customer is completely satisfied through every interaction with the service department. As a team player, Service Advisors foster excellent relationships with personnel in all areas of the dealership.The DetailsDevelop Strong Relationships with Customer and continue to develop the Relationship:· Greet customers on the phone or in the Dealership promptly and in a courteous manner.· Address customer questions/needs promptly and professionally.· Schedule appointments based on service calls.· Provide customers with personalized service.· Ensure comprehensive re-delivery check of customer vehicle, ensuring cleanliness and that all items identified for service/repair have been carried out appropriately on time.· Assist customers in scheduling appointments for routine maintenance and needed repairs.· Handle customer complaints and ensures high customer satisfaction standards.Service Experience· Identify service needs of customer vehicle based upon historical service data.· Asks appropriate questions to ensure the vehicle to be serviced is diagnosed correctly.· Provide repair and maintenance recommendations to the customer.· Advise customers of estimated service and repair costs and review details of service/repair invoice with customer to gain their understanding of all services provided.· Explain the nature of all repairs.· Determine progress of repair/service orders and inform customer accordingly.· Handle phone inquiries regarding work-in-progress, appointments and return phone messages promptly.· Advise customers on the care of their cars and value of maintaining their vehicle in accordance with manufacturer’s specifications and warranty maintenance.Be detailed oriented· Actively maintain the cleanliness of personal and team workspaces.· Maintain a high level of grooming, hygiene and professional appearance.· Ensure all documentation/paperwork is completed in an accurate and timely manner.· Keep service department forms, menus and pricing guides up to date.· Ensure vehicles are parked in assigned areas, make sure they are locked and all key are marked and put away correctly.· Document customer’s routine maintenance or vehicle problems accurately and clearly on repair orders.Commit to the Dealership Brand· Stay up-to-date on all dealership training requirements.· Understand and sell in-dealership manufacturer service promotions.· Be knowledgeable about new features, specials and updates.· Be a champion for delivering excellent service at all times.· Actively promote and develop new business.Develop and maintain full knowledge about the Industry· Keep up to date with products, accessories, prices, and key features of major competitors.Specific Skills· Excellent interpersonal skills with an upbeat and engaging attitude.· Customer relationship skills including listening and the ability to communicate effectively.· Excellent verbal communication and writing skills.· Problem solving and critical thinking skills.· Basic computer skills.· Good math skills.· Organized and pays attention to detail.· Flexible and open to change; take on special tasks as needed.· Conscientious.· Ability to negotiate win-win scenario’s for the customer.· Results oriented and accountable.· Ability to work independently or within a team.· Able to operate manual and automatic transmissions.· Adaptable to work evening and weekend shifts as scheduled.Education & Experience· Minimum Grade 12 High School Diploma.· A fundamental understanding of automotive mechanical fundamentals.· Adaptable to work evening and weekend shifts as scheduled.Background check requiredJob Type: Full-timeSalary: $60,000.00-$70,000.00 per yearBenefits:Extended health careSchedule:Monday to FridayWeekends as neededAbility to commute/relocate:Yellowknife, NT X1A 3T4: reliably commute or plan to relocate before starting work (required)Experience:service advisor: 1 year (required)Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Old Airport Road, Yellowknife, NT\"\n        },\n        {\n            \"id\": \"EB1D7ED7D18151E9DBAB57D781EC3EF3\",\n            \"cityName\": \"90 Admiral Blvd, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b091f652a4198bd8\",\n            \"jobName\": \"Warehouse/Customer Service Team Lead\",\n            \"companyName\": \"Bolloré Logistics Canada\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694519399919,\n            \"dateOfPosted\": 1692825785566,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6477712,\n                    \"lon\": -79.6963243\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Admiral Blvd, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:Handle customer complaints by providing solutions, often within a time limit to ensure the customers is satisfied.· Learn to identify customer needs or desires in order to provide the appropriate service.Responsible for the operational stock balance between the WMS and Customer System.·Will act as WMS key-user and learn the software systems used by the customer to be able to communicate effectively with the customer or staff issues/inquiries.·Be able to process orders, or requests sent by the customer.·Work with colleagues when necessary to resolve customer complaints.Learn about the products inside and out to be able to answer any questions and processes.Would need to step in at times to cover / perform the job al his/her respective staff .Will be the liaison with the customers’ team with matters of inbound, inventory, and outbound.Will take part in the daily customer operational calls to identify any obstacle that may not allow Bolloré to meet the set operational deadlines.Manage, with his/her team, all administrative aspects of the operations / activities.Assists in training, evaluation of staff, and provides end users performance reviews to manager.Maintains professional and technical knowledge of department staff by consulting with workers, and managers to ensure the procedures are maintained; staff are trained on internal process, and in compliance with safety and occupational guidelines regarding material handling, shipping and receiving of inventory.Updates job knowledge by participating in educational opportunities; reading technical publications.Accomplishes warehouse and organization mission by completing related results as neededMay compile worksheets per customer specifications.Ensures all Company QHSE rules and regulations are followed and abided by all, including oneself.Experience:- Five to then years experience in a customer service role is required- Proven leadership skills with the ability to motivate and inspire a team- Strong communication and interpersonal skills- Excellent problem-solving abilities- Familiarity with order picking, loading/unloading, RF scanners, shipping/receiving, picking/packing, pallet jacks, package building, and mechanical knowledge is preferredWe offer competitive pay and benefits package. Join our team today and make a difference in our customers' experience!Job Type: Full-timeSalary: $20.00-$22.00 per hourBenefits:Company pensionDental careExtended health careOn-site parkingPaid time offRRSP matchTuition reimbursementFlexible Language Requirement:French not requiredSupplemental pay types:Overtime payAbility to commute/relocate:Mississauga, ON L5T 2W1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:warehouse: 1 year (preferred)Licence/Certification:Class 5 Licence (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Admiral Blvd, Mississauga, ON\"\n        },\n        {\n            \"id\": \"6E45FC511F992B4313D66F2988A92859\",\n            \"cityName\": \"9936 109 Street NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=48481aafd114557e\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Petro Canada/ 846840 Alberta Ltd\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694518421682,\n            \"dateOfPosted\": 1692824096470,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.6065656,\n                    \"lon\": -113.3801256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"24a St NW, Edmonton, AB T5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are hiring Cashier(s) at the following Petro-Canada locations:9936 109 Street, EdmontonAfternoon shift, schedule is posted 1 week in advance. Days vary, weekends and holidays required.Working alone and as part of the team required. Must be mature, and expected follow all safety and service policies. Part time and full time required.We require a confident, outgoing and smart person to join our team, all training and uniforms are provided. Advancement opportunities available for fast learners. We strive to deliver exceptional Guest service through:SERVICE-ORIENTATIONPutting the Guest first by providing fast, friendly and responsive service.Responding to Guest complaints by Listening with empathy, taking action and wrapping up.COMPOSUREThe ability to maintain composure and objectivity in difficult situationsSELLING SKILLSSuggest products that will meet the needs of the Guest.Can explain the benefits for these add on items.INITIATIVEActive attempts to achieve set goals over and above what is required and expected.ADAPTABILITYThe ability to adjust to changing situations (ie: tasks, responsibilities and groups.)WORK STANDARDSSetting high goals or standards of performance for self and others.CO-OPERATION AND TEAMWORKWorking with others to achieve a common goal.Maintaining a positive attitude.JOB MOTIVATIONWork-related tasks are similar to tasks that the person enjoys doing or takes pride in doing in their personal life. *Follow the site housekeeping standards to ensure the Guest has a best experience.COMMUNICATIONEffectively interacts with individuals or in group situations.Listens, ensures understanding.ENERGYMaintaining a high activity level.Qualifications : Neatly groomed, Dependable, Ability to build proficiency on the POS equipment of the site including Bulloch, lotto, car wash (if applicable).Maturity in dealing with a large variety of Guests—different ages and personalities.Able to embrace the Service Hero Mindset and Culture Passionate about the job.Fast Friendly Responsive Fun Informed and Empowered.DUTIES : Serve needs of Guests at PaypointCleaning and stocking.Maintenance and general upkeep.Suggestive selling.Other locations:174 St. Albert Trail; St Albert143 St Albert Trail; St albert770 St Albert Trail; St Albert9936-109 St; Edmonton810 Webber Greens Drive; Edmonton16951 109 Ave; Edmonton100 Kings Link, Spruce Grove;4205 SouthPark Drive, Stony PlainJob Types: Part-time, Full-timeSalary: From $15.00 per hourDay range:HolidaysWeekends as neededShift:8 hour shiftWork setting:Convenience storeWork Location: In person\",\n            \"location\": \"Street NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"5AD38815634EDDC3618F68B067B4B841\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6036a7720e760c5a\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Abstract Management Group\",\n            \"rowSalary\": \"$40,000–$50,000 a year\",\n            \"date\": 1694518301128,\n            \"dateOfPosted\": 1692830229776,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Abstract Management Group is a well-renowned customer acquisition, customer support, and business development service provider across the North York area. We firmly believe that personalized client and customer interactions bring a world of possibilities, brand loyalty, increased sales revenue, and customer retention. Our Customer Service Representative is the heart of what we do for our clients!The main goal of our Entry Level Customer Service Representative is to ensure excellent customer service standards, appropriately and accurately answer inquiries, and complete sales / contract transactions to those inquiring customers. Our Entry Level Customer Service Representative thinks fast on their feet, possesses contagious energy, and maintains a high level of confidence in their knowledge and expertise with people.Entry Level Customer Service Representative Core Responsibilities:Identify our customer's needs and recommend appropriate products and services that are individualized to their preferencesSustain and maintain relationships with all customer accounts based on trust and loyaltyBe an expert in all product and service offerings, to better ensure appropriate customer support in handling questions and concernsKeep a spotless record of client and customer interactions and maintain records in accordance with company policy using our CRM softwareWork cohesively with other Entry Level Customer Service Representatives and other internal team members to ensure all goals are metCharacter Traits of our Next Entry Level Customer Service Representative:Initiative: ethical, optimistic, adaptable, self-starterOrganization Skills: attention to detail, time management, self-managementLearning: student mentality, learning attitude, learns from other Customer Service RepresentativesPeople Skills: professional, exemplary written and verbal, customer focusedExperience and Education Requirements We ask our Entry Level Customer Service Representative to have:A High School Diploma or GED equivalent is a must1+ years of experience is highly recommended, but not requiredConfident in an entry-level position and a learning environment with mentorship from other Entry Level Client Service Trainees and upper-level managementExperience in a hospitality, warehouse, or team-focused environment is highly desirableComfortability in a fast-paced environmentJob Type: Full-timeSalary: $40,000.00-$50,000.00 per yearFlexible Language Requirement:French not requiredSchedule:Monday to FridayWeekend availabilityWork Location: In person\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"B6CA12B7B351EF9F214A6673C96C3868\",\n            \"cityName\": \"Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8e4223e7a0a0bcc4\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"Acd Electric & Plumbing Ltd.\",\n            \"rowSalary\": \"$38.50 an hour\",\n            \"date\": 1694518260956,\n            \"dateOfPosted\": 1692828418864,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8561002,\n                    \"lon\": -79.3370188\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Markham\",\n                \"formattedAddress\": \"Markham, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Markham\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 39.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    39.0\n                ],\n                \"range\": {\n                    \"gte\": 39.0,\n                    \"gt\": null,\n                    \"lte\": 39.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: EnglishHours: 30 hours per weekEducation: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsor equivalent experience Work site environment Outdoors Noisy At heights Work setting Construction Maintenance Residential Tasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Recruit and hire workers and carry out related staffing actions Train or arrange for training Set up machines and equipment Estimate costs and materials Recommend personnel actions Read blueprints and drawings Requisition or order materials, equipment and supplies Leading/instructing individuals Supervision Floor covering installers Working groups Plasterers Roofers Kitchen cupboard and vanity installers Trades helpers Labourers Transportation/travel information Valid driver's licence Own vehicle Own transportation Work conditions and physical capabilities Work under pressure Own tools/equipment Steel-toed safety boots Hard hat Safety glasses/goggles Tools Personal suitability Excellent oral communication Organized Reliability Team player Screening questions Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Workplace information On the road job Other benefits Parking available\",\n            \"location\": \"Markham, ON\"\n        },\n        {\n            \"id\": \"A76FF3DA5FF6CC0AFFF10969BD58A13D\",\n            \"cityName\": \"St. Catharines, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5c87f9a372604244\",\n            \"jobName\": \"Wfh Customer Service Representative/Collector\",\n            \"companyName\": \"Ncri Inc.\",\n            \"rowSalary\": \"$18–$19 an hour\",\n            \"date\": 1694518189640,\n            \"dateOfPosted\": 1688065090928,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1593745,\n                    \"lon\": -79.2468626\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St. Catharines\",\n                \"formattedAddress\": \"St. Catharines, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"St. Catharines\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"NCRI is growing stronger and is seeking a WFH Customer Service Representative/Collector to join our motivated and growing family. Our future colleagues will be team-oriented, performance-driven, and outside-the-box thinkers. Home Office Equipment Requirements:Equipment will be provided by the companySuccessful candidates will be pre-screened by our Tech Support team to ensure they meet all requirements to proceed, prior to being invited to the training.High-speed internet with hardwired connection from the computer to the modem. Speed should be 50 MPBS download and 20 MPBS Upload. Requirements:Communicate with customers for all outstanding amountsEstablish a solid professional relationship with customers and educate them on best practicesNegotiate the best payment arrangement to help resolve customers’ billsMaintains a high level of professionalismA background and credit check will be required. Bring it! You're qualified if you: Call center experienceCollections experience is an assetAttention to detailExceptional verbal & written communication skills in EnglishProfessional phone etiquetteProven ability to achieve targetsDedication to maintaining a superior customer experienceEnthusiastic and a positive \\\"can do\\\" attitudeAbility to pass a background check What we offer:Competitive base pay, plus uncapped performance-based commission!Competitive insurance coverage, incentives, paid training, and breaksOutstanding referral bonus programFun perks: Holiday events, food days, giveaways, prizes, themed events, and more! As our Call Center expands, we will need to grow our leadership team! We'll show you a clear career path and provide the tools you need to earn more responsibilities and promotions. Nothing more satisfying than seeing your career grow within a caring organization. We are committed to providing the best work environment you’ve ever experienced!! Start your amazing career with NCRI today!\",\n            \"location\": \"St. Catharines, ON\"\n        },\n        {\n            \"id\": \"74F0E0F16B0D7F9AB87ED9AEBE7C262C\",\n            \"cityName\": \"Quebec City, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ca2054c00f60e51a\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"Québec Loisirs\",\n            \"rowSalary\": \"$15.25 an hour\",\n            \"date\": 1694518174652,\n            \"dateOfPosted\": 1694518174420,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.8138783,\n                    \"lon\": -71.2079809\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Quebec City\",\n                \"formattedAddress\": \"Quebec City, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Québec\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Quebec City\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsScreening questions Are you available for the advertised start date? Are you currently a student? Are you currently legally able to work in Canada? Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Health benefits Dental plan Disability benefits Health care plan Paramedical services coverage Vision care benefits Financial benefits Bonus Other benefits Parking availableWork Term: PermanentWork Language: FrenchHours: 20 to 30 hours per week\",\n            \"location\": \"Quebec City, QC\"\n        },\n        {\n            \"id\": \"DADBB3FB2EF9534FD75A8C476DCFB4A3\",\n            \"cityName\": \"791 Highway 6, Caledonia, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=aef1cbbe1730b87d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Wally Parr Sausage\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694517954977,\n            \"dateOfPosted\": 1694215053213,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Wally Parr Sausages takes the next step in the specialty food retail industry by getting back to the basics within a \\\"Sizzle Style\\\" customer service environment. We recognize that every Team Member is part of our family and brings something special and unique to Wally Parr Sausage.We are currently looking for full-time, high energy, experienced people who see themselves in an Customer Service Representative role at our Caledonia, ON location.Why Join us? The perks!Competitive Wages!! Starting at $17 per hour!Bonus Opportunities!Grocery Discounts!Comprehensive Paid training programClean, safe environmentFun, worry free atmosphereA company built on family values with a great reputation!What You Bring to the team:Sizzle Service: Build and maintain positive relationships with customers by exercising our Sizzle Service to its fullest. Proactively engage customers on the sales floor, offering assistance and initiating conversations. Seek opportunities to enhance the customer experience and exceed their expectations.Product Knowledge: Develop a comprehensive understanding of our product offerings, including features, ingredients, and pricing.Cashing out and returns: Process customer orders efficiently and accurately using our cashier point-of-sale (POS) system. Handle returns, exchanges, and refunds professionally, adhering to established guidelines.Product Knowledge: Develop a comprehensive understanding of our product offerings, including features, ingredients, and pricing.Store Maintenance: Maintain a clean and organized store environment, including restocking shelves, arranging displays, and monitoring inventory levels.Teamwork: Teamwork with colleagues is essential in our culture which affects our operations and provides Sizzle customer service.Must be legally eligible to work In CanadaWe value a good atmosphere, an above and beyond guest experience, and a strongly interconnected team. Apply today and join the Wally Parr family!About Wally Parr Sausage:Wally Parr Sausage has been family operated for over fifty-years and two generations; handing down carefully guarded recipes, as well as innovating new recipes bursting with irresistible flavour throughout the years. Our signature sausages, home meal kits, and wide-range of premium ingredient choices and flavours will bring your taste-buds to nirvana. We will forever honour our Team for their dedication and passion in Wally Parr’s growth in the community.Job Types: Permanent, Full-timeSalary: From $17.00 per hourBenefits:Flexible scheduleOn-site parkingStore discountSchedule:Day shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payApplication question(s):How many kilometres do you live from Caledonia, ONExperience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"1C52AEF7D50A606EC23D91F04B0ACC4C\",\n            \"cityName\": \"Tec Vanlife LTD. in Delta, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=761ce118068d5d38\",\n            \"jobName\": \"Customer Service/Sales Representative\",\n            \"companyName\": \"Tec Vanlife Ltd.\",\n            \"rowSalary\": \"$19.50–$22.00 an hour\",\n            \"date\": 1694517705446,\n            \"dateOfPosted\": 1692826092858,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.09521549999999,\n                    \"lon\": -123.0264758\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Delta\",\n                \"formattedAddress\": \"Delta, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Delta\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service/Sales RepresentativeAre you passionate about the recreational vehicle industry and providing exceptional customer service? Tec Vanlife is seeking a dynamic and motivated individual to join our team as a Customer Service/Sales Representative. In this role, you will play a pivotal role in assisting customers with their inquiries, providing expert answers, and driving sales through excellent service.Responsibilities:Manage inbound calls, emails, and chats with efficiency and professionalism.Understand customer needs and address inquiries regarding our products and services.Collaborate with the sales team to drive revenue growth by identifying upselling and cross-selling opportunities.Maintain accurate records of customer interactions and sales transactions.Qualifications:Minimum of two years of proven customer service experience.Strong communication skills and ability to handle challenging customer interactions.Knowledge of the automotive industry and a passion for vehicles is preferred.Join our team and be a part of a company that values customer satisfaction and expertise in the automotive realm. If you are dedicated, customer-focused, and ready to contribute to our success, apply now!To apply, please submit your resume and a cover letter detailing your relevant experience to email@example.com.Job Type: Full-timeSalary: $19.50-$22.00 per hourExpected hours: 40 per weekBenefits:Dental careExtended health careLife insuranceOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Commission payAbility to commute/relocate:Delta, BC V4K 5B8: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (required)Shift availability:Day Shift (preferred)Work Location: In personApplication deadline: 2023-09-15\",\n            \"location\": \"Delta, BC\"\n        },\n        {\n            \"id\": \"ABAC0778183941A76C1EA83377EA2EA5\",\n            \"cityName\": \"3245 Harvester Road, Burlington, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b67b2428b11aeecd\",\n            \"jobName\": \"Auction House Customer Service Representative & Data Coordinator\",\n            \"companyName\": \"Emedals Inc.\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694517660740,\n            \"dateOfPosted\": 1693672364458,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.3703112,\n                    \"lon\": -79.7752874\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burlington\",\n                \"formattedAddress\": \"Harvester Rd, Burlington, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burlington\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"eMedals INC is the largest online auction house of its kind in North America. With a growing global web-based presence, we are in search of a point customer service representative who will also assist in creating our online auctions on our new, upcoming platform.Responsibilities:As our Customer Service Representative, you will be an integral part of our team and responsible for the following:Answering Phones: Handle incoming calls from clients, potential buyers, and sellers in a friendly and professional manner. Provide accurate information about our auctions, services, and products.Call Direction: Ensure that calls are directed to the appropriate department or team member to address specific inquiries or concerns promptly.Assisting with Order Processing: Collaborate with our sales and operations team to facilitate the seamless processing of orders, bids, and purchases made during auctions. Ensure that all transactions are accurately recorded and processed in a timely manner.Customer Support: Offer personalized assistance and support to clients throughout their auction journey. Address questions, concerns, and requests with tact and efficiency, leaving a positive impression on each interaction.Problem Resolution: Take ownership of customer issues and follow through to resolution. This may involve coordinating with various internal departments to address any challenges or discrepancies that arise.Client Relations: Build and maintain strong relationships with our esteemed clientele, fostering loyalty and satisfaction.Auction Creation: In addition to customer service responsibilities, our newest team member will also be responsible for creating digital online auctions and populating our website with new product. This will be carried out on a new customized platform, due to launch August 21st of this year.This process will include amalgamating research and photography completed by our inhouse team, and producing an online auction listing.Requirements:Previous experience in a customer service role is preferred.Excellent verbal and written communication skills.Strong interpersonal skills and the ability to handle diverse customer personalities.Organized, detail-oriented, and capable of multitasking in a fast-paced environment.Proficiency in using computer systems and various software applications.A passion for providing exceptional customer service and a genuine interest in the auction industry.A passion for history is an asset.The positions offered by eMedals INC. are unique. We offer a rare workplace environment where history is a pillar of everyday workflow and overall success. Team work is an essential element to our office and we look forward to meeting our newest partner.Thank you to all interested candidates. Please note that only those candidates selected for further discussion will be contacted. Please apply via email and include a CV.Job Type: Full-timeSalary: From $20.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceOn-site parkingPaid time offVision careFlexible Language Requirement:French not requiredSchedule:Monday to FridayAbility to commute/relocate:Burlington, ON L7N 3T7: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Work Location: In personExpected start date: 2023-09-01\",\n            \"location\": \"Harvester Rd., Burlington, ON\"\n        },\n        {\n            \"id\": \"FB4078A8ACEC0B9645C7603128F69D1A\",\n            \"cityName\": \"101 Main St, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2bd19a4c5383d78b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Aabel Fuels Ltd\",\n            \"rowSalary\": \"$15–$17 an hour\",\n            \"date\": 1694517594425,\n            \"dateOfPosted\": 1692825251491,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6863286,\n                    \"lon\": -63.5210113\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Main St, Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative Responsibilities include, but are not limited to: Answering phones & assisting walk in customers. Taking and inputting walk-in, call-in and website orders & payments. Dispatch & communication with drivers. Use of Excel and other Microsoft Office programs. Strong customer service, communication & multi-tasking skills in a fast paced environment required.Job Type: Full-timeSalary: $15.00-$17.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceOn-site parkingVision careSchedule:Day shiftExperience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Main St, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"73DD2CD230A74CC6E0C4A15BB86F7A16\",\n            \"cityName\": \"1888 West Broadway, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5c2f5bbcff5aaeb2\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Le Coq Frit\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694517389643,\n            \"dateOfPosted\": 1673963273417,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.26376459999999,\n                    \"lon\": -123.14866\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Broadway, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"-serving-bussing-phone orders for take-out-POS system, 3rd party delivery tablet, payment processing-take-out prep for packaging orders-cleaning duties-various other related dutiesMust be able to work during weekday(Monday - Friday between 11-9pm)Job Types: Permanent, Part-timePart-time hours: 25 per weekSalary: From $16.00 per hourSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayMorning shiftSupplemental pay types:TipsCOVID-19 considerations:Required to wear a mask. Sanitize surfaces after use.Work Location: In person\",\n            \"location\": \"Broadway WR\"\n        },\n        {\n            \"id\": \"8F6A14017EFD704972153CD304D6C3B1\",\n            \"cityName\": \"12366 Coleraine Dr, Bolton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=54a9162ca268411a\",\n            \"jobName\": \"Customer Service Agent (1 Year Contract) Mid-Day Shift 11:00 Am - 7:00 Pm\",\n            \"companyName\": \"Dsv Global Transport And Logistics\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694516427171,\n            \"dateOfPosted\": 1692826417092,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8559705,\n                    \"lon\": -79.7292586\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bolton\",\n                \"formattedAddress\": \"Coleraine Dr, Bolton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bolton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"JOB SUMMARY:Core Purpose and Essence of the Position:The Customer Service Agent is responsible for carrying out all customer service activities such as responding to inquiries, processing orders, and handling complaints, in a prompt courteous and effective manner.ESSENTIAL DUTIES AND RESPONSIBILITIES: Respond to Customer inquiries, complaints, inventory status, status of orders, etc., in a prompt, courteous and effective manner. Generate all related paperwork and necessary information required for customer work orders and checking all orders for special requests. Oversee all paperwork associated with orders and maintain the corresponding files. Prepare any reports concerning customer service activates as required by manager. Report customer feedback to management, including any signs of customer dissatisfaction. Maintain damage records and back-order logs. Initiate and maintain a good working relationship with the customer(s). Track on-time shipping other performance measures. Assure the integrity of the inventory and assist in conducting physical inventories.  Ensure the optimal utilization of space through warehouse consolidation. Assist in the physical operations as needed. Adhere to all company policies, procedures, and guidelines, such as Code of Conduct, assigned work schedules, and attendance requirements. Provide input into the performance evaluation system Perform other duties as assigned. Collaborate closely with other departmental staff to coordinate account activities. Maintain a clean, neat, and orderly work area Performs other duties as requiredPRIMARY INTERACTIONS:The primary exchange will be working with the Operations Manager, Supervisor, Team Lead, and Warehouse Operators.COMPETENCIES, SKILLS, ATTRIBUTES REQUIRED: Direct warehouse-related experience in customer service Excellent judgment and initiative Excellent communication skills to establish working relationships Excellent verbal and written communication skills Excellent relationship building skills Excellent listener Demonstrated ability to work in a complex matrix environment -- must work well across multiple units across the company Both a team builder and a team player Must work well under pressure as a self-starter, handling multiple tasks -- ability to work across many accounts, projects, and/or issues and prioritize effectively Internally motivated, self-starter with ability to plan, organize and establish priorities to meet goals and achieve results.MINIMUM EDUCATION and/or EXPERIENCE: High School diploma. A minimum of 3 years’ experience in manufacturing environment. Possess basic computer skillsWORK ENVIRONMENT:Work is generally sedentary in nature, but may require standing and walking for up to 10% of the time.The physical demands and work environment characteristics described above are representative of those an employee encounters while performing the essential functions of this job. Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions.COMPENSATION:Competitive base salary for the position in the Greater Toronto Area with a very generous benefit package.DISCLAIMER:The preceding job description has been designed to indicate the general nature and level of work performed by employees within this classification. It is not designed to contain nor be interpreted as a comprehensive inventory of all duties, responsibilities, and qualifications required of employees assigned to this jobJob Type: Full-timeSalary: $19.00 per hourBenefits:Casual dressDental careExtended health careRRSP matchVision careSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Bolton, ON L7E 3A9: reliably commute or plan to relocate before starting work (required)Education:Secondary School (required)Experience:Customer service: 3 years (required)Work Location: In person\",\n            \"location\": \"Coleraine Dr, Bolton, ON\"\n        },\n        {\n            \"id\": \"72749001C8F800851BA9C8F1F47DAFA3\",\n            \"cityName\": \"Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=162834edc5057418\",\n            \"jobName\": \"Clerk, Customer Service\",\n            \"companyName\": \"Centre Dianostic Et Performance\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694516216278,\n            \"dateOfPosted\": 1692819867402,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4503213,\n                    \"lon\": -73.7500486\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: No degree, certificate or diplomaExperience: 1 year to less than 2 yearsGreen job Involves duties and responsibilities that lead to positive environmental outcomes Involves supporting green economy sectors Other benefits Free parking available Parking availableWork Term: PermanentWork Language: BilingualHours: 30 to 40 hours per week\",\n            \"location\": \"Dorval, QC\"\n        },\n        {\n            \"id\": \"25CF93D48847CC2E3EAE41B173AE6801\",\n            \"cityName\": \"2555 Port Alberni Highway, Port Alberni, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=eda3d1f85d61617a\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Alberni Toyota\",\n            \"rowSalary\": \"$17–$25 an hour\",\n            \"date\": 1694516183588,\n            \"dateOfPosted\": 1692824265997,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2558825,\n                    \"lon\": -124.7776082\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Port Alberni\",\n                \"formattedAddress\": \"Port Alberni Hwy, Port Alberni, BC V9Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Alberni-Clayoquot\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Port Alberni Highway, Port Alberni, BC Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"You will be Alberni Toyota’s online and phone representative handling a variety of contact points with our customers including but not limited to:· Service customers for booking appointments and follow-up.· Sales customers that need to be informed on their current vehicleThis is a great opportunity for you if;· Are confident and have professional verbal and written skills· Have good computer skills and organizational abilities· Excel in a team environment· Have been successful in a previous customer relations position.This is a position where you will have the opportunity to help us shape and develop our plan for ultimate success and growth.This is a full-time position and we can offer you;· A positive and supportive workplace that provides opportunities for internal growth.· Comprehensive Health Care and Benefits package.· Very competitive wages and bonuses.Job Type: Full-timeSalary: $17.00-$25.00 per hourBenefits:Dental careExtended health careOn-site parkingSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payAbility to commute/relocate:Port Alberni, BC: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Port Alberni Highway, Port Alberni, BC\"\n        },\n        {\n            \"id\": \"1AF7E7F4870A5E18ED5C9F1D20EE0C1C\",\n            \"cityName\": \"Penticton, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f113eb21347d9f5b\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Executive Aviation\",\n            \"rowSalary\": \"$17–$20 an hour\",\n            \"date\": 1694515660315,\n            \"dateOfPosted\": 1691600912535,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.4991381,\n                    \"lon\": -119.5937077\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Penticton\",\n                \"formattedAddress\": \"Penticton, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Okanagan-Similkameen\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Penticton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Here we grow again! Do you want to be part of an amazing team of customer service specialists who work together to provide exemplary service? Is going above and beyond in your DNA? Does the opportunity to provide exemplary service to passengers on some of Canada’s best airlines appeal to you? Are you someone who is known for reliability and flexibility? Come join us! Executive Aviation is hiring a part time Customer Service agent at the Penticton Airport (YYF) who love working in the tourism industry. This role reports directly to an amazing Customer Service Coordinator who is there to support you. What do we offer? Executive Aviation is proud to have very progressive wage ranges with lots of earning potential. The range of salary for this position is $17.00-$20.00/hour. We offer comprehensive Health benefits for all part- and full-time team members. We also have fantastic flight benefits with the airlines that we support. We want to see you grow and reach your goals! The sky's the limit with Executive Aviation. Responsibilities Our customer service agents are responsible for creating a safe and stress-free experience for travelers as they begin and end their journeys: Helping passengers check-in Supporting self-serve kiosks Preparing aircraft for on-time departures Facilitating deplaning and boarding of passengers Greeting passengers who are arriving from flights Following airline specific check-in policies and procedures Positively work airline crew Light grooming duties Kindly enforce airline and airport policies and procedures to passengers And more! Qualifications You are a true customer service champion with a minimum of two years’ in a customer-facing role You bring a proven track record of punctuality and reliability and understand that performing on time is a cornerstone of airline service You love to multi-task and are comfortable in a fast-paced where time pressures are a way of life You are a great communicator in both individual and group settings and have a demonstrated proficiency with computers and software. Completion or working towards completion of Travel and Tourism Diploma, Marketing or Business Diploma Previous airport experience would be considered an asset Flexible availability to work shift work which includes early mornings, days, late evenings, weekends and/or holidays An ability to meet all conditions of employment:  Restricted Area pass issued by Transport Canada A criminal background check Hold a valid driver’s licenseYcmjDoEF2c\",\n            \"location\": \"Penticton, BC\"\n        },\n        {\n            \"id\": \"0F25CD7188159785A97650CF766D0C39\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=eabc407fc4ea67ff\",\n            \"jobName\": \"Customer Service Associate - 28455\",\n            \"companyName\": \"Exela Technologies\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694515408627,\n            \"dateOfPosted\": 1692820356550,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Run Company Store - Maintain inventory ordering supplies and stocking shelves.· Small cash and card sales.· Reception backfill - Answering the phone, checking in customers and employees. Create and issue ID badge access as required.· Performs an acceptable volume of work in timely, efficient, and accurate manner and in order of scheduled priorities to meet or exceed client expectations.· Performs verification duties as required.· Demonstrates high levels of safety awareness and notifies supervisor of potential hazards· Follows the security and privacy policies, standards and guidelines in order to protect the informational assets of both the company and their customers· Performs other duties as required· Repetitive motion is required: may require twisting/bending/climbing.· Required to stand, walk, reach with hands and arms.· Required to lift up to 55lbs unassisted.“The pay range for this position starts at $18; however, base pay offered may vary depending on job-related knowledge, skills, and experience. Bonus opportunities may be provided as part of the compensation package, in addition to a full range of medical, financial, and/or other benefits, dependent on the position offered.”Job Types: Full-time, Fixed term contractPay: $18.00 per hourShift:8 hour shiftExperience:Customer service: 1 year (preferred)\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"B0C6320FEC7DFBB6FAF51F0166B5EFEE\",\n            \"cityName\": \"Best Burners Ltd. in Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=aab17a7fb9df9d39\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Best Burners Ltd.\",\n            \"rowSalary\": \"$15–$17 an hour\",\n            \"date\": 1694515204603,\n            \"dateOfPosted\": 1692826333678,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6660885,\n                    \"lon\": -63.56756309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Company descriptionOur family owned & operated company, Best Burners, is looking for an energetic & positive individual with strong multi-tasking abilities in a fast paced environment. Phone etiquette & communication skills are also a must.Job descriptionCustomer Service Representative Responsibilities include, but are not limited to: Answering phones & assisting walk in customers. Taking and inputting walk-in customer appointments & payments. Dispatch & communication with technicians. Use of Excel and other Microsoft Office programs. Strong customer service, communication & multi-tasking skills in a fast paced environment required.Job Types: Full-time, PermanentSalary: $15.00-$17.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceVision careSchedule:Day shiftMonday to FridayExperience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Dartmouth, NS\"\n        },\n        {\n            \"id\": \"9CBE8003233A5F863FF63593CBCD894A\",\n            \"cityName\": \"1644 Hillside Ave, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=284b604dbe2a149e\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Tim Hortons\",\n            \"rowSalary\": \"From $16.78 an hour\",\n            \"date\": 1694515142958,\n            \"dateOfPosted\": 1691632166082,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.440015,\n                    \"lon\": -123.3545002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Hillside Ave, Victoria, BC V8T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Hillside Mall Tim Horton's is NOW HIRING for Full time and Part Time shifts. All training is done in restaurant so no experience is necessary. Hiring position requires guest service, light cleaning, cash handling, food prep and team work. We have great benefits and competitive wages to offer, apply today and start tomorrowJob Types: Full-time, Part-time, PermanentPart-time hours: 20 - 40 per weekSalary: From $16.78 per hourBenefits:Dental careOn-site parkingStore discountVision careDay range:Monday to FridayNo weekendsWeekends as neededWeekends onlyFlexible Language Requirement:French not requiredShift:4 hour shift8 hour shiftAbility to commute/relocate:Victoria, BC V8T 4Y3: reliably commute or plan to relocate before starting work (preferred)Work Location: In person\",\n            \"location\": \"Hillside Ave, Victoria, BC\"\n        },\n        {\n            \"id\": \"A873C159B2B0C79E4BD811B99E98D6D4\",\n            \"cityName\": \"46 Warne Cres, Kingston, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7805a06079fa6cb0\",\n            \"jobName\": \"Customer Service Technician\",\n            \"companyName\": \"Mr. Lube\",\n            \"rowSalary\": \"$16.50–$17.50 an hour\",\n            \"date\": 1694514950011,\n            \"dateOfPosted\": 1673980696401,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2668755,\n                    \"lon\": -76.50108589999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kingston\",\n                \"formattedAddress\": \"Warne Crescent, Kingston, ON K7K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Frontenac County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kingston\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*NEW LOCATION OPENING SOON*Hiring for our current location and new location opening soon. All discussed in the sit down interview.We're not looking for someone who \\\"needs a job.\\\" We're looking for someone who can make a difference in our customers' experience, learn some skills and earn an income. Sales experience is preferred.Job Overview: Ready for a Change?Named one of Canada's Best Managed Companies & 10 Most Admired Corporate Cultures, Mr. Lube offers a fun work environment, competitive wages, and the best paid training and advancement program in the industry for our employees.Customer Service RepresentativeIn this role, you'll get to take full ownership over the complete customer experience. We will provide full training so you can confidently work directly on a customer's car and be in control of the entire customer service and sales cycle; from walking a customer through the services on a car to completing the tasks and sale.A Customer Service Representative at Mr. Lube spends:70% of their time providing Customer Service:Greeting customersDiscussing products and services with customersProviding recommendations based on vehicle assessmentsSuggesting new products and servicesWorking with a close knit team and communicating with Lower Technicians30% of their time completing Mechanical Duties:Oil and filter changesReplacement of vital car fluids (e.g. coolant, transmission, and transfer case fluid)Replacement of parts under the hood (e.g. air filters, headlights, taillights and wiper blade replacements)Refilling performance enhancers to ensure the car runs smoothly (e.g. engine stop leak, oil treatment, and valve cleaner)Performing courtesy checks on all vehicles (e.g. topping up fluid levels, cleaning windows and checking tire pressure)Performing tire changes and rotationsWhat else can you expect from a career at Mr. Lube?A fun environment with the best paid training in the industry Excellent employee incentives and recognition. With constant learning and growth opportunities. A company, management and team that cares. If you have a positive attitude, flexible availability, are driven to succeed, have a willingness to learn, and genuinely like interacting with people, put yourself in the driver's seat at Mr. Lube!Job Type: Full-timeSalary: $16.50-$17.50 per hourBenefits:Dental careExtended health careOn-site parkingPaid time offSchedule:10 hour shift8 hour shiftSupplemental pay types:Bonus payCommission payOvertime payTipsExperience:Customer Service Sales: 1 year (required)Work Location: In person\",\n            \"location\": \"Warne Cres, Kingston, ON\"\n        },\n        {\n            \"id\": \"B11F4E1BAA45ACDA93BB01EEFB24E14E\",\n            \"cityName\": \"106 9th St W, Meadow Lake, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1cb39406a22fe6b4\",\n            \"jobName\": \"Kfc Team Members, Cashier/Customer Service\",\n            \"companyName\": \"Kfc Canada - Blco - Store 1k076-001\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694514947183,\n            \"dateOfPosted\": 1648193395075,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.1248957,\n                    \"lon\": -108.4431272\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Meadow Lake\",\n                \"formattedAddress\": \"5 St W, Meadow Lake, SK S9X, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Meadow Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Location: 106 9th Street W, Meadow Lake, SK THE COLONEL NEEDS YOU!Great culture, join our team!Our busy KFC locations are looking for full time or part time Team Members to join our growing team! Rate starts at $15 for full-time employees!About the company:BLCO is a large KFC and Taco Bell franchise operator in Western Canada. We currently own and operate 23 KFC and Taco Bell restaurants across British Columbia, Alberta and Saskatchewan. BLCO is a division of the C21 Development Group and proud to employ more than 700 team members.What’s in it for you:Health and dental benefits (for full-time team members)Award winning training for new employeesA great working culture, team environment, tenured staffOpportunity for quarterly bonuses based on performanceOpportunity for advancement in business operations - we’re constantly growing!What we’re looking for:Someone with a friendly, enthusiastic attitudeSomeone that loves to help and serve others (both customers and team members)Able to work in a fast-paced, dynamic environmentDuties include:Make and prepare guest orders with accuracy and efficiency.Provide a top-notch guest experience that includes friendly interactions, hot & fresh meals and a commitment to cleanliness.Contribute to the overall positive and collaborative family environment.Make our world-famous chicken at the highest quality standard.Partner with other Team Member to manage the products needed to fulfill guest orders.We look forward to hearing from you!\",\n            \"location\": \"th St W, Meadow Lake, SK\"\n        },\n        {\n            \"id\": \"A3445F3B2E27B940F23198D971CC2FA8\",\n            \"cityName\": \"732 Bank Street, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=37acb168b51bf9b4\",\n            \"jobName\": \"Pet Salon- Experienced Admin / Receptionist / Customer Service\",\n            \"companyName\": \"Purrdy Paws Pet Grooming Spa\",\n            \"rowSalary\": \"$16.00–$19.60 an hour\",\n            \"date\": 1694514663957,\n            \"dateOfPosted\": 1692819878549,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4209477,\n                    \"lon\": -75.70115419999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Bank St, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Purrdy Paws Pet Grooming Spa is hiring an experienced Receptionist at both our Bank St and Beechwood Location in Ottawa, ON!Do you love animals, have some experience with them and wish to contribute meaningfully to a team while working in one of the best parts of the city, the Glebe?! and equally so Beechwood?! Keep reading if so!The ideal candidate will have:5+ years customer service & reception experience with a diverse community1 year min dog/cat experience (unfortunately, having your own furry friend doesn't count!)Some experience with client managementAbility to multi task in a fast paced environmentDemonstrates high level of professionalismCan work independently and part of a teamBe extremely organized and have excellent time management skillsProficient in decision-making and team managementPossess excellent communication skills both verbal and writtenBe able to go up and down stairs and lift up to 50 lbsHas attention to detailBonus: has some social media and/or marketing experience!Duties include but not limited to:Answering multiple phone lines booking appointmentsHandling client inquiries in-person and over the phone re: their pets and appointmentsEducating clients about pet care as it pertains to coat maintenance, and various services Purrdy Paws offersSelling retail product and assisting walk in clients as neededAssisting groomers with checking in and out their dogsOrganizing paperwork, sending invoices, and taking messages effectivelyPosting on company social media pagesCleaning of the front retail/reception area of the salon and more....Our ideal candidate is a permanent full time employment with room for growth. We are looking for a person who has a passion for a career in the pet care industry and a strong interest in animal health and well-being, as well as strong administrative/reception skills to bring our team together! This position can lead to a management role for the right candidate.This candidate will be creative and have new and fresh ideas to bring to the table and have a desire to help grow and expand the business with our fantastic management team.This candidate will enjoy working with a diverse sector of pets and their human companions and enjoy a leadership type of role within the company.TO APPLY:*Please submit all of the information below via Indeed1> updated resume2> cover letter explaining why you feel you would be an ideal candidate for the position (please be specific in your cover letter about your experience with animals as it pertains to their care) (should Indeed not allow you to send a cover letter, please email it- head to our website to get our email!)3> three valid referencesJob Types: Full-time, Part-time, PermanentSalary: From $16.00 - $19.60 per hour commiserate upon experienceJob Type: Full-timeSalary: $16.00-$19.60 per hourBenefits:Dental careDisability insuranceExtended health careFlexible scheduleLife insuranceStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Ottawa, ON k1s 3v4: reliably commute or plan to relocate before starting work (required)Education:Secondary School (required)Experience:Customer service: 5 years (required)work: 3 years (required)professional pet: 1 year (preferred)fast-paced work: 2 years (required)Work Location: In person\",\n            \"location\": \"Bank Street, Ottawa, ON\"\n        },\n        {\n            \"id\": \"8838429C1AB55D465ACDD72E29D7500B\",\n            \"cityName\": \"8555 Keele St, Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=84d0e7fc808385be\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Esso/ Circle K\",\n            \"rowSalary\": \"$15.50–$15.51 an hour\",\n            \"date\": 1694514563108,\n            \"dateOfPosted\": 1692826437844,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8086703,\n                    \"lon\": -79.50147179999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Keele St, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"looking for experience candidates for Esso CircleK gas station.Job Types: Full-time, Part-timeSalary: $15.50-$15.51 per hourFlexible Language Requirement:French not requiredAbility to commute/relocate:Concord, ON L4K 2N1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Keele St, Concord, ON\"\n        },\n        {\n            \"id\": \"F6B35270EDED963628FB7A04176C2861\",\n            \"cityName\": \"Orangeville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=168507b479463675\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Jiggin Jodys Seafood\",\n            \"rowSalary\": \"$600 a week\",\n            \"date\": 1694514177570,\n            \"dateOfPosted\": 1623789670913,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.9199788,\n                    \"lon\": -80.0943113\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Orangeville\",\n                \"formattedAddress\": \"Orangeville, ON L9W, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Dufferin County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Orangeville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 600.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    600.0\n                ],\n                \"range\": {\n                    \"gte\": 600.0,\n                    \"gt\": null,\n                    \"lte\": 600.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"$600/week. Full-time preferred. Wednesday to Sunday 11am-7pm. Must be able to work weekends/evenings and lift up to 40lbs. Retail experience and knowledge of seafood is a plus. Two locations, 92 Trafalgar road in Hillsburgh and 634041 Hwy10 in Orangeville.Telephone: 709-746-8069Job Types: Full-time, PermanentSalary: $600.00 per weekBenefits:Casual dressSchedule:8 hour shiftExperience:sales: 1 year (preferred)customer service: 1 year (preferred)Work remotely:No\",\n            \"location\": \"Orangeville, ON\"\n        },\n        {\n            \"id\": \"B96598C3487677C12CDB8981073E43FF\",\n            \"cityName\": \"Fort McMurray, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7dcf8500c64da168\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Fort Mckay A&W\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694514168959,\n            \"dateOfPosted\": 1691622513715,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 56.7266598,\n                    \"lon\": -111.3790441\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fort McMurray\",\n                \"formattedAddress\": \"Fort McMurray, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 16\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fort McMurray\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job descriptionCashier & Customer Service RepresentativeJob location: Fort McKay, ABShift: VariesWe Provide transportation for employees but are also looking for people with class 5 drivers license and own transportation as wellCompany Summary:Based out of Fort McKay, AB, we are a high traffic fast food restaurant providing services to our customers. When you join our team, you join a family of employees dedicated to a safe, enjoyable, and positive work environment. We offer competitive wages and seek candidates that are seeking secure, long-term employment.Job Summary:Reporting to the Manager and operating from the Fort McKay Industrial Park, the cashier and customer service representative is responsible for providing customers with professional, efficient and friendly service. The individual in this position must be able to multi-task efficiently in a fast-paced environment.Duties and Responsibilities:All general duties that are required of a Cashier/Customer Service Representative specifications follow but are not limited to:· Provide fast accurate orders using POS ordering software· Maintain a clean, safe, and well stocked environment· Willingness to learn· Assemble food items for packaging or serving.· Willing to work all required shifts (morning, evenings and weekends)Follow all procedures, policies, and practices· Multi-task efficiently in a Fast-paced environment· Must have basic math & English communication skills as well as basic physical ability.· Must be legally able to work in Canada.Qualifications:· Excellent communication and organization skills· Excellent Interpersonal and customer service skills· Team player and Punctual· Ability to work well without supervisionAdditional Incentives:· Company Health Benefits (eligible after 90 days)We thank you for your interest in A&W Fort McKay and remind all candidates that only successful applicants will be contacted. Based on equal qualifications, preference will be given to local candidates.A&W Fort McKay follows all Covid 19 Public Health Measures, advice and restrictions.Job Types: Permanent, Full-timeSalary: $19.00 per hourBenefits:Dental careDisability insuranceDiscounted or free foodExtended health careLife insuranceVision careSchedule:8 hour shiftDay shiftEvening shiftSupplemental pay types:Overtime payExperience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Fort McMurray, AB\"\n        },\n        {\n            \"id\": \"498FE1C6038A6EBDB9E2428A18B9C6C1\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=93f8fe906c1c191f\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"Redline Trucking\",\n            \"rowSalary\": \"$23.18 an hour\",\n            \"date\": 1694514066157,\n            \"dateOfPosted\": 1686989004224,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Experience an assetTasks Access and process information Answer inquiries and provide information to customers Explain the type and cost of services offered Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Receive credit and employment applications Computer and technology knowledge MS Excel MS Word Work conditions and physical capabilities Attention to detail Fast-paced environment Repetitive tasks Personal suitability Flexibility Organized Reliability Team player AccurateWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"C19C069F478434A6E396AB6FBC714D07\",\n            \"cityName\": \"3065 Palladium Dr, Kanata, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=701ec548a82ee163\",\n            \"jobName\": \"Cashier & Customer Service Outfitter\",\n            \"companyName\": \"Cabelas Canada\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694514017179,\n            \"dateOfPosted\": 1693666418627,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.2959318,\n                    \"lon\": -75.92584579999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Palladium Dr, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Summary:Reporting to the Group Sales Manager – Front End-Receiving, Cashiers will greet and engage customers during the checkout process, process customer funds accurately and appropriately, while explaining additional Cabela’s services and processes.Responsibilities:Greet and engage customers in a friendly and enthusiastic mannerProvide a legendary experience for every customer and promoting Bass Pro Shops & Cabela’s programsUse Point-Of-Sale and Inventory (SAP) computer systems to accurately and quickly complete customer transactions following all policies, including those requiring identification and age checksProcess customer payment using debit, credit card, gift cards, and cashRespond and resolve customer issues by using good judgment and logic in solving problems and making decisions within the job scopeAssist asset protection in following all procedures and policies, including checking inside products, checking for price switches, remove and retain security devicesSave customers who are not happy or did not have a good experience by correcting the problem, or notify a Manager on Duty of the issueOpening and closing duties when necessary: empty trash, stock bags, supplies, cash wraps, dust and wipe counter, organization of drawer suppliesAssist in other areas of the store when business needs dictateQualifications:One or more years’ experience in a sales or service environment is preferredHigh school diploma or equivalent is preferredAbility to provide superior customer service and exceed customer’s expectationsAbility to use good judgment and logicExperience in a related field or outdoor lifestyleKnowledge of Bass Pro Shops & Cabela’s specific products is an assetBass Pro Shops & Cabela’s welcomes applications from people with disabilities.Accommodations are available upon request during the assessment and selection process.Job Type: Part-timeSalary: From $16.75 per hourExpected hours: No more than 29 per weekBenefits:On-site parkingStore discountDay range:Weekends as neededFlexible Language Requirement:French not requiredShift:Afternoon shiftEvening shiftWork setting:Department storeApplication question(s):Do you have the ability to reliably commute to 3065 Palladium Drive; Kanata, ON?Please list any days/times that you would be unavailable throughout the week.Work Location: In person\",\n            \"location\": \"Palladium Dr, Kanata, ON\"\n        },\n        {\n            \"id\": \"688A6580094DFA5B5C87A13498D45652\",\n            \"cityName\": \"Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f4e8d9828b18e3a9\",\n            \"jobName\": \"Construction Customer Service Administrator\",\n            \"companyName\": \"Reliance Impact\",\n            \"rowSalary\": \"$50,000–$55,000 a year\",\n            \"date\": 1694513908378,\n            \"dateOfPosted\": 1691622522403,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2557206,\n                    \"lon\": -79.8711024\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job DescriptionReliance Impact is seeking a full-time Customer Service Administrator with construction industry experience in Hamilton. The ideal candidate will have experience in the construction industry and be able to work independently as well as within a team.Duties & Responsibilities:Receive, document, and communicate new home purchasers’ inquiries to appropriate trades and departmental associates to provide timely responses to new home customerCoordinate follow up activities with customers, the construction team, and the service/warranty team for service warranty issuesEngage managers for escalations and schedule touchpoints accordinglyEnter and complete work orders in NewStar programsQualifications:2+ years of customer service and/or administrative experienceStrong customer service skills, problem solving and organizational time management skillsTarion Warranty knowledge an assetJob Type: Full-timeSalary: $50,000.00-$55,000.00 per yearSchedule:Monday to FridayAbility to commute/relocate:Hamilton, ON: reliably commute or plan to relocate before starting work (preferred)Experience:Construction: 1 year (required)Work Location: In person\",\n            \"location\": \"Hamilton, ON\"\n        },\n        {\n            \"id\": \"44D6205008BC7F47988AFAD87EC7AF07\",\n            \"cityName\": \"123 Hespeler Rd, Cambridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8b73da2fa6637cbe\",\n            \"jobName\": \"Customer Service Rep\",\n            \"companyName\": \"H2o4life\",\n            \"rowSalary\": \"$65,000–$75,000 a year\",\n            \"date\": 1694513844284,\n            \"dateOfPosted\": 1693670794201,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4199052,\n                    \"lon\": -80.32845449999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cambridge\",\n                \"formattedAddress\": \"Hespeler Rd, Cambridge, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cambridge\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 65000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    65000.0\n                ],\n                \"range\": {\n                    \"gte\": 65000.0,\n                    \"gt\": null,\n                    \"lte\": 65000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Details: H2O4Life is pleased to be expanding our team in the Cambridge/Kitchener/Waterloo region and we are looking for great individuals to join our team! We are looking for motivated and enthusiastic people to fill positions within our growing company. This position will involve going to pre-arranged customer appointments and conducting an inspection and presenting cost effective solutions. All appointments are PRE-ARRANGED through the office for our team members. There is no door knocking involved. We work MONDAY to FRIDAY and there are NO QUOTAS. So don't worry you won't be under the gun to reach targets. We are looking for great people who love to represent a great company and are willing to help our customers with their needs and help the environment too. About Us: H2O4Life is a Canadian owned and operated company that specializes in water purification for both home and business. We provide premium water treatment systems manufactured by Canadians for Canadians. We genuinely care about each other, and we’re committed to fostering an inclusive and diverse workplace, so all of our team members can take part and have pride in their work. We all bring something different, and we know what makes you different makes us great. We invest in our people, to unleash their potential so we can win as a team! As part of the team, you will have access to a ton of amazing resources. We like fun and we involve all of our team members in company sponsored team building events. We go paintballing, go karting, Raptor and Leaf games in the corporate box, movie premieres, dinner events and much more! As part of our team, you will get the benefit of these events as all of our team members are part of our team building events. Although we like to have fun, we like making money too and we award our team, so we all benefit from our success! Compensation Package: Great salary plus Bonus pay.Comprehensive Employee Benefits Package.Promotions are being offered based on performance and ability, not tenure.We motivate you daily with tremendous growth opportunities within our company to elevate your income and your career. Full Company Training for All Individuals: No Experience NecessaryWe provide Full Sales TrainingWe have an extensive Training and Mentorship program conducted by individuals with years of experience We have an amazing mentorship program and management team to help provide training for rapid advancements with our company. Every environmental analysis has its own one-of-a-kind qualities and presents its own challenges. Our team can adapt to any challenges and anticipate giving our customers the most ideal arrangement at a focused cost. It's unlikely that you will have an issue that we haven't needed to manage before. So not to worry, with our mentorship program you will be fully trained to handle any issues that may arise. Summary: Job Type: Full-timeSchedule: Monday to Friday.Salary $65,000 - $75,000 per year plus bonusesBenefits: Full company benefits.Experience: NO EXPERIENCE NECESSARYTraining: FULL TRAINING OFFEREDRequirements: Must have your own vehicle.Location: Modern and bright office atmosphere located in Cambridge, Ontario.THIS IS NOT A REMOTE JOB POSITION If this position interests you, please apply today as positions are limited and we are looking to hire immediately.\",\n            \"location\": \"Hespeler Rd, Cambridge, ON\"\n        },\n        {\n            \"id\": \"D8EC8E09A193FCD3272E09A899203EDC\",\n            \"cityName\": \"Kitimat, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=23a496ef59a42219\",\n            \"jobName\": \"Clk 12r - Customer Service Representative\",\n            \"companyName\": \"Bc Public Service\",\n            \"rowSalary\": \"$52,803–$59,608 a year\",\n            \"date\": 1694513792928,\n            \"dateOfPosted\": 1694513791011,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.049366,\n                    \"lon\": -128.6283529\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Terrace\",\n                \"formattedAddress\": \"Kitimat, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kitimat-Stikine\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Terrace\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 52803.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    52803.0\n                ],\n                \"range\": {\n                    \"gte\": 52803.0,\n                    \"gt\": null,\n                    \"lte\": 52803.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Posting Title  CLK 12R - Customer Service Representative  Position Classification  CLBC Clerk R12  Union  GEU  Work Options  On-Site  Location  Kitimat, BC V8C 2N1 CA (Primary)  Salary Range  $52,803.18 - $59,607.79 annually  Close Date  9/25/2023  Job Type  Regular Full Time  Temporary End Date  Ministry/Organization  BC Public Service -> Citizens' Services  Ministry Branch / Division  Service Delivery/Service BC  Job Summary Apply your expertise and passion for innovation to this rewarding career opportunityMINISTRY OVERVIEWDedicated to making life better for British Columbians, the Ministry of Citizens’ Services (CITZ) delivers key services that people rely on. CITZ delivers accessible, multi-channel services, through a single-point-of-contact service approach to people in urban and rural communities through Service BC, and delivers the digital face of government at www.gov.bc.ca. CITZ also provides support for the expansion of high-speed internet connectivity throughout the province, leadership across government to modernize information management and technology resources, trusted data services to government agencies, prompt, and relevant responses to freedom of information requests, and statistical and economic research, information and analysis to businesses and the public sector. In addition, the ministry manages the Province’s real estate assets, technology systems and equipment, and leverages procurement to increase business opportunities and create rewarding jobs that contribute to local economies and benefit individuals, families, and communities.A service-focused organization, CITZ strives to be a great place to work, where all employees feel both engaged and motivated to do their best.DIVISIONAL OVERVIEWService BC is government’s chief provider of services to B.C. residents and businesses. The work of the division enables the design and delivery of accessible, responsive, and cost-effective services, making it easier for British Columbians and businesses to interact with government. Through a provincial network of 65 in-person offices and the Provincial Contact Center, Service BC provides approximately 300 government services for more than 40 partner ministries and agencies. Our team member’s unwavering commitment to an ethic of service has driven consistently high people and business satisfaction rates. In support of the division’s overarching goal of providing residents and businesses with seamless, multi-service access to government programs, the Division’s service offerings are marketed to partner ministries and the broader public sector to expand our continuum of services and leverage common platforms.Within Service BC, our vision is to deliver innovation, value, and service excellence to the people of British Columbia, with the aspirational goal of becoming a best-in-class public service delivery organization. Our people and our culture are important to us. As a team, we are motivated to deliver an excellent service experience to British Columbians, businesses, colleagues, peers, clients, and partners. We believe in being kind and helpful, and are committed to delivering “Service with Heart”.JOB OVERVIEWThe Service BC Customer Service Representative (CSR) maintains a positive, empathetic, and professional attitude when providing service and answering enquires. It requires the ability to identify and assess peoples’ needs to effectively and efficiently deliver an excellent customer service experience.The CSR provides services in-person, by phone, and through digital channels. The ability to provide clerical and administrative support such as data entry, reviewing applications for completeness, handling payments, and providing appropriate solutions, within government guidelines to a diverse population of people is essential to this role.Job Requirements:Minimum Grade 12 graduation or equivalent (GED).Experience providing inclusive customer service to diverse clienteles. Experience using digital applications to search for and record information. Preference may be given to applicants with one (1) or more of the following:Multiple years of experience in any of the above requirements.Experience providing in-person customer service.Experience providing customer service though phone or digital channels.Experience delivering customer service in a high volume, fast-paced, rapidly changing environment.Experience with conflict resolution and de-escalating situations.Experience providing services to a diverse population some of whom may be experiencing poverty issues, substance use, or mental health concerns.Experience maintaining administrative files and record keeping.Experience delivering service in a regulated or legislated environment following processes and procedures.Customer Service training and/or education.Experience handling financial transactions.Willingness Statements:Willingness to travel occasionally to provide relief coverage to other work sites (Service BC Centres, exam locations, etc.) Successful completion of security screening requirements of the BC Public Service, which may include a criminal records check, and/or Criminal Records Review Act (CRRA) check, and/or enhanced security screening checks as required by the ministry (Note: It is important that you read the job posting carefully to understand the specific security screening requirements pertaining to the position). For questions regarding this position, please contact melody.olsen@gov.bc.ca.About this Position: An eligibility list may be established to fill future temporary and permanent vacancies across the Ministry of Citizens' ServicesThis position has full time on-site requirements.Employees of the BC Public Service must be located in BC at the time of employment.Kitimat is by the Kitimat River, resulting in a wide range of water activities, such as kayaking, canoeing, boating, and visiting hot springs. Surrounded by beautiful forests and mountains, it is perfect for hiking, rock climbing, snowmobiling, and cross country skiing. Kitimat regularly hosts community events, such as fishing derbies and Winterfest celebrations.Working for the BC Public Service:The BC Public Service is committed to creating a diverse workplace to represent the population we serve and to better meet the needs of our citizens. Consider joining our team and being part of an innovative, inclusive and rewarding workplace.The Indigenous Applicant Advisory Service is available to applicants that self-identify as Indigenous (First Nations, status or non-status, Métis, or Inuit) seeking work or already employed in the BC Public Service. For guidance on applying and interviewing, please contact IndigenousApplicants@gov.bc.ca or 778-405-3452.The BC Public Service is an award-winning employer and offers employees competitive benefits, amazing learning opportunities and a chance to engage in rewarding work with exciting career development opportunities. For more information, please see What We Offer.How to Apply: Your application must clearly demonstrate how you meet the job requirements listed above.Cover Letter: NO - Please do not submit a cover letter as it will not be reviewed.Resume: YES - A resume is required as part of your application, however, it may not be used for initial shortlisting purposes.Questionnaire: YES - You will need to complete a comprehensive questionnaire to demonstrate how you meet the job requirements. Include all relevant information about your educational accomplishments and employment history including job titles, start and end dates (month and year) of your employment, and how you obtained your relevant experience. The questionnaire will take approximately 60 minutes to complete.Helpful tips, videos and more regarding the application process can be found on the Your Job Application page of MyHR. If you are experiencing technical difficulty applying, e-mail BCPSA.Hiring.Centre@gov.bc.ca, before the stated closing time, and we will respond as soon as possible.Additional Information: A Criminal Record Check (CRC) will be required.Applicants selected to move forward in the hiring process may be assessed on the Knowledge, Skills, Abilities and Competencies as outlined in the attached Job Profile located at the bottom of the posting.Applications will be accepted until 11:00 pm Pacific Standard Time on the closing date of the competition. Job Category  Administrative Services \",\n            \"location\": \"Kitimat, BC\"\n        },\n        {\n            \"id\": \"9FEEB2C01E3AC24E46AB6924B9669C29\",\n            \"cityName\": \"11528 Eburne Way, Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c5fd57f5666083c8\",\n            \"jobName\": \"Csr (Customer Service Representative-Mandarin Or Cantonese Speaker)\",\n            \"companyName\": \"Donald's Fine Foods\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694513774327,\n            \"dateOfPosted\": 1692823051458,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2014566,\n                    \"lon\": -123.0962888\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Eburne Way, Richmond, BC V6V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full Job DescriptionDuties and Responsibilities· Provide exceptional customer service to all customers in a professional and courteous manner· Provide support to the Sales Team in fulfilling orders· Work with other Customer Service Representatives to ensure correct orders are communicated to the logistics team for order picking and delivery.· Collaborate with cross-functional teams on inventory, customer complaints, and promotional salesAn Ideal CandidateMust speak Cantonese or MandarinMinimum 1-year experience working in a busy office environment and high school graduateExcellent customer service, detailed-orientation, and problem-solving skillsGood understanding of the English and Cantonese and/or Mandarin language, both oral and writtenIntermediate levels working with Microsoft Office (Word, Excel, Outlook)Can work on Tues-Sat 9am-6pm or 8am-5pmWhat we offer:Full-time employment (40 hours per week)Shift flexibility – Monday to Friday or Tuesday to Saturday work weeksMedical, Dental, AD&D, and Life Insurance benefits upon completion of probationEmployer matching RRSPAnnual incentive planEmployee discount purchase programTraining and developmentOpportunity for growthAnnual Family Days and Christmas PartyJob Types: Full-time, PermanentSalary: From $18.00 per hourBenefits:Casual dressCompany eventsDental careDisability insuranceDiscounted or free foodExtended health careLife insuranceOn-site parkingPaid time offRRSP matchVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMorning shiftOvertimeSupplemental pay types:Overtime payCOVID-19 considerations:All external applicants applying are required to be fully vaccinated as a condition of hire and subject to this policy as a condition of ongoing employment.Ability to commute/relocate:Richmond, BC: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Eburne Way, Richmond, BC\"\n        },\n        {\n            \"id\": \"04AC6A792A811A7CC4448F0887FA7CE5\",\n            \"cityName\": \"Moncton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c0392a40e0c83d94\",\n            \"jobName\": \"Customer Service Representative Supervisor\",\n            \"companyName\": \"Troy Soontiens & Associates Inc.\",\n            \"rowSalary\": \"$23.50 an hour\",\n            \"date\": 1694513698533,\n            \"dateOfPosted\": 1694513697956,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.0878165,\n                    \"lon\": -64.7782313\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Conduct performance reviews Recruit and hire staff Co-ordinate, assign and review work Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Examine and verify accuracy of work and authorize routine deposits and withdrawals Identify training needs and train workers in job duties and company policies Resolve work-related problems and prepare and submit progress and other reports Supervision 3-4 people Computer and technology knowledge MS Office Work conditions and physical capabilities Attention to detail Fast-paced environment Tight deadlines Work under pressure Personal suitability Accurate Client focus Dependability Efficient interpersonal skills Excellent oral communication Excellent written communication Initiative Interpersonal awareness Judgement Organized Reliability Team player Health benefits Health care plan Long term benefits Life insurance Other benefits Free parking availableWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Moncton, NB\"\n        },\n        {\n            \"id\": \"7342B5843C181691CCAD6DDD3482FA6F\",\n            \"cityName\": \"Saint John, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f09f9a2e93717e2d\",\n            \"jobName\": \"Monitoring Station Call Centre Operator - Bilingual (English/French)\",\n            \"companyName\": \"Firetronics 2000 Inc.\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694512103293,\n            \"dateOfPosted\": 1693665548352,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.2733153,\n                    \"lon\": -66.06330799999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saint John\",\n                \"formattedAddress\": \"Saint John, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Saint John County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saint John\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OverviewAt Firetronics 2000 Inc. safety is our number one concern. We specialize in installing, maintaining and monitoring ULC fire alarm systems. We stand by our services and products, ensuring adherence to all applicable regulations, industry standards and guidelines. One of our principal goals is to be a dependable and trusted partner to our clients, authorities and associations.Find out more information about Firetronics 2000 Inc. by visiting our website at www.firetronics.ca.Duties and ResponsibilitiesMonitor fire and security alarm systems utilizing specialized monitoring software and equipmentHandle all telephone calls efficiently and in a professional mannerNotify appropriate contacts or emergency authorities such as Fire Department, Police, Emergency Medical Services in a prompt and efficient manner following strict proceduresDiligently keep required records and filesPrepare and distribute reports internally and to external parties as requiredFollow all established procedures, regulations and guidelinesOther related duties as may be assignedPlease note that this is not a remote positionQualificationsVerbal and written fluency in both English and FrenchEducation: secondary school diploma minimumPreferred a minimum of 1 year experience in the same or similar role such as 911 Operator/Dispatcher, Customer Service Representative (CSR), Telephone Operator/Agent, Call Centre Operator/Agent, Answering Service Operator/Agent, etc.Excellent telephone and communication skillsFlexibility to work 12-hour rotating shifts (days and nights required)Advanced computer proficiency with strong data entry/keyboarding skillsAbility to work under pressureAttention to detail is requiredAbility to stay focused at all times during working hours.Passing criminal record checkWorking ConditionsFriendly team environmentCareer growth opportunitiesContinuous operations (24/7)12-hour rotating shifts (4 on- 4 off Schedule)Participation in On Call Schedule is requiredOffice environment with semi-open workstationsLocated close to major highways and public transitJob Types: Full-time, PermanentSalary: $20.00-$22.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offVision careSchedule:12 hour shiftSupplemental pay types:Overtime payAbility to commute/relocate:Saint John, NB E2L 4L1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer Service: 1 year (preferred)Language:English fluently (required)French fluently (required)Work Location: In personView public job pageJob Types: Full-time, PermanentSalary: From $20.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offVision careSchedule:12 hour shiftOn callSupplemental pay types:Overtime payAbility to commute/relocate:Saint John, NB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Language:French (required)Work Location: In person\",\n            \"location\": \"Saint John, NB\"\n        },\n        {\n            \"id\": \"EBEC08F9A55D38DCC9B2DA9730CEBB4B\",\n            \"cityName\": \"Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ff878545338167d8\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Mhm Direct\",\n            \"rowSalary\": \"$800–$1,200 a week\",\n            \"date\": 1694511550542,\n            \"dateOfPosted\": 1675891522656,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.64876350000001,\n                    \"lon\": -63.5752387\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax Regional Municipality\",\n                \"formattedAddress\": \"Halifax Regional Municipality, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halifax Regional Municipality\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 800.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    800.0\n                ],\n                \"range\": {\n                    \"gte\": 800.0,\n                    \"gt\": null,\n                    \"lte\": 800.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full Job DescriptionMHM Direct is hiring for outside sales and customer service in Halifax, NS. Bonus compensation is completely based on performance.The average wage of our representatives in this role is $38,400+ and top performers earn $57,600+ per year in this entry level position.OTHER BENEFITS:Paid 1 week of in house training on our sales process, and ride-along with successful sales and technical team membersRESPONSIBILITIES:Present/sell company products and services to new and existing customersResolve customer inquiries and complaintsAccess and process payment informationQUALIFICATIONS:Self-motivated, results-driven with excellent time management skillsCommit to skill development through weekly practice/coaching sessions that are customized to improve their current skill setPossess a positive and professional presence, exceptional communication skillsWork well in a team environmentJob Types: Full-time, Part-time, Seasonal, PermanentSchedule:Fixed hours of 12:30pm - 8:30pm, Monday-FridayAbility to commute:Halifax, NS: reliably commute, no remote options(required)Experience:Previous experience in retail, sales, serving or bartending is preferred, but we are willing to train the right candidate who has no experience.Job Types: Seasonal, Permanent, Part-time, Full-timePart-time hours: 20-40 per weekSalary: $800.00-$1,200.00 per weekBenefits:Profit sharingSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Halifax, NS\"\n        },\n        {\n            \"id\": \"15332E04751BE195CCCD53C503F6A4D8\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7dcb528bd623cffc\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"Trigrand Inc.\",\n            \"rowSalary\": \"$34–$36 an hour\",\n            \"date\": 1694510311361,\n            \"dateOfPosted\": 1688899109497,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 34.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    34.0\n                ],\n                \"range\": {\n                    \"gte\": 34.0,\n                    \"gt\": null,\n                    \"lte\": 34.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 1 year to 2 yearsExperience: 1 year to less than 2 yearsTasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Recruit and hire workers and carry out related staffing actions Train or arrange for training Estimate costs and materials Ensure health and safety regulations are followed Read blueprints and drawings Requisition or order materials, equipment and suppliesWork Term: PermanentWork Language: EnglishHours: 30 hours per week\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"3051120983A4A8B1518AC0F496C04C41\",\n            \"cityName\": \"Newmarket, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c3e8a6058748a477\",\n            \"jobName\": \"Real Estate Customer Service Administrator\",\n            \"companyName\": \"Kw Realty Centres\",\n            \"rowSalary\": \"$35,000–$40,000 a year\",\n            \"date\": 1694509141368,\n            \"dateOfPosted\": 1658504218961,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.05918700000001,\n                    \"lon\": -79.46125599999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Newmarket\",\n                \"formattedAddress\": \"Newmarket, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Newmarket\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a dynamic individual who will maintain a positive, empathetic, and professional attitude toward customers at all times; creating an experience when attending to clients' and associates’ needs in such a way that they walk away with a great impression. This individual will be responsible for the appearance of the Market Centre common areas. They will ensure the office is neat and prepared for business at all times. They will greet everyone with a smile and warmth as they enter the office. They will be as helpful as possible without neglecting the phones. Telephone calls are answered as promptly and politely as possible. They will assist in the management of the office by providing support and feedback to the Executive Assistant to the Team Leader, and the Market Centre Administrator. Compensation: $35,000 - $40,000 yearly Responsibilities: Answering the phone courteously, correctly, and ensuring that all calls are properly routed Promptly and accurately page agent messages as required Greeting everyone in a positive and professional manner Maintain appearance of the reception area and common areas of the Market Centre Provide detailed and timely responses to all associates, clients, brokerage, and staff questions and concerns Responsible for the front desk aspects of the listing process from new listing until the firm offer is received Book and confirm showing appointments with sellers, and other brokerages in a timely, accurate, and professional manner All required front desk TRREB reporting and updates in a timely and accurate manner Accurate receipt preparation, and distribution of deposit cheques Posting on private and public KWRC facebook Qualifications: People-oriented, positive, high energy Strong work ethic Dependable Team Player Experience with Broker Bay an asset Understanding of real estate administrative practices an asset Ability to be efficient and effective in a very fast-paced environment Ability to work at KWRC locations (Keswick, Newmarket, Aurora) Excellent computer skills Great communication skills Excellent administrative skills Neat, clean, professional appearance About Company Frequently recognized as the most innovative and agent-friendly brokerage in Canada, KW Realty Centres Aurora/Newmarket is a busy well-established office with over 230 agents. We are #1 in market share in our area. KW Realty Centres is a positive environment that will push you to great potential. Here you can make an impact; help people create wealth and make a difference in the community!\",\n            \"location\": \"Newmarket, ON\"\n        },\n        {\n            \"id\": \"5778A3714AF7DED58CCB5F8EDD52E236\",\n            \"cityName\": \"Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1514568d8d5162a5\",\n            \"jobName\": \"Customer Service - Parts Advisor (Automotive Retail)\",\n            \"companyName\": \"Alpha Auto Group\",\n            \"rowSalary\": \"$18–$21 an hour\",\n            \"date\": 1694508947787,\n            \"dateOfPosted\": 1692794012046,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Alpha Auto Group (\\\"AAG\\\") is a growing and nationally focused auto dealer group based in Toronto, with various locations across Canada and the USA. AAG’s mission is deeply rooted in delivering best in class service for our valued customers by putting our customers first through world class service.In order to meet this mission, it’s important that the successful candidate bring a high level of service, skill, willingness to grow and collaborate and drive, set and meet goals, both personally and collaboratively.With the ever increasing demand for support and service in the auto industry, some of our Ottawa locations are looking for Parts Advisors to join our team.ResponsibilitiesWorking directly with customers, suppliers and technicians to ensure that there is ongoing communication and effective operations within the parts department.Always working towards improving operational efficiencies.Order parts for customers' repair needs.Maintain and nurture ongoing rapport and relationships with business partners.Oversee and maintain parts inventory.QualificationsPrevious parts advisor experience. (min 1 yr)Deep passion and interest in human centered customer experiences.High attention to detail and able to work with minimal supervision.Comfort working with all levels of staff and customers.Strong verbal and written skills and proficiency in English.Proficient in Microsoft Office Applications. (Excel, Word, Outlook)Strong interpersonal skills.Job Types: Permanent, Full-timeSalary: $18.00-$21.00 per hourBenefits:Extended health careSchedule:Day shiftMonday to FridayWeekends as neededAbility to commute/relocate:Ottawa, ON: reliably commute or plan to relocate before starting work (required)Experience:Automotive Parts: 1 year (required)Customer Service: 3 years (required)Language:English (required)Licence/Certification:Drivers License (required)Work Location: In person\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"4466DC61418CBBEEF053F3297F53E688\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8047ec214dd9941b\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Dynadot Llc\",\n            \"rowSalary\": \"$16.50–$19.50 an hour\",\n            \"date\": 1694507899523,\n            \"dateOfPosted\": 1693658482618,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Dynadot is a top-rated web host and domain name registrar founded in 2002. We are growing rapidly, and provide our employees with ample opportunity to learn new skills and develop their careers. Our head office is located in the heart of Silicon Valley, California.Our team is expanding and we are looking for top-notch representatives to give our customers the exceptional service that we are known for. We offer competitive pay, medical benefits, generous paid time off, and a fun team-based work environment. We are looking for several full-time customer service representatives.This position is in our Toronto, Ontario office. The shift time is from 9am - 6pm PST (12pm - 9pm EST) either Sunday to Thursday or Tuesday to Saturday (one weekend day is required).Responsibilities:Respond to customer emails, online chats, and message board postings.Write knowledge-base articles for our help site and our FAQs.Work with our engineering team to troubleshoot bugs in our system.Answer technical support questions regarding DNS, Web Hosting, SSL certificates, and any other issues as they arise.Keep up-to-date with the changing policies and procedures of the domain name industry.Required Qualifications:A passion for providing excellent support.Strong written and verbal communication skills.Strong problem-solving skills.Hardworking, motivated, reliable, detail-oriented.Ability to work independently as well as with a team.Must be available to work weekends and some holidays.Benefits:Full-time positionCompetitive salaryDental careVision care4 weeks paid time off per year.Fun team-based work environment.Team-bonding activities.Job Type: Full-timeSalary: $16.50-$19.50 per hourBenefits:Casual dressDental careVision careFlexible Language Requirement:French not requiredWork Location: In personApplication deadline: 2023-09-15Expected start date: 2023-10-01\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"1571FF23404ADF7541EC30EB5285E2CC\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fa7c65cede5f9c9d\",\n            \"jobName\": \"Dental Administrator / Call Center Agent\",\n            \"companyName\": \"Dmd Family Dental & Orthodontics\",\n            \"rowSalary\": \"$20–$25 an hour\",\n            \"date\": 1694507055971,\n            \"dateOfPosted\": 1693653749772,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a positive, enthusiastic Customer Service Representative / Call Center Agent to join our growing team! A few of the many benefits of working with us!We are located in Guildford, very centralPositive and supportive office cultureExceptional team of professionalsConsistent schedule of hoursMedical & Dental Benefits The ideal candidate must have:A minimum of 1 year experience in the dental industry (either as dental receptionist or a dental assistant)Customer Service Skills – must be able to provide excellent patient service to ensure their dental needs are being met.Multi-Tasking Skills – ability to prioritize and address multiple demands concurrently.General passion for Dentistry and preventive careOrganized and computer proficientExcellent verbal and written communication skillsConfidentiality – Maintain patient, team member and employer confidentialityMust be available to work weekends (Saturdays and Sundays) #HRIC\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"BB1566B4CEB139B210E1853ADAA91656\",\n            \"cityName\": \"Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=86e4cfa8d6c2471f\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Wetrentals Inc.\",\n            \"rowSalary\": \"$15–$20 an hour\",\n            \"date\": 1694506927568,\n            \"dateOfPosted\": 1623804686446,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Boat Delivery & Customer Service Company descriptionWetRentals is a local Seadoo and other boat rental company. We offer rentals at a reasonable rate and they are delivered to our customers docks or doors.Job descriptionJob Title: Boat Delivery and Customer ServiceReports To: Sales ManagerJob Overview:As a Boat Delivery & Customer Service Representative, you will be required to deliver our boats to our customers dock or door. Once delivered, the boats must be unloaded and the customers must be briefed on the safety and operations of the boat. Customer service is key. Once the boats are fully delivered, the job duties are finished until the boats are required to be picked up. On pickup the boats must be inspected and returned to our location. Deliveries take place all over Ottawa, Kingston and Perth.A TRUCK IS REQUIRED (you will be paid $.58c/ km)Responsibilities and Duties- Rent Seadoo's to customers- Upsell our boats and accessories- Complete transactions- Collect deposits and signed contracts- Give safety briefings- Deliver Boats- Clean down boats, check for damage.- Answer questions as needed.Qualifications- Minimum of 18 Years of age- Sales experience is an asset- Boat knowledge is an asset- Local knowledge is an asset- Boaters licence is a must.- Truck or large vehicle is a must.HoursHours vary based on rentals. Our rentals are 9am-5pm. Deliveries and pickups happen at 9am and 5pm.The Perfect HireOur perfect hire is an energetic, outgoing individual who is looking to help grow our small business. The hire will have to be able to back up a trailer with boats and unload them proficiently. Customer service is a must as the hire must be able to fully explain how our boats work.Contract length: 2 monthsApplication deadline: 2021-06-20Expected start date: 2021-07-01Job Types: Full-time, TemporarySalary: $15-$20 per hourCOVID-19 considerations:All employees are required to wear a face covering while the government regulations are in place. Hand sanitizer and cleaning supplies are available 24/7Contract length: 2 monthsPart-time hours: 20 per weekExpected start date: 2021-07-01WetRentals Inc. provided the following inclusive hiring information:We are an equal opportunity employer and considers all qualified applicants equally without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, veteran status, or disability status.Job Types: Part-time, TemporarySalary: $15.00-$20.00 per hourBenefits:Company eventsWork from homeSchedule:HolidaysMonday to FridayOn callWeekendsSupplemental pay types:Commission payTipsApplication question(s):Do You Own A Large SUV or Truck?Education:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work remotely:No\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"7DD20A9A6D0BF5AAD6D244FC2332268C\",\n            \"cityName\": \"245 West Hunt Club Road, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0e498d869e7add93\",\n            \"jobName\": \"Customer Service Representative: Intake\",\n            \"companyName\": \"Ottawa Humane Society\",\n            \"rowSalary\": \"$20.32–$24.72 an hour\",\n            \"date\": 1694506712598,\n            \"dateOfPosted\": 1689722653284,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.3228772,\n                    \"lon\": -75.7673026\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"W Hunt Club Rd, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative: IntakeThe Ottawa Humane Society is a non-profit, community-based organization and a registered charity. Since 1888, we have been the leading organization providing a safe haven for sick, injured and homeless animals in Ottawa. For more information on the Ottawa Humane Society, visit us at: http://www.ottawahumane.ca.Under the direction of the Supervisor: Customer Service, the Customer Service Representative: Intake is responsible providing consultation and support for OHS clients seeking OHS lost and found services and services of the Municipal Animal Shelter (MAS).The hourly wage range is $20.32 - $24.72 as per our collective agreement.What would you do?Ensure professional intake and discharge of animalsAssess and document the health and behavior of incoming animalsExamine all in-coming animals are thoroughly for identificationResearch all possible avenues to match an animal to its ownerBe aware , and make use, of relevant online and community resourcesMaintain the MAS area, facilities and equipmentAccept and manage OHS payments and donations as requiredEnter and maintain data integrity in Raiser’s Edge and ChameleonSupport the activities of coworkers, volunteers , students and work placements a provide orientation and training as requiredBe thoroughly familiar with pertinent legislation, regulations, guidelines, OHS policies and good animal care practicesProduce and maintain accurate reports, records and filesParticipate in supervision, evaluation, training and other meetings as requiredParticipate in the identification and evaluation of OHS program goals and objectivesParticipate in professional development opportunitiesRepresent OHS in a professional mannerParticipate in public relations and promotional activities as requiredWill be required to assume some of the responsibilities of Customer Service Representative: AdoptionsMay be required to assume some of the responsibilities of the Supervisor: Customer Service or Coordinator: PALWhat are we looking for?Secondary school diploma or equivalentMinimum of one year experience in customer serviceAnimal handling experience preferredProficiency in Microsoft Office SuiteProfessional proficiency in spoken and written English and French is preferredWorking Conditions/Physical Requirements:Employee may be required to work evening, holiday and weekend shiftsEmployment is conditional upon the ability to provide services in a safe manner, including , but not limited to, lifts and transfers of large animals and interaction with potentially aggressive animalsEmployee will be required to wear a uniform designated by the employerEmployment is conditional upon maintaining confidentiality of OHS informationEmployment is conditional upon the ability to work around all species of animals safelyJob Type: Full-timeSalary: $20.32-$24.72 per hourAbility to commute/relocate:Ottawa, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (required)Work Location: In person\",\n            \"location\": \"West Hunt Club Rd, Ottawa, ON\"\n        },\n        {\n            \"id\": \"86285C1389AB4B9B99C7623AF58A9029\",\n            \"cityName\": \"Woodstock, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bff5092d0bd643a5\",\n            \"jobName\": \"Customer Service Supervisor (Except Financial Services)\",\n            \"companyName\": \"Holiday Inn Express & Suites Woodstock South\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694506575786,\n            \"dateOfPosted\": 1688038453554,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1314966,\n                    \"lon\": -80.74716509999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Woodstock\",\n                \"formattedAddress\": \"Woodstock, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Oxford County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Woodstock\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 3 months to less than 1 yearExperience: 7 months to less than 1 yearTasks Perform same duties as workers supervised Recruit and hire staff Co-ordinate, assign and review work Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Identify training needs and train workers in job duties and company policies Resolve work-related problems and prepare and submit progress and other reports Work conditions and physical capabilities Attention to detail Work under pressure Personal suitability Client focus Interpersonal awareness Organized Reliability Team playerWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Woodstock, ON\"\n        },\n        {\n            \"id\": \"4250FB91C01BAEBF8AC27ABC2E01C7B8\",\n            \"cityName\": \"5565 Ch De La Côte De Liesse, Saint-Laurent, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5e8976f78ff37ef8\",\n            \"jobName\": \"Customer Care Specialist/ Spécialiste Service Clientèle\",\n            \"companyName\": \"Crownring™ (La Bague Couronnée)\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694505246072,\n            \"dateOfPosted\": 1691617451872,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4636212,\n                    \"lon\": -73.7202654\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Ch De La, 10592 De la Côte-de-Liesse Rd, Lachine, QC H8T 1A4, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"SummaryAre you looking for a new challenge? We'd like to hear from you! CrownRing Bridal House is a fast-growing Canadian wholesale company looking for motivated, trustworthy, dedicated employees to join our team. As Canada’s leading bridal jewelry designer and manufacturer, we strive to maintain a professional work environment, both in our image and quality of work. We are looking for passionate, driven employees that are true believers in our immense potential.The PositionThe Customer Experience Specialist will be a detail-oriented, positive, hardworking individual. This person enjoys talking on the phone, administrative work and being in an office environment. This position requires a team player that has experience multi-tasking, working under stress and problem solving. They enjoy working in a fast-paced environment and love challenges.- Taskso Deliver the ultimate customer service experience to our retail partnerso Provide helpful and professional service by phone/e-mail. Requests will include:o Placing orderso Giving price quotes on regular and customized productso Providing status on pending orderso Assisting customers with orders under a tight deadlineo Issuing Return Authorization numbers- Requirementso Strong verbal and written communication skills in English to be part of our North American Team.o Career oriented individualo 2-3 years experience working in a similar position in an office settingo Professional E-mail communication experienceo High attention to detail with ability to catch errorso Strong computer skills (Microsoft Office Suite)Working at CrownRingWe aspire to empower our employees through multiple paths for growth within our modern company. We also offer health, dental, and vision benefits for you and your family.Availability: Monday – Thursday 9am – 6pm & Friday 9am – 3:30pmJobType: Full time (40h/week)Compensation: Based on experienceEmployee health benefit program will take effect after probation period.We are an equal-opportunity employer and value diversity at our company. We do not discriminate based on race, ethnicity, religion, gender, sexual orientation, age, or disability status.________________________________________________________________________________________________RésuméVous cherchez un nouveau défi ? Nous aimerions avoir de vos nouvelles ! CrownRing Bridal House est une entreprise canadienne de gros en pleine croissance à la recherche d'employés motivés, dignes de confiance et dévoués pour rejoindre notre équipe. En tant que principal concepteur et fabricant de bijoux de mariée au Canada, nous nous efforçons de maintenir un environnement de travail professionnel, tant dans notre image que dans la qualité de notre travail. Nous recherchons des employés passionnés et motivés qui croient fermement en notre immense potentiel.Le PosteLe Spécialiste du service à la Clientèle sera une personne attentive aux détails, positive et travailleuse. Cette personne apprécie les conversations téléphoniques, le travail administratif et l'environnement de bureau. Ce poste requiert un esprit d'équipe ayant de l'expérience dans la gestion de plusieurs tâches, travaillant sous pression et résolvant des problèmes. Ils aiment travailler dans un environnement rapide et sont friands de défis.Tâcheso Offrir l'expérience ultime de service à la clientèle à nos partenaires de vente au détailo Fournir un service utile et professionnel par téléphone/courriel. Les demandes incluront :o Passer des commandeso Donner des devis de prix sur des produits réguliers et personnaliséso Fournir l'état des commandes en attenteo Aider les clients avec des commandes sous contrainte de délaio Émettre des numéros d'autorisation de retourExigenceso Solides compétences en communication verbale et écrite en anglais afin de faire parti de notre équipe Nord Américaineo Individu axé sur la carrièreo 2 à 3 ans d'expérience dans un poste similaire en milieu de bureauo Expérience professionnelle en communication par courrielo Grande attention aux détails avec la capacité de repérer les erreurso Solides compétences en informatique (suite Microsoft Office)Travailler chez CrownRingNous aspirons à autonomiser nos employés grâce à plusieurs voies de croissance au sein de notre entreprise moderne. Nous offrons également des avantages en matière de santé, de soins dentaires et de vision pour vous et votre famille.Disponibilité : du lundi au jeudi de 9h00 à 18h00 et le vendredi de 9h00 à 15h30.Type de poste : Temps plein (40 heures/semaine)Rémunération : Basée sur l'expérienceLe programme d'avantages sociaux pour les employés entrera en vigueur après la période de probation.Nous sommes un employeur qui valorise la diversité et sommes attachés à l'égalité des chances. Nous ne discriminons pas sur la base de la race, de l'origine ethnique, de la religion, du genre, de l'orientation sexuelle, de l'âge ou du statut de handicap.Type de poste : Temps pleinSalaire : À partir de 18,00 $ de l'heureAvantages :Tenue décontractée Soins dentaires Soins de santé étendus Soins de la vueHoraire :Quart de 8 heuresLieu de travail : En personneJob Type: Full-timeSalary: From $18.00 per hourBenefits:Casual dressDental careExtended health careVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftSupplemental pay types:Overtime payWork Location: In person\",\n            \"location\": \"Ch De La Côte De Liesse, Saint-Laurent, QC\"\n        },\n        {\n            \"id\": \"C2139FA136F12A16CE544DB1EC0A43E4\",\n            \"cityName\": \"4500 Oak Street, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f399277e84d58a22\",\n            \"jobName\": \"Manager, Call Centre, Housekeeping Services, Inter-Campus Operations\",\n            \"companyName\": \"Phsa\",\n            \"rowSalary\": \"$86,398–$124,197 a year\",\n            \"date\": 1694505011872,\n            \"dateOfPosted\": 1692811036312,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.232599,\n                    \"lon\": -123.1280661\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Oak St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 86398.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    86398.0\n                ],\n                \"range\": {\n                    \"gte\": 86398.0,\n                    \"gt\": null,\n                    \"lte\": 86398.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Manager, Call Centre, Housekeeping Services, Inter-Campus Operations Children's & Women's Health Center  Vancouver, BC  In accordance with the Mission, Vision, Values and strategic direction of PHSA, safety, including both patient and employee safety, is a priority and a responsibility shared by everyone at PHSA. As such, the requirement to continuously improve quality and safety is inherent in all aspects of this position.  Reporting to the Director, Housekeeping Services, the Manager oversees the provision of quality Housekeeping Services call centre operations supporting the delivery of housekeeping services to Inter-Campus Operations (ICO) within British Columbia Children’s Hospital (BCCH), British Columbia Women’s Hospital and Health Centre (BCW) and the British Columbia Cancer Agency (BCCA). Provides leadership and direction to staff to ensure department service levels are maintained and customer service targets are achieved while identifying areas for improvement and/or development. Develops department policies and procedures including the development of an ICO wide Housekeeping call centre strategy incorporating current and new technology, by liaising with internal stakeholders to identify service requirements, and external providers with development and/or implementation of new technology. What you’ll do Contributes to the development of ICO’s long term human resources planning goals, policies, mission, and vision by reviewing the operational objectives for a Housekeeping Call Centre including the development of recommendations to meet current operational requirements, and reflect future operational and strategic needs of the department.Develops and implements department goals, objectives, policies and procedures to ensure the effective and efficient delivery of an ICO wide Housekeeping call centre service to internal/external users; oversees the reporting and documentation of call centre reports, metrics and service levels and works with staff to develop and implement standard processes/procedures for responding to user requests.Monitors workload and call volumes to ensure that response times and other performance targets are met in an effective and efficient manner.Develops, monitors, evaluates, and maintains work procedures and processes, by analyzing call centre data and reports, reviewing existing processes, drafting new processes, documenting and reviewing changes and advising call centre staff on new/changed procedures and processes to support improved housekeeping service delivery within ICO.Prepares and maintains a variety of call centre/department statistics used to monitor and maintain call volumes, staffing levels and workload volume. Analyzes service statistics to identify service improvement opportunities and trends to provide related recommendations.Recruits and manages assigned staff in accordance with professional standards, performance expectations and legislative/contractual obligations; directs, supervises and evaluates staff to ensure effective performance of dutiesPlans, assigns and/or provides work direction to staff by setting goals and standards and assigning responsibilities; coordinates the development, implementation and evaluation of staff training/orientation programs; promotes, disciplines and initiates employee disciplinary action and/or terminations, as required.Develops the annual operating and capital budgets for the assigned portfolio; monitors expenditures and performs variance analysis and reporting; takes corrective action as required to address budget and/or expenditure anomalies.Oversees and/or develops a quality improvement program to identify and resolve quality assurance issues; develops recommendations based on review of metrics to address gaps in service, quality of data collected and service provided, staff and human resource issues; implements recommendations as required.Manages, maintains and coordinates the maintenance and support of the call centre and participates in the development of a broader application of existing and/or new and related technology. Contributes to the development of long range housekeeping service delivery optimization through the identification and use of appropriate technological tools and systems.Identifies and promotes the development of research opportunities and utilization of research findings in refinement of call centre(s) service and best practices.Prepares operational and statistical reports, presentations and marketing materials for managing operations, reporting out on performance and marketing services to stakeholder groups. Other additional leadership responsibilities as assigned.Represents Housekeeping Services on various internal and external committees regarding call centre best practices and related issues. What you bring Qualifications Baccalaureate degree in Business Administration or related discipline, plus a minimum five years recent related experience including two (2) years in a supervisory/leadership role in Housekeeping Services and/or Housekeeping Call Centre, or an equivalent combination of education, training and experience.Sound knowledge of contemporary and best practices in call centre operations and incident reporting, including call centre/phone system technology. Demonstrated conflict management skills including ability to facilitate consensus with internal and external users. Ability to supervise and provide work direction to others. Working knowledge of applicable collective agreements and related legislation, labour standards and/or statutory requirements. Ability to implement service/organizational change and transition internal and external to the organization. Ability to organize and prioritize in a dynamic environment with changing priorities. Ability to develop and maintain rapport with internal and external stakeholders. Demonstrated conceptual, analytical and reasoning skills. Ability to operate related equipment including applicable software applications. Physical ability to perform the duties of the position. Proven ability to build a shared sense of purpose with clear priorities and expectations. Invests in team growth and development, and makes an honest effort to see, hear, and value all perspectives. Takes smart risks to find new solutions and has the ability to make tough decisions when needed for meaningful impact. Skills & Knowledge Awareness of and commitment to learning and understanding the Truth & Reconciliation Commission’s 94 Calls to Action (2015), In Plain Sight Report (2020), BC's Declaration on the Rights of Indigenous Peoples Act (2019), and Reclaiming Power and Place Missing and Murdered Indigenous Women & Girls calls for justice, and how they intersect across the health care system.Supports team members on their learning journey, ensuring education strategy for team/department to implement Indigenous Cultural Safety at a practical level.Works collaboratively with appropriate Indigenous teams/departments to ensure ICS lens applied holistically.Commitment to upholding the shared responsibility of creating lasting and meaningful reconciliation in Canada as per TRC (2015) and BC's Declaration on the Rights of Indigenous Peoples Act (2019).As a strong asset for consideration, we are looking for our successful candidate to have: Knowledge of social, economic, political and historical realities impacting indigenous communities and familiarity with Indigenous Cultural Safety and anti-racism and accompanying reports (BC DRIPA, TRC, etc.). What we bring Every PHSA employee enables the best possible patient care for our patients and their families. Whether you are providing direct care, conducting research, or making it possible for others to do their work, you impact the lives of British Columbians today and in the future. That’s why we’re focused on your care too – offering health, wellness, development programs to support you – at work and at home. Join one of BC’s largest employers with province-wide programs, services and operations – offering vast opportunities for growth, development, and recognition programs that honour the commitment and contribution of all employees.Access to professional development opportunities through our in-house training programs, including +2,000 courses, such as our San’yas Indigenous Cultural Safety Training course, or Core Linx for Leadership roles.Enjoy a comprehensive benefits package, including municipal pension plan, and psychological health & safety programs and holistic wellness resources.Annual statutory holidays (13) with generous vacation entitlement and accruement.PHSA is a remote work friendly employer, welcoming flexible work options to support our people (eligibility may vary, depending on position).Access to WorkPerks, a premium discount program offering a wide range of local and national discounts on electronics, entertainment, dining, travel, wellness, apparel, and more. Job Type: Regular, Full-time  Salary Range: $86,398 - $124,197 /year. The starting salary for this position would be determined with consideration of the successful candidate’s relevant education and experience, and would be in alignment with the provincial compensation reference plan. Salary will be prorated accordingly for part time roles. Location: 4500 Oak St, Vancouver, BC V6H 3N1 Closing date: Applications accepted until position is filled Hours of Work: 0900-1700 (Monday to Friday) Requisition # 150964E  As per the current Public Health Order, full vaccination against COVID-19 is a condition of employment with PHSA as of October 26, 2021. What we do  The Provincial Health Services Authority (PHSA) plans, manages and evaluates specialized health services with the BC health authorities to provide equitable and cost-effective health care for people throughout the province. Our values reflect our commitment to excellence and include: Respect people – Be compassionate – Dare to innovate – Cultivate partnerships – Serve with purpose.  Learn more about PHSA and our programs: jobs.phsa.ca/programs-and-services  PHSA is committed to employment equity, encouraging all qualified individuals to apply. We recognize that our ability to provide the best care for our diverse patient populations relies on a rich diversity of skills, knowledge, background and experience, and value a safe, inclusive and welcoming environment.  Reconciliation is an ongoing process and a shared responsibility for all of us. The BC Governments’ unanimous passage of the Declaration on the Rights of Indigenous Peoples Act was a significant step forward in this journey—one that all health authorities are expected to support as we work in cooperation with Indigenous Peoples to establish a clear and sustainable path to lasting reconciliation. True reconciliation will take time and ongoing commitment to work with Indigenous Peoples as they move toward self-determination. Guiding these efforts Crown agencies must remain focused on creating opportunities that implement the Truth and Reconciliation Commission Mandate.  ATTN: PHSA Employees: To be considered as a PHSA employee (internal applicant) for this position, you must apply online via your internal profile at http://internaljobs.phsa.ca  Please note the internal job posting will no longer be accessible after the expiry date of August 29, 2023. If the internal job posting has expired, please contact the Internal Jobs Help Desk and advise that you would like to be considered as a late internal applicant for this position. Please do not apply for the external job posting.  If you have not registered your internal profile, a password is required to log in for the first time. To obtain your password, please contact the Internal Jobs Help Desk at 604-875-7264 or 1-855-875-7264. Please note regular business hours are Monday – Friday (excluding stats), 8:30am to 4:30pm. For inquiries outside of regular business hours, please email the Internal Jobs Help Desk at internaljobshelpu@phsa.ca and a Help Desk Representative will contact you the next business day. \",\n            \"location\": \"Oak St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"10E9C0851053C8ECCE98839E565C87E2\",\n            \"cityName\": \"27 Queen St E, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d73574867340db88\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Shiny\",\n            \"rowSalary\": \"$15–$23 an hour\",\n            \"date\": 1694504961439,\n            \"dateOfPosted\": 1623853205727,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6637879,\n                    \"lon\": -79.3278595\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Queen St E, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Description:Answer phone calls and assist walk-in customersDaily showroom Set-up and pack upPrepare orders and follow-up with customers on phone or emailHandle customer concerns and inquiriesInvoice orders and obtain necessary payments when requiredRequirements:Fluent in French and EnglishRelatable job experience preferredOrganized and punctualKnowledge of Microsoft outlook, word, and excel is mandatoryAble to multitask and meet deadlinesMust be a team player and be able to work independentlyQuick and efficient learnerJewellery knowledge is an asset but not required, training provided.Job Type: Full-timeSalary: $15.00-$23.00 per hourSchedule:8 hour shiftNo weekendsEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work remotely:No\",\n            \"location\": \"Queen Street East, Toronto, ON\"\n        },\n        {\n            \"id\": \"5499848CA4544DE9A192A1D894F38132\",\n            \"cityName\": \"Windsor Station Currency Exchange in Windsor, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8c51c20aa8e7a70c\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Windsor Station Currency Exchange\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694504880259,\n            \"dateOfPosted\": 1682669668585,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.3149367,\n                    \"lon\": -83.03636329999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Windsor\",\n                \"formattedAddress\": \"Windsor, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Essex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Windsor\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CPosition: Customer Service Representative/AssistantA customer service representative is the face of the company, and is incredibly important in developing lasting relationships between WSCE and our clients. You will be expected to complete transactions, respond to telephone inquiries, open new accounts, identify client needs, recommend suitable products, and resolve client problems.Essential Functions and Basic Duties- Provide prompt, courteous service to clients in person and by phone- Perform a variety of cash and cheque transcations.- Effectively use multiple administrative systems to resolve inquiries- Assist with opening and closing the branch- Manage large amounts of incoming phone calls- Keep current with company policies, procedures and processesQualifications and Skills- Cash handling experience- Customer service experience- Strong interpersonal and communication skills- Working knowledge of excel- Proficiency with numerical calculationsJob Types: Full-time, Fixed term contractContract length: 12 monthsSalary: $18.00-$25.00 per hourSchedule:8 hour shiftEducation:Secondary School (preferred)Experience:Cash handling: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Windsor, ON\"\n        },\n        {\n            \"id\": \"0C7FC89DA59900848800C343605136AB\",\n            \"cityName\": \"Fort McMurray, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3a9238147d37a3cc\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Tumblweed General Store\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694504630659,\n            \"dateOfPosted\": 1691622508349,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 56.7266598,\n                    \"lon\": -111.3790441\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fort McMurray\",\n                \"formattedAddress\": \"Fort McMurray, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 16\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fort McMurray\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cashier & Customer Service RepresentativeTumbleweed General Store/Fort McKay Petro CanadaJob location: Fort McKay, ABShift: VariesLocated in the Fort McKay Industrial Park in Fort McKay, 35 minute drive from Fort McMurray!!Must have own transportation, we provide free gasCome and join our team today!!Company Summary:Based out of Fort McKay, AB, we are a high traffic gas and convenience store providing services to our costumers. When you join our team, you join a family of employees dedicated to a safe, enjoyable, and positive work environment. We offer competitive wages and seek candidates that are seeking secure, long-term employment.Job Summary:Reporting to the store manager and operating from the Fort McKay Industrial Park, the cashier and customer service representative is responsible for providing customer with professional, efficient and friendly service. The individual in this position must be able to multi-task efficiently in a fast-paced environment.Duties and Responsibilities:All general duties that are required of a Cashier/Customer Service Representative specifications follow but are not limited to:· Provide fast, friendly and a responsive guest experience· Maintain a clean, safe, and well stocked environment· Manage electronic cash register and the applicable retail transactions efficiently· Willingness to learnFollow all procedures, policies, and practices· Ability to complete all required daily paperwork· Multi-task efficiently in a Fast-paced environment· Must have basic math & English communication skills as well as basic physical ability.· Must be legally able to work in Canada.Qualifications:Possess valid driver's licenseExcellent communication and organization skillsExcellent Interpersonal and customer service skillsTeam player and PunctualAbility to work well without supervisionEager and willing to learnMust have reliable transportation (Fuel is provided)Additional Incentives:Company Health Benefits (eligible after 90 days)We thank you for your interest in Tumbleweed General Store and remind all candidates that only successful applicants will be contacted. Based on equal qualifications, preference will be given to local candidates.Tumbleweed General Store follows all Covid 19 Public Health Measures, advice and restrictions.Job Types: Permanent, Full-timeSalary: $19.00 per hourBenefits:Dental careVision careShift:8 hour shiftDay shiftEvening shiftExperience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Fort McMurray, AB\"\n        },\n        {\n            \"id\": \"3544B1BC7CABA29FBC01F2701C4D6186\",\n            \"cityName\": \"72838 Bluewater Highway, Zurich, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3fe28f0fb30ad9db\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Mobil Gas Bar\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694504434292,\n            \"dateOfPosted\": 1687946765825,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4214787,\n                    \"lon\": -81.6256659\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Zurich\",\n                \"formattedAddress\": \"Zurich, ON N0M 2T0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Huron County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Zurich, ON Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"1. Opening or closing Gas station2. accounts3. Cleaning4. Loading unloading inventories5. ReportingJob Types: Permanent, Part-time, Full-timePart-time hours: 20-40 per weekSalary: From $15.50 per hourBenefits:On-site parkingDay range:HolidaysMonday to FridayWeekend availabilityFlexible Language Requirement:English not requiredShift:4 hour shift8 hour shiftAfternoon shiftDay shiftMorning shiftWork setting:Convenience storeCOVID-19 considerations:yes Ability to commute/relocate:ZURICH, ON: reliably commute or plan to relocate before starting work (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Zurich, ON\"\n        },\n        {\n            \"id\": \"94FFBF60C0BC18BB50FDF3B59C1F72C5\",\n            \"cityName\": \"8 Highland Dr, St. John's, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=12b0d2d1836b39de\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Ches's Fish And Chips\",\n            \"rowSalary\": \"From $14.75 an hour\",\n            \"date\": 1694503613577,\n            \"dateOfPosted\": 1692800026545,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.6068279,\n                    \"lon\": -52.7121564\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St. John's\",\n                \"formattedAddress\": \"Highland Dr, St. John's, NL A1A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Highland Dr, St. John's, NL\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full Job Descriptionwe are looking for someone energetic, have a flexible schedule, like a fast-paced environment, and can learn quickly, we want to hear from you!We are currently hiring a cashier with daytime and evening time availability (weekdays and weekends).Greet guests and advise on store's ordering products and services, handle transactions on POS terminal and process payments, maintain a clean environment for the guests (restock, clearing and cleaning of dining room area), perform all opening and closing duties.Job Type: Part-timePart-time hours: 20-40 per weekSalary: From $14.75 per hourBenefits:Dental careVision careDay range:Monday to FridayWeekends as neededShift:4 hour shift8 hour shiftAbility to commute/relocate:St. John'S, NL A1A 3C4: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Highland Dr, St. John's, NL\"\n        },\n        {\n            \"id\": \"0150587BAE669692F1FA0EB8F9D06DBD\",\n            \"cityName\": \"Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=319c557623f9a83a\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Budget Car & Truck Rental\",\n            \"rowSalary\": \"$18–$19 an hour\",\n            \"date\": 1694503147259,\n            \"dateOfPosted\": 1692777378138,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3193375,\n                    \"lon\": -124.3136411\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Parksville\",\n                \"formattedAddress\": \"Parksville, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Parksville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Quality Long Term Position AvailableBudget Car & Truck Rentals is now seeking a candidate to fill a Customer Service role in Parksville, BC. Shifts will involve working weekendsThis position offers:-A competitive salary with an excellent incentive program.-Stability and flexibility with a BC owned company that has been successful in business for over 50 years.-A comprehensive benefits program including extended health, dental, and life insurance.-A fast-paced, exciting role within a team of dedicated professionals who love to have fun at work.What we are looking for from you:-A high energy, positive attitude.-A team player who respects their coworkers and is driven by healthy competition.-Someone who is motivated to give the best customer service experience possible.-Strong computer skills and the ability to multitask.-Effective communication skills with both customers and colleagues alike.-Accountability and integrity paired with strong work ethic.-A valid BC Class 5 driver’s license or better with a clean driving record.-Previous experience in sales and customer service.If you’re interested in starting a long term career in this growing industry please email to this posting a copy of your cover letter and resume outlining your ability to meet or exceed the requirements above.Job Type: Full-timeSalary: $18.00-$19.00 per hourExpected hours: 40 – 45 per weekBenefits:Dental careDisability insuranceExtended health careLife insuranceRRSP matchFlexible Language Requirement:French not requiredSchedule:Monday to FridayWeekends as neededSupplemental pay types:Commission payAbility to commute/relocate:Parksville, BC: reliably commute or plan to relocate before starting work (required)Licence/Certification:BC Class 5 Drivers License or Better (preferred)Work Location: In person\",\n            \"location\": \"Parksville, BC\"\n        },\n        {\n            \"id\": \"2127E247E7E47B5EB8EAC037A415282E\",\n            \"cityName\": \"Revelstoke, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=15255c931f169340\",\n            \"jobName\": \"Clk 12r - Customer Service Representative\",\n            \"companyName\": \"Bc Public Service\",\n            \"rowSalary\": \"$52,803–$59,608 a year\",\n            \"date\": 1694503078100,\n            \"dateOfPosted\": 1694503077866,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.998115,\n                    \"lon\": -118.195672\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Revelstoke\",\n                \"formattedAddress\": \"Revelstoke, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Columbia-Shuswap\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Revelstoke\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 52803.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    52803.0\n                ],\n                \"range\": {\n                    \"gte\": 52803.0,\n                    \"gt\": null,\n                    \"lte\": 52803.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Posting Title  CLK 12R - Customer Service Representative  Position Classification  CLBC Clerk R12  Union  GEU  Work Options  On-Site  Location  Revelstoke, BC V0E 3K0 CA (Primary)  Salary Range  $52,803.18 - $59,607.79 annually  Close Date  9/25/2023  Job Type  Regular Full Time  Temporary End Date  Ministry/Organization  BC Public Service -> Citizens' Services  Ministry Branch / Division  Service Delivery/Service BC  Job Summary Apply your expertise and passion for innovation to this rewarding career opportunityMINISTRY OVERVIEWDedicated to making life better for British Columbians, the Ministry of Citizens’ Services (CITZ) delivers key services that people rely on. CITZ delivers accessible, multi-channel services, through a single-point-of-contact service approach to people in urban and rural communities through Service BC, and delivers the digital face of government at www.gov.bc.ca. CITZ also provides support for the expansion of high-speed internet connectivity throughout the province, leadership across government to modernize information management and technology resources, trusted data services to government agencies, prompt, and relevant responses to freedom of information requests, and statistical and economic research, information and analysis to businesses and the public sector. In addition, the ministry manages the Province’s real estate assets, technology systems and equipment, and leverages procurement to increase business opportunities and create rewarding jobs that contribute to local economies and benefit individuals, families, and communities.A service-focused organization, CITZ strives to be a great place to work, where all employees feel both engaged and motivated to do their best.DIVISIONAL OVERVIEWService BC is government’s chief provider of services to B.C. residents and businesses. The work of the division enables the design and delivery of accessible, responsive, and cost-effective services, making it easier for British Columbians and businesses to interact with government. Through a provincial network of 65 in-person offices and the Provincial Contact Center, Service BC provides approximately 300 government services for more than 40 partner ministries and agencies. Our team member’s unwavering commitment to an ethic of service has driven consistently high people and business satisfaction rates. In support of the division’s overarching goal of providing residents and businesses with seamless, multi-service access to government programs, the Division’s service offerings are marketed to partner ministries and the broader public sector to expand our continuum of services and leverage common platforms.Within Service BC, our vision is to deliver innovation, value, and service excellence to the people of British Columbia, with the aspirational goal of becoming a best-in-class public service delivery organization. Our people and our culture are important to us. As a team, we are motivated to deliver an excellent service experience to British Columbians, businesses, colleagues, peers, clients, and partners. We believe in being kind and helpful, and are committed to delivering “Service with Heart”.JOB OVERVIEWThe Service BC Customer Service Representative (CSR) maintains a positive, empathetic, and professional attitude when providing service and answering enquires. It requires the ability to identify and assess peoples’ needs to effectively and efficiently deliver an excellent customer service experience.The CSR provides services in-person, by phone, and through digital channels. The ability to provide clerical and administrative support such as data entry, reviewing applications for completeness, handling payments, and providing appropriate solutions, within government guidelines to a diverse population of people is essential to this role.Job Requirements:Minimum Grade 12 graduation or equivalent (GED).Experience providing inclusive customer service to diverse clienteles. Experience using digital applications to search for and record information. Preference may be given to applicants with one (1) or more of the following:Multiple years of experience in any of the above requirements.Experience providing in-person customer service.Experience providing customer service though phone or digital channels.Experience delivering customer service in a high volume, fast-paced, rapidly changing environment.Experience with conflict resolution and de-escalating situations.Experience providing services to a diverse population some of whom may be experiencing poverty issues, substance use, or mental health concerns.Experience maintaining administrative files and record keeping.Experience delivering service in a regulated or legislated environment following processes and procedures.Customer Service training and/or education.Experience handling financial transactions.Willingness Statements:Willingness to travel occasionally to provide relief coverage to other work sites (Service BC Centres, exam locations, etc.) Successful completion of security screening requirements of the BC Public Service, which may include a criminal records check, and/or Criminal Records Review Act (CRRA) check, and/or enhanced security screening checks as required by the ministry (Note: It is important that you read the job posting carefully to understand the specific security screening requirements pertaining to the position). For questions regarding this position, please contact melody.olsen@gov.bc.ca.About this Position: An eligibility list may be established to fill future temporary and permanent vacancies across the Ministry of Citizens' ServicesThis position has full time on-site requirements.Working for the BC Public Service:The BC Public Service is committed to creating a diverse workplace to represent the population we serve and to better meet the needs of our citizens. Consider joining our team and being part of an innovative, inclusive and rewarding workplace.The Indigenous Applicant Advisory Service is available to applicants that self-identify as Indigenous (First Nations, status or non-status, Métis, or Inuit) seeking work or already employed in the BC Public Service. For guidance on applying and interviewing, please contact IndigenousApplicants@gov.bc.ca or 778-405-3452.The BC Public Service is an award-winning employer and offers employees competitive benefits, amazing learning opportunities and a chance to engage in rewarding work with exciting career development opportunities. For more information, please see What We Offer.How to Apply: Your application must clearly demonstrate how you meet the job requirements listed above.Cover Letter: NO - Please do not submit a cover letter as it will not be reviewed.Resume: YES - A resume is required as part of your application, however, it may not be used for initial shortlisting purposes.Questionnaire: YES - You will need to complete a comprehensive questionnaire to demonstrate how you meet the job requirements. Include all relevant information about your educational accomplishments and employment history including job titles, start and end dates (month and year) of your employment, and how you obtained your relevant experience. The questionnaire will take approximately 60 minutes to complete.Helpful tips, videos and more regarding the application process can be found on the Your Job Application page of MyHR. If you are experiencing technical difficulty applying, e-mail BCPSA.Hiring.Centre@gov.bc.ca, before the stated closing time, and we will respond as soon as possible.Additional Information: A Criminal Record Check (CRC) will be required.Applicants selected to move forward in the hiring process may be assessed on the Knowledge, Skills, Abilities and Competencies as outlined in the attached Job Profile located at the bottom of the posting.Applications will be accepted until 11:00 pm Pacific Standard Time on the closing date of the competition. Job Category  Administrative Services \",\n            \"location\": \"Revelstoke, BC\"\n        },\n        {\n            \"id\": \"B11EB8D2B2D5FD117030BFEEEDACCE86\",\n            \"cityName\": \"128-998 Harbourside Dr, North Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b45ecffc545bdee9\",\n            \"jobName\": \"Customer Service/Barista\",\n            \"companyName\": \"Thomas Haas Chocolates & Patisserie\",\n            \"rowSalary\": \"$18–$19 an hour\",\n            \"date\": 1694501289710,\n            \"dateOfPosted\": 1694309885584,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"THOMAS HAAS Chocolates and Patisserie is looking for a FOODIE & COFFEE loving person to join our team!- Full-time: Tuesday to Saturday (40hrs/wk)Sundays & Mondays Closed (always have 2 set days off)Opening shift starts at 7:15amClosing shift ends around 7pm (giving you time for dinner with family & friends! :)- we are looking for someone who is hardworking, possess good multi-tasking skills, has attention to detail, enjoys engaging with people and is self-motivated- a good part of this job is talking with our customers & your co-workers - good listening skills & English comprehension are key!- we offer a competitive wage & shared tips- free beverages & meal while at work- extended health benefits (after one year full-time with us)- we hire people on work/travel visas (12 months)Your past customer service experience would reflect in your starting wage.*barista experience is an asset, but not necessary*Do you have a willingness to learn and expand your skill set?Do you enjoy working in a team?We would love to meet you if this sounds like an opportunity you would like to pursue!We will reach out to the candidates that are suitable.Job Types: Full-time, PermanentSalary: $18.00-$19.00 per hourJob Types: Full-time, PermanentSalary: $18.00-$19.00 per hourBenefits:Dental careDiscounted or free foodExtended health careStore discountVision careSchedule:8 hour shiftDay shiftSupplemental pay types:TipsAbility to commute/relocate:North Vancouver, BC: reliably commute or plan to relocate before starting work (required)Application question(s):How do you handle a stressful situation?Education:Secondary School (required)Experience:Customer service: 1 year (required)Language:and comprehend English really well (required)Licence/Certification:FoodSafe certification (required)Shift availability:Day Shift (required)Work Location: In personApplication deadline: 2023-09-23Expected start date: 2023-09-15\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"C0F42B93DCA53CCD20D6A2F9BBF6B612\",\n            \"cityName\": \"161 Conception Bay Highway, Bay Roberts, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ef7a3870aafbbb7b\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"A&W\",\n            \"rowSalary\": \"$13.70–$15.00 an hour\",\n            \"date\": 1694500763787,\n            \"dateOfPosted\": 1668042720848,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.6070238,\n                    \"lon\": -53.2868564\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bay Roberts\",\n                \"formattedAddress\": \"Conception Bay Hwy, Bay Roberts, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bay Roberts\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"BASIC FUNCTIONThe Cashier ensures an excellent experience for their guests by exceeding expectations and taking, assembling, and serving orders accurately. The Cashier cares for their guests first before anything else, delighting them with friendly and caring service that creates loyalty. The Cashier also ensures the dining room is kept clean and presentable, and contributes to achieving A&W operating standards for the restaurant.REQUIREMENTSYou will excel and find happiness in this job if you: Appreciate exceptional customer service – and knows what it takes to deliver this to every guest on every visit;Love learning – you’ll use online learning and hands on training to know how to prepare perfect food to standard recipes or customized for guests;Embrace change - and get excited to implement new innovation from A&W;Value flexibility – this includes availability to work flexible hours like early mornings, evenings, weekends, nights and/or holidays;Love working in a team – and together as partners to get the job done in a dynamic fast food environment.Education:Education is an asset, but no minimum requirementExperience:Experience is an asset, but no minimum requirementAbilities:Excellent guest serviceWorking as a teamMulti-taskingBasic mathematical skillsEffective communication skillsJob Types: Permanent, Part-time, Full-timeSalary: $13.70-$15.00 per hourBenefits:Discounted or free foodFlexible scheduleStore discountDay range:HolidaysMonday to FridayWeekend availabilityFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayNight shiftOvertimeWeekend availabilityShift:10 hour shift4 hour shift8 hour shiftDay shiftEveningsEvening shiftMorning shiftNight shiftSupplemental pay types:Bonus payOvertime payTipsCOVID-19 considerations:All staff are currently required to wear masks and additional cleaning and screening processes are in place.Work Location: In person\",\n            \"location\": \"Conception Bay Highway, Bay Roberts, NL\"\n        },\n        {\n            \"id\": \"D02AFE359B18009C31E2456E8E8A3FBA\",\n            \"cityName\": \"340 Ewen Ave., New Westminster, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1129b902c84cc991\",\n            \"jobName\": \"Customer Service And Shop Saw Operator\",\n            \"companyName\": \"Griff Building Supplies Ltd.\",\n            \"rowSalary\": \"$25 an hour\",\n            \"date\": 1694500441235,\n            \"dateOfPosted\": 1694239278617,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 25.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    25.0\n                ],\n                \"range\": {\n                    \"gte\": 25.0,\n                    \"gt\": null,\n                    \"lte\": 25.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Yard Customer Service / Shop Saw OperatorDuties and responsibilities Maintaining equipment necessary for your job. Cut lumber to specified lengths with efficiency in mind. Help customers and do yard clean up when there are no orders to be cut. Daily forklift check sheet to be filled out and given to yard lead.Follow established work policies and procedures and make suggestions for improvements to the yard lead.Participate in staff meetings and training as needed.Understand and follow WCB safety requirements and inform anyone in shipping of any safety issues.Assist with the training of new staff and promote a team mentality.Maintain and secure assigned tools and other equipment necessary to complete your job. Clean as you go. All weather sensitive products must be wrapped before shipment regardless of weather conditions.All other related duties.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"A14C6FFA7D2FFB4FE0A81D57F3B0AFC4\",\n            \"cityName\": \"2595 Main St, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=80112884d20796c4\",\n            \"jobName\": \"Customer Service And Sales Associate\",\n            \"companyName\": \"Fabutan And Hush Lash Studios\",\n            \"rowSalary\": \"$13.50–$18.00 an hour\",\n            \"date\": 1694499861762,\n            \"dateOfPosted\": 1673175770256,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.94461099999999,\n                    \"lon\": -97.111592\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Main St, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are proud to be Canada’s Largest Sunshine and Lifestyle Brand with 130 Locations!We are currently recruiting a sales and service associate for our Winnipeg Riverbend studio who is outgoing, self-motivated, has great sales ability, able to multi-task, quick to learn, consistent and passionate! We are also looking for someone who enjoys tanning, skin care, all the benefits of UV exposure and Vitamin D.APPLY NOW FOR OUR CUSTOMER SERVICE ASSOCIATE | LIFESTYLE EXPERT POSITION – PERSONAL AND WORKING INTERVIEWS WILL BE SCHEDULEDWhat we offer:Free Access to Services like Sunshine, Spray, Red Light Skin Rejuvenation, 40% Off Products for Personal Use, Staff pricing for Hush Lash Extensions, Fabutan and Smart Tan Cooperative Online and In-Studio Training, Ongoing Coaching to help ensure your success, Coaching on Personal Development and Relationship Building, Service Opportunity for Hush Lash Extension Training and Careers with Hush, Flexible hours to fit your busy schedule, full and part time opportunities, A positive, fun, and rewarding work environment with a growing company. For more information on opportunities visit www.fabutan.comIn addition:We offer Competitive Commissions on Products and Membership sales, paid monthly. Part-Time Hourly Rate starts at $13.50 per hour and you have the opportunity to earn $2-$5 more per hour in bonuses. Opportunities for raises and advancement based on performance.What you offer:No experience is necessary but sales experience is an asset. Fantastic customer service, an amazing work ethic and the passion to give our guests the best experience on each and every one of their visits. Positivity, enthusiasm to learn and desire to help educate our guests on products and services. Ability to multitask and maintain a clean, attractive and comfortable studio at all times.About us:Fabutan established in 1979 and currently offers 130 locations Canada Wide to serve our guests. We offer a proprietary blend of UVA and UVB in our lamps to imitate natural sunlight as closely as possible. It is our principle to change our lamps every 500 hours to give our guests the best results, we guarantee a tan in 300 minutes or less! We offer Sunshine, Spray Tanning, Red Light Skin Rejuvenation and have an Exclusive Partnership with Hush Lash Studio. Our Lifestyle Experts are fully trained, certified and strive to provide the most immaculate sunshine beds you've ever experienced. All in an atmosphere that is fun and relaxed.If you are a fun-loving, happy person and you think this all sounds good, then please send us your resume with a cover letter, and we would love to meet you!Job Types: Full-time, Part-timeSalary: $13.50-$18.00 per hourJob Types: Full-time, Part-timePart-time hours: 10-15 per weekSalary: $13.50-$18.00 per hourBenefits:On-site parkingStore discountDay range:Weekend availabilityFlexible Language Requirement:French not requiredShift:Day shiftEvening shiftExperience:sales: 1 year (preferred)customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In personExpected start date: 2023-01-14\",\n            \"location\": \"Main St, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"1971C3C4BC5155B9F1D65EB21CDC748D\",\n            \"cityName\": \"1538 Rue Sherbrooke O, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1d6a12ecbc593993\",\n            \"jobName\": \"Call Center Agent\",\n            \"companyName\": \"Vm-Med\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694499615268,\n            \"dateOfPosted\": 1668689593252,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4815979,\n                    \"lon\": -73.6004244\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Sherbrooke O, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CALL CENTER AGENTDEPARTMENT Breast Center – Appointment CenterEMPLOYMENT STATUS Permanent, Full-time – 40 hours per weekBENEFITS Vacation, Flex Days, Group InsuranceSUPERVISOR Supervisor, Call CenterWe are looking for a dynamic individual, with an interest in helping our patients understand the service offering of our clinic, and ultimately helping to schedule appointments with our physicians.The primary responsibilities of the Call Center Agent will be the following:Aid patients in gaining a complete understanding of our clinic service offering, including information regarding pre-appointment procedures and fee structureAnswer to patient inquiries (telephone, email or web chat)Create and update patient files in the electronic medical record, MedeSyncSchedule patient appointments with our physiciansAdditional responsibilities include:Uploading (scanning) medical results and/or referrals into respective patient’s electronic medical recordPeriodic re-booking or re-organization of physician schedulesConducting outbound calls to follow-up on various advertising campaignsRequirements:Bilingual with a Bachelor’s DegreeProficiency in MS Outlook, MS Word and MS ExcelKnowledge of MedeSync is an assetStrong interpersonal and communication skills, and exceptional organizational skillsAbility to take initiative, work independently and with minimal supervision and demonstrated ability to work in a small team settings-------------------------------------------------------AGENT DU CENTRE D’APPELSDÉPARTEMENT Centre du sein – Centre de rendez-vousSTATUT D’EMPLOIS Permanent, temps plein – 40 heures par semaineAVANTAGES Vacances, jours flexibles, assurance collectiveSUPERVISEUR Superviseur, Centre de rendez-vousNous recherchons une personne dynamique, intéressée à aider nos patients à comprendre l'offre de services de notre clinique, et à les aider à prendre rendez-vous avec nos médecins.Les principales responsabilités de l’agent du centre d’appels seront les suivantes:Aider les patients à acquérir une compréhension complète de l'offre de services de notre clinique, y compris des informations concernant les procédures préalables au rendez-vous et la tarification;Répondre aux demandes de renseignements des patients (téléphone, courriel ou chat en ligne);Créer et mettre à jour les dossiers des patients dans le dossier médical électronique, MedeSync;Planifier les rendez-vous des patients avec nos médecins;Les responsabilités supplémentaires comprennent:Téléchargement (numérisation) des résultats médicaux et/ou des références dans le dossier médical électronique du patient;Réorganisation périodique de la journée des médecins;Effectuer des appels sortants pour assurer le suivi de diverses campagnes publicitaires;ExigencesBilingue avec un baccalauréat est préférableMaîtrise de MS Outlook, MS Word et MS Excel.Connaissance de MedeSync serait un atoutFortes compétences interpersonnelles en communication et en organisationApte à prendre des initiatives et à travailler de manière autonome avec un minimum de supervision; aptitude démontrée à travailler au sein d’une petite équipeType d'emploi : Temps plein, PermanentSalaire : à partir de 18,00$ par heureAvantages :Assurance Maladie ComplémentaireÉvénements d'EntrepriseHoraires flexiblesHoraires de travail :8 HeuresEducation:DCS / DEC (preferred)Language:French (required)English (required)Lieu du poste : En présentielDate de début prévue : 2022-11-14\",\n            \"location\": \"Sherbrooke Street West, Montréal, QC\"\n        },\n        {\n            \"id\": \"77EF1B511BF1F3063FFED30E3CF8AE8A\",\n            \"cityName\": \"228 12c St N, Lethbridge, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b1d8f734d4475037\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Group Maxvizer\",\n            \"rowSalary\": \"$55,000–$60,000 a year\",\n            \"date\": 1694498259746,\n            \"dateOfPosted\": 1694207946604,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 55000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    55000.0\n                ],\n                \"range\": {\n                    \"gte\": 55000.0,\n                    \"gt\": null,\n                    \"lte\": 55000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service role handles calls from new and existing business clients regarding a variety of requests in an efficient and effective manner. A successful rep uses knowledge of products and services and excellent customer service skills to address issues, provide support, offer information, and place orders to keep customers satisfied and retain business. We are looking to hire immediately and we hope to see all 1st year employees receive a promotion between 6 months and 1 year of tenure.The Perks:Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingRequirements:An upbeat, positive attitudeWillingness to go that extra mile for your team and our customersMath/Accounting skills are a plus!Must have experience with Microsoft/ExcelPrior customer service/sales experience is a plusEssential Functions:Book zoom meetings and educate/troubleshoot questions with clienteleWork cooperatively between customers, service providers and other departmentsCommunicate with customers and vendors in a clear, effective, and professional mannerReceive customer inquiries, issues, or challenges and follow-through to resolutionBasic filing and data entryJob Types: Full-time, PermanentSalary: $55,000.00-$60,000.00 per yearBenefits:Automobile allowanceCommuter benefitsDental careEmployee assistance programExtended health careHousing allowanceOn-site parkingProfit sharingWellness programFlexible Language Requirement:French not requiredSchedule:Day shiftSupplemental pay types:Bonus payCommission payOvertime payRetention bonusSigning bonusTipsEducation:Secondary School (preferred)Work Location: Hybrid remote in Lethbridge, AB T1H 2M7\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"CEC02E4D6D0EA8A85DB9D97667801F12\",\n            \"cityName\": \"12 Dominion Cres, Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0e1734e291c111d3\",\n            \"jobName\": \"Tire Wholesale Customer Service Representative\",\n            \"companyName\": \"Andy's Tire | Scotia Tire\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694496805213,\n            \"dateOfPosted\": 1691541130021,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6421211,\n                    \"lon\": -63.6878682\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Beechville\",\n                \"formattedAddress\": \"Dominion Crescent, Beechville, NS B3T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dominion Cres, Halifax, NS\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ENJOY A PERMANENT, FULL TIME POSITION WITH ALL BENEFITS IN ATLANTIC CANADA'S FASTEST GROWING TIRE WHOLESALE BUSINESSAPPLICANTS MUST CURRENTLY RESIDE IN THE HRM AREA OF NOVA SCOTIAThe Wholesale Customer Service Representative is responsible for managing 3 tire distribution centers, customer complaint resolutions, processing orders to the distribution center.Key Accountabilities· Provide a high level of customer service in line with our company goals· Support and communicate sales prospect to our wholesale division.· Resolve customer complaint and inquiries.· Maintain a sales call calendar and attend monthly sales meetings.· Follow the training provided and mentor fellow teammates to foster a learning environment.· Maintain a high level of professionalism to represent a positive company image.Requirements· Experience in customer service or sales.· Experience in the automotive industry.· Strong knowledge of Microsoft Office products, including Excel, MS Word, office 365, and Outlook.· Excellent verbal, written communication and influencing skills.· High level of accuracy and attention to detail.· Ability to work in a fast-paced working environment.· Experience with ERP, CRM, or data management systems.· Team player attitude.· Prompt and courteous.· Enthusiastic personality.Job Types: Permanent, Full-timeSalary: From $18.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingStore discountVision careSchedule:8 hour shiftMonday to FridayWeekends as neededCOVID-19 considerations:All Covid-19 precautions are being adhered toExperience:customer service: 5 years (required)Tire/Auto Industry: 2 years (required)Language:French (preferred)Licence/Certification:Halifax area home address (required)Work Location: In person\",\n            \"location\": \"Dominion Cres, Halifax, NS\"\n        },\n        {\n            \"id\": \"01E378DB6801BA288F0C9B00EED88000\",\n            \"cityName\": \"7715 Cumberland St, Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=70fa76f12c973870\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Samimi Enterprise\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694496250638,\n            \"dateOfPosted\": 1694294695772,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Need a honest, reliable male person for job of a cashier at the convenience storeHigh school educationNo experience needed. Training will be givenJob Type: Part-timePart-time hours: 17 per weekSalary: $16.75 per hourFlexible Language Requirement:French not requiredShift:4 hour shiftAfternoon shiftEvening shiftWork setting:Convenience storeWork Location: In personExpected start date: 2023-09-15\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"ED9F0A321C34A02F9B75223C60159940\",\n            \"cityName\": \"ALLEN'S ONE STOP in Grand Bay East, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=49e28ad4c84c5bb6\",\n            \"jobName\": \"Cashier Customer Service Representative\",\n            \"companyName\": \"Allen'S One Stop\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694496222913,\n            \"dateOfPosted\": 1689721636502,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.5853063,\n                    \"lon\": -59.16756650000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Channel-Port aux Basques\",\n                \"formattedAddress\": \"Grand Bay East, Channel-Port aux Basques, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grand Bay East, NL Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usALLEN'S ONE STOP is a small business in Grand Bay East, NL A0N 0C2. We are professional, agile, and our goal is to PROVIDE THE BEST CUSTOMER SERVICE IN A CLEAN WORKING ENVIRONMENT.Our work environment includes:Flexible working hoursOn-the-job trainingWe are looking for a friendly and reliable Customer Service Associate / Cashier to join our team. The successful candidate will be responsible for greeting customers, providing assistance with product selection, processing payments, and ensuring that the store is clean and organized. The ideal candidate will have excellent customer service skills, a positive attitude, and an ability to work in a fast-paced environment.Responsibilities:Greet customers in a friendly and professional manner.Assist customers with inquiries and purchases.Process payments and refunds accurately and efficiently.Maintain a clean and organized work area.Follow store policies and procedures regarding customer service, cash handling, and safety.Provide excellent customer service to ensure customer satisfaction.Job Type: Full-timeSalary: From $15.50 per hourBenefits:Dental careVision careFlexible Language Requirement:French not requiredShift:8 hour shiftWork setting:Convenience storeAbility to commute/relocate:Grand Bay East, NL A0N 0C2: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Grand Bay East, NL\"\n        },\n        {\n            \"id\": \"4080E730EE37FB1B3E23DD13BBA84CD2\",\n            \"cityName\": \"218 Industrial Park Crescent, Sault Ste. Marie, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=52a3ce7ea83e2ec0\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Superior Tile & Floor\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694495624252,\n            \"dateOfPosted\": 1668799819872,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.5136494,\n                    \"lon\": -84.33575259999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sault Ste. Marie\",\n                \"formattedAddress\": \"Sault Ste. Marie, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Algoma District\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sault Ste. Marie, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Duties of the successful candidate-providing exceptional customer service and sales to customers in choosing flooring for their homes, some flooring knowledge would be an asset, great communication skills, some Sage knowledge, organize show room, purchasing, receiving orders, other duties assigned. Must be organized, have time management skills, and be able to multi-task.Job Type: Full-timeSalary: $16.00-$20.00 per hourBenefits:Dental careVision careSchedule:8 hour shiftAbility to commute/relocate:Sault Ste. Marie, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Sault Ste. Marie, ON\"\n        },\n        {\n            \"id\": \"D96C710CEB1BF5F7C271B9EFB06D5791\",\n            \"cityName\": \"2000 Boul Saint-Régis, Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a4ebcaa3d0fa6d7f\",\n            \"jobName\": \"Customer Service Representative/Inside Sales\",\n            \"companyName\": \"Amacor\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694494766841,\n            \"dateOfPosted\": 1691600918313,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.488025,\n                    \"lon\": -73.7817139\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Boul Saint Régis, Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer service representative / Inside Sales:Amacor is seeking a dynamic, detailed orientated CSR/Inside sales Representative.Located in the West Island close to Highway 40 and Blvd Des Sources.Amacor provides its clients with full-service garment embellishment that includes Silk-screening, Embroidery, Patches and a host of Digital technologies.Responsibilities:Responding promptly to customer inquiriesCollaborate with several departments to address client’s needsEnsure to have all required information to process ordersPrepare quotes, input information and process ordersOrder entry into CRM databaseKeeping records of customer interactions, transactions and commentsAssist sales team with administrative dutiesFollow-up on order statusAnswer customer inquiries about orders via phone or emailSkills:High school diploma or equivalent2 years related work experience preferredBilingual (fluent French and English both written and verbal)Great communicator in person and via telephone and emailProblem solver-ConfidentTeam player as it is a collaborative open environmentMust work well under pressure in a fast-paced environmentAbility to prioritize many tasksComputer skills: Excel-Outlook-WordReprésentant du service à la clientèle / Ventes internes :Amacor est à la recherche d'un représentant RSE/ventes internes dynamique et détaillé.Situé dans le West Island près de l'autoroute 40 et du boulevard Des Sources.Amacor fournit à ses clients un service complet d'embellissement de vêtements qui comprend la sérigraphie, la broderie, les écussons et une multitude de technologies numériques.-------------------------------------------------------------------------------Représentant du service à la clientèle / Ventes internes :Amacor est à la recherche d'un représentant RSE/ventes internes dynamique et détaillé.Situé dans le West Island près de l'autoroute 40 et du boulevard Des Sources.Amacor fournit à ses clients un service complet d'embellissement de vêtements qui comprend la sérigraphie, la broderie, les écussons et une multitude de technologies numériques.Responsabilités:- Répondre rapidement aux demandes des clients- Collaborer avec plusieurs départements pour répondre aux besoins des clients- S'assurer d'avoir toutes les informations nécessaires pour traiter les commandes- Préparer les soumissions, saisir les informations et traiter les commandes- Saisie des commandes dans la base de données CRM- Tenir des registres des interactions, des transactions et des commentaires des clients- Assister l'équipe de vente dans les tâches administratives- Suivi de l'état des commandes- Répondre aux demandes des clients sur les commandes par téléphone ou par courrielCompétences:- Diplôme d'études secondaires ou équivalent- 2 ans d'expérience de travail connexe préférable- Bilingue (français et anglais courants tant à l'écrit qu'à l'oral)- Excellent communicateur en personne et par téléphone et courriel- Résolveur de problèmes - Confiant- Avoir un esprit d'équipe car il s'agit d'un environnement collaboratif ouvert- Doit bien travailler sous pression dans un environnement en évolution rapide- Capacité à prioriser de nombreuses tâches- Compétences informatiques: Excel-Outlook-WordBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingSchedule:8 hour shiftMonday to FridayEdit jobOpenView public job pageJob Types: Permanent, Full-timeSalary: $18.00-$22.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Boul Saint-Régis, Dorval, QC\"\n        },\n        {\n            \"id\": \"0D2F6D720E596778BB6FF8EAD51B6745\",\n            \"cityName\": \"130-144 Martin Ross Ave, North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8aaa172cf93cd7de\",\n            \"jobName\": \"Customer Service/Order Fulfillment\",\n            \"companyName\": \"Tinlids Inc.\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694494753333,\n            \"dateOfPosted\": 1694494753148,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7739731,\n                    \"lon\": -79.474792\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Martin Ross Ave, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"If you are interested in the world of Children’s Literature, this is the place to work! Tinlids is a Canadian children’s and young adult bookseller dedicated to providing exceptional selection and acquisition expertise to Canadian schools, public libraries and parents. We have a large warehouse in North Toronto. Visit our website for more details, tinlids.caThe successful candidate will be part of a team involved in picking, packing, and shipping book orders for schools and libraries, for the largest reading program in Canada. Training is provided. This position is a 3-month contract, with the possibility of being hired full time permanent.Requirements:Fluency in verbal/written EnglishPhysically fit, able to lift boxes of up to 45 lbs.Ability to work some weekends and evenings on short-noticeOther skills that would be an asset:Exceptional customer service skillsProfessional telephone mannersStrong computer skillsAvailability to attend out-of-town events (1-2 days, some overnight)Drivers licence/own carStart date: October 10, 2023Inclusion & DiversityTinlids is an equal opportunity employer with a commitment to hiring and retaining a diverse workforce. We encourage and welcome applications from all intersectional walks of life.Job Types: Full-time, ContractContract length: 3 monthsSalary: $19.00 per hourBenefits:On-site parkingSchedule:Monday to FridayWeekends as neededWork Location: In personExpected start date: 2023-10-10\",\n            \"location\": \"Martin Ross Ave, Toronto, ON\"\n        },\n        {\n            \"id\": \"0654250F400EF169CEE032C80AAB0C76\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8163ed4f70b86285\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"Helping Hands Family Movers Inc\",\n            \"rowSalary\": \"$23.50 an hour\",\n            \"date\": 1694494572319,\n            \"dateOfPosted\": 1693648335072,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Arrange for refunds and credits Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Receive and log complaints Receive credit and employment applications Receive payments Sell merchandise Advise clients on advertising or sales promotion strategies Answer written and oral inquiries Assist in the preparation of brochures, reports, newsletters and other material Computer and technology knowledge MS Excel MS Outlook MS Windows MS Word MS PowerPoint Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Judgement Screening questions Are you currently legally able to work in Canada?Work Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"85E543801555750EBF86ACC2E5C5CED0\",\n            \"cityName\": \"MedicVan Patient Transfer Services Inc. in Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=31ff2d1c51bc1198\",\n            \"jobName\": \"Dispatcher/Customer Service\",\n            \"companyName\": \"Medicvan Patient Transfer Services Inc.\",\n            \"rowSalary\": \"$23–$24 an hour\",\n            \"date\": 1694494504223,\n            \"dateOfPosted\": 1670374159886,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.798329,\n                    \"lon\": -79.5079073\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Concord, Vaughan, ON L4K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"MedicVan Patient Transfer Services Inc. is a privately owned and operated Canadian company with over 19 years of experience in non-emergency patient transportation. We operate in Toronto and theGTA and specialized in bed to bed stretcher or wheelchair transportation services.Position: Weekend Dispatcher Qualifications and skills required: - High school graduation- Excellent verbal and written English- Kind, friendly, accommodating, willing to help personality- Excellent customer service experience and communication skills- Professional telephone manner- Ability to multitask- Good organization and time management skill- Stress management skill and ability to work under pressure- Knowledge of Mc Office, Excel and Outlook- Knowledge of the city of Toronto and the GTA- Knowledge of internet use, Google Map use- Dispatching experience in trucking, taxi or similar industry would be preferred- Experience in Logistics would be preferredDuties and Responsibilities:- Answering multiple phone calls- Schedule bookings and forward information to crew members- Respond to costumer’s inquiries, by email or over the phone- Ensure crews are on scheduled time- Communicate with clients, hospitals and other health care facilities in a timely and professional manner- Follow up calls with existing client- Prepare paperwork for crews- Scheduling crews- Faxing, mailing, emailing- Other office and clerical duties as neededIf you think you are right for our team, send your application to us by email.Job Types: Part-time, PermanentPart-time hours: 15-20 per weekSalary: $23.00-$24.00 per hourBenefits:On-site parkingFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftDay shiftHolidaysMorning shiftWeekends onlyAbility to commute/relocate:Concord, ON: reliably commute or plan to relocate before starting work (required)Experience:dispatching: 3 years (required)Work Location: In person\",\n            \"location\": \"Concord, ON\"\n        },\n        {\n            \"id\": \"36306495A5798D96EAE479D3AE09914E\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e2a9d8f9465f4fab\",\n            \"jobName\": \"Telus Customer Service Representative - Entry Level Field Marketing\",\n            \"companyName\": \"Alarm Guard Security Services Inc.\",\n            \"rowSalary\": \"$50,000–$60,000 a year\",\n            \"date\": 1694494168155,\n            \"dateOfPosted\": 1694494167959,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Alarm Guard has been helping protect thousands of families since 2003. We are a well-respected company with the support of the most trusted name in North America – ADT Security and now a TELUS trusted provider. Our goal is to provide customers, with a premiere service experience from start to finish. From our honest and friendly representatives to our licensed and trained technicians we commit to doing our best to make sure customers are taken care of – above and beyond.Join Alarm Guard Security, the largest TELUS trusted provider in North York, Toronto. We offer promotional Telus Smart Home protection systems and Telus Telecommunication solutions at no cost to selected clients. We are seeking highly motivated and passionate individuals to join our dynamic Sales & Marketing team.What you will do:Travel across different locations in Toronto and Ontario with a company-provided vehicle. Communicate the value of safety and security to customers. Review customer requirements and provide consultative solutions. Advise and recommend home automation and protection needs. Stay knowledgeable about products and services. Identify customer needs and execute effective strategies. Build positive relationships with colleagues.CompensationInitially compensation will be based on performance in the Field and determined by the number of sales closed by your Team Leader. After your first 8 sales within a 30 - 45 days time period, you will be eligible for BONUSES and the positions of Field Manager (no driver's license needed) or Manager (G2/G driver's license preferred): Yearly package ranging between $50k-$60k /year (base pay + commissions) once you are promoted to these rolesRequirements during training:Available Monday to Friday from 1:00 PM-9:00 PM. (Full-Time Position) An individual with a strong passion for sales. (Future Entrepreneur) A natural ability to communicate confidently. Highly skilled in utilizing company-issued iPhones, iPads, and CRM systems to effectively manage and record daily sales activities. Possesses outstanding interpersonal abilities and excels in providing exceptional customer service.Benefits:Extensive training and career growth opportunities. Travel opportunities. Tools for success: iPad, Business cards, Telus Branded clothing, ID badge, Salesforce CRM. Uncapped bonuses and incentives. Fun and lively work culture with office facilities.Join us and achieve your goals! Apply now.\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"1DA29D21E89276726A0508240B2FF9A0\",\n            \"cityName\": \"1129 Wentworth Street West, Oshawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7be2227addadedbe\",\n            \"jobName\": \"Inside Sales/Customer Service\",\n            \"companyName\": \"Aartech Canada Inc\",\n            \"rowSalary\": \"$35,000 a year\",\n            \"date\": 1694493604734,\n            \"dateOfPosted\": 1694493604546,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.869777,\n                    \"lon\": -78.8525106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oshawa\",\n                \"formattedAddress\": \"Wentworth St W, Oshawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oshawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Aartech Canada is looking for a confident, outgoing, tenacious and professional personality to join our team as an inside sales representative! This is a B2B position making warm and cold calls to existing clients, developing new leads, providing stellar customer service, providing quotations, processing customer orders and aiding in product selection.Based in Oshawa, and in business since 2002, Aartech Canada distributes smart home & security products across Canada. We sell a wide range of smart home automation equipment, security systems, security cameras, audio/video equipment as well as electrical products and lighting controls.The ideal candidate will have existing B2B sales experience and a proven track record of sales success with a technical aptitude. You must be a fast learner, self starter, technically inclined, and be motivated to learn everything you can about our customers and products lines. Bilingual (French/English) is an asset.We offer a competitive salary and benefits with a no-cap commission incentive.SALARY + COMMISSIONJob Type: Full-timeSalary: $35,000.00 per yearBenefits:Casual dressDental careLife insuranceOn-site parkingPaid time offStore discountVision careSchedule:8 hour shiftDay shiftMonday to FridaySupplemental pay types:Commission payAbility to commute/relocate:Oshawa, ON L1J 8P7: reliably commute or plan to relocate before starting work (required)Application question(s):Why are you the ideal candidate for this position?Experience:Sales: 1 year (preferred)Customer Service: 1 year (preferred)Work Location: Hybrid remote in Oshawa, ON L1J 8P7Expected start date: 2023-09-25\",\n            \"location\": \"Wentworth Street West, Oshawa, ON\"\n        },\n        {\n            \"id\": \"34A0F493E1DDAD84D3EE3EC1F8628EED\",\n            \"cityName\": \"1000 Alexander Ave, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=219b09472ef66b8a\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Bakemark\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694493578230,\n            \"dateOfPosted\": 1694493578059,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.911896,\n                    \"lon\": -97.1687074\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Alexander Ave, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"PURPOSE OF THE JOBProvides Customer Service to all customers or to a specific customer base/territory. In a hands on fashion, assists the outside sales force with sales-related issues and/or inquiries and follows BakeMark’s guiding principals of Best Practice process improvements and cultural attitude to meet or exceed objectives.This is accomplished by performing the following principle/essential accountabilities:PRINCIPAL/ESSENTIAL ACCOUNTABILITIES1. INSIDE SALES- Provide exceptional Customer Service in accordance with policies, guidelines, and procedures established by Executive Management.- Takes customer orders via phone and fax, and enter orders into company software.- Invoices orders throughout the day, as required.- Works with the Customer Service/Office Supervisor to respond to customer issues, e.g. short shipments, rush deliveries, etc.- Consistently increases personal knowledge of new and existing items, customers, pricing, routing, specials and sales techniques.- Participates in call-out programs, as required.- Upsells to all customers in an effort to increase sales.- Communicates in an efficient manner with the operations department / warehouse staff regarding truck routing, delivery schedules and order preparation.- Assists in coordinating key customer accounts on a daily basis to ensure service levels are maintained at the highest levels.2. CUSTOMER FOCUS- Maintains personal relationships with key accounts. Maintains a proactive, visible relationship with entire customer base.- Follows up on all customer requests and questions to ensure appropriate response is made and customer is satisfied.- Treats all customers (both internal and external) with dignity, respect, courtesy and kindness.- Accepts responsibility to consider how actions affect our customers and our company.3. PERFORMS OTHER DUTIES AS ASSIGNEDQUALIFICATIONSThe individual must be able to perform each principle and essential accountability satisfactorily. Customer Service experience and a proven track record in delivering results is expected, and a thorough knowledge and ability to read, interpret, and understand product information is desirable. The ability to transfer oral information to a written form accurately is an absolute requirement. A positive attitude is a must. Needs ability to be a part of an effective team.Prior experience should be in bakery ingredients or food-related business. Beverage industry experience may apply. Previous customer service roles are beneficial. Ability to interact effectively at all organization levels is required. Computer skills are required. A well-rounded lifestyle and sense of humor, with an appreciation for diversity can be advantageous. Unquestionable ethical conduct in both business leadership and personnel dealings are an absolute requirement.Ability to define and resolve problems, collect data, establish facts, and draw valid conclusions.EDUCATION and/or EXPERIENCEHigh School degree required, with five to seven years of related experience and/or training.COMMUNICATION SKILLSAbility to read and understand product information and use this knowledge to provide information to customers. Ability to effectively present information and respond to questions from groups of executives, managers, clients, customers, and the general public.PHYSICAL DEMANDS/ENVIRONMENTThe physical demands described herein are representative of those that must be met by an employee to successfully perform the essential functions of this job. Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions. While performing the duties of this job, the employee is regularly required to sit, talk, and hear. The employee is occasionally required to stand; walk; use hands to write and use a computer keyboard. Specific vision abilities required by this job include close vision, distance vision, and ability to adjust focus. The noise level in the work environment is usually moderate.Job Types: Full-time, PermanentSalary: From $18.00 per hourBenefits:Dental careExtended health careOn-site parkingPaid time offVision careSchedule:8 hour shiftDay shiftMonday to FridayEducation:Secondary School (preferred)Experience:Customer service: 2 years (preferred)Shift availability:Day Shift (required)Ability to Commute:Winnipeg, MB R3E 3M1 (required)Work Location: In person\",\n            \"location\": \"Alexander Ave, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"BD835D0F151CD0750F9FE6C0B0D96D33\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ee1f3f3404f07e1e\",\n            \"jobName\": \"Customer Service/Admin Support\",\n            \"companyName\": \"Allstyle Retrofit\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694493492686,\n            \"dateOfPosted\": 1694493492496,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service / Administrative Support:Allstyle Retrofit is a Canadian leader in the kitchen cabinet door retrofit business and is looking to add a Customer Service / Admin Support associate to our growing team.The ideal candidate will focus on supporting the team with great customer service, assisting with office administration duties, providing after sales support to our valued customers and applying strong communication skills throughout every task.Responsibilities include:Providing help and assistance to customers using Allstyle’s products or servicesCommunicating courteously with customers by telephone, email and in-personProviding assistance and support to resolve customers' challengesKeeping accurate records of discussions or correspondence with customers; entering records into the CRMImproving customer service procedures, policies and standards and working with management to discuss possible improvements to customer serviceProcessing invoices and receiving payments from customersPerforming general administrative tasks as requiredQualifications:A strong command of the English language with effective communication skills and professionalismSales and customer service orientedProven track record of meeting and exceeding customers' expectationsSense of urgency with diligent follow up skillsAbility to thrive under pressure and in a fast-paced environmentProblem solving and time management skillsExcellent computer skills in MS ExcelInterest and experience in the kitchen and cabinet industry an assetMinimum 3 years of experience is required; experience in kitchen, cabinetry and design an assetWork Hours: M-F 9-5Compensation: Hourly compensation / team bonusJob Types: Full-time, PermanentJob Type: Full-timeSalary: $20.00-$24.00 per hourSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payExperience:customer service: 3 years (preferred)Language:Fluent English (required)Work Location: In person\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"271AF5B73F13BEC6FEA76BE59D17362B\",\n            \"cityName\": \"Ajax, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6d8f56be293c41ab\",\n            \"jobName\": \"Customer Service And Fulfillment Coordinator\",\n            \"companyName\": \"Tiabhuva.com\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694493473174,\n            \"dateOfPosted\": 1694493472992,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8508553,\n                    \"lon\": -79.0203732\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ajax\",\n                \"formattedAddress\": \"Ajax, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ajax\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ResponsibilitiesAssist with customer service ticketsAccurately prepare and complete orders for delivery or pickup according to schedule (load, pack, wrap, label, ship)Organize stocks and maintain inventoryTrain additional support staff that are needed during peak periodsContribute ideas on ways to improve or optimize proceduresRequirements * Good organisational and time management skillsExcellent communication skillsTeam playerBasic computer skills ie Word, Excel, Web BrowserHigh school diploma or equivalentThis is an entry level (all training will be provided) Full time position paid hourly ($15-$20/hr depending on experience) based in Ajax, ON.Job Types: Full-time, PermanentSalary: $18.00-$20.00 per hourSchedule:8 hour shiftDay shiftMonday to FridayEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In personApplication deadline: 2023-09-22Expected start date: 2023-10-02\",\n            \"location\": \"Ajax, ON\"\n        },\n        {\n            \"id\": \"E7DB7D0786CD1721210B3BD4C67DBAE8\",\n            \"cityName\": \"3006 Boul St Charles, Kirkland, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a8c37dcf1a095e99\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Poke Monster\",\n            \"rowSalary\": \"From $14 an hour\",\n            \"date\": 1694493127205,\n            \"dateOfPosted\": 1633262844269,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4542258,\n                    \"lon\": -73.8606454\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kirkland\",\n                \"formattedAddress\": \"Bd Saint-Charles, Kirkland, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kirkland\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"HIRING FULL TIME OR PART TIMEWe are looking for Kitchen Helper/Counter Attendants, who are hard-working, dedicated, and willing to learn in the kitchen!Take customer orders, accept payment and serve customers at food counters. They may also prepare, heat, and finish cooking simple food items.- Use a cash register to take customer orders- Answer customer questions about menu items and serve customers at counters- Ensure excellent packaging- Maintain the store cleanJob Types: Full-time, Part-time, PermanentSalary: From $14.00 per hourBenefits:Discounted or free foodSchedule:10 hour shift12 hour shift8 hour shiftDay shiftMonday to FridayNight shiftWeekend availabilitySupplemental pay types:TipsWork remotely:No\",\n            \"location\": \"Boul Saint-Charles, Kirkland, QC\"\n        },\n        {\n            \"id\": \"741F3472EA79FC2221D5871A36312F83\",\n            \"cityName\": \"Riverview, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6016e8f399808b03\",\n            \"jobName\": \"Call Center Agent\",\n            \"companyName\": \"Epsilon Solutions\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694492129977,\n            \"dateOfPosted\": 1656368391861,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.06125369999999,\n                    \"lon\": -64.80521829999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Riverview\",\n                \"formattedAddress\": \"Riverview, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Albert County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Riverview\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Title: English- Customer Care RepresentativeLocation: Riverview, NBJob Type: FulltimeJob Description:No of Week Off (Fixed or Rotational) - 2 (Rotational)WFO / WFH / Hybrid – WFH & WFOShift Timings (Fixed or Rotational) - 8,5 hour shiftHours of operation 7 AM EST to 12 AM EST ( rotational)Customer Service Associate required to answer incoming calls from customers who need assistance placing orders, seeking information or who have service related inquiries.Daily tasks and responsibilities:Customer service oriented mindsetAbility to work with multiple computer programs operating simultaneously, including Microsoft Word and Excel.Able to type a minimum of 30 words per minute.Understands the needs of the luxury goods consumer and be able to implement Company’s customer service policy in a personalized manner.Utilize appropriate sales techniques to build good customer relationships and enhance the buying experience for the customer.Provide assistance when clients are ordering furniture or appliances.Set appropriate expectations for the customer and exceed customer commitments.Follow-up on issues for customers until resolution is reached.Follow the scripts provided by the CompanyRespond in an unscripted manner, thus allowing individuals to successfully resolve all customer issues, which necessitates that each such Agent demonstrate patience, empathy, sound judgment, negotiation and balanced decision making skills. Supplier shall ensure that Agents contribute a positive, energetic and organized approach to performing the Services.Requirements/experience: Previous call center experience in a contact center is an assetFluent (reading, writing, speaking) in English and French as required by the positionAbilities and talents recommended for job success:Excellent organizational skillsExcellent communication skills, including written and verbal.Demonstrated analytical skills; proven problem solving abilities.Strong interpersonal skills with a focus on teamwork and ability to foster/manage relationshipsJob Types: Full-time, PermanentPay: $15.50 per hourBenefits:Dental careExtended health careVision careSchedule:8 hour shiftAbility to commute/relocate:Riverview, NB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call Center: 1 year (required)\",\n            \"location\": \"Riverview, NB\"\n        },\n        {\n            \"id\": \"2E5727171C025277DD75D8C4A404102F\",\n            \"cityName\": \"1888 West Broadway, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=308b4f99e99584d0\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Le Coq Frit\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694490982491,\n            \"dateOfPosted\": 1666664114990,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.26376459999999,\n                    \"lon\": -123.14866\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Broadway, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"-serving-bussing-phone orders for take-out-POS system, 3rd party delivery tablet, payment processing-take-out prep for packaging orders-cleaning duties-various other related dutiesMust be able to work during weekday(Monday - Friday between 11-9pm)Job Types: Permanent, Part-timeSalary: From $16.00 per hourSchedule:HolidaysMonday to FridayMorning shiftSupplemental pay types:TipsCOVID-19 considerations:Required to wear a mask. Sanitize surfaces after use.\",\n            \"location\": \"Broadway WR\"\n        },\n        {\n            \"id\": \"58AABE8C5686594A2C8EDFA8DA90B059\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fdd2efb69d71bb80\",\n            \"jobName\": \"Customer Service Representative - Entry Level Field Marketing\",\n            \"companyName\": \"Alarm Guard Security Services Inc.\",\n            \"rowSalary\": \"$50,000–$60,000 a year\",\n            \"date\": 1694490100770,\n            \"dateOfPosted\": 1694490100595,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Alarm Guard has been helping protect thousands of families since 2003. We are a well-respected company with the support of the most trusted name in North America – ADT Security and now a TELUS trusted provider. Our goal is to provide customers, with a premiere service experience from start to finish. From our honest and friendly representatives to our licensed and trained technicians we commit to doing our best to make sure customers are taken care of – above and beyond.Join Alarm Guard Security, the largest TELUS trusted provider in North York, Toronto. We offer promotional Telus Smart Home protection systems and Telus Telecommunication solutions at no cost to selected clients. We are seeking highly motivated and passionate individuals to join our dynamic Sales & Marketing team.What you will do:Travel across different locations in Toronto and Ontario with a company-provided vehicle. Communicate the value of safety and security to customers. Review customer requirements and provide consultative solutions. Advise and recommend home automation and protection needs. Stay knowledgeable about products and services. Identify customer needs and execute effective strategies. Build positive relationships with colleagues.CompensationInitially compensation will be based on performance in the Field and determined by the number of sales closed by your Team Leader. After your first 8 sales within a 30 - 45 days time period, you will be eligible for BONUSES and the positions of Field Manager (no driver's license needed) or Manager (G2/G driver's license preferred): Yearly package ranging between $50k-$60k /year (base pay + commissions) once you are promoted to these rolesRequirements during training:Available Monday to Friday from 1:00 PM-9:00 PM. (Full-Time Position) An individual with a strong passion for sales. (Future Entrepreneur) A natural ability to communicate confidently. Highly skilled in utilizing company-issued iPhones, iPads, and CRM systems to effectively manage and record daily sales activities. Possesses outstanding interpersonal abilities and excels in providing exceptional customer service.Benefits:Extensive training and career growth opportunities. Travel opportunities. Tools for success: iPad, Business cards, Telus Branded clothing, ID badge, Salesforce CRM. Uncapped bonuses and incentives. Fun and lively work culture with office facilities.Join us and achieve your goals! Apply now.(https://alarm-guard-security-services-inc.breezy.hr/p/b7a9cb80bb19-customer-service-representative-entry-level-in-field?state=published)\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"BBA3A9FB608190E9B4328F36F06183F3\",\n            \"cityName\": \"26 Colston Court, Richmond Hill, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=076ca75ed380f754\",\n            \"jobName\": \"Customer Service Advisor Richmond Hill\",\n            \"companyName\": \"Car House Auto Centre\",\n            \"rowSalary\": \"$18–$26 an hour\",\n            \"date\": 1694489924187,\n            \"dateOfPosted\": 1694489924011,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8523077,\n                    \"lon\": -79.4265607\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond Hill\",\n                \"formattedAddress\": \"Colston Ct, Richmond Hill, ON L4C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond Hill\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for energized, motivated and driven individuals to contribute.Responsibilities: Tire Sales, Mechanical Sales Collaborating with management and team to achieve sales in products/services as well as follow new instructions from team leader Maintaining a good store environment according to company’s standard Processing payments and handling all other cashier duties Providing excellent customer serviceQualifications: Must be fluent in English Flexible work hours and times in Canada Quick learnerSkills & Experience Required: Sale Leadership Skills Merchandising skills Exceptional customer service skills Responsible, organized Excellent communications and interpersonal skillsJob Types: Full-time, PermanentSalary: $18 to $26 (Depend on Experience)Experience: sales: 2-3 years (Preferred)Education: Minimum of High School Graduate and university degree (preferred)Please apply by email to helenJob Types: Full-time, PermanentSalary: $18.00-$26.00 per hourBenefits:Dental careExtended health careFlexible Language Requirement:French not requiredSchedule:8 hour shiftWork Location: In personExpected start date: 2023-09-30\",\n            \"location\": \"Colston Court, Richmond Hill, ON\"\n        },\n        {\n            \"id\": \"095423A6ADD7AF8107E59FA81C576562\",\n            \"cityName\": \"Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2cb9abc7444d62e7\",\n            \"jobName\": \"Customer Service And Office Administrator\",\n            \"companyName\": \"Craftsman Collision\",\n            \"rowSalary\": \"$42,000–$55,000 a year\",\n            \"date\": 1694488753796,\n            \"dateOfPosted\": 1694488753510,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1665898,\n                    \"lon\": -123.133569\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Richmond, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We're currently seeking a full-time, temporary Customer Service and Office Administrator at our Richmond location. We offer competitive wages ranging from $42,000 to $55,000 annually, and extended health and dental. The Customer Service and Office Administrator will provide exceptional customer service and support the Shop with operations initiatives and administrative duties. Craftsman Collision is the largest independently owned and operated auto body repair chain in Canada – but we’re also a family that cares about the people we work with. Are you ready to reach your full potential and build a fulfilling career- while having fun along the way? Then consider joining our team of more than 500 ambitious people who share our commitment to excellence. Customer ServiceInteracts with customers in a caring, friendly and professional manner and assists in clearly identifying the customers’ needs to relay to the rest of the team. Gathers all required information to pass along to estimator;Takes ownership of a customers’ concerns and issues until they are satisfied or until they are able to pass them on to the appropriate person;Answers phones, handles telephone enquiries, books appointments, makes appointment reminder calls and notifies customers of repair completion as directed;Greets customers as they walk in the door and helps ensure their wait time is agreeable;Signs customers in and out and collects all necessary payments;Helps customers to understand our processes and procedures by explaining in a clear, simple and respectful manner;Deals with all customer interactions promptly including monitoring of Production Dashboard in the Craftsman Management System (CMS) for alerts/correspondence as well as voicemail and email;Office AdministrationDownloads and prints assignments from insurance companies using Audatex and Mitchell and prepares new files for estimators;Manages the shop’s email inbox and forwards, distributes or files emails accordingly;Prepares monthly promotional and printing inventories and organizes replenishing as necessary;Orders all office supplies and printer toner cartridges;Input documents and new hourly employees into Dayforce.Arranges courier services when necessary;Supports in-shop training of new staff;Daily Bookkeeping DutiesUpdates CMS for arrived and delivered vehicles as changes occur;Closes POS machine, prints and posts the Deposit Journal. Prepares a bank deposit slip daily for any cash/cheques;Finalizes all work orders from previous day and bill insurance companies accordingly;Invoices parts/sublet/rental invoices relating to work orders via Purchase Orders and reviews any discrepancies;Posts any A/R cheques into Traverse A/R and reconciles any over/short payments;Enters invoices for non-trade payables (overhead) into Traverse A/P;Banking as required (at least weekly);Posts PO Journals and Non-Trade Transaction Journals as required;Monthly Bookkeeping DutiesPrepares all payable cheque runs (mid & month end). Prepares monthly log for Head Office for any aging A/P amounts;Reconciles Flat-Rate and Straight-Time hours with employees (with the help of Shop Manager) and posts the Flat-Rate Journal in CMS on a semi-monthly basis. Prepares manual cheques and ROE’s for any terminated hourly employees or for those on leave;A/R Collections on unpaid balances including sending statements to customers and preparation of monthly log for Head Office;Follows month-end procedures on the first day of every month and reviews monthly reports with Shop Manager;Reviews monthly ARA and MSP benefits statements for accuracy;Reconciles GL accounts 4920 (Other Income/Over-Shorts), 1130 (Employee A/R) and 1999 (Suspense);Performs year-end requirements as directed by Head Office.Other related duties as assigned.RequirementsMinimum of 3 years related experience in a fast-paced, team-oriented environmentPost-secondary courses in a related field an assetStrong interpersonal skills with customer service-oriented attitudeExperience with accounts receivable, accounts payable, and payroll preferredDemonstrated ability to multi-task and prioritize, effectively managing time with minimal supervisionDetail oriented and able to complete tasks with a high degree of accuracyStrong verbal, written and listening skillsProficient in Outlook, Word and Excel with the ability and willingness to learn new applicationsDemonstrated desire and aptitude for learning and developmentPrevious experience with payroll or HRIS systems preferred; Dayforce experience an assetA valid driver's license preferredMust be legally entitled to work in Canada with no restrictions Benefits When you’re part of the Craftsman Collision team, you get valuable perks like extended health, professional development, certified training and more. Your cover letter and resume should clearly outline how your qualifications & experience fit this position. We appreciate the time that all applicants have taken when applying for this position, however, only the candidates that are chosen for an interview will be notified by phone or email. No phone calls please.\",\n            \"location\": \"Richmond, BC\"\n        },\n        {\n            \"id\": \"A56D2EF53B3FAD148634712F198B9A1E\",\n            \"cityName\": \"Wipro in Moncton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b762c17b2a4552f9\",\n            \"jobName\": \"Customer Service (English, English And French, English And Spanish)\",\n            \"companyName\": \"Wipro\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694488605969,\n            \"dateOfPosted\": 1653412856917,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.0878165,\n                    \"lon\": -64.7782313\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"3 Roles available1. Loyalty Customer Support Analysts - Phone Support, 2 Shifts between 10am-8pm, Monday-Friday. Salary based on experience, up to 22$/hr2. Technical support roles for retail locations (Also phone support), on rotating 24/7 shift schedule, where alternating weekends are guaranteed. Salary based on experience, up to 22$/hr3. Customer Complaints - 10-8 Monday to Friday - Phone Support, 2 Shifts between 10am-8pm, Monday-Friday. Salary based on experience, up to 22$/hr. (Must be bilingual English and french)Full Benefits, competitive salary with opportunities to develop professionally.3 weeks vacation, paid sick leave. Flexible work/life balance.If you have any more questions, please apply and we'll be happy to answer them.Job Types: Full-time, PermanentSalary: $19.00-$22.00 per hourBenefits:Dental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offRRSP matchVision careSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayNight shiftWeekends as neededCOVID-19 considerations:Site operator has excellent cleaning practices in place. Ability to commute/relocate:Moncton, NB E1C 0J4: reliably commute or plan to relocate before starting work (preferred)Work Location: In person\",\n            \"location\": \"Moncton, NB\"\n        },\n        {\n            \"id\": \"B5886B4EAFF1B56F55FF849568EEF6D8\",\n            \"cityName\": \"Bella Coola, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4b1aeee4655057a6\",\n            \"jobName\": \"Clk 12r - Customer Service Representative\",\n            \"companyName\": \"Bc Public Service\",\n            \"rowSalary\": \"$52,803–$59,608 a year\",\n            \"date\": 1694487527323,\n            \"dateOfPosted\": 1694487527141,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.3721277,\n                    \"lon\": -126.7539346\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bella Coola\",\n                \"formattedAddress\": \"Bella Coola, BC V0T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Coast\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bella Coola\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 52803.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    52803.0\n                ],\n                \"range\": {\n                    \"gte\": 52803.0,\n                    \"gt\": null,\n                    \"lte\": 52803.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Posting Title  CLK 12R - Customer Service Representative  Position Classification  Clerk R12  Union  GEU  Work Options  On-Site  Location  Bella Coola, BC V0T 1C0 CA (Primary)  Salary Range  $52,803.18 - $59,607.79 annually  Close Date  9/25/2023  Job Type  Regular Full Time  Temporary End Date  Ministry/Organization  BC Public Service -> Citizens' Services  Ministry Branch / Division  Service Delivery/Service BC  Job Summary Apply your expertise and passion for innovation to this rewarding career opportunityMINISTRY OVERVIEWDedicated to making life better for British Columbians, the Ministry of Citizens’ Services (CITZ) delivers key services that people rely on. CITZ delivers accessible, multi-channel services, through a single-point-of-contact service approach to people in urban and rural communities through Service BC, and delivers the digital face of government at www.gov.bc.ca. CITZ also provides support for the expansion of high-speed internet connectivity throughout the province, leadership across government to modernize information management and technology resources, trusted data services to government agencies, prompt, and relevant responses to freedom of information requests, and statistical and economic research, information and analysis to businesses and the public sector. In addition, the ministry manages the Province’s real estate assets, technology systems and equipment, and leverages procurement to increase business opportunities and create rewarding jobs that contribute to local economies and benefit individuals, families, and communities.A service-focused organization, CITZ strives to be a great place to work, where all employees feel both engaged and motivated to do their best.DIVISIONAL OVERVIEWService BC is government’s chief provider of services to B.C. residents and businesses. The work of the division enables the design and delivery of accessible, responsive, and cost-effective services, making it easier for British Columbians and businesses to interact with government. Through a provincial network of 65 in-person offices and the Provincial Contact Center, Service BC provides approximately 300 government services for more than 40 partner ministries and agencies. Our team member’s unwavering commitment to an ethic of service has driven consistently high people and business satisfaction rates. In support of the division’s overarching goal of providing residents and businesses with seamless, multi-service access to government programs, the Division’s service offerings are marketed to partner ministries and the broader public sector to expand our continuum of services and leverage common platforms.Within Service BC, our vision is to deliver innovation, value, and service excellence to the people of British Columbia, with the aspirational goal of becoming a best-in-class public service delivery organization. Our people and our culture are important to us. As a team, we are motivated to deliver an excellent service experience to British Columbians, businesses, colleagues, peers, clients, and partners. We believe in being kind and helpful, and are committed to delivering “Service with Heart”.JOB OVERVIEWThe Service BC Customer Service Representative (CSR) maintains a positive, empathetic, and professional attitude when providing service and answering enquires. It requires the ability to identify and assess peoples’ needs to effectively and efficiently deliver an excellent customer service experience.The CSR provides services in-person, by phone, and through digital channels. The ability to provide clerical and administrative support such as data entry, reviewing applications for completeness, handling payments, and providing appropriate solutions, within government guidelines to a diverse population of people is essential to this role.Job Requirements:Minimum Grade 12 graduation or equivalent (GED).Experience providing inclusive customer service to diverse clienteles. Experience using digital applications to search for and record information. Preference may be given to applicants with one (1) or more of the following:Multiple years of experience in any of the above requirements.Experience providing in-person customer service.Experience providing customer service though phone or digital channels.Experience delivering customer service in a high volume, fast-paced, rapidly changing environment.Experience with conflict resolution and de-escalating situations.Experience providing services to a diverse population some of whom may be experiencing poverty issues, substance use, or mental health concerns.Experience maintaining administrative files and record keeping.Experience delivering service in a regulated or legislated environment following processes and procedures.Customer Service training and/or education.Experience handling financial transactions. Willingness Statements:Willingness to travel occasionally to provide relief coverage to other work sites (Service BC Centres, exam locations, etc.)Successful completion of security screening requirements of the BC Public Service, which may include a criminal records check, and/or Criminal Records Review Act (CRRA) check, and/or enhanced security screening checks as required by the ministry (Note: It is important that you read the job posting carefully to understand the specific security screening requirements pertaining to the position). For questions regarding this position, please contact melody.olsen@gov.bc.ca.About this Position: An eligibility list may be established to fill future temporary and permanent vacancies across the Ministry of Citizens' Services. This position has full time on-site requirements. Employees of the BC Public Service must be located in BC at the time of employment. Close to Tweedsmuir Park, Bella Coola sits in the Bella Coola valley and is a gateway to the Great Bear Rainforest, serving as a centre for the more remote communities in the area. Perfect for fishing, hiking and wildlife watching, Bella Coola is very close with its First Nations heritage, and communities such as the Nuxalkmc people live within the town.Working for the BC Public Service: The BC Public Service is committed to creating a diverse workplace to represent the population we serve and to better meet the needs of our citizens. Consider joining our team and being part of an innovative, inclusive and rewarding workplace. The Indigenous Applicant Advisory Service is available to applicants that self-identify as Indigenous (First Nations, status or non-status, Métis, or Inuit) seeking work or already employed in the BC Public Service. For guidance on applying and interviewing, please contact IndigenousApplicants@gov.bc.ca or 778-405-3452. The BC Public Service is an award-winning employer and offers employees competitive benefits, amazing learning opportunities and a chance to engage in rewarding work with exciting career development opportunities. For more information, please see What We Offer.How to Apply: Your application must clearly demonstrate how you meet the job requirements listed above.Cover Letter: NO - Please do not submit a cover letter as it will not be reviewed.Resume: YES - A resume is required as part of your application, however, it may not be used for initial shortlisting purposes.Questionnaire: YES - You will need to complete a comprehensive questionnaire to demonstrate how you meet the job requirements. Include all relevant information about your educational accomplishments and employment history including job titles, start and end dates (month and year) of your employment, and how you obtained your relevant experience. The questionnaire will take approximately 60 minutes to complete.Helpful tips, videos and more regarding the application process can be found on the Your Job Application page of MyHR. If you are experiencing technical difficulty applying, e-mail BCPSA.Hiring.Centre@gov.bc.ca, before the stated closing time, and we will respond as soon as possible.Additional Information: A Criminal Record Check (CRC) will be required. Applicants selected to move forward in the hiring process may be assessed on the Knowledge, Skills, Abilities and Competencies as outlined in the attached Job Profile located at the bottom of the posting. Applications will be accepted until 11:00 pm Pacific Standard Time on the closing date of the competition. Job Category  Administrative Services \",\n            \"location\": \"Bella Coola, BC\"\n        },\n        {\n            \"id\": \"8EB4F8FCA16ABB21F80ABEB21D976AC0\",\n            \"cityName\": \"Les entreprises Zouki's in Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2c47565b1eacb9e3\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Les Entreprises Zouki's\",\n            \"rowSalary\": \"From $14 an hour\",\n            \"date\": 1694487294462,\n            \"dateOfPosted\": 1632951651245,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6066487,\n                    \"lon\": -73.712409\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laval\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Provides a positive customer experience with fair, friendly, and courteous service. Registers sales on a cash register by scanning items, itemizing and totaling customers' purchases.Job Types: Full-time, Part-timeSalary: From $14.00 per hourSchedule:8 hour shiftDay shiftMonday to FridayWeekend availabilitySupplemental pay types:TipsWork remotely:No\",\n            \"location\": \"Laval, QC\"\n        },\n        {\n            \"id\": \"A3488F3408CDDF64C535BA8B5583D6AB\",\n            \"cityName\": \"3340 Mannheim Way, Windsor, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2c8bcc853414dd1d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Curry Reprographics Ltd.\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694487240482,\n            \"dateOfPosted\": 1694487240297,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.2819176,\n                    \"lon\": -82.9700313\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Windsor\",\n                \"formattedAddress\": \"Mannheim Way, Windsor, ON N8W, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Essex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Windsor\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative - Immediate Opening!Curry Reprographics is a specialty printing company offering high quality products with superior customer service. We are looking for a customer service representative to take orders by phone, email, or in-person, print documents to large printers and have hands-on throughout the process. Must be able to use a computer, Microsoft Office (including Excel) and have strong math skills. Graphic design software experience is an asset (e.g., Adobe Creative Suite).Full time, permanent position5 days a week - Monday to FridayValid Ontario G driver's license with a clean driver's abstractAbility to use personal vehicle for work is an assetMust be able to lift 50 lbs.Must be fluent (speak and write) in EnglishMust be a Canadian citizen with the ability to work in CanadaJob Type: Full-timeSalary: $19.00 per hourBenefits:Dental careLife insuranceOn-site parkingFlexible Language Requirement:French not requiredSchedule:Monday to FridayEducation:Secondary School (required)Language:English (required)Licence/Certification:Driving Licence (required)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Mannheim Way Unit A, Windsor, ON\"\n        },\n        {\n            \"id\": \"BDDC0001E94D64CE3D0622D64C48A09A\",\n            \"cityName\": \"1024 Victoria St, Petawawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=96b4fca33d4d8483\",\n            \"jobName\": \"Customer Service Representative - Personal Lines\",\n            \"companyName\": \"Mcdougall Insurance And Financial\",\n            \"rowSalary\": \"$40,000–$48,000 a year\",\n            \"date\": 1694486895341,\n            \"dateOfPosted\": 1694486895180,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.9017038,\n                    \"lon\": -77.2687347\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Petawawa\",\n                \"formattedAddress\": \"Victoria St, Petawawa, ON K8H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Renfrew County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Petawawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"McDougall Insurance is now the largest insurance brokerage in Eastern Ontario. We represent over 50 insurance companies, giving us the ability to offer optimal selection and competitive rates. Here at McDougall we have created an Employee Promise. The leadership of McDougall Insurance promises to foster an environment of support, empowerment and inclusion, while investing in our employee’s future with McDougall Insurance. In turn, our employees promise to treat others with dignity and respect and strive to approach each day with a positive attitude and willingness to learn. Together, we promise to deliver Legendary Service to our customers and apply the McDougall principals of Trust, Honesty and Integrity with a goal of building strong lasting relationships. The result is our staff is engaged, accountable and professional.At McDougall Insurance and Financial we offer our employees; a comprehensive benefits package, McDougall pension plan, staff appreciation days, social events, a branch-wide yearend bonus, a competitive salary and paid vacation time starting at 3 weeks.Our growing team is looking for a Customer Service Representative in Personal Lines to join our team in Petawawa, Ontario!Are you looking to start a new career? Do you have strong customer service skills? If so, this might be the perfect opportunity for you. We provide you with all the tools, knowledge and training you need to be successful in this role.Responsibilities:· To provide legendary service directly to the client, after the sale by the Sales Executive.· Communicate with the client in person, by phone, email, text, etc. to answer all of their questions/inquiries, provide professional advice or recommendations regarding their coverage, and collect relevant information.· Process additions, deletions or changes to their policy on the appropriate broker management system (EPIC)· Ensure all transactions and renewals are accounted for and processed accurately and on a timely basis.· Provide quotations or estimates to clients on premiums, update information, and confirm data and coverage and to record appropriate changes or adjustments.· Communicate with insurance company personnel as required.· As an independent broker working for your client, acts as liaison with the insurer and balances the interests of the client, McDougall Insurance and the insurance company in force.· Function as part of a team responsible for assisting in the collection of accounts receivable and in any other area as required.· Where appropriate, procure a sale, normally through upgrading and bundling coverage for personal lines clientsQualifications:· Must have exceptional customer service and communication skills.· Acts in a professional manner at all times and maintains a position of trust and confidentiality.· Acts in an open, respectful, honest and helpful manner with all team members, clients and other staff.· Ability to work effectively in a fast-paced environment· Must be willing and eligible to obtain a RIBO licenseRIBO stands for the Registered Insurance Brokers of Ontario. RIBO regulates the licensing, professional competence, ethical conduct and insurance related financial obligations of all independent general insurance brokers in the province of Ontario. To learn more please visit https://www.ribo.com/What We Offer:Dedication to investing in our employees’ future by offering RIBO, CAIB, and other designation education reimbursementA supportive and inclusive culture where diversity is valuedA competitive employee health and dental benefits program including long term disabilityA competitive pension planPaid vacation timeAccess to ongoing training and development through our McDougall training teamMcDougall Insurance and Financial is proud to be an equal opportunity employer. We aim to find individuals who are passionate about their work and treat others with dignity and respect.If you need assistance or an accommodation, you may reach out to our Human Resources Department through our website:https://www.mcdougallinsurance.com/contact/Job Types: Full-time, PermanentSalary: $40,000.00-$48,000.00 per yearBenefits:Company eventsCompany pensionDental careDisability insuranceEmployee assistance programExtended health careLife insurancePaid time offVision careSchedule:Day shiftMonday to FridaySupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Victoria Street, Petawawa, ON\"\n        },\n        {\n            \"id\": \"27391B117018B475ECC314E7E6284BFB\",\n            \"cityName\": \"CouchHaus in Langley, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=529f9d190ff748da\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Couchhaus\",\n            \"rowSalary\": \"$17–$22 an hour\",\n            \"date\": 1694486618367,\n            \"dateOfPosted\": 1694486618175,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1041779,\n                    \"lon\": -122.6603519\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Langley City\",\n                \"formattedAddress\": \"Langley City, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Langley City\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Company DescriptionCouchHaus is a direct-to-consumer custom modular sofa brand based in Vancouver, Canada. The couches are made-to-order exclusively with our own manufacturer. We sell our products directly to consumers through our online platform and our boutique showroom in Langley, BC in order to offer competitive prices to our customers.Our business model is designed to offer customers high-quality, customizable furniture at an affordable price point, while also minimizing waste and supporting sustainability.Founded by the duo that made the 2023 BC Business 30 Under 3 List , Harrison and Paige, the company started with their passion for design when it came to building furniture for our own home.On the quest for new furniture for their home, they rethought every component of their dream couch including the size, depth, fabric grade, storage and other features! They offer removable and washable covers, re-stuffable cushions and modular furniture to re-arrange and grow onto!CouchHaus was created to make custom modular furniture shopping easier and more affordable, while supporting sustainability. The best part, we plant 100 trees for every couch we build!Job DescriptionTHE DEPARTMENTThe mission of the Concierge Department is to delight clients by going above and beyond to resolve their inquiries within reason and deliver exceptional sales expertise.Everyone in our Concierge Team has a common goal: to successfully manage customer relations by being a liaison between the company and the customer.THE OPPORTUNITYOur Concierge Department is an integral for the operation of the company. You’ll provide daily support to keep our boutique store running smoothly.As a member of the Concierge Division, you will be part of the team responsible for providing exceptional experiences for clients who contact Concierge by resolving their inquiries and delivering selling and solving expertise. As the Concierge Advisor, you will deliver world-class sales, solution and service excellence to exceed client expectations and maximize value in every interaction. And, with the skills you gain in this role, the opportunities are endless – from a rewarding career in Concierge to continued growth and development with CouchHaus.CouchHaus is an online store with the a boutique showroom. This opportunity is remote and also has the opportunity to grow in the company.THE JOBWe are seeking a team player that conveys the brand philosophy and values. The ConciergeAdvisor is a solution and detail-oriented person. The right individual will interact with customers on a daily basis, being knowledgeable and conversational and educational.The Concierge Advisor job is about problem solving. You will:● Develop and manage strong customer relationships through outstanding and consistent customer experiences● Solve problems to ensure our customers are happy● Become an expert in CouchHaus’ products and servicesThe Advisor reports to the Team Leader and participates in all the essential duties which contribute to the efficient and profitable operation of the store while maintaining the brand and visual presentation standards.QUALIFICATIONSYou don’t need experience to be a Concierge Advisor — we can teach you what you need to know. We care more about your hustle, passion for problem solving and ability to think on your feet. You have:● A commitment to learn and apply CouchHaus Values, Business and PeopleLeadership principles● The skills that are an asset to perform in the role and the appetite to continuously learn and develop oneself● A commitment to quality and investing in results that add value to the business● A sense of urgency and ability to prioritize important work● An understanding of CouchHaus brand vision● Feel strongly about long-term customer relationships and building brand loyaltyTHE PERKS● Set Your Schedule - Provide your availability and indicate your preferred working hours (some restrictions apply)● Aspirational Workspace - Every detail is considered to connect to the energy of the culture● Product Discount - Our famous product discount, online and in storeHead to our Our Story (https://www.couchhaus.com/pages/story) for the scoop on who we are and what we do.Job Types: Part-time, FreelancePart-time hours: 10-20 per weekSalary: $17.00-$22.00 per hourBenefits:Casual dressFlexible scheduleStore discountWork from homeSchedule:Day shiftMonday to FridayWork Location: Hybrid remote in Langley, BC V2Y 4J1Application deadline: 2023-09-30Expected start date: 2023-10-01\",\n            \"location\": \"Langley, BC\"\n        },\n        {\n            \"id\": \"6B4D68A06A3F998F0CAA9BA662DDA53C\",\n            \"cityName\": \"34 Magnum Dr, Schomberg, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e1a668e71198b38d\",\n            \"jobName\": \"Customer Service/Account Representative\",\n            \"companyName\": \"Alpine Graphic Productions Limited\",\n            \"rowSalary\": \"$45,000–$65,000 a year\",\n            \"date\": 1694486557387,\n            \"dateOfPosted\": 1694486557216,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.0106936,\n                    \"lon\": -79.6739194\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Schomberg\",\n                \"formattedAddress\": \"Magnum Dr, Schomberg, ON L0G 1T0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Schomberg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Alpine Graphics has an immediate Full-Time opening for a Customer Service Representative.Alpine Graphic Productions Limited is an established, award-winning screen and digital print manufacturer supplying North American clients with fleet graphics, architectural graphics, anti-graffiti products, safety signage and decals.We offer a competitive salary and benefits, negotiable based on experience.To be successful you will be required to:- Build Strong Client Relationships- Have Excellent Organization Skills- Work Well in a Team Environment- Have Excellent Communication Skills, both Verbal and Written- Project Manage Installation ProjectsYou will benefit from Alpine Graphics' supportive, consultative small business environment and capable production team.We are looking for the following experience and/or skills:Ability to develop and maintain client relationshipsEnergy and enthusiasmSelf-motivationExcellent communication and presentation skillsResponsivenessAttention to detail Strong proposal writing skillsAbility to prioritize and manage projects to a successful conclusionMinimum Undergraduate degreeJob Types: Full-time, PermanentSalary: $45,000.00-$65,000.00 per yearBenefits:Dental careExtended health careLife insuranceVision careSchedule:Monday to FridayAbility to commute/relocate:Schomberg, ON L0G 1T0: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (required)Experience:Customer service: 1 year (preferred)Work Location: In personApplication deadline: 2023-09-24\",\n            \"location\": \"Magnum Dr, Schomberg, ON\"\n        },\n        {\n            \"id\": \"CC8ACC96F602B76FEFF71D914C0DE916\",\n            \"cityName\": \"Kingston, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5601d7bb49b0fe31\",\n            \"jobName\": \"Personal Lines Customer Service Representative\",\n            \"companyName\": \"Mcdougall Insurance And Financial\",\n            \"rowSalary\": \"$40,000–$45,000 a year\",\n            \"date\": 1694486557214,\n            \"dateOfPosted\": 1694486557014,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2311717,\n                    \"lon\": -76.4859544\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kingston\",\n                \"formattedAddress\": \"Kingston, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Frontenac County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kingston\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"_McDougall Insurance is now the largest insurance brokerage in Eastern Ontario. We represent over 50 insurance companies, giving us the ability to offer optimal selection and competitive rates. Here at McDougall we have created an Employee Promise. The leadership of McDougall Insurance promises to foster an environment of support, empowerment and inclusion, while investing in our employee's future with McDougall Insurance. In turn, our employees promise to treat others with dignity and respect and strive to approach each day with a positive attitude and willingness to learn. Together, we promise to deliver Legendary Service to our customers and apply the McDougall principals of Trust, Honesty and Integrity with a goal of building strong lasting relationships. The result is our staff is engaged, accountable and professional._ _At McDougall Insurance and Financial we offer our employees; a comprehensive benefits package, McDougall pension plan, staff appreciation days, social events, a branch-wide yearend bonus, a competitive salary and paid vacation time starting at 3 weeks._ Our growing team is looking for a Customer Service Representative in Personal Lines to join our team in Kingston, Ontario! Are you looking to start a new career? Do you have strong customer service skills? If so, this might be the perfect opportunity for you. We provide you with all the tools, knowledge and training you need to be successful in this role. Responsibilities: To provide legendary service directly to the client, after the sale by the Sales Executive. Communicate with the client in person, by phone, email, text, etc. to answer all of their questions/inquiries, provide professional advice or recommendations regarding their coverage, and collect relevant information. Process additions, deletions or changes to their policy on the appropriate broker management system (EPIC) Ensure all transactions and renewals are accounted for and processed accurately and on a timely basis. Provide quotations or estimates to clients on premiums, update information, and confirm data and coverage and to record appropriate changes or adjustments. Communicate with insurance company personnel as required. As an independent broker working for your client, acts as liaison with the insurer and balances the interests of the client, McDougall Insurance and the insurance company in force. Function as part of a team responsible for assisting in the collection of accounts receivable and in any other area as required. Where appropriate, procure a sale, normally through upgrading and bundling coverage for personal lines clients Qualifications: Must have exceptional customer service and communication skills. Acts in a professional manner at all times and maintains a position of trust and confidentiality. Acts in an open, respectful, honest and helpful manner with all team members, clients and other staff. Ability to work effectively in a fast-paced environment Must be willing and eligible to obtain a RIBO license RIBO stands for the Registered Insurance Brokers of Ontario. RIBO regulates the licensing, professional competence, ethical conduct and insurance related financial obligations of all independent general insurance brokers in the province of Ontario. To learn more please visit What We Offer: Dedication to investing in our employees' future by offering RIBO, CAIB, and other designation education reimbursement A supportive and inclusive culture where diversity is valued A competitive employee health and dental benefits program including long term disability A competitive pension plan Paid vacation time Access to ongoing training and development through our McDougall training team On-site parking McDougall Insurance and Financial is proud to be an equal opportunity employer. We aim to find individuals who are passionate about their work and treat others with dignity and respect. If you need assistance or an accommodation, you may reach out to our Human Resources Department through our website: Job Types: Full-time, Permanent Salary: $40,000.00-$45,000.00 per year Benefits: Company events Company pension Dental care Disability insurance Employee assistance program Extended health care Life insurance On-site parking Paid time off Vision care Schedule: Day shift Monday to Friday Supplemental pay types: Bonus pay Work Location: In person\",\n            \"location\": \"Kingston, ON\"\n        },\n        {\n            \"id\": \"11AB1161CF1099E3F84495B2AEAA837E\",\n            \"cityName\": \"Maple, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8fa9e8dd426238bf\",\n            \"jobName\": \"Customer Service Representative Supervisor\",\n            \"companyName\": \"Planta Greenhouses\",\n            \"rowSalary\": \"$60,000 a year\",\n            \"date\": 1694486514495,\n            \"dateOfPosted\": 1694486514308,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8517618,\n                    \"lon\": -79.52728359999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Maple, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 60000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    60000.0\n                ],\n                \"range\": {\n                    \"gte\": 60000.0,\n                    \"gt\": null,\n                    \"lte\": 60000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 2 years to less than 3 yearsTasks Conduct performance reviews Perform same duties as workers supervised Co-ordinate, assign and review work Establish work schedules and procedures and co-ordinate activities with other work units or departments Identify training needs and train workers in job duties and company policies Resolve work-related problems and prepare and submit progress and other reportsWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Maple, ON\"\n        },\n        {\n            \"id\": \"DC492AD30D7AFCDFEB3339B01048F71A\",\n            \"cityName\": \"9260 Boul Du Golf, Anjou, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=460fb11605e09382\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Multi-Glass Insulation Ltd\",\n            \"rowSalary\": \"$20–$23 an hour\",\n            \"date\": 1694486454757,\n            \"dateOfPosted\": 1694486454560,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6248894,\n                    \"lon\": -73.56511259999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Bd du Golf, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Aperçu de l'entrepriseFondée en 1975, Multi-Glass Insulation Ltd. est un chef de file dans la distribution et la fabrication de systèmes d'isolation. Notre objectif est d'optimiser la conservation de l'énergie dans les grands projets de construction commerciale, industrielle et résidentielle dans l'Est et le Canada atlantique.Description du poste : Responsable de la gestion des transactions quotidiennes entre les clients d'MGI et la chaîne d'approvisionnement.Répondre aux demandes des clients par téléphone, fax ou courriel dans des délais acceptables en maintenant un excellent service.Procéder au traitement de commandes incluant toutes les étapes du bon de commande à la facturation finale.Interagir avec les équipes de production et d'expédition pour coordonner le planning de production.Vérifier la disponibilité des produits par leur code ou description.Renseigner les clients sur les délais de livraison prévus, le suivi du bon de commande et répondre à des questions générales sur leur facturation.Résoudre les problèmes survenus sur un produit ou un service en travaillant en grande proximité avec les équipes de ventes pour déterminer les causes et proposer la meilleure solution tout en effectuant un suivi des résolutions d'amélioration.Respecter les directives et procédures établies par la CompagnieEffectuer d'autres tâches au besoin par la direction.Job Type: Full-timeSalary: $20.00-$23.00 per hourBenefits:Dental careVision careSchedule:Monday to FridaySupplemental pay types:Overtime payAbility to commute/relocate:Anjou, QC H1J 3A1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In personExpected start date: 2023-09-12\",\n            \"location\": \"Boul Du Golf, Montréal, QC\"\n        },\n        {\n            \"id\": \"47CD176D1D3492A5736C91E99A808E46\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fd4e88ae982ad9e3\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Easypark\",\n            \"rowSalary\": \"From $21 an hour\",\n            \"date\": 1694486140215,\n            \"dateOfPosted\": 1641252397160,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"EasyPark’s mission is to make parking easy, safe and secure. We work with our clients and community groups in the areas where we provide parking services to help improve these areas and make them safer. For the past 70 years, EasyPark has been providing safe, clean, friendly, convenient, and affordable parking to the Greater Vancouver community. This position is responsible for ensuring a high level of service to the public and other Corporation staff through the efficient management of all customer service duties associated with serving the internal and external customers. KEY RESPONSIBILITIES Customer Service:Responds to customer inquiries by email, live chat, and through our online appeals processRaises refund requests for the Customer Service SupervisorsReports meter/ app malfunctions to the meter collections teamsReviews and request refund requests for customers for double paying on the meterResponds to live chat inquires and assists customers at our parking facilitatesIssues out receipts to customers as required upon confirming transactionAnswer general monthly parking emailsActively works with the Assistant Customer Service Manager, Customer Service Coordinator, and other EasyPark departments on flagging meter or app deficienciesFacilitates Tow Requests for reserved monthly parkers as requiredAddress problems and requests by transmitting information or providing solutionsPrioritize calls according to urgency and importanceEnters data in computer system and maintain logs and records of calls, activities and other informationMonitors Zendesk Backlog and organizes tickets for the customer service teamClose up to 80 appeals/ Zendesk tickets per shift SKILLSPossess exceptional organizational skillsExcellent verbal and written communication skillsAbility to work in a fast-paced and multi-task environmentHigh level of personal integrity and strong work ethicAbility to work independently on assigned tasks as well as to accept direction on given assignmentsEffective attention to detail and a high degree of data entry accuracyAbility to operate standard office equipment (phone, fax, photocopier, printer, etc.)Computer proficiency, including effective working skills of MS Word, PowerPoint, Excel and e-mailProven data entry and typing skills – 70 wpm (alphabetic and numeric characters) EDUCATION & EXPERIENCECall Centre experience is an asset. Dispute/conflict resolution trainingValid Drivers License & 1 year experience of driving1 – 3 years of relevant Customer Service or a Collections experience is requiredMinimum 1 year proven success within customer service role with high volume of incoming callsExperience in dispute and conflict resolution WORKING CONDITIONSOffice setting with shift work during peak seasons. Regular evening/weekend scheduling will be required.Ability to attend professional development opportunities after hours as requiredOvertime as required. POSITION REQUIREMENTS The CSR position is initiative driven and requires exceptional organizational and interpersonal skills, excellent verbal Continue and written communication skills, and is comfortable using various computer software. Ensures a high level of service to the public and other Corporation staff and is responsible for the delivery of effective and superior customer service management services for the Corporation. Part-time hours: 20 per week Job Types: Full-time, Part-time Salary: From $21.00 per hour\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"575D7CEE7A998E24DE5E3C9A85C5F4C3\",\n            \"cityName\": \"222 East Island Highway, Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a36909cd8a140f8d\",\n            \"jobName\": \"Customer Service Supervisor\",\n            \"companyName\": \"Mid Island Co-Op\",\n            \"rowSalary\": \"From $19.25 an hour\",\n            \"date\": 1694485866335,\n            \"dateOfPosted\": 1694485866154,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3154404,\n                    \"lon\": -124.2803958\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Parksville\",\n                \"formattedAddress\": \"Island Hwy E, Parksville, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Parksville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Co-op is hiring a full-time Customer Service Supervisor for our Oceanside Gas Bar in Parksville, British Columbia.Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you!The Customer Service Supervisor position is a developmental role whereby the aim is to move the successful candidate to an Assistant Store Manager (ASM) position within a 12-18 month timeframe (term will be extended in the event there are no ASM positions available within 12-18 months).Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in organizing and directing the activities and operations of the store including but not limited to ordering/receiving merchandise and supplies, organizing and conducting inventory, staff supervision and training, and acting as Health and Safety Committee Liaison.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Supervisor today if you're a team player with strong communication skills, you can lift, push, and pull up to 50 lbs, and you have a minimum of 1 year gas bar/retail experience. Propane and/or FoodSafe certification would be an asset.Who we are:Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve.Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op).We thank all candidates for their interest; however, only those selectedto continue in the recruitment process will be contacted.Job Types: Full-time, Fixed term contractContract length: 12-18 monthsSalary: From $19.25 per hourBenefits:Company eventsDental careEmployee assistance programExtended health careOn-site parkingStore discountVision careSchedule:8 hour shiftHolidaysMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"East Island Highway, Parksville, BC\"\n        },\n        {\n            \"id\": \"29467A59F885424770945BA4EF02EE06\",\n            \"cityName\": \"Click Esports in Nepean, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=35e303f2a8d93960\",\n            \"jobName\": \"Customer Service And Cleaning\",\n            \"companyName\": \"Click Esports\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694485549020,\n            \"dateOfPosted\": 1694485548837,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.33490459999999,\n                    \"lon\": -75.7241006\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Nepean, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Click Esports is now hiring for part-time shift:We are looking for reliable, hardworking and trustworthy individual to join our team.Duties include:· Cleaning of computer area, computer equipment, and peripherals· Cleaning of service premises, kitchen, service floor, etc.· Operate cashier duty· Assist with making food & drinks in the kitchen· Assist with stocking fridgeRequirements:Basic computer skills are mandatoryMust be able to work late night hours. 10 hours shift per week.Click Esports Address: 1665 Merivale Rd, Nepean K2G 3K2Interested applicants please submit your resume online (we do NOT take resume in person)Job Type: Part-timePart-time hours: 10 per weekSalary: $15.50 per hourFlexible Language Requirement:French not requiredWork Location: In person\",\n            \"location\": \"Nepean, ON\"\n        },\n        {\n            \"id\": \"461C6149F0E941403409DF0C0475B18F\",\n            \"cityName\": \"4310 Spallumcheen Dr, Armstrong, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=36a15fb37a11f963\",\n            \"jobName\": \"Dispatcher/Customer Service\",\n            \"companyName\": \"Fox'S Transport\",\n            \"rowSalary\": \"$60,000–$65,000 a year\",\n            \"date\": 1694485438349,\n            \"dateOfPosted\": 1694485438165,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.40158779999999,\n                    \"lon\": -119.2197206\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vernon\",\n                \"formattedAddress\": \"Spallumcheen Dr, Spallumcheen, BC V0E 1B6, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"North Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vernon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 60000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    60000.0\n                ],\n                \"range\": {\n                    \"gte\": 60000.0,\n                    \"gt\": null,\n                    \"lte\": 60000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Foxs Transport is looking to Hire a Full Time Dispatcher at our Armstrong location. The ideal candidate will have strong time management, multitasking, and customer communication skills.Foxs Transport has a proven history of project management combined with a modern fleet and experienced professional drivers making Foxs an industry leader.We have an excellent employee safety program and are COR Certified through the AMTA. We also boast a management team of 6 with over 150 years of combined experience in the heavy transportation industry and a team of highly trained employees ready to provide measurable excellence to our clients.We provide career advancement within our group of companies for all roles. Family owned and operated to ensure each employee is taken care of and has work life balance.Candidate Requirements,- Knowledge of working with Microsoft office (Excel, Word, ETC).- Must be willing to work rotational on call weekends.- Reliable transportation to and from work.- Knowledge in permitting for heavy haul.- Must have knowledge in various trailer configurations.What’s in it for you?- Benefits after a 90-DAY Probation- Permanent Full-Time work.- Opportunities for advancement.- Competitive Wages – Based on experience.Job Types: Full-time, PermanentSalary: $60,000.00-$65,000.00 per yearBenefits:Casual dressDental careExtended health careOn-site parkingPaid time offVision careSchedule:Monday to FridayOn callWeekend availabilityAbility to commute/relocate:Armstrong, BC V0E 1B6: reliably commute or plan to relocate before starting work (required)Application question(s):When are you available to start?Work Location: In person\",\n            \"location\": \"Spallumcheen Dr, Armstrong, BC\"\n        },\n        {\n            \"id\": \"EDC47D1E9F0028E7F330B18549E2FC80\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8015a75f1e9443a8\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Arg Wholesale\",\n            \"rowSalary\": \"$18–$23 an hour\",\n            \"date\": 1694485276106,\n            \"dateOfPosted\": 1692784210276,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service RepresentativeARG Wholesale- Edmonton, ABStarting Wage: $19.00 - $23.00/ HourTuesday – SaturdayHours vary depending on season.Job Type: Full-Time/ PermanentAbout ARG Wholesale:ARG Wholesale, the supply chain division of GlassMasters Autoglass, is looking for energetic and hardworking CSR for a full-time, permanent position. This is a fast-expanding company that offers uncapped room for growth and development. We currently have four warehouse locations in Calgary, Edmonton, Saskatoon, and Regina. We also have 10 retail locations across Alberta and Saskatchewan and will be opening two new locations in Western Canada in the next two years.***Please note: While this position does require customer service, it also consists of manual labour, carrying and loading/unloading 20-50lb windshields, and driving. ***Position:ARG is looking for an individual to fill the role as a Customer Service Representative for our Edmonton location. In this role, you will be responsible for customer service, sales, and operations as well as backend duties in the warehouse (loading/ unloading product, the occasional delivery, etc.).Responsibilities· Maintain exceptional customer service· Assist management with increasing sales and profitability, meeting location KPIs· Develop and maintain retail and account customer relationships· Assist branch manager with sales, cost of sales and labour targets· Help management with accounts receivable.· Assist management with store inventory and supply levels.· Assist warehouse staff with shop duties and operations.· Warehouse Labour:o Moving producto Loading truckso Warehouse cleanliness· Deliveries within Edmonton area· Driving ¼ ton truck· Driving ½ ton pick-up truck· Driving extended cargo van· Ability to adapt and compete tasks/duties as assigned.Requirements:· Valid Class 5 Driver’s License with good driving record· Criminal record check· Availability to work weekends· Solid work ethic and ability to deliver exceptional customer service.· Ability to manage multiple priorities simultaneously· Displays a can-do attitude· Provides a positive role model for all staff· Ability to work in a fast-paced environment· Excellent communication skills· Promotes a high-performance culture by helping manager set clear expectations, and creating a strong team environment· Knowledge of business systems (e.g., POS, web-portals, inventory management, excel, word)· Professional Appearance· Ability to work long hours· Post-secondary education is an asset.Benefits:· Growth potential to move into more senior management positions.· Company events· Comprehensive benefits package· On-site free parkingSchedule:· Day shift – Tuesday to Saturday· Weekend availability· Will vary depending on seasonIf you feel like you have what it takes to be part of a fun and energetic team in a fast-paced and rewarding industry, please reply to this posting with your resume.We thank all candidates for applying. Only those selected for an interview will be contacted. ARG Wholesale is an equal opportunity employer. Starting wages will be dependent on experience.***All Candidates must be legally entitled to work in Canada***Job Types: Full-time, PermanentSalary: $18.00-$23.00 per hourBenefits:Company eventsDental careExtended health careOn-site parkingFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftDay shiftEvery WeekendOvertimeSupplemental pay types:Overtime payWork Location: In person\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"F0F79132CC9C34C45EABEA14921D7778\",\n            \"cityName\": \"750 West Broadway, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=db11e2998b20527b\",\n            \"jobName\": \"Bilingual/Mandarin Patient Coordinator (Call Centre)\",\n            \"companyName\": \"Vancouver Laser & Skin Care Centre\",\n            \"rowSalary\": \"$22–$25 an hour\",\n            \"date\": 1694485001479,\n            \"dateOfPosted\": 1694485001005,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.26376459999999,\n                    \"lon\": -123.14866\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Broadway, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a passionate individual to join our Patient Coordinator team at the Call Centre @ Vancouver Laser and Skincare Clinic !Are you a dynamic and hardworking individual with a passion for the beauty and medical industry? Do you have experience in the customer service field and a desire to take on a rewarding and exciting role as a Patient Coordinator (Call Center)?If so, we want you to be a part of our amazing team at Vancouver Laser and Skincare Clinic.Vancouver Laser and Skincare Clinic is committed to continuous improvements and setting benchmarks for excellence of treatments and services. At Vancouver Laser and Skincare Clinic, our Patient Coordinator plays an integral role in providing Five-starCustomer Service to our patients. We are seeking a Bilingual (English and Mandarin) representative for a full-time (up to 40 hours) position in our call Centre. You will serve as the first point of contact for our patients, ensuring the highest level of patient satisfaction.Main Duties and ResponsibilitiesCustomer Service:Answer phone calls and reply to customer emails with a keen understanding of aesthetic procedures.Create a file for each new customer and update existing customer files.Book customer appointments and manage the appointment calendar.Collecting customer information for future follow-ups.Answering general inquiries on the phone about the treatment and products available.Staying informed about product and service information updates. Identifying sales opportunities, making product/service recommendations.Reply customer's message in a timely manner on different platforms, Wechat, Facebook, Instagram , live chat etc.Ideal candidate should have:Excellent customer service, people-oriented and experienced in rapport building.Ability to process information well with excellent communication and active listening skills.Excellent time management, ability to multitask, prioritize, and manage time effectively.Responding to customer complaints and inquiries quickly and efficiently.Ability to upsell and promote the services and products.High school diploma is mandatory, training in secretarial/office systems would be an asset.Proficiency in Microsoft Office Suite.At least 1 year of experience in a similar role or customer service industry would be an asset.Knowledge of MINDBODY or similar software would be an asset.Join Our Team at Vancouver Laser and Skincare Clinic in Vancouver ,BC.Vancouver Laser & Skin Care Centre is a physician directed cosmetic clinic that was founded by Dr. Martin Braun in 1996. With state of the art technology and a wealth of experience and knowledge, Vancouver Laser is THE non-surgical solution to all things cosmetic. We know that you have choices! In our 25+ year history we have treated thousands of patients with a diverse range of conditions. We have honed and perfected our anti-aging strategies to provide our patients with their ideal outcomes.Job Type: Full-timeSalary: $22.00-$25.00 per hourBenefits:Commuter benefitsExtended health careSchedule:8 hour shiftAbility to commute/relocate:Vancouver, BC V5Z 1H2: reliably commute or plan to relocate before starting work (preferred)Experience:Customer Service & Patient Registrars: 1 year (preferred)Language:Mandarin/Chinese (preferred)Work Location: In person\",\n            \"location\": \"Broadway WR\"\n        },\n        {\n            \"id\": \"EF817133034FD97772A0502E58707545\",\n            \"cityName\": \"Gormley, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b7ad24a9660b6906\",\n            \"jobName\": \"Customer Service/Sales Rep (Ft)\",\n            \"companyName\": \"Nutri-Lawn - Gormley, On\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694484918549,\n            \"dateOfPosted\": 1694484918219,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.9418049,\n                    \"lon\": -79.3791856\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Gormley\",\n                \"formattedAddress\": \"Gormley, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Gormley\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" We are seeking a highly qualified person to fill the role of Customer Service/Sales Representative in our fast-paced environment. The ideal candidate will have a strong customer service background and experience handling high volumes of incoming calls and/or email communications. This is a great opportunity for an individual who thrives in a competitive environment, and we are looking for motivated people who are able to quickly learn our products and services Responsibilities: Manage large amounts of incoming calls. Follow communication procedures, guidelines and policies. Not be afraid to pick up phone and contact clients. Call and collect outstanding balances. Sell prospective clients our programs and services. Input data, send emails. Go the extra mile to engage customers. Work availability Monday - Friday 9am to 5pm. As an Employee of Nutri-Lawn you will enjoy: A competitive compensation program. Industry and Company training. Growth and advancement opportunities within the Company. Requirements: Familiarity with CRM systems and practices. Proficient in Microsoft Office especially in Excel or Google Sheets. Must be well versed in Hub Spot Previous email marketing knowledge. Proven customer support experience or experience as a client service representative. Strong phone contact handling skills and active listening. Customer orientation and ability to adapt/respond to different types of characters. Excellent communication and presentation skills. Excellent command of the English Language. Previous Landscape experience an asset. Previous experience in the service industry. Ability to multi-task, prioritize and manage time effectively. We are not on a bus line so you must have a reliable vehicle. Job Type: Full-time.  Salary: $18.00-$23.00 per hour.  Benefits: Casual dress. Company events. Flexible schedule. On-site parking. Schedule: 8 hour shift. Monday to Friday. Supplemental pay types: Bonus pay. Commission pay. Job Type: Full-time.  Salary: $18.00-$25.00 per hour.  Benefits: Casual dress. Company events. On-site parking. Schedule: Monday to Friday. Supplemental pay types: Bonus pay. Commission pay. Overtime pay. Signing bonus. Tips. View public job page\",\n            \"location\": \"Gormley, ON\"\n        },\n        {\n            \"id\": \"9FFAEF90CF657BE78136B0B6617FE016\",\n            \"cityName\": \"4230 50th Ave, Rimbey, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3f840cc051443321\",\n            \"jobName\": \"Front Counter Customer Service\",\n            \"companyName\": \"Allen B. Olson Auction Service Ltd.\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694484909567,\n            \"dateOfPosted\": 1694484909319,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.6395756,\n                    \"lon\": -114.2356675\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Rimbey\",\n                \"formattedAddress\": \"Rimbey, AB T0C 2J0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Ponoka County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Rimbey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Front Counter Customer Service RepresentativeThis a seasonal job from March 15 till December 31st each year.Responsibilities:- Receptionist Duties including answering phones, messages, forwarding of phone calls and excellent communication skills- Exception customer service to our clients.- Excellent and Accurate Data Entry Skills- Accepting Consignments from Customers & Collection of Payments for Items Sold at the Auctions- Knowledge of Farm Equipment, Construction Equipment and Vehicles is an asset but not necessary. Training is available.Experience:- Previous experience in a customer service role preferred- Excellent communication skills, both verbal and written- Strong problem-solving abilities and attention to detail- Ability to multitask in a very fast-paced environment- Proficient in using computer systems and navigating various software applications- Ability to remain calm and composed when dealing with difficult customersTo apply for this position, please submit your resume along with a cover letter detailing your relevant experience.Job Types: Full-time, SeasonalContract length: 3.5 monthsSalary: From $20.00 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayOvertimeWeekends as neededAbility to commute/relocate:Rimbey, AB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Receptionist: 2 years (preferred)Customer service: 2 years (preferred)Shift availability:Day Shift (preferred)Work Location: In personApplication deadline: 2023-09-18\",\n            \"location\": \"Rimbey, AB\"\n        },\n        {\n            \"id\": \"00355E508F5E52A9AF550EC3AF2B6796\",\n            \"cityName\": \"20 Burnside Rd W Suite 201, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8c67bb57381cd117\",\n            \"jobName\": \"Customer Service Representative (Ft)\",\n            \"companyName\": \"Proline Management\",\n            \"rowSalary\": \"$37,000–$45,000 a year\",\n            \"date\": 1694484068007,\n            \"dateOfPosted\": 1694484067796,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4502687,\n                    \"lon\": -123.3861989\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Burnside Rd W, Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 37000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    37000.0\n                ],\n                \"range\": {\n                    \"gte\": 37000.0,\n                    \"gt\": null,\n                    \"lte\": 37000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" We are looking for a motivated individual who has a passion for helping people live and grow together to join our closely-knit team.  If you have experience in the hospitality or retail industry, a passion for working with people, and want to join an amazing team, this could be the position for you. You’ll bring a desire to learn, grow, and to help others and we’ll train you on the world of property management. Whether you’re looking to make a change from working as a server, running a store, or wanting to explore a new career, we want to hear from you! A little about us: We are friendly, hardworking, and a little weird. Our purpose is to help people live and grow together in every way possible. The paradigms we strive for are Rebellious Optimism, Wholehearted Togetherness, Insidious Joy, Radical Transparency, and Relentless Incrementalism. Do you want to know more? Visit our website https://www.prolinemanagement.com. This is YOU to a ‘T’: You are confident, kind, patient, and a great listener. You defuse situations and handle conflict and negative emotions effectively. You enthusiastically support positive changes and see opportunities rather than challenges. You have a sense of humor and have fun. You create systems to keep organized and stay on top of lots and lots of emails and tasks. You bring JOY to every interaction. You love fixing problems for people and helping your whole team succeed. You thrive in a fast-paced environment. You are constantly striving to improve, learn and grow both personally and professionally. The role day-to-day: Provide primary coverage for the front desk. Receiving and placing a high volume of customer service telephone calls. Maintaining great customer relationships by handling questions and concerns with speed and professionalism. Manage emergencies with a decisive and calm demeanor, able to troubleshoot the situation and find positive solutions. Data entry and research as required to troubleshoot customer challenges. Spearhead the organization of the property managers, with everyone working towards the common goal of providing the best possible care for the portfolio of buildings. Liaise with strata council members, building owners, and residents by telephone and email. Manage checklists, processes, databases, spreadsheets, and websites. Assist Property Manager with obtaining quotes, scheduling maintenance, and confirming jobs with tradespeople at the direction of the Property Manager. This position requires travel between offices, as you may be required to work from other offices from time to time. For those interested, this position offers the opportunity to train for and grow into our Property Manager Trainee position. Experience & Qualifications: Enthusiasm for working with people and systems. Experience in the customer service field including call centers, collections, hospitality, restaurant and retail industries is considered an asset Excellent typing and knowledge of computer systems including Microsoft Suite is required. Ability to handle multiple things going on at once including multitasking, meeting deadlines, and maintaining clear communication with the team and clients. 1 - 2 years of experience in an administration or service-based role Excellent command of the English language along with above standard verbal and written communication skills Clean criminal record check. Position Details: Full-time position. $37-45,000 annually to start Office hours are Monday through Friday, 8:30 am - 5 pm, with a 1-hour lunch break. Please note that this is a fully in office position. Weekends and statutory holidays off.  Other Details: Vacation policy based on length of service. Paid volunteer days. RRSP contributions. Paid days off on your birthday and job anniversary. Health Benefits Trust and Life Insurance. Seasonal staff parties. Wellness and Social Committees. Employee referral program. Education reimbursement program. Opportunities for growth. We are looking for someone who will fit in well with our values and the team. To apply for this position, please submit your resume and cover letter outlining why you will be a great fit for the Customer Service Representative role with us. We are looking forward to reviewing your application!  Please note that only candidates selected for the interview process will be contacted. About Proline Management:With 55+ employees, 4 offices, and over 37 years in the business of property management, we are a friendly, interactive and hardworking group of people focused on developing and improving our organization and contributing to our community. We offer fun and professional working environment, maintaining an inclusive, small business feel while constantly striving to improve and develop as a company. We welcome team members who approach each day with positivity and enjoy working to help others live and grow together.\",\n            \"location\": \"Burnside Rd W, Victoria, BC\"\n        },\n        {\n            \"id\": \"F85EB1DC156F6031C2C3822450C86E0B\",\n            \"cityName\": \"888 Burrard St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d42c0c6df18439b4\",\n            \"jobName\": \"Part Time Customer Service Associate\",\n            \"companyName\": \"Spence Diamonds\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694484035052,\n            \"dateOfPosted\": 1694484034873,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2764614,\n                    \"lon\": -123.133986\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Burrard St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"How would you like to work with the happiest customers on earth? People in love are the happiest people on earth, and they’re also our everyday customers! Are you looking to add some sparkle to your career? If so, look no further! We are currently looking for our next superstar to join our customer service team and the Spence family! Who we are… Founded over 40 years ago, Spence Diamonds is a proudly Canadian Company. We have grown and evolved over the years with a unique approach to becoming an industry leader in cut quality and the customer experience. We take shopping for an engagement ring to the next level - with open show cases, displaying top of the line designer prototypes, accompanied by an unparalleled diamond education. Since introducing Spence Artisan Created Diamonds, we are now blazing the way for reasonably priced, ethical and sustainable diamond choices! With unparalleled access to these diamonds, we truly are the best choice for our customers. Our people are the center stone of our business. Our mission is to deliver an exceptional customer experience in a fun and inclusive work environment while giving our people room to grow their careers and live the life they love. What we offer…Attractive compensation packagesAmazing employee, friends & family discounts on our productsA variety of Learning and Development resourcesSpecial gifts to celebrate employee work anniversaries, birthdays, and personal milestonesRegular celebrations & employee incentive programsTeam building events and activitiesOpportunity to grow within the companyContinuous on the job training, support and mentorshipThe role As a member of customer service team at Spence, you embody our culture and values by providing an exceptional customer experience. You have a passion for our products and are comfortable assisting with presenting valuable products and representing products with confidence.You are the backbone of our store. You promote accuracy within the store through exceptional process handling which includes data management, finances, task management. You professionally act as the first and last point of contact for our clients on the phone, through email and in person within the store. On any given day you’re handling all payments & transactions, answering incoming phone calls and emails, managing inventory counts, shipping & receiving, assisting in store maintenance and cleanliness, showroom upkeep, and supporting the Sales Consultants and Management. Most importantly you ensure our customers are top priority and are all given the full Spence experience.Greet every customer in a friendly manner and provide extraordinary customer service Offer sales support to our sales teams during busy periods and take customers through our showroom experience. Ability build rapport with clients and identify client needs through a sales approach.Inspect and process incoming jewelry repairs. Follow up with customers via phone or email regarding their repair orders. Complete quality checks and provide completed orders to customers at pickup, ensure that customers have a great experience.Answer all phone and email correspondences Cash handling and end of day processingAssist in coordinating the showroom appearance, merchandising and store tidiness.A few things we hope you have…You’re detailed oriented, have excellent time management skills and are willing to embrace a structured processYou have excellent time management skills and make great decisions about which work to prioritizeYou have strong problem solving, and conflict resolution abilitiesYou are energetic, outgoing and have strong customer relationship skillsYou have excellent verbal and written communication and are comfortable professionally communicating face to face, over the phone and in writing.You have at least a years’ experience working in a customer service environmentYou’re used to working with a computer and are willing to learn new technology and softwareYou have minimum availability of 3 days a week, and of those 3 days at least 1 weekend day. Flexible day time/ evening availability preferred.Bonus points if you have previous administrative or reception experienceCompensation $16.75/Hour\",\n            \"location\": \"Burrard St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"CFF2AB96B1AC4BAF657BAA54EB331C82\",\n            \"cityName\": \"Langley, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1710d16ec58bf2b2\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Kirmac Collision And Autoglass\",\n            \"rowSalary\": \"$21–$24 an hour\",\n            \"date\": 1694484028526,\n            \"dateOfPosted\": 1694484028338,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1041779,\n                    \"lon\": -122.6603519\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Langley City\",\n                \"formattedAddress\": \"Langley City, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Langley City\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We’re looking for someone with an ear for service Customer Service Representative We're seeking a skilled customer centric expert to join our world-class team. Would you love the chance to have your customers raving about you with anyone who’ll listen? We want to hear from you! Benefits & Perks Excellent Wages Extended Health, Dental and Vision Coverage Plenty of Paid Time Off RRSP Options Team Working Environment Support for Volunteering and Community Involvement Learning and Development Program Training and Education Fund Corporate Discounts Program Regular Social Events Responsibilities Build lasting customer connections in store Submitting ICBC rental forms Scheduling Appointments Generating repair orders Interacting with vendors Providing repair updates to customers via phone, text and/or email Managing/Posting invoicing and parts returns Reconciling repair orders Requirements Excellent verbal and written communication skills. Organized and efficient with brilliant people skills. Dazzling work references. Passion for cars Valid Driver's license We want people who want to have an impact. Kirmac Collision and Autoglass is building an inclusive company culture where anyone, regardless of age, race, gender, sexual orientation, or disability, is recognized and rewarded for their contributions. Our Learning & Development Program allows every team member to learn new skills and expand their expertise. If you want to work someplace where you can grow, and your ideas can have an impact, we want to hear from you! Kirmac is a family-owned Collision Repair Shop with 17 locations across the lower mainland and 50 years of experience getting people back on the road.  Are you looking for a fun, well-paid career with excellent benefits, in-demand skills training, and job security? Did you know Collision Repair professionals earn an average of 6 figures per year? There are more cars on the road than ever before. More cars mean more accidents. And that means the demand for skilled collision repair people is at an all-time high. Ready to get started? We want to hear from you!Pay: $21 - $24 / hour Benefits: Paid time off Health insurance Dental insurance Vision insurance Life insurance Disability insurance Job Type: fulltime, parttime Schedule: 8 hour shift Monday to Friday Education: No education required Work location: On-site\",\n            \"location\": \"Langley, BC\"\n        },\n        {\n            \"id\": \"3443431A7139150FF94EED707D5DEE44\",\n            \"cityName\": \"260 Exeter Station Rd, 100 Mile House, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2d95e553da79d9cf\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Napa 100 Mile House\",\n            \"rowSalary\": \"$16–$25 an hour\",\n            \"date\": 1694484027125,\n            \"dateOfPosted\": 1664540856330,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.64972179999999,\n                    \"lon\": -121.3177484\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"100 Mile House\",\n                \"formattedAddress\": \"Exeter Station Rd, 100 Mile House, BC V0K 2E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Cariboo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"100 Mile House\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"NAPA Auto Parts is seeking a Full Time Counter Clerk / Sales Associate for the NAPA 100 Mile House , BC Location.•This position requires someone who can work flexible hours.You will support overall store operations in order to meet NAPA’s exacting Customer Service and Operational Standards by preparing customer orders and processing returns.You will play a key role in achieving the store’s sales and Customer Service objectives. We are looking for someone interested in growing to other positions within the store.Under the supervision of the Store Manager you will be responsible for establishing and maintaining good relations with our Customers by providing courteous, efficient, and professional service.Qualifications:•Able to lift up to 50lbs.•Communication skills•Priority management•Comfortable using technology•Action oriented•Listening skills•Teamwork and excellent Customer Service SkillsIf you are interested in this unique opportunity and meet the requirements of this job, you are invited to send your resume and drivers abstractOur employees are our greatest advocates. That’s why we whole-heartedly support maintaining a healthy and stimulating workplace where employees can achieve their full potential. With a positive attitude and a rigorous approach, the result is satisfied customers and a workplace that’s right for youMust provide resume and drivers abstractWe are willing to train ! If you are motivated to learn we can help youJob Types: Full-time, PermanentSalary: $16.00-$25.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceStore discountVision careSchedule:8 hour shift\",\n            \"location\": \"Exeter Station Rd, One Hundred Mile House, BC\"\n        },\n        {\n            \"id\": \"440E8B1D75DBF54295E2DAA06008FA9F\",\n            \"cityName\": \"610 Upper James Street, Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4b1d8574fc464f50\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Rtc Appliances\",\n            \"rowSalary\": \"$16–$24 an hour\",\n            \"date\": 1694483974181,\n            \"dateOfPosted\": 1694483973964,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1926133,\n                    \"lon\": -79.8980193\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Upper James St, Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Description: Customer Service RepresentativeDuties:- Provide exceptional customer service by promptly and courteously responding to customer inquiries and resolving issues- Handle a high volume of incoming calls, emails, and live chats from customers- Assist customers with product information, order status, billing inquiries, and general account support- Process orders, returns, and exchanges accurately and efficiently- Maintain accurate customer records and update information as needed- Collaborate with other departments to resolve customer issues and escalate complex cases when necessary- Stay up-to-date with product knowledge and company policies to provide accurate information to customersRequirements:- High school diploma or equivalent required; college degree preferred- Previous customer service experience in a fast-paced environment is highly desirable- Excellent verbal and written communication skills- Strong problem-solving and decision-making abilities- Ability to multitask and prioritize tasks effectively- Proficient in using computer systems and navigating various software applications- Ability to work independently as well as part of a teamWe offer competitive pay, comprehensive benefits package including medical and dental. Join our team of dedicated professionals who are passionate about providing exceptional customer service.To apply for this position, please submit your resume along with a cover letter highlighting your relevant experience.Job Type: Full-timeSalary: $16.00-$24.00 per hourBenefits:Company eventsDental careDisability insuranceExtended health careOn-site parkingFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridaySupplemental pay types:Bonus payAbility to commute/relocate:Hamilton, ON L9C 2Y8: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 2 years (required)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Upper James Street, Hamilton, ON\"\n        },\n        {\n            \"id\": \"9DD848A987E0B01397E8224E5D589537\",\n            \"cityName\": \"St. John's, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ed476ee49ac891ab\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Executive Aviation\",\n            \"rowSalary\": \"$17.00–$20.90 an hour\",\n            \"date\": 1694483930205,\n            \"dateOfPosted\": 1694483930022,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.5615096,\n                    \"lon\": -52.7125768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St. John's\",\n                \"formattedAddress\": \"St. John's, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 1\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"St. John's\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Here we grow again! Do you want to be part of an amazing team of customer service specialists who work together to provide exemplary service? Is going above and beyond in your DNA? Does the opportunity to provide exemplary service to passengers on some of Canada’s best airlines appeal to you? Are you someone who is known for reliability and flexibility? Come join us! Executive Aviation is hiring part time Customer Service agents at the St. John's Newfoundland Airport (YYT) who love working in the tourism industry. This role reports directly to an amazing Station Manager who is there to support you. What do we offer? Executive Aviation is proud to have very progressive wage ranges with lots of earning potential. The range of salary for this position is $17.00-$20.90/hour. We offer comprehensive Health benefits for all part- and full-time team members. We also have fantastic flight benefits with the airlines that we support. We want to see you grow and reach your goals! The sky's the limit with Executive Aviation. Responsibilities Our customer service agents are responsible for creating a safe and stress-free experience for travelers as they begin and end their journeys: Helping passengers check-in Supporting self-serve kiosks Preparing aircraft for on-time departures Facilitating deplaning and boarding of passengers Greeting passengers who are arriving from flights Following airline specific check-in policies and procedures Positively work airline crew Light grooming duties Kindly enforce airline and airport policies and procedures to passengers And more! Qualifications You are a true customer service champion with a minimum of two years’ in a customer-facing role You bring a proven track record of punctuality and reliability and understand that performing on time is a cornerstone of airline service You love to multi-task and are comfortable in a fast-paced where time pressures are a way of life You are a great communicator in both individual and group settings and have a demonstrated proficiency with computers and software. Completion or working towards completion of Travel and Tourism Diploma, Marketing or Business Diploma Previous airport experience would be considered an asset Flexible availability to work shift work which includes early mornings, days, late evenings, weekends and/or holidays An ability to meet all conditions of employment:  Restricted Area pass issued by Transport Canada A criminal background check Hold a valid driver’s licenseiDBwmTPWyb\",\n            \"location\": \"St. John's, NL\"\n        },\n        {\n            \"id\": \"BA1CE4247B20B14BFCFB2EEF3F27ACC1\",\n            \"cityName\": \"135 Rainbow Creek Dr, Woodbridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1e29ccb676125033\",\n            \"jobName\": \"Customer Service Representative/Invoicing\",\n            \"companyName\": \"Fotiou Frames Ltd.\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694483929229,\n            \"dateOfPosted\": 1694483928938,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.778904,\n                    \"lon\": -79.632958\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Rainbow Creek Dr, Vaughan, ON L0J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title: Customer Service Representative/InvoicingDuties:Provide exceptional customer service by responding to customer inquiries and resolving issues in a timely and professional mannerHandle a high volume of incoming calls and emails from customersAssist customers with product information, order status, and returns/exchangesProcess customer orders accurately and efficientlyMaintain customer records and update information as neededCollaborate with other team members to ensure customer satisfactionIdentify opportunities to upsell or cross-sell products and servicesFollow company policies and procedures to ensure consistent service deliveryPrepare and invoice orders in Sage Business Vision including weekly Skid Transfer to US warehouses.Prepare, organize and schedule daily truck run for drivers.Schedule pickups with various carriers and freight brokers.Skills:Excellent communication skills, both verbal and writtenStrong problem-solving abilities to address customer concerns effectivelyAbility to multitask and prioritize tasks in a fast-paced environmentAttention to detail to ensure accuracy in order processing and data entryProficient computer skills, including experience with Sage Business Vision CRM software and Microsoft Office SuiteEmpathy and patience when dealing with customer complaints or difficult situationsAbility to work well in a team-oriented environmentIf you are passionate about providing exceptional customer service and have the skills required for this role, we would love to hear from you. Please submit your resume and cover letter detailing your relevant experience.Job Types: Full-time, PermanentSalary: $18.00-$20.00 per hourSchedule:Monday to FridaySupplemental pay types:Overtime payWork Location: In personExpected start date: 2023-10-02\",\n            \"location\": \"Rainbow Creek Dr, Woodbridge, ON\"\n        },\n        {\n            \"id\": \"E2AB5C209EF102D308DF21AC76CDF41D\",\n            \"cityName\": \"Jonview in Etobicoke, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e4a34add396eac3d\",\n            \"jobName\": \"Bilingual Reservations And Customer Service Agent (German Or French)\",\n            \"companyName\": \"Jonview\",\n            \"rowSalary\": \"From $40,000 a year\",\n            \"date\": 1694483915007,\n            \"dateOfPosted\": 1694483914811,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6204946,\n                    \"lon\": -79.5131983\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Etobicoke, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"VALUES:WE WORK AS A TEAM with openness to the ideas and expectations of our colleagues, our customers and our client and supplier partners with a commitment to each other.WE ARE PROFESSIONALS on a constant quest for excellence, tackling challenges methodically, efficiently, and with integrity.WE GO BEYOND our responsibilities to our customers, our colleagues, society, and the environment.Title: Reservations & Customer Service Agent (Bilingual)Remote work availableDescription:This hybrid position is for those who like variation in job responsibilities, switching between two departments on a seasonal basis. This dual opportunity requires and develops a variety of skills while engaging in reservation activities during fall and winter then moving to customer service duties in spring and summer. The successful candidate will be responsible of FIT reservation requests for our customers, requests for information on products, passenger support, and treatment of some complaints.ResponsibilitiesProcess new reservations, cancellations, and amendments to existing reservationsRespond to queries regarding itineraries, products, and services from clients, and suppliersBuild relationships with key clientsProvide passenger assistanceMaintain a high level of Canadian Tourism product and geographical knowledge of CanadaProof reservations to ensure the accuracy and smooth running of booked itinerariesRespond to complaints post-travelAssist in the completion of any projects, as assignedPosition Requirements:Effective oral & written communication in English and French or German a mustEffective oral & written communication Portuguese and Spanish is an assetPost-Secondary School EducationTourism experience is an assetMust be able to work evenings and weekendsAbility to work under pressure and multitaskStrong attention to detail and autonomyTeam spiritDedicated to a high level of customer serviceAble to plan, organize and set priorities & manage processesJonview values diversity in the workplace and is committed to fostering employment equity by encouraging applications from the following designated groups: women, Aboriginal people, people with disabilities, and members of visible minorities. Jonview will work to accommodate people with disabilities throughout the recruitment and selection process. If you require a special arrangement, please contact us so that we can work together to adequately meet your needs. The use of the masculine in this document is for the sole purpose of simplifying the text.Only successful candidates will be contacted.Job Types: Full-time, PermanentSalary: From $40,000.00 per yearBenefits:Casual dressCompany eventsDental careDisability insuranceExtended health careLife insuranceOn-site parkingRRSP matchTuition reimbursementVision careWork from homeSchedule:8 hour shiftEvening shiftMonday to FridayWeekends as neededApplication question(s):Are you available to work evenings and weekends?What are your salary expectations? The starting salary for this role is $40,000.Do you speak Spanish or Portuguese? If so, how would you rate your proficiency level from Beginner to Expert?How would you rate your knowledge of Canadian Geography? Beginner, Intermediate, or Advanced?Are you legally entitled to work in Canada for the duration of your employment?Where are you currently located? This position is hybrid but includes working from our Toronto or Montreal office 1 day a week (if you are located in Toronto or Montreal).Experience:tourism/hospitality: 2 years (preferred)Reservations: 2 years (preferred)Customer service: 2 years (preferred)Language:French (required)German (required)Work Location: Hybrid remote in Etobicoke, ON M9B 6K5\",\n            \"location\": \"Etobicoke, ON\"\n        },\n        {\n            \"id\": \"2BC91EFF0E3D99AA1381CDDC77D9FED0\",\n            \"cityName\": \"Saanichton, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0875fa88c9fb3d26\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Windsor Plywood Keating\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694483908589,\n            \"dateOfPosted\": 1694483908409,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.5962689,\n                    \"lon\": -123.4169023\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saanichton\",\n                \"formattedAddress\": \"Saanichton, BC V8M, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saanichton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Windsor Plywood Keating is a growing Finishing Supply store on Keating Cross Road in Saanichton.We are looking for a Customer service representative to join our team.Customer service is imperative with us, and preference will be given to candidates with a friendly and personable approach.Customer service at our store includes:Greeting customersRunning their purchases through our POS systemCutting plywood or mouldings to sizeLoading the customers purchase in their vehicleKeeping the store in a presentable appearanceStocking shelves and ordering product to maintain stock levelsExperience:Must be physically fit and capable of lifting up to 50 lbs. of weight.Good verbal and written communication skills.Able to work independently (without supervision).We are looking for someone full time 9am to 5pm shift (Sunday and Wednesday off ).Job Type: Full-timeSalary: $18.00-$22.00 per hourBenefits:Dental careExtended health careOn-site parkingFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftAbility to commute/relocate:Saanichton, BC: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Saanichton, BC\"\n        },\n        {\n            \"id\": \"1B81F1C87C40DA51BA487688DA950A68\",\n            \"cityName\": \"Lower Sackville, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4571df9c213abc31\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Money Direct\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694483829785,\n            \"dateOfPosted\": 1694483829368,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.7763767,\n                    \"lon\": -63.6775544\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lower Sackville\",\n                \"formattedAddress\": \"Lower Sackville, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lower Sackville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Would you like to be part of a fun, friendly, management team? Money Direct is a Canadian owned and operated company with 9 Canadian branches, so we are a very close knit accessible team!Job Description What do you do?In the Customer Service Representative role you will do it all, sales, customer service, local area marketing, collections, security of your store, and the list goes on. Your primary function in the CSR role is to provide excellent customer service through the provision of Money Direct Financial Services.Duties/Responsibilities· Provide and ensure quality Customer Service is consistently delivered .· Complete all product and service transactions in the Point of Sale system.· Enter customer information completely and accurately into the Point of Sale system.· Issue Loans quickly and efficiently ensuring risk assessment strategies are utilized· Cross-selling additional products and services to all customers.· Respond to customer complaints and provide resolution.· Ensure store appearance is maintained in adherence to company standards.· Adhere to and ensure proper operational policy/procedures are followed.· Adhere to and ensure proper Security and cash management policy/procedures are followed.· Maintain all audit/compliance policy/procedures· Carry out chargeback/collection activity and complete all collection related tasks assigned.· Ensure financial goals/targets are met for the store.· Maintain proper accounting procedures and ensure all reporting is completed in a timely fashion.· Successfully, open and close the store and complete all paperwork accurately.· Maintain cash and inventory accuracy/controls and effectively control cash variances.· Drive revenue through the implementation of company-wide marketing plans and execution of promotions as well as through other local area marketing efforts.· All other job related duties as directed by Management.Qualifications/Skills:· High School Diploma· 1-2 years customer service and cash handling· Experience in the financial services industry highly desirable.· Friendly, outgoing, confident / problem solver, flexible, self-motivated, team player.· Customer Service Orientation· Accountability· OrganizationWe invest in our employees, and offer extensive training, and development programs to set you up for future success. If we sound like a fit and you’re ready to start an exciting career with an organization that encourages employee growth, apply today! We look for bright, energetic, motivated individuals who are interested in learning and developing their careerJob Types: Full-time, PermanentJob Type: Full-timeSalary: From $15.50 per hourBenefits:Dental careExtended health careFlexible scheduleLife insuranceOn-site parkingPaid time offSchedule:Day shiftEvening shiftWeekend availabilitySupplemental pay types:Bonus payCOVID-19 considerations:Consistent sanitizing of all high touch surfaces.Education:DCS / DEC (required)Experience:Customer service: 2 years (required)Work Location: In person\",\n            \"location\": \"Lower Sackville, NS\"\n        },\n        {\n            \"id\": \"039722011DE363B1CCE67CD072D73280\",\n            \"cityName\": \"Sidney, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b134b3b6069d1fd2\",\n            \"jobName\": \"Cashier, Customer Service\",\n            \"companyName\": \"Sidney Chevron\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694483787747,\n            \"dateOfPosted\": 1694483787565,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.6502411,\n                    \"lon\": -123.399005\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sidney\",\n                \"formattedAddress\": \"Sidney, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sidney\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Will trainWork setting Gas bar Tasks Operate cash register Scan items Receive payment for goods or services Suggestive selling Stock shelves and clean counter area Greet customers Wrap or place merchandise in bags Provide customer service Assist customers with self-checkout Participate in promotional activities Verify the age of customers when selling lottery tickets, alcohol or tobacco products Computer and technology knowledge Electronic cash register Interac machine Price scanner Computerized inventory record keeping and re-ordering system Transportation/travel information Public transportation is available Work conditions and physical capabilities Fast-paced environment Work under pressure Handling heavy loads Physically demanding Attention to detail Combination of sitting, standing, walking Standing for extended periods Bending, crouching, kneeling Personal suitability Accurate Excellent oral communication Flexibility Team player Screening questions Are you currently legally able to work in Canada?Work Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Sidney, BC\"\n        },\n        {\n            \"id\": \"114139884D6EEEF8A4DAF89EC475A505\",\n            \"cityName\": \"Saint-Bruno-de-Montarville, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=da2af0011af67af7\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"Québec Loisirs\",\n            \"rowSalary\": \"$15.25 an hour\",\n            \"date\": 1694483749826,\n            \"dateOfPosted\": 1694483749635,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.52597400000001,\n                    \"lon\": -73.3406679\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St-Bruno-de-Montarville\",\n                \"formattedAddress\": \"St-Bruno-de-Montarville, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"La Vallée-du-Richelieu Regional County Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"St-Bruno-de-Montarville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsScreening questions Are you available for the advertised start date? Are you currently a student? Are you currently legally able to work in Canada? Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Health benefits Dental plan Disability benefits Health care plan Paramedical services coverage Vision care benefits Financial benefits Bonus Long term benefits Life insurance Other benefits Parking availableWork Term: PermanentWork Language: BilingualHours: 20 to 30 hours per week\",\n            \"location\": \"Saint-Bruno-de-Montarville, QC\"\n        },\n        {\n            \"id\": \"B84ED55C8BD0457A8C3882E2E5F7E9AA\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f73770006871cd52\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Korean Catholic Church Credit Union\",\n            \"rowSalary\": \"$39,500–$65,000 a year\",\n            \"date\": 1694483718011,\n            \"dateOfPosted\": 1694483717799,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 39500.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    39500.0\n                ],\n                \"range\": {\n                    \"gte\": 39500.0,\n                    \"gt\": null,\n                    \"lte\": 39500.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service Representative (CSR) provides professional and efficient service to members/clients utilizing sound knowledge of Korean Catholic Church Credit Union products and services to fulfill their transactional needs and provide an excellent member/client experience.This role quickly develops a rapport with members/clients and proactively identifies their needs, promotes Korean Catholic Church Credit Union products and services, and refers members/clients to the appropriate internal partner based on the complexity of their requirements, while ensuring compliance and adherence to operational policies and procedures.As part of ongoing development, this role will require that you be flexible to assist in other areas of the branch, as required, with greeting and directing members as well as opening new accounts and dealing with general inquiries regarding our products and services.---------------------------------------------------------------------------------------------------------------------------Major Responsibilities:- Responds to member/client needs by delivering friendly, efficient service and accurately processing various financial transactions including deposits, withdrawals, cheque cashing/ordering, bill payments, money orders, transfers, or wire transfers.- Resolves member/client issues at the first point of contact where possible and refers to senior internal officers based on the complexity of the situation.- Strives to create a positive member/client experience through each interaction and looks for ways to continuously improve the overall member/client branch experience.- Maintains a strong level of knowledge with respect to Korean Catholic Church Credit Union Savings’ products, services, sales disciplines, and current marketing campaign programs/strategies.- Actively participates in all sales disciplines (i.e., high five goals, side-by-side coaching, quarterly sales cycle training) and participates in branch campaign initiatives.- Utilizes quarterly learning to adapt strategies and increase results.- Ensures ongoing compliance and adherence to operational policies, procedures, objectives, and Code of Business Conduct.- Actively collects applicable fees and revenues, contributing to branch financial goals.- Finds solutions to enhance the member/client experience and minimize factors that may negatively impact the member/client experience.---------------------------------------------------------------------------------------------------------------------------Require qualifications:- College diploma or equivalent.- Bilingual (English/ Korean) must be fluent.- Studied/Major in accounting field.- Solid communication skills (including verbal and written)- Proficient in MS Office (Word, Excel, and PowerPoint).- Time Management skills.- Proven multi-tasking and troubleshooting skills.---------------------------------------------------------------------------------------------------------------------------천주교신협 (Korean Catholic Church Credit Union)에서 함께 일할 직원을 아래와 같이 모집합니다. ·모집 부문: Full Time CSR (Teller)모집 인원: 1 명지원 자격: 캐나다에서 합법적으로 일할 수 있는 신분, 영어와 컴퓨터 사용능력 필수제출 서류: 한글, 영어 이력서 및 자기 소개서* 제출된 서류는 반환하지 않고 서류 심사 합격자에 한하여 인터뷰를 위해 개별 연락 드립니다.금융업무에 관심있으신 분의 많은 지원 바랍니다. 감사합니다.Job Type: Full-timeSalary: $39,500.00-$65,000.00 per yearBenefits:Dental careExtended health careOn-site parkingPaid time offRRSP matchVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payOvertime payApplication question(s):Did you study/major in accounting?Education:DCS / DEC (preferred)Experience:Customer service: 2 years (preferred)Language:Korean (preferred)Work Location: In personExpected start date: 2023-09-25\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"C5C060F40E4F3B69E4D636270277A969\",\n            \"cityName\": \"Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3c937a8cd39c06c2\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"J'Adore Body Sugaring\",\n            \"rowSalary\": \"$15–$17 an hour\",\n            \"date\": 1694483696897,\n            \"dateOfPosted\": 1694483696688,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.895136,\n                    \"lon\": -97.13837439999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: No degree, certificate or diplomaExperience: 2 years to less than 3 yearsWork setting Beauty shop or aesthetic service Tasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Explain the type and cost of services offered Issue receipts and other forms Order office supplies and maintain inventory Perform general office duties Receive and log complaints Receive payments Sell merchandise Advise clients on advertising or sales promotion strategies Consult with clients after sale to provide ongoing support Answer clients' inquiries and provide information Explain procedures, risks and benefits to clients Supervision Customer service clerk Computer and technology knowledge MS Word Security and safety Basic security clearance Transportation/travel information Own transportation Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Judgement Ability to multitask Screening questions Are you currently a student? Are you currently legally able to work in Canada? Do you have previous experience in this field of employment? Health benefits Vision care benefits Financial benefits GratuitiesWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Winnipeg, MB\"\n        },\n        {\n            \"id\": \"FD6CD254B2F46F48E0698AB28C2F3825\",\n            \"cityName\": \"328 Speedvale Avenue East, Guelph, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fa9229a0ede42929\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Cornell Animal Hospital\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694483694215,\n            \"dateOfPosted\": 1694483693940,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5781857,\n                    \"lon\": -80.2419376\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Guelph\",\n                \"formattedAddress\": \"Speedvale Ave E, Guelph, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Wellington County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Guelph\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title: Customer Service RepresentativeDuties:- Respond to customer inquiries via phone, email, and chat in a timely and professional manner- Provide accurate information about products, services, and company policies- Assist customers with placing orders, tracking shipments, and resolving any issues or complaints- Maintain customer records and update information as necessary- Collaborate with other departments to ensure customer satisfaction- Follow up with customers to ensure their needs have been metRequirements:- Excellent communication skills, both verbal and written- Strong problem-solving abilities and attention to detail- Ability to multitask and prioritize tasks effectively- Proficient in using computer systems and software applications- Previous customer service experience is preferred but not required- High school diploma or equivalentWe offer competitive pay, a positive work environment, and opportunities for growth within the company. If you are a motivated individual with a passion for providing exceptional customer service, we would love to hear from you.To apply, please submit your resume and cover letter detailing your relevant experience and why you are interested in this position.Job Type: Full-timeSalary: $18.00-$20.00 per hourBenefits:Employee assistance programExtended health carePaid time offRRSP matchSchedule:Monday to FridayWeekends as neededAbility to commute/relocate:Guelph, ON N1E 1N5: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Speedvale Avenue East, Guelph, ON\"\n        },\n        {\n            \"id\": \"4EFCF1E5F8DA307E46930C693E067BF3\",\n            \"cityName\": \"805 Crowley Ave, Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=259356db1af2025b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Makr\",\n            \"rowSalary\": \"From $50,000 a year\",\n            \"date\": 1694483661973,\n            \"dateOfPosted\": 1694483661795,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8981956,\n                    \"lon\": -119.4834218\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Crowley Ave, Kelowna, BC V1Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our common goal, our passion, is to create global communities connected through play and social experiences. We believe the world needs more places where coming together, connecting and having fun are inevitable. What makes us jump out of bed every morning is knowing we’re integral to create these meaningful places, and we need people like you to help us build them.Our Customer Service Team, within our global Commercial Group, needs the next, great, Customer Service Representative (CSR) to deliver outstanding support to our sales professionals and our customers. This is a position suited for customer-focused, self-directed, solution-seekers.Our CSRs are a critical piece of the design and sales and process. Astute listeners, knowing how to elicit information from customers to help design and quote the spray park or playground of their dreams. Effective communicators, able to convey the design and technical details of our features, bringing the catalogue pictures to life. Techies, confidently navigating our systems and CRM (Creatio) to create detailed and accurate orders. Part administrator, part advisor and part account manager, you’re 100% problem solver.Although no two days are the same, here are the activities you’ll focus on:· Create documents and reports for internal and external use (sales funnel reports, quotes, contracts)· Support our sales team with administration, trouble shooting and research· Manage the order release process· Participate in training and professional development to learn new and current product solutions, processes and design philosophies· Delve into technical details of processes and systems, curious to find better ways and better methods· Apply your knowledge, maturity and common sense for what is non-negotiable while also knowing where you have autonomy to make adjustmentsJob Types: Full-time, PermanentSalary: From $50,000.00 per yearBenefits:Casual dressCompany eventsDental careDisability insuranceEmployee assistance programExtended health careFlexible scheduleLife insuranceOn-site parkingPaid time offRRSP matchTuition reimbursementVision careWork from homeFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payExperience:Customer service: 1 year (preferred)Work Location: Hybrid remote in Kelowna, BC V1Y 7G6\",\n            \"location\": \"Crowley Ave, Kelowna, BC\"\n        },\n        {\n            \"id\": \"EB65918C48B288106875CA0B595A9A6B\",\n            \"cityName\": \"11474 Winterburn Rd NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=38e5e64addcd300f\",\n            \"jobName\": \"Office Assistant/Customer Service\",\n            \"companyName\": \"Window Mart Inc.\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694483660836,\n            \"dateOfPosted\": 1694483660667,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5517793,\n                    \"lon\": -113.6890038\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Winterburn Rd NW, Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Office AssistantWindow Mart Inc. is the leading provider of windows and doors in Alberta, Saskatchewan, and Ontario. We specialize in supplying and installing beautiful, high-quality, and energy-efficient, windows and doors. As an industry leader in Canada, we are proud to provide our customers with exceptional serviceWindow Mart company is looking for a full time office assistant, we are looking for an enthusiastic, dedicated, and customer oriented person.Please note the interview will be held at our head office in EDMONTON. Related travel expenses will be covered.Responsibilities:Perform various administrative tasks such as filing documents, organizing mail and tracking e-mails.Receiving and tracking phone calls, checking the voicemail and returning the phone calls in a timely manner.Scheduling appointments, keep track of the appointment’s schedule.Communicate with clients, suppliers and work associates as required.Other office activities as determined by the supervisor.Qualifications:Grade 12 Diploma or General Equivalency Diploma (GED).Minimum of 1 year of office experienceProficient in Office 365Good oral and written communication skills, learning ability, initiative, mature judgment and responsible work habits.Job Type: Full-timeSalary: From $20.00 per hourBenefits:Company eventsOn-site parkingPaid time offFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayAbility to commute/relocate:Edmonton, AB T5S 2Y3: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Administrative experience: 1 year (preferred)Front desk: 1 year (required)Work Location: In person\",\n            \"location\": \"Winterburn, AB\"\n        },\n        {\n            \"id\": \"09A90B856C4530A08F7E953AB2D5D8B4\",\n            \"cityName\": \"Atlin, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4b995cc38d3ef797\",\n            \"jobName\": \"Clk 12r - Customer Service Representative\",\n            \"companyName\": \"Bc Public Service\",\n            \"rowSalary\": \"$52,803–$59,608 a year\",\n            \"date\": 1694483646221,\n            \"dateOfPosted\": 1694483646036,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 59.578028,\n                    \"lon\": -133.689524\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Atlin\",\n                \"formattedAddress\": \"Atlin, BC V0W, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Stikine Region\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Atlin\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 52803.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    52803.0\n                ],\n                \"range\": {\n                    \"gte\": 52803.0,\n                    \"gt\": null,\n                    \"lte\": 52803.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Posting Title  CLK 12R - Customer Service Representative  Position Classification  Clerk R12  Union  GEU  Work Options  On-Site  Location  Atlin, BC V0W 1A0 CA (Primary)  Salary Range  $52,803.18 - $59,607.79 annually  Close Date  9/25/2023  Job Type  Regular Full Time  Temporary End Date  Ministry/Organization  BC Public Service -> Citizens' Services  Ministry Branch / Division  Service Delivery/Service BC  Job Summary Apply your expertise and passion for innovation to this rewarding career opportunityMINISTRY OVERVIEWDedicated to making life better for British Columbians, the Ministry of Citizens’ Services (CITZ) delivers key services that people rely on. CITZ delivers accessible, multi-channel services, through a single-point-of-contact service approach to people in urban and rural communities through Service BC, and delivers the digital face of government at www.gov.bc.ca. CITZ also provides support for the expansion of high-speed internet connectivity throughout the province, leadership across government to modernize information management and technology resources, trusted data services to government agencies, prompt, and relevant responses to freedom of information requests, and statistical and economic research, information and analysis to businesses and the public sector. In addition, the ministry manages the Province’s real estate assets, technology systems and equipment, and leverages procurement to increase business opportunities and create rewarding jobs that contribute to local economies and benefit individuals, families, and communities.A service-focused organization, CITZ strives to be a great place to work, where all employees feel both engaged and motivated to do their best.DIVISIONAL OVERVIEWService BC is government’s chief provider of services to B.C. residents and businesses. The work of the division enables the design and delivery of accessible, responsive, and cost-effective services, making it easier for British Columbians and businesses to interact with government. Through a provincial network of 65 in-person offices and the Provincial Contact Center, Service BC provides approximately 300 government services for more than 40 partner ministries and agencies. Our team member’s unwavering commitment to an ethic of service has driven consistently high people and business satisfaction rates. In support of the division’s overarching goal of providing residents and businesses with seamless, multi-service access to government programs, the Division’s service offerings are marketed to partner ministries and the broader public sector to expand our continuum of services and leverage common platforms.Within Service BC, our vision is to deliver innovation, value, and service excellence to the people of British Columbia, with the aspirational goal of becoming a best-in-class public service delivery organization. Our people and our culture are important to us. As a team, we are motivated to deliver an excellent service experience to British Columbians, businesses, colleagues, peers, clients, and partners. We believe in being kind and helpful, and are committed to delivering “Service with Heart”.JOB OVERVIEWThe Service BC Customer Service Representative (CSR) maintains a positive, empathetic, and professional attitude when providing service and answering enquires. It requires the ability to identify and assess peoples’ needs to effectively and efficiently deliver an excellent customer service experience.The CSR provides services in-person, by phone, and through digital channels. The ability to provide clerical and administrative support such as data entry, reviewing applications for completeness, handling payments, and providing appropriate solutions, within government guidelines to a diverse population of people is essential to this role.JOB REQUIREMENTSMinimum Grade 12 graduation or equivalent (GED).Experience providing inclusive customer service to diverse clienteles. Experience using digital applications to search for and record information. Preference may be given to applicants with the following:Multiple years of experience in any of the above requirements.Experience providing in-person customer service.Experience providing customer service though phone or digital channels.Experience delivering customer service in a high volume, fast-paced, rapidly changing environment.Experience with conflict resolution and de-escalating situations.Experience providing services to a diverse population some of whom may be experiencing poverty issues, substance use, or mental health concerns.Experience maintaining administrative files and record keeping.Experience delivering service in a regulated or legislated environment following processes and procedures.Customer Service training and/or education. Experience handling financial transactions. WILLINGNESS Willingness to travel occasionally to provide relief coverage to other work sites (Service BC Centres, exam locations, etc.). For questions regarding this position, please contact melody.olsen@gov.bc.caAbout this Position:An eligibility list may be established to fill future temporary and permanent vacancies across the Ministry of Citizens' Services This position has full time on-site requirements.Employees of the BC Public Service must be located in BC at the time of employment.Frequently referred to as the Switzerland of the North, Atlin resides on the province's largest natural lake, Atlin Lake. Atlin is also home to massive ice fields and popular activities include boating, fishing, and skiing. Some unique activities distinct to Atlin are glacier hiking and snowshoeing, and mountain biking is also popular.Working for the BC Public Service:The BC Public Service is committed to creating a diverse workplace to represent the population we serve and to better meet the needs of our citizens. Consider joining our team and being part of an innovative, inclusive and rewarding workplace.The Indigenous Applicant Advisory Service is available to applicants that self-identify as Indigenous (First Nations, status or non-status, Métis, or Inuit) seeking work or already employed in the BC Public Service. For guidance on applying and interviewing, please contact IndigenousApplicants@gov.bc.ca or 778-405-3452.The BC Public Service is an award-winning employer and offers employees competitive benefits, amazing learning opportunities and a chance to engage in rewarding work with exciting career development opportunities. For more information, please see What We Offer.How to Apply:Your application must clearly demonstrate how you meet the job requirements listed above.Cover Letter: NO - Please do not submit a cover letter as it will not be reviewed.Cover Letter: YES - A cover letter is required as part of your application. The content and/or format of your cover letter may be evaluated as part of the assessment process.Questionnaire: YES - You will need to complete a comprehensive questionnaire to demonstrate how you meet the job requirements. Include all relevant information about your educational accomplishments and employment history including job titles, start and end dates (month and year) of your employment, and how you obtained your relevant experience. The questionnaire will take approximately 60 minutes to complete.Helpful tips, videos and more regarding the application process can be found on the Your Job Application page of MyHR. If you are experiencing technical difficulty applying, e-mail BCPSA.Hiring.Centre@gov.bc.ca, before the stated closing time, and we will respond as soon as possible.Additional Information:A Criminal Record Check (CRC) will be required.Applicants selected to move forward in the hiring process may be assessed on the Knowledge, Skills, Abilities and Competencies as outlined in the attached Job Profile located at the bottom of the posting.Applications will be accepted until 11:00 pm Pacific Standard Time on the closing date of the competition. Job Category  Administrative Services \",\n            \"location\": \"Atlin, BC\"\n        },\n        {\n            \"id\": \"68B957ADE4A915DCCBF714F7638157AB\",\n            \"cityName\": \"Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f0645a438b3fbaaa\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Cloverdale Paint Inc\",\n            \"rowSalary\": \"$17.50–$18.50 an hour\",\n            \"date\": 1694483460401,\n            \"dateOfPosted\": 1694483459997,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4284207,\n                    \"lon\": -123.3656444\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cloverdale Paint is the largest family owned and operated paint company in North America. With over 70 Company stores and 150 Authorized Dealers across Canada, Cloverdale Paint has had a special relationship with its customers ever since the company was founded in 1933.Cloverdale Paint has an immediate opening for a full-time position at our store in Victoria, BC The successful candidate should have previous customer service experience and a positive attitude.This individual should be available to work for 4-5 shifts per week.We are located at 1616 Cedar Hill X Road, Victoria, BCCloverdale offers a very competitive compensation package and strives to be The Place to Be not only for customers but employees as well.WHAT WE OFFERCompany paid benefits – Medical, Dental and VisionAnnual cost of living salary increasesProfit-sharing ProgramFamily Assistance ProgramStaff DiscountsComprehensive trainingA supportive and growth-oriented management teamA great work environment with collaborative and caring colleagueRESPONSIBILITIESAnswering basic customer inquiries in person and by phoneDetermining and recommending products to customers ensuring the customer is supplied with all items required for their projectTinting & shaking paint accuratelyKeying in sales and operating basic functions of the POS systemREQUIREMENTSAt least 1-year of Retail Sales and/or Paint Industry experienceAbility to lift up to 50lb regularlyAbility to stand for long periods of timeAbility to work in a fast-paced environmentExcellent customer service skillsAttention to detailGood communication skillsStrong problem solving skillsTeam playerStrong work ethic, with a can-do attitudeWe are accepting resumes in store from candidates at 1616 Cedar Hill X Road, Victoria, BCOur employees enjoy excellent work environments, respectful workplaces with credible leadership and receive fair remuneration and annual profit sharing. Be part of a Canadian family owned business and be valued, appreciated and respected!Job Types: Full-time, PermanentSalary: $17.50-$18.50 per hourBenefits:Casual dressDental careEmployee assistance programExtended health careFlexible scheduleOn-site parkingPaid time offProfit sharingStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftWeekends as neededAbility to commute/relocate:Victoria, BC: reliably commute or plan to relocate before starting work (required)Application question(s):Are you capable of standing for long periods of time?Are you capable of lifting up to 50 lb regularly?Are you available to work 4-5 shifts per week?Are you available to work weekends?Experience:Customer Service: 1 year (required)Paint/Coatings: 1 year (required)Work Location: In person\",\n            \"location\": \"Victoria, BC\"\n        },\n        {\n            \"id\": \"AC816F08EE5005062CC04BB8DC9426B1\",\n            \"cityName\": \"4848 Victoria Avenue, Niagara Falls, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8b442bd5ea76027f\",\n            \"jobName\": \"Customer Service And Programming Manager\",\n            \"companyName\": \"Niagara Falls Public Library\",\n            \"rowSalary\": \"$52.92 an hour\",\n            \"date\": 1694483413958,\n            \"dateOfPosted\": 1694483413535,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1046199,\n                    \"lon\": -79.07322769999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara Falls\",\n                \"formattedAddress\": \"Victoria Ave, Niagara Falls, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Niagara Falls\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 53.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    53.0\n                ],\n                \"range\": {\n                    \"gte\": 53.0,\n                    \"gt\": null,\n                    \"lte\": 53.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Manager, Customer Service and ProgrammingNiagara Falls Public LibraryFull-Time, PermanentNiagara Falls Public Library is seeking an individual for the role of Customer Service and Programming Manager to lead and manage library staff in creating an outstanding library experience and ensuring that services satisfy the communities’ diverse needs.This encompasses developing a deep understanding of the community; working with others to plan, design, deliver, and assess frontline public services and programs including circulation and information services, collections, and the maintenance of loans delivered through all Library locations; and working with the Management Team to identify and assess current services for improvement or redesign.The successful candidate will have a demonstrated commitment to organizing and managing a strong team, strong attention to detail, and enthusiasm for delivering exceptional services that meet community needs. The successful candidate will also demonstrate responsibility and a strong work ethic.Key Responsibilities:Leadership:· Directs the development, delivery and evaluation of all loans, collection and information services, and programmes to all ages and to all customers, ensuring system-wide coordination.· Implements services that complement each other at NFPL's physical and virtual branches.· Develops short and long-term customer service plans to implement the Library's strategic objectives.· Implements and sustains customer-centred services, both in person and in virtual space.· Ensures that service offerings throughout the system meet the Library's short and long-term objectives, and are consistent and fully supported.· Guides a frontline team that engages with vulnerable populations requiring connections to community supports.Management:· Collaborates with management and staff teams to ensure the effective and efficient delivery of system-wide library services, in order to fulfill the Library's strategic objectives.· Ensures that service offerings throughout the system meet the Library's short and long-term objectives, and are consistent and fully supported.· Ensures the consistent, effective and customer-friendly delivery of all public services.· Operationalizes service changes and innovations.· Monitors and interprets operational and service trends, including those from other organizations, and ensures relevant adaptations.· Evaluates service performance to ensure consistency and relevance to the communities served.· Manages public relations, including customer feedback and complaints.· Applies change management strategies to assure effective implementation of change and acceptance by all.· Makes presentations and represents the Library at public meetings and in the community as required.· Manages the effective performance of all staff directly or indirectly supervised.· Prepares statistics and reports as required.· Stays abreast of professional and community knowledge, in order to enhance services and the· Library's community role.· Attends and participates in Board and Board Committee meetings as required.· Participates in the budget process to ensure adequacy of resources to execute objectives and monitors assigned budgets.· Ensures effective operation of physical plant and equipment.· Manages major projects.· In the absence of the CEO and Director of Customer Experience, acts as senior leader of the corporation of NFPL with delegated powers of authority in all areas including but not limited to: Human Resources; Emergency Management; and Communications.· Shares accountability for ensuring a safe and respectful workplace.· Other duties consistent with job responsibilities.Skills, Knowledge, Training:· Master's Degree in Library and Information Science or equivalent qualification. Master’s in Public Administration, or Masters in Business Administration, or Masters in Social Work considered an asset.· Minimum of seven (7) years related library experience in progressively responsible positions, including five (5) years in a managerial capacity.· Valid G-class License and access to a vehicle.· Demonstrated familiarity with data from various sources and in various formats.· Demonstrated familiarity with current technology.· Key Competencies:· Superior communications· Commitment to outstanding customer service· Data analysis· Planning and organization· Problem-solving/decision-making· Continuous learning· Innovativeness/Change management· Superior interpersonal skills· Leadership focus· Supervisory effectiveness· Engagement and Outreach· Technology - Level Three· Reader’s Advisory & Reference· Programming and OutreachWorkplace Environment:The NFPL strives to be a workplace which fosters respect for all customers and co-workers, and requires employee commitment to the following;· Adherence to the legal requirements of all levels of government, e.g. Health and Safety, Human Rights, Harassment, Freedom of Information and Privacy.· Adherence to the policies and procedures of the Library which implement these requirements.· Building and nurturing positive relationships among and with customers and colleagues.· Culture of teamwork, collaboration and respectful feedback.Position Type:Full-Time, permanentWage:$52.92Work Hours:This position requires day availability in order to support library operations.How to Apply:Email your cover letter and resume detailing your qualifications to hr@nflibrary.caApplications deadline is 4:30 PM Friday September 22nd.Applicants must be eligible to work in Canada. Police/Vulnerable Sector Check required.While we appreciate all applicants, only those selected for an interview will be contacted.The Niagara Falls Public Library is committed to providing accommodations in all aspects of the recruitment and hiring process under the Ontario Human Rights Code and the Accessibility for Ontarians with Disabilities Act (AODA).Job Types: Full-time, PermanentSalary: $52.92 per hourBenefits:Employee assistance programOn-site parkingPaid time offSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Niagara Falls, ON L2E 4C5: reliably commute or plan to relocate before starting work (required)Education:Master's Degree (preferred)Experience:Library: 7 years (preferred)managerial: 5 years (preferred)Work Location: In personApplication deadline: 2023-09-22\",\n            \"location\": \"Victoria Avenue, Niagara Falls, ON\"\n        },\n        {\n            \"id\": \"6A89C7C99D81F72A0362E293665D0739\",\n            \"cityName\": \"55 Ontario Street South, Milton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8a4ae7e763afdd51\",\n            \"jobName\": \"Receptionist/ Customer Service Representative/ Party Host\",\n            \"companyName\": \"Funvilla\",\n            \"rowSalary\": \"$15.50–$16.00 an hour\",\n            \"date\": 1694483311347,\n            \"dateOfPosted\": 1694483311164,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5127272,\n                    \"lon\": -79.86986399999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Milton\",\n                \"formattedAddress\": \"Ontario St S, Milton, ON L9T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Milton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Funvilla® is a fast paced and demanding working environment providing a service to the public Monday to Sunday. Therefore enthusiasm, good communication and flexibility are all important aspects of the job. The role of the Customer Service/Receptionist is to deliver high quality customer service in all areas of the park to ensure that all customers and participants have an enjoyable and safe experience. The Customer Service/Receptionist will take direction from management in carrying out delegated tasks and adopt a leadership role in areas assigned to him/her as required.DUTIES & RESPONSIBILITIES: FRONT DESK/RECEPTION/PARTY HOST1. Ensure that all customers feel welcome and are given responsive, friendly and courteous service always.2. Efficiently check in customers ensuring that waivers have been completed fully (online or paper), allocate relevant color-coded wristbands and compulsory grip socks.3. Provide necessary park information at customer’s request e.g. opening times, prices, safety information, information on services we offer i.e. Birthday Parties etc.4. Ensure the reception area is always kept clean & tidy .5. Conduct regular grip sock replenishment.6. Answer phone calls promptly.7. Host birthday parties as per Funvilla guidelines.8. Provide best party experience during party hosting by providing exceptional customer service during the party and clean up room once party is over.Need someone who can work Weekends Saturday-Sunday and during the week!Job Types: Permanent, Part-time, Full-timeSalary: $15.50-$16.00 per hourFlexible Language Requirement:French not requiredSchedule:Every WeekendHolidaysMonday to FridayExperience:Customer Service: 1 year (preferred)Licence/Certification:Food Handler Certification (preferred)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Ontario Street South, Milton, ON\"\n        },\n        {\n            \"id\": \"86501F5C266D8F498CFEA6384768F73F\",\n            \"cityName\": \"SBO Distributors Ltd. in North Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=13a5d01ddb44d12d\",\n            \"jobName\": \"Customer Service And Data Entry\",\n            \"companyName\": \"Sbo Distributors Ltd.\",\n            \"rowSalary\": \"$40,000–$45,000 a year\",\n            \"date\": 1694483306664,\n            \"dateOfPosted\": 1694483306471,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3199816,\n                    \"lon\": -123.0724139\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"North Vancouver\",\n                \"formattedAddress\": \"North Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"North Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"SBO Distributors Ltd. is a fast growing, fast paced sales and marketing agency working in the mid to high-end gift, jewellery, fashion and accessories/life style market. We work with leading department stores and independent retailers across Canada. We are looking for a strong candidate for a Customer Service and Data Entry position.The Opportunity:A key member of the SBO Distributors Ltd team, the Customer Service and Data Entry personnel will be responsible for a wide variety of administrative support and will also work closely with our customers to ensure high customer satisfaction.The candidate must be able to:Work independently in a small office of 1-4 peopleEnter data and sales orders proficiently and accurately in various forms from excel to online submission (training will be provided)See through order processes including order entering, confirmation, courier tracking and invoicingHandle inbound/outbound calls, providing all customers with exceptional positive customer serviceAssist with Marketing and Sales projectsPerform day-to-day office tasks such as pack and ship small parcels, letters, and photocopy, scan documents, receive delivery (generally small deliveries).We expect the candidate to be efficient, honest, respectful, creative, independent, modest, growth oriented and possessing an excellent customer service mentalityEducation and skills:Post Secondary degree or diplomaExcellent command in Microsoft Office applications (Word, Excel, Powerpoint, Outlook)Tech-Friendly preferred – able to adapt to new softwareHave experience in SAP/Netsuite would be an assetFluency in English is required. Knowledge and/or competency in French is an assetSelf motivated, analytical and very detailed orientedHighly organized and the ability to prioritize and multitaskStrong interpersonal and communication skills on the phone and in personPassionate about helping customers and being the ambassador of the brands we representCandidate must be reliable, responsive and good at relationship buildingWhat we have to offer:A tight-knit team working closely togetherAn open minded and flat management style with plenty of opportunities to offerCompetitive compensation and benefit packageThis position is a full time, permanent position. Following successful completion of probationary period, the position is eligible for health benefits.Very convenient office location close to bus stops and Sea BusExcellent working environmentVacation pay aligns with BC Labour StandardsSalary is commensurate with experienceSBO Distributors Ltd. provided the following inclusive hiring information:We are an equal opportunity employer and consider all qualified applicants equally without regard to race, colour, religion, sex, sexual orientation, gender identity, national origin, veteran status, or disability status.Job Type: Full-timeSalary: $40,000.00-$45,000.00 per yearBenefits:Casual dressDental careExtended health careStore discountVision careSchedule:Monday to FridaySupplemental pay types:Bonus payEducation:Bachelor's Degree (preferred)Experience:Administrative: 1 year (preferred)Customer Service: 1 year (preferred)Language:English (required)Work Location: In personExpected start date: 2023-10-16\",\n            \"location\": \"North Vancouver, BC\"\n        },\n        {\n            \"id\": \"A116DB6C33325A5B5C1CBE05649A8474\",\n            \"cityName\": \"Halton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=333bd7be3c641686\",\n            \"jobName\": \"Customer Service Representative - Long-Term Care\",\n            \"companyName\": \"Halton Region\",\n            \"rowSalary\": \"$19.56–$20.72 an hour\",\n            \"date\": 1694483039952,\n            \"dateOfPosted\": 1694483039760,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.53253720000001,\n                    \"lon\": -79.87448359999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Regional Municipality of Halton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative - Long-term Care At Halton Region, we treat everyone with respect, honesty, fairness and trust. As an equal opportunity employer, we are committed to establishing a qualified workforce that is reflective of the diverse population we serve. Halton Region is committed to providing accommodation to individuals with disabilities throughout the recruitment process.We are proud to operate three non-profit long-term care homes where our employees make a meaningful contribution on the lives of the residents by providing quality care in a family-like atmosphere. As an employee, you will be part of a progressive, service-focused and award winning employer with a diverse and inclusive work environment. We are also recognized as a Registered Nurses' Association of Ontario (RNAO) Best Practice Spotlight organization.You make a positive difference in people’s lives because you provide high quality customer centered services. You operate within a highly ethical environment and will be accountable for going the extra mile, listening to your customers, creatively meeting needs and always being respectful to those you serve. As a result, you will be part of a qualified and strategic team recognized widely for caring, excellence, integrity, inclusiveness and flexibility.Posting ID: 2304Department: Social & Community ServicesDivision: Services for SeniorsPay Range: $19.56 - $20.72Job Type: PermanentHours of Work: 14 hours per weekWork Location: Creek Way Village Long Term Care Facility - 5200 Corporate Drive, BurlingtonEmployee Group: OPSEU LTCPosting Date: September 11, 2023Application Deadline: September 18, 2023 Job Summary This role is the first point of contact for visitors to the Home. This role will provide customer service and clerical support for the Home.Duties & ResponsibilitiesProvide coverage of the reception desk and telephone systems.Greet visitors, respond to and or direct family/residents/visitors’ inquiries.Ensure that the front entry is secure, entry cards are monitored.Monitor the Wander Guard alarms and liaise with the Nurse in Charge as appropriate.Actively screen all staff and visitors entering the home and ensures all protocols for entering the home are adhered to.General office administration including room bookings, ordering and set up of refreshments, posting of materials, office supply inventory, ordering, unpacking and storing, maintaining tour packages and other forms, receipt and distribution of pay stubs.Work with the managers to assist with job postings, performance review and training schedules, immunization databases, credential validation, etc.Provide administrative and clerical support for all departments, including meal ticket administration and receipt of new resident’s clothing, supply delivery as required, and support with minute taking.Assist with updating emergency evacuation kits and any required documentation including photographs.Assist with communication to internal and external stakeholders.Coordinate the scheduling of various clinics in the home including optometry, dental, foot care in collaboration with the service provider.Assist in the admission process through chart assembly, bringing up resident belongings and other related duties.Assist with conducting tours of the home with potential customers.Provide back up support as necessary for the Administrative Assistant to the Administrator and the Resident Care Clerk.Participate in the annual filing and archiving of home documents.Other duties as assigned.Skills & Qualifications EssentialPost-secondary diploma in business administration or related field.Minimum of 2 years’ experience in a customer focused position.Excellent interpersonal skills with the ability to maintain a professional, empathetic and positive environment for all customers.Highly adaptable with the ability to work in a fast-paced environment.Ability to work as part of a team and independently.Excellent problem/complaint resolution skills with the ability to maintain professionalism and composure when responding to customer demands.Demonstrated experience in Microsoft Office software is essential with intermediate to advanced skills in Word, Excel, PowerPoint, and Outlook.Working/ Employment Conditions Employment ConditionsCurrent (obtained within the past six (6) months), original and acceptable Criminal Records Check, including Vulnerable Sector Screening.Current two-step tuberculosis test (obtained within the past six (6) months.Important information about your application:In accordance with requirements in Ontario Regulation 191/11 – Integrated Accessibility Standards and the Ontario Human Rights Code, Halton Region will accommodate the needs of individuals with disabilities throughout the recruitment process. If you require accommodation at any stage of the recruitment process, please inform the Talent Acquisition representative of the nature of the accommodation(s) you require.Please submit your application online. We will accommodate individual needs for applicants with disabilities and others who are not able to apply online. If you experience any issues with submitting your application, please contact HR Access at 905-825-6000 extension 7700.Applications will be accepted until 11:59 p.m. on the deadline date specified on the posting.We encourage applications from all qualified individuals; however, only those under consideration will be contacted.Personal information collected through the job application process will only be used for the purpose of determining qualifications for employment.If selected for an interview, you will be contacted by email and/or phone. Please ensure the contact information provided on your resume is up to date and that you check your email and voicemail regularly.Halton Region serves more than 624,000 residents throughout Burlington, Halton Hills, Milton and Oakville. We are committed to the delivery of high quality programs and services that make Halton a great place to live and work. We engage great people who contribute to meaningful work that makes a positive difference in our community. At Halton, you are encouraged to grow and succeed in your career and are recognized for your accomplishments and contributions.\",\n            \"location\": \"Halton, ON\"\n        },\n        {\n            \"id\": \"8FDEDE52278E57E7AE484547E57728DF\",\n            \"cityName\": \"grt genesis in Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1d3295610d288688\",\n            \"jobName\": \"Technical Customer Service Representative\",\n            \"companyName\": \"Grt Genesis\",\n            \"rowSalary\": \"From $40,000 a year\",\n            \"date\": 1694483013897,\n            \"dateOfPosted\": 1694483013617,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Establish long- term relationships with clients through proactive communication and regular follow -ups to ensure superior client satisfactionManage accounts by checking customers purchasing history, suggest related and new products.Mechanical Engineering experience an assetDevelop and implement strategies that effectively offer customers products or services that best satisfy their needs in terms of quality, price and deliveryEstimating and Expediting an assetmust read write EnglishOutgoing personalityStrong work ethic, with attention to client needs and projectsAbility to work successfully both autonomously and within a teamKey values include a positive attitude ,and team player.Ability to build strong relationships quickly and effectively.computer skillsJob Types: Full-time, PermanentSalary: From $40,000.00 per yearBenefits:Casual dressCompany eventsExtended health careLife insuranceOn-site parkingVision careSchedule:8 hour shiftDay shiftMonday to FridayEducation:AEC / DEP or Skilled Trade Certificate (required)Experience:Technical support: 2 years (required)Work Location: In personExpected start date: 2023-09-18\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"CB0FCCB6D8952DEEDA75135C505A9D49\",\n            \"cityName\": \"94 Dunkirk Road, St. Catharines, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d9aaa28713c4d613\",\n            \"jobName\": \"Front Office Customer Service Representative\",\n            \"companyName\": \"Niagara Rubber Supply\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694483011400,\n            \"dateOfPosted\": 1694483011199,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.16893109999999,\n                    \"lon\": -79.21492409999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St. Catharines\",\n                \"formattedAddress\": \"Dunkirk Rd, St. Catharines, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"St. Catharines\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title: Customer Service RepresentativeDuties:- Provide exceptional customer service by responding to customer inquiries and resolving issues in a timely and professional manner- Handle a high volume of incoming calls, emails, and live chats from customers- Accurately enter customer information and update account details in the system- Assist customers with product information, pricing, and order status inquiries- Process customer orders, returns, and exchanges- Collaborate with other departments to ensure customer satisfaction- Maintain a thorough understanding of company products, policies, and procedures- Identify and escalate priority issues to appropriate team members- Follow up with customers to ensure their needs are met and provide additional assistance as neededQualifications:- High school diploma or equivalent required; college degree preferred- Hands on experience required - on the job training- Excellent communication skills, both verbal and written- Strong problem-solving and decision-making abilities- Ability to work well under pressure in a fast-paced environment- Proficient computer skills, including experience with CRM software and Microsoft Office Suite- Ability to multitask and prioritize tasks effectively- Positive attitude and willingness to go above and beyond for customersWe offer competitive pay and opportunities for career growth within our organization.If you are a motivated individual with a passion for delivering exceptional customer service, we would love to hear from you. Please submit your resume and cover letter detailing your relevant experience.Job Type: Full-timeSalary: $18.00-$20.00 per hourFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Bonus payAbility to commute/relocate:St. Catharines, ON L2P 3H4: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Hand tools: 1 year (preferred)Customer service: 1 year (preferred)Licence/Certification:Driving Licence (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Dunkirk Road, St. Catharines, ON\"\n        },\n        {\n            \"id\": \"F2625E0AF9A4B05CC77EE74C795B39A2\",\n            \"cityName\": \"1550 Carling Ave, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a1257800985815a8\",\n            \"jobName\": \"Customer Service Receptionist\",\n            \"companyName\": \"Young Drivers Of Canada\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694482891642,\n            \"dateOfPosted\": 1694482891442,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.35917600000001,\n                    \"lon\": -75.79599209999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Carling Ave, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About UsWe are a locally-owned family business operating all Young Drivers locations in Ottawa. We run the daily operations for all 5 locations out of our office located next to our Carling classroom. YD Ottawa, we're more than just a driving school—we're a community. Our team thrives on collaboration, inclusivity, and a genuine love for our work. We're LGBTQ+ friendly and committed to supporting each other at every turn. If you're a team player who doesn't take life too seriously but values hard work, you'll fit right in.ResponsibilitiesPrioritize tasks effectivelyAnswer phones and emails and efficiently address customer queries and manage bookingsHandle administrative tasks: paperwork, emails, scheduling and date entryUse conflict resolution skills to find solutions for customers that are not pleasedBuild and maintain a positive rapport with customersQualificationsHighschool diplomaCustomer service experienceOffice admin experience is preferred, not mandatorySkillsSelf-starter with attention to detailComfortable on the phone and customer relationsWillingness receive feedback and make improvements to their customer resolution and inbound sales skillsTeam player, loyal, empathetic, and reliableStrong written and verbal communication skillsA sense of humour and a positive attitudeKey Performance IndicatorsCustomer satisfactionTask completionFeedback from colleaguesOpportunities for Professional DevelopmentBased on performance, there are opportunities to take on additional responsibilities and grow within the business. We are committed to helping our team grow by sharing our range of skills and experiences. We're always open to hosting or signing up for workshops to help us all thrive. Collaboration is key here—your ideas are always welcome.Flexible Work ArrangementsOnce you're fully trained and capable of working independently, we offer a modified workweek: you'll work 9 hours for four days a week, and 8 hours on the fifth day. This fifth day alternates with a day off the following week.How to Apply:Complete the assessments within this job posting to be considered for an interview. Initial interviews may be followed up with a second round for suitable candidates. While we'll cover the usual interview questions, we also make room for open conversation. We're interested in more than just your qualifications; we want to get to know you and see your unique personality come through.Job Types: Full-time, PermanentSalary: $20.00-$22.00 per hourBenefits:Casual dressDental careExtended health careOn-site parkingPaid time offVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftAbility to commute/relocate:Ottawa, ON K1Z 8S8: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:customer service experience in an office setting: 2 years (preferred)Language:English (required)Work Location: In person\",\n            \"location\": \"Carling Avenue, Ottawa, ON\"\n        },\n        {\n            \"id\": \"094396118CED4C84CFA4653F5AF2FDF8\",\n            \"cityName\": \"517 Pandora Ave E, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9979e9de227f9bbf\",\n            \"jobName\": \"Customer Service - Transcona East End Community Club\",\n            \"companyName\": \"Transcona East End Community Club\",\n            \"rowSalary\": \"$14 an hour\",\n            \"date\": 1694482887847,\n            \"dateOfPosted\": 1694482887674,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8934199,\n                    \"lon\": -96.9859699\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Pandora Ave E, Winnipeg, MB R2C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Front Desk Staff - Must be 18About usTranscona East End Community Club - Front Desk StaffGreeting players, coaching staff and visitors as they enter the facility.Collect payment for ice and hall rentals.Greeting players, coaching staff and visitors as they enter the facility.Directing visitors to follow health and safety protocol. Some experience working with the pubic is preferable.Job Type: Part-timePart-time hours: 10-15 per weekSalary: $14.00 per hourSchedule:Evening shiftWeekends as neededCOVID-19 considerations:We provide all PPE.Experience:Customer Service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Pandora Ave E, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"AAD8134F2A12D668EC03E7202D5F3E8F\",\n            \"cityName\": \"407-8 Speers Rd, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=aa8408bbe410a944\",\n            \"jobName\": \"Front Desk Customer Service Representative\",\n            \"companyName\": \"Oakville Swim Academy\",\n            \"rowSalary\": \"$16.50–$19.00 an hour\",\n            \"date\": 1694482880889,\n            \"dateOfPosted\": 1694482880700,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4274228,\n                    \"lon\": -79.70875029999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Speers Rd, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Duties and Responsibilities:Answers telephones, responds to inquiries, takes messages and screens and directs phone calls in a professional manner.Create and update social media accounts under the supervision of communication & external relations director.Processes student registrations using effective sales/customer service techniques.Resolves customer concerns/complaints using a professional approach.Assists members with purchases of merchandise and vending.Greets parents and students as they report to the front desk.Checks in students on the attendance tracking system.Maintains cleanliness of the front desk area, changing areas, restrooms and observation area.Checks voicemail and email correspondence and responds in a timely manner.Updates informational displays with accurate and timely promotions and literature.Provides occasional administrative support for management personnel, including the General Manager.Makes collection calls to resolve open account problems.Prepares daily student lesson schedules for use by deck supervisor and/or instructors.Enforces safety rules and regulations to prevent accidents.Fulfills other duties and responsibilities as assigned by the Employer.Education/Experience:High school diploma or GED required.Some college preferred.One to two years previous customer service and/or administrative office experience preferred but not required.Intermediate level computer skills required using Word, Excel and other software systems.Experienced in JackRabbit software preferred but not required.Certifications and licenses:CPR, First Aid and AED certification preferred but not required.NLS + Instructors certification preferred but not required.Work Remotely:NoFirst 3 months start at $16.50/hr. Once probation period has been successfully completed, move up to agreed rate of pay.Training for new CSR hires will be conducted during the beginning of August, specifically during morning shifts between 7:00 am and 1:30 pm. We understand the importance of a flexible schedule, especially during the initial weeks of transitioning into the role. As such, we offer flexible shifts for the first 2-3 weeks of September to accommodate individual availability.Following the initial training period, starting from the end of September, regular evening and weekend shifts will commence. This will provide a more stable schedule for our Customer Service Representatives.We aim to create a work environment that supports a healthy work-life balance, and we appreciate your understanding and willingness to adapt to the evolving shift requirements.Job Types: Part-time, PermanentPart-time hours: 10-20 per weekSalary: $16.50-$19.00 per hourBenefits:Casual dressCompany eventsFlexible scheduleOn-site parkingStore discountTuition reimbursementWellness programFlexible Language Requirement:French not requiredSchedule:10 hour shift4 hour shift8 hour shiftDay shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Oakville, ON: reliably commute or plan to relocate before starting work (required)Application question(s):Are you available to work between the hours of 2pm-10 pm on weeknights and / or 7 am -5:30 pm on weekends?Are you available to work on Monday's and or Tuesday's 2-9:30 and Saturday's 7:00-1:30 pm?Education:Secondary School (preferred)Experience:Customer service: 1 year (required)Work Location: In personApplication deadline: 2023-09-18Expected start date: 2023-09-23\",\n            \"location\": \"Speers Rd, Oakville, ON\"\n        },\n        {\n            \"id\": \"9C7DFBAB31BBC06A52286F9E9905185C\",\n            \"cityName\": \"1-6503 67 St, Red Deer, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e778326775e946a3\",\n            \"jobName\": \"Technical Support & Customer Service Agent (Bilingual English/French)\",\n            \"companyName\": \"Visual-Eyes Software (Soth Inc.)\",\n            \"rowSalary\": \"$18.52–$20.23 an hour\",\n            \"date\": 1694482231258,\n            \"dateOfPosted\": 1694482231012,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.268975,\n                    \"lon\": -113.8115599\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Red Deer\",\n                \"formattedAddress\": \"Red Deer, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Red Deer County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Red Deer\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Visual-Eyes is a leading practice management software for the eye care industry in Canada. We have been in business for over 25 years and are looking for a new Technical Support & Customer Service Agent (Bilingual in French/English) to join our Red Deer team. Our Core Purpose is to be \\\"Partners in the journey to success\\\" with our clients and what we do best is to \\\"Streamline Business Processes\\\".The Technical Support Agent’s primary focus is to provide premium remote customer service to our clients related to their Visual-Eyes software. This position must be able to quickly resolve basic issues in order to maintain a manageable queue level, and also manage customer call backs / follow ups appropriately.This position, once fully trained, is required to carry the emergency support phone after hours in a weekly rotation with the other 8 agents. As well, occasional evening/weekend work is required to update our clients’ software version while they are closed for business. Extra compensation is provided for both the on-call emergency phone and updates after hours.What do we offer? An exciting career opportunity, full health benefits, Group RRSP's, monthly staff events, a relaxed corporate atmosphere (you can wear jeans to work), and the chance to work with a group of crazy talented people who are driven to do what's best for our clients.Requirements:- Bilingual in French and English- Good Attitude and Solid Work Ethic- High Attention to Detail- Customer Service experience- Technical aptitudeTo learn more about us, please visit us at: www.visual-eyes.ca*We thank all candidates who apply, however, only those considered for an interview will be contacted.**We have a scent free office.Job Types: Full-time, PermanentSalary: $18.52-$20.23 per hourBenefits:Casual dressCompany eventsDental careDisability insuranceEmployee assistance programExtended health careLife insuranceOn-site parkingPaid time offRRSP matchSchedule:8 hour shiftMonday to FridayOn callAbility to commute/relocate:Red Deer, AB T4P 1A3: reliably commute or plan to relocate before starting work (required)Language:French (required)Work Location: In person\",\n            \"location\": \"Red Deer, AB\"\n        },\n        {\n            \"id\": \"9E4C2B2D218FDD9B1B29F96480B44F3B\",\n            \"cityName\": \"2106 Truscott Dr, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2a599f6f78663aa4\",\n            \"jobName\": \"Customer Service Representative And Animal Care Assistant\",\n            \"companyName\": \"Southdown Animal Clinic\",\n            \"rowSalary\": \"$16–$23 an hour\",\n            \"date\": 1694482155737,\n            \"dateOfPosted\": 1694482155546,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5191697,\n                    \"lon\": -79.6409623\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Truscott Dr, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Southdown Animal Clinic is dedicated to providing excellent quality care with compassion and high standards of medicine & surgery. We are looking for a positive individual who is passionate about animals and works well with people. The individual must have good people skills and organizational skills. The individuals core focus will be as a part of the front desk team, as a client care specialist/receptionist. The team member will also be cross-trained on all aspects of patient handling & restraint, providing treatment, surgical prep and hospital sanitation. Previous animal experience and customer service experience is an asset. Strong communication skills required. A passion for all animals is required. Must work well as part of a team at the clinic. This is a full time, permanent position. PLEASE PROVIDE A COVER LETTER ALONG WITH YOUR RESUME.Job Type: Full-timeSalary: $16.00-$23.00 per hourBenefits:On-site parkingSchedule:10 hour shiftHolidaysMonday to FridayWeekends as neededCOVID-19 considerations:Masks are optional to clients and staff.Ability to commute/relocate:Mississauga, ON: reliably commute or plan to relocate before starting work (preferred)Education:Secondary School (preferred)Work Location: In personExpected start date: 2023-10-01\",\n            \"location\": \"Truscott Dr, Mississauga, ON\"\n        },\n        {\n            \"id\": \"41B094D082774A1011BB9523515300CC\",\n            \"cityName\": \"Levelup Reality in Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=86642eec3e63ab7c\",\n            \"jobName\": \"Vr Arcade Customer Service Representative Or StOre Associate\",\n            \"companyName\": \"Levelup Reality\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694479048146,\n            \"dateOfPosted\": 1694479047958,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"PLEASE DO NOT CONTACT OR EMAIL ARCADE DIRECTLY ABOUT JOB OPPORTUNITIES. ALL COMMUNICATIONS WILL BE VIA INDEED.Job SummaryAre you tech-savvy and great at games? A friendly game master who enjoys teaching others?We are looking for VR Customer Service Representatives or Associates to help customers have fun in the exciting world of VR! Bonus: You'll get to learn about virtual reality and play lots of games!RequirementsThe role requires weekday and weekend availability (minimum Thursday, Friday, Saturday, Sunday, and Holidays).Benefits and CompensationIncludes Performance Bonuses and Tips!Skills That We're Looking For:You love teaching new things: You enjoy showing customers how to learn something new for the first time.You’re great with teamwork: You work well with others in a team-based environment.You have strong customer service support: You are patient with the customer or client regardless of technological affinity, gaming background, and/or disabilities. You can take the time to listen and understand their concerns and can diffuse tense moments if they arise.You’re tech-savvy: You are well informed about and proficient in the use of modern technology and computers (knowledge with VR is an asset).What you’ll learn:You’ll join us as a customer service representative or associate, whose main objective is to ensure the customer has a great time here at the arcade.You’ll be trained by our store supervisor, coordinator, or manager on new technologies and develop stronger technology skills, computer skills, and virtual reality fundamentals.And of course, you’ll get to experience a huge variety of virtual reality games and experiences that you’ve not played before!Tags:Customer service representativeCustomer service associateSales associateCustomer supportSales representativeSales coordinatorStore supervisorStore keeperCustomer successJob Types: Seasonal, Casual, Permanent, Part-time, Full-timeSalary: From $15.50 per hourBenefits:Casual dressSchedule:Every WeekendHolidaysOn callWeekends as neededSupplemental pay types:Bonus payCommission payTipsCOVID-19 considerations:All equipment is sprayed down with isopropyl alcohol and cleaned with antibacterial wipes. We main physical distancing and require use of mask in common areas.Application question(s):Are you able to work on Thursdays to Sundays?By public transit only, how many minutes does it take you to travel to 124 Church St?Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"F694490040B814E1E52798700CAFC471\",\n            \"cityName\": \"argo greek cuisine in Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ea93072fe5f12e7e\",\n            \"jobName\": \"Customer Service- Front Of The House With a Drivers License\",\n            \"companyName\": \"Argo Greek Cuisine\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694479036170,\n            \"dateOfPosted\": 1692776784072,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2488091,\n                    \"lon\": -122.9805104\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Burnaby, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a take out delivery and catering place and we are currently looking for a customers service representative to add to our team Must have a friendly enthusiastic personality , some experience in a similar position is a must delivery apps previous experience an asset Also this position requires a valid drivers license as some deliveries are required for catering and other orders for customers some flexibilty for week days we can discussduties aretaking orders over the phone , taking orders through our on line apps , giving out the orders to customers , handling payments and drive the company car for deliveries .Closing duties require some cleaning for the space and tidying upshifts available10.30 to 3 everyday (part time)except sundays4 to 9.30 everyday (part time )except sundays10.30 to 7.30(one hour break) tuesday wednesday thursday friday saturday (full time)Looking for mature and responsible individuals for long term employment! After 6 months of continuous employment extended medical benefits are offeredJob Types: Full-time, Part-time, PermanentPart-time hours: 30 - 36 per weekSalary: From $20.00 per hourBenefits:Casual dressDiscounted or free foodStore discountFlexible Language Requirement:French not requiredSchedule:Evening shiftSupplemental pay types:Overtime payCOVID-19 considerations:covid -19 safety plan is in place for the establismentEducation:Secondary School (preferred)Experience:customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Burnaby, BC\"\n        },\n        {\n            \"id\": \"370A62E8BA6D53F9BC09ED95F9B40FF8\",\n            \"cityName\": \"Hummingbird Medical Tech Inc in Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=acf3d5d159c9ca7b\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Hummingbird Medical Tech Inc\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694478725996,\n            \"dateOfPosted\": 1694478725820,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"A Medical Supplier company requires a permanent receptionist on a full time basis.We are looking for a Receptionist that has good communication and interpersonal skills, proficient in computers (Microsoft Word, Excel, Powerpoint and Outlook) and a sense of humor would be helpful. Also the selected individual should be well organized and capable of working independently as well as part of a small tight knit office team.Duties:- Answering incoming phone calls and emails ...- Order entry and customer service related duties- Office management (ordering supplies, filing, etc.)- Collecting overdue accounts- Contact customer and negotiation- English and Mandarin- Website management experienceAdvantages:- Easily accessible with public transportation- On site parking- Pleasant working environmentJob Types: Full-time, PermanentSalary: $17.00-$18.00 per hourBenefits:Dental careVision careSchedule:Day shiftEducation:Bachelor's Degree (preferred)Experience:Customer service: 2 years (preferred)Language:English (preferred)Mandarin (preferred)Work Location: In personApplication deadline: 2023-09-23Expected start date: 2023-09-26\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"B7F71B6AD14E16F499576B587E9EC037\",\n            \"cityName\": \"Ajax, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=82330f223d6e9e57\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Tiabhuva.com\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694478722005,\n            \"dateOfPosted\": 1694478721835,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8508553,\n                    \"lon\": -79.0203732\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ajax\",\n                \"formattedAddress\": \"Ajax, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ajax\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ResponsibilitiesAssist with customer service tickets via zendeskAccurately prepare and complete orders for delivery or pickup according to schedule (load, pack, wrap, label, ship)Organize stocks and maintain inventoryTrain additional support staff that are needed during peak periodsContribute ideas on ways to improve or optimize proceduresRequirementsGood organisational and time management skillsMust be able to lift 50lbsExcellent communication skillsTeam playerBasic computer skills ie Word, Excel, Web BrowserHigh school diploma or equivalentExperience with Zendesk and Shopify is an assetThis is an entry level (all training will be provided)Full time position paid hourly ($18-$20/hr depending on experience) based in Ajax, ON.Job Types: Full-time, PermanentSalary: $18.00-$20.00 per hourSchedule:8 hour shiftDay shiftMonday to FridaySupplemental pay types:Overtime payApplication question(s):Are you available to work Monday - Friday, 9am -5pm?Do you have experience with Shopify?Do you have experience with zendesk or other customer service platform?Work Location: In personApplication deadline: 2023-09-27Expected start date: 2023-09-22\",\n            \"location\": \"Ajax, ON\"\n        },\n        {\n            \"id\": \"B2FC59A6BEAD92BAD716693C78290172\",\n            \"cityName\": \"Circle K in Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=632b1a89023391aa\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Circle K\",\n            \"rowSalary\": \"From $15.60 an hour\",\n            \"date\": 1694478589922,\n            \"dateOfPosted\": 1667888924320,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Night shift Cashier at Circle K Convenience Store.Help customers with purchasesOperate cash registerLotto machineStock productsCleaningSignage placementJob Types: Permanent, Full-timeSalary: From $15.60 per hourBenefits:On-site parkingDay range:Weekend availabilityShift:10 hour shift8 hour shiftNight shiftShift availability:Night Shift (required)\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"9E0ED90D72C2EE4BF93F8D48E56B0C13\",\n            \"cityName\": \"1610 Rosser Ave, Brandon, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=abada7a337bc0a0c\",\n            \"jobName\": \"Sales/Customer Service Representative\",\n            \"companyName\": \"Midwest Teleservices International (Mti)\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694478501133,\n            \"dateOfPosted\": 1694478500942,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8484815,\n                    \"lon\": -99.971689\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brandon\",\n                \"formattedAddress\": \"Rosser Ave, Brandon, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brandon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About us\\\"MTI is committed to the old-fashioned business values of hard work, integrity and honesty that cemented our 25 years of trusted partnerships with our clients.\\\" .Our work environment includes:Modern office settingFood providedOn-the-job trainingLively atmosphereOVERVIEWAs a Sales and Customer Service Representative, you'll be conducting sales calls, building connections with both new and existing customers. By embodying our company voice, you'll navigate our offerings and ensure each interaction leads to lasting relationships. Your attention to detail ensures accuracy from start to finish. Join us in turning every call into a rewarding customer experience.KEY RESPONSIBILITIESSalesPresent products/services to potential customers.Upsell and cross-sell our range of services.Ensure customer needs are met.Schedule appointments for service installations.Record customer details accurately.Customer Service and Relationship ManagementResolve customer issues constructively.Document customer interactions using client software.Follow company guidelines for customer satisfaction.Continuous DevelopmentEngage in ongoing training.Stay updated on product offerings.Set and review personal performance goals.QUALIFICATIONSEssentialStrong communication skills.Proficiency in English.Multitasking ability.Seamless transition between sales and service.Proactive and committed to improvement.DesirablePrior experience in customer serviceIndustry-specific knowledgeTrack record of excellence in sales or serviceWHY CHOOSE MTI?Work-Life Balance: We understand the importance of a balanced life. Our work schedule offers some flexibility to help you manage your personal commitments.Team Culture: We prioritize a supportive and inclusive team culture. Engage in team-building activities and company events to foster camaraderie.Stability: MTI has a long-standing history in the industry, offering job stability and peace of mind.Full benefits package, including Dental Care, Extended Health, Life Insurance, Vision Care, and Disability Insurance.Competitive compensation package.WORK SCHEDULE8-hour shiftsIn-person work environmentWeekend availability as needed.HOW TO APPLYREADY TO JOIN MTI?Send your resume and a cover letter to jose@midwestteleservices.com or apply through our website. Use \\\"Application for Sales and Customer Service Representative\\\" as your email subject.DIVERSITY & INCLUSIONDiversity, Equity, and Inclusion (DEI) at MTI is about embracing and valuing the diversity of our team. It's about coming together regardless of our different backgrounds, experiences, and perspectives. We believe our communalities are greater than our differences and that our uniqueness is what makes us a stronger and more effective organization. We are committed to fostering an environment where every employee is treated fairly, feels valued, and can fully participate. We strive to create a workplace where everyone is included.Job Types: Full-time, PermanentSalary: $15.00 per hourBenefits:Casual dressCompany eventsDental careDisability insuranceExtended health careLife insuranceOn-site parkingVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftWeekends as neededCOVID-19 considerations:Midwest Teleservices International has implemented the recommended practices of safety, stringent daily cleaning, and no public access.Application question(s):Given the nature of the role, this position may involve working on Saturdays. Are you able to accommodate this in your schedule?Language:English (required)Work Location: In personApplication deadline: 2023-10-16\",\n            \"location\": \"Rosser Ave, Brandon, MB\"\n        },\n        {\n            \"id\": \"3A08A4FE4A4890D74FA42A263A1158DE\",\n            \"cityName\": \"9701 Menzies St, Chilliwack, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3842648b7a4737df\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Padmore's Quick Shop\",\n            \"rowSalary\": \"$16.65–$18.00 an hour\",\n            \"date\": 1694478476305,\n            \"dateOfPosted\": 1694478476139,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1782108,\n                    \"lon\": -121.9334225\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Chilliwack\",\n                \"formattedAddress\": \"Menzies St, Chilliwack, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Fraser Valley\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Chilliwack\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for candidates for opening of Cashier/Customer Service Representatives.Candidates with working experience at a Gas station or any Convenience Store will be preferred. Wage according to experience.Job descriptionWe require the candidate to have the following abilities:Greet customers and provide excellent customer service at all timesScan merchandise accuratelyDescribe current promotions and advertisements to customersHandle payments by cash, cheque, credit card or automatic debitUse electronic scanners, cash register, or computersGive receipts, refunds, credits and assist customersMust be very detail orientedOpen and close till at the beginning and end of each shiftEnsure that safe work practices are followed including using proper lifting techniques and keeping the store cleanLifting involved as well for putting away product ordersThe candidate for this position must have the following skills and requirements:Basic math skillsDetail oriented with a positive attitudeExcellent command of the English language, both oral and writtenMust be punctual, dependable and hard workingSelf-confident, personable, energetic personalityAbility to work within a fast-paced environmentProfessional appearance and demeanourJob Types: Full-time, Part-time, Permanent, CasualSalary: $16.65-$18.00 per hourDay range:Monday to FridayWeekends as neededShift:8 hour shiftDay shiftEvening shiftMorning shiftAbility to commute/relocate:Chilliwack, BC V2P 5Z6: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Menzies St, Chilliwack, BC\"\n        },\n        {\n            \"id\": \"E8622B5E1F063A5F32B2F4B83FF9E140\",\n            \"cityName\": \"Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e6af587e1707905e\",\n            \"jobName\": \"Dispatcher / Customer Service Rep (Ft)\",\n            \"companyName\": \"John The Plumber Ottawa\",\n            \"rowSalary\": \"$16–$35 an hour\",\n            \"date\": 1694478463494,\n            \"dateOfPosted\": 1694478463323,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"John The Plumber is hiring three full-time employees for customer service and dispatch.  Candidates should have weekend and/or evening availability.  Pay structure includes an hourly rate + booking bonus for every job successfully booked into our schedule. We offer: Health, dental, life insurance. Hourly + generous bonus structure. Work from home upon completing training and strong conversion rate. ETC. This role has a lot of opportunity to make money. We want to find people who are friendly and eager to help our customers, and book them into the schedule. Each booking results in a generous bonus paid out monthly. There are many inbound calls each day, most of which are potential clients seeking a plumber. All we have to do is find a slot in the schedule and book them.  Training will be in person, in Nepean. Work will be in the office until a strong conversion % is reached and maintained.  Remote work is offered to those who Attain and maintain their conversion rates.  The incentive is to ensure world-class service, eagerness, and positive energy with our clients.  The schedule will be fixed. There are two shifts available.  Please only apply if you are able to work in Ottawa.  Thank you. \",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"0F76E6CA4A4AC5844D6C6F31981D5779\",\n            \"cityName\": \"Kitchener-Waterloo, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e48fa4da12cfae55\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Allianz Global Assistance Canada\",\n            \"rowSalary\": \"$20.51 an hour\",\n            \"date\": 1694478430407,\n            \"dateOfPosted\": 1694478430234,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4534718,\n                    \"lon\": -80.5001242\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kitchener\",\n                \"formattedAddress\": \"Kitchener-Waterloo, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kitchener\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Who we are:People are at the heart of the Allianz brand. At Allianz, helping people is in our DNA. We believe in being a part of the solution for a better tomorrow and know that we have a positive impact on people’s lives across the globe. If you are looking to be part of something big, then come join our local family - we want to hear from you!Our teams in our Operations centre are the heartbeat of the organization. We are looking for customer-centric individuals to fill a number of Customer Service Associate positions. In this role, the focus is on helping others, providing exceptional customer service, and going above and beyond for our customers when they’re in need.About the role:In a 24/7 operation, provide timely, accurate, and efficient information and respond to customer service inquiries for clients from numerous programs, ensuring that our clients receive accurate and timely information. Required to attain performance objectives on a monthly basis.Working hours: 8-hour shifts, 5 days a week. Shifts include: Monday - Sunday, working holidays, mornings, afternoons, and evenings on a rotational basis. Schedules are given 6 weeks in advance.Hourly wage: $20.51 per hour (+ $1.50 per hour French language premium, if applicable)You are great at:Opening non-medical cases to guide/assist clients throughout their service needs.Initiating and sending claim forms.Providing pre-trip assistance and answering pre-trip questions relating to emergency procedures and policy inquiries.Interpreting policies and fully explaining benefit coverage and limitations to avoid client confusion.Guiding clients through the navigation of pertinent websites for online content and claim submission.Administering and enforcing client confidentiality in regards to Canada’s Personal Information Protection and Electronic Document Act.Providing assistance with translation using an interpreter if necessary.Creating and send various types of professional correspondence.What it takes:Post-secondary education and a minimum of 6-12 months experience in a customer service related function.Ability to pay close attention to detail and multi-task.Superb verbal/written communication skills, specifically the ability to communicate professionally and articulately via phone with clients and colleagues.Demonstrated ability to use initiative and independent judgment in solving customer problems.Fluency in French is preferred.What we offer you:A competitive total rewards package, including benefits coverage as of your first day of employment, participation in the company’s annual incentive bonus plan, an employer matched retirement plan, tuition reimbursement support, generous paid time off, and much more!A Referral Program that rewards you for referring your qualified friends and familyEmployee discounts at a wide variety of retailers and servicesThe opportunity to grow with a large, global organizationAll successful candidates must be able to pass an Enhanced Reliability Check performed by the Government of Canada.At Allianz, we understand and value diversity in our employees and are proud to be an Equal Opportunity Employer. If you require accommodation at any time during the recruitment process, please call our toll free number at 1-800-461-1079 and ask to speak to a member of the Talent Acquisition team.Job Types: Full-time, PermanentBenefits:Dental careExtended health careLife insurancePaid time offRRSP matchVision careWork from homeSupplemental pay types:Bonus payOvertime payEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Language:French (preferred)Job Type: Full-timeSalary: $20.51 per hourBenefits:Dental carePaid time offVision careShift:8 hour shiftAbility to commute/relocate:Kitchener-Waterloo, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Licence/Certification:Serving It Right (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Kitchener-Waterloo, ON\"\n        },\n        {\n            \"id\": \"FD2D9C8C3CFD662CB309757BF5CBF56C\",\n            \"cityName\": \"Laurent, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=27a78d14a6008042\",\n            \"jobName\": \"Call Center Agent\",\n            \"companyName\": \"Flagship Courier Solutions Inc\",\n            \"rowSalary\": \"$18.60–$23.50 an hour\",\n            \"date\": 1694478424912,\n            \"dateOfPosted\": 1694478424724,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.15,\n                    \"lon\": -72.28333300000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laurent\",\n                \"formattedAddress\": \"Laurent, QC G0A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Portneuf\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laurent\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:Handle many inbound and outbound calls to customers.Management and resolve customer complaints.Maintain good customer relations.Identify and escalate issues to supervisors.Document all call information according to standard operating procedures.Follow up customer calls where necessary.Requirements:High school diploma or equivalent.Excellent verbal communication skills.Excellent verbal and written communication skills.Basic knowledge of Microsoft Office and basic PC literacy.Ability to multitask and maintain a high-level of organization.Ability to read, understand, and follow oral and written instructions.Ability to handle stressful situation appropriately.Job Types: Full-time, Part-timePart-time hours: 20-40 per weekSalary: $18.60-$23.50 per hourBenefits:Company pensionDental careFlexible scheduleLife insuranceVision careWellness programFlexible Language Requirement:English not requiredSchedule:4 hour shift8 hour shiftMonday to FridaySupplemental pay types:Commission payWork Location: On the road\",\n            \"location\": \"Laurent, QC\"\n        },\n        {\n            \"id\": \"1A6F77346F86AC84F160688F0C43AECA\",\n            \"cityName\": \"Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f2cb959527bc1915\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"Eagle Disposal Inc.\",\n            \"rowSalary\": \"$34 an hour\",\n            \"date\": 1694478154831,\n            \"dateOfPosted\": 1688039301920,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1665898,\n                    \"lon\": -123.133569\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Richmond, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 34.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    34.0\n                ],\n                \"range\": {\n                    \"gte\": 34.0,\n                    \"gt\": null,\n                    \"lte\": 34.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Oversee apprenticeship training Recruit and hire workers and carry out related staffing actions Train or arrange for training Estimate costs and materials Ensure health and safety regulations are followed Recommend personnel actions Requisition or order materials, equipment and supplies Supervision Staff in various areas of responsibility Work conditions and physical capabilities Work under pressure Personal suitability Excellent oral communication Organized Reliability Team player Health benefits Dental plan Health care plan Long term benefits Life insuranceWork Term: PermanentWork Language: EnglishHours: 30 hours per week\",\n            \"location\": \"Richmond, BC\"\n        },\n        {\n            \"id\": \"FC8D8D1D17D45E1194C76272BDA48984\",\n            \"cityName\": \"7100 Rue Jean Talon E, Anjou, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=21f23cf68d7adf01\",\n            \"jobName\": \"Call Center Sales Manager\",\n            \"companyName\": \"Hydro Solution\",\n            \"rowSalary\": \"From $80,000 a year\",\n            \"date\": 1694478100791,\n            \"dateOfPosted\": 1693607137011,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5947628,\n                    \"lon\": -73.5727617\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Jean-Talon E, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 80000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    80000.0\n                ],\n                \"range\": {\n                    \"gte\": 80000.0,\n                    \"gt\": null,\n                    \"lte\": 80000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Do you what it takes to join our big family of everyday heroes?In order to continue its growth and maintain its high standards of customer service, HydroSolution is looking for a manager, customer contact center. In an environment in full digital transformation, the manager will aim to ensure the proper functioning of all operational activities, to ensure the quality of the customer experience while promoting the development of human resources.Reporting to the Director of Customer Service Operations, the candidate will join a dynamic team and will be supported by team leaders for the management of about thirty employees. The customer contact center is also composed of an outsourcer and the manager will ensure the proper functioning of the two sites.Responsabilites· Meet and exceed the various KPI’s of the CCC· Suggest and implement management and communications bests practices based on teamwork· Lead initiatives with change management skills and continual improvement notions to improve customer experience· Manage and coach the team leaders who supervise the agents· Ensure operational efficiency and customer service by maintaining a positive, mobilizing, and pleasant work environment· Ensure follow-ups with various business partners in order to solve complex problems and optimize operations.· Analyze and measure various indicators to ensure consistent performance and customer experience, while maintaining operational excellence and profitabilityPromote the development of talent and encourage the best communication practices to help provide a mobilizing work environment.Ideal requirements · Meet and exceed the various KPI’s of the CCC· Suggest and implement management and communications bests practices based on teamwork· Lead initiatives with change management skills and continual improvement notions to improve customer experience· Manage and coach the team leaders who supervise the agents· Ensure operational efficiency and customer service by maintaining a positive, mobilizing, and pleasant work environment· Ensure follow-ups with various business partners in order to solve complex problems and optimize operations.· Analyze and measure various indicators to ensure consistent performance and customer experience, while maintaining operational excellence and profitability· Promote the development of talent and encourage the best communication practices to help provide a mobilizing work environment.· 5 years call center experience in a supervisory role· Post-secondary diploma/degree in a related field· Passionate about sales and customer service and known as an inspiring leader who coaches and develops team members, cultivating a highly engaged, high-performance team· Be result driven· Demonstrates a natural and strong leadership· Excellent interpersonal and communication skills (verbal/written) to promote positive relationships· Experience in Workforce management or in change management will be considered an asset· Bilingualism (French-speaking work environment)At HydroSolution, we take care of our heroes by providing· a competitive salary· a group insurance program (complementary health, medication, dental, life and vision, etc.)· Work Remote (2 or 3 days at the office as a manager)· a group RRSP· free covered parking· a corporate discount on annual gym membership· vacation and compensatory leave· a telemedicine program· an employee referral program· team activities· casual dress codeAt HydroSolution, everyone's work is a source of inspiration and pride. The sum of our efforts makes it possible to offer peace of mind to Quebecers and to participate in their well-being. We might not be saving lives, but we can save the day! This is why we consider our employees to be the everyday heroes of thousands of Quebecers who are looking for a turnkey solution for their water heater. Together, we are the leaders in sales and rentals of water heaters.Type d'emploi : Temps plein, PermanentSalaire : à partir de 80 000,00$ par anAvantages :Assurance DentaireAssurance InvaliditéAssurance Maladie ComplémentaireAssurance VieAssurance VisionCongés payésÉvénements d'EntrepriseProgramme d'Aide aux EmployésProgrammes de Bien-êtreREER CollectifStationnement sur placeTenue DécontractéeTravail à domicileHoraires de travail :Quart de jourTypes de paie supplémentaire :PrimesExpérience:Ventes internes: 3 ans (Souhaité)Gestion d'équipe: 3 ans (Obligatoire)Langue:Français (Obligatoire)Lieu du poste : Télétravail hybride à Anjou, QC\",\n            \"location\": \"Rue Jean Talon Est, Anjou, QC\"\n        },\n        {\n            \"id\": \"9B0B6657E746BEE111FCABB56A06A5A1\",\n            \"cityName\": \"1105 Centre St N, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=556336d1344b2350\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Avalon Cleaners\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694478048884,\n            \"dateOfPosted\": 1693625801711,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0919201,\n                    \"lon\": -114.0625125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Centre St N, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a dry cleaning company requiring a customer service associate.Friday and Saturday 9 am to 5 pmDuties include serving walking clients. Contact clients with any discrepancies and follow up on any of their concerns. Full training supplied with our procedures and policies.Starting wage is $16/hrJob Type: Full-timeSalary: From $16.00 per hourWork Location: In personExpected start date: 2023-09-07\",\n            \"location\": \"Centre St N, Calgary, AB\"\n        },\n        {\n            \"id\": \"92DF0E7A6C6871CF1B89F3BB9BA969A3\",\n            \"cityName\": \"156 Jozo Weider Blvd, Blue Mountains, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=035afb1e7e7d0c0a\",\n            \"jobName\": \"Customer Service Associate (Full-Time Available)\",\n            \"companyName\": \"Village Market\",\n            \"rowSalary\": \"$16.50–$18.00 an hour\",\n            \"date\": 1694477975181,\n            \"dateOfPosted\": 1693624733374,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.50561769999999,\n                    \"lon\": -80.30985369999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Owen Sound\",\n                \"formattedAddress\": \"Jozo Weider Blvd, The Blue Mountains, ON L9Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Owen Sound\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Village Market Customer Service Associate - Full Time and Part Time positionsThe Village Market is located at the heart of the Blue Mountain Village. It is a grocery and convenience store serving thousands of locals and tourists year round.We are searching for a hard working, personable, individual to join our team. We offer a competitive wage, a well-rounded benefits package and on-site training.Responsibilities:GENERAL/CUSTOMER SERVICEGreet, welcome and provide customers with excellent customer service skillsOperate cash register and process credit/debit paymentsVerify the age of customers when selling age restricted productsPull daily sales reportsComplete daily cash outsPerform other duties as assignedHOUSEKEEPINGMaintain a clean and orderly checkout areaEnsure store stays clean and organizedFollow all Health and Safety ProceduresMERCHANDISINGStock shelves when items are low and new inventory arrivesComplete merchandising tasks as directed and maintain efficient flow of merchandise from backroom to sales floorAdvise appropriate person regarding stock outs/shortagesPerform stock counts and orders for designated areasLOSS PREVENTIONEnsure loss prevention Standards are followedControl cash and lottery in accordance with prescribed cash handling policies and proceduresMaintain proper security of cash and merchandiseJob Requirements:GENERALGood communication skills and ability to read and write in EnglishCustomer Service orientatedAble to work under minimal supervision and have attention to detailAble to work individually and be a team playerEffective problem solverAble to work in a fast-paced environmentExperience in cash handling is not a requirement but an assetExperience working in a grocery store is not a requirement but an assetJob Type: Full-timeSalary: $16.50-$18.00 per hourBenefits:Dental careVision careDay range:HolidaysWeekends as neededFlexible Language Requirement:French not requiredShift:8 hour shiftWork setting:Convenience storeGrocery storeAbility to commute/relocate:Blue Mountains, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Jozo Weider Blvd, Blue Mountains, ON\"\n        },\n        {\n            \"id\": \"B3EF5702DB1A65511B3BD9237754EEDA\",\n            \"cityName\": \"Grande Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=32a51eea39b61f61\",\n            \"jobName\": \"Customer Service Sales Clerk\",\n            \"companyName\": \"Saihaj Enterprises Ltd\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694477957766,\n            \"dateOfPosted\": 1690421555734,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.17071259999999,\n                    \"lon\": -118.7884464\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grande Prairie\",\n                \"formattedAddress\": \"Grande Prairie, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 19\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grande Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Will trainTasks Operate cash register Operate computerized inventory record keeping and re-ordering systems Provide advice about merchandise Assist in display of merchandise Conduct sales transactions through Internet-based electronic commerce Estimate or quote prices, credit or contract terms, warranties and delivery dates Greet customers and discuss type, quality and quantity of merchandise or services sought for purchase, rental or lease Maintain sales records for inventory control Prepare sales, rental or leasing contracts and accept cash, cheque, credit card or automatic debit payment Work conditions and physical capabilities Fast-paced environment Repetitive tasks Attention to detailWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Grande Prairie, AB\"\n        },\n        {\n            \"id\": \"91C51EFD3A3EDBD67F007F6CF16FC3BA\",\n            \"cityName\": \"argo greek cuisine in Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f82dca4789764ae4\",\n            \"jobName\": \"Customer Service- Front Of The House With a Drivers License\",\n            \"companyName\": \"Argo Greek Cuisine\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694477939217,\n            \"dateOfPosted\": 1692774873018,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2488091,\n                    \"lon\": -122.9805104\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Burnaby, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a take out delivery and catering place and we are currently looking for a customers service representative to add to our team Must have a friendly enthusiastic personality , some experience in a similar position is a must delivery apps previous experience an asset Also this position requires a valid drivers license as some deliveries are required for catering and other orders for customers some flexibilty for week days we can discussduties aretaking orders over the phone , taking orders through our on line apps , giving out the orders to customers , handling payments and drive the company car for deliveries .Closing duties require some cleaning for the space and tidying upshifts available10.30 to 3 everyday (part time)except sundays4 to 9.30 everyday (part time )except sundays10.30 to 7.30(one hour break) tuesday wednesday thursday friday saturday (full time)Looking for mature and responsible individuals for long term employment! After 6 months of continuous employment extended medical benefits are offeredJob Types: Full-time, Part-time, PermanentPart-time hours: 30 - 36 per weekSalary: From $20.00 per hourBenefits:Casual dressDiscounted or free foodStore discountFlexible Language Requirement:French not requiredSchedule:Evening shiftSupplemental pay types:Overtime payCOVID-19 considerations:covid -19 safety plan is in place for the establismentEducation:Secondary School (preferred)Experience:customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Burnaby, BC\"\n        },\n        {\n            \"id\": \"2636BC9BE5A3BD713646ED7F0E6D1F19\",\n            \"cityName\": \"Terrace, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=58952f8667bb8021\",\n            \"jobName\": \"Customer Service Technician Ii\",\n            \"companyName\": \"Pacific Northern Gas Ltd.\",\n            \"rowSalary\": \"$43.07 an hour\",\n            \"date\": 1694477899582,\n            \"dateOfPosted\": 1694477898123,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.5181925,\n                    \"lon\": -128.6031539\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Terrace\",\n                \"formattedAddress\": \"Terrace, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kitimat-Stikine\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Terrace\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 44.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    44.0\n                ],\n                \"range\": {\n                    \"gte\": 44.0,\n                    \"gt\": null,\n                    \"lte\": 44.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Pacific Northern Gas Ltd. (PNG), a subsidiary of TriSummit Utilities Inc., owns and operates natural gas transmission and distribution systems in British Columbia’s lower Peace River, west central, and north coast regions. PNG’s western transmission line extends from the Enbridge gas transmission system north of Prince George along the Highway 16 and Highway 37 south corridors to Terrace and then onto the port communities of Kitimat and Prince Rupert, providing transportation and gas services to twelve communities and a number of industrial facilities. In the Province’s northeast, Pacific Northern Gas (N.E.) Ltd. provides gas transmission and distribution service in the Dawson Creek, Fort St. John and Tumbler Ridge areas. PNG’s Operations department in the Northwest has an immediate opening for a qualified Customer Service Technician in Terrace, BC. DUTIES & RESPONSIBILITIES:Repair and make adjustments to residential and commercial equipment on customer premises, install and maintain gas measurement and pressure regulations equipment on customer premises and monitor and assist in the installation and maintenance of gas pressure regulation equipment at Company Regulating stations. Operate and maintain a stand-by station for emergency or peak shaving (Prince Rupert area).Promote the sale of gas, complete sign-ups of new customers, read meters, investigate reports of gas leaks, perform routine safety inspections on customer premises and take action to protect the public from any unsafe act or condition pertaining to the distribution of natural gas within his/her authority.Assist other Company personnel as directed and prepare all required documents and paperwork relative to sales and service duties.Provide training and direction to subordinate Customer Service Technicians.Perform stand-by duties and carry a pager or cell phone.Assist and temporarily perform Customer Service Representative duties.Respond to emergencies on the distribution system and direct and carry out appropriate actions involving damage to the system or the escape of gas.QUALIFICATIONS:Grade 12 education.Valid B.C. Class 5 Driver’s License.Hold a valid Class GBEE B.C. Gas Fitters License and have successfully completed the two-year Gas Fitters Apprenticeship Program or other Company recognized training program.Be competent in technical aspects related to public safety, customer relations and the welfare of the Company’s property.Electrical endorsement required for Class GBEE ticket holders.Experience in electronics, appliance repairs and trouble shooting.Must demonstrate safe work habits and adherence to safety regulations and practice on sustained basis.Must be able to carry out duties with minimum supervisions.Ability to communicate effectively verbally and written.Good physical condition.Ability to work long hours in adverse weather and terrain conditions.Duties will include meter reading, chart changing, assisting with the installation and removal of meters, painting and minor maintenance of equipment and facilities servicing the distribution system.Some travel may be required within the PNG system.This position is within our bargaining unit (IBEW) Pacific Northern Gas and TSU strives to cultivate a workplace in which everyone feels welcomed and encouraged to bring their whole selves to work. Everyone wants to work where they feel a sense of belonging, where they are valued for their differences and are encouraged to participate and contribute openly. We recognize the importance of both inclusion and diversity, and we are committed to advance our culture to ensure diversity of thought. While we appreciate all applications, we advise that only the candidates selected to participate in the recruitment process will be contacted. If you are a candidate with a disability and need an accommodation to complete the application process, please email us at careers@png.ca. Include your full name, the best way to reach you, and the accommodation needed to assist you with the application process. We thank all applicants for their interest in our organization, but only those candidates selected for interviews will be contacted.\",\n            \"location\": \"Terrace, BC\"\n        },\n        {\n            \"id\": \"0F01BB1CF246631498C0CC78EA3E4F7B\",\n            \"cityName\": \"Yellowknife, NT\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f64b6608f9c7bdd9\",\n            \"jobName\": \"Customer Service Agent (Pt)\",\n            \"companyName\": \"Gat Ground Support Canada\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694477866570,\n            \"dateOfPosted\": 1694477865074,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 62.4539717,\n                    \"lon\": -114.3717887\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Yellowknife\",\n                \"formattedAddress\": \"Yellowknife, NT X0E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Northwest Territories\",\n                \"state_code\": \"NT\",\n                \"postalTown\": null,\n                \"county\": \"Fort Smith Region\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Yellowknife\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Summary: The Customer Service Agent (CSA) provides all passenger/customer services as contracted by the customer including reservations, ticketing, baggage processing, terminal/gate check-in, greeting arriving passengers, handling of VIPs, provide special passenger assistance, handle customer complaints and other duties as assigned.  Job Duties:Checks passengers in at ticket counter and gate and hands out boarding passes for outgoing flightsActively participates in the Safety Management System (SMS)Inspect and verify passenger documentationChecks passenger baggage and places bag tags on them at the ticket counter for appropriate destinationCoordinates ticket counter activities with those on the ramp regarding baggage handling to assure that all bags get on the outgoing flightHandles customer complaints regarding ticketing and baggage handling when problems arise. (i.e. lost baggage, lost/misplaced tickets, canceled flights or delayed flights)Makes announcements regarding flight activity at gate or over airport’s general PA systemAnswers passenger inquiries regarding flight schedules, fares, space availability for a particular flight and other questions that may ariseAssist passengers as needed through arrival and check in processes including support for passengers with special needs such as unaccompanied minors (UM), VIP passengers and passengers needing wheelchair assistanceAssist Ramp Service Agents to ensure that wheelchairs, strollers and gate checked bags (cleared through security) are made available for loading upon departure and delivery to passengers upon arrivalCommunicates with flight crew on ground and via ground to air radioMaintains the level of service expectations of both the passenger and the airline customer at all timesComply with all federal, provincial, municipal, airport authority and carrier security requirements and SA’s SOPs and policiesParticipate in training to comprehend, implement, and maintain all quality objectives as stated in our Quality Management System to ensure delivery of desired levels of operational safety and security.All employees are responsible for ensuring quality control in their own activities.Cooperate fully with Inspectors to achieve quality inspection commitmentsPerforms other duties as required RequirementsMust be at least 18 years of ageHigh School diploma at a minimumPassionate about customer serviceExcellent communication skills (written and verbal)Commitment to continuous improvementSelf-motivated and able to work independentlyAttentive to detail and numerateAbility to follow processes and procedures and apply flexible approach when requiredMust be able to type and learn airline specific computer reservation/ ticketing softwareWillingness to work in inclement weatherMust be able to undergo a Criminal Record Check and obtain a Clear result, and be able to obtain airport security clearanceAble to deal with people sensitively, tactfully, diplomatically, and professionally at all timesStrong work ethic and positive team attitude Physical RequirementsMust be able to lift up to 50lbs (23kg)Must be able to stand, lift, bend, push and pull for an extended timeMust be willing to work in all types of elevated noise levels within the airport environment Background QualificationsMust be willing to work various shifts, weekends, or irregular shiftsComputer skills required RequirementsMust be at least 18 years of ageHigh School diploma at a minimumPassionate about customer serviceExcellent communication skills (written and verbal)Commitment to continuous improvementSelf-motivated and able to work independentlyAttentive to detail and numerateAbility to follow processes and procedures and apply flexible approach when requiredMust be able to type and learn airline specific computer reservation/ ticketing softwareWillingness to work in inclement weatherMust be able to undergo a Criminal Record Check and obtain a Clear result, and be able to obtain airport security clearanceAble to deal with people sensitively, tactfully, diplomatically, and professionally at all timesStrong work ethic and positive team attitude Physical RequirementsMust be able to lift up to 50 poundsMust be able to stand, lift, bend, push and pull for an extended timeMust be willing to work in all types of elevated noise levels within the airport environment Background QualificationsMust be willing to work various shifts, weekends, or irregular shiftsComputer skills required Flight passes!  Career advancement opportunities!! About GAT Ground Support Canada:GAT is a leading Ground Service provider to the airlines. Our additional line of business is Sky Cafe, Airline Catering. We are a growing company with opportunities for growth and career advancement!\",\n            \"location\": \"Yellowknife, NT\"\n        },\n        {\n            \"id\": \"1C04BCE2DAE644F595ABC6CC7C360429\",\n            \"cityName\": \"Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7feb82e3a3b25902\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Ph Vitres d'Autos\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694477862863,\n            \"dateOfPosted\": 1694477861158,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2557206,\n                    \"lon\": -79.8711024\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Company:Take 5 Oil Change  We invite you to join us at Take 5!  Take 5 Oil Change is your neighborhood go-to oil change spot. We've been doing this for over 35 years now and we pride ourselves in our friendly technicians, our oil change expertise, and our efficient process that gets you on your way safely and swiftly. All while letting you stay in the comfort of your car or truck while we change your oil.  We're always looking for friendly and energetic team members to join our family. Technicians, managers, and more positions are available across the country. With our Pit Tech to President growth path, Take 5 is where you can invest in yourself while we invest in you. In fact, over 90% of our field leaders are internal promotions!  JOB DESCRIPTION:  Driven Brands is looking for part-time and full-time customer service representatives to join our growing team! The ideal candidate can commit to a minimum of 30 hours/week and can provide open availability. The starting wage for this position is $15.50/hour plus incentives.  Responsibilities Function as an expediter of all incoming callsAnswer customer inquiriesWork closely with the Contact Centre Team to implement project initiativesEnsure the proper processes are being following and task deadlines are being metProperly manage customer information utilizing internal data systemsFlexible/adaptable to constant changeAccurately communicate customer details to Franchisees Qualifications and Competencies: Bilingualism (English/French) and/or Spanish is an assetStrong communication skills (reading, writing, speaking, listening)Minimum 2 years of call centre experienceSales experiences is an assetShows predominate skills in computer literacyGood organization and time management skillsWorks well in a fast paced environmentWorks well under pressureExperience in the automotive industry and asset (but not required) Hours of Operation are: Monday-Friday: 7am-7pmSaturday: 9am- 5pmSunday: 10am- 5pm\",\n            \"location\": \"Hamilton, ON\"\n        },\n        {\n            \"id\": \"5EC7B0808F7F58CD5EE6CBF2DDB7ACDB\",\n            \"cityName\": \"Okotoks, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ecf8d6e60ca56ff5\",\n            \"jobName\": \"Customer Service/Office Assistant\",\n            \"companyName\": \"Okotoks Home Hardware Building Centre\",\n            \"rowSalary\": \"$16.50–$18.50 an hour\",\n            \"date\": 1694477859646,\n            \"dateOfPosted\": 1694289230778,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cashier/Sales Associate Position/Office AssistantFull time position for Cashier/Sales Associate/Office Assitant. Provide customer service at frontend cash desks, completing customer transactions through point of sale system. Other duties include answering phones, cutting keys, fedex shipping, e-comerce processing, filing and data entry, and some cleaning tasks and stocking. Also Office Assistant duties once trained at Cash, approximately 2 days per week office duties; will include daily balancing and audits, accounts receivable and payables work, and filing. Experience an asset, but will train. The hours will be some weekdays and every second weekend. Staff discount and benefits. Applicant should be have good communication skills, want to work in a team environment and enjoy interacting with the public. Looking for someone wanting to gain responsibilities through experience. Applicant should understand that customer service is our priority every day.Apply with resumeJob Type: Full-timeSalary: $16.50-$18.50 per hourBenefits:Dental careStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededAbility to commute/relocate:Okotoks, AB: reliably commute or plan to relocate before starting work (required)Experience:Retail sales: 3 years (preferred)Customer service: 3 years (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"EB69CFBD2096AA300485E12ABD1913FC\",\n            \"cityName\": \"Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8ba586fa0811e201\",\n            \"jobName\": \"Clk 12r - Customer Service Representative\",\n            \"companyName\": \"Bc Public Service\",\n            \"rowSalary\": \"$52,803–$59,608 a year\",\n            \"date\": 1694477852787,\n            \"dateOfPosted\": 1694477851658,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8879519,\n                    \"lon\": -119.4960106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Kelowna, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 52803.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    52803.0\n                ],\n                \"range\": {\n                    \"gte\": 52803.0,\n                    \"gt\": null,\n                    \"lte\": 52803.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Posting Title  CLK 12R - Customer Service Representative  Position Classification  CLBC Clerk R12  Union  GEU  Work Options  On-Site  Location  Kelowna, BC V1Z 2S9 CA (Primary)  Salary Range  $52,803.18 - $59,607.79 annually  Close Date  9/25/2023  Job Type  Regular Full Time  Temporary End Date  Ministry/Organization  BC Public Service -> Citizens' Services  Ministry Branch / Division  Service Delivery/Service BC  Job Summary Apply your expertise and passion for innovation to this rewarding career opportunityMINISTRY OVERVIEWDedicated to making life better for British Columbians, the Ministry of Citizens’ Services (CITZ) delivers key services that people rely on. CITZ delivers accessible, multi-channel services, through a single-point-of-contact service approach to people in urban and rural communities through Service BC, and delivers the digital face of government at www.gov.bc.ca. CITZ also provides support for the expansion of high-speed internet connectivity throughout the province, leadership across government to modernize information management and technology resources, trusted data services to government agencies, prompt, and relevant responses to freedom of information requests, and statistical and economic research, information and analysis to businesses and the public sector. In addition, the ministry manages the Province’s real estate assets, technology systems and equipment, and leverages procurement to increase business opportunities and create rewarding jobs that contribute to local economies and benefit individuals, families, and communities.A service-focused organization, CITZ strives to be a great place to work, where all employees feel both engaged and motivated to do their best.DIVISIONAL OVERVIEWService BC is government’s chief provider of services to B.C. residents and businesses. The work of the division enables the design and delivery of accessible, responsive, and cost-effective services, making it easier for British Columbians and businesses to interact with government. Through a provincial network of 65 in-person offices and the Provincial Contact Center, Service BC provides approximately 300 government services for more than 40 partner ministries and agencies. Our team member’s unwavering commitment to an ethic of service has driven consistently high people and business satisfaction rates. In support of the division’s overarching goal of providing residents and businesses with seamless, multi-service access to government programs, the Division’s service offerings are marketed to partner ministries and the broader public sector to expand our continuum of services and leverage common platforms.Within Service BC, our vision is to deliver innovation, value, and service excellence to the people of British Columbia, with the aspirational goal of becoming a best-in-class public service delivery organization. Our people and our culture are important to us. As a team, we are motivated to deliver an excellent service experience to British Columbians, businesses, colleagues, peers, clients, and partners. We believe in being kind and helpful, and are committed to delivering “Service with Heart”.JOB OVERVIEWThe Service BC Customer Service Representative (CSR) maintains a positive, empathetic, and professional attitude when providing service and answering enquires. It requires the ability to identify and assess peoples’ needs to effectively and efficiently deliver an excellent customer service experience.The CSR provides services in-person, by phone, and through digital channels. The ability to provide clerical and administrative support such as data entry, reviewing applications for completeness, handling payments, and providing appropriate solutions, within government guidelines to a diverse population of people is essential to this role.JOB REQUIREMENTSMinimum Grade 12 graduation or equivalent (GED).Experience providing inclusive customer service to diverse clienteles. Experience using digital applications to search for and record information. Preference may be given to applicants with the following:Multiple years of experience in any of the above requirements.Experience providing in-person customer service.Experience providing customer service though phone or digital channels.Experience delivering customer service in a high volume, fast-paced, rapidly changing environment.Experience with conflict resolution and de-escalating situations.Experience providing services to a diverse population some of whom may be experiencing poverty issues, substance use, or mental health concerns.Experience maintaining administrative files and record keeping.Experience delivering service in a regulated or legislated environment following processes and procedures.Customer Service training and/or education. Experience handling financial transactions. WILLINGNESS Willingness to travel occasionally to provide relief coverage to other work sites (Service BC Centres, exam locations, etc.). For questions regarding this position, please contact melody.olsen@gov.bc.caAbout this Position:An eligibility list may be established to fill future temporary and permanent vacancies across the Ministry of Citizens' Services This position has full time on-site requirements.Employees of the BC Public Service must be located in BC at the time of employment.Kelowna is known for its spectacular selection of wineries, and it is set on the shores of Okanagan Lake, providing water activities like swimming, paddling, windsurfing and fishing. Big White, the ski mountain in Kelowna, allows for skiing and snowboarding.Working for the BC Public Service:The BC Public Service is committed to creating a diverse workplace to represent the population we serve and to better meet the needs of our citizens. Consider joining our team and being part of an innovative, inclusive and rewarding workplace.The Indigenous Applicant Advisory Service is available to applicants that self-identify as Indigenous (First Nations, status or non-status, Métis, or Inuit) seeking work or already employed in the BC Public Service. For guidance on applying and interviewing, please contact IndigenousApplicants@gov.bc.ca or 778-405-3452.The BC Public Service is an award-winning employer and offers employees competitive benefits, amazing learning opportunities and a chance to engage in rewarding work with exciting career development opportunities. For more information, please see What We Offer.How to Apply:Your application must clearly demonstrate how you meet the job requirements listed above.Cover Letter: NO - Please do not submit a cover letter as it will not be reviewed.Cover Letter: YES - A cover letter is required as part of your application. The content and/or format of your cover letter may be evaluated as part of the assessment process.Questionnaire: YES - You will need to complete a comprehensive questionnaire to demonstrate how you meet the job requirements. Include all relevant information about your educational accomplishments and employment history including job titles, start and end dates (month and year) of your employment, and how you obtained your relevant experience. The questionnaire will take approximately 60 minutes to complete.Helpful tips, videos and more regarding the application process can be found on the Your Job Application page of MyHR. If you are experiencing technical difficulty applying, e-mail BCPSA.Hiring.Centre@gov.bc.ca, before the stated closing time, and we will respond as soon as possible.Additional Information:A Criminal Record Check (CRC) will be required.Applicants selected to move forward in the hiring process may be assessed on the Knowledge, Skills, Abilities and Competencies as outlined in the attached Job Profile located at the bottom of the posting.Applications will be accepted until 11:00 pm Pacific Standard Time on the closing date of the competition. Job Category  Administrative Services \",\n            \"location\": \"Kelowna, BC\"\n        },\n        {\n            \"id\": \"88979A7A33FEEBDECC47576AE4F8A3B1\",\n            \"cityName\": \"Merritt, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6a9b323aff1fc630\",\n            \"jobName\": \"Clk 12r - Customer Service Representative\",\n            \"companyName\": \"Bc Public Service\",\n            \"rowSalary\": \"$52,803–$59,608 a year\",\n            \"date\": 1694477849619,\n            \"dateOfPosted\": 1694477847581,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.1113079,\n                    \"lon\": -120.7862222\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Merritt\",\n                \"formattedAddress\": \"Merritt, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Thompson-Nicola\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Merritt\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 52803.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    52803.0\n                ],\n                \"range\": {\n                    \"gte\": 52803.0,\n                    \"gt\": null,\n                    \"lte\": 52803.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Posting Title  CLK 12R - Customer Service Representative  Position Classification  CLBC Clerk R12  Union  GEU  Work Options  On-Site  Location  Merritt, BC V1K 1B8 CA (Primary)  Salary Range  $52,803.18 - $59,607.79 annually  Close Date  9/25/2023  Job Type  Regular Full Time  Temporary End Date  Ministry/Organization  BC Public Service -> Citizens' Services  Ministry Branch / Division  Service Delivery/Service BC  Job Summary Apply your expertise and passion for innovation to this rewarding career opportunityMINISTRY OVERVIEWDedicated to making life better for British Columbians, the Ministry of Citizens’ Services (CITZ) delivers key services that people rely on. CITZ delivers accessible, multi-channel services, through a single-point-of-contact service approach to people in urban and rural communities through Service BC, and delivers the digital face of government at www.gov.bc.ca. CITZ also provides support for the expansion of high-speed internet connectivity throughout the province, leadership across government to modernize information management and technology resources, trusted data services to government agencies, prompt, and relevant responses to freedom of information requests, and statistical and economic research, information and analysis to businesses and the public sector. In addition, the ministry manages the Province’s real estate assets, technology systems and equipment, and leverages procurement to increase business opportunities and create rewarding jobs that contribute to local economies and benefit individuals, families, and communities.A service-focused organization, CITZ strives to be a great place to work, where all employees feel both engaged and motivated to do their best.DIVISIONAL OVERVIEWService BC is government’s chief provider of services to B.C. residents and businesses. The work of the division enables the design and delivery of accessible, responsive, and cost-effective services, making it easier for British Columbians and businesses to interact with government. Through a provincial network of 65 in-person offices and the Provincial Contact Center, Service BC provides approximately 300 government services for more than 40 partner ministries and agencies. Our team member’s unwavering commitment to an ethic of service has driven consistently high people and business satisfaction rates. In support of the division’s overarching goal of providing residents and businesses with seamless, multi-service access to government programs, the Division’s service offerings are marketed to partner ministries and the broader public sector to expand our continuum of services and leverage common platforms.Within Service BC, our vision is to deliver innovation, value, and service excellence to the people of British Columbia, with the aspirational goal of becoming a best-in-class public service delivery organization. Our people and our culture are important to us. As a team, we are motivated to deliver an excellent service experience to British Columbians, businesses, colleagues, peers, clients, and partners. We believe in being kind and helpful, and are committed to delivering “Service with Heart”.JOB OVERVIEWThe Service BC Customer Service Representative (CSR) maintains a positive, empathetic, and professional attitude when providing service and answering enquires. It requires the ability to identify and assess peoples’ needs to effectively and efficiently deliver an excellent customer service experience.The CSR provides services in-person, by phone, and through digital channels. The ability to provide clerical and administrative support such as data entry, reviewing applications for completeness, handling payments, and providing appropriate solutions, within government guidelines to a diverse population of people is essential to this role.Job Requirements:Minimum Grade 12 graduation or equivalent (GED).Experience providing inclusive customer service to diverse clienteles. Experience using digital applications to search for and record information. Preference may be given to applicants with one (1) or more of the following:Multiple years of experience in any of the above requirements.Experience providing in-person customer service.Experience providing customer service though phone or digital channels.Experience delivering customer service in a high volume, fast-paced, rapidly changing environment.Experience with conflict resolution and de-escalating situations.Experience providing services to a diverse population some of whom may be experiencing poverty issues, substance use, or mental health concerns.Experience maintaining administrative files and record keeping.Experience delivering service in a regulated or legislated environment following processes and procedures.Customer Service training and/or education.Experience handling financial transactions. Willingness Statements:Willingness to travel occasionally to provide relief coverage to other work sites (Service BC Centres, exam locations, etc.)Successful completion of security screening requirements of the BC Public Service, which may include a criminal records check, and/or Criminal Records Review Act (CRRA) check, and/or enhanced security screening checks as required by the ministry (Note: It is important that you read the job posting carefully to understand the specific security screening requirements pertaining to the position). For questions regarding this position, please contact melody.olsen@gov.bc.ca.About this Position: An eligibility list may be established to fill future temporary and permanent vacancies across the Ministry of Citizens' Services This position has full time on-site requirements.Working for the BC Public Service: The BC Public Service is committed to creating a diverse workplace to represent the population we serve and to better meet the needs of our citizens. Consider joining our team and being part of an innovative, inclusive and rewarding workplace. The Indigenous Applicant Advisory Service is available to applicants that self-identify as Indigenous (First Nations, status or non-status, Métis, or Inuit) seeking work or already employed in the BC Public Service. For guidance on applying and interviewing, please contact IndigenousApplicants@gov.bc.ca or 778-405-3452. The BC Public Service is an award-winning employer and offers employees competitive benefits, amazing learning opportunities and a chance to engage in rewarding work with exciting career development opportunities. For more information, please see What We Offer.How to Apply: Your application must clearly demonstrate how you meet the job requirements listed above.Cover Letter: NO - Please do not submit a cover letter as it will not be reviewed.Resume: YES - A resume is required as part of your application, however, it may not be used for initial shortlisting purposes.Questionnaire: YES - You will need to complete a comprehensive questionnaire to demonstrate how you meet the job requirements. Include all relevant information about your educational accomplishments and employment history including job titles, start and end dates (month and year) of your employment, and how you obtained your relevant experience. The questionnaire will take approximately 60 minutes to complete.Helpful tips, videos and more regarding the application process can be found on the Your Job Application page of MyHR. If you are experiencing technical difficulty applying, e-mail BCPSA.Hiring.Centre@gov.bc.ca, before the stated closing time, and we will respond as soon as possible.Additional Information: A Criminal Record Check (CRC) will be required. Applicants selected to move forward in the hiring process may be assessed on the Knowledge, Skills, Abilities and Competencies as outlined in the attached Job Profile located at the bottom of the posting. Applications will be accepted until 11:00 pm Pacific Standard Time on the closing date of the competition. Job Category  Administrative Services \",\n            \"location\": \"Merritt, BC\"\n        },\n        {\n            \"id\": \"A67FDFC2F7510451F7755EAC7FEB27CC\",\n            \"cityName\": \"Niagara Falls, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=00648ee9c6ffb540\",\n            \"jobName\": \"Customer Service & Retail Front Desk Associate\",\n            \"companyName\": \"Ph Vitres d'Autos\",\n            \"rowSalary\": \"Up to $18 an hour\",\n            \"date\": 1694477829277,\n            \"dateOfPosted\": 1694477828601,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.0895577,\n                    \"lon\": -79.0849436\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara Falls\",\n                \"formattedAddress\": \"Niagara Falls, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Niagara Falls\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Company:Driven Brands  We invite you to join us at Driven Brands!  Headquartered in Charlotte, NC, Driven Brands (NASDAQ: DRVN) is the largest automotive services company in North America, providing a range of consumer and commercial automotive needs, including paint, collision, glass, vehicle repair, oil change, maintenance and car wash.  With over 4,500 centers in 15 countries, Driven Brands is the parent company of some of North America’s leading automotive service brands including Take 5 Oil Change, Take 5 Car Wash, Driven Glass, Meineke, Maaco, CARSTAR, and more. Our network services over 50 million vehicles annually and generates more than $5 billion in system-wide sales each year.  Our culture inspires high performance and innovation, enabling our employees to go further, faster in their careers. With amazing people and great brands, we confidently look forward to exciting growth ahead, and believe in following the values that support this vision.  JOB DESCRIPTION:  Customer Service & Retail Front Desk Associate – Experienced & Entry Level Positions Available!  Are you a people person? Do you love helping others? Motivated by results?  If so, here is good news for you! Carstar, (a division of Driven Brands) is offering an opportunity to showcase your skills and join our growing team of Customer Service Representatives and Front Desk Associates!  Experience is VALUED…  Experienced customer service professionals with automotive industry experience can join our team right away making up to $18 per hour.*  …but no experience REQUIRED!  Some of our most successful customer service reps joined our team as trainees with no experience at all, but were once servers, restaurant workers, retail employees, call center employees, auto dealer account reps, or other customer-facing professionals!  What our Customer Service Reps love about Carstar:  Full-time & part-time schedules are available Competitive base pay rates PAID TIME OFF for full-time employees Health, Vision, & Dental Insurance As a Carstar Customer Service Rep, your job will be to:  Intake and assist walk-ins, appointments, and returning customers Create estimates, price quotes, and invoices for auto work Answer phones and return customer calls Provide excellent customer service Assist Manager with daily parts returns Ensure accuracy when ordering parts Input documentation on all calls and follow-up with callers as needed Confirm all mobile jobs parts and materials before dispatching drivers Open new accounts and service existing accounts Maintain a professional appearance and positive attitude All our CSR’s need to meet the following requirements:  Must have a positive attitude and customer service mindset Must have basic computer skills Must have strong communication skills Bilingual (Spanish) proficiency is a plus! Prior phone or call center experience is a plus!or more in markets with a higher cost of living #LI-DNI  #DBHVOL \",\n            \"location\": \"Niagara Falls, ON\"\n        },\n        {\n            \"id\": \"82BAE102ADA8087AB5C40B035FF1AB91\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4647545caede9581\",\n            \"jobName\": \"Customer Service Sales Representative\",\n            \"companyName\": \"United West Mississauga\",\n            \"rowSalary\": \"$620–$1,050 a week\",\n            \"date\": 1694477817729,\n            \"dateOfPosted\": 1694477816230,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 620.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    620.0\n                ],\n                \"range\": {\n                    \"gte\": 620.0,\n                    \"gt\": null,\n                    \"lte\": 620.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you looking for a supportive, collaborative workplace with great teams and inspiring leaders? You’ve come to the right place. We’re looking for ambitious people who share our values and want to make every day better for people around the world. If this sounds like you, and the career below sounds exciting, we’d like to hear from you. As a Customer Service Sales Representative , you will be the face of our clients. You will interact with customers to bring our clients products and services to life! You will create effective sales opportunities with each customer using the skills provided in our intensive training model. You will establish sales objectives which will contribute towards the overall success of the business. We have relationships with numerous high-profile associations and external businesses; therefore, you can directly impact the Company’s reputation, profitability and image.Key Accountability:Meet sales, service, quality and productivity objectivesResponsible for interacting with new and existing customers and clientsConduct needs analysis and provide advice to customers by effectively communicating the value and benefits of the products and services offered by our clientsProvide a high level of service, build relationships and provide accurate information and the appropriate solutions to new and existing customersRaise issues, concerns and trends to the leadership teamMaintain a high level of product knowledge, operational process and servicesAs our ideal candidate, you make valuable contributions in your ability to communicate effectively with people. You have a high-energy level and a desire to become part of a globally dynamic organization offering long-term career opportunities.Qualifications:Experience in a retail, customer service or sales rolePost-secondary degree or equivalent work/business experienceDemonstrated ability to persuade and negotiate and must possess active listening skillsEffective client record management, with attention to detailAbility to work in a fast-paced environment and manage multiple day-to-day tasksStrong computer skills, and a general knowledge level of the MS Office suite of productsJob Type: Full-timeSalary: $620.00-$1,050.00 per weekSchedule:8 hour shiftDay shiftMonday to FridayWeekends as neededAbility to commute/relocate:Mississauga, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"825DF626C8068368EE8325F32196BFAD\",\n            \"cityName\": \"Barrie, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=305f26b98b0fc1fe\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Employment Options, Barrie\",\n            \"rowSalary\": \"$56,000 a year\",\n            \"date\": 1694477777086,\n            \"dateOfPosted\": 1682531906800,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.38935559999999,\n                    \"lon\": -79.6903316\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Barrie\",\n                \"formattedAddress\": \"Barrie, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Barrie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 56000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    56000.0\n                ],\n                \"range\": {\n                    \"gte\": 56000.0,\n                    \"gt\": null,\n                    \"lte\": 56000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Bilingual Customer Service RepresentativeFillip is a Calgary-based fintech company leading the digital transformation of fleet payments. Fillip empowers hundreds of businesses with its universally accepted digital fleet card that solves the challenges of distributed payments for busy teams on the road.The Customer Success Representative (CSR) supports clients as they transition from sales prospects to active users. Focus is client relationships using proactive engagement strategies to maintain positive experiences.Customer Success RepresentativeThe CSR reports to the Head of Growth & Customer Success.ResponsibilitiesAssist new users/current clients with set-up, training, navigation, user supportPromote value through client experienceAssist with training material, onboarding support, account managementDocument and share user feedbackExecute proactive account management techniques that drive customer outcomes, product adoption and customer experienceReduce churn and drive new business growth through greater advocacy and reference abilityDelivering on fillip standards for customer support/compliance and timelinesInitiate engagement with internal team members and clients to support a culture of continuous improvementCollaborate with a world-class team:Communicating within the fillip team and across customersTrack client interactions in CRMWork closely with the Head of Growth to align on customer expectations, trends additional service opportunitiesAddress escalated client issues with speed and urgency, orchestrating resources across the company as appropriateWork cross-functionally orchestrating results with customer success, sales, marketing, product & development, people operations and finance.Requirements and SkillsBilingualProven work experience as a Customer Success Representative or similar roleExperience working with brand image and promoting value through customer experienceExceptional ability to communicate and foster positive business relationshipsTechnical skills required, as they relate to the use of fillip fleet and CRM toolsAccountability and personal organization are essentialExperience working with a diverse group of clients and team membersA communications or business diploma is preferredCompensation$56,000/yearAttractive bonus based on client retention targetsBenefit planJob Types: Full-time, PermanentSalary: $56,000.00 per yearBenefits:Dental careDisability insuranceEmployee assistance programLife insurancePaid time offVision careSchedule:Monday to FridayAbility to commute/relocate:Barrie, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Barrie, ON\"\n        },\n        {\n            \"id\": \"7EF3655F8136E349872DE46EF8B612A3\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=08a5d6bcbb4bf158\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Answerplus Inc\",\n            \"rowSalary\": \"$18.25 an hour\",\n            \"date\": 1694477776864,\n            \"dateOfPosted\": 1692777288096,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" At AnswerPlus, we are proud to say we’ve been in the answering service business for 60 years! With 4 locations across Canada and over 1500 clients, AnswerPlus has built an incredibly strong brand and reputation in the industry. Our niche is urgent call response 24/7/365. We seek to answer 80% of calls within 20 seconds or less.  As a Bilingual Customer Service Receptionist (BCSR), you have the privilege and opportunity to provide comfort and help in times of need. Bilingual CSR's answer  inbound calls and act as the  first point of contact for a wide range of situations. It could be processing a donation, providing comfort to someone stuck in an elevator, providing relief to someone experiencing pain, or aiding people in emergencies such as fires, floods, or power loss. To us, our clients, and our customers, a CSR is an \\\"invisible hero!\\\"  As a fulltime CSR we require open availability between 6 am and 12 am Monday to Sunday to work scheduled 30-40 hours per week. CSR's will be scheduled to  work a minimum of two weekends per month. We've created an award-winning culture that is backed by three generations and a true \\\"work family\\\" environment. Our employee average tenure is 9 years which also highlights how we support both personal and professional growth.  If this interests you, apply to join our team and partake in: Celebrations and Company EventsCoaching and MentoringDental, health, and EAP BenefitsPaid BreaksSocial Responsibility InitiativesPaid Training Role and Responsibilities: Provide thoughtful and professional customer supportAccurately collect details in an organized and timely mannerResolve customer issues and answer questions via phone, email, and live chatTake messages, enter orders, process and dispatch service callsMaintain a commitment to continuously improve the quality, efficiency, and effectiveness of service Qualifications and Skills:  This position requires individuals who are fluently bilingual in English and French and both written and verbally.Technically savvy and proficient keyboard skills (ie: 50+ WPM)Capable of utilizing Microsoft Office Suite, Microsoft Teams, Zoom and Go To MeetingStrong communication skills - interpersonal, listening, verbal, and writtenAbility to smile through the phone and connect with callers positivelyAbility to multitask and prioritize tasksEmpatheticGoal-orientedTeam player Work from Home Requirements: Quiet, dedicated room free of background noiseAbility to connect the computer from a router - not wirelessWindows PC - No Apple or Chrome BooksOperating System: Windows 10Full, standard-sized keyboard with Function Keys (F1-F12) and a number padTwo monitorsWebcam - for training and coaching purposesWired head set with microphone that connects to your cell phone or landlineUnlimited high-speed internetUnlimited Canada wide long-distance calling/cellphone calling planAbility to provide your own ethernet cable Start date: to be determined Training will be completed via Zoom/Go-to-Meetings/Microsoft Teams for 1-2 weeks Monday to Friday. Applicants should be available Monday to Friday between 8am-10pm for training. Daily hours will change and are scheduled between 4-8 hours per day. Camera's are mandatory to be on during all training. Compensation: $18.25 per hour plus $1.00 per hour performance bonus if targets are met when eligible. Our commitment to being an equal opportunity employer goes beyond acceptance. We celebrate and support all the amazing things that make you unique. All of our team members take pride in upholding an environment of mutual respect. We welcome and encourage applications from people with disabilities. If you require accommodation through the selection process, please call our office at 905-522-4737. \",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"89920C37FA73F24081D3DC3BF04DE07E\",\n            \"cityName\": \"Fort McMurray, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2d5ea9d3c8e68216\",\n            \"jobName\": \"Clerk, Customer Service\",\n            \"companyName\": \"Daadir Transportation Ltd\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694477713991,\n            \"dateOfPosted\": 1694477713607,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 56.7266598,\n                    \"lon\": -111.3790441\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fort McMurray\",\n                \"formattedAddress\": \"Fort McMurray, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 16\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fort McMurray\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: EnglishHours: 35 hours per weekEducation: No degree, certificate or diplomaExperience: 1 to less than 7 monthsWork setting Business sector Private sector Transportation Tasks Access and process information Address customers' complaints or concerns Arrange for billing for services Arrange for refunds and credits Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Receive and log complaints Receive payments Answer clients' inquiries and provide information Computer and technology knowledge Internet MS Excel MS Outlook MS Windows MS Word MS PowerPoint Transportation/travel information Own transportation Work conditions and physical capabilities Attention to detail Fast-paced environment Hand-eye co-ordination Repetitive tasks Tight deadlines Work under pressure Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Judgement Ability to multitask Health benefits Dental plan Health care plan Long term benefits Life insurance Other benefits Free parking available Paid time off (volunteering or personal days)\",\n            \"location\": \"Fort McMurray, AB\"\n        },\n        {\n            \"id\": \"C9FE37052E9D316BB176B9140E7109DF\",\n            \"cityName\": \"Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9bb840d392251131\",\n            \"jobName\": \"Customer Service Representative (Technical)\",\n            \"companyName\": \"City Wide Communications\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694476687036,\n            \"dateOfPosted\": 1691541132981,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6660885,\n                    \"lon\": -63.56756309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Dartmouth, NS $17 an hour, 6 positions available City Wide Communications is a local telecommunications company based in Dartmouth, NS. We’ve been around for 26 years and we’re not your average telco. We offer High Speed Internet, TV and home telephone service, and strive to give Atlantic Canadians affordable options and amazing customer service. We don’t want to be the big call center – we want to know your name and be a great place for you to excel and grow. Come join us! Main Responsibilities: The Technical Representative plays a pivotal role in providing exceptional technical support and assistance to customers, ensuring a positive and satisfying experience with our products and services. This position requires a strong understanding of various technologies, excellent problem-solving skills, and exceptional communication abilities. Act as the primary point of contact for customers seeking technical assistance via phone, email, or chat, and provide prompt and effective solutions to their queries and concerns. Troubleshoot hardware and software issues related to our products, identify root causes, and deliver comprehensive resolutions to ensure customer satisfaction. Guide customers through the installation, configuration, and setup process, ensuring they have a seamless experience with our products. Keep accurate records of customer interactions, technical issues, and solutions provided to build a knowledge base for future reference. Provide technical training and documentation to customers and internal teams to enhance their understanding of our products and improve troubleshooting skills. Identify opportunities for product improvement based on customer feedback. Strive to achieve key performance indicators (KPIs) related to customer satisfaction, response time, and issue resolution. What we offer: Competitive Pay – Starting at $16 an hour with automatic raises at 6 months and 2 years Flexible shift work between 8AM and 11PM A Comprehensive Medical, Vision & Dental Benefit Plan Opportunity to work from home or within our vibrant in office call center (paid training is done in the office as a group – working from home is an option once your full training has been successfully completed after 3 months)Casual dress code Free home telephone and internet service ( after completing probation successfully) Paid vacation, Free Parking Great teammates and team building events/contests (lately we have been doing BBQ lunches)Requirements: Call center experience - minimum 3 months Minimum High School DiplomaDemonstrates excellence in verbal communication skillsComfortable with using computer systems for data entryPunctual and committed to work schedulePass a criminal record check Demonstrates the ability to listen, understand and respond appropriately Great sense of humor\",\n            \"location\": \"Dartmouth, NS\"\n        },\n        {\n            \"id\": \"5CC75A92D7FCCC9866A8BFD545CFDE4E\",\n            \"cityName\": \"Watson Lake, YT\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bc60f13cf176f49e\",\n            \"jobName\": \"Customer Service Sales Clerk\",\n            \"companyName\": \"Shopping Unlimited Inc.\",\n            \"rowSalary\": \"$21 an hour\",\n            \"date\": 1694476649922,\n            \"dateOfPosted\": 1694420618658,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: EnglishHours: 15 to 20 hours per weekEducation: College/CEGEPExperience: 2 years to less than 3 yearsor equivalent experience Work site environment Non-smoking Work setting Rural area Relocation costs not covered by employer Mobile phone store Retail business Tasks Operate cash register Operate computerized inventory record keeping and re-ordering systems Provide advice about merchandise Assist in display of merchandise Greet customers and discuss type, quality and quantity of merchandise or services sought for purchase, rental or lease Maintain sales records for inventory control Prepare merchandise for purchase, rental or lease Prepare sales, rental or leasing contracts and accept cash, cheque, credit card or automatic debit payment Type of product Home electronics Office supplies Telephone or cellular phone Product or manufacturing design Toys Sporting goods and recreational items Personal care items Novelty items Home care items Car care items Security and safety Criminal record check Work conditions and physical capabilities Bending, crouching, kneeling Handling heavy loads Repetitive tasks Standing for extended periods Attention to detail Combination of sitting, standing, walking Weight handling More than 45 kg (100 lbs) Personal suitability Adaptability Collaborative Creativity Efficiency Hardworking Outgoing Positive attitude Proactive Quick learner Time management Dependability Efficient interpersonal skills Flexibility Organized Reliability Team player Excellent oral communication Initiative Accurate Excellent written communication Client focus Judgement Screening questions Do you have previous experience in this field of employment?\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"F1E95CF0A267D793E876FA0F1063DA45\",\n            \"cityName\": \"4960 13 St SE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=aeb5022a9b5e0a39\",\n            \"jobName\": \"Customer Service/Inside Sales Position\",\n            \"companyName\": \"All Blades Canada\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694476558625,\n            \"dateOfPosted\": 1694215050109,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"All Blades Canada Inc. is seeking an individual for a full time Customer service/Inside Sales position.Looking for someone who is hardworking, reliable, upbeat, and friendly with a positive team attitude. Should have good organization skills and the ability to prioritize. Preferably with inside sales and office experience with computers and programs (word, excel, POS programs)Responsibilities include but are not limited to:- Industrial sales and service counter duties- Maintaining and building customer relationships- Performing basic admin tasks (ie. Data entry, invoicing, digital filing)- Responding to incoming sales calls and customer inquiries- Shipping and receivingJob Types: Permanent, Full-timeSalary: $20.00-$24.00 per hourBenefits:Casual dressCompany eventsDental careExtended health careOn-site parkingPaid time offStore discountSchedule:8 hour shiftMonday to FridayWork Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"65B2390D0F506088FFD4F7C2EC597202\",\n            \"cityName\": \"2100 Steeles Ave W, Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8f1c6ea16c6876bf\",\n            \"jobName\": \"Receptionist/Customer Service Representative\",\n            \"companyName\": \"Canada Trust Driving School Inc.\",\n            \"rowSalary\": \"$19–$23 an hour\",\n            \"date\": 1694476276270,\n            \"dateOfPosted\": 1694380499791,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Canada Trust Driving School Inc, is a commercial vehicle driving school with an extra drive for quality and growth.At Canada Trust Driving School Inc, we value integrity, kindness and professionalism, and believe that with a team that shares our values, we can create an environment of constant growth and support.We are currently looking for a friendly and welcoming, communicative, and experienced person to join our team. As the full-time Information Desk Representative, you will be the point of contact and your duties will include greeting students and visitors to the school and determining the reason for their visit, answering phone calls, responding to inquiries by email and social media, and providing detailed information to all.Working closely with the School Administrator, you will be responsible for certain administrative duties, but primarily your role will be one of impeccable customer service and sales. As a liaison for the school, the information you provide and the way you provide it, should encourage visits to the school and in the end enrollment in one of our programs.If this sounds like an exciting position, if you can see the potential growth in the role and believe you can be an asset to the productivity and success of Canada Trust Driving School, please send your resume and tell us why you are the perfect fit for us.Candidates who have some experience in customer service and administrative roles are preferred.Duties and Responsibilities· Greet and welcome guests as they arrive at the office.· Direct visitors to the appropriate team member· Answer phone inquiries and provide accurate information about the school and our programs.· Respond to emails and social media messages in a prompt and professional manner.· Communicate with students regarding absences, availability, late arrivals for lessons, reminders of due dates and upcoming courses.· Communicate and coordinate with instructors, administrators and scheduling regarding student absences, availability, and late arrivals for lessons.· Perform clerical duties such as making copies and maintaining a steady inventory of applications and forms.· Update student cards and information· Ensure reception area is tidy and presentable, with all necessary stationery and materials (e.g. pens, forms and brochures)· Receive, sort, and distribute mail and deliveries.Requirements and Skills· Must be able to speak both Russian and English languages fluently, with solid written and verbal communication skills. Speaking Persian as well is an asset.· Highly organized multitasker who works well in a fast-paced environment, with the ability to prioritize tasks.· Proven work experience as a Receptionist, Front Office Representative, or similar role· Proficiency in Microsoft Office and a variety of Social Media platforms· Adept and experienced with office equipment (e.g., computers, printers, and telephones)· Professional and pleasant attitude and appearance· Ability to be resourceful and proactive when issues arise.· Excellent time management and communication skills· Customer service and sales attitude· An adaptive nature with a strong willingness to learn and grow with the company· High school diploma or equivalent; additional certification in administration is a plus.Job Types: Permanent, Full-timeSalary: $19.00-$23.00 per hourSchedule:Monday to FridayExperience:Administrative: 1 year (required)Sales: 1 year (preferred)Language:Russian (required)Persian (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"9A97EDB9FF4352A0D18F3C60B6823F04\",\n            \"cityName\": \"Storehouse Canada in Belleville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=807bce6932b35c4b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Storehouse Canada\",\n            \"rowSalary\": \"$15.50–$17.00 an hour\",\n            \"date\": 1694475822600,\n            \"dateOfPosted\": 1668682950007,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.1627589,\n                    \"lon\": -77.3832315\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Belleville\",\n                \"formattedAddress\": \"Belleville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hastings County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Belleville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The career and opportunity is challenging and requires determination, perseverance, and a strong sense of loyalty. This takes hard work, intelligence, and time. We are giving self-driven, energetic, and hardworking individuals a chance to get involved with one of the fastest-growing industries in Canada. Candidates will learn all aspects of running a business including marketing, advertising, customer service sales and business development and property management. We will develop your current skills and challenge you to learn new ones. Candidates who expect a lot from themselves and want to grow and learn new skills will find a home with our company.Below is a list of duties and responsibilities for this position:Showing Self-Storage unitsMaking Collection CallsRenting Self-Storage UnitsSelling merchandise (upsell moving and packing suppliesResponding to inquiries via emails and onlineAnswering phone callsAssisting the facility manager with daily, weekly and monthly operations.Receiving and processing paymentsMaintaining a clean officePerforming a facility and locker checkOpening and closing the facilityStocking merchandise areaMaintaining a clean and safe facilityEnsuring all rentable storage units are clean and ready to show to potential clientsProvide exceptional customer serviceWe emphasize Merit over seniority and offer competitive compensation. No experience is necessary to join our team; however, a degree or related experience is preferred. We thank all applicants for their interest, however only those selected for an interview will be contacted.Secondary School (preferred)Experience:customer service/sales: 2 yearsJob Types: Permanent, Part-timeSalary: $15.50-$17.00 per hourBenefits:Casual dressSchedule:Day shiftSupplemental pay types:Bonus payAbility to commute/relocate:Belleville, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)\",\n            \"location\": \"Belleville, ON\"\n        },\n        {\n            \"id\": \"4DB655B90D23FD686C4D0A71C2D76AF3\",\n            \"cityName\": \"Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d4caa4fd9f4c8a3d\",\n            \"jobName\": \"Customer Service/Ticket Agent\",\n            \"companyName\": \"Gray Line Sightseeing Victoria\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694475818880,\n            \"dateOfPosted\": 1693610464103,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4284207,\n                    \"lon\": -123.3656444\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job titleGray Line Sightseeing Victoria Customer Service/Ticket AgentReports toGray Line Manager/SupervisorJob OutlineDo you enjoy the outdoors? Do you like talking to and introducing people to our exciting and beautiful city? If so, Gray Line Sightseeing Victoria is the place for you!Our Customer Service/Ticket Agents are situated at Gray Line kiosks around Victoria’s picturesque Inner Harbour, engaging visitors and locals alike as ambassadors for our beautiful city and Gray Line’s multiple tour services. We provide a variety of memorable sightseeing experiences and serve as an important conduit for visitors who want to explore all that Victoria has to offer. An ideal candidate will have exceptional communication skills and possess a can-do attitude.At The Wilson’s Group of Companies, we believe in providing a positive and safe work environment for our staff members. If you’re looking to gain valuable experience in the tourism industry, this is a perfect start!We are looking for part time staff to start as soon as possible.Duties and responsibilitiesTicket sales for various products within Wilson’s Group and Sightseeing VictoriaPreparing guests for various tours and providing a memorable lasting experienceProvide guests with information and suggestions for touring VictoriaOpening and closing dutiesAssisting with projects as neededQualifications & ExperienceClass 5 Drivers licenseFriendly, outgoing, and energetic personalityAbility to work independently and as part of a teamAbility to take initiative, multi-task and be adaptable to different aspects of the jobWilling and able to work outside in various Victoria weather conditionsStrong sales capabilitiesProven problem-solving skillsExperience handling cash, maintaining a cash float and reconciling daily salesKnowledge of Victoria and its local attractions is an asset, additional training will be providedTourism experience and other languages is an asset but not requiredCompensationA competitive hourly wageUnique company and industry perksA supportive management teamRaises/promotions based on performanceIf you are interested in joining our Gray Line Sightseeing Victoria team, please submit your resume. While we welcome all applicants, only those selected for an interview will be contacted.Job Type: Part-timePart-time hours: 15-25 per weekSalary: From $18.00 per hourBenefits:Company eventsFlexible scheduleFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftExperience:Customer service: 1 year (preferred)Licence/Certification:Class 5 Licence (preferred)Work Location: In person\",\n            \"location\": \"Victoria, BC\"\n        },\n        {\n            \"id\": \"7133DD48F7D8BA896070DD2742F635CC\",\n            \"cityName\": \"17600 Yonge Street, Newmarket, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f3782cb5b5f6fa7f\",\n            \"jobName\": \"Customer Service And Food hAndling\",\n            \"companyName\": \"Subway\",\n            \"rowSalary\": \"$15.50–$17.50 an hour\",\n            \"date\": 1694475131775,\n            \"dateOfPosted\": 1670099707246,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.0493831,\n                    \"lon\": -79.47891640000002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Newmarket\",\n                \"formattedAddress\": \"Yonge St, Newmarket, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Newmarket\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Subway located in upper Canada mall is hiring!we are currently hiring full time & part time positions. We have day shifts, evening and weekend shifts available.We are looking for friendly and outgoing candidates, who have the ability to work well with others and in a fast paced environment.Please reply to this ad with your resume, or during a resume to subway.Thank you!Job Types: Part-time, Full-timePart-time hours: 40 per weekSalary: $15.50-$17.50 per hourSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayWeekend availabilityWork Location: In person\",\n            \"location\": \"Yonge St, Newmarket, ON\"\n        },\n        {\n            \"id\": \"5DF07F024CC86389628D7606D8902301\",\n            \"cityName\": \"2539 Broadway W, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b66f1e76373827cd\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Thomas Haas Chocolates & Patisserie\",\n            \"rowSalary\": \"$18–$19 an hour\",\n            \"date\": 1694474715487,\n            \"dateOfPosted\": 1694310574467,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"THOMAS HAAS Chocolates and Patisserie is looking for a FOODIE & COFFEE loving person to join our team!- Full-time: Tuesday to Saturday (40hrs/wk)Sundays & Mondays Closed (always have 2 set days off)Opening shift starts at 7:15amClosing shift ends around 7pm (giving you time for dinner with family & friends! :)- we are looking for someone who is hardworking, possess good multi-tasking skills, has attention to detail, enjoys engaging with people and is self-motivated- a good part of this job is talking with our customers & your co-workers - good listening skills & English comprehension are key!- we offer a competitive wage & shared tips- free beverages & meal while at work- extended health benefits (after one year full-time with us)- we hire people on work/travel visas (12 months)Your past customer service experience would reflect in your starting wage.*barista experience is an asset, but not necessary*Do you have a willingness to learn and expand your skill set?Do you enjoy working in a team in a fast paced environment?We would love to meet you if this sounds like an opportunity you would like to pursue!Job Type: Full-timeSalary: $18.00-$19.00 per hourBenefits:Dental careFlexible schedulePaid time offVision careSchedule:8 hour shiftDay shiftSupplemental pay types:TipsAbility to commute/relocate:Vancouver, BC V6K 2E9: reliably commute or plan to relocate before starting work (required)Application question(s):How do you handle a stressful situation?Education:Secondary School (required)Experience:customer service: 1 year (required)Language:and comprehend English very well (required)Licence/Certification:FoodSafe (required)Shift availability:Day Shift (required)Work Location: In personApplication deadline: 2023-09-23Expected start date: 2023-09-15\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"89CD00BA8A6DD6B8938659F44A10AC3B\",\n            \"cityName\": \"12038 248 St, Maple Ridge, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=63c6cbc58a164bed\",\n            \"jobName\": \"Customer Service Expert / Pizza Cook\",\n            \"companyName\": \"Domino’s | Silver Valley Pizza Inc.\",\n            \"rowSalary\": \"$16.75–$17.75 an hour\",\n            \"date\": 1694474676996,\n            \"dateOfPosted\": 1694298894251,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service Expert’s role is crucial within the Domino’s system. We pride ourselves on offering fast and friendly service with a smile, and our CSEs lead the way in doing so. Within our fast paced environment, the role is primarily to offer top quality customer service by phone and in person at the counter. Customer Service Experts are expected to know Domino’s products and the current offers in order to provide customers with the correct order and best value based on their needs. A uniform is provided. Customer Service Experts are expected to be presentable by following Domino’s personal image and grooming standards. Functions: Customer Service Experts will take orders by phone-in customers, as well as customers at the store. They are expected to manage the cash drawer when accepting payment for orders and returning change. CSEs will also handle customer concerns using the approach taught during Domino’s on-boarding and orientation. Customer Service Experts will also help make quality products, label boxes, cut pizzas and prepare orders for delivery or to be served to in-store customers. CSEs also help in maintaining the store’s professional image by participating in the cleaning tasks assigned to all team members. Qualifications: All Customer Service Experts must have the following:Friendly and well spokenGood math skills to handle cash handling for in-store customer paymentsSpeak English fluently in order to serve customers Benefits:Flexible schedulesCompetitive wagesStaff discountsCareer growth opportunitiesHealth & Dental available for full-time staff REQUIREMENTS Must be 16 years or older At Domino's Pizza, Our Most Important Ingredient is Our People! We offer employment opportunities within our franchise stores. Take the first step in joining our team, and you'll find opportunities you won't find anywhere else in the industry!\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"2437324B20A1A3B6D8723926D3D3C539\",\n            \"cityName\": \"Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=085ea399009bf944\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Roshni Wellness\",\n            \"rowSalary\": \"$19–$20 an hour\",\n            \"date\": 1694474668768,\n            \"dateOfPosted\": 1694298894850,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative- MarketsWe're looking for someone to run our Central Okanagan markets for the Fall/Winter Season. Markets are booked on weekends from Sept- early Dec in the Kelowna/West Kelowna area. Must be available to work weekends. Perfect for university students or those looking for additional income on weekends.Duties:- Provide exceptional customer service and support to customers- Coordinate setting up and taking down displays at market locations across the Centeral Okanagan- Interact with customers and be ready to share product info, pricing, and any others questions- Communicate with team about stock, sales, trends, etc.- Maintain sales and product inventory stats using our systems-Requirements:- Excellent verbal and written communication skills- Interest in the local makers scene and appreciation for handmade local goods- Strong problem-solving and decision-making abilities- Ability to analyze customer needs and provide appropriate solutions- Previous experience in a customer service role is preferred- Proficient in using computer systems and software applications- Ability to work mostly independently as well as part of a team- High school diploma or equivalent-Able to lift 50 lbs for market sets ups-Must have a reliable vehicle that can fit market equipment and can transport to market locationsWe offer competitive pay, a positive work environment, and opportunities for growth within the company. If you are a motivated individual with a passion for providing excellent customer service, we would love to hear from you.To apply, please submit your resume and cover letter detailing your relevant experience and why you are interested in this position.This posting is only open to individuals who are permitted to work in Canada.Job Types: Part-time, SeasonalContract length: 3 monthsPart-time hours: 12 per weekSalary: $19.00-$20.00 per hourSchedule:Weekends as neededWeekends onlyApplication question(s):Do you have a reliable vehicle that you can use to commute and transport market equipment in?Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Ability to Commute:Kelowna, BC (preferred)Work Location: In personExpected start date: 2023-09-17\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"8A1166D4A57C3D2F93D73AB6D5FEEEE4\",\n            \"cityName\": \"194 Chain Lake Dr, Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=344bfb716ddb9c59\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Spirit Halloween, Bayers Lake\",\n            \"rowSalary\": \"$15–$17 an hour\",\n            \"date\": 1694473063331,\n            \"dateOfPosted\": 1693625548626,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.645894,\n                    \"lon\": -63.66951599999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax\",\n                \"formattedAddress\": \"Chain Lake Dr, Halifax, NS B3S, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halifax\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Company descriptionSpirit Halloween is Canada's number 1 store for costumes, decore and more.This is a seasonal position we build in August, and tear down in November, then repeat next year. If you enjoy scary movies, pop culture and all things halloween, then this is a great place to work.Job descriptionIf you like all things Halloween, then this is a great opportunity to be in your element.Spirit halloween is Canada's number 1 halloween retailer, with the best prices and best customer service policies in the nation. We work with all things spooky, macabre and pop culture to deliver a unique experience to our customers and staff a like.This is a seasonal position, which ends in early-mid November.So this is not at all permanent. However you are invited to stay with us each season.Great opportunity to earn extra cash for the holidays.Great customers. Lots of fun.Job Types: Full-time, Part-time, TemporaryContract length: 2-3 monthsPart-time hours: 16-48 per weekSalary: $15.00-$17.00 per hourBenefits:On-site parkingStore discountDay range:Monday to FridayWeekends as neededShift:10 hour shift12 hour shift4 hour shift8 hour shiftDay shiftWork setting:Apparel storeCOVID-19 considerations:Plastic barriers and masks are required on premisesWork Location: In person\",\n            \"location\": \"Chain Lake Dr, Halifax, NS\"\n        },\n        {\n            \"id\": \"2E0BF48A5644343BEFE88390FCEE6C12\",\n            \"cityName\": \"Prince Albert, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=88870141dbaaadba\",\n            \"jobName\": \"Customer Service Representative - Financial Services\",\n            \"companyName\": \"Speedy Cash Canada\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694473047241,\n            \"dateOfPosted\": 1693624919462,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.2033494,\n                    \"lon\": -105.7530705\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Prince Albert\",\n                \"formattedAddress\": \"Prince Albert, SK, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 15\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Prince Albert\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsHealth benefits Dental plan Health care plan Paramedical services coverage Vision care benefits Financial benefits Bonus Long term benefits Pension planWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Prince Albert, SK\"\n        },\n        {\n            \"id\": \"3E092857EDAFEF1E7278C84358A4465A\",\n            \"cityName\": \"Arum Lily Edmonton in Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0fed82cb45d9582b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Arum Lily Edmonton\",\n            \"rowSalary\": \"$17–$20 an hour\",\n            \"date\": 1694473025405,\n            \"dateOfPosted\": 1693625003262,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Serves customers by helping them select products.Drives sales through engagement of customers, suggestive selling, and sharing product knowledge.Responds to customers’ questions.Documents sales by creating or updating customer profile records.Processes payments by totaling purchases, processing checks, cash, and store or other credit and debit cards.keeps the front shop clean and organized.helps other team members when busy.Maintaining a positive, empathetic, and professional attitude toward customers at all times.Communicating with customers through various channels.Acknowledging and resolving customer complaints.Communicating and coordinating with colleagues as necessary.Ensure customer satisfaction and provide professional customer support.Knowledge in Marketing and social media is a BONUS.Job Type: Full-timeSalary: $17.00-$20.00 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftEducation:Secondary School (preferred)Experience:customer service: 3 years (required)Work Location: In personExpected start date: 2023-09-25\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"6665D9114E17BE5F7302F2F4B28B1DC0\",\n            \"cityName\": \"Breslau, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=438d22dff0f3bb27\",\n            \"jobName\": \"Customer Service Scheduler\",\n            \"companyName\": \"Community Support Connections\",\n            \"rowSalary\": \"$18.65 an hour\",\n            \"date\": 1694472893225,\n            \"dateOfPosted\": 1693624893957,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4691726,\n                    \"lon\": -80.4094164\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Breslau\",\n                \"formattedAddress\": \"Breslau, ON N0B 1M0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Breslau\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CUSTOMER SERVICE SCHEDULER Permanent, Full-Time Estimated Start Date: September 25, 2023 35 hours per week, $18.65/hour (Monday - Friday, weekend availability) At Community Support Connections, we wake up each morning energized about the difference we make in the lives of our clients; people who could be your parents, grandparents, friends, or neighbours. Working with hundreds of amazing volunteers, donors, and community partners, we provide a wide range of community supports for older adults and people with different abilities to help them live at home with independence and dignity – something we all deserve. We are truly caring and client-centered, and are constantly innovating; looking for new and better ways to provide the best care and supports possible. Passion and commitment permeate everything we do. Driven by our values, we treat our clients, volunteers, donors, and each other, with dignity and respect. We recognize that diversity is the foundation for understanding the needs of our stakeholders. We believe the best way to serve our clients and volunteers is to create an environment and culture that empowers our staff to be as productive and happy as possible. That includes: Versatile work options including flexible hours or work from home hybrid Generous benefit days and group RRSPs Competitive health and dental benefits Access to our Employee and Family Assistance Plan (EFAP) On-site hot lunch options from our own kitchen Free parking If what we do resonates with your core values, then we want to hear from you! The Role: Working closely with the Scheduling Team, the Customer Service Scheduler provides customer service in a professional and friendly manner. This includes answering telephone calls, greeting visitors, answering and redirecting inquiries, processing mail, and maintaining database information. They respond to client needs and demands for internal services, identify client needs, and communicate with staff, clients and volunteers regarding various agency programs. You: Successfully balance technical and logistical duties with patience and professionalism to respond to clients, caregivers, volunteers and visitors Thrive in a fast-paced, dynamic, responsive and ever-changing environment Are able to prioritize workloads and handle multiple projects simultaneously Are a natural problem-solver with demonstrated ability to use good judgement in decision-making Are an excellent communicator with a keen sense of timeliness Responsibilities Answer multi-line phone; greet clients, volunteers and other visitors; answer client inquiries and redirect calls and inquires to appropriate agency staff members Receive client requests for services Coordinate service with our day program partners Prepares and updates Transportation, Meals on Wheels, and Assisted Grocery Shopping schedules to ensure agency resources are maximized and adjustments are addressed Match transportation and shopping clients’ needs with drivers Coordinate the Assisted Grocery Shopping Program Communicate schedules with clients, volunteers and staff and communicate any changes to the schedule Conduct follow-ups on client and volunteer inquiries, requests or complaints in a professional and friendly manner Ensure all scheduling and program information is entered accurately in the AlayaCare database Update and maintain client information in AlayaCare Conduct weekly audit of AlayaCare to ensure scheduling entries and associated billings are accurate Drive agency vehicles (including for program delivery) if required Assists with special projects and other tasks, as needed Education/Qualifications Two-year community college diploma in a related field or equivalent work experience Minimum 1-year customer service experience Valid Driver’s License and daily access to a reliable vehicle for business-related travel Clean Drivers Abstract Current Emergency First Aid/CPR A Certificate Experience working with older adults and/or people with diverse abilities Working Hours & Environment Willing and able to work occasional evenings and weekends Extensive computer and telephone use Willing and able to work in a hybrid work setting (home and office) Please submit a resume and cover letter, clearly identifying the unique attributes you bring to the position by September 15, 2023. We are happy to accommodate the needs of qualified candidates in all parts of the recruitment and assessment process in accordance with the Accessibility for Ontarians with Disabilities Act (AODA). If you are contacted for an interview and anticipate needing accommodations for any part of the recruitment process, please do not hesitate to let us know how to best meet your needs. Only those candidates selected for an interview will be contacted. Check out communitysupportconnections.org to learn more about our programs and services! You can also find us on Facebook, Twitter and LinkedIn!7SGhlTOsrE\",\n            \"location\": \"Breslau, ON\"\n        },\n        {\n            \"id\": \"CABF2B08B3E64BC652D95189D5CA4BF5\",\n            \"cityName\": \"Westmount, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4cfdabab544adcf7\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Answerplus Inc\",\n            \"rowSalary\": \"$18.25 an hour\",\n            \"date\": 1694472768165,\n            \"dateOfPosted\": 1692777290993,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.48571889999999,\n                    \"lon\": -73.59569929999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Westmount\",\n                \"formattedAddress\": \"Westmount, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Westmount\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" At AnswerPlus, we are proud to say we’ve been in the answering service business for 60 years! With 4 locations across Canada and over 1500 clients, AnswerPlus has built an incredibly strong brand and reputation in the industry. Our niche is urgent call response 24/7/365. We seek to answer 80% of calls within 20 seconds or less.  As a Bilingual Customer Service Receptionist (BCSR), you have the privilege and opportunity to provide comfort and help in times of need. Bilingual CSR's answer  inbound calls and act as the  first point of contact for a wide range of situations. It could be processing a donation, providing comfort to someone stuck in an elevator, providing relief to someone experiencing pain, or aiding people in emergencies such as fires, floods, or power loss. To us, our clients, and our customers, a CSR is an \\\"invisible hero!\\\"  As a fulltime CSR we require open availability between 6 am and 12 am Monday to Sunday to work scheduled 30-40 hours per week. CSR's will be scheduled to  work a minimum of two weekends per month. We've created an award-winning culture that is backed by three generations and a true \\\"work family\\\" environment. Our employee average tenure is 9 years which also highlights how we support both personal and professional growth.  If this interests you, apply to join our team and partake in: Celebrations and Company EventsCoaching and MentoringDental, health, and EAP BenefitsPaid BreaksSocial Responsibility InitiativesPaid Training Role and Responsibilities: Provide thoughtful and professional customer supportAccurately collect details in an organized and timely mannerResolve customer issues and answer questions via phone, email, and live chatTake messages, enter orders, process and dispatch service callsMaintain a commitment to continuously improve the quality, efficiency, and effectiveness of service Qualifications and Skills:  This position requires individuals who are fluently bilingual in English and French and both written and verbally.Technically savvy and proficient keyboard skills (ie: 50+ WPM)Capable of utilizing Microsoft Office Suite, Microsoft Teams, Zoom and Go To MeetingStrong communication skills - interpersonal, listening, verbal, and writtenAbility to smile through the phone and connect with callers positivelyAbility to multitask and prioritize tasksEmpatheticGoal-orientedTeam player Work from Home Requirements: Quiet, dedicated room free of background noiseAbility to connect the computer from a router - not wirelessWindows PC - No Apple or Chrome BooksOperating System: Windows 10Full, standard-sized keyboard with Function Keys (F1-F12) and a number padTwo monitorsWebcam - for training and coaching purposesWired head set with microphone that connects to your cell phone or landlineUnlimited high-speed internetUnlimited Canada wide long-distance calling/cellphone calling planAbility to provide your own ethernet cable Start date: to be determined Training will be completed via Zoom/Go-to-Meetings/Microsoft Teams for 1-2 weeks Monday to Friday. Applicants should be available Monday to Friday between 8am-10pm for training. Daily hours will change and are scheduled between 4-8 hours per day. Camera's are mandatory to be on during all training. Compensation: $18.25 per hour plus $1.00 per hour performance bonus if targets are met when eligible. Our commitment to being an equal opportunity employer goes beyond acceptance. We celebrate and support all the amazing things that make you unique. All of our team members take pride in upholding an environment of mutual respect. We welcome and encourage applications from people with disabilities. If you require accommodation through the selection process, please call our office at 905-522-4737. \",\n            \"location\": \"Westmount, QC\"\n        },\n        {\n            \"id\": \"65C4E810877510EB264AF600FDFCFA26\",\n            \"cityName\": \"Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=086b2d17abe5de8d\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Answerplus Inc\",\n            \"rowSalary\": \"$18.25 an hour\",\n            \"date\": 1694472735266,\n            \"dateOfPosted\": 1692777338340,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2557206,\n                    \"lon\": -79.8711024\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" At AnswerPlus, we are proud to say we’ve been in the answering service business for 60 years! With 4 locations across Canada and over 1500 clients, AnswerPlus has built an incredibly strong brand and reputation in the industry. Our niche is urgent call response 24/7/365. We seek to answer 80% of calls within 20 seconds or less.  As a Bilingual Customer Service Receptionist (BCSR), you have the privilege and opportunity to provide comfort and help in times of need. Bilingual CSR's answer  inbound calls and act as the  first point of contact for a wide range of situations. It could be processing a donation, providing comfort to someone stuck in an elevator, providing relief to someone experiencing pain, or aiding people in emergencies such as fires, floods, or power loss. To us, our clients, and our customers, a CSR is an \\\"invisible hero!\\\"  As a fulltime CSR we require open availability between 6 am and 12 am Monday to Sunday to work scheduled 30-40 hours per week. CSR's will be scheduled to  work a minimum of two weekends per month. We've created an award-winning culture that is backed by three generations and a true \\\"work family\\\" environment. Our employee average tenure is 9 years which also highlights how we support both personal and professional growth.  If this interests you, apply to join our team and partake in: Celebrations and Company EventsCoaching and MentoringDental, health, and EAP BenefitsPaid BreaksSocial Responsibility InitiativesPaid Training Role and Responsibilities: Provide thoughtful and professional customer supportAccurately collect details in an organized and timely mannerResolve customer issues and answer questions via phone, email, and live chatTake messages, enter orders, process and dispatch service callsMaintain a commitment to continuously improve the quality, efficiency, and effectiveness of service Qualifications and Skills:  This position requires individuals who are fluently bilingual in English and French and both written and verbally.Technically savvy and proficient keyboard skills (ie: 50+ WPM)Capable of utilizing Microsoft Office Suite, Microsoft Teams, Zoom and Go To MeetingStrong communication skills - interpersonal, listening, verbal, and writtenAbility to smile through the phone and connect with callers positivelyAbility to multitask and prioritize tasksEmpatheticGoal-orientedTeam player Work from Home Requirements: Quiet, dedicated room free of background noiseAbility to connect the computer from a router - not wirelessWindows PC - No Apple or Chrome BooksOperating System: Windows 10Full, standard-sized keyboard with Function Keys (F1-F12) and a number padTwo monitorsWebcam - for training and coaching purposesWired head set with microphone that connects to your cell phone or landlineUnlimited high-speed internetUnlimited Canada wide long-distance calling/cellphone calling planAbility to provide your own ethernet cable Start date: to be determined Training will be completed via Zoom/Go-to-Meetings/Microsoft Teams for 1-2 weeks Monday to Friday. Applicants should be available Monday to Friday between 8am-10pm for training. Daily hours will change and are scheduled between 4-8 hours per day. Camera's are mandatory to be on during all training. Compensation: $18.25 per hour plus $1.00 per hour performance bonus if targets are met when eligible. Our commitment to being an equal opportunity employer goes beyond acceptance. We celebrate and support all the amazing things that make you unique. All of our team members take pride in upholding an environment of mutual respect. We welcome and encourage applications from people with disabilities. If you require accommodation through the selection process, please call our office at 905-522-4737. \",\n            \"location\": \"Hamilton, ON\"\n        },\n        {\n            \"id\": \"E6E2524949155875B6744B9E6CA27049\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dc5887f05a02b0b9\",\n            \"jobName\": \"Customer Service Support Representative\",\n            \"companyName\": \"Nugget.Ai\",\n            \"rowSalary\": \"$21.65 an hour\",\n            \"date\": 1694472634355,\n            \"dateOfPosted\": 1692777284638,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"nugget.ai is posting this job on behalf of our client, Garden River First Nation Educational Unit . nugget.ai is responsible solely for the posting of this job. Garden River First Nation Educational Unit will be responsible for the application, screening and hiring process. Employment Type : Full-time Salary: $21.65/hr Position Summary: Garden River First Nation Education Unit is seeking a Customer Service Support Representative to join our team. This position will work with customers to ensure that all our customers’ needs are addressed accurately and efficiently. The Customer Service Support Representative will provide education and handle a wide variety of questions while ensuring a world-class customer experience. The ideal candidate will be passionate about Customer Service and motivated to work with a customer-centric team. Requirements: High School Diploma or GED equivalent Previous experience in a customer service role Knowledge of Microsoft Office suite Strong verbal and written communication skills and excellent ability to listen and respond Must be courteous with strong customer service orientation Excellent multitasking abilities Strong flexibility and the ability to manage and adapt to changing priorities quickly Nice to Haves: Associate’s or Bachelor’s degree Experience working in a contact center/call center environment Job Duties/Responsibilities: Resolve routine customer requests with services via inbound, outbound calls, or the Internet. Speak with customers in a courteous, friendly, and professional manner using protocol procedures. Inquire, clarify, and confirm customer requirements and understanding of the solution. Provide additional customer education and information as needed. Notify clients of any results in a timely and accurate manner Participate in activities designed to improve customer satisfaction and business performance. Perform administrative support for school record management, CRM data maintenance, and internal records to assure HIPAA compliance. This position requires a current satisfactory Criminal Records Check (including Vulnerable Sector Search), Child Abuse Registry Check and Adult Abuse Registry Check as conditions of employment. The successful candidate will be responsible for any service charges incurred. A security check is considered current if it was obtained no more than six (6) months prior to the start of employment.\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"60B0133E9ED78BE1F76FA0D29B4E0AA5\",\n            \"cityName\": \"801 Royal Oak Dr, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1e085dcc714ff3eb\",\n            \"jobName\": \"Cashier/Customer Service - Victoria (Broadmead Village)\",\n            \"companyName\": \"Canadian Tire\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694472263857,\n            \"dateOfPosted\": 1694472263612,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.49763189999999,\n                    \"lon\": -123.3742387\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Royal Oak Dr, Saanich, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you ready to join Canada's most-shopped general merchandise retailer, with over 500 stores from coast to coast? Canadian Tire offers customers a unique mix of products and services through three specialty categories in which the organization is the market leader - automotive parts, accessories and service; sports and leisure products; and home products. Canadian Tire offers competitive compensation packages including; benefits, potential for profit sharing, extensive training, and career opportunities from within and across the country at the Canadian Tire Retail stores. Summary The Cashier team member works in a fast-paced environment that involves constant interaction with customers. This position requires delivering friendly and courteous service while processing customer purchases efficiently and correctly. This role involves the operation of a computerized cash register. Main Responsibilities and Tasks: Operates cash register and all point of sales functions.Processes customer purchases efficiently, following standardized procedures.Accurately verifies merchandise quantities, descriptions and prices when processing customer purchases.Balances cash and is aware of amount of cash on hand.Maintains merchandise around the cash area and ensures that retail basics are executed efficiently.Handles multiple customers in an effective and efficient manner.Deals with challenging situations and conflict resolution in a professional manner. Requirements Highly approachable, customer-oriented individual who thrives in offering exceptional service to customers.Strong belief in the Canadian Tire values of honesty, integrity, and respect.Effective written and oral communication skills and the ability to maintain professional communication, even in challenging situations.Attention to detail and organizational skills.Ability to resolve retail and/or customer issues.Ability to multitask, adapt and cope with challenging and changing situations.Positive attitude, punctuality and solid work ethic.Strong mathematical ability and typing skills.Ability to work with computerized systems and with minimum supervision. More about the position: Potential Career OpportunitiesNext levels: Merchandiser, Cashier Supervisor, and Department Manager.Physical Demands and Working ConditionsStanding/walking for 8 hours.Lifting and/or carrying of merchandise items, as required, on a regular, frequent and unassisted basis. Merchandise item may vary in weight from \\\"light\\\" to \\\"heavy\\\".Our offering includesCompetitive compensation and benefit packagePotential for Profit SharingEmployee Shopping DiscountsFlexible work hoursLearning and Development opportunitiesScholarshipsReward and Recognition ProgramA culture of performance & accountabilityA supportive and positive team environment Background Check Requirements As a condition of employment, this position may be subject to the successful completion of the following pre-employment conditions:Reference CheckEmployment VerificationsCriminal Background CheckCredit Check\",\n            \"location\": \"Royal Oak Dr, Victoria, BC\"\n        },\n        {\n            \"id\": \"756EE852AA76D233FCBFAA54EFF5BD4A\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4257ef8aff5a1cf2\",\n            \"jobName\": \"Customer Service Support Representative\",\n            \"companyName\": \"Nugget.Ai\",\n            \"rowSalary\": \"$21.65 an hour\",\n            \"date\": 1694472067991,\n            \"dateOfPosted\": 1692774988465,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"nugget.ai is posting this job on behalf of our client, Garden River First Nation Educational Unit . nugget.ai is responsible solely for the posting of this job. Garden River First Nation Educational Unit will be responsible for the application, screening and hiring process. Employment Type : Full-time Salary: $21.65/hr Position Summary: Garden River First Nation Education Unit is seeking a Customer Service Support Representative to join our team. This position will work with customers to ensure that all our customers’ needs are addressed accurately and efficiently. The Customer Service Support Representative will provide education and handle a wide variety of questions while ensuring a world-class customer experience. The ideal candidate will be passionate about Customer Service and motivated to work with a customer-centric team. Requirements: High School Diploma or GED equivalent Previous experience in a customer service role Knowledge of Microsoft Office suite Strong verbal and written communication skills and excellent ability to listen and respond Must be courteous with strong customer service orientation Excellent multitasking abilities Strong flexibility and the ability to manage and adapt to changing priorities quickly Nice to Haves: Associate’s or Bachelor’s degree Experience working in a contact center/call center environment Job Duties/Responsibilities: Resolve routine customer requests with services via inbound, outbound calls, or the Internet. Speak with customers in a courteous, friendly, and professional manner using protocol procedures. Inquire, clarify, and confirm customer requirements and understanding of the solution. Provide additional customer education and information as needed. Notify clients of any results in a timely and accurate manner Participate in activities designed to improve customer satisfaction and business performance. Perform administrative support for school record management, CRM data maintenance, and internal records to assure HIPAA compliance. This position requires a current satisfactory Criminal Records Check (including Vulnerable Sector Search), Child Abuse Registry Check and Adult Abuse Registry Check as conditions of employment. The successful candidate will be responsible for any service charges incurred. A security check is considered current if it was obtained no more than six (6) months prior to the start of employment.\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"9B5E12DD264998F0455D7E6867FCC8AB\",\n            \"cityName\": \"St.Urbain Bagel in Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a8d7f4855c6a5e96\",\n            \"jobName\": \"Customer Service, Cleaning\",\n            \"companyName\": \"St.Urbain Bagel\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694471888256,\n            \"dateOfPosted\": 1693625840453,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Looking for someone from 8 AM to 4 PM on Saturdays and perhaps Thursdays from 10-4 at the moment. Someone who is responsible and motivated, willing to work in a busy but fun environment with friendly staff.Job Types: Full-time, Part-timePart-time hours: 50 per weekSalary: From $17.00 per hourBenefits:Dental careExtended health careStore discountSchedule:8 hour shiftWeekends as neededSupplemental pay types:TipsExperience:cleaning: 1 year (preferred)cleaner: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"ADCC1F9253B6EB663E4D7625C6E021E9\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2755d24258ee1d41\",\n            \"jobName\": \"Customer Service & Retention Specialist (Mandarin Speaker Only)\",\n            \"companyName\": \"Connex Global Communications Inc. O/A Phonebox\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694471595543,\n            \"dateOfPosted\": 1693625013796,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Connex Global Communications Inc. o/a PhoneBox is looking for a Full-Time and Permanent Customer Support Representative located in our Toronto branch office. PhoneBox provides affordable wireless plans in Canada and the United States to students and visitors to Canada since 2011. We are looking forward a responsible and energetic individual to join our team.JOB DESCRIPTIONReceiving and processing inquiries for account changes and customer care topics over phone, livechat, email, and SMS textsFollow and respond to inquiries based on guidelines provided by customer care managerWork as a store-front customer support representativeProcess payment related duties and assist in managing inventory of devices and SIM cardsInteracting closely with Customers and share any questions or concerns to the teamAssisting walk-in clients at the retain store location on their requests including but are not limited to Activations, Bill payments, Account terminationsWorking on Operations duties which in relations to Clients and Partners supportLeading and Supervising Retention teamCreate deals/promotions that can retain the clients and match with the market offersRequirementsGeneral office/administrative skills, with above-average writing skillsGood English proficiency, written and verbal. Fluent in Mandarin is required.Good communication and relationship-building skills in multicultural workplaceHandle customer inquiries, complaints, billing questions and payment issues/servicesDetail oriented, organized, computer savvy and a multitaskerAbility to function well in a busy and high volume environment.Ability to work effectively, both independently and as part of a team.Ability to consistently offer professional and engaging customer service.Job Types: Full-time, PermanentJob Types: Full-time, PermanentSalary: $17.00-$19.00 per hourBenefits:Casual dressCompany eventsDental careDiscounted or free foodExtended health careFlexible schedulePaid time offStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payWork Location: In personExpected start date: 2023-09-18\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"114D1402A71331EA84B1FB2B7C021719\",\n            \"cityName\": \"1006 103A St SW Ste 301, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=962a09b3f07042f0\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Fountain Tire\",\n            \"rowSalary\": \"$55,000–$58,000 a year\",\n            \"date\": 1694471494880,\n            \"dateOfPosted\": 1693624940737,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.454021,\n                    \"lon\": -113.5655165\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Southwest Edmonton, Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Leduc County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 55000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    55000.0\n                ],\n                \"range\": {\n                    \"gte\": 55000.0,\n                    \"gt\": null,\n                    \"lte\": 55000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Overview:  Fountain Tire, an industry leader with a strong presence and reputation across Canada, is looking for aCustomer Service Representative's to professionally support our network of distribution centers, stores and customers across Canada from our South Edmonton Corporate Office. Salary: $55,000 - $58,000 annually Why work for Fountain Tire? We are a Platinum Member of Canada’s Best Managed Companies and one of Alberta's Top 70 Employers We are one of the 10 largest independent tire dealers in North America, and recipient of many Customer Service and Best Business Awards We continually strive to expand our operations in existing markets, as well as new markets and currently, we have over 160 stores from BC through Ontario Our Customer Service Representatives (CSR’s) are a highly integrated, high performance team that provides consistent customer service to both internal and external customers in order to drive sales and customer satisfaction. Duties and responsibilities include: Maximize sales potential by ensuring calls and online chats are handled in a timely and effective manner Deliver CSR managed program elements – including warranty, booking orders, national account web orders, northern Ontario direct ship Optimize customer satisfaction by assisting with inventory management duties Provide operational excellence in daily order management processes Identify issues and opportunities for improvement in personnel, process or technology; take action and escalate roadblocks as required to drive constant improvement.What you need: At least 5 years of experience in a call center environment At least 5 years of customer service experience A high school diploma or equivalent Experience in the tire industry is an asset Proficiency with Microsoft Office software, Microsoft Dynamics AX a definite asset Proven ability to work with patience and courtesy in customer relations Excellent organizational and time management skills in order to manage independent work Proven ability to work within a team environment; this includes coaching and team building skills Excellent verbal communication skills, especially by phone The successful candidate will have the opportunity to: Collaborate within a team of highly motivated and dedicated individuals Develop personally and professionally in a supportive working environment Utilize our impressive health, dental and vision benefits for you and your family Invest in a retirement savings plan with company matching to help you achieve your financial goals Enjoy discounts on personal vehicle services at your local Fountain Tire location Interested candidates are encouraged to apply online and this position will remain posted until filled. In office applications will be accepted by reception only but are preferred online.\",\n            \"location\": \"A St SW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"C606FE5A7107A64C09E9396482801DF5\",\n            \"cityName\": \"17600 Yonge Street, Newmarket, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d56ded800183fe75\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Kibo Sushi House - Upper Canada Mall\",\n            \"rowSalary\": \"$15.50–$18.00 an hour\",\n            \"date\": 1694471281801,\n            \"dateOfPosted\": 1693625202750,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.0493831,\n                    \"lon\": -79.47891640000002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Newmarket\",\n                \"formattedAddress\": \"Yonge St, Newmarket, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Newmarket\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for person to join as our team who has great customer services.Job Types: Full-time, Part-timePart-time hours: 20-40 per weekSalary: $15.50-$18.00 per hourBenefits:Store discountDay range:Monday to FridayShift:8 hour shiftAfternoon shiftEvening shiftAbility to commute/relocate:Newmarket, ON L3Y 4Z1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Licence/Certification:Serving It Right (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Yonge St, Newmarket, ON\"\n        },\n        {\n            \"id\": \"76E4936E95FCDA4AAE992443C9888523\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cd819c2f402a8806\",\n            \"jobName\": \"Agent Du Service Clientèle / Customer Service Agent\",\n            \"companyName\": \"Voxdata\",\n            \"rowSalary\": \"$15.50–$17.00 an hour\",\n            \"date\": 1694471192779,\n            \"dateOfPosted\": 1693624935871,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*English version to follow* *NB : Nous n'acceptons que les candidatures provenant de la grande région de Montréal car la formation se fait à partir du bureau.* *Nous exigeons que nos candidats parlent anglais car certains de nos clients sont à l'extérieur du Québec et ne parlent que l'anglais.* Prêt à vous joindre à l'un des plus importants centres d'appels de Montréal ! VOXDATA vous attend ! Nous cherchons à agrandir notre équipe avec de nouveaux membres qui sont prêts à devenir nos prochains experts en offrant la meilleure expérience client possible ! Pour avoir une meilleure idée de notre entreprise et de nos valeurs, vous pouvez consulter notre site web ici ! https://www.voxdata.com/ Voici quelques raisons pour lesquelles il fait bon travailler chez VOXDATA :Une variété de types de postes, allant du service à la clientèle aux ventes, en passant par le soutien technique, avec des rôles uniquement en anglais ou bilingues et des options d'horaire variées - nous voulons mettre en valeur vos compétences uniques dans un poste qui vous convient le mieux !Un bureau facilement accessible et convoité au cœur du centre-ville de Montréal, et la possibilité de travailler à domicile pour nos postes hybrides !Un environnement de travail diversifié, positif et encourageant, notre objectif étant d'aider nos agents à briller et à réussir au maximum de leur potentiel !Des avantages sociaux tels que des plans de primes inclus dans nos postes, des primes supplémentaires pour les agents les plus performants (comme des cartes-cadeaux et de l'argent supplémentaire !), et des primes de recommandation des employés allant jusqu'à 1000 $ par personne !La possibilité d'évoluer et de développer vos compétences par le biais de réunions d'équipe, de séances de coaching individuel et d'évaluations des performances, toutes conçues pour vous aider à renforcer vos capacités et à devenir un maître dans votre travail !Des opportunités de développement interne ouvertes à tous - avec des rôles tels que chef d'équipe, coach, formateur, mentor et même des postes administratifs, nous sommes fiers de toujours nous tourner vers le personnel que nous avons déjà avec nous pour le promouvoir lorsque l'occasion se présente !Pour ce poste, vous travaillerez avec des clients qui utilisent un service de luxe à bord de leur véhicule. Vos tâches spécifiques seront les suivantes :Répondre aux appels entrants avec un haut niveau de professionnalisme et de précision.Envoyer et assister les services d'urgence pour les véhicules impliqués dans des accidents.Guider les clients dans l'installation et l'utilisation des applications incluses.Soutenir d'autres fonctions diverses incluses dans le service.Ready to join one of the leading call centers in Montreal?! VOXDATA is waiting for you! We’re looking to expand our team with new members who are ready to become our next experts in delivering the best customer experience possible! To get a better idea of our company and values, you can check out our website here! https://www.voxdata.com/ Here’s a few reasons why it’s great to work at VOXDATA:A variety of position types, ranging from customer service, sales, and technical support, with English-only or bilingual roles and ranging scheduling options – we want to highlight your unique skillset in a position that is best suited to you!An easily accessible and coveted office location in the heart of Downtown Montreal, and the option to work from home with our hybrid roles!A diverse, supportive, and encouraging work environment, our goal is to help our agents shine and succeed to their fullest potential!Employee benefits and perks such as bonus plans included into our positions, additional bonuses for top performers (like gift cards and extra money!), insurance coverages, and employee referral bonuses up to $1000 per person!The chance to grow and develop your skills through team meetings, individual coaching sessions, and performance reviews; all designed to help you further strengthen your abilities and become a master at your job!Internal growth opportunities that are open to everyone – with roles like team leader, coach, trainer, mentor, and even administrative positions; we pride ourselves on always looking to the staff we already have with us to promote when the occasion arises!For this position, you will be working with customers who are the using a luxury in-vehicle service. Your specific tasks will include:Answering inbound calls with a high level of professionalism and accuracy.Dispatching and assisting emergency services to vehicles involved in accidents.Guiding clients through the set-up and use of included applications.Supporting other various features included in service.Requirements Qu'est-ce qui fait de quelqu'un un excellent candidat ? Nous recherchons des personnes qui :Parlent couramment l'anglais ou sont bilingues en français et en anglais, ou en espagnol et en anglais.Avoir la disponibilité nécessaire pour travailler 40 heures par semaine à tout moment pendant les jours et heures d'ouverture du lundi au dimanche, entre 7 heures et minuit; la disponibilité le soir et le week-end est préférable. Ont déjà travaillé dans le service à la clientèle, les ventes ou les centres d'appels, ou ont une expérience traduisible dans d'autres secteurs.Vous pouvez apprendre à utiliser et à faire fonctionner plusieurs programmes informatiques avec facilité.Être disponible pour travailler le soir et le week-end si la campagne est opérationnelle pendant ces périodes.Avoir obtenu un diplôme de fin d'études secondaires ou un diplôme équivalent.Se considèrent comme des personnes capables de résoudre des problèmes, de s'adapter à des situations changeantes et sont motivées pour être les meilleures des meilleures !What do we think makes someone a great candidate?! We’re looking for people who:Speak English fluently, or are bilingual in French and English, or Spanish and English.Have the availability to work 40 hours/week anytime throughout the operational days and hours of Monday to Sunday, between 7:00 AM to 12:00 AM (midnight); evening and weekend availability is preferred. Have worked in customer service, sales, or call centers before; or have translatable experience from other industries.Can learn how to use and operate multiple computer programs with ease.Are available to work evenings and weekends if the campaign is operational during these times.Have graduated high school or have an equivalent diploma.Consider themselves to be problem-solvers, adaptable to changing situations and are motivated to be the best of the best!Benefits Soumettez votre candidature dès maintenant pour lancer le processus d'embauche et voyez par vous-même pourquoi il est formidable d'être un agent VOXDATA ! *Le salaire de base pour ce poste varie de 15,50 à 17 dollars par heure en fonction des compétences linguistiques.* Submit an application now to get the hiring process started and see for yourself why its great to be a VOXDATA agent! *The base salary for this position ranges from $15.50/hr to $17/hr depending on language skills*\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"FAC68FDA9917EF5E3213466E1E1BD634\",\n            \"cityName\": \"1006 103A St SW Ste 301, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=937cfd86e10b9f2f\",\n            \"jobName\": \"Temporary Customer Service Representative (Edmonton Corporate)\",\n            \"companyName\": \"Fountain Tire\",\n            \"rowSalary\": \"$26 an hour\",\n            \"date\": 1694471092171,\n            \"dateOfPosted\": 1693624941721,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.454021,\n                    \"lon\": -113.5655165\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Southwest Edmonton, Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Leduc County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 26.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    26.0\n                ],\n                \"range\": {\n                    \"gte\": 26.0,\n                    \"gt\": null,\n                    \"lte\": 26.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Overview:  Fountain Tire, an industry leader with a strong presence and reputation across Canada, is looking for a TemporaryCustomer Service Representative (3-4 month contract length that will turn permanent November 2023) to professionally support our network of distribution centers, stores and customers across Canada from our South Edmonton Corporate Office. Salary: $26/hour (32-40 hours per week) Why work for Fountain Tire? We are a Platinum Member of Canada’s Best Managed Companies We are one of the 10 largest independent tire dealers in North America, and recipient of many Customer Service and Best Business Awards We continually strive to expand our operations in existing markets, as well as new markets and currently, we have over 170 stores from BC through Ontario Our Customer Service Representatives (CSR’s) are a highly integrated, high performance team that provides consistent customer service to both internal and external customers in order to drive sales and customer satisfaction. Duties and responsibilities include: Maximize sales potential by ensuring calls and online chats are handled in a timely and effective manner Deliver CSR managed program elements – including warranty, booking orders, national account web orders, northern Ontario direct ship Optimize customer satisfaction by assisting with inventory management duties Provide operational excellence in daily order management processes Identify issues and opportunities for improvement in personnel, process or technology; take action and escalate roadblocks as required to drive constant improvement.What you need: At least 5 years of experience in a call center environment At least 5 years of customer service experience A high school diploma or equivalent Experience in the tire industry is an asset Proficiency with Microsoft Office software, Microsoft Dynamics AX a definite asset Proven ability to work with patience and courtesy in customer relations Excellent organizational and time management skills in order to manage independent work Proven ability to work within a team environment; this includes coaching and team building skills Excellent verbal communication skills, especially by phone The successful candidate will have the opportunity to: Collaborate within a team of highly motivated and dedicated individuals Develop personally and professionally in a supportive working environment Enjoy discounts on personal vehicle services at your local Fountain Tire location Interested candidates are encouraged to apply online and this position will remain posted until filled. In office applications will be accepted by reception only but are preferred online.\",\n            \"location\": \"A St SW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"53AB6FE73CEB6B8E0C23F19D1E23CE09\",\n            \"cityName\": \"Speedy Cash in Prince Albert, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bf012403996d94b3\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Speedy Cash\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694470997759,\n            \"dateOfPosted\": 1693624739537,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.2033494,\n                    \"lon\": -105.7530705\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Prince Albert\",\n                \"formattedAddress\": \"Prince Albert, SK, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 15\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Prince Albert\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Canadian-operated, Speedy Cash is a strong leader in the financial services industry. Founded in 1998, Speedy Cash currently operates over twenty branch locations across Canada. We are building a dynamic team of business professionals and can provide the right candidate with significant opportunities for career growth and job satisfaction.If you’re looking for a fun, energized environment where we support each other, as a team, to create a rewarding workplace and deliver amazing customer service, then look no further, Speedy Cash is the place for you!Perks and BenefitsWelcome BonusCompetitive wages, bonuses, and benefitsHands-on and continual training in transferable skillsBirthdays off, annual fun day for each storeIncredible support systemA team environment that makes work satisfying and funRRSP matchingOpportunities for growth. We promote from within!You are a Champion of Change; you will help motivate the team to increase sales, minimize bad debt and adapt to the ever-changing regulatory environment. You have a strong sense of curiosity and have a passion for learning; you are proactive and look for ways to be more efficient in your day-to-day work. You inspire your teammates with your innovative and resourceful way of thinking. Your attention to detail and exceptional organizational skills will ensure that the day-to-day operations of the store run smoothly. You can work independently as you pursue excellence while taking pride in your achievements, supporting company initiatives, and accomplishing the work that needs to be done in the store. An interest in travel would be considered an asset as from time to time support in other stores in the network is needed.Job ResponsibilitiesBuilding customer relationships while providing exceptional customer serviceIdentifying and meeting the customer’s financial needs in order to process loan applicationsCollecting on delinquent accounts in the interest of minimizing bad debtConveying information through in-person, telephone, and email communicationsAiding in loan sales, cheque cashing, and in-store promotionsHandling and balancing daily cash and debit transactionsPerforming all daily operations of the storeRequirementsValid Government Issued Photo IDClean Criminal RecordHigh School Diploma or EquivalentWageSalary commensurate with experienceFor more information about Speedy Cash check out our website at www.speedycash.ca/careersJob Type: Full-timeSalary: $16.00 per hourBenefits:Dental careExtended health carePaid time offRRSP matchVision careSchedule:Monday to FridayWeekend availabilityEducation:Secondary School (preferred)Work Location: In personApplication deadline: 2023-09-30\",\n            \"location\": \"Prince Albert, SK\"\n        },\n        {\n            \"id\": \"AD084B8522589E201B1477A9D30DBB59\",\n            \"cityName\": \"Kitchener, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3084de02ee180fae\",\n            \"jobName\": \"Insurance Customer Service And Sales Representative\",\n            \"companyName\": \"Angie Degroot Desjardins Insurance & Financial Services Agency\",\n            \"rowSalary\": \"$40,000–$60,000 a year\",\n            \"date\": 1694470824064,\n            \"dateOfPosted\": 1692744735945,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4516395,\n                    \"lon\": -80.4925337\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kitchener\",\n                \"formattedAddress\": \"Kitchener, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kitchener\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" ***** Are you Looking for a Career Change or a Fresh Start?**** Are you positive thinking, friendly, bubbly, have an outgoing personality and customer-focused? Would you be excited to help customers reach their Insurance Needs and goals? If you answered yes to these questions, working for Angie DeGroot Desjardins Insurance Agency may be the career for you! We’re looking for a motivated, sales and service-oriented Insurance Licensed individual who has a passion for the insurance industry. Our goal is to build up strong relationships and increase our professional reputation. Looking for a full-time Career that provides meaningful work and competitive compensation? Consider a position in our office. Compensation:Salary plusCommission and Bonus (P&C + LIFE - % of premium sold)40,000+ Base ( negotiable depending on experience) plus Bonus and Commission- Earning Potential has no CapAnnual Bonus (subject to office qualification, etc.)Monthly and or quarterly team and Personal Production promotions and bonus3 weeks vacation after 1 yearHealth Benefits AvailableRRSP match program availablePotential for total compensation over 6 figuresResponsibilitiesEstablishes personalized telephone contact with the client. Creates a climate of trust conducive to the sales and service of a Home, Auto and or Life insurance policy. Educates and advises our clients on our products, while adhering to the company's underwriting policies.Greet and answer incoming calls from clients and offer 5* customer ServicePassionate, Friendly and Bubbly Positive PersonalitySeizes all sales opportunities, solicitation and product offers.Work with the agent to establish and meet marketing goals.Use a customer-focused, needs-based review process to educate customers about insurance options.Upon receiving a call, assists the client by applying changes, cancellations and updates to the contract, taking care to meet the client's needs effectively, while advising and educating in order to ensure the client's complete satisfaction and retention.Establish customer relationships and follow up with customers, as needed.Use a customer-focused, needs-based review process to educate customers about insurance options.Requirements:Good Personal Credit Score( necessary for the Government Insurance Licensing Sponsorship)Insurance Sales and Customer Service experience and Licensed in Personal Lines Insurance either OTL or RIBOExcellent interpersonal skillsExcellent communication skills - written, verbal and listeningProactive in problem solvingDedicated to customer serviceAbility to multi-taskAbility to make presentations to potential customersProfessionalism and attention to detail.Ability to multitask.Strong communication and verbal skills.Ability to work in a fast paced environment.Active and responsible team member.Ability to take orders.Strong organizational and prioritization abilities.Ability to communicate with co-workers and Agent.Property & Casualty license (OTL or RIBO license) or LLQPLLQP to be obtained within 3 months of start in order to service existing customers (all licensing fees to be paid by Agent on successful completionThese positions are with an independent contractor agent that is part of the Desjardins exclusive agent network, not with Desjardins Group or its subsidiaries. This agents’ employees are not employees of Desjardins. Independent contractor agents are responsible for and make all employment decisions regarding their employees.\",\n            \"location\": \"Kitchener, ON\"\n        },\n        {\n            \"id\": \"E9D30376B48D2602077F825FD99F87A8\",\n            \"cityName\": \"Red Deer, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9af23111688f9560\",\n            \"jobName\": \"Food Truck Staff // Customer Service\",\n            \"companyName\": \"Red Deer Food Bank\",\n            \"rowSalary\": \"$15–$18 an hour\",\n            \"date\": 1694470753521,\n            \"dateOfPosted\": 1687946643583,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.268975,\n                    \"lon\": -113.8115599\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Red Deer\",\n                \"formattedAddress\": \"Red Deer, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 8\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Red Deer\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The food truck cooks // customer service employees will be working along side our food truck manager, to deliver and staff food trucks to any events in the Red Deer area and promote our brand!Duties Include:Delivering or meeting food trucks to any/all eventsImpeccable customer serviceCooking on the lineWorking cash stationSet up - tear down dutiesOperating kitchen equipmentRecord required cooler temperatures, food waste, and food temperaturesWhat we Offer:Work/life balanceCompetitive salaryValues oriented and positive workplace environmentSupport from upper managementYou Have:A passion for customer service and hospitalityA sense for adventureExperience in the food prepping industryRetail or previous restaurant experienceTeam based mentalityClass 5 drivers licenseAt the Red Deer Food Bank we believe our people are what make us great! If you are a positive person with strong work ethic that is looking to join a fun work place culture, then we invite you to apply for this role by submitting a resumeJob Types: Full-time, Part-time, SeasonalContract length: 5 monthsPart-time hours: 35 per weekSalary: $15.00-$18.00 per hourSchedule:10 hour shift8 hour shiftDay shiftNight shiftOvertimeWeekend availabilitySupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Red Deer, AB\"\n        },\n        {\n            \"id\": \"F0F624110EC63ADA72AB3EC49719E1E1\",\n            \"cityName\": \"Nanaimo, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=11693ff6e81c6688\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Executive Aviation\",\n            \"rowSalary\": \"$17–$20 an hour\",\n            \"date\": 1694470662484,\n            \"dateOfPosted\": 1693615755610,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1658836,\n                    \"lon\": -123.9400648\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Nanaimo\",\n                \"formattedAddress\": \"Nanaimo, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Nanaimo\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you ready to take off and start a new and exciting career in the aviation industry? If so, we want to chat with you! Are you ready to take off and start a new and exciting career in the aviation industry? If so, we want to chat with you! Our operation in Nanaimo provides our team members with an amazing opportunity to work with one of our airline partners! In Nanaimo you will be a part of an amazing team of customer service specialists who work together to provide exemplary service. So, would you say that going above and beyond is in your DNA? Do you love to travel and want to travel even more at discounted rates? Does the opportunity to provide exemplary service to passengers on some of Canada’s best airlines appeal to you? Are you someone who is known for reliability and flexibility? Come join us! Executive Aviation is hiring Customer Service agents at the Nanaimo Airport (YCD) who love working in the tourism industry. This role reports directly to an amazing Operations Manager who is there to support you. What do we offer? Executive Aviation is proud to have very progressive wage ranges with lots of earning potential. The range of salary for this position is $17.00-$20.00/hour. We offer comprehensive Health benefits for all part- and full-time team members. We also have fantastic flight benefits with the airlines that we support. We want to see you grow and reach your goals! The sky's the limit with Executive Aviation. Responsibilities Our customer service agents are responsible for creating a safe and stress-free experience for travelers as they begin and end their journeys: Helping passengers check-in Supporting self-serve kiosks Preparing aircraft for on-time departures Facilitating deplaning and boarding of passengers Greeting passengers who are arriving from flights Following airline specific check-in policies and procedures Positively work airline crew Light grooming duties Kindly enforce airline and airport policies and procedures to passengers And more! Qualifications You are a true customer service champion with a minimum of two years’ in a customer-facing role You bring a proven track record of punctuality and reliability and understand that performing on time is a cornerstone of airline service You love to multi-task and are comfortable in a fast-paced where time pressures are a way of life You are a great communicator in both individual and group settings and have a demonstrated proficiency with computers and software. Completion or working towards completion of Travel and Tourism Diploma, Marketing or Business Diploma Previous airport experience would be considered an asset Flexible availability to work shift work which includes early mornings, days, late evenings, weekends and/or holidays An ability to meet all conditions of employment:  Restricted Area pass issued by Transport Canada A criminal background check Hold a valid driver’s licensesMYI0hRUVs\",\n            \"location\": \"Nanaimo, BC\"\n        },\n        {\n            \"id\": \"6249A1DE90039F454E47FBB81E57BCC2\",\n            \"cityName\": \"1415 Alberni Highway, Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a8fc962c723288c7\",\n            \"jobName\": \"Customer Service Supervisor\",\n            \"companyName\": \"Mid Island Liquor\",\n            \"rowSalary\": \"$19.25 an hour\",\n            \"date\": 1694470627014,\n            \"dateOfPosted\": 1689721698416,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3045941,\n                    \"lon\": -124.3349719\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Parksville\",\n                \"formattedAddress\": \"Alberni Hwy, Parksville, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Parksville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Liquor is looking for a full-time Customer Service Supervisor at our Parksville Liquor Store. Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you! The Customer Service Supervisor position is a developmental role whereby the aim is to move the successful candidate to an Assistant Store Manager (ASM) position within a 12-18 month timeframe (term will be extended in the event there are no ASM positions available within 12-18 months). Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in organizing and directing the activities and operations of the store including but not limited to ordering/receiving merchandise and supplies, organizing and conducting inventory, staff supervision and training, and acting as Health and Safety Committee Liaison.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Supervisor today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. You have a minimum of 1 year liquor retail experience and a valid Serving it Right Certificate (or be willing to get certified prior to your first day). Who we are: Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve. Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op). We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.\",\n            \"location\": \"Alberni Highway, Parksville, BC\"\n        },\n        {\n            \"id\": \"D4EC6F86061C65E07583BC0E97731C41\",\n            \"cityName\": \"1105 Centre St N, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9af57fab88280682\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Avalon Cleaners\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694470621723,\n            \"dateOfPosted\": 1693625800432,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0919201,\n                    \"lon\": -114.0625125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Centre St N, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a dry cleaning company requiring a customer service associate.Monday 10 am to 6 pmTues, Wed and Thursday Noon til 5pmFriday and Saturday 9 am to 5 pmDuties include serving walking clients. Contact clients with any discrepancies and follow up on any of their concerns. Full training supplied with our procedures and policies.Starting wage is $16/hrJob Type: Full-timeSalary: From $16.00 per hourWork Location: In personExpected start date: 2023-09-07\",\n            \"location\": \"Centre St N, Calgary, AB\"\n        },\n        {\n            \"id\": \"DF6B64430EA0080384F86354F7944E6D\",\n            \"cityName\": \"Châteauguay, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5937e97d5e66f633\",\n            \"jobName\": \"Customer Service Representative - Call Centre\",\n            \"companyName\": \"Centre D'Appel Iris Et Services Aux Entreprises\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694470597239,\n            \"dateOfPosted\": 1693624934748,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.36015889999999,\n                    \"lon\": -73.74940330000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Châteauguay\",\n                \"formattedAddress\": \"Châteauguay, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Roussillon Regional County Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Châteauguay\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 7 months to less than 1 yearGreen job Involves duties and responsibilities that lead to positive environmental outcomes Long term benefits Deferred Profit Sharing Plan (DPSP) Other benefits Free parking availableWork Term: PermanentWork Language: English or FrenchHours: 30 to 40 hours per week\",\n            \"location\": \"Châteauguay, QC\"\n        },\n        {\n            \"id\": \"4F88CD986A6E43F5395462DB00C2A0CD\",\n            \"cityName\": \"Central Mountain Air in Terrace, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=232e9fb3d8300ca1\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Central Mountain Air\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694470592533,\n            \"dateOfPosted\": 1693615765021,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.5181925,\n                    \"lon\": -128.6031539\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Terrace\",\n                \"formattedAddress\": \"Terrace, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kitimat-Stikine\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Terrace\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Central Mountain Air, we pride ourselves in providing vital air connectivity to remote communities nestled within the stunning landscapes of Alberta and British Columbia. Our commitment to safety, reliability, and exceptional customer service is at the core of everything we do. Join our dedicated team and become an integral part of bringing people together and fostering economic growth in these unique regions. We are currently seeking a Part-Time Customer Service Agent to join our team at our Terrace, BC base.Customer Service Agents are part of a team that works in conjunction with crew members and ground agents to escort and board passengers, take reservations, and maintain baggage accuracy and safety. Customer Service Agents report to the Customer Service Supervisor.Job ResponsibilitiesCheck-in and greeting passengers, taking reservations and handling payments (when necessary)Responding to passenger inquiriesAssisting passengers with disabilities during deplaning and enplaningProcessing baggage and cargoGate operations and flight closure, communicating load counts to flight crewsAbility to lift up to 50 lbsOther duties as assignedJob RequirementsSuperior customer service skillsGood communication and interpersonal skillsAbility to work independently as well as in a team environmentAbility to work flexible hours, including split shifts and weekend coverageWillingness to work outside in adverse weather conditionsGood computer skillsA positive attitude with the ability to be flexibleMust be able to obtain and retain an Airport RAICBenefits of Working at Central Mountain Air (part-time employees)Standby travel within Central Mountain Air network for employees, their eligible family members, and their buddies (not including fees and taxes)Free cargo shipping for employees on CMA flightsCentral Mountain Air is an equal opportunity employer and values diversity in our workplace. Our requirement is that you have the skills and abilities to do the job and the attitude of a team player. We encourage applications from all qualified individuals regardless of race, nationality, ethnic origin, color, religion, age, sex, sexual orientation, marital status, family status, and disability.Central Mountain Air thanks all applicants, however, only those selected for an interview will be contacted.Job Type: Part-timePart-time hours: 2 - 3 per weekSalary: $17.00-$18.00 per hourAbility to commute/relocate:Terrace, BC V8G 0E9: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Terrace, BC\"\n        },\n        {\n            \"id\": \"C483A1863148BB61B69B4B0655500573\",\n            \"cityName\": \"10330 117 Avenue, Grande Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2444eee6ed1ad963\",\n            \"jobName\": \"Customer Service/Order Desk\",\n            \"companyName\": \"Ingo Floor\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694470576452,\n            \"dateOfPosted\": 1693615773248,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.178886,\n                    \"lon\": -118.7976819\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grande Prairie\",\n                \"formattedAddress\": \"109 Ave, Grande Prairie, AB T8V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grande Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"INGOFLOOR, a local family-owned flooring store, is looking to fill the position of a Customer Service/Order Desk Person for our Wholesale department.This is a permanent, full time position (40 hrs/wk).Hours are Monday – Friday, 8:30 am to 5:00 pm (excluding statutory holidays)Normal activities would include:- entering orders taken over to phone- entering orders from walk-in traffic- providing stock checks- making order estimates- getting freight quotes- preparing shipping documents- answering phone calls- occasionally pulling small orders if the warehouse is busyThis position is also responsible for overseeing our Flooring Sample Program. Duties would include:- creating new sample boards for new & existing product- maintaining sample racks that are distributed to wholesale customersThe ideal candidate will:- have prior customer service experience- have flooring and/or construction knowledge- be detail oriented- enjoy working on computer & being on the phone- be able to do simple math- be able to work in a sometimes fast, sometimes slow work environmentWe take care of our staff with a Benefits Package that includes Health Spending Account, Deferred Profit-Sharing Plan, & Group RRSPs.We are located at 10330-117 Avenue, Grande Prairie (behind the Nissan Dealership on the bypass.)** INGO FLOOR is a division of Rudiger Group Inc. When contacting prospective candidates, phone calls/emails may come from INGO FLOOR or RUDIGER GROUP INC.Job Type: Full-timeSalary: From $20.00 per hourBenefits:Dental careExtended health careVision careSchedule:8 hour shiftWork Location: In person\",\n            \"location\": \"Avenue, Grande Prairie, AB\"\n        },\n        {\n            \"id\": \"54F8D65ECF5C4E3B29A1A95EBF4FC73D\",\n            \"cityName\": \"Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ccaec7aacf1a7119\",\n            \"jobName\": \"Customer Service Associate - Budtender Part Time Dt\",\n            \"companyName\": \"The Original Farm\",\n            \"rowSalary\": \"$19.57 an hour\",\n            \"date\": 1694468704448,\n            \"dateOfPosted\": 1692773094154,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4284207,\n                    \"lon\": -123.3656444\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Original FARM is a leading cannabis retailer that empowers the customer to take the best-informed decision by delivering a thoughtful and innovative customer experience. We are cannabis educators, sharing our passion and acquired knowledge with every customer. We are looking for a Customer Service Associate / Budtender PT (Part Time) to join our team at the Downtown location. Main Duties/Responsibilities: Ensure an excellent customer experience; Update one’s product knowledge and successfully complete the required training courses Provide customer education on FARM’s range of products; Maintain the store standards at all times Strict compliance to all policies and procedures; Other duties as required.Qualifications and Skills: Strong customer service skills Working knowledge of POS systems, Word, and Excel Strong communication skills, time management, and problem-solving skills Works well in a high-volume retail environment Able to perform independently as well as a team member Strong cannabis knowledge and passion required BC Selling it Right CertificateTerms of Employment: Must be able to work a variety of night, evenings, weekend, and split shifts when required Must be willing to cover shifts on short notice Reports to: Store Manager Starting salary: $19.57 hr ($19.07 for first 90 days)\",\n            \"location\": \"Victoria, BC\"\n        },\n        {\n            \"id\": \"77C69EC7671F7329F37672D16D010B50\",\n            \"cityName\": \"Kamloops, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=31c743959e110afc\",\n            \"jobName\": \"Customer Service Representative - Financial Services\",\n            \"companyName\": \"Speedy Cash Canada\",\n            \"rowSalary\": \"$18.75 an hour\",\n            \"date\": 1694468237172,\n            \"dateOfPosted\": 1693605589227,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.674522,\n                    \"lon\": -120.3272675\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kamloops\",\n                \"formattedAddress\": \"Kamloops, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Thompson-Nicola\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kamloops\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 7 months to less than 1 yearScreening questions Are you currently legally able to work in Canada? Do you have previous experience in this field of employment? Health benefits Dental plan Health care plan Paramedical services coverage Vision care benefits Financial benefits Bonus Long term benefits Registered Retirement Savings Plan (RRSP)Work Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Kamloops, BC\"\n        },\n        {\n            \"id\": \"229D265008D25B308D87C45345703975\",\n            \"cityName\": \"8465 Harvard Pl, Chilliwack, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=20ce5cffaca0a367\",\n            \"jobName\": \"Customer Service Representative-French\",\n            \"companyName\": \"Allworld Logistic Solutions Inc\",\n            \"rowSalary\": \"$16–$18 an hour\",\n            \"date\": 1694467963259,\n            \"dateOfPosted\": 1692773152320,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.155259,\n                    \"lon\": -121.9574306\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Chilliwack\",\n                \"formattedAddress\": \"Harvard Pl, Chilliwack, BC V2P 7Z5, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Fraser Valley\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Chilliwack\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service-French SpeakingTransport Industry -Contact Customer, Serving Existing Customer, emailing , Follow upsJob Type: Part-timeSalary: $16.00-$18.00 per hourSchedule:Monday to FridayAbility to commute/relocate:Chilliwack, BC V2P 7Z5: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: Hybrid remote in Chilliwack, BC V2P 7Z5\",\n            \"location\": \"Harvard Pl, Chilliwack, BC\"\n        },\n        {\n            \"id\": \"BE112E49A746338BD76597D667FD0F69\",\n            \"cityName\": \"128-6061 No 3 Rd, Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d05731206489dcf8\",\n            \"jobName\": \"General Insurance Customer Service Rep\",\n            \"companyName\": \"New Diamond Insurance Services Ltd.\",\n            \"rowSalary\": \"From $19 an hour\",\n            \"date\": 1694467926607,\n            \"dateOfPosted\": 1686183935820,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1532687,\n                    \"lon\": -123.1366635\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Number 3 Rd, Richmond, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"QualificationSelf motivated and inter-personal skill with customers and other staffProficient in computer skills (eg. Microsoft office etc) as well as social media (eg WeChat, Facebook etc)Experience in customer services / minimum 3 years office experience (clerical & administrative duties)Language: Fluent in both written and spoken English, Mandarin and CantoneseGeneral Insurance License (Level 1 minimum) requiredResponsibilityCustomer Service Rep1. Will manage a book of assigned customer business2. Listen and respond to customers’ needs and concerns3. Provide information about products and services4. Take and process transactions for autoplan and home owners, determine charges, and oversee billing or payments5. Review or make changes to customer accounts6. Handle returns or complaints7. Record details of customer contacts and actions taken8. Take initiative to gain additional customersThe position may require work on Saturdays.Job Type: Full-timeSalary: From $19.00 per hourBenefits:Extended health careFlexible Language Requirement:French not requiredSchedule:8 hour shiftSupplemental pay types:Commission payCOVID-19 considerations:All staff and customers are required to wear masks once they enter our office. Staff are required to sanitize their work areas on arrival and departure. Plexi glass installed between each work station and customer seats. Staff practise social distancingExperience:Customer service: 3 years (required)Language:Mandarin (required)Cantonese (preferred)English (required)Work Location: In person\",\n            \"location\": \"No  Rd, Richmond, BC\"\n        },\n        {\n            \"id\": \"5811E6AA238363610C05E11B50314F0E\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=978532d6001ae05e\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Answerplus Inc\",\n            \"rowSalary\": \"$18.25 an hour\",\n            \"date\": 1694467386733,\n            \"dateOfPosted\": 1692775305948,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" At AnswerPlus, we are proud to say we’ve been in the answering service business for 60 years! With 4 locations across Canada and over 1500 clients, AnswerPlus has built an incredibly strong brand and reputation in the industry. Our niche is urgent call response 24/7/365. We seek to answer 80% of calls within 20 seconds or less.  As a Bilingual Customer Service Receptionist (BCSR), you have the privilege and opportunity to provide comfort and help in times of need. Bilingual CSR's answer  inbound calls and act as the  first point of contact for a wide range of situations. It could be processing a donation, providing comfort to someone stuck in an elevator, providing relief to someone experiencing pain, or aiding people in emergencies such as fires, floods, or power loss. To us, our clients, and our customers, a CSR is an \\\"invisible hero!\\\"  As a fulltime CSR we require open availability between 6 am and 12 am Monday to Sunday to work scheduled 30-40 hours per week. CSR's will be scheduled to  work a minimum of two weekends per month. We've created an award-winning culture that is backed by three generations and a true \\\"work family\\\" environment. Our employee average tenure is 9 years which also highlights how we support both personal and professional growth.  If this interests you, apply to join our team and partake in: Celebrations and Company EventsCoaching and MentoringDental, health, and EAP BenefitsPaid BreaksSocial Responsibility InitiativesPaid Training Role and Responsibilities: Provide thoughtful and professional customer supportAccurately collect details in an organized and timely mannerResolve customer issues and answer questions via phone, email, and live chatTake messages, enter orders, process and dispatch service callsMaintain a commitment to continuously improve the quality, efficiency, and effectiveness of service Qualifications and Skills:  This position requires individuals who are fluently bilingual in English and French and both written and verbally.Technically savvy and proficient keyboard skills (ie: 50+ WPM)Capable of utilizing Microsoft Office Suite, Microsoft Teams, Zoom and Go To MeetingStrong communication skills - interpersonal, listening, verbal, and writtenAbility to smile through the phone and connect with callers positivelyAbility to multitask and prioritize tasksEmpatheticGoal-orientedTeam player Work from Home Requirements: Quiet, dedicated room free of background noiseAbility to connect the computer from a router - not wirelessWindows PC - No Apple or Chrome BooksOperating System: Windows 10Full, standard-sized keyboard with Function Keys (F1-F12) and a number padTwo monitorsWebcam - for training and coaching purposesWired head set with microphone that connects to your cell phone or landlineUnlimited high-speed internetUnlimited Canada wide long-distance calling/cellphone calling planAbility to provide your own ethernet cable Start date: to be determined Training will be completed via Zoom/Go-to-Meetings/Microsoft Teams for 1-2 weeks Monday to Friday. Applicants should be available Monday to Friday between 8am-10pm for training. Daily hours will change and are scheduled between 4-8 hours per day. Camera's are mandatory to be on during all training. Compensation: $18.25 per hour plus $1.00 per hour performance bonus if targets are met when eligible. Our commitment to being an equal opportunity employer goes beyond acceptance. We celebrate and support all the amazing things that make you unique. All of our team members take pride in upholding an environment of mutual respect. We welcome and encourage applications from people with disabilities. If you require accommodation through the selection process, please call our office at 905-522-4737. \",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"3A275D53235C80AD72874643D18A30DB\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=58037611cb12e3c2\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Couchhaus\",\n            \"rowSalary\": \"$19–$24 an hour\",\n            \"date\": 1694465922676,\n            \"dateOfPosted\": 1693605546647,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Company DescriptionCouchHaus is a direct-to-consumer custom modular sofa brand based in Vancouver, Canada. The couches are made-to-order exclusively with our own manufacturer. We sell our products directly to consumers through our online platform and our boutique showroom in Langley, BC in order to offer competitive prices to our customers.Our business model is designed to offer customers high-quality, customizable furniture at an affordable price point, while also minimizing waste and supporting sustainability.Founded by the duo that made the 2023 BC Business 30 Under 3 List , Harrison and Paige, the company started with their passion for design when it came to building furniture for our own home.On the quest for new furniture for their home, they rethought every component of their dream couch including the size, depth, fabric grade, storage and other features! They offer removable and washable covers, re-stuffable cushions and modular furniture to re-arrange and grow onto!CouchHaus was created to make custom modular furniture shopping easier and more affordable, while supporting sustainability. The best part, we plant 100 trees for every couch we build!Job DescriptionTHE DEPARTMENTThe mission of the Concierge Department is to delight clients by going above and beyond to resolve their inquiries within reason and deliver exceptional sales expertise.Everyone in our Concierge Team has a common goal: to successfully manage customer relations by being a liaison between the company and the customer.THE OPPORTUNITYOur Concierge Department is an integral for the operation of the company. You’ll provide daily support to keep our boutique store running smoothly.As a member of the Concierge Division, you will be part of the team responsible for providing exceptional experiences for clients who contact Concierge by resolving their inquiries and delivering selling and solving expertise. As the Concierge Advisor, you will deliver world-class sales, solution and service excellence to exceed client expectations and maximize value in every interaction. And, with the skills you gain in this role, the opportunities are endless – from a rewarding career in Concierge to continued growth and development with CouchHaus.CouchHaus is an online store with the a boutique showroom. This opportunity is remote and also has the opportunity to grow in the company.THE JOBWe are seeking a team player that conveys the brand philosophy and values. The ConciergeAdvisor is a solution and detail-oriented person. The right individual will interact with customers on a daily basis, being knowledgeable and conversational and educational.The Concierge Advisor job is about problem solving. You will:● Develop and manage strong customer relationships through outstanding and consistent customer experiences● Solve problems to ensure our customers are happy● Become an expert in CouchHaus’ products and servicesThe Advisor reports to the Team Leader and participates in all the essential duties which contribute to the efficient and profitable operation of the store while maintaining the brand and visual presentation standards.QUALIFICATIONSYou don’t need experience to be a Concierge Advisor — we can teach you what you need to know. We care more about your hustle, passion for problem solving and ability to think on your feet. You have:● A commitment to learn and apply CouchHaus Values, Business and PeopleLeadership principles● The skills that are an asset to perform in the role and the appetite to continuously learn and develop oneself● A commitment to quality and investing in results that add value to the business● A sense of urgency and ability to prioritize important work● An understanding of CouchHaus brand vision● Feel strongly about long-term customer relationships and building brand loyaltyTHE PERKS● Set Your Schedule - Provide your availability and indicate your preferred working hours (some restrictions apply)● Aspirational Workspace - Every detail is considered to connect to the energy of the culture● Product Discount - Our famous product discount, online and in storeHead to our Our Story (https://www.couchhaus.com/pages/story) for the scoop on who we are and what we do.Job Types: Part-time, FreelancePart-time hours: 10-20 per weekSalary: $19.00-$24.00 per hourBenefits:Casual dressFlexible scheduleStore discountWork from homeSchedule:Day shiftMonday to FridayWork Location: RemoteApplication deadline: 2023-09-30Expected start date: 2023-10-01\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"50309D4E4CB0EA3A7110A93FEFF4C99E\",\n            \"cityName\": \"Sandspit, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=92084e6a8dc9757a\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Executive Aviation\",\n            \"rowSalary\": \"$19.10–$20.90 an hour\",\n            \"date\": 1694465839399,\n            \"dateOfPosted\": 1693615810015,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.243025,\n                    \"lon\": -131.820879\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sandspit\",\n                \"formattedAddress\": \"Sandspit, BC V0T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"North Coast\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sandspit\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"UPDATE: Now providing flight passes across the Air Canada global network. Are you ready to take off and start a new and exciting career in the aviation industry? If so, we want to chat with you! In Sandspit you will be a part of an amazing team of customer service specialists who work together to provide exemplary service. So, would you say that going above and beyond is in your DNA? Do you love to travel and want to travel even more at discounted rates? Does the opportunity to provide exemplary service to passengers on some of Canada’s best airlines appeal to you? Are you someone who is known for reliability and flexibility? Come join us! Executive Aviation is looking for permanent casual Customer Service Agents to work at the Sandspit Airport (YZP). We are looking for people with great customer service, who have flexible availability and who love working in the tourism industry. We offer a great training program! This role would report directly to the Customer Service Coordinator. What do we offer? Executive Aviation is proud to have very progressive wage ranges with lots of earning potential. The range of salary for this position is $19.10-$20.90/hour. We offer comprehensive Health benefits for all part- and full-time team members. We also have fantastic flight benefits with the airlines that we support. We want to see you grow and reach your goals! The sky's the limit with Executive Aviation. Responsibilities Greeting passengers Following airline specific check-in policies and procedures Have proper security clearances Provide pre-flight first class or priority seating grooming for the flight Manage passenger boarding as per airline procedures Understanding flight document requirements and carry-on allowances Positively working with airline crew Kindly enforce airline and airport policies and procedures to passengers In some cases, learn how to bridge an airplane Other duties as assigned Qualifications Previous customer service experience is considered an asset Previous airport experience would be considered an asset Flexible availability to work shift work which includes early mornings, days, late evenings, weekends and/or holidays Strong communication skillsvh7AMevhLb\",\n            \"location\": \"Sandspit, BC\"\n        },\n        {\n            \"id\": \"DAF4045DCC559C3577D866F646003812\",\n            \"cityName\": \"7250 Rue du Mile End, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=aa1bfa90d208da9b\",\n            \"jobName\": \"Représentant-e, Service à La Clientèle/Customer Service Representative\",\n            \"companyName\": \"Global Payments\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694465826127,\n            \"dateOfPosted\": 1692759115023,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5320781,\n                    \"lon\": -73.62304920000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue du Mile End, Montréal, QC H2R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Every day, Global Payments makes it possible for millions of people to move money between buyers and sellers using our payments solutions for credit, debit, prepaid and merchant services. Our worldwide team helps over 3 million companies, more than 1,300 financial institutions and over 600 million cardholders grow with confidence and achieve amazing results. We are driven by our passion for success and we are proud to deliver best-in-class payment technology and software solutions. Join our dynamic team and make your mark on the payments technology landscape of tomorrow. La formation débute le 2 octobre prochain! - Postes à temps plein seulement Vous êtes à la recherche d’un nouveau défi et vous voulez rejoindre une entreprise du classement Fortune 500 axée sur la technologie et l'innovation? Chez Global Payments, vous aurez de nombreuses possibilités de croissance et de développement et nous vous promettons que chaque jour se transformera en un défi passionnant. Joignez-vous à notre équipe dynamique! L'importance que nous accordons aux membres de notre équipe: De réelles opportunités d'évolution professionnelle Un environnement de travail collaboratif et convivial avec un code vestimentaire décontracté Une assurance médicale Couverture d'invalidité à courte et longue durée Plans d'assurance vie Programmes d'épargne-retraite Programme d'achat d'actions pour les employés Programme d'assistance aux employés Programme de remboursement des frais de scolarité Possibilités de faire du bénévolat Lieu sûr pour la communauté LGBTQIA2+ Renseignements importants: Horaire: 37,5 heures par semaine, sur une base de rotation, 365. Travail du bureau: 7250, rue du Mile-End, Montreal. Salaire: 20$/h Ce que vous contribuerez à l'équipe: Aider à la formation des nouveaux commerçants dans les systèmes. Identifier et répondre aux demandes des clients concernant les comptes en utilisant l'écoute, la pensée critique et les compétences acquises pour résoudre l’appel. Fournir une solution aux problèmes ou aux plaintes des commerçants et les transmettre à la direction ou à l'équipe concernée pour les cas nécessitant une enquête plus approfondie. Utiliser adéquatement le système et les ressources internes pour servir efficacement et avec précision les clients et interpréter les données des marchands. Démontrer une connaissance des produits, des services, de la recherche de comptes, des opérations au point de vente et de la maintenance technique et de compte. Éduquer les commerçants sur les politiques, les procédures et les produits. Documenter avec précision les conversations des clients dans les systèmes appropriés. Résoudre rapidement tous les problèmes en utilisant les protocoles établis ou transférer aux personnes ressources. Interagir avec divers groupes de soutien au sein de Global Payments et assurer la liaison avec eux en ce qui a trait à la résolution d'une préoccupation d'un commerçant. Atteindre les standards de performance fixés par le département. Fournir un soutien opérationnel à d'autres unités selon les besoins de l'entreprise. Maintenir systématiquement l'étiquette téléphonique professionnelle. Compléter avec succès une formation supplémentaire sur les compétences au besoin. Maintenir les normes de service à la clientèle dans les situations de haute pression, telles que l'augmentation du volume d'appels, le manque de ressources ou la difficulté des clients. Agir en tant que membre positif de l'équipe, en affichant un respect mutuel pour les autres. Analyser et résoudre les problèmes en rassemblant systématiquement les informations pertinentes et en tenant compte d'un large éventail de problèmes, de facteurs et de données, lorsqu'il existe plusieurs réponses. Qui vous êtes: Une personne avec 6-12 mois d'expérience en service à la clientèle. Bilingue en français et en anglais. Ouvert aux heures de travail flexibles, sur une base de rotation, 24/7, 365. Diplômé(e) d’études secondaires. Une personne qui aime aider et écouter les autres. Orienté(e) service à la clientèle avec des solides compétences en communication. Une personne positive avec de fortes compétences interpersonnelles. Capable d'apprendre de nouvelles fonctions ou applications. Possède de solides compétences analytiques pour résoudre les problèmes. Responsable et autonome, avec une capacité de prise de décisions rapide et précise. Qui sommes-nous ? Global Payments est un leader du secteur des technologies de paiement avec plus de 24 000 employés dans le monde. Nous sommes fiers de nos innovations et de la valeur que nous accordons à l'inclusion. Notre équipe aide nos clients à obtenir des résultats impressionnants. C'est notre passion pour le succès qui nous a permis de surpasser la concurrence pendant des années. Rejoignez-nous et laissez votre empreinte sur le paysage technologique des paiements de demain. *** Nous remercions sincèrement tous les candidats de leur intérêt. Nous ne contacterons que les personnes sélectionnées pour un entretien. Global Payments est un employeur qui respecte l'égalité des chances. Nous valorisons la diversité et l'inclusion et offrons des chances égales à tous les employés et candidats, sans tenir compte de la race, de la couleur, de la religion, du sexe, de l'origine nationale, de l'âge, de l'état civil, de l'orientation sexuelle, de l'identité ou de l'expression de genre, du handicap physique ou mental, ou de toute autre base protégée par la loi et nous sommes heureux d'offrir aux membres de notre équipe un environnement de travail sain. Training starts on October 2nd! - Full-time positions only Looking for a new challenge and want to join a Fortune 500 company focused on technology and innovation? At Global Payments, you’ll have many opportunities for growth and development and we promise everyday will be an exciting challenge. Join a dynamic team as a bilingual customer service representative! How we care about our people: Real opportunities to grow professionally Collaborative, friendly work environment with a relaxed, casual dress code Benefits after 30 days Health insurance Short-Term and Long-Term disability coverage Life insurance plans Retirement savings programs Employee stock purchase program Employee assistance program Tuition reimbursement program Volunteering opportunities Safe place for the LGBTQIA2+ community Important information: Schedule: 37,5hr per week, on a rotational basis, 365. Work from the office: 7250, Mile End St. Montreal Salary: 20$/h What you will be contributing to the team: Assist in the training of new merchants. Identify and address customer inquiries regarding accounts. Provide resolution to merchant issues or complaints, and escalate to management or appropriate team concerned for cases requiring further investigation. Appropriately utilize internal systems and resources to accurately and effectively serve customers, and interpret merchant data. Demonstrate knowledge of products, services, account research, Point of Sale operations/technical and account maintenance. Educate merchants on policies, procedures, and products. Accurately document customer conversations in appropriate systems. Timely escalation of all department and system issues using the established reporting protocols. Interact and liaise with various support groups within Global Payments in relation to resolution of a merchant concern. Successfully complete additional skills training as required/requested. Who you are: Someone with 6-12 months of employment experience, preferably in a similar position. Bilingual in English and French. Available to work on a rotational basis, 24/7, 365. A High School Graduate. A great helper and listener. Able to maintain customer service standards during high-pressure situations. A positive member who loves to learn and share new things. A strong communicator with great interpersonal skills. A problem analyzer and solver by gathering relevant information systematically. Able to work independently and make quick and accurate decisions. Someone with strong analytical skills to troubleshoot issues. Who we are: Global Payments is a leader of the payment technology industry with over 24 000 employees worldwide. We pride ourselves on innovation and inclusion. Our team is helping customers achieve amazing results. It’s our passion for success that has led to years of out-performing the competition. Join us and make your mark on the payments technology landscape of tomorrow. *** We sincerely thank all applicants for their interest. We will only contact those selected for an interview. #LI-Onsite Global Payments Inc. is an equal opportunity employer. Global Payments provides equal employment opportunities to all employees and applicants for employment without regard to race, color, religion, sex (including pregnancy), national origin, ancestry, age, marital status, sexual orientation, gender identity or expression, disability, veteran status, genetic information or any other basis protected by law. Those applicants requiring reasonable accommodation to the application and/or interview process should notify a representative of the Human Resources Department.\",\n            \"location\": \"Rue du Mile End, Montréal, QC\"\n        },\n        {\n            \"id\": \"6D4B256327C0E6955EAEE7169B09020A\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ff8cdb8ecf6470c8\",\n            \"jobName\": \"German Customer Service Consultant\",\n            \"companyName\": \"Lufthansa Intouch\",\n            \"rowSalary\": \"From $17.90 an hour\",\n            \"date\": 1694465825408,\n            \"dateOfPosted\": 1693615578449,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Lufthansa InTouch is looking for a motivated German Speaking Customer Service Consultants to add to our international team of travel consultants!Purpose of Role:As a part of our team, you can make someone’s day every day through positive interactions, and a continuous learning environment. As a home base position, you can provide this high level of customer service from the comfort of your own home! Our multicultural, multilingual teams operate from seven Service Centers worldwide, providing five-star services to passengers flying with the Lufthansa Group. Training will be provided to ensure confidence and success when handling customer calls.Work Performed:In the role of a Customer Service Consultant, you will be taking calls from passengers with inquiries related to:General flight reservations, direct sales and re-bookingsInformation about Lufthansa Group products and services like; seat selection, meals, pets, and check insAlong with opportunities to grow into different departments withing the Lufthansa InTouch teamRequired Knowledge, Skills and Experience:Strong proficiency in the English language (written and verbal)Demonstrated experience in de-escalating handling of complaintsExperience working in customer service is an assetExperience working and using different computer programsPersonal Competency Requirements:Good Team PlayerExcellent communication & interpersonal skillsMust be very detail orientated, and able to multitask efficientlyFlexibility in the alternating processing of written and telephone customer inquiriesAdaptability, patience, and problem-solving competencesHigh level of persuasivenessHigh level of service orientationAbility to work accurately and with attention to detailIndependent, self-motivated approach to workReliable and empathic personalityAdditional Information:The selection process includes a selection of verification of skills and assessment in order to assess the suitable candidates.You will be REQUIRED to travel to Peterborough, Ontario to pick up your equipment and have an orientation day.This position is homebased, but you are REQUIRED to attend 7 weeks of training in Toronto, Ontario.WE ARE PROUD TO OFFER YOU:You will be a part of a unique team spirit and culture - we are the best at being In Touch! We are driven to be best. At Lufthansa InTouch, we continuously upskill and train our team to boost your product knowledge and build your confidence in all aspects of service for air travelers.Competitive CompensationComprehensive Health & Dental BenefitsHighly Discounted AirfareDevelopment OpportunitiesInternational Exchange ProgramsWorld Class TrainingDoes this sound like you? Apply today!Lufthansa InTouch appreciates all applicants for their interest; however, only those selected for an interview will be contacted.Lufthansa InTouch Peterborough is an equal opportunity employer. We are committed to ensuring equal employment opportunities for all qualified individuals. Accommodation is available as required under the Ontario Human Rights Code.Job Types: Full-time, PermanentSalary: From $17.90 per hourBenefits:Casual dressDental careVision careWork from homeSchedule:8 hour shiftMonday to FridayOvertimeWeekends as neededSupplemental pay types:Bonus payOvertime payApplication question(s):Are required to travel to Peterborough, Ontario for first day orientation? Along with attending 7 weeks of in person training in Toronto?Education:Secondary School (preferred)Language:German (required)Work Location: In personExpected start date: 2023-10-13\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"B0F5807CB117333C03D01EA64A7A8478\",\n            \"cityName\": \"875 Plymouth Dr, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7893d6d55b198716\",\n            \"jobName\": \"Automotive Customer Service Representative\",\n            \"companyName\": \"Csn Heartland Auto Collision\",\n            \"rowSalary\": \"From $22.50 an hour\",\n            \"date\": 1694465796371,\n            \"dateOfPosted\": 1693607143521,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6076261,\n                    \"lon\": -79.695714\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Plymouth Dr, Mississauga, ON L5V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CSN Heartland Auto Collision is currently looking for an Automotive Customer Service Representative to join our growing team! The Customer Service Representative provides a high level of face-to-face customer service and supports customers’ needs throughout the vehicle repair process.Major Areas of ResponsibilitiesProvides courteous assistance to customers and educates customers on the collision repair processFace-to-face interaction with customersEvaluating vehicle damage and taking photos as requiredCapturing complete list of customers’ expectations and if necessary negotiating on service deliverablesUnderstanding specific insurers’ claims processing policies and processes and following them accordinglyMaintaining updated customer filesTimely two-way communication with/ between internal and external customersProviding back-up to Front Office Administrator, i.e. answering phones and greeting customersRequired Education, Skills and Qualifications3 years’ experience in Customer Service, previous experience in the automotive industry is preferred.Knowledge of collision repair process and/or auto insurance claims is an asset.Experience in SalesAnalytical and problem solving skills.Efficient use of Microsoft Office and the Internet.Effective written and verbal communication skills.Company ProfileCSN Heartland Auto Collision is a dynamic and progressive auto body shop, in business for over 45 years with 3 locations across the GTA. As an equal opportunity employer our company is committed to providing a positive work environment. We offer a competitive benefits package that includes:· Company sponsored training· Competitive wages· Paid vacation· Medical benefitsFor more information about our company visit http://www.csnheartlandcollision.com/We are an Accessibility for Ontarians with Disabilities Act (AODA) compliant workplace. You can be confident that our recruitment and hiring processes will be modified to accommodate disabilities, if requested.We thank all applicants for their interest; however, only those selected for an interview will be contacted. We are an equal opportunity employer.Job Types: Full-time, PermanentSalary: From $22.50 per hourBenefits:Dental careExtended health careLife insuranceOn-site parkingPaid time offFlexible Language Requirement:French not requiredSchedule:Day shiftSupplemental pay types:Overtime payExperience:Customer service: 3 years (preferred)automotive: 1 year (preferred)sales: 1 year (preferred)Licence/Certification:Class G Licence (preferred)Work Location: In person\",\n            \"location\": \"Plymouth Dr, Mississauga, ON\"\n        },\n        {\n            \"id\": \"D5632D1FA23F508C1D072282A7B3436F\",\n            \"cityName\": \"Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=794e37414f2917da\",\n            \"jobName\": \"Sales Advisor/Customer Service\",\n            \"companyName\": \"Starmetroland Media\",\n            \"rowSalary\": \"$35,000–$45,000 a year\",\n            \"date\": 1694465762112,\n            \"dateOfPosted\": 1652205160542,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2557206,\n                    \"lon\": -79.8711024\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work from Home Classified AdvertisingPart Time Position.Approximately 30 hours per weekThe successful candidate would be responsiblefor inbound and outbound calls.Base Salary Plus CommissionFull training providedHealth care benefits availableFull support & set upGreat Online Teams AtmosphereTo view full job description and to applyplease visit our websitewww.metroland.comMust be fully vaccinatedJob Types: Part-time, PermanentPart-time hours: 30 per weekSalary: $35,000.00-$45,000.00 per yearBenefits:Company pensionEmployee assistance programExtended health careVision careWork from homeSchedule:Monday to FridayWeekend availabilitySupplemental pay types:Commission payEducation:Secondary School (preferred)Application deadline: 2022-05-25\",\n            \"location\": \"Hamilton, ON\"\n        },\n        {\n            \"id\": \"E73811114E0B13B0E5B4A21D3088C1C6\",\n            \"cityName\": \"1903 West 4th Avenue, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5e89f9a07a477db0\",\n            \"jobName\": \"Customer Service And Food Preparation Supervisor\",\n            \"companyName\": \"Tractor Everyday Healthy Foods\",\n            \"rowSalary\": \"$17.75–$18.75 an hour\",\n            \"date\": 1694465554745,\n            \"dateOfPosted\": 1693615848292,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2648683,\n                    \"lon\": -123.160043\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W 8th Ave, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Tractor Foods is currently seeking a shift supervisor with exceptional customer service experience who's passionate about healthy foods, taking orders, making sandwiches and leading the team! If you love good food and coffee this job is waiting for you!Responsibilities and DutiesSupervise 3-4 team members on the scheduleExceptional Customer ServiceMaintain food and service qualityHelp the team on closing dutiesAre you passionate about food service? The right candidate will be responsible for helping make delicious food as well as providing exceptional customer service.If you're interested in working for a company that is continually growing and offers a range of career opportunities, then look no further. We're looking for people who have a real taste for healthy food to join our store in Kitsilano.Tractor Foods is a local family owned restaurant group expanding at a rapid rate. If you're looking for a career in the food industry then now is the time to jump on the bus with us and start moving your career in the right direction. We are serious about preparing, cooking, coffee and serving great food from scratch. We put huge importance on working in a fun, clean, professional, open kitchen with apprenticeship opportunities for those who are interested.Must haves:-Honest-Punctual-Fun-Happy-Highly Motivated-Reliable-Fast and Efficient-Detail Oriented-Team Player-Organized-Great Customer Service Skills-Knife Skills/ Kitchen Experience an AssetJob Type: Full-timeSalary: $17.75-$18.75 per hourBenefits:Discounted or free foodStore discountSchedule:Day shiftEvening shiftEvery WeekendHolidaysSupplemental pay types:Overtime payTipsCOVID-19 considerations:Sanitation stations available.Frequent hand washing and sanitation of tables and all surfaces.Work Location: In personExpected start date: 2023-09-11\",\n            \"location\": \"West th Avenue, Vancouver, BC\"\n        },\n        {\n            \"id\": \"8AFEE1E97FB7836F44EAE53F87940CCF\",\n            \"cityName\": \"40 Pippin Rd, Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1bcca7c987531861\",\n            \"jobName\": \"Hvac Customer Service Representative\",\n            \"companyName\": \"Mr. Service Hvac\",\n            \"rowSalary\": \"$15.50–$18.00 an hour\",\n            \"date\": 1694465530945,\n            \"dateOfPosted\": 1693615579418,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8097906,\n                    \"lon\": -79.52423809999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Pippin Rd, Vaughan, ON L4K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Description:At Mr. Service, we have a great opportunity for our next potential of Customer Service Representative. We are looking for an optimistic results-driven individual with a high-integrity to join our new company.As a new trusted Canadian owned and operated company, there will also be potential for advancement within the company.What we Value: Integrity, Accountability, Transparency, Influence, Direction and Leadership.Responsibilities:Respond to lead inquiries, concerns, and service requests via phone, email, or chat in a timely and professional manner.Call the potential leads from the lead list and enquire about the needs of the potential clientand record the information as per the requirement.Provide accurate information about HVAC products, services, and availability to the leads.Provide all the information to the sales representative about what the leads want in terms of the service.Book appointments for the sales representative to visit the client's home and confirm the appointment with sales representative and the client via email.Record any service request from the clients and the technical team to resolve any issues raised by the client.Book the calender daily for the prsent week, upcoming weeks, and the upcoming months in advance.Address any issue or complaint promptly by taking the right action and informing the right stakeholders.Always follow up with clients in a timely fashion.Qualification and Skills:High school diploma or equivalent, Post-secondary education is plus.Previous customer service experience, preferably in the HVAC or related field.Strong interpersonal and communication skills.Ability to remain calm and patient when dealing with frustrated or upset customers.Familiarity with HVAC systems and terminology is preferred.Proficiency in using customer releationship management ( CRM) software and office applications.We offer a positive work environment, and opportunities for career growth. If you are a motivated individual with a passion for providing excellent customer service, we would love to hear from you.To apply, please submit your resume and cover letter highlighting your relevant experience in customer service.Job Type: Full-timeSalary: $15.50-$18.00 per hourBenefits:Flexible schedulePaid time offFlexible Language Requirement:French not requiredSchedule:8 hour shiftWork Location: In person\",\n            \"location\": \"Pippin Rd, Vaughan, ON\"\n        },\n        {\n            \"id\": \"5E07464BBF5D169A42A48993D81F47A9\",\n            \"cityName\": \"1903 West 4th Avenue, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cda0b408885f072c\",\n            \"jobName\": \"Customer Service And Food Preparation\",\n            \"companyName\": \"Tractor Everyday Healthy Foods\",\n            \"rowSalary\": \"$16.75–$17.75 an hour\",\n            \"date\": 1694465514570,\n            \"dateOfPosted\": 1693605635613,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2648683,\n                    \"lon\": -123.160043\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W 8th Ave, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you passionate about food service? The right candidate will be responsible for helping make delicious food as well as providing exceptional customer service.If you're interested in working for a company that is continually growing and offers a range of career opportunities, then look no further. We're looking for people who have a real taste for healthy food to join our store in Kitsilano.Tractor Foods is a local family owned restaurant group expanding at a rapid rate. If you're looking for a career in the food industry then now is the time to jump on the bus with us and start moving your career in the right direction. We are serious about preparing, cooking, coffee and serving great food from scratch. We put huge importance on working in a fun, clean, professional, open kitchen with apprenticeship opportunities for those who are interested.Must haves:-Honest-Punctual-Fun-Happy-Highly Motivated-Reliable-Fast and Efficient-Detail Oriented-Team Player-Organized-Great Customer Service Skills-Knife Skills/ Kitchen Experience an AssetResponsibilities and DutiesMaintaining a clean environmentEager to learn all about our amazing foodExceptional Customer ServiceFood PreparationDishes and CleaningRestaurant OrganizationJob Type: Full-timeSalary: $16.75-$17.75 per hourBenefits:Discounted or free foodStore discountSchedule:Day shiftEvening shiftEvery WeekendHolidaysSupplemental pay types:Overtime payTipsCOVID-19 considerations:Sanitation stations available.Frequent hand washing and sanitation of tables and all surfaces.Work Location: In personExpected start date: 2023-09-11\",\n            \"location\": \"West th Avenue, Vancouver, BC\"\n        },\n        {\n            \"id\": \"92F5914ACF8B8F0808A7BE96AC865F11\",\n            \"cityName\": \"1950 Main St, Fruitvale, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=170199c669ac4392\",\n            \"jobName\": \"Deli Clerk/Customer Service\",\n            \"companyName\": \"Liberty Food Store Ltd.\",\n            \"rowSalary\": \"$16.75–$18.00 an hour\",\n            \"date\": 1694465296222,\n            \"dateOfPosted\": 1693615705379,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1164287,\n                    \"lon\": -117.5417603\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fruitvale\",\n                \"formattedAddress\": \"Main St, Fruitvale, BC V0G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kootenay Boundary\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fruitvale\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Liberty Foods (https://www.facebook.com/libertyfoodsfruitvale) has been proudly serving families in the Beaver Valley for over 60 years and we are looking for friendly, enthusiastic individuals who enjoy giving our customers the best shopping experience.Reporting to the Deli Manager, your duties and responsibilities include but are not limited to:Job OverviewBring a positive attitude every day.Upholds and complies with company procedures, standards and policies in all situationsGreets customers in a polite and friendly mannerDemonstrates superior customer serviceHot and cold food preparation, including sandwiches, chickens, salads, soups and specialty traysUse of commercial power equipment, including slicers and ovensWriting product ordersReceiving and rotation of productFilling product display casesPerforming any additional duties assigned by the Deli ManagerYou Have a passion for great food, possess strong customer service skills and an ability to learn quicklyHave an impeccable level of cleanliness, attention to detail and organizationHave excellent communication and interpersonal skillsThrive in a fast-paced environment, self-motivated and adapt well to shifting prioritiesWork well under minimal supervisionHighly motivated and team orientedAre available to work flexible hours including evenings and weekendsCan work on your feet up to 8 hours in a dayPerks of the JobBe a part of a fun and team-oriented workplace environmentFlexible schedule where work meets your lifestyleEnrolled in the Liberty Employee Rewards ProgramLiberty Foods is located at 1950 Main Street, Fruitvale, BC. Hours of operation are from 9:00 a.m. to 6:00 p.m. Deli Clerks work shifts start as early as 7:00 a.m. and end as late as 6:15 p.m. Shift lengths normally are 8 hours.We would like to thank you in advance for sharing your interest in Liberty Foods and would like to note that only those selected for an interview will be contacted. Liberty Foods is an equal opportunity employer.Work RemotelyNoJob Types: Full-time, Part-time, PermanentPart-time hours: 24 - 40 per weekSalary: $16.75-$18.00 per hourBenefits:Store discountSchedule:8 hour shiftDay shiftHolidaysMonday to FridayWeekends as neededCOVID-19 considerations:All customers are required to wear a mask while shopping, all staff are required to wear a mask while working, curbside pickup available, common surfaces are sanitized regularly, etc.Work Location: In person\",\n            \"location\": \"Main St, Fruitvale, BC\"\n        },\n        {\n            \"id\": \"E8CDAED9ED0E9F1ED46C2D18332C9883\",\n            \"cityName\": \"Ayr, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d2ae9540e097344f\",\n            \"jobName\": \"Customer Service Advisor (Ft)\",\n            \"companyName\": \"Quick Truck Lube - Napanee\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694465121462,\n            \"dateOfPosted\": 1693615573783,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2854723,\n                    \"lon\": -80.4507835\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ayr\",\n                \"formattedAddress\": \"Ayr, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ayr\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Quick Truck Lube is seeking a Customer Service Advisor with the following qualifications: Must be able to multi-task, and capable of working in a fast pace environment. Computer skills and strong organizational skills are required. Greeting customers and enhancing the customer service experience. Excellent communication skills required. Must be a good team player. Training is provided, previous experience is an asset  Must have own transportation, no public transportation is available.  Benefit Package available after 6 months.  Salary: $18/hour  To Apply: Email your resume to sjaimie@quicktrucklube.com \",\n            \"location\": \"Ayr, ON\"\n        },\n        {\n            \"id\": \"1D44FC275108C758273487AB32F85ECC\",\n            \"cityName\": \"Floshade in Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=77358650814ed7b6\",\n            \"jobName\": \"Customer Service Advisor\",\n            \"companyName\": \"Floshade\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694464952429,\n            \"dateOfPosted\": 1693615576889,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6066487,\n                    \"lon\": -73.712409\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laval\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"What you will do:- Provide excellent customer support by answering their questions, providing useful information as needed;- Handle customer complaints, provide appropriate solutions and alternatives according to established protocols;- Follow up on files to ensure excellent customer service;- Maintain customer satisfaction and loyalty;- Any other related duties.What you need:- High school diploma or other relevant education (desired);- Strong communication skills - written and spoken;- Customer focus;- Bilingual, French and English, because you will speak with customers across Canada.Job Types: Permanent, Full-timeSalary: $20.00 per hourSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsWork Location: In person\",\n            \"location\": \"Laval, QC\"\n        },\n        {\n            \"id\": \"A47C4B4AA38F4CB738823EE72BD19ADE\",\n            \"cityName\": \"1437 Waverley St, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b9ff65cc91d95014\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"204 Fuels Inc.\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694464903860,\n            \"dateOfPosted\": 1693615572089,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.7943692,\n                    \"lon\": -97.174065\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Waverley St, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Gas Station Attendant and U-Haul Customer Service Job for Female Candidates only.As a Gas Station Attendant, your role is integral to ensuring smooth operations at our gas station. Your friendly demeanor will help you assist customers with their fueling needs and provide them with any information they require. Efficiently handling cash transactions and maintaining the accuracy of the cash register will be part of your daily tasks. Additionally, you'll keep the gas station premises clean and tidy, which includes fuel pumps, restrooms, and the convenience store area. Regularly stocking merchandise, snacks, and convenience items will contribute to a well-stocked store for our customers. Safety will be a top priority as you follow guidelines for proper storage of hazardous materials and know the emergency response procedures. Ensuring that fuel and product pricing displays are up-to-date will also fall within your responsibilities. Lastly, maintaining accurate records of fuel sales, transactions, and inventory levels will be crucial to the overall operations of the gas station.U-Haul Customer Service Responsibilities:In your role as a U-Haul Customer Service representative, you'll play a vital role in assisting customers with their moving and transportation needs. You'll be responsible for guiding customers through the rental process, explaining various vehicle and equipment options, rates, and availability. Managing reservations and rental agreements accurately will be part of your day-to-day tasks. Thoroughly inspecting U-Haul vehicles before and after rentals to ensure they meet safety and cleanliness standards will contribute to customer satisfaction and safety. Offering clear instructions on vehicle operation, safety guidelines, and equipment usage will help customers have a smooth experience. Should any concerns arise, you'll be expected to address them promptly and provide appropriate solutions. Coordinating routine maintenance and cleaning of U-Haul vehicles and equipment will contribute to the overall quality of our fleet. Administrative tasks, such as completing paperwork and maintaining accurate rental records, will also be within your scope. Upselling additional U-Haul products and services to enhance customers' moving experiences will be an opportunity to increase customer satisfaction and revenue.U-Haul Customer Service Responsibilities:In your role as a U-Haul Customer Service representative, you'll play a vital role in assisting customers with their moving and transportation needs. You'll be responsible for guiding customers through the rental process, explaining various vehicle and equipment options, rates, and availability. Managing reservations and rental agreements accurately will be part of your day-to-day tasks. Thoroughly inspecting U-Haul vehicles before and after rentals to ensure they meet safety and cleanliness standards will contribute to customer satisfaction and safety. Offering clear instructions on vehicle operation, safety guidelines, and equipment usage will help customers have a smooth experience. Should any concerns arise, you'll be expected to address them promptly and provide appropriate solutions. Coordinating routine maintenance and cleaning of U-Haul vehicles and equipment will contribute to the overall quality of our fleet. Administrative tasks, such as completing paperwork and maintaining accurate rental records, will also be within your scope. Upselling additional U-Haul products and services to enhance customers' moving experiences will be an opportunity to increase customer satisfaction and revenue.MUST BE AVAILABLE TO WORK ON WEEKENDSJob Types: Full-time, Part-time, PermanentPart-time hours: 32 per weekSalary: $14.50 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayNight shiftWeekends as neededWork Location: In person\",\n            \"location\": \"Waverley St, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"CD7E2919BE7CA2665E67BE1A6B7B563F\",\n            \"cityName\": \"Woodstock, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=246e1bb90518f6a6\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Xplore Inc.\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694464844501,\n            \"dateOfPosted\": 1693615745249,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.15026599999999,\n                    \"lon\": -67.6033952\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Woodstock\",\n                \"formattedAddress\": \"Woodstock, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Carleton County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Woodstock\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Overview: * Do you have a passion for providing excellent customer service? Want to work for a company who believes in putting the customer at the heart of everything they do? Then join Xplore’s team of Customer Service Representatives in our Woodstock, NB office. Xplore offers a high energy, fast-paced work environment where employee opinions and feedback are valued. Xplore offers a high energy, fast-paced work environment where employee opinions and feedback are valued. We offer:$15/hr$3.00/hour Bilingual Premium (French/English)Bonus incentive opportunities up to $2,800 annuallyExcellent company benefits including health and dentalMatched participation in group RRSPStrong focus on internal promotion, career path development and trainingOpportunities to work from home after six months tenureKey responsibilities include:Providing an excellent customer experience by responding to customer calls in a courteous, knowledgeable and professional mannerListening to customers and probing as appropriate to discover needs while fulfilling customer expectations in a way that also complies with policies, practices and proceduresProviding general account, billing and technical support to our customersProcessing service ordersMaintaining accuracy of customer databasesAssisting with reporting and administrationMaintaining service levels and achieving business and performance goals and objectivesThe ideal candidate will possess:Completion of post-secondary education in a related field (or equivalent level of experience)Knowledge of approaches, tools and techniques for anticipating, recognizing and resolving technical issuesPrevious customer service experience is an assetStrong computer and troubleshooting skills with the ability to analyze and solve problemsSolid working knowledge of the Microsoft Operating Systems; experience with MAC and/or Linux is an assetStrong communication skills, verbal and written, with the ability to communicate effectively with customers in technical and non-technical termsSelf-motivated and driven with good time management and organizational skillsAbility to follow guidelines and strong attention to detailAbility to prioritize and multi-task while adapting in a fast-paced work environmentBilingualism is an asset (French/English) #XploreJobs Condition of employment: As a condition of employment and in order to comply with industry related data security standards, this position is subject to the successful completion of a Criminal Background Check. Details will be supplied to applicants as they move through the selection process. Xplore is committed to creating an accessible environment and will accommodate disabilities during the selection process. Please let your recruiter know during the selection process of any accommodation needs. Company Overview: Xplore Inc. is Canada’s fibre, 5G and satellite broadband company for rural living. Xplore is committed to the relentless pursuit of an improved broadband experience for all Canadians. Xplore is building a world-class fibre optic and 5G wireless network to enable innovative broadband services for better every day rural living, for today and future generations.\",\n            \"location\": \"Woodstock, NB\"\n        },\n        {\n            \"id\": \"9DD54464EC7719162AF8822BB2D50C02\",\n            \"cityName\": \"Central Mountain Air in Quesnel, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=93b3c5d6915548be\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Central Mountain Air\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694464530537,\n            \"dateOfPosted\": 1693615717652,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.9817372,\n                    \"lon\": -122.4949058\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Quesnel\",\n                \"formattedAddress\": \"Quesnel, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Cariboo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Quesnel\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Central Mountain Air, we pride ourselves in providing vital air connectivity to remote communities nestled within the stunning landscapes of Alberta and British Columbia. Our commitment to safety, reliability, and exceptional customer service is at the core of everything we do. Join our dedicated team and become an integral part of bringing people together and fostering economic growth in these unique regions. We are currently seeking a Part-Time Customer Service Agent to join our team at our Quesnel, BC base.Customer Service Agents are part of a team that works in conjunction with crew members and ground agents to escort and board passengers, take reservations, and maintain baggage accuracy and safety. Customer Service Agents report to the Customer Service Supervisor.Job ResponsibilitiesCheck-in and greeting passengers, taking reservations and handling payments (when necessary)Responding to passenger inquiriesAssisting passengers with disabilities during deplaning and enplaningProcessing baggage and cargoGate operations and flight closure, communicating load counts to flight crewsAbility to lift up to 50 lbsOther duties as assignedJob RequirementsSuperior customer service skillsGood communication and interpersonal skillsAbility to work independently as well as in a team environmentAbility to work flexible hours, including split shifts and weekend coverageWillingness to work outside in adverse weather conditionsGood computer skillsA positive attitude with the ability to be flexibleMust be able to obtain and retain an Airport RAICBenefits of Working at Central Mountain Air (part-time employees)Standby travel within Central Mountain Air network for employees, their eligible family members, and their buddies (not including fees and taxes)Free cargo shipping for employees on CMA flightsCentral Mountain Air is an equal opportunity employer and values diversity in our workplace. Our requirement is that you have the skills and abilities to do the job and the attitude of a team player. We encourage applications from all qualified individuals regardless of race, nationality, ethnic origin, color, religion, age, sex, sexual orientation, marital status, family status, and disability.Central Mountain Air thanks all applicants, however, only those selected for an interview will be contacted.Job Type: Part-timePart-time hours: 2-3 per weekSalary: $17.00-$18.00 per hourAbility to commute/relocate:Quesnel, BC V2J 6W6: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Quesnel, BC\"\n        },\n        {\n            \"id\": \"4F748CCBC7E1B73BFC95053419B8BDDE\",\n            \"cityName\": \"1410 39 St N, Lethbridge, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9c9940afb365218c\",\n            \"jobName\": \"Sales Associate / Customer Service Representative\",\n            \"companyName\": \"Comfortek Seating\",\n            \"rowSalary\": \"From $42,000 a year\",\n            \"date\": 1694464458079,\n            \"dateOfPosted\": 1693615833478,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.7074835,\n                    \"lon\": -112.8283721\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lethbridge\",\n                \"formattedAddress\": \"12a St N, Lethbridge, AB T1H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lethbridge\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ComforTek Seating is looking for a full-time sales associate / customer service representative. This position will be mainly phone and email sales, with limited in person dealings. Our customers are located in both Canada and the United States, so quotes are completed in both currencies. Responsibilities include but are not limited to the below:Responsible for quoting emailed/web/chat/phone requests for quotes in both U.S. and Canadian Markets on Church/Banquet/Health Seating.Type up a formal quote including freight for email/web/chat requests that has chair pricing, freight and options available.Running freight rates for customers for quotes.Tracking leads and quotes in a CRM program (Monday.com).Completing sales orders and having customers sign and return those when ready.Daily/weekly follow ups with customers on quotes provided to assist with any additional questions using the CRM information entered. Updating CRM as required.Forwarding any sample requests to the sample department.Answering phone & email inquiries with general information about products, requests for quotes and any other questions the customers have in regards to ComforTek.Ability to learn e-commerce platforms, and manage databases for existing e-commerce customers.Experience with Microsoft Great Plains an asset but not required.Conduct yourself in a respectful and professional manner both verbally and written. Interested in building relationships with customers that can lead to long term business dealings.Minimum 4 years sales experience, with preference given to those that have remote sales experience.Job Types: Permanent, Full-timeSalary: From $42,000.00 per yearBenefits:Dental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offFlexible Language Requirement:French not requiredSchedule:Monday to FridayEducation:Secondary School (preferred)Experience:Sales: 2 years (preferred)Work Location: In personExpected start date: 2023-09-25\",\n            \"location\": \"St N, Lethbridge, AB\"\n        },\n        {\n            \"id\": \"09840910D3FE1C4029D42B32914DC13F\",\n            \"cityName\": \"Churchill, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a96558b866fb233b\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Calm Air\",\n            \"rowSalary\": \"$17.78 an hour\",\n            \"date\": 1694464446889,\n            \"dateOfPosted\": 1693615669602,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 58.7684112,\n                    \"lon\": -94.16496400000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Churchill\",\n                \"formattedAddress\": \"Churchill, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 23\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Churchill\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Title: Customer Service Agent Location: Churchill, MB Status: Casual - Term Start Date: Immediately  Who We Are  Calm Air International is a regional airline serving the Northern part of Central Canada. From its main bases in Winnipeg, Thompson and Churchill, Manitoba, and Rankin Inlet, Nunavut, Calm Air operates frequent, daily scheduled passenger, charters, and cargo flights throughout Manitoba and the Kivalliq Region of Nunavut.  At Calm Air International LP, we value our customers, passengers, and the communities we serve. We are only as good as the employees who work with us. We are looking for highly motivated, well-organized individuals, who work well in a fast-paced environment, to join our team! Want to learn more? Visit www.calmair.com.  About the Opportunity  Are you seeking an exciting opportunity to work with a group of high performing professionals? Do you like to work independently as well as part of a skilled team? If so, we would like to hear from you! We are looking for a highly motivated, well-organized individual, who thrives in a fast-paced environment, to join the Calm Air family.  The sky is the limit!  What You'll Get To Do Calm Air Customer Service Agents provide valuable front-line passenger support and assistance to our customers at the airports and before and after they board one of our flights. They are responsible for ensuring our passenger experience is positive and meets the standards of service that we set out as an organization in addition to complying with applicable regulations. Providing curbside to curbside service to the travelling public as per Canadian Transportation Agency regulationsMaking and changing flight reservations in the computerized reservation systemChecking in passengers and their baggageCalculate and charge any additional fees if applicableIssuing boarding passes, itineraries, and seating assignments as necessaryAssist pre-boarding passengers to ensure safe movement to and from the aircraftProvide information on fares, flight schedules and routes in person or over the telephoneFacilitate the safe movement of passengers between aircraft and terminal buildingsOther duties as required Hours Of Work Shift work is required and may include mornings/afternoons, evenings, and weekends Skills & Experience We Value High school diploma or general education degree (GED) an assetAbility to learn a computerized reservation systemBasic Computer skills (word, excel, office)Knowledge of an airline’s operations an assetMust have exceptional customer service skillsMust be able to work independently or in a team settingAbility to work efficiently and accurately under pressureMust have own transportation to and from workMust be able to obtain and maintain an Enhanced Security Clearance qualificationMust be able to attend and complete initial Ground School TrainingPreference given to Inuit Land Claims BeneficiariesInuktitut language considered an asset The Benefits of Joining Our Team  We invest time and resources into making sure Calm Air International is as good as the people we hire. Here are some of the reasons we attract the best people: Northern Living AllowanceVacation entitlement will be paid out with each pay statement at 6%Airline travel and freight privilegesCorporate and family eventsAnd more! If This Sounds Like the Job for You, Contact Us!  At Calm Air, we value diversity and provide equal opportunities and accessibility for all qualified candidates. We encourage all members of a designated group or those requiring accessibility support to self-declare when applying.  Please submit a resume in confidence by September 15, 2023.  We thank all those who apply, but only those selected for an interview will be contacted.\",\n            \"location\": \"Churchill, MB\"\n        },\n        {\n            \"id\": \"EFACC7B54121466028FF4013CC7512B0\",\n            \"cityName\": \"156 Jozo Weider Blvd, Blue Mountains, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2d46848d15ec0e4b\",\n            \"jobName\": \"Customer Service Associate (Full-Time Available)\",\n            \"companyName\": \"Village Market\",\n            \"rowSalary\": \"$16.50–$18.00 an hour\",\n            \"date\": 1694464357453,\n            \"dateOfPosted\": 1693616128499,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.50561769999999,\n                    \"lon\": -80.30985369999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Owen Sound\",\n                \"formattedAddress\": \"Jozo Weider Blvd, The Blue Mountains, ON L9Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Owen Sound\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Village Market Customer Service Associate - Full Time and Part Time positionsThe Village Market is located at the heart of the Blue Mountain Village. It is a grocery and convenience store serving thousands of locals and tourists year round.We are searching for a hard working, personable, individual to join our team. We offer a competitive wage, a well-rounded benefits package and on-site training.Responsibilities:GENERAL/CUSTOMER SERVICEGreet, welcome and provide customers with excellent customer service skillsOperate cash register and process credit/debit paymentsVerify the age of customers when selling age restricted productsPull daily sales reportsComplete daily cash outsPerform other duties as assignedHOUSEKEEPINGMaintain a clean and orderly checkout areaEnsure store stays clean and organizedFollow all Health and Safety ProceduresMERCHANDISINGStock shelves when items are low and new inventory arrivesComplete merchandising tasks as directed and maintain efficient flow of merchandise from backroom to sales floorAdvise appropriate person regarding stock outs/shortagesPerform stock counts and orders for designated areasLOSS PREVENTIONEnsure loss prevention Standards are followedControl cash and lottery in accordance with prescribed cash handling policies and proceduresMaintain proper security of cash and merchandiseJob Requirements:GENERALGood communication skills and ability to read and write in EnglishCustomer Service orientatedAble to work under minimal supervision and have attention to detailAble to work individually and be a team playerEffective problem solverAble to work in a fast-paced environmentExperience in cash handling is not a requirement but an assetExperience working in a grocery store is not a requirement but an assetJob Type: Full-timeSalary: $16.50-$18.00 per hourBenefits:Dental careVision careDay range:HolidaysWeekends as neededFlexible Language Requirement:French not requiredShift:8 hour shiftWork setting:Convenience storeGrocery storeAbility to commute/relocate:Blue Mountains, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Jozo Weider Blvd, Blue Mountains, ON\"\n        },\n        {\n            \"id\": \"6A12CF8D3883AC8F5AB034FF740FE1A5\",\n            \"cityName\": \"3280 Thomas Street, Innisfil, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c67f886b2c3ca782\",\n            \"jobName\": \"Customer Service Representative / Lead Generator\",\n            \"companyName\": \"Roadwarrior Inc\",\n            \"rowSalary\": \"$33,000–$35,000 a year\",\n            \"date\": 1694464252572,\n            \"dateOfPosted\": 1693615564234,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2947979,\n                    \"lon\": -79.675913\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Innisfil\",\n                \"formattedAddress\": \"Thomas St, Innisfil, ON L9S, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Innisfil\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 33000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    33000.0\n                ],\n                \"range\": {\n                    \"gte\": 33000.0,\n                    \"gt\": null,\n                    \"lte\": 33000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Roadwarrior Inc. is an affiliate of DCL International Inc., a global leader in the research, design, engineering, manufacturing, and sales of advanced clean energy technologies, which has been in business for over 30 years.Roadwarrior Inc. manufactures a wide range of emissions components for heavy-duty trucks, buses, and construction equipment and lithium batteries for use in electric auxiliary power units used in commercial and recreational vehicles, boats, and solar powered systems. We are a growing manufacturer of lithium battery products searching for a Customer Service Representative / Lead Generator to join our team!PRIMARY RESPONSIBILITIESConduct surveys and analyze data on the buying habits and preferences of D2C, B2B, and wholesale customers.Review marketing strategies for individual audiences and evaluate alignment of messaging and tactics.Analyze and review purchase behaviours by region, audience, and category.Analyze conversion rates by digital audiences.Use product and customer data analytics to identify market opportunities.Identify gaps and gather research to support business activities.Opportunity to develop go to market strategies.Perform other duties as required.QUALIFICATIONS & SKILLSHigh School DiplomaExcellent written and verbal English communication skills. French communication skills is an asset.Experience in any of the following: market research, lead generation, customer service, or inside sales.Excellent interpersonal, problem-solving and time-management skills.Knowledge or commercial trucking, boating, motorhomes, electrical systems, electric vehicles or battery technology is an asset.Strong team player with the ability to work independently with minimum supervisionWHY US?We are proud Canadian companies, and we care about our shared environmentWe provide a safe, clean work environment, training, new uniforms, safety shoes, gogglesWe offer competitive pay, employee benefits, vacation and personal time offWe encourage professional development & offer reimbursements for professional fees/tuitionWe recognize our employees for their achievements through our Innovation Award ProgramRoadwarrior Inc is committed to employment equity and fostering an inclusive environment. We are dedicated in providing accommodation in accordance with all relevant legislation and if you require accommodation, please advise the HR department and we will work with you to meet your needs.We thank all applicants for their interest, however, only candidates selected for interviews will be contacted.No telephone calls or agencies please.Job Type: Full-timeSalary: $33,000.00-$35,000.00 per yearSchedule:Monday to FridayAbility to commute/relocate:Innisfil, ON L9S 3W5: reliably commute or plan to relocate before starting work (required)Application question(s):Are you eligible to legally work in Canada without sponsorship?How many years do you you have as a CSR or Lead Generator?How many years' experience do you have doing lead gen or market research using social media?Work Location: In person\",\n            \"location\": \"Thomas Street, Innisfil, ON\"\n        },\n        {\n            \"id\": \"F2BD9A7487E386A621B89B3C0C48E1C4\",\n            \"cityName\": \"DGN Marketing Services Ltd in Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=491b9d2cf29dd13d\",\n            \"jobName\": \"Bilingual Customer Service Administrator\",\n            \"companyName\": \"Dgn Marketing Services Ltd\",\n            \"rowSalary\": \"$37,400–$39,500 a year\",\n            \"date\": 1694463903152,\n            \"dateOfPosted\": 1693615751462,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 37400.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    37400.0\n                ],\n                \"range\": {\n                    \"gte\": 37400.0,\n                    \"gt\": null,\n                    \"lte\": 37400.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Distribution Company in Mississauga is looking for a Bilingual (English & French), Customer Service administrator to process customer orders, data entry and other administrative support duties on various accounts.Position: Full-time, DaysLocation: Near Dixie Rd and Meyerside Dr. Accessible by both Mississauga and Brampton public transit.Responsibilities:· Enter orders, receive, projects, and profile/list updates.· Handle customer inquires· Release orders for projects, distributions and back orders.· Answering of customer toll-free lines.· Run systems reports.· Administrative back-up/support activities.· Back-up for Reception.· Full compliance with Health and Safety requirements.· Other tasks as assigned by your Supervisor or Account Managers.Requirements:· Good administrative skills· Strong written and verbal communication skills.· Computer application (MS Word, MS Excel, MS Outlook and the internet).· Must be able to create and work with spreadsheets.· Professional and courteous phone manners.Job Type: Full-timeSalary: $37,400.00-$39,500.00 per yearBenefits:Dental careExtended health careVision careSchedule:8 hour shiftDay shiftExperience:customer service: 1 year (preferred)Language:French (required)Work Location: In personExpected start date: 2023-09-25\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"EF954BFB26AA6832A54E0F25067FF690\",\n            \"cityName\": \"Masset, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fae43bf33aa89590\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Executive Aviation\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694463842215,\n            \"dateOfPosted\": 1693615775199,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.0114581,\n                    \"lon\": -132.1471978\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Masset\",\n                \"formattedAddress\": \"Masset, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"North Coast\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Masset\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Do you enjoy the aviation industry and are looking for a leadership opportunity? Are you passionate about aviation and looking to grow your career? If you've answered yes, we'd love to hear from you! So, would you say that going above and beyond is in your DNA? Do you love to travel and want to travel even more at discounted rates? Does the opportunity to provide exemplary service to passengers on some of Canada’s best airlines appeal to you? Are you someone who is known for reliability and flexibility? If you've answered yes, come join us! Executive Aviation is looking for permanent casual Customer Service Agents to work at the Masset Airport (ZMT)! In Masset, you will be a part of an amazing team of customer service specialists who work together to provide exemplary service. This role reports directly to an amazing Customer Service Coordinator who is there to support you. What do we offer? Executive Aviation is proud to have very progressive wage ranges with lots of earning potential. The range of salary for this position is $18.00-$20.00/hour. We have fantastic flight benefits with the airlines that we support. We want to see you grow and reach your goals! The sky's the limit with Executive Aviation. Responsibilities Greeting passengers Following airline specific check-in policies and procedures Have proper security clearances Provide pre-flight first class or priority seating grooming for the flight Manage passenger boarding as per airline procedures Understanding flight document requirements and carry-on allowances Positively working with airline crew Kindly enforce airline and airport policies and procedures to passengers In some cases, learn how to bridge an airplane Other duties as assigned Qualifications At least 2 years in customer service role is considered an asset Previous airport experience would be considered an asset Flexible availability to work shift work which includes early mornings, days, late evenings, weekends and/or holidays Strong communication skillsswGrZEkia8\",\n            \"location\": \"Masset, BC\"\n        },\n        {\n            \"id\": \"534AB719E06E1253816B6CE7B2BEE84E\",\n            \"cityName\": \"136 17 Av NE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3df86fd190961970\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Inspire Insurance Services Ltd\",\n            \"rowSalary\": \"$40,000–$45,000 a year\",\n            \"date\": 1694463748712,\n            \"dateOfPosted\": 1692744773578,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0530547,\n                    \"lon\": -114.0417022\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"General Ave NE, Calgary, AB T2E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Inspire Insurance Services Ltd. is an insurance brokerage established in 2018 offering personal and commercial insurance products in Alberta. As a start-up, we acquired AGM Insurance Ltd., a brokerage that has faithfully served Albertans for almost 30 years. At Inspire, we are a unique team of dynamic and experienced professionals.We are seeking enthusiastic candidates to apply. At Inspire, you will be given the support and structure to grow and take your career to the next level.Why Inspire Insurance· Career development and mentorship· Unique hands-on training with real-life cases· Access to numerous insurance markets· Access to ongoing training & development by our insurance partners· A workplace where diversity is valuedJob Summary· Spoken Chinese (Cantonese or Mandarin) is an asset· Build and maintain business relationships with clients· Support CSRs in daily business transactions· Assist in generating insurance quotations, applications, and endorsements· Provide support with insurer portal submissions· Other assigned dutiesOur Ideal Candidate· AIC Level I insurance agent license or above· Previous customer service experience (in sales) is a plus by not required· Effective time management skills and ability to work in a pressure environment· Clear written and oral communication skills· Organized with strong attention to detail· Self motivated and enthusiastic· Proficiency in Microsoft Office suite: Word, Excel, OutlookJob Types: Full-time, Part-time, PermanentPart-time hours: 40 per weekSalary: $40,000.00-$45,000.00 per yearBenefits:Company eventsExtended health careFlexible Language Requirement:French not requiredSchedule:Monday to FridayEducation:Secondary School (preferred)Experience:Customer service: 1 year (required)Personal Line Insurance: 1 year (required)Language:Mandarin (required)Cantonese (required)Licence/Certification:AIC Level One General Insurance License (required)Work Location: In person\",\n            \"location\": \"Ave NE, Calgary, AB\"\n        },\n        {\n            \"id\": \"BD934DD33149BD370BA9D1E315200BE9\",\n            \"cityName\": \"Ayr, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e7c452944a4961d3\",\n            \"jobName\": \"Customer Service Advisor / Front Counter Receptionist (Full-Time)\",\n            \"companyName\": \"Quick Truck Lube\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694463730820,\n            \"dateOfPosted\": 1693615576742,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2854723,\n                    \"lon\": -80.4507835\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ayr\",\n                \"formattedAddress\": \"Ayr, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ayr\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Quick Truck Lube is seeking a Customer Service Advisor with the following qualifications:Must be able to multi-task, and capable of working in a fast pace environment.Terms of employment Permanent, Full time 35 to 48 Hours / Week, 6 days a week Monday to SaturdayComputer skills and strong organizational skills are required.Greeting customers and enhancing the customer service experience.Excellent communication skills required.Must be a good team player.Training is provided, previous experience is an assetMust have own transportation, no public transportation is available.Benefit Package available after 6 months.Salary: $18/hourTo Apply: Email your resume to sjaimie@quicktrucklube.comJob Types: Full-time, PermanentSalary: From $18.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceOn-site parkingVision careSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayWeekends as neededAbility to commute/relocate:Ayr, ON: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Ayr, ON\"\n        },\n        {\n            \"id\": \"8252451D7E29DDE050408C24D45FB477\",\n            \"cityName\": \"1290 St Paul St, Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c640ee2b77fa5d8d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Impact Radio Accessories\",\n            \"rowSalary\": \"$42,000–$46,000 a year\",\n            \"date\": 1694463624455,\n            \"dateOfPosted\": 1693615575558,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8917255,\n                    \"lon\": -119.4918887\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"St Paul St, Kelowna, BC V1Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Impact Radio Accessories Customer Service RepresentativeWho We Are:Impact Radio Accessories is an industry leading manufacturer and worldwide distributor of high-quality audio accessories and chargers for professional, portable communications devices.Through our extensive dealer network, Impact products are used by numerous vertical markets; from major retail chains and global hotel and hospitality brands, industrial and manufacturing facilities, public safety and military agencies and everything in between. Disney, Caesar’s Entertainment, MGM, NYPD, U.S. Secret Service, NASA, The Superbowl, MTV Awards, The Grammys, Wal-Mart, The GAP, Lowe’s, Amazon are just a few (of many) Impact product users we are proud to partner with.We are not only in the business of communication device accessories, but we are also in the business of growth. With the right products, team, and drive to thrive, Impact Radio Accessories has the potential to make an even greater footprint in the professional, portable communications device industry.We have an exciting opportunity for a Customer Service Representative to join our team in Kelowna, BC.. If you bring a positive energy with ambition to learn & grow, then Impact Radio Accessories would love to hear from you.The Role:As our Customer Service Representative, or CSR, you will ensure excellent service standards, respond efficiently to customer inquiries, and maintain high customer satisfaction across our North American Dealer and End User market.Duties & Responsibilities:- Manage a high level of inbound calls and online inquiries from current and potential customers.- Process customer orders with accuracy and efficiency in accordance with standard procedures including taking credit card payments and packing orders.- Updating, referencing, and maintaining customer accounts in our CRM system.- Qualify and direct inbound leads to the appropriate Territory Sales Manager.- Proactively use phone and email to reach out to customers and verify account information.- Respond to customer inquiries regarding order status and product recommendations in a timely manner.- Build sustainable relationships of trust through open and interactive communication.- Deliver outstanding customer service to ensure an exceptional experience for all customers.- Contribute to team effort by accomplishing related results as needed.Experience- 1+ year of sales or customer service experience (B2B considered an asset.)- Experience in handling customer inquiries via phone, email, chat, or face-to-face.- Experience with CRM software.Skills- Excellent verbal and written communication skills- Ability to actively listen and understand customer needs and concerns.- Basic computer proficiency, including experience with Microsoft Office Suite (Word, Excel, Outlook) or equivalent software.- Demonstrated ability to address customer issues, troubleshoot basic product or service concerns, and provide effective solutions.- Familiarity with order processing, billing, or related administrative tasks is a plus.Must be legally entitled to work in Canada without restriction.Company Perks & Benefits:- Competitive salary- Flexible PHSP (benefit) health spending account.- Employee & Family Assistance Program.- 3 weeks paid time off- Casual, modern office environment with large patio, BBQ located downtown Kelowna.- Company paid snacks, beverages, lunches, and fun events.- Free-to-use gym and fitness center with rooftop patio and lounge.- Opportunities for advancement and continuous professional growth.If you are a high-performing, goal-oriented individual seeking the opportunity to be an integral part of the next phase of our growth, we look forward to meeting you.How should you apply?Include your resume, cover letter and a personal note telling us why you’d like to work hereOnly qualified, Okanagan based, candidates will be notified they are moving onto next steps in the processJob Type: Full-timeSalary: $42,000.00-$46,000.00 per yearBenefits:Casual dressCompany eventsDental careEmployee assistance programExtended health careOn-site gymOn-site parkingPaid time offVision careWellness programSchedule:8 hour shiftDay shiftMonday to FridayAbility to commute/relocate:Kelowna, BC: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"St Paul St, Kelowna, BC\"\n        },\n        {\n            \"id\": \"49003B27E95B5561AF56E27B7E495CB9\",\n            \"cityName\": \"384 Academy Rd, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=49418d3a585d2db5\",\n            \"jobName\": \"Customer Service Clerk/Cashier\",\n            \"companyName\": \"G.J.Andrews Food And Wine Shoppe\",\n            \"rowSalary\": \"From $32,000 a year\",\n            \"date\": 1694463591409,\n            \"dateOfPosted\": 1693615589161,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8738702,\n                    \"lon\": -97.1850877\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Academy Rd, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 32000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    32000.0\n                ],\n                \"range\": {\n                    \"gte\": 32000.0,\n                    \"gt\": null,\n                    \"lte\": 32000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer service clerk position open at a gourmet food and wine store in River Heights.If you have a great eye for detail, enjoy working with the public and a good team environment this is the job for you!Your job as a customer service clerk will include ringing up sales on the register, bagging items, stocking shelves, taking phone orders and maintaining our high level of customer service.This position brings a fantastic opportunity to learn more about our business; we reward hard work and initiave with increased responsibility and earnings.Job Type: Full-timeSalary: From $32,000.00 per yearBenefits:Dental careStore discountDay range:Every WeekendMonday to FridayWeekends as neededFlexible Language Requirement:French not requiredShift:8 hour shiftWork setting:Grocery storeCOVID-19 considerations:We follow all public health rules and operate a very clean establishment. When dealing with food cleanliness and sanitizing is always inportant.Experience:sales: 1 year (preferred)customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Academy Rd, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"E76BF5F76F7532F640DD6007CB629969\",\n            \"cityName\": \"Fredericton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1e6c81600f52a47b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Xplore Inc.\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694463512821,\n            \"dateOfPosted\": 1693615710775,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.9635895,\n                    \"lon\": -66.6431151\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fredericton\",\n                \"formattedAddress\": \"Fredericton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"York County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fredericton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Overview: * Do you have a passion for providing excellent customer service? Want to work for a company who believes in putting the customer at the heart of everything they do? Then join Xplore’s team of Customer Service Representatives in our Fredericton, NB office. Xplore offers a high energy, fast-paced work environment where employee opinions and feedback are valued. Xplore offers a high energy, fast-paced work environment where employee opinions and feedback are valued. We offer:$15.00/hr$3.00/hour Bilingual Premium (French/English)Bonus incentive opportunities up to $2,800 annuallyExcellent company benefits including health and dentalMatched participation in group RRSPStrong focus on internal promotion, career path development and trainingOpportunities to work from home after six months tenureKey responsibilities include:Providing an excellent customer experience by responding to customer calls in a courteous, knowledgeable and professional mannerListening to customers and probing as appropriate to discover needs while fulfilling customer expectations in a way that also complies with policies, practices and proceduresProviding general account, billing and technical support to our customersProcessing service ordersMaintaining accuracy of customer databasesAssisting with reporting and administrationMaintaining service levels and achieving business and performance goals and objectivesThe ideal candidate will possess:Completion of post-secondary education in a related field (or equivalent level of experience)Knowledge of approaches, tools and techniques for anticipating, recognizing and resolving technical issuesPrevious customer service experience is an assetStrong computer and troubleshooting skills with the ability to analyze and solve problemsSolid working knowledge of the Microsoft Operating Systems; experience with MAC and/or Linux is an assetStrong communication skills, verbal and written, with the ability to communicate effectively with customers in technical and non-technical termsSelf-motivated and driven with good time management and organizational skillsAbility to follow guidelines and strong attention to detailAbility to prioritize and multi-task while adapting in a fast-paced work environmentBilingualism is an asset (French/English) #XploreJobs Condition of employment: As a condition of employment and in order to comply with industry related data security standards, this position is subject to the successful completion of a Criminal Background Check. Details will be supplied to applicants as they move through the selection process. Xplore is committed to creating an accessible environment and will accommodate disabilities during the selection process. Please let your recruiter know during the selection process of any accommodation needs. Company Overview: Xplore Inc. is Canada’s fibre, 5G and satellite broadband company for rural living. Xplore is committed to the relentless pursuit of an improved broadband experience for all Canadians. Xplore is building a world-class fibre optic and 5G wireless network to enable innovative broadband services for better every day rural living, for today and future generations.\",\n            \"location\": \"Fredericton, NB\"\n        },\n        {\n            \"id\": \"1958867EC116E9B12A32B84D12C2542C\",\n            \"cityName\": \"75 Napa Valley Ave, Woodbridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=56f33713f73baaa0\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Keto Pi Factory\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694463474762,\n            \"dateOfPosted\": 1693615577569,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.823457,\n                    \"lon\": -79.618179\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Napa Valley Ave, Vaughan, ON L4H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities include but are not limited to the following: Greeting all customers Product facing Packing orders Ability to travel to different location if necessary Organize opening and closing duties as assigned Act with integrity, honesty, and knowledge of our products per customer’s dietaryneeds Anticipate customer and store needs by constantly evaluating environment andcustomers for cues Deliver exceptional customer service, making genuine connections with customers Following all cash register opening and closing policies and ensuring proper cash management practices are followedThe successful candidate must: Maintain regular and consistent attendance and punctuality Complete all daily tasks, as outlined by the location manager Follow health, safety, and sanitation guidelines for all products Always maintain a clean working and store environmentPreferred Experience: Customer service experience is an asset Knowledge of the Ketogenic diet is an assetAssets: Ability to learn quickly G license Effective oral communication skills Retail experience Strong interpersonal skills Ability to work individually or as part of a teamJob Types: Part-time, PermanentPart-time hours: 20 per weekSalary: From $15.50 per hourSchedule:8 hour shiftDay shiftWeekend availabilityExperience:Customer service: 1 year (preferred)Licence/Certification:Class G Licence (preferred)Work Location: In person\",\n            \"location\": \"Napa Valley Ave, Woodbridge, ON\"\n        },\n        {\n            \"id\": \"0C66AFDF8260ABE36A871BB72CD7C3B0\",\n            \"cityName\": \"Baker Lake, NU\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6404456c4ad12fe7\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Calm Air\",\n            \"rowSalary\": \"$18.14 an hour\",\n            \"date\": 1694462431195,\n            \"dateOfPosted\": 1693610462143,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 64.317604,\n                    \"lon\": -96.02200099999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Baker Lake\",\n                \"formattedAddress\": \"Baker Lake, NU, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nunavut\",\n                \"state_code\": \"NU\",\n                \"postalTown\": null,\n                \"county\": \"Keewatin Region\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Baker Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Title: Customer Service Agent Location: Baker Lake, NU Status: Full Time Start Date: Immediately  Who We Are  Calm Air International is a regional airline serving the Northern part of Central Canada. From its main bases in Winnipeg, Thompson and Churchill, Manitoba, and Rankin Inlet, Nunavut, Calm Air operates frequent, daily scheduled passenger, charters, and cargo flights throughout Manitoba and the Kivalliq Region of Nunavut.  At Calm Air International LP, we value our customers, passengers, and the communities we serve. We are only as good as the employees who work with us. We are looking for highly motivated, well-organized individuals, who work well in a fast-paced environment, to join our team! Want to learn more? Visit www.calmair.com.  About the Opportunity  Are you seeking an exciting opportunity to work with a group of high performing professionals? Do you like to work independently as well as part of a skilled team? If so, we would like to hear from you! We are looking for a highly motivated, well-organized individual, who thrives in a fast-paced environment, to join the Calm Air family.  The sky is the limit!  What You'll Get To Do Calm Air Customer Service Agents provide valuable front-line passenger support and assistance to our customers at the airports and before and after they board one of our flights. They are responsible for ensuring our passenger experience is positive and meets the standards of service that we set out as an organization in addition to complying with applicable regulations. Providing curbside to curbside service to the travelling public as per Canadian Transportation Agency regulationsMaking and changing flight reservations in the computerized reservation systemChecking in passengers and their baggageCalculate and charge any additional fees if applicableIssuing boarding passes, itineraries, and seating assignments as necessaryAssist pre-boarding passengers to ensure safe movement to and from the aircraftProvide information on fares, flight schedules and routes in person or over the telephoneFacilitate the safe movement of passengers between aircraft and terminal buildingsOther duties as required Hours Of Work Shift work is required and may include mornings/afternoons, evenings, and weekends Skills & Experience We Value High school diploma or general education degree (GED) an assetAbility to learn a computerized reservation systemBasic Computer skills (word, excel, office)Knowledge of an airline’s operations an assetMust have exceptional customer service skillsMust be able to work independently or in a team settingAbility to work efficiently and accurately under pressureMust have own transportation to and from workMust be able to obtain and maintain an Enhanced Security Clearance qualificationMust be able to attend and complete initial Ground School TrainingPreference given to Inuit Land Claims BeneficiariesInuktitut language considered an asset The Benefits of Joining Our Team  We invest time and resources into making sure Calm Air International is as good as the people we hire. Here are some of the reasons we attract the best people: Registered Pension Plan starting at 5% matched after one year of employmentComprehensive Group Benefit Plan available upon hire with the exception of dental coverage which has a three month wait periodNorthern Living AllowanceEntitled to three weeks vacation after one yearAirline travel and freight privilegesCorporate and family eventsAnd more! If This Sounds Like the Job for You, Contact Us  At Calm Air, we value diversity and provide equal opportunities and accessibility for all qualified candidates. We encourage all members of a designated group or those requiring accessibility support to self-declare when applying.  Please submit a resume in confidence by September 15, 2023, through Dayforce.  We thank all those who apply, but only those selected for an interview will be contacted.\",\n            \"location\": \"Baker Lake, NU\"\n        },\n        {\n            \"id\": \"876B25CF637DBECAE63BF68EC6C42D35\",\n            \"cityName\": \"272 Industrial Ave E, Penticton, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=05a8f8188c69be5b\",\n            \"jobName\": \"Customer Service And Office Administrator\",\n            \"companyName\": \"Craftsman Collision\",\n            \"rowSalary\": \"$42,000–$55,000 a year\",\n            \"date\": 1694462233451,\n            \"dateOfPosted\": 1693615577508,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.4804046,\n                    \"lon\": -119.5782001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Penticton\",\n                \"formattedAddress\": \"Industrial Ave E, Penticton, BC V2A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Okanagan-Similkameen\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Penticton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We're currently seeking a temporary Customer Service and Office Administrator at our Penticton location. We are looking for someone to start as soon as possible and continue on a fixed term basis until the end of May, 2024. We offer competitive wages ranging from $42,000 to $55,000 annually, 3 weeks of paid vacation, and extended health and dental. The Customer Service and Office Administrator will provide exceptional customer service and support the Shop with operations initiatives and administrative duties. Craftsman Collision is the largest independently owned and operated auto body repair chain in Canada – but we’re also a family that cares about the people we work with. Are you ready to reach your full potential and build a fulfilling career- while having fun along the way? Then consider joining our team of more than 500 ambitious people who share our commitment to excellence. Customer ServiceInteracts with customers in a caring, friendly and professional manner and assists in clearly identifying the customers’ needs to relay to the rest of the team. Gathers all required information to pass along to estimator;Takes ownership of a customers’ concerns and issues until they are satisfied or until they are able to pass them on to the appropriate person;Answers phones, handles telephone enquiries, books appointments, makes appointment reminder calls and notifies customers of repair completion as directed;Greets customers as they walk in the door and helps ensure their wait time is agreeable;Signs customers in and out and collects all necessary payments;Helps customers to understand our processes and procedures by explaining in a clear, simple and respectful manner;Deals with all customer interactions promptly including monitoring of Production Dashboard in the Craftsman Management System (CMS) for alerts/correspondence as well as voicemail and email;Office AdministrationDownloads and prints assignments from insurance companies using Audatex and Mitchell and prepares new files for estimators;Manages the shop’s email inbox and forwards, distributes or files emails accordingly;Prepares monthly promotional and printing inventories and organizes replenishing as necessary;Orders all office supplies and printer toner cartridges;Input documents and new hourly employees into Dayforce.Arranges courier services when necessary;Supports in-shop training of new staff;Daily Bookkeeping DutiesUpdates CMS for arrived and delivered vehicles as changes occur;Closes POS machine, prints and posts the Deposit Journal. Prepares a bank deposit slip daily for any cash/cheques;Finalizes all work orders from previous day and bill insurance companies accordingly;Invoices parts/sublet/rental invoices relating to work orders via Purchase Orders and reviews any discrepancies;Posts any A/R cheques into Traverse A/R and reconciles any over/short payments;Enters invoices for non-trade payables (overhead) into Traverse A/P;Banking as required (at least weekly);Posts PO Journals and Non-Trade Transaction Journals as required;Monthly Bookkeeping DutiesPrepares all payable cheque runs (mid & month end). Prepares monthly log for Head Office for any aging A/P amounts;Reconciles Flat-Rate and Straight-Time hours with employees (with the help of Shop Manager) and posts the Flat-Rate Journal in CMS on a semi-monthly basis. Prepares manual cheques and ROE’s for any terminated hourly employees or for those on leave;A/R Collections on unpaid balances including sending statements to customers and preparation of monthly log for Head Office;Follows month-end procedures on the first day of every month and reviews monthly reports with Shop Manager;Reviews monthly ARA and MSP benefits statements for accuracy;Reconciles GL accounts 4920 (Other Income/Over-Shorts), 1130 (Employee A/R) and 1999 (Suspense);Performs year-end requirements as directed by Head Office.Other related duties as assigned.RequirementsMinimum of 3 years related experience in a fast-paced, team-oriented environmentPost-secondary courses in a related field an assetStrong interpersonal skills with customer service-oriented attitudeExperience with accounts receivable, accounts payable, and payroll preferredDemonstrated ability to multi-task and prioritize, effectively managing time with minimal supervisionDetail oriented and able to complete tasks with a high degree of accuracyStrong verbal, written and listening skillsProficient in Outlook, Word and Excel with the ability and willingness to learn new applicationsDemonstrated desire and aptitude for learning and developmentPrevious experience with payroll or HRIS systems preferred; Dayforce experience an assetA valid driver's license preferredMust be legally entitled to work in Canada with no restrictions Benefits When you’re part of the Craftsman Collision team, you get valuable perks like extended health, professional development, certified training and more. Your cover letter and resume should clearly outline how your qualifications & experience fit this position. We appreciate the time that all applicants have taken when applying for this position, however, only the candidates that are chosen for an interview will be notified by phone or email. No phone calls please.\",\n            \"location\": \"Industrial Ave E, Penticton, BC\"\n        },\n        {\n            \"id\": \"D5E087C84C8A0D6A1D1D538A9DBE63EC\",\n            \"cityName\": \"485 Rue McGill, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a0272c25fffcadba\",\n            \"jobName\": \"Barrista And Customer Service\",\n            \"companyName\": \"Presse Cafe\",\n            \"rowSalary\": \"$16–$18 an hour\",\n            \"date\": 1694462047274,\n            \"dateOfPosted\": 1692746430228,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5000023,\n                    \"lon\": -73.5566425\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue McGill, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"responsible... . customer service oriented . friendly. detailed would be an asset, expeience in food handling and food preparation needed for some of the postsJob Types: Full-time, Part-time, PermanentPart-time hours: 25-35 per weekSalary: $16.00-$18.00 per hourSchedule:Monday to FridayWork Location: In personExpected start date: 2023-08-23\",\n            \"location\": \"Rue McGill, Montréal, QC\"\n        },\n        {\n            \"id\": \"E80B46D2EE6A113AC1D2488A083FA7F4\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d797cc1d4ba4d807\",\n            \"jobName\": \"Agent Bilingue Du Service Clientèle / Bilingual Customer Service Agent\",\n            \"companyName\": \"Voxdata\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694461985147,\n            \"dateOfPosted\": 1692763714001,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*English version to follow* *NB : Nous n'acceptons que les candidatures provenant de la grande région de Montréal car la formation se fait à partir du bureau.* *Nous exigeons que nos candidats parlent anglais car certains de nos clients sont à l'extérieur du Québec et ne parlent que l'anglais.* Prêt à vous joindre à l'un des plus importants centres d'appels de Montréal ! VOXDATA vous attend ! Nous cherchons à agrandir notre équipe avec de nouveaux membres qui sont prêts à devenir nos prochains experts en offrant la meilleure expérience client possible ! Pour avoir une meilleure idée de notre entreprise et de nos valeurs, vous pouvez consulter notre site web ici ! https://www.voxdata.com/ Voici quelques raisons pour lesquelles il fait bon travailler chez VOXDATA :Une variété de types de postes, allant du service à la clientèle aux ventes, en passant par le soutien technique, avec des rôles uniquement en anglais ou bilingues et des options d'horaire variées - nous voulons mettre en valeur vos compétences uniques dans un poste qui vous convient le mieux !Un bureau facilement accessible et convoité au cœur du centre-ville de Montréal, et la possibilité de travailler à domicile pour nos postes hybrides !Un environnement de travail diversifié, positif et encourageant, notre objectif étant d'aider nos agents à briller et à réussir au maximum de leur potentiel !Les avantages et les bénéfices pour les employés tels que les plans de primes inclus dans nos postes, les primes supplémentaires pour les personnes les plus performantes (comme des cartes cadeaux et de l'argent supplémentaire !), les couvertures d'assurance, et les primes de recommandation des employés qui peuvent aller jusqu'à 1000 $ par personne !La possibilité d'évoluer et de développer vos compétences par le biais de réunions d'équipe, de séances de coaching individuel et d'évaluations des performances, toutes conçues pour vous aider à renforcer vos capacités et à devenir un maître dans votre travail !Des opportunités de développement interne ouvertes à tous - avec des rôles tels que chef d'équipe, coach, formateur, mentor et même des postes administratifs, nous sommes fiers de toujours nous tourner vers le personnel que nous avons déjà avec nous pour le promouvoir lorsque l'occasion se présente !Pour ce poste, vous travaillerez avec une société d'aviation bien établie. Vos tâches spécifiques seront les suivantes :Fournir un service à la clientèle de premier ordre à chaque interaction avec les clients.Répondre aux appels entrants des clients pour les aider à effectuer des réservations une fois qu'elles ont été achetées.Résoudre les problèmes liés à l'accès aux billets et à la navigation sur le site web.Répondre aux questions concernant les informations sur les billets ou aux questions générales sur les réservations.Ready to join one of the leading call centers in Montreal?! VOXDATA is waiting for you! We’re looking to expand our team with new members who are ready to become our next experts in delivering the best customer experience possible! To get a better idea of our company and values, you can check out our website here! https://www.voxdata.com/ Here’s a few reasons why it’s great to work at VOXDATA:A variety of position types, ranging from customer service, sales, and technical support, with English-only or bilingual roles and ranging scheduling options – we want to highlight your unique skillset in a position that is best suited to you!An easily accessible and coveted office location in the heart of Downtown Montreal, and the option to work from home with our hybrid roles!A diverse, supportive, and encouraging work environment, our goal is to help our agents shine and succeed to their fullest potential!Employee benefits and perks such as bonus plans included into our positions, additional bonuses for top performers (like gift cards and extra money!), insurance coverages, and employee referral bonuses that can go up to $1000 per person!The chance to grow and develop your skills through team meetings, individual coaching sessions, and performance reviews; all designed to help you further strengthen your abilities and become a master at your job!Internal growth opportunities that are open to everyone – with roles like team leader, coach, trainer, mentor, and even administrative positions; we pride ourselves on always looking to the staff we already have with us to promote when the occasion arises!For this role, you will be working with an established aviation company. Your specific tasks will include:Providing top-tier customer service to clients in every interaction.Answering inbound calls from customers to assist with bookings/reservations after they have been purchased.Resolving issues relating to ticket access and website navigation.Answering questions regarding ticket information, or general questions about bookings/reservations.Requirements Qu'est-ce qui fait de quelqu'un un excellent candidat ? Nous recherchons des personnes qui :Peut travailler 40 heures par semaine pendant les heures d'ouverture de la campagne : Du lundi au dimanche, de 7 heures à 7 heures (ouvert 24 heures sur 24) ; nous préférons les candidats disponibles le soir, la nuit et le week-end. Sont bilingues en français et en anglais.Ont déjà travaillé dans le service à la clientèle, les ventes ou les centres d'appels, ou ont une expérience traduisible dans d'autres secteurs.Vous pouvez apprendre à utiliser et à faire fonctionner plusieurs programmes informatiques avec facilité.Être disponible pour travailler le soir et le week-end si la campagne est opérationnelle pendant ces périodes.Avoir obtenu un diplôme de fin d'études secondaires ou un diplôme équivalent.Se considèrent comme des personnes capables de résoudre des problèmes, de s'adapter à des situations changeantes et sont motivées pour être les meilleures des meilleures !What do we think makes someone a great candidate?! We’re looking for people who:Can work 40 hours/week anytime through the campaign operation hours: Monday to Sunday, from 7 AM to 7 AM (open 24 hours/day); we prefer candidates with evening, overnight, and weekend availability. Are bilingual in French and English.Have worked in customer service, sales, or call centers before; or have translatable experience from other industries.Can learn how to use and operate multiple computer programs with ease.Have graduated high school or have an equivalent diploma.Consider themselves to be problem-solvers, adaptable to changing situations and are motivated to be the best of the best!Benefits Soumettez votre candidature dès maintenant pour lancer le processus d'embauche et voyez par vous-même pourquoi il est formidable d'être un agent VOXDATA !Ce poste est assorti d'un salaire de base de 17,00 $/heure. Submit an application now to get the hiring process started and see for yourself why its great to be a VOXDATA agent! *This position has a base salary of $17.00/hour.*\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"E16BD5DF6A67F474B9B18872AD6AC65A\",\n            \"cityName\": \"3394 Norwell Dr, Nanaimo, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dc1c3354ca7c0c75\",\n            \"jobName\": \"Customer Service/Pizza Maker\",\n            \"companyName\": \"Domino's Pizza | Ptza Nation Bc\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694461956964,\n            \"dateOfPosted\": 1693609583783,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2082176,\n                    \"lon\": -124.0084757\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Nanaimo\",\n                \"formattedAddress\": \"Norwell Dr, Nanaimo, BC V9T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Nanaimo\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Domino's Pizza is hiring immediately for Customer Service Representatives (Pizza Cook/Team Member) to join their team! Job type:Part time, Permanent We are searching for qualified customer service reps with personality and people skills. We're growing so fast it's hard to keep up, and that means Domino's has lots of ways for you to grow (if that's what you want), perhaps to management, perhaps beyond. Whether it's your hobby, main-gig, or supplemental job, drop us a line. We're bound to have just the thing for you. We take pride in our team members and our team members take pride in Domino's Pizza! Being the best pizza delivery company in the world requires exceptional team members working together. At Domino's Pizza, our people come first! As part of our crew, your responsibilities will include: Stocking ingredients from delivery area to storage, work area, walk-in cooler. Preparing products Receiving and processing telephone orders. Cleaning equipment and facility approximately daily. Benefits of working at Domino's Pizza: Flexible schedules Competitive wages for all Team Members Store discounts Fun working environment Additional pay on top of wage with tip sharing program Domino's is an equal opportunity employer. REQUIREMENTS At Domino's Pizza, Our Most Important Ingredient is Our People! We offer employment opportunities within our franchise stores. Take the first step in joining our team, and you'll find opportunities you won't find anywhere else in the industry!\",\n            \"location\": \"Norwell Dr, Nanaimo, BC\"\n        },\n        {\n            \"id\": \"2C656374C722189DCF98630597830C3A\",\n            \"cityName\": \"4874 Concession Rd 7, Alliston, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0144daf9f5915b72\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Peavey Industries Lp\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694461922115,\n            \"dateOfPosted\": 1667812884741,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.0983589,\n                    \"lon\": -79.8870125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Barrie\",\n                \"formattedAddress\": \"Concession Rd 7, Adjala-Tosorontio, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Barrie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Knowledge, Skills, and Abilities Required· Maintaining a customer first, positive attitude· High attention to detail· Ability to count, total, and work with numbers· Ability to learn and operate till technology· Staying calm and attentive in a busy environment· Ability to approach customers, listen attentively, and use suggestive selling.· Ability to multi-taskJob Qualifications· On the job training or previous experienceWorking Conditions· Standing for extended periods, walking long distances to move/handle merchandise and provide customer service· Lifting up to 40lbs. and maintaining fitness level to perform all functions as set forth above· Operating keyboard, scanning, and touch screen till technology in a repetitive mannerSupervisory Responsibilities· noneJob Types: Full-time, PermanentSalary: From $17.00 per hourBenefits:Dental careOn-site parkingPaid time offStore discountVision careShift:8 hour shiftExperience:sales: 1 year (preferred)Customer service: 1 year (preferred)\",\n            \"location\": \"Concession Rd, Alliston, ON\"\n        },\n        {\n            \"id\": \"C01646A1CFAC11301900A9405D1BB3B1\",\n            \"cityName\": \"86 Main St, Dundas, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=74cf25415648edf2\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Dominos\",\n            \"rowSalary\": \"$15.50–$16.00 an hour\",\n            \"date\": 1694460944993,\n            \"dateOfPosted\": 1693608065172,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.264197,\n                    \"lon\": -79.95260630000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Main St, Hamilton, ON L9H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service Representatives role is crucial within the Domino’s system. We pride ourselves on offering fast and friendly service with a smile, and our CSRs lead the way in doing so. Within our fast paced environment, the role is primarily to offer top quality customer service by phone and in person at the counter. CSRs are expected to know Domino’s products and the current offers in order to provide customers with the correct order and best value based on their needs.A uniform is provided (shirt, hat, apron). Customer Service Representatives are expected to be presentable by following Domino’s personal image and grooming standards.Functions:Customer Service Representatives will take orders by phone-in customers, as well as walk-in customers. They are expected to manage the cash drawer when accepting payment for orders and returning change.In secondary roles, Customer Service Representatives will help make quality products, label boxes, cut pizzas and prepare orders to be served to in-store customers. CSRs also help in maintaining the store’s professional image by participating in the cleaning tasks assigned to all team members.Qualifications:All Customer Service Representatives must have the following:Friendly and well spokenGood math skills to handle cash handling for in-store customer paymentsSpeak English fluently in order to serve customersMust be available evenings & weekends, additional availability beyond evenings & weekends will be considered an assetJob Types: Part-time, Full-timePart-time hours: 15-30 per weekSalary: $15.50-$16.00 per hourBenefits:On-site parkingStore discountSchedule:4 hour shift8 hour shiftDay shiftMonday to FridayNight shiftWeekends as neededAbility to commute/relocate:Dundas, ON L9H 2R1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (required)Fast food: 1 year (preferred)Shift availability:Day Shift (required)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Main St, Dundas, ON\"\n        },\n        {\n            \"id\": \"B0AB0467649F8ABC44B810FF246DC084\",\n            \"cityName\": \"1811 Bank St, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0fd2cfda67ad29b0\",\n            \"jobName\": \"Customer Service - Parts Advisor (Automotive Retail)\",\n            \"companyName\": \"Alpha Auto Group - Bank Street Toyota\",\n            \"rowSalary\": \"From $19 an hour\",\n            \"date\": 1694460791426,\n            \"dateOfPosted\": 1687946739264,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4209477,\n                    \"lon\": -75.70115419999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Bank St, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Alpha Auto Group (\\\"AAG\\\") is a growing and nationally focused auto dealer group based in Toronto, with various locations across Canada and the USA. AAG’s mission is deeply rooted in delivering best in class service for our valued customers by putting our customers first through world class service.In order to meet this mission, it’s important that the successful candidate bring a high level of service, skill, willingness to grow and collaborate and drive, set and meet goals, both personally and collaboratively.With the ever increasing demand for support and service in the auto industry, our Bank Street Toyota location is looking for a Parts Advisors to join the team.ResponsibilitiesWorking directly with customers, suppliers and technicians to ensure that there is ongoing communication and effective operations within the parts department.Always working towards improving operational efficiencies.Order parts for customers' repair needs.Maintain and nurture ongoing rapport and relationships with business partners.Oversee and maintain parts inventory.QualificationsPrevious parts advisor experience. (min 1 yr)Deep passion and interest in human centered customer experiences.High attention to detail and able to work with minimal supervision.Comfort working with all levels of staff and customers.Strong verbal and written skills and proficiency in English.Proficient in Microsoft Office Applications. (Excel, Word, Outlook)Strong interpersonal skills.Job Types: Permanent, Full-timeSalary: From $19.00 per hourBenefits:Extended health careSchedule:Day shiftMonday to FridayWeekends as neededExperience:Customer Service: 3 years (preferred)Automotive Parts: 1 year (preferred)Language:English (required)Licence/Certification:Drivers License (required)Work Location: In person\",\n            \"location\": \"Bank Street, Ottawa, ON\"\n        },\n        {\n            \"id\": \"47571AA2AC5CF0874312EA3C8E2B40E1\",\n            \"cityName\": \"1000 Rue Legendre Ouest, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1153b6700ccdd55b\",\n            \"jobName\": \"Caissier, Caissière Service à La Clientéle De Nuit/ Cashier Customer Service Night Shift\",\n            \"companyName\": \"Tim Hortons | Damsar, Inc.\",\n            \"rowSalary\": \"$17.25 an hour\",\n            \"date\": 1694460418282,\n            \"dateOfPosted\": 1692747068559,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.53660929999999,\n                    \"lon\": -73.6519732\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Legendre O, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Primes de nuit Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement As a Team Member at Tim Hortons, your top priority is guest satisfaction. Whether you are the very first person our guests encounter, or produce the best loved bakery items that our guests come to enjoy, you will have the opportunity to deliver and create exceptional guest experiences. Your energy and passion for guest service are what make you a top team member in this fast-paced environment while your ability to multi-task and communicate with your fellow team members will contribute to your success. Why work for us? Night Shift Premium $ Paid Training Flexible schedule Scholarship Program Opportunities Amazing growth opportunities! REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder une esprit d’équipe et avez un empressement au travail / Have a team spirit and being able to work in a fast paced environement Faire parti de l'équipe / Be part of the team Être une personne ponctuelle et prête à travailler / Able to be on time and ready to work Être capable de lever 25 livres / Must be able to lift 25 lbs Travailler d nuit / Work night shift Job applicants responding to this posting may be applying to a Tim Hortons® restaurant independently owned and operated by a franchisee and, if so, any hiring decisions will be made by the franchisee. En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Rue Legendre Ouest, Montréal, QC\"\n        },\n        {\n            \"id\": \"D139D0A1FD47C22E3BE43F2AF012BD68\",\n            \"cityName\": \"510 W Georgia St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d8f7ed73722cdd24\",\n            \"jobName\": \"Customer Service Associate - 28476\",\n            \"companyName\": \"Exela Technologies\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694458424735,\n            \"dateOfPosted\": 1693608067325,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2857341,\n                    \"lon\": -123.1231553\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Georgia St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate –Working in a Mailroom environment, this position is responsible for delivering superior customer service in a prompt, respectful and courteous manner.Essential Job Functions-Receive all incoming items, and log accordingly through internal systems.-Communication clearly and effectively both verbally and written.-Sort, deliver, and process mail and packages throughout the building.-Meeting job duty timelines in SLA-Handling confidential mail and packages.-Work quickly and accurately.-Shipping various couriers (Local, National and International)- Handling time-sensitive material and shipping as required at an Executive level.- Assisting with other various requests from the Executive team.- Escalates more complex issues to the appropriate level- Other job-related responsibilities as needed and required- Able to lift up to 55lbs unassisted.Required skills and qualifications:- High School Diploma-Previous customer service experience- Excellent verbal, written and analytical skills- Good time management skills to ensure assigned responsibilities are completed in an efficient manner- Strong communication skills; is able to effectively communicate to all levels of management and customers both written and verbally.- Proficiency with commonly used Microsoft software programs- Professional phone etiquette- Ability to multi-task and lift up to 55lbs unassisted.- Ability to maintain the highest level of confidentiality at all times- Strong organizational skills- Ability to work both independently and a team environment- Ability to interact with diverse people“The pay range for this position starts at $17; however, base pay offered may vary depending on job-related knowledge, skills, and experience. Bonus opportunities may be provided as part of the compensation package, in addition to a full range of medical, financial, and/or other benefits, dependent on the position offered.”Job Types: Full-time, PermanentPay: $17.00 per hourDay range:Monday to FridayShift:8 hour shiftExperience:Customer service: 1 year (preferred)Mailroom: 1 year (preferred)\",\n            \"location\": \"W Georgia St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"B8AE2D72E90FAB08852410F529DE35D4\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9d1aec11d35c9c89\",\n            \"jobName\": \"Call Center Representative\",\n            \"companyName\": \"Cosmetic Physician Partners\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694457180308,\n            \"dateOfPosted\": 1692747261022,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cosmetic Physician Partners is building a premier network of physician-led aesthetic clinics throughout the United States. We are seeking a Call Center Representative/Appointment Setter to make outbound calls to current and prospective clients assisting in rebooking and scheduling appointments for our clinics across the country.Schedule: Full-time, Hybrid Responsibilities Manage outbound calls to rebook current patients for new appointments Call leads who signed up online and get them to book Identify customers’ needs, clarify information, and provide solutions and/or alternatives Seize opportunities to upsell products when they arise Build sustainable relationships and engage customers by taking the extra mile Keep records of all conversations in CRM Frequently attend educational seminars to improve knowledge and performance level Meet personal/team qualitative and quantitative targets Requirements and skills Previous experience in a customer support role Strong phone and verbal communication skills along with active listening Familiarity with CRM systems and practices Customer focus and adaptability to different personality types Ability to multi-task, set priorities and manage time effectively High school degree Cosmetic Physician Partners, LLC is an equal opportunity employer. All applicants will be considered for employment without attention to race, color, religion, sex, sexual orientation, gender identity, national origin, veteran or disability status.tFb7SRKAEk\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"149011E779DBCFE405BD5007DDC0EFF0\",\n            \"cityName\": \"332 E Espl, North Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=629dfc575e02a227\",\n            \"jobName\": \"Customer Service Coordinator\",\n            \"companyName\": \"Vancouver Christmas Market Inc.\",\n            \"rowSalary\": \"From $3,800 a month\",\n            \"date\": 1694456489365,\n            \"dateOfPosted\": 1693605598533,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.30908119999999,\n                    \"lon\": -123.0748408\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"North Vancouver\",\n                \"formattedAddress\": \"Esplanade E, North Vancouver, BC V7L, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"North Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"month\",\n                \"salaryFrom\": 3800.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    3800.0\n                ],\n                \"range\": {\n                    \"gte\": 3800.0,\n                    \"gt\": null,\n                    \"lte\": 3800.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"If you have lived in Vancouver for a while, chances are high you've been to the Vancouver Christmas Market. Now in our 13th season, our authentic outdoor German Christmas Market features unique holiday shopping, seasonal entertainment, and delicious traditional food and drinks. Located in the downtown core of Vancouver, at Jack Poole Plaza, the Christmas Market will be open to the public daily from November 16 to December 24.Full-Time Employment Opportunity – Customer Service CoordinatorVancouver Christmas Market Inc. is seeking two driven, and enthusiastic individuals, one full-time and one part-time. The Customer Service Coordinators report to the Marketing Coordinator with the objective of creating a positive customer experience from the initial point of contact at the 2023 Vancouver Christmas Market.Start Date: October 2, 2023Location: Mix of home office and set number of days in office in Downtown Vancouver. Full-time or Part-time in office & on-site (November – December).Hours: Contract Full Time or Part Time from October 2, 2023 – January 12, 2024 (15 weeks). Variable work schedule including evenings and weekends from October - December 29.Reporting To: Marketing CoordinatorRoles and ResponsibilitiesCUSTOMER RESPONSE MANAGEMENTCollaborates closely with the Marketing team to effectively maintain VCM's positive reputation, aligning with brand standards and customer service guidelines.Effectively implement pre-existing communication templates as well as create uniquely personalized responses in a voice that is consistent with VCM core valuesProvide prompt responses to customer inquiries, addressing questions, concerns, and complaints in a timely manner.Monitors social media inboxes, email channels and CRM platform (HubSpot) to ensure all communications are up to date. There is no customer service over the phone required.Prepare regular reports on customer service metrics (response times, customer satisfaction scores, and feedback analysis) to identify areas of improvement and present findings to the management team.Requirements and Selection CriteriaVCM is looking for an inquisitive, creative, motivated self-starter that pays attention to detail and describes themselves as an event fanatic. A successful candidate has an approach that balances quick wit & creative spirit with attention to detail & a strategic approach.Education and Work Experience: A university or college degree or diploma in a related field of study (Communications, Marketing, or Public Relations are preferred but not necessary) with a minimum of 3 years of work experience managing customer service or marketing-related tasks for events or festivals.Communication: Excellent verbal and written communication skills in English and strong interpersonal communication, including the ability to provide solutions to customers friendly and efficiently.Management Experience: Strong teamwork and self-management skills including performance monitoring, goal setting, and mentorship.Marketing and Communication: Basic experience and skills in marketing, and brand management. Strong understanding of brand tone of voice and communication.Social and Digital Media: Demonstrated experience with social media platforms management.Planning and Time Management: Superior time management skills with excellent organizational and planning capabilities. Ability to take tasks from concept through to final production. Comfortable to multitask and meet tight deadlines.Adaptability and Judgment: Ability to quickly adapt to changing environments, problem-solving skills, and an innovative mindset including exercising good judgment and decision making.Other: Applicant must have current eligibility to work in Canada.CompensationContract $15,000 (Full-time) or $7,500 (Part-time)Bonus: $2000-$3000 based on Department’s goalsApplication ProcessPlease send RESUME and COVER LETTERAll applications will be kept in confidence. No telephone calls or faxed applications, please. We thank all who express an interest in this position; however, only those selected for an interview will be contacted.COVID-19 considerations:We require employees to be fully vaccinated against COVID-19 unless a medical or religious exemption is approved. Being fully vaccinated means that an individual is at least two weeks past their final dose of an authorized COVID-19 vaccine regimen.Job Types: Part-time, Full-time, Fixed term contractContract length: 4 monthsSalary: From $3,800.00 per monthSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payAbility to commute/relocate:North Vancouver, BC V7L 1A4: reliably commute or plan to relocate before starting work (required)Application question(s):How many years of Marketing experience do you have?Education:Secondary School (preferred)Experience:events: 1 year (required)Customer service: 1 year (required)Work Location: Hybrid remote in North Vancouver, BC V7L 1A4Expected start date: 2023-10-02\",\n            \"location\": \"E Espl, North Vancouver, BC\"\n        },\n        {\n            \"id\": \"EA126625545F5CDBC8A333E14369B8F4\",\n            \"cityName\": \"304 Montée De L'église, L'ile-bizard, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e2539439aca8c142\",\n            \"jobName\": \"Cashier And Customer Service\",\n            \"companyName\": \"Sushi Shin\",\n            \"rowSalary\": \"$15.25–$19.00 an hour\",\n            \"date\": 1694456319473,\n            \"dateOfPosted\": 1694456319295,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4966461,\n                    \"lon\": -73.8909777\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Mnt de l'Église, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a very creative sushi restaurant. Our team is very enthusiastic and motivated. The environment of the sushi restaurant is very comfortable and the customers are nice and generous. We hope you can join our team and grow together. Contact: 514-806-2598 or text // Nous sommes un restaurant de sushi très créatif. Notre équipe est très enthousiaste et motivée. L'environnement du restaurant de sushi est très confortable et les clients sont gentils et généreux. Nous espérons que vous pourrez rejoindre notre équipe et grandir ensemble. Contact : 514-806-2598 ou SMSJob Types: Full-time, Part-timePart-time hours: 40 per weekSalary: $15.25-$19.00 per hourBenefits:Store discountDay range:Monday to FridayWeekends as neededShift:4 hour shift8 hour shiftAbility to commute/relocate:L'Île-Bizard, QC: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Montée De L'église, L'ile-bizard, QC\"\n        },\n        {\n            \"id\": \"73ED46749991904DCC7FBE95B26E7226\",\n            \"cityName\": \"St. John's, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0bdfad15148152cf\",\n            \"jobName\": \"Customer Service Agent Outbound (Remote) - Newfoundland\",\n            \"companyName\": \"National Diabetes Trust\",\n            \"rowSalary\": \"$15.63 an hour\",\n            \"date\": 1694454849334,\n            \"dateOfPosted\": 1694240108708,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our Organization The National Diabetes Trust is Canada’s largest charitable clothing and small household good collection service. With more than 5,000 donations bins and an active home pick-up service in communities across Canada (excluding Quebec), we collect unwanted gently used clothing and household items, using them to raise much-needed funds for Diabetes Canada.  Each year, the program diverts more than 100 million pounds of clothing and household items from landfill sites across Canada. As an employee on the National Diabetes Trust team, you are part of our national coverage in 2,500 communities, with 28 operations and 100 trucks. Join a team that is making a difference raising money for life altering charitable programs, all while helping the environment. What We Offer:Work from the comfort of your own homeEmployee Assistance Program (EAP)Registered Pension Plan (100% Employer-paid) once eligibility criteria are metCorporate discounts through Perkopolis, Value Village and GoodLife FitnessHours of Work* This role will work up to 29 hours per week in 6-hour daily time blocks, including weekends. A consistent schedule will be developed in collaboration with operational needs.  About the Outbound Customer Service Agent Role Reporting to the Virtual Contact Centre Supervisor, this role is responsible for soliciting, scheduling and confirming donation pick ups of reusable clothing and small household goods from the public. While there is no sales component to this role – we are seeking outgoing individuals with a focus on providing a “best in class” customer experience. Highlights of the role include:To solicit, schedule and/or confirm donations of reusable clothing and miscellaneous itemsThis is accomplished by reading from a standardized script to verify donor informationTo meet or exceed KPI targets and/or productivity standards as outlined by the SupervisorTo understand and promote the mission of Diabetes Canada and the National Diabetes Trust to the general publicProvide potential donors with a high level of customer service by demonstrating a professional manner, discipline and strong organizational skillsInform the Supervisor of any system or process discrepanciesMaintain accurate and up to date recordsAttend all scheduled shifts, training, and meetings as determined by the SupervisorMaintain confidentiality of donor informationAdditional duties as required, ensuring the effective operation of the Virtual Contact Centre function About You The selected candidate for this role will meet the following minimum requirements: Minimum High School Diploma6+ months of experience in customer service and/or a call centre environmentMust have in working order at all times a PC home computer, direct connect (wired) high speed internet (no Wi-Fi/router), a USB noise cancelling headset, and either an All-in-One Printer (copier, scanner, printer) OR the ability to sign documents electronically.Must have full availability between the hours of Monday-Friday 3pm-9pm EST and Saturdays and Sundays 11am -5pm EST.Strong computer skills and experience with computer databases (mouse, keyboarding, opening/closing programs, locating files, installing/uninstalling programs, updating software, basic troubleshooting)Intermediate web and email skills (internet, downloading, logging on/off, clearing history, sending, and receiving email messages, (attaching/saving/opening files), message boards, instant messagingDisciplined and organized self-starter who can succeed in a fast-paced, high volume call environment, while being able to manage multiple tasksBasic competency in Microsoft Office and AdobeAdvanced Oral and Written communication -  Diversity, Equity and Inclusion Statement At National Diabetes Trust, we are guided by our values of Accountability, Teamwork, Integrity, and Respect. We believe in the importance of Diversity, Equity and Inclusion (DEI). We are committed to bringing people together in a respectful, inclusive and supportive environment, no matter their age, gender, identity, race, ethnicity, religion, income, sexual orientation, or where they live. In July of 2020, we signed the BlackNorth Initiative CEO pledge and will hold ourselves accountable in meeting those commitments.  How to Apply Must be legally eligible to work in Canada and, where applicable, must have a valid work permit or study permit that allows the candidate to fulfill the requirements of the role.NDT welcomes applications from all qualified candidates, including women, Indigenous peoples, persons with disabilities, and members of visible minorities. We value a diverse workforce that reflects the communities we serve.We are committed to accommodating people with disabilities as part of our hiring process. If you have special requirements, please advise us during the recruitment process.We thank all interested applicants; however, only those selected for an interview will be contacted. INDNDTL\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"C7DFB8B9E344F410FC43CBAD6F54A0F0\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2200bd8f66ae77b2\",\n            \"jobName\": \"Customer Service Representative Supervisor\",\n            \"companyName\": \"Link Insurance\",\n            \"rowSalary\": \"$31 an hour\",\n            \"date\": 1694454078978,\n            \"dateOfPosted\": 1693605467308,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 31.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    31.0\n                ],\n                \"range\": {\n                    \"gte\": 31.0,\n                    \"gt\": null,\n                    \"lte\": 31.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College/CEGEPExperience: 2 years to less than 3 yearsTasks Conduct performance reviews Co-ordinate, assign and review work Establish work schedules and procedures and co-ordinate activities with other work units or departments Identify training needs and train workers in job duties and company policies Resolve work-related problems and prepare and submit progress and other reportsWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"BE0E594CEFAB9F8DCD6999EDAEA9AD26\",\n            \"cityName\": \"1235 Trafalgar Road, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=711a9eb6f5035ee2\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Lifemark Health Group\",\n            \"rowSalary\": \"$18–$19 an hour\",\n            \"date\": 1694453963800,\n            \"dateOfPosted\": 1693605602886,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4869976,\n                    \"lon\": -79.7183412\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Trafalgar Rd, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title: Customer Service Representative Location: Lifemark - pt Health - Trafalgar Physiotherapy  1235 Trafalgar Rd.  Oakville, Ontario  Employment Status: Casual Part-Time or Full-Time  Schedule: Tuesday and Thursday (13:30 - 20:00) and Friday (08:00 - 17:00)  Rate Compensation: $18.00 - $19.00 per hour Do you want flexibility in your work schedule and work alongside a driven team of industry experts? If so, join us at pt Health - Trafalgar Physiotherapy, a Lifemark Health Group company, Canada’s premier, largest, and most comprehensive healthcare management organization. We believe when you move better, you feel better. This is at the heart of everything we do, and we are seeking a Customer Service Representative who shares this same philosophy. At Lifemark, we walk the talk of our company's Core Values: “ We have fun,” We strive for simplicity,” We trust each other to do the right thing,” We go the extra kilometre” and “We belong here.” Why Lifemark? Opportunity to work with a multi-disciplinary team of clinicians and the satisfaction of being on a driven team Supportive and collaborative administrative team Competitive compensation with a positive and comforting work environment Pathways for management and corporate leadership Nationally recognized brand with a strong digital presence Diverse, stable, caseload with the flexibility to integrate pre-existing clients Qualifications & Core Competencies: High School Diploma, G.E.D. or equivalent Excellent customer service skills and telephone etiquette A high degree of organizational and multi-tasking skills in a busy and fast-paced work environment, preferably with 3-5 years of administrative work experience in the healthcare setting, is an asset. Computer savvy and data entry skills in a physiotherapy clinic are a definite advantage. Flexible and adaptable to change New Graduates are welcome to apply. Key Functions and Responsibilities: Answer telephone calls, greet patients and visitors upon arrival, and provide excellent customer service for all questions or concerns Coordinate a detailed and accurate information intake on the patient's first visit to the clinic and throughout their treatment plan. Assist patients with completing paperwork at the clinic to avoid errors and inaccurate information. Coordinate scheduling of patient appointments and maintain the patient’s medical record. Collect payment at the time of service Track coverage for all funding streams to ensure approval Complete data entry and billing Coordinate courier packages (in or outgoing) and process incoming and outgoing emails, mail and faxes. Provide administrative support to the Care Coordinator Manager and Clinic Director. Lifemark welcomes and encourages applications from people with disabilities. Accommodations are available on request for candidates taking part in all aspects of the selection process. Lifemark promotes equal employment opportunities for all job applicants, including those self-identifying as a member of the following groups: Indigenous peoples, Newcomers to Canada, and Visible minorities. Apply today! Visitwww.lifemark.ca/careers\",\n            \"location\": \"Trafalgar Road, Oakville, ON\"\n        },\n        {\n            \"id\": \"14C905506D806108922D853E947E6BAA\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=41ccaaea4f620ba5\",\n            \"jobName\": \"Représentant(e) Au Service à La Clientèle à Temps Partiel/Part-Time Customer Care Associate\",\n            \"companyName\": \"Lxrandco\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694453884699,\n            \"dateOfPosted\": 1694211477746,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"An English description will follow LXR est un détaillant omnicanal, socialement responsable, de sacs à main de marque de luxe et autres accessoires personnels. Depuis 2010, nous fournissons aux consommateurs des produits de luxe de marque authentifiés en promouvant leur réutilisation et en offrant aux consommateurs un moyen écologiquement responsable d’acheter des produits de luxe. Nous recherchons actuellement un(e) Représentant(e) au service à la clientèle pour notre siège social de Montréal. Le candidat retenu pour ce poste aura une maîtrise des politiques de service client de l'entreprise et sera bien formé à la connaissance des produits, enfin pouvoir offrir une assistance rapide et précise aux clients.Le générique masculin inclut le féminin et est utilisé sans aucune discrimination et uniquement dans le but d'alléger le texte* RESPONSABILITÉSFournir un excellent service client aux clients de LXR par téléphone, e-mail, chat en direct et  médias sociauxSe concentrer sur l'obtention de résultats clés tels que la satisfaction du client, la première résolution,  l'efficacité et les mesures de qualitéMaximiser les ventes en ligne et la fidélisation des clients par le biais de la communication  par téléphone, courrier électronique et chatFournir un excellent service d'assistance à la clientèle en ligneGérer la vérification des commandes pour éviter les fraudes et veiller à ce qu'elles soient  exécutées dans les délaisRésoudre les problèmes liés aux commandes en assurant la liaison entre le client et  les groupes internes/externes (logistique/entrepôt/production/partenaires en gros)Initier et assurer le suivi des rétrofacturations de créditRépondre aux demandes de renseignements généraux et sur les produitsSe tenir au courant des informations sur les produits et assister aux réunions de formation sur les  produits avant la saisonProcéder à différents suivis de dossiers dans les différents services afin d'assurer la  livraison des produits dans les délais impartisMettre à jour les différents fichiers de suivi pour s'assurer de la livrabilité des marchandisesAutres tâches connexes QUALIFICATIONSAu moins un (1) ans d'expérience dans un poste lié au service à la clientèleBilingue pour pouvoir servir nos clients anglophones (français et anglais, maîtrise de l'anglais requise)Une expérience ou une connaissance approfondie des marques de luxe est un atout.Expérience avec le(s) système(s) de billetterie est un atout (Gorgias)Excellentes compétences en communicationExcellente habileté à travailler en équipe et à communiquer avec ses pairsUne attitude polie, tact et amicaleBonne compréhension des besoins des clientsFortes compétences de motivationBonnes capacités de planification et d'organisationBon sens des priorités, capacité à gérer efficacement ses différentes tâches AVANTAGES SOCIAUX Environnement de travail agréableCondition de travail hybrideFavorise le recrutement interneRabais sur la marchandiseAccessible par les transports en commun (métro de Castelneau) CONDITIONS D'EMPLOITemps partiel, 20 heures par semainePossibilité d'un augmentation d'heures lors des temps des fêtes ou au besoinDois être disponible la fin de semaine au besoinContrat jusqu'à fin 2023 - LXRandCo, Inc. (LXR) is a socially responsible, digital-first omnichannel retailer of authenticated pre-owned luxury handbags and personal accessories. Since 2010, we have been providing consumers with authenticated branded luxury products by promoting their reuse and providing an environmentally responsible way for consumers to purchase luxury products. We are looking for a highly energetic, responsible, and experienced Customer Care Representative for our Montreal Headquarters. The successful candidate for this role will have a strong command of the company’s customer service policies and be well-trained in product knowledge that can be critical for offering quick and accurate assistance to customers. RESPONSIBILITIES Provide excellent customer service to LXR customers over the phone, e-mail, live chat, and social mediaFocus on delivering key results like customer satisfaction, first-time resolution, efficiency, and quality metricsMaximize online sales and repeat customers through phone/email/chat communicationProvide excellent online customer service supportManage verification of orders for fraud and ensure timely fulfillmentResolve order-related issues by liaising between clients and internal/external groups  (logistics/warehouse/production/wholesale partners)Initiate and follow up with credit chargebackAnswer product-related and general inquiriesKeep current with product information and attend pre-season product training meetingsProceed with different file follow-ups across departments to insure on-time product deliveryUpdate different tracking files for the deliverability of goodsOther related tasks QUALIFICATIONS At least one (1) year experience in a customer service-related positionBilingual to be able to serve our anglophone customers  (French & English, English fluency required)Experience with, or thorough knowledge of, luxury brands is an assetExperience with ticketing system(s) is an asset (Gorgias)Excellent communication and people skillsPolite, tactful, and friendly attitudeGood understanding of the needs of customersStrong self-motivatorGood planning and organizational skillsAbility to multi-task BENEFITS Fun working environmentHybrid working conditionsFavors internal recruitmentDiscount on merchandiseAccessible via public transportation (de Castelneau metro) EMPLOYMENT CONDITIONSPart-time, 20 hours per weekPossibility of increasing hours during the Holiday season or as neededMust be available on weekends as neededContract until end of 2023\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"3906F81538B643F9EE6889BCEB04D051\",\n            \"cityName\": \"4333 Aut 13, Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ad32725b77532384\",\n            \"jobName\": \"06h-14h Service à La Clientèle Jour/ Day Shift CusTomer Service 6am To 2pm\",\n            \"companyName\": \"Tim Hortons | 1550\",\n            \"rowSalary\": \"$15.25–$18.00 an hour\",\n            \"date\": 1694453884043,\n            \"dateOfPosted\": 1692747161335,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5911874,\n                    \"lon\": -73.72153039999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"A. Jean-Noël-Lavoie, Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Joins-toi à notre équipe en pleine expansion!Chez Tim Hortons, notre priorité est la satisfaction de notre clientèle! Que ce soit au comptoir avant ou en cuisine pour préparer les pâtisseries que nos invités adorent, tu auras l’occasion d’offrir une expérience exceptionnelle à chacun de nos invités. Pourquoi travailler avec nous? Horaires flexibles et variables (Possibilité de travailler à temps plein ou à temps partiel) Rabais 50% sur les produits Tim Hortons Beaucoup de potentiel de développement et d’avancement Formation complète Programme de bourses d’études Équipe Tim Hortons Environnement de travail stimulant REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles Posséder un bel esprit d’équipe et avoir un sens d’empressement au travail / Have a team spirit and being able to work in a fast paced environement Notre grand rêve ne peut être réalisé qu’en nous entourant de personnes rares et spéciales qui veulent réussir avec nous. Nous sommes guidés par les valeurs suivantes : Méritocratie: Votre croissance est entièrement basée sur ce que vous faites et comment vous le faites Créativité: Trouver des façons de faire les choses différemment pour les rendre meilleures Travail d’équipe : Nous ne pouvons gagner ensemble qu’en dépendant les uns des autres Authenticité: Être une bonne personne, travaillante Diversité : Un large éventail de voix et de perspectives nous rend plus forts L’entreprise est dirigée par des leaders passionnés qui ont à cœur le développement et le bien-être de leurs employés. Notre priorité est de créer un environnement de travail où les membres de l’équipe sont encouragés à s’entraider, à se valoriser mutuellement à travers diverses opinions afin que nous puissions collectivement gagner en tant qu’équipe. Rejoignez une équipe gagnante, rejoignez-nous afin que nous puissions nous rejoindre dans notre voyage pour réaliser notre grand rêve! Ce sont les gens chez Tim qui font que Tim est… Tim! En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Aut, Laval, QC\"\n        },\n        {\n            \"id\": \"F3EE74DF4E18A894FC5F09083516A14D\",\n            \"cityName\": \"Cranbrook, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d7b7c25769547439\",\n            \"jobName\": \"Customer Service Representative - Financial Services\",\n            \"companyName\": \"Speedy Cash Canada\",\n            \"rowSalary\": \"$18.75 an hour\",\n            \"date\": 1694453452807,\n            \"dateOfPosted\": 1693605474419,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.5129678,\n                    \"lon\": -115.7694002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cranbrook\",\n                \"formattedAddress\": \"Cranbrook, BC V1C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"East Kootenay\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cranbrook\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsHealth benefits Dental plan Health care plan Paramedical services coverage Vision care benefits Financial benefits BonusWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Cranbrook, BC\"\n        },\n        {\n            \"id\": \"9ADAFB1EF24B6BB59E4BB14CEEFCA6EB\",\n            \"cityName\": \"790 Boul Crémazie E, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d0c984e420479c0a\",\n            \"jobName\": \"Caissier, Caissière Service à La Clientéle / Cashier Customer Service\",\n            \"companyName\": \"Tim Hortons | Damsar, Inc.\",\n            \"rowSalary\": \"$15.25–$16.25 an hour\",\n            \"date\": 1694452820143,\n            \"dateOfPosted\": 1692747498970,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5545221,\n                    \"lon\": -73.6209598\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Boul Crémazie E, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Primes de nuit Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement As a Team Member at Tim Hortons, your top priority is guest satisfaction. Whether you are the very first person our guests encounter, or produce the best loved bakery items that our guests come to enjoy, you will have the opportunity to deliver and create exceptional guest experiences. Your energy and passion for guest service are what make you a top team member in this fast-paced environment while your ability to multi-task and communicate with your fellow team members will contribute to your success. Why work for us? Night Shift Premium $ Paid Training Flexible schedule Scholarship Program Opportunities Amazing growth opportunities! REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder une esprit d’équipe et avez un empressement au travail / Have a team spirit and being able to work in a fast paced environement Faire parti de l'équipe / Be part of the team Être une personne ponctuelle et prête à travailler / Able to be on time and ready to work Être capable de lever 25 livres / Must be able to lift 25 lbs En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Crémazie, QC\"\n        },\n        {\n            \"id\": \"AC9F6D66FCB3790BBC7E62ED40614A02\",\n            \"cityName\": \"700 3rd Line, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7e2d2b54e89e1ddb\",\n            \"jobName\": \"Customer Service/Administrative Assistant\",\n            \"companyName\": \"Beauty First\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694451160382,\n            \"dateOfPosted\": 1694451160197,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4283542,\n                    \"lon\": -79.73036499999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Third Line, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OverviewBeauty First Spa is committed to giving our guests an inclusive, unique experience at every visit to one of our spas. The happiness of our guests is our priority, and it’s what keeps our guests coming back to us. Our employees build meaningful relationships with each one of our guests to ensure we are always prioritizing their needs.Major ResponsibilitiesDo admin duties like filing and updating POS system· Engage in incoming and outgoing calls to Pre-book future appointments.· Answering phones and working different shifts and weekend.· Learn about the products inside and out to be able to answer any questions from customers.· Resolve customer complaints/queries via phone, email, mail, or social media (Google, Facebook, Instagram, Whatsapp)· To handle multiple tasks and Utilize computer technology to manage day to day business.· Various administrative duties as required.· Flexibility in hours (Evenings/Weekends)Experience & Skills RequiredHigh-school diploma.Excellent verbal and written communication skills.Passion for finding solutions and providing the best possible customer experience.* Must have proficiency in Excel*· Ability to multitask and communicate with multiple customers at one time.Extremely strong conversational phone skills.Minimum 1-year customer service-related experience.Job Type: 1 Part-time applicant & 1 Full Time applicant requiredSalary: $17.00 per hourJob Types: Full-time, Part-timeSalary: From $17.00 per hourSchedule:8 hour shiftEvening shiftMonday to FridayMorning shiftWeekends as neededAbility to commute/relocate:Oakville, ON L6L 4B1: reliably commute or plan to relocate before starting work (preferred)Education:Secondary School (preferred)Experience:Front desk: 1 year (preferred)Administrative experience: 1 year (preferred)Work Location: In person\",\n            \"location\": \"rd Line, Oakville, ON\"\n        },\n        {\n            \"id\": \"BFB5BAC99CA156632A8E5134D53D8338\",\n            \"cityName\": \"AGM Advantage in North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=91d6f4173261a763\",\n            \"jobName\": \"Entry Level Sales, Marketing And Customer Service\",\n            \"companyName\": \"Agm Advantage\",\n            \"rowSalary\": \"$650–$700 a week\",\n            \"date\": 1694450546240,\n            \"dateOfPosted\": 1694348466573,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 650.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    650.0\n                ],\n                \"range\": {\n                    \"gte\": 650.0,\n                    \"gt\": null,\n                    \"lte\": 650.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Entry Level Sales, Marketing and Customer Service in North YorkThis is NOT a remote positionLooking for an entry-level position that combines sales, marketing and customer service?Look no further. Submit your resume here for immediate opportunities!Benefit from our comprehensive training and full mentorship.AGM Advantage is a winning team of highly motivated business professionals! With our expansive background in marketing and business development, we create the most impressive campaigns for our world-class business and nonprofit clients! Our staff and team members can most definitely build on our expanding reach for a brighter personal and professional future.We specialize in direct marketing strategies. We offer entry-level positions only and solely promote from within.This is a triple-edged entry-level position that is available now.Apply Today!Entry Level Sales, Marketing and Customer Service in North YorkThis is not a remote positionJob requirements:Over 18 years oldSpeak good EnglishHolder of HS Diploma or higherCitizen, resident or authorized to work including international students studying in CanadaAble to commute to work to any of our locationsRecommended SkillsBusiness DevelopmentCoaching And MentoringDirect MarketingEnglishMarketingCampaignsThink you're the perfect candidate? Apply to this job.Apply NowJob Type: Full-timeSalary: $650.00-$700.00 per weekFlexible Language Requirement:French not requiredSchedule:Day shiftSupplemental pay types:Bonus payAbility to commute/relocate:North York, ON M2N 6N5: reliably commute or plan to relocate before starting work (required)Application question(s):Are you at least 18 years old?Language:English (required)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"7016B7DA34FCE8064AB029F3E6D66622\",\n            \"cityName\": \"1751 Savage Road, Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c67e265d969355d2\",\n            \"jobName\": \"Telephone Sales Representative\",\n            \"companyName\": \"Marina's Swim School\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694450197719,\n            \"dateOfPosted\": 1692746333884,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2013007,\n                    \"lon\": -123.0579864\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Savage Rd, Richmond, BC V6V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Savage Rd, Richmond, BC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Sales Representative duties and responsibilitiesAssisting customers in their questions about Marina Swim School programsMaking service suggestions according to the wants and needs of customersLocating prospective customers, generating them into leads, and eventually converting them into customersMeeting or exceeding weekly, monthly, and quarterly sales quotasUsing strong research skills and deep product or industry knowledge to answer any questions about the productPreparing and submitting weekly sales or inventory reports to managementKeeping contact lists and following up with current customers to continue building relationshipsSales Representative skills and qualificationsDemonstrated product knowledge and sales abilitiesCustomer service skills to listen to customers and professionally answer questions or address concernsStrong public speaking skills to present product or services to customersCommunication skills to confidently make cold calls or negotiate sales termsAbility to meet deadlines and sales quotasFamiliarity with an office environment, equipment, and softwareJob Type: Part-timePart-time hours: 15-25 per weekSalary: From $16.75 per hourBenefits:Dental careExtended health careOn-site parkingVision careSchedule:Day shiftEvening shiftMonday to FridaySupplemental pay types:Bonus payCommission payCOVID-19 considerations:Now we are working by COVID Safety Plan.Ability to commute/relocate:Richmond, BC V6V 1R1: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:Sales: 2 years (required)Customer service: 2 years (required)Language:English (perfect) (required)Licence/Certification:Driver License (required)Work Location: In person\",\n            \"location\": \"Savage Rd, Richmond, BC\"\n        },\n        {\n            \"id\": \"98513F97CDF9818BD2CF8BA4BD5DA376\",\n            \"cityName\": \"51 Roysun Rd, Woodbridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4cd4e27d62ce4030\",\n            \"jobName\": \"Part-Time Seasonal Administration/Photographer With Customer Service Skill\",\n            \"companyName\": \"Cento Photography\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694450021391,\n            \"dateOfPosted\": 1692744516826,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7689909,\n                    \"lon\": -79.6091938\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Roysun Rd, Vaughan, ON L4L, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About Us:Cento Photography specializes in capturing memorable moments for schools and students through professional photography services. We are currently seeking a talented and dedicated individual to join our team as a Part-Time Seasonal Administration/Photographer. If you are passionate about photography, possess excellent customer service skills, and are available to work during our peak seasons, we want to hear from you.Job Description:As a Part-Time Seasonal Administration/Photographer, you will play a vital role in ensuring the smooth operation of our school photography sessions while delivering exceptional customer service. This position is perfect for someone who enjoys working in a dynamic environment and has a keen eye for both administrative tasks and photography.Responsibilities:Provide outstanding customer service to schools, teachers, parents, and students.Assist with administrative tasks such as data entry, scheduling, and document preparation.Capture high-quality product and lifestyle photographs that align with our brand identity.Edit and enhance photos using Adobe Photoshop to create visually compelling imagery.Design engaging graphics, layouts, and marketing materials using Canva and Adobe InDesign.Collaborate with the marketing team to develop visual content for various platforms, including social media, website, and marketing campaigns.Maintain an organized library of digital assets, including photos, graphics, and templates.Provide support during photoshoots, including set-up, lighting, and equipment management.Assist in maintaining and updating company databases and spreadsheets using Excel.Contribute to creative brainstorming sessions to develop new ideas and concepts for visual content.Available to work late as needed during peak photography seasons.Requirements:Strong customer service skills and the ability to interact professionally with diverse groups.Proven experience in administrative roles with strong organizational skills.Proficient in photography techniques, composition, and lighting.Advanced skills in Adobe Photoshop for photo editing and manipulation.Experience with graphic design using Canva and Adobe InDesign.Strong knowledge of Excel for data management and reporting.Excellent communication skills and the ability to work effectively in a team environment.Creative mindset with an eye for detail and aesthetics.Strong time management skills to handle multiple tasks and meet deadlines.Ability to work well in a team and independently.Flexibility to work late hours and adapt to changing schedules.If you are an enthusiastic individual with a passion for photography and exceptional customer service skills, we encourage you to apply for our Part-Time Seasonal Administration/Photographer position. Join us in creating lasting memories for schools and students.Job Types: Part-time, SeasonalSalary: $18.00-$20.00 per hourSchedule:Monday to FridayOvertimeAbility to commute/relocate:Woodbridge, ON L4L 8P9: reliably commute or plan to relocate before starting work (required)Experience:Adobe Photoshop: 2 years (required)Work Location: In personApplication deadline: 2023-09-05\",\n            \"location\": \"Roysun Road, Vaughan, ON\"\n        },\n        {\n            \"id\": \"24FEC233C0E5299C7BAE9B2CD65E33DA\",\n            \"cityName\": \"620 Davenport Rd, Waterloo, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=688a3387465517dd\",\n            \"jobName\": \"Customer Service/Sales Representative\",\n            \"companyName\": \"Rmes.Inc\",\n            \"rowSalary\": \"$620–$1,260 a week\",\n            \"date\": 1694450019611,\n            \"dateOfPosted\": 1693605635141,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4984806,\n                    \"lon\": -80.5243505\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Waterloo\",\n                \"formattedAddress\": \"Davenport Rd, Waterloo, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Waterloo\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 620.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    620.0\n                ],\n                \"range\": {\n                    \"gte\": 620.0,\n                    \"gt\": null,\n                    \"lte\": 620.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"This is an Entry-Level Sales Position. Do not be hesitant to apply if you are interested in gaining a lot of experience in Sales and Customer Service!About Us:Rmes Inc. has been one of the fastest-growing companies in the Kitchener-Waterloo region filled with lots of room for growth. We take pride in our integrity, professionalism, follow-through, and intense desire to educate, equip, and empower future generations. These qualities are what really set us apart from our competitors. We are actively seeking Sales Representatives since we plan to establish and launch additional branches in order to double, triple, and, quadruple in size over the next few years.We are looking for experienced and motivated Sales Representatives to join our team. The successful candidate will be responsible for developing and maintaining relationships with customers, understanding customer needs, and providing solutions to meet those needs. The Sales Representative will also be responsible for generating leads, managing customer accounts, and closing sales. The ideal candidate will have excellent communication skills, high energy, drive, and a passion for helping customers.Responsibilities:Develop and maintain relationships with customers.Develop sales strategies and tactics to increase sales.Understand customer needs and provide solutions to meet those needs.Handle customer inquiries and complaints in a professional manner.Provide accurate information to customers about products and services.Maintain accurate records of sales activities.Keep a positive outlook and behave professionallySkills and Qualifications:AdaptabilityStrategic and Critical ThinkingTime ManagementOrganizationCommunicationLeadershipActive ListeningProblem SolvingTeam WorkResilienceHigh Work EthicsMaintain Personal HygieneHighly Motivated and DisciplinedOur Motto: Success doesn't come to you; YOU GO TO IT!Our Website: Rmes-org.caOur Instagram: Rmes_Inc.Job Type: Full-timeSalary: $620.00-$1,260.00 per weekBenefits:Company eventsFlexible scheduleOn-site parkingFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payAbility to commute/relocate:Waterloo, ON N2V 2C2: reliably commute or plan to relocate before starting work (preferred)Application question(s):Do you currently reside in Canada?Are you Looking for Full-Time?Are you at least 18 years of age?Experience:Customer service: 1 year (preferred)Licence/Certification:Driving Licence (preferred)Work Location: In person\",\n            \"location\": \"Davenport Road, Waterloo, ON\"\n        },\n        {\n            \"id\": \"4F7CBC78D1F907DFA0A44981942576CE\",\n            \"cityName\": \"Surplus Herbys in Kamloops, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=11cdc1ef107434d8\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Surplus Herbys\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694449943836,\n            \"dateOfPosted\": 1692745777824,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.674522,\n                    \"lon\": -120.3272675\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kamloops\",\n                \"formattedAddress\": \"Kamloops, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Thompson-Nicola\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kamloops\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Successful candidates will be responsible for stocking shelves, merchandising, and providing excellent customer service. We have openings available in our fishing department. Knowledge of fishing would be a great asset. In return we offer health and dental benefits, profit sharing, employee discount and opportunities for advancement. Applicants must be reliable and be able to work most weekends and have a positive attitude. Come join the fun Herby team!Job Types: Full-time, Part-timePart-time hours: 20-30 per weekSalary: From $16.75 per hourBenefits:Dental careOn-site parkingStore discountVision careDay range:Every WeekendHolidaysMonday to FridayWeekends as neededShift:8 hour shiftDay shiftWork setting:Department storeCOVID-19 considerations:We offer curbside pickup and we do regular sanitizing of the store.Experience:sales: 1 year (preferred)customer service: 1 year (preferred)Work Location: In personExpected start date: 2023-11-09\",\n            \"location\": \"Kamloops, BC\"\n        },\n        {\n            \"id\": \"61027D27AAE535DF5F1AD62203468285\",\n            \"cityName\": \"Niagara-on-the-Lake, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0d97b5fd43b10452\",\n            \"jobName\": \"Inside Phone Sales\",\n            \"companyName\": \"Empowerment Technologies Inc.\",\n            \"rowSalary\": \"$23–$25 an hour\",\n            \"date\": 1694449799077,\n            \"dateOfPosted\": 1694449798844,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2549988,\n                    \"lon\": -79.0772616\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara-on-the-Lake\",\n                \"formattedAddress\": \"Niagara-on-the-Lake, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Niagara-on-the-Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"**This role is in office within our Niagara-on-the-Lake site.**Who We Are:For 20 years, we’ve been leaders in the baby safety (Levana) and DIY security space (Defender), creating ground-breaking consumer electronics that bring peace of mind to millions of people all over the world. Selling directly through our brand websites, Amazon, and our retail partners such as Walmart, Costco, and Home Depot, we are growing fast and are looking for new team members to join us on this journey. For those looking to join a passionate and collaborative team that challenge conventional methods, take risks, and settle for nothing but excellence, you’ve found the right place!Who Are You?You are a fast paced, results driven, and experienced Inside Salesperson with a successful sales track record, you have a high degree of self-motivation and resilience within a sales environment. Using your strong interpersonal skills and entrepreneurial mind set, you strategically use various contact methods to maximize your communication efforts and close sales. This role operates out of our Head Office in Niagara-on-the-Lake.Perks of This Role:Full time, 40 hours per weekScheduled shifts are days, Monday – Friday with weekend availability requiredWage is $23.00-$25.00 per hourImmediately receive 2 weeks vacation (no waiting period)Comprehensive Health Benefits program after 60 daysWork in an office environment (we are NOT a call centre)50% product discount for friends and familyWork directly for the brand owners and not a 3rd partyBe involved in new product testingQualifications:1 year of sales experience with a high focus on sales targets and customer engagementStrong attention to detail and ability to multitaskExcellent organizational, time management and communication skillsFlexible/creative approach to problem solving with the ability to simplify/detangle issues to their core factorsEmotional Intelligence: self-awareness - have a strong desire to develop and improve yourself and know when to seek out expertise; self-regulation - knowing when to push and when to stop; motivation – remain motivated while creating a strong desire to achieve in others; empathy – understand and care about people’s current reality; social skills – understand people, develop trust and help themHigh School Diploma (OSSD)Our Core ValuesExcellence - We never settle for “good enough.Results - The path to success is paved with our dedication.Love - Challenges are no match for our hearts and minds.Learning - Experimentation and curiosity are part of our DNA.Simplicity - We strip away the non-essentials to get to what really matters.Job Types: Permanent, Full-timeSalary: $23.00-$25.00 per hourBenefits:Casual dressDental careExtended health careOn-site parkingPaid time offStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededCOVID-19 considerations:COVID-19 vaccination is required. We have put measures in place, such as daily office sanitization, socially distant desk spaces, and providing masks.Ability to commute/relocate:St. Catharines, ON: reliably commute or plan to relocate before starting work (required)Experience:phone sales: 1 year (required)B2B sales: 1 year (required)Work Location: In person\",\n            \"location\": \"Niagara-on-the-Lake, ON\"\n        },\n        {\n            \"id\": \"8F67D040EDA330DC5484E84AB53B4D51\",\n            \"cityName\": \"127 Rte Du Canton, Brownsburg-Chatham, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b616d58b25277bc8\",\n            \"jobName\": \"22h-06am Service à La Clientèle Nuit/ Night Shift CusTomer Service 10pm To 6am\",\n            \"companyName\": \"Tim Hortons | 1550\",\n            \"rowSalary\": \"$15–$20 an hour\",\n            \"date\": 1694449726211,\n            \"dateOfPosted\": 1692747500557,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6256958,\n                    \"lon\": -74.4637136\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mont-Tremblant\",\n                \"formattedAddress\": \"Rte du Canton, Argenteuil, QC J0V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laurentides\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mont-Tremblant\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Nous sommes présentement à la recherche de candidats pour un poste de service à la clientèle pendant les heures de 22h-6h En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement Exemples d’expérience antérieure : Pas d’expérience, pas de problème, juste avoir une bonne attitude ! Barista chez Starbucks Caissier ou Caissière chez McDonald’s A travaillé dans n’importe quel Tim Hortons Cuisiner chez Wendys, ou a&w A travaillé dans n’importe quel fast-food ou restaurant dans le passé en tant qu’aide de cuisine Nettoyage ou entretient dans un entrepôt comme Amazon, Costco, Super C Préparation des aliments chez Subway ou Freshii Expérience antérieure en tant que boulanger dans une boulangerie ou une pâtisserie Service à la clientèle chez Couche Tard ou dans un dépanneur, ou station service Premier emploi, à temps partiel ou à temps plein REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder un bel esprit d’équipe et avoir un sens d’empressement au travail / Have a team spirit and being able to work in a fast paced environement Disponibilités plusieurs jours de la semaine de 22h-6h /Available several evenings a week from 10pm to 6am Notre grand rêve ne peut être réalisé qu’en nous entourant de personnes rares et spéciales qui veulent réussir avec nous. Nous sommes guidés par les valeurs suivantes : Méritocratie: Votre croissance est entièrement basée sur ce que vous faites et comment vous le faites Créativité: Trouver des façons de faire les choses différemment pour les rendre meilleures Travail d’équipe : Nous ne pouvons gagner ensemble qu’en dépendant les uns des autres Authenticité: Être une bonne personne, travaillante Diversité : Un large éventail de voix et de perspectives nous rend plus forts L’entreprise est dirigée par des leaders passionnés qui ont à cœur le développement et le bien-être de leurs employés. Notre priorité est de créer un environnement de travail où les membres de l’équipe sont encouragés à s’entraider, à se valoriser mutuellement à travers diverses opinions afin que nous puissions collectivement gagner en tant qu’équipe. Rejoignez une équipe gagnante, rejoignez-nous afin que nous puissions nous rejoindre dans notre voyage pour réaliser notre grand rêve! Ce sont les gens chez Tim qui font que Tim est… Tim! En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Rte Du Canton, Brownsburg-Chatham, QC\"\n        },\n        {\n            \"id\": \"4078B96EFDB55B01DE5D177D40429909\",\n            \"cityName\": \"9712 153 Ave NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=da664a490574a4be\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Cloverdale Paint Inc\",\n            \"rowSalary\": \"$16–$17 an hour\",\n            \"date\": 1694449686428,\n            \"dateOfPosted\": 1694449686236,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5862898,\n                    \"lon\": -113.402279\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Henry Ave NW, Edmonton, AB T5A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cloverdale Paint is the largest family owned and operated paint company in North America. With over 70 Company stores and 150 Authorized Dealers across Canada, Cloverdale Paint has had a special relationship with its customers ever since the company was founded in 1933.Cloverdale Paint is seeking an ambitious individual for a full-time position with open availability at our store in Edmonton, AB.We are looking for someone to work approximately 4-5 shifts per week. Wage is negotiable depending on previous experience.We are accepting resumes in store at 9712-153rd Avenue, Edmonton, ABCloverdale offers a very competitive compensation package and strives to be the Place to Be not only for customers but employees as well.WHAT WE OFFERCompany paid benefits – Medical, Dental and VisionAnnual cost of living salary increasesProfit-sharing ProgramFamily Assistance ProgramStaff DiscountsComprehensive trainingA supportive and growth-oriented management teamA great work environment with collaborative and caring colleagueRESPONSIBILITIESAnswering basic customer inquiries in person and by phoneDetermining and recommending products to customers ensuring the customer is supplied with all items required for their projectTinting & shaking paint accuratelyKeying in sales and operating basic functions of the POS systemREQUIREMENTSAt least 1-year of Retail Sales and/or Paint Industry experienceAbility to lift up to 50lb regularlyAbility to stand for long periods of timeAbility to work in a fast-paced environmentExcellent customer service skillsAttention to detailGood communication skillsStrong problem solving skillsTeam playerStrong work ethic, with a can-do attitudeOur employees enjoy excellent work environments, respectful workplaces with credible leadership and receive fair remuneration and annual profit sharing. Be part of a Canadian family owned business and be valued, appreciated and respected!Job Types: Full-time, PermanentSalary: $16.00-$17.00 per hourBenefits:Casual dressDental careEmployee assistance programExtended health careFlexible scheduleOn-site parkingPaid time offProfit sharingStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftWeekends as neededAbility to commute/relocate:Edmonton, AB: reliably commute or plan to relocate before starting work (required)Application question(s):Are you capable of standing for long periods of time?Are you capable of lifting up to 50 lb regularly?Are you available to work 4-5 shifts per week?Experience:Customer Service: 1 year (required)Paint/Coatings: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Ave NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"8D8EC8B2EDA54EF8D0A304B31AB13628\",\n            \"cityName\": \"10406 184 Street NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2138c5fc777373a9\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Kms Tools & Equipment Edmonton West\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694449603089,\n            \"dateOfPosted\": 1694449602891,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.6065656,\n                    \"lon\": -113.3801256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"24a St NW, Edmonton, AB T5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"KMS Tools Edmonton West is looking for a Cashier to add to our team. Applicants must be dependable, friendly, detail oriented and focused on customer service. Ability to handle high volume of orders and customers. We are closed Sundays and Holidays. Working Saturdays is required. Competitive benefits offered.Job Types: Permanent, Full-timeSalary: From $15.00 per hourBenefits:Dental careOn-site parkingPaid time offStore discountDay range:Every WeekendMonday to FridayShift:8 hour shiftDay shiftApplication question(s):Are you currently working? If so - when would you be able to start?Do you have any schedule restrictions?What is your expected starting pay based on your experience?Experience:customer service: 1 year (preferred)Cashiering: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Street NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"5DB578B2CDF894231FDC6550ABC5B65C\",\n            \"cityName\": \"9255 Boul De L'acadie, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=62b0708c3dc8769f\",\n            \"jobName\": \"Caissier, Caissière Service à La Clientéle / Cashier Customer Service\",\n            \"companyName\": \"Tim Hortons | Damsar, Inc.\",\n            \"rowSalary\": \"$15.25–$16.25 an hour\",\n            \"date\": 1694449510385,\n            \"dateOfPosted\": 1692747503733,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5347495,\n                    \"lon\": -73.6620374\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Bd de l'Acadie, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Primes de nuit Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement As a Team Member at Tim Hortons, your top priority is guest satisfaction. Whether you are the very first person our guests encounter, or produce the best loved bakery items that our guests come to enjoy, you will have the opportunity to deliver and create exceptional guest experiences. Your energy and passion for guest service are what make you a top team member in this fast-paced environment while your ability to multi-task and communicate with your fellow team members will contribute to your success. Why work for us? Night Shift Premium $ Paid Training Flexible schedule Scholarship Program Opportunities Amazing growth opportunities! REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder une esprit d’équipe et avez un empressement au travail / Have a team spirit and being able to work in a fast paced environement Faire parti de l'équipe / Be part of the team Être une personne ponctuelle et prête à travailler / Able to be on time and ready to work Être capable de lever 25 livres / Must be able to lift 25 lbs En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Boul De L'acadie, Montréal, QC\"\n        },\n        {\n            \"id\": \"164385120546B81819F90488CE70E744\",\n            \"cityName\": \"6259 Andrews Loop SW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=be715a90d09bbe88\",\n            \"jobName\": \"Licensed Customer Service Associate\",\n            \"companyName\": \"Billyard Insurance Group\",\n            \"rowSalary\": \"$36,000–$42,000 a year\",\n            \"date\": 1694449333527,\n            \"dateOfPosted\": 1692745469978,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.4285626,\n                    \"lon\": -113.5884465\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Andrews Loop SW, Edmonton, AB T6W 1A4, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 36000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    36000.0\n                ],\n                \"range\": {\n                    \"gte\": 36000.0,\n                    \"gt\": null,\n                    \"lte\": 36000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Billyard Insurance Group (BIG) – Edmonton South is looking for a Licensed Customer Service Associate to join our brokerage. Billyard Insurance Group is a rapidly growing national insurance brokerage with over 70 locations across Canada. We’re also proud to have been recognized on Insurance Business Canada’s Top Brokerages list for the last two years and named one of Canada’s Top Growing Companies on the Globe and Mail’s Report on Business for the past 3 years.BIG Edmonton South is looking for a Customer Service Representative to join our growing team and provide excellent customer service to our clients. Our CSR position requires a relationship-oriented individual with strong organizational and analytical skills. You will need to be comfortable in a customer facing role with an emphasis on telephone and computer skills. If you have a strong track record in customer service, we encourage you to apply.Responsibilities:Support the management and sales team while providing a superior level of serviceAdminister, support, and complete policy changes within our company partner’s portals and websitesReview policies and recommend coverages based on individual consumer needsAdhere to the underwriting criteria set out by our broker partnersIf you enjoy occasionally selling policies we do not remove this function, but encourage you to do soCo-ordinate and follow up on client documentsQualifications:General Insurance Level 1 or greater license from the Alberta Insurance Council (AIC)2+ years of experience in a customer service or sales roleKnowledge of Personal and/or Commercial Lines on a proficient level is considered an assetExperience with insurance software (broker portals, customer management systems etc) is considered an assetFluency in a foreign language is an assetJob Type: Full-timeSalary: $36,000.00-$42,000.00 per yearBenefits:On-site parkingPaid time offSchedule:Monday to FridayLicence/Certification:Level 1 (or greater) General License from the AIC (required)Work Location: In person\",\n            \"location\": \"Andrews Loop SW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"A3C7BAF07D1323F13D7BA8B20C8E5821\",\n            \"cityName\": \"5984 Boul Cousineau, Saint-Hubert, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f9b00aa3021325cb\",\n            \"jobName\": \"Cook/Customer Service\",\n            \"companyName\": \"Chung Chun Rice Hotdog\",\n            \"rowSalary\": \"$15.25–$21.63 an hour\",\n            \"date\": 1694449295075,\n            \"dateOfPosted\": 1692737153955,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4819036,\n                    \"lon\": -73.39037859999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Longueuil\",\n                \"formattedAddress\": \"Bd Cousineau, Longueuil, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Longueuil\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OUVERTURE BIENTÔT CHUNG CHUN SAINT-HUBERT, QUEBEC5984 BOULEVARD COUSINEAU, SAINT-HUBERT, QCChungchun Rice Dog est une chaîne de cuisine de rue coréenne avec plus de 200 succursales dans le monde et les premiers à Montréal. Nous recherchons un membre enthousiaste de l'équipe qui se joindra à notre équipe et contribuera à faire croître la marque au Québec tout en profitant d’un environnement de travail agréable, d'horaires flexibles et d’une équipe incroyable. Nous avons pour objectif de leur offrir une expérience unique à nos clients en leur offrant un service de qualité et en leur faisant découvrir nos délicieux Kogos coréen.Recherche de caissier à temps-partiel.Description des tâchesExécuter tous les éléments selon les normes les plus élevées en suivant les recettes et les procédures du restaurantMaintenir les normes de propreté, de santé et sécurité du restaurantSuivre toutes les politiques et procédures opérationnellesMaintenir un niveau élevé de pratiques de sécurité alimentaireDoit travailler avec l'équipe et doit s'assurer du bon roulement du serviceDoit savoir repérer les problèmes et les résoudreDoit être autonome et proactifDiplômes et expérienceAimer le travail en équipe et avoir le sens des responsabilitésFaire du service client une prioritéAucune expérience nécessaire, expérience dans une cuisine est un atoutCompétencesCapacité à travailler en équipe tout en démontrant du leadershipCapacité à comprendre et à exécuter des instructions verbales et écritesCapacité à apprendre rapidementCapacité à parler la langue française, la langue anglaise est un plus, la languecoréenne est un plusCapacité à faire plusieurs tâches à la foisFaire du service client une prioritéExigences physiquesDebout pendant de longues périodesTravailler dans un environnement de cuisine chaudPousser, tirer, soulever ou porter occasionnellement jusqu'à 40 lbHoraires de travail/SalaireHoraire flexible, travail durant le matin et le soir, les jours de semaine et de fin de semaineTemps partielSalaire competitiveOPENING OF CHUNG CHUN, SAINT-HUBERT, QUEBECChungchun Rice Hotdog is a Korean street food chain with over 200 branches around the world. Since our opening in Canada in 2019, we now have branches in Toronto, Vancouver, Calgary and now opening our 2nd restaurant in Québec under Chungchun Kogo Coréen!We are looking for an enthusiastic team member who will join our team rank and help grow the brand in Québec while enjoying flexible hours!Duties and responsibilitiesContribute to making our customers’ day by greeting people, taking orders and preparing delicious KogosProcessing paymentsPackage take-out foodExecute all items to the highest standards following the restaurant’s recipes and proceduresMaintain cleanliness and health & safety standards of the restaurantFollow all operational policies and proceduresMaintain a high level of food safety practicesMust be available on certain holidaysQualifications and ExperienceEnjoy teamwork and having sense of responsibilityMake customer service a priorityNo experience needed, Experience in the kitchen is a plusSkills & FitAbility to work as part of a teamAbility to understand and carry out verbal and written instructionsAbility to learn quicklyAbility to speak French language, English language, Korean language is a plusPhysical RequirementsStanding for long periods of timeWorking in a hot kitchen environmentOccasional pushing, pulling, lifting or carrying up to 40lbSchedulePart-TimeFlexible hours, mixed shifts, days and evenings, weekends and weekdaysCompetitive salaryJob Type: Part-timeSalary: $15.25-$21.63 per hourSchedule:4 hour shiftDay shiftMonday to FridayMorning shiftWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Saint-Hubert, QC: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Boul Cousineau, Saint-Hubert, QC\"\n        },\n        {\n            \"id\": \"1354847C13A9DA009535615DB4F40BE9\",\n            \"cityName\": \"127 Rte Du Canton, Brownsburg-Chatham, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d630566cb5d5ce14\",\n            \"jobName\": \"14h-22h Service à La Clientèle Soir/ Evening Shift CusTomer Service 2pm To 10pm\",\n            \"companyName\": \"Tim Hortons | 1550\",\n            \"rowSalary\": \"$15–$20 an hour\",\n            \"date\": 1694449025811,\n            \"dateOfPosted\": 1692747110982,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6256958,\n                    \"lon\": -74.4637136\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mont-Tremblant\",\n                \"formattedAddress\": \"Rte du Canton, Argenteuil, QC J0V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laurentides\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mont-Tremblant\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Nous sommes présentement à la recherche de candidats pour un poste de service à la clientèle pendant les heures de 14h-22h En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement Exemples d’expérience antérieure : Pas d’expérience, pas de problème, juste avoir une bonne attitude ! Barista chez Starbucks Caissier ou Caissière chez McDonald’s A travaillé dans n’importe quel Tim Hortons Cuisiner chez Wendys, ou a&w A travaillé dans n’importe quel fast-food ou restaurant dans le passé en tant qu’aide de cuisine Nettoyage ou entretient dans un entrepôt comme Amazon, Costco, Super C Préparation des aliments chez Subway ou Freshii Expérience antérieure en tant que boulanger dans une boulangerie ou une pâtisserie Service à la clientèle chez Couche Tard ou dans un dépanneur, ou station service Premier emploi, à temps partiel ou à temps plein REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder un bel esprit d’équipe et avoir un sens d’empressement au travail / Have a team spirit and being able to work in a fast paced environement Disponibilités plusieurs jours de la semaine de 14h-22h /Available several evenings a week from 14-22 Notre grand rêve ne peut être réalisé qu’en nous entourant de personnes rares et spéciales qui veulent réussir avec nous. Nous sommes guidés par les valeurs suivantes : Méritocratie: Votre croissance est entièrement basée sur ce que vous faites et comment vous le faites Créativité: Trouver des façons de faire les choses différemment pour les rendre meilleures Travail d’équipe : Nous ne pouvons gagner ensemble qu’en dépendant les uns des autres Authenticité: Être une bonne personne, travaillante Diversité : Un large éventail de voix et de perspectives nous rend plus forts L’entreprise est dirigée par des leaders passionnés qui ont à cœur le développement et le bien-être de leurs employés. Notre priorité est de créer un environnement de travail où les membres de l’équipe sont encouragés à s’entraider, à se valoriser mutuellement à travers diverses opinions afin que nous puissions collectivement gagner en tant qu’équipe. Rejoignez une équipe gagnante, rejoignez-nous afin que nous puissions nous rejoindre dans notre voyage pour réaliser notre grand rêve! Ce sont les gens chez Tim qui font que Tim est… Tim! En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Rte Du Canton, Brownsburg-Chatham, QC\"\n        },\n        {\n            \"id\": \"7A9256B90528015CE568ADE3F74A4A18\",\n            \"cityName\": \"5800 Avenue Christophe-Colomb, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0f769f2133bf5b9a\",\n            \"jobName\": \"Caissier, Caissière Service à La Clientéle / Cashier Customer Service\",\n            \"companyName\": \"Tim Hortons | Damsar, Inc.\",\n            \"rowSalary\": \"$15.25–$16.25 an hour\",\n            \"date\": 1694448712446,\n            \"dateOfPosted\": 1692747502876,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5455115,\n                    \"lon\": -73.6189251\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Ave Christophe-Colomb, Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Primes de nuit Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement As a Team Member at Tim Hortons, your top priority is guest satisfaction. Whether you are the very first person our guests encounter, or produce the best loved bakery items that our guests come to enjoy, you will have the opportunity to deliver and create exceptional guest experiences. Your energy and passion for guest service are what make you a top team member in this fast-paced environment while your ability to multi-task and communicate with your fellow team members will contribute to your success. Why work for us? Night Shift Premium $ Paid Training Flexible schedule Scholarship Program Opportunities Amazing growth opportunities! REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder une esprit d’équipe et avez un empressement au travail / Have a team spirit and being able to work in a fast paced environement Faire parti de l'équipe / Be part of the team Être une personne ponctuelle et prête à travailler / Able to be on time and ready to work Être capable de lever 25 livres / Must be able to lift 25 lbs En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Avenue Christophe-Colomb, Montréal, QC\"\n        },\n        {\n            \"id\": \"93B077962C089E5B8D129665D12EC3DD\",\n            \"cityName\": \"69 Queen St E, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=02aafa7d74ed6618\",\n            \"jobName\": \"Entry Level Sales, Marketing And Customer Service\",\n            \"companyName\": \"Agm Advantage\",\n            \"rowSalary\": \"$650–$700 a week\",\n            \"date\": 1694447971101,\n            \"dateOfPosted\": 1693585376611,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6637879,\n                    \"lon\": -79.3278595\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Queen St E, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 650.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    650.0\n                ],\n                \"range\": {\n                    \"gte\": 650.0,\n                    \"gt\": null,\n                    \"lte\": 650.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Entry Level Sales, Marketing and Customer Service in TorontoThis is NOT a remote positionLooking for an entry-level position that combines sales, marketing and customer service?Look no further. Submit your resume here for immediate opportunities!Benefit from our comprehensive training and full mentorship.AGM Advantage is a winning team of highly motivated business professionals! With our expansive background in marketing and business development, we create the most impressive campaigns for our world-class business and nonprofit clients! Our staff and team members can most definitely build on our expanding reach for a brighter personal and professional future.We specialize in direct marketing strategies. We offer entry-level positions only and solely promote from within.This is a triple-edged entry-level position that is available now.Apply Today!Entry Level Sales, Marketing and Customer Service in TorontoThis is not a remote positionJob requirements:Over 18 years oldSpeak good EnglishHolder of HS Diploma or higherCitizen, resident or authorized to work including international students studying in CanadaAble to commute to work to any of our locationsRecommended SkillsBusiness DevelopmentCoaching And MentoringDirect MarketingEnglishMarketingCampaignsThink you're the perfect candidate? Apply to this job.Apply NowJob Type: Full-timeSalary: $650.00-$700.00 per weekFlexible Language Requirement:French not requiredSchedule:Day shiftSupplemental pay types:Bonus payAbility to commute/relocate:Toronto, ON M5C 1R8: reliably commute or plan to relocate before starting work (required)Application question(s):Are you at least 18 years old?Language:English (required)Work Location: In person\",\n            \"location\": \"Queen Street East, Toronto, ON\"\n        },\n        {\n            \"id\": \"8FCD2712DB5C289836BF537D05AA52F0\",\n            \"cityName\": \"1067 Ontario St, Stratford, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cdc6f11a039f21f2\",\n            \"jobName\": \"Customer Service And Sales\",\n            \"companyName\": \"Simplyfixit\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694447807026,\n            \"dateOfPosted\": 1692743846584,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.3711286,\n                    \"lon\": -80.96233149999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Stratford\",\n                \"formattedAddress\": \"Ontario St, Stratford, ON N5A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Perth County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Stratford\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"SimplyFixIT is a cell phone repair company. We specialize in the repair of all phone models, tablets and laptops. We are currently looking for an enthusiastic person who is able to learn and adapt to the situation at hand.We are looking for experienced person capable of sales and performing easy repairs such as screen replacement, battery replacement or normal diagnosis. Training will be provided just need to be able to adapt and learn.Work:Frequently communicating with customers - providing status updates of repairsQuickly diagnosing device issuesExplaining options for repair and pricingPerforming fast-paced repairsTicket updates for every repair.Opening & closing tillCleaning & organizing shopInventory count, making sure we have enough stock, placing ordersSkills & Experience Required:Repairing small devices such as cell phones, tablets, and computersAbility to communicate effectively and promote salesTroubleshooting computer software-related issuesExcellent customer service & communication skills.Minimum 1 year of sales experiencePosition details: Customer Service & Sale Rep - Permanent Full-Time or Part-TimeWould you like to be part of our team? Please send in your resume.Job Type: Full-timeSalary: $15.50-$16.50 per hourSchedule:8 Hour Shifts5 Days a weekExperience:Customer Service: 1 yearLanguage:English (Required)Work remotely:NoJob Types: Full-time, Part-timePart-time hours: 32 per weekSalary: $15.50-$16.50 per hourBenefits:Store discountSchedule:8 hour shiftEvery WeekendMonday to FridayWeekends as neededApplication question(s):Strong Communication Skills RequiredExperience:Customer service: 1 year (required)Work Location: In personExpected start date: 2023-09-04\",\n            \"location\": \"Ontario St, Stratford, ON\"\n        },\n        {\n            \"id\": \"1407218E52E6C6CCE53D035A0846F283\",\n            \"cityName\": \"Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bab489c95beff3ff\",\n            \"jobName\": \"Part Time Customer Service Associate\",\n            \"companyName\": \"Spence Diamonds\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694447685247,\n            \"dateOfPosted\": 1692744893717,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"How would you like to work with the happiest customers on earth? People in love are the happiest people on earth, and they’re also our everyday customers! Are you looking to add some sparkle to your career? If so, look no further! We are currently looking for our next dazzling gem to join our customer service team and the Spence family! Who we are… Founded over 40 years ago, Spence Diamonds is a proudly Canadian Company. We have grown and evolved over the years with a unique approach to becoming an industry leader in cut quality and the customer experience. We take shopping for an engagement ring to the next level - with open show cases, displaying top of the line designer prototypes, accompanied by an unparalleled diamond education. Since introducing Spence Artisan Created Diamonds, we are now blazing the way for reasonably priced, ethical and sustainable diamond choices! With unparalleled access to these diamonds, we truly are the best choice for our customers. Our people are the center stone of our business. Our mission is to deliver an exceptional customer experience in a fun and inclusive work environment while giving our people room to grow their careers and live the life they love. What we offer…Attractive compensation packagesAmazing employee, friends & family discounts on our productsA variety of Learning and Development resourcesSpecial gifts to celebrate employee work anniversaries, birthdays, and personal milestonesRegular celebrations & employee incentive programsTeam building events and activitiesOpportunity to grow within the companyContinuous on the job training, support and mentorshipThe role As a member of customer service team at Spence, you embody our culture and values by providing an exceptional customer experience. You have a passion for our products and are comfortable assisting with presenting valuable products and representing products with confidence.You are the backbone of our store. You promote accuracy within the store through exceptional process handling which includes data management, finances, task management. You professionally act as the first and last point of contact for our clients on the phone, through email and in person within the store. On any given day you’re handling all payments & transactions, answering incoming phone calls and emails, managing inventory counts, shipping & receiving, assisting in store maintenance and cleanliness, showroom upkeep, and supporting the Sales Consultants and Management. Most importantly you ensure our customers are top priority and are all given the full Spence experience.Greet every customer in a friendly manner and provide extraordinary customer service Offer sales support to our sales teams during busy periods and take customers through our showroom experience. Ability build rapport with clients and identify client needs through a sales approach.Inspect and process incoming jewelry repairs. Follow up with customers via phone or email regarding their repair orders. Complete quality checks and provide completed orders to customers at pickup, ensure that customers have a great experience.Answer all phone and email correspondences Cash handling and end of day processingAssist in coordinating the showroom appearance, merchandising and store tidiness.A few things we hope you have…You’re detailed oriented, have excellent time management skills and are willing to embrace a structured processYou have excellent time management skills and make great decisions about which work to prioritizeYou have strong problem solving, and conflict resolution abilitiesYou are energetic, outgoing and have strong customer relationship skillsYou have excellent verbal and written communication and are comfortable professionally communicating face to face, over the phone and in writing.You have at least a years’ experience working in a customer service environmentYou’re used to working with a computer and are willing to learn new technology and softwareYou have a minimum availability of 3 days a week, and of those 3 days at least 1 weekend dayBonus points if you have previous administrative or reception experienceCompensation $16.50/Hour\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"22C9B02B78F6ADCCF6B003AD287682B0\",\n            \"cityName\": \"3767 Strandherd Dr, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=32926df925643475\",\n            \"jobName\": \"Customer Service Advisor\",\n            \"companyName\": \"Mr. Lube - Barrhaven\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694447675946,\n            \"dateOfPosted\": 1692745144726,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.2700502,\n                    \"lon\": -75.747478\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Strandherd Dr, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Upper tech ad:Updated: August 19th 2023Location: 3767 Strandherd Dr, Nepean ONWe're not looking for someone who \\\"needs a job.\\\" We're looking for someone who can make a difference in our customers' experience, learn some skills and earn an income. Sales experience is preferred.Job Overview: Ready for a Change?Named one of Canada's Best Managed Companies & 10 Most Admired Corporate Cultures, Mr. Lube offers a fun work environment, competitive wages, and the best paid training and advancement program in the industry for our employees.Customer Service RepresentativeIn this role, you'll get to take full ownership over the complete customer experience. We will provide full training so you can confidently work directly on a customer's car and be in control of the entire customer service and sales cycle; from walking a customer through the services on a car to completing the tasks and sale.A Customer Service Representative at Mr. Lube spends:70% of their time providing Customer Service:Greeting customersDiscussing products and services with customersProviding recommendations based on vehicle assessmentsSuggesting new products and servicesWorking with a close knit team and communicating with Lower Technicians30% of their time completing Mechanical Duties:Oil and filter changesReplacement of vital car fluids (e.g. coolant, transmission, and transfer case fluid)Replacement of parts under the hood (e.g. air filters, headlights, taillights and wiper blade replacements)Refilling performance enhancers to ensure the car runs smoothly (e.g. engine stop leak, oil treatment, and valve cleaner)Performing courtesy checks on all vehicles (e.g. topping up fluid levels, cleaning windows and checking tire pressure)Performing tire changes and rotationsWhat else can you expect from a career at Mr. Lube?A fun environment with the best paid training in the industry Excellent employee incentives and recognition. With constant learning and growth opportunities. A company, management and team that cares. If you have a positive attitude, flexible availability, are driven to succeed, have a willingness to learn, and genuinely like interacting with people, put yourself in the driver's seat at Mr. Lube!Please contact:Denis GagneArea ManagerJob Types: Full-time, Part-time, PermanentPart-time hours: 22-44 per weekSalary: From $16.50 per hourExperience:service advisor: 1 year (preferred)Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Strandherd Dr, Nepean, ON\"\n        },\n        {\n            \"id\": \"EEF2ABC491BC655039503C7589E0AF19\",\n            \"cityName\": \"1000 Rue Legendre Ouest, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=166aa4452d6ac313\",\n            \"jobName\": \"Caissier, Caissière Service à La Clientéle / Cashier Customer Service\",\n            \"companyName\": \"Tim Hortons | Damsar, Inc.\",\n            \"rowSalary\": \"$15.25–$16.25 an hour\",\n            \"date\": 1694447675934,\n            \"dateOfPosted\": 1692747501284,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.53660929999999,\n                    \"lon\": -73.6519732\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Legendre O, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Primes de nuit Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement As a Team Member at Tim Hortons, your top priority is guest satisfaction. Whether you are the very first person our guests encounter, or produce the best loved bakery items that our guests come to enjoy, you will have the opportunity to deliver and create exceptional guest experiences. Your energy and passion for guest service are what make you a top team member in this fast-paced environment while your ability to multi-task and communicate with your fellow team members will contribute to your success. Why work for us? Night Shift Premium $ Paid Training Flexible schedule Scholarship Program Opportunities Amazing growth opportunities! REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder une esprit d’équipe et avez un empressement au travail / Have a team spirit and being able to work in a fast paced environement Faire parti de l'équipe / Be part of the team Être une personne ponctuelle et prête à travailler / Able to be on time and ready to work Être capable de lever 25 livres / Must be able to lift 25 lbs En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Rue Legendre Ouest, Montréal, QC\"\n        },\n        {\n            \"id\": \"0DBF7D86D5657D48198C5D93163AA0F5\",\n            \"cityName\": \"2800 Pasqua St N, Regina, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fbd6f673fd453388\",\n            \"jobName\": \"Customer Service/Inside Sales Representative\",\n            \"companyName\": \"Meridian Manufacturing Inc.\",\n            \"rowSalary\": \"From $40,000 a year\",\n            \"date\": 1694447449857,\n            \"dateOfPosted\": 1692744157584,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.4985405,\n                    \"lon\": -104.6410045\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Regina\",\n                \"formattedAddress\": \"Pasqua St N, Regina, SK, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": \"Sherwood No. 159\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Regina\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Meridian Mfg. Inc. is North America's innovative leader of all-welded smoothwall bulk storage and bulk seed tenders. Meridian's smoothwall hopper bins, tanks and silos are the premier choice for on farm storage of grain, feed and fertilizer and also in virtually all commercial bulk storage applications, including plastics, fertilizers, powders and liquids, chemicals and much more. Meridian's Bulk Seed Tender is the #1 choice by farmers and industry leaders as the safest and easiest method of handling and transporting bulk seed.Meridian is a member of The Westman Group of Companies, a dynamic entrepreneurial group who values safety, health, community, relationships, growth and fiscal responsibility.Meridian Manufacturing Inc., Regina, Saskatchewan has an opening for a Customer Service Representative.SummaryThis position is responsible for providing day to day support to dealers by processing orders from time of receipt to final delivery. This involves processing the necessary documentation and maintenance of dealer orders in the WERPS business system and other required information databases. They work together with the RSM’s, the Commercial Sales Team and the dealer network to achieve the annual sales budget through the promotion of Meridian products. They handle inbound sales queries, making sales, quoting and managing projects.ResponsibilitiesOrder entry into system for customer orders and booking programsTake all end user calls and direct them to a dealerTake all dealer calls and provide verbal quotes over the phone when necessary, or email quotesManage booking programs; this includes sending order confirmation letters, requesting post dated cheques, and managing the post dates cheques as they are receivedMonitor the backlog of all orders in Enterprise Management System to ensure that orders are being shipped and invoiced on timeHandle paperwork for customer pick-upsAssist and/ or provide support to team membersEducation and Knowledge Required:Strong Data Entry and Attention to DetailHigh level of proficiency with Word, Excel and OutlookExperience in agricultural, commercial and industrial sales an assetAbilities and CompetenciesAble to effectively communicate in English both verbally and in writingSolid negotiation and conflict resolution skillsExcellent teamwork and teambuilding skillsStrong problem identification and problem resolution skillsAdvanced communication and interpersonal skills requiredAccuracy, attention to detail, strong problem solving, analytical and reporting skillsAbility to handle multiple priorities and meet deadlines in a fast-paced environmentTime and priority management skills, ability to identify important/urgent information and prioritize daily tasksResourcefulness and ability to take the initiative to expedite and solve customer complaints, concerns and inquiriesCreativity and ability to continuously improve nature of work for projects and to streamline work process and flowJob Type: Full-timeSalary: From $40,000.00 per yearBenefits:Dental careDisability insuranceEmployee assistance programExtended health careLife insuranceOn-site parkingProfit sharingVision careWellness programSchedule:8 hour shiftDay shiftMonday to FridayAbility to commute/relocate:Regina, SK: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Pasqua St N, Regina, SK\"\n        },\n        {\n            \"id\": \"4E8D17F993770093C121085DA6B715D4\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cd831c09beaf8658\",\n            \"jobName\": \"Customer Service Fundraiser\",\n            \"companyName\": \"Inner Circle Marketing\",\n            \"rowSalary\": \"$17–$22 an hour\",\n            \"date\": 1694447344840,\n            \"dateOfPosted\": 1692738783357,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Inner Circle Marketing is looking for customer service fundraisers to support on-site and in-person community fundraising campaigns and create a significant social impact on behalf of charities and non-profit organizations.We offer the training and support necessary to ensure that as the newest member of our team, you achieve optimal results and enjoy a rewarding and fulfilling work experience. Our culture stands out as being one of inclusion, diversity, camaraderie, and equal opportunity. Our goal is to unlock your potential and allow you to do the best work of your life!Requirements:Authorization to work in CanadaSpoken English (Intermediate)Availability to work on-site (in-person)Availability to work 30 – 40hrs per weekCompletion of criminal record check (no major offences permitted)We are looking for:Experience in sales, fundraising, hospitality, or public relations is an asset but not required – we provide full, paid training!Effective communication skills and the ability to present information clearly.Quick learners with a great attitude, enthusiastic personality, and a desire to make a difference!Fun, Friendly, Personable, Outgoing People!What we offer:Full time employment position with guaranteed hourly wageHourly pay starting at $17 per hour, with hourly incentives up to $22 per hourNote we pay weeklyExtended health care benefits (after 3 months of full-time employment)Shifts available from Monday to FridayDaily training and continuous supportFor those who qualify and wish to advance we offer advancement within the companyCompetitive and fun team cultureOpportunities to travelExpectations:Participate in local awareness and fundraising campaigns in residential communities and/or high traffic points in the cityActivities include neighborhood canvassing, promoting our clients at mall kiosks, events, and a variety of other in-person (face-to-face) fundraising activitiesFundraise on behalf of some of Canada’s top non-profit organizations including the Canadian Red Cross, Plan Canada, BC Children’s Hospital, WWF, the Canadian National Institute for the Blind, and more!Be comfortable with daily one-on-one interaction with potential donorsBe open to receiving feedback and support from managementNext steps:When you apply, our team will review your application. If you qualify, our team will contact you via phone or email to arrange an initial in person interview. This interview will be a brief introduction to our company and the position. If the hiring managers feels you are a potential candidate for the position, we have a 2-step interview process. The 2nd interview will consist of a job shadow to give you a bigger picture on how represent our clients.Learn more about us through the link below:https://innercirclemarketing.ca/Equal Employment Opportunity StatementInner Circle Marketing is an equal opportunity employer and considers qualified applicants for employment without regard to race, color, creed, religion, national origin, gender, sexual orientation, gender identity and expression, age, disability, veteran status, or any other protected factor. We encourage talented individuals of all backgrounds to apply.We look forward to meeting you!Job Types: Full-time, Part-time, PermanentPart-time hours: 30-40 per weekSalary: $17.00-$22.00 per hourBenefits:Company eventsCompany pensionDental careExtended health careLife insuranceRRSP matchVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayNo weekendsSupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"CEC108A6382C869C8BC9E12F593B94B3\",\n            \"cityName\": \"264 Lincoln St, Lunenburg, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=14f93fa3125feadf\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Kinley Drug Co. Ltd.\",\n            \"rowSalary\": \"$14.75–$15.00 an hour\",\n            \"date\": 1694447139820,\n            \"dateOfPosted\": 1694447139632,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.377277,\n                    \"lon\": -64.3096741\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lunenburg\",\n                \"formattedAddress\": \"Lincoln St, Lunenburg, NS B0J 2C0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lunenburg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"cashierassisting customersstocking and cleaning product shelvesmaintaining inventoryJob Types: Full-time, PermanentSalary: $14.75-$15.00 per hourBenefits:Dental careDisability insuranceEmployee assistance programExtended health careLife insuranceStore discountVision careWork Location: In personApplication deadline: 2023-09-30\",\n            \"location\": \"Lincoln St, Lunenburg, NS\"\n        },\n        {\n            \"id\": \"4E71691042CC3BE4D75CB78DEE3ED04A\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d165ae26c1840c3f\",\n            \"jobName\": \"Customer Service RepresentAtive - Work At Home\",\n            \"companyName\": \"Inspire Direct Marketing\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694447132334,\n            \"dateOfPosted\": 1690621825979,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative - Work at Home$20.00-$24.00/hour + Benefits.Quit your day job, come help us save the world!If you are a mature sales or call centre representative, come join our team of professional fundraising agents to elevate your career and use your skills to help make our world a better place.We are a Canadian agency on a mission to inspire fundraising. We provide a warm and friendly voice to the largest and most respected charities in Canada. Our team is passionate, engaged and extremely effective. We call existing supporters to raise funds for important causes around the globe. So while there are no cold calls or high-pressure tactics, we are a performance team and results matter. We hope they motivate you as well.This is a full-time, outbound, work-from-home position.Job Description:Inspire fundraisers connect with, laugh with and uplift the lives of our client's donors - even if just for a few moments. Their work goes beyond raising funds for some of the world's most worthwhile causes; it's about creating a human connection with every donor. They enjoy being able to deliver world-class results autonomously, while representing great causes and being part of a passionate team.Each day and each call can be different. We find new child sponsors, welcome new donors, renew event participants, and invite donors to give monthly. We thank, connect, engage and inspire. We look for creative new ways to delight on every call. We are all about teamwork, customer connections and most importantly, having fun while we do it.Some of the Benefits:Permanent, full-time employment with consistent hours and growth opportunities Premium wages, $20.00 - $24.00 hourly w bonuses Engagement with world-class charitable organizations 100% paid training and health benefits (at 3 months) Trip incentives (to visit child sponsor communities), bonuses and rewards Training opportunities, lunch-and-learns, workshops Team culture and activities, ice breakers, community eventsTo be an Inspire Fundraiser:You should bring:A minimum of 2 years' customer service and call centre experience You love talking to people and are a great communicator You are looking for full-time hours, 40 hours a week Availability to work evenings (1:00PM - 10:00PM EST Mon -Thu, 10:00AM - 7:00PM EST Fri) Availability to work occasional Saturday shifts (10:00AM to 5:00PM) You are technically savvy and self-reliantYou should have:A professional work from home office space newer-version Windows PC or laptop computer (Apple or Mac are not supported) High-speed cabled internet connection (min 25 mbps down/5 mbps up) A USB headset and webcamIf you are looking to be part of something bigger than yourself and to join a mature call centre team with opportunities to grow and support your peers; we would love to hear from you.Inspire is committed to Employment Equity and Diversity. We do not discriminate against any employee or applicant for employment because of national origin, race, religion, ethnicity, age, disability, sex, sexual orientation, gender identity, veteran status or any other federal, provincial, or local protected class. We welcome and encourage applications from persons with disabilities. Accommodations are available upon request for candidates who participate in all aspects of the selection process.Please note: We thank everyone for their interest however only the best qualified candidates may be contacted.\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"CA53B7C833E16B51226DC83B3FE45959\",\n            \"cityName\": \"266 Dundas St E, Trenton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ce71d80b57955f41\",\n            \"jobName\": \"Budtender - Customer Service\",\n            \"companyName\": \"Your Local Cannabis\",\n            \"rowSalary\": \"$16.50–$18.00 an hour\",\n            \"date\": 1694447062043,\n            \"dateOfPosted\": 1692744638399,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.1044969,\n                    \"lon\": -77.5612999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Quinte West\",\n                \"formattedAddress\": \"Dundas St E, Quinte West, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hastings County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Quinte West\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usYour Local CannabisYour Local Cannabis is your neighborhood hub for the best and most extensive selection of locally grown, high-quality cannabis products in Ontario.Note: Weekend (Fri-Sun) availability required.Responsibilities:Greet customers throughout the day in a friendly and welcoming mannerAdhere to all company policies, procedures, and regulation compliance.Ensure reconciliation of inventory and following up on any discrepanciesProcess all customer payments on our POS system.Staying up to date with product knowledge and company information.Support and participate in store opening and closing checklists.Assuring all guest are over 19+ upon entrance of storeAbide by all applicable legal regulations and act as a socially responsible cannabis vendor.Assist with store maintaining and housekeeping including stocking shelves.Ensure the cleanliness of the store is maintained on a daily basisOther tasks as assigned by retail managementQualifications:19+ years oldOUTGOING PERSONALITY who enjoys customer serviceValid Cannsell certificate (must have before first shift)Pre employment criminal record check (must have before first shift)Able to lift 5-30 lbsAble to work flexible hours and weekendsPOS Software experience an assetAbility to work in a fast-paced environmentMust be a team playerExcellent written, oral, and interpersonal skillsAvailability for shift work any time between 9:00am to 11:30pm, Monday to SundayBasic skills in math and proficiency as a cashierExtensive knowledge of cannabis products and accessories is an assetWhat we’re looking forA passion for customer experience and cannabis.Previous retail/cashier experience (customer experience associate/greeter)Outgoing, personable and professional. We’re building relationships and trust with our clients and community.Comfortable working in a fast paced environment – good organizational and communication skills.Coachable.Leadership skills.Availability to work 12 hour shifts an asset.COVID-19 precaution(s):Social distancing guidelines in placeAll customers and employees required to wear masks inside storeSanitizing, disinfecting, or cleaning procedures in placeLicense/Certification:CannSell (Required for first day of work)Criminal Background ( Required for first day of work )Experience:Not requiredPart-time: 20 - 30 hours per weekFull-time: 40 hours per weekJob Types: Full-time, Part-time, PermanentSalary: $16.50 to $18.00 /hourJob Types: Full-time, Part-time, PermanentPart-time hours: 20-40 per weekSalary: $16.50-$18.00 per hourBenefits:Flexible scheduleOn-site parkingSchedule:10 hour shift12 hour shift8 hour shiftDay shiftEvening shiftHolidaysWeekends as neededSupplemental pay types:Overtime payAbility to commute/relocate:Trenton, ON K8V 5Z9: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Work Location: In personApplication deadline: 2023-09-09\",\n            \"location\": \"Dundas Street East, Quinte West, ON\"\n        },\n        {\n            \"id\": \"C7C30443A2F2FD4402C5BB47201DA81A\",\n            \"cityName\": \"1310 St James St, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1cfdf27a7d20384b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Carstar Manitoba\",\n            \"rowSalary\": \"$32,000–$40,000 a year\",\n            \"date\": 1694447019091,\n            \"dateOfPosted\": 1692739232863,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8973035,\n                    \"lon\": -97.20034720000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"St James St, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 32000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    32000.0\n                ],\n                \"range\": {\n                    \"gte\": 32000.0,\n                    \"gt\": null,\n                    \"lte\": 32000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CARSTAR Manitoba is hiring! We are currently seeking a customer service representative (CSR) to join our dynamic team in Gimli, Manitoba!As the first point of contact in the stores, the customer experience representative creates the first impression that customers and visitors will have when the call or walk in to our shops. This person is responsible for creating an environment that promotes friendliness, and a high level of service.As a CSR, you will be responsible for assisting with the daily operations of the store, and keeping paperwork up to date. You will be responsible for assisting the store managers and techs with keeping performance and productivity within the store at an exemplary level. The ideal candidate loves talking to people and proactively solving issues.Responsibilities:Communicate with customers via phone, email and chatProvide knowledgeable answers to questions about product, pricing and availabilityWork with internal departments to meet customer's needsData entry in various platformsUpkeep of overall cleanliness of the store/reception areaBooking in customers for repairsChecking in/out customer vehiclesOpening new work ordersInsurance/MPI claimsRetail salesOrdering partsPosting invoices, labour times, and payments into computerKeeping customers up to date with the repair processPreclosing and closing work ordersReceive and enter payments into the systemEnsuring the deposit book logs are accurate and entered dailyPrepare bank depositsEnsuring payroll is completed and submitted by the biweekly scheduleMake sure all jobs are closed for the end of the monthAssisting with cleaning vehicles for deliveryAssist Shop Manager with other tasks as requestedQualifications:Excellent phone etiquette and excellent verbal, written, and interpersonal skillsAbility to multi-task, organize, and prioritize workPost-secondary education or equivalent experience in customer serviceComfortable working on the computer in numerous programsComfortable working on the phonesExperience with MPI policies and procedures considered an assetExperience in the auto body industry an assetClass 5 Drivers licenseHighly organizedDetail orientatedWhy Choose CARSTAR?:Monday to Friday hoursFull benefits package after 3 monthsRRSP program after 1 yearCompetitive compensation based on experienceCareer planning and advancement opportunitiesPotential for full-time hoursIf you are seeking to advance your career by being part of a fast-growing company, we want to hear from you! Please send your resume and a brief cover letter to us at the link provided. We appreciate all applications we receive, however only candidates selected for an interview will be contacted.Job Types: Full-time, Part-time, PermanentSalary: $32,000.00-$40,000.00 per yearBenefits:Dental careEmployee assistance programExtended health careOn-site parkingRRSP matchVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayExperience:MPI: 1 year (preferred)Automotive Repair Shop: 1 year (preferred)Licence/Certification:Driving Licence (required)Work Location: In person\",\n            \"location\": \"St James St, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"8A601757F2C5F7EDD3CEE4D2ECFB0797\",\n            \"cityName\": \"478 Woody Rd, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8d6129f8d76598fd\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"U-Haul\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694446955153,\n            \"dateOfPosted\": 1662825088804,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.467517,\n                    \"lon\": -79.6876659\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"START TODAY, GET PAID TODAY! New hires eligible for BONUS!Are you a people person? Do you love helping others? U-Haul is in search of friendly, motivated people for the position of Customer Service Technician. As a Customer Service Technician, you will work as part of a supportive team to be the face of U-Haul’s exceptional service, ensuring customers get all the help they need on their journeys.U-Haul Offers Customer Service Representative:Paid holidays, vacation, and sick daysCareer stabilityOpportunities for advancementValuable on-the-job trainingComplete Benefit Plan if eligibleRRSP payroll deduction planDeferred profit-sharing plan if eligible.Discounts on Dell computers, hotels, and moreCustomer Service Representative Responsibilities:Assist customers inside and outside U-Haul Center with U-Haul products & servicesUse smartphone-based U-Scan technology to manage rentals and inventoryMove and hook up U-Haul trucks and trailersClean and inspect equipment on the lot including checking fluid levelsAnswer questions and educate customers regarding products and servicesPrepare rental invoices and accept equipment returned from rentalCustomer Service Representative Minimum Qualifications:Valid driver’s license and ability to maintain a good driving recordHigh School Diploma or equivalentWork Environment:The work involves moderate risks or discomforts which require special safety precautions, e.g., working around moving parts or machines, fumes, or irritant chemicals. May be required to use protective clothing, or gear such as masks, goggles, gloves or shields.Physical Demands:The work requires some physical exertion such as long periods of remaining stationary, moving around an office and occasionally outdoors, positioning oneself to reach objects at varying heights, and moving equipment weighing a minimum of 50 lbs. assisted or unassisted.U-Haul is an equal opportunity employer. All applications for employment will be considered without regard to race, color, religion, sex, national origin, physical or mental disability, veteran status, or any other basis protected by applicable federal, provincial, state, or local law. Individual accommodations are available on requests for applicants taking part in all aspects of the selection process. Information obtained during this process will only be shared on a need to know basis.Job Type: Part-timePart-time hours: 30 per weekSalary: $17.00-$18.00 per hourSchedule:8 hour shift\",\n            \"location\": \"Oakville, ON\"\n        },\n        {\n            \"id\": \"C19F08300CB7A33E6C0E639CC9D6E76C\",\n            \"cityName\": \"Happy Harry's in Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9355df49b9693429\",\n            \"jobName\": \"Cashier/Customer Service Representative\",\n            \"companyName\": \"Happy Harry's\",\n            \"rowSalary\": \"$15.50–$17.00 an hour\",\n            \"date\": 1694446754876,\n            \"dateOfPosted\": 1692743598490,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6660885,\n                    \"lon\": -63.56756309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Description: This position is responsible for providing exceptional customer service through face to face when they enter the premises or by answering the incoming calls and properly directing them or taking messages. This position is also responsible for cashier duties, which include cash/credit transactions; delivery/pick up; providing customer estimates; reconciliation; customer enquiries; etc. This position is also responsible for ensuring that all merchandise and work areas are maintained in a clean and safe manner.DUTIES AND RESPONSIBILITES**Abide by and adhere to all tasks and procedures outlined in the HH Employee Manual and any other distributed documents.Comply with all health and safety regulations and wearing appropriate personal protective equipment as required.Report for work as scheduled wearing the appropriate clothing and logoed HH attire as may be required.Processing/reconciling payment transactions.Processing returns.Processing paperwork (i.e. door orders, invoices, pick ups, etc.)Creating signage, schedules, etc. for store(s) use.Merchandising and restocking front end area.Answering incoming calls and taking messages or directing callsMix paint.Conduct inventory lists when stock is getting low.Clean up work area daily, ensuring site is kept tidy and safe at all times.Perform any other tasks as assigned by supervisors.Reconciliation of Cash, Debit or Credit Transactions – as per Cash Reconciliation Policy.Tools & EquipmentCompany specified tools for this position include but are not limited to:POS System (Counter Point - NCR)Computer and various programsMicrosoft Office would be considered an AssetPaint shakerTelephoneCalculatorLaminatorAdobe Creative CloudSkillsCompletion of High School or equivalent.Previous customer service/cashier experience would be considered an asset.Previous customer service experience in a construction product environment would be an asset.Certifications in WHMIS and First Aid would be considered an asset.Ability to communicate clearly and concisely in English both verbally and in writing.Excellent analytical and problem solving skills.Ability to be self-motivated.Ability to train other staff as needed or if needed for same skills.Strong organizational skills and must be detail oriented and flexible.Ability to work as part of a team and be a team player.Proven computer skills and past experience with POS systems.Ability to provide criminal records background check.Decision MakingThis position makes decisions only within the scope of the job description and/or specific instructions from their supervisors. This position is accountable for the decisions he/she makes.Inside/Outside Relationships**This position deals with customers, co-workers, suppliers on a regular basis and must be able to maintain a professional and business-like attitude at all times.Position Conditions**This position works indoors and has the flexibility to move around during a shift, including sitting, standing, twisting, bending and lifting. This position works on a computer and must be able to focus for long periods of time. This position uses the phone as a tool on a routine basis and must be able to have good hearing skills. This position has some exposure to dust, dirt, fumes, heat, cold, noise, and inclement weather. This position may require the lifting of items up to 50 lbs. This position requires visual concentration to complete daily tasks. This position requires good hearing to listen for unusual sounds in equipment and site management.FinancialThis position has financial responsibility in maintaining correct cash/credit processing handling when dealing with customer orders and estimates. This position has a high level of accountability in the flow of their work and data entry being thorough and 100% accurate.Supervisory/ManagementThis position has no supervisory responsibility.Job Type: Part-time or Full-Time (Will be discussed at interview)NoJob Types: Full-time, Part-timePart-time hours: 30-42 per weekSalary: $15.50-$17.00 per hourBenefits:On-site parkingStore discountDay range:Monday to FridayWeekend availabilityFlexible Language Requirement:French not requiredShift:10 hour shift8 hour shiftExperience:sales: 1 year (preferred)customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In personExpected start date: 2023-09-01\",\n            \"location\": \"Dartmouth, NS\"\n        },\n        {\n            \"id\": \"0A974B7576C2963BF06D5B1DC6FE5E1F\",\n            \"cityName\": \"1625 Boul Dagenais O, Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8b18890f4aa1d52e\",\n            \"jobName\": \"Représentant.e Service à La Clientèle / Customer Service Rep. - Laval\",\n            \"companyName\": \"Regal Confections (Confiseries Regal) Inc.\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694446092276,\n            \"dateOfPosted\": 1692744469688,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5776013,\n                    \"lon\": -73.80857089999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Bd Dagenais O, Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"English below...QUI SOMMES-NOUS ?Leader canadien dans la distribution de confiseries et de chocolat. Regal Confections ( Confiseries Regal ) Inc. a évolué en devenant le distributeur exclusif de certaines marques comme Tootsie Roll, Dubble Bubble, McCormicks, PEZ, Rockets et plusieurs autres. Nous commercialisons une vaste gamme de produits sous licences, telles que Disney, Lucasfilm, Emoji, LNH, Mattel, Laura Secord, MGA, Nickelodeon, Universal, DreamWorks et Illumination.Fondé il y a 60 ans et comptant plus de 400 employés, nous t'invitons à participer à notre expansion en te joignant à nous comme représentant.e service à la clientèle - bureau des commandes.POURQUOI JOINDRE NOTRE ÉQUIPE ?Horaire flexible 37,5h par semainePossibilité de télétravail hybride après la formationAssurance Collective incluant Dentaire - prime payé 65% par l’employeurHoraire d'étéStationnement gratuitBoîtes cadeaux de produits (Halloween - Noël - Valentin - Pâques)Rabais sur produits réguliers - Chocolats fins, biscuits, confitures, pâtes etc.Ambiance décontractéeBBQ, party de Noël et autres activités socialesCOMPÉTENCES RECHERCHÉES :Diplôme post-secondaire complété dans un domaine connexeMinimum 3 ans d’expérience dans l’entrée de commandes et le suivi d’inventaireBilinguisme requis (anglais, français) tant à l’oral qu’à l’écrit, pour répondre aux besoins de la clientèle interne et externe située dans tout le CanadaConnaissances de système ERP (J.D. Edwards ou autres systèmes)Capacité de travailler sous pression, particulièrement durant les périodes de pointe et être doté de bon esprit d’analyseQUE FERAS-TU ?Entrer les commandes provenant des représentants et des clientsValider les commandes reçues par EDIVérifier la disponibilité des produits et faire le suivi avec les clients, au besoinPrendre les rendez-vous et faire les suivis avec les transporteurs, au besoinCoordonner les transferts entre entrepôts, afin d'optimiser la préparation de commandesÉmettre des autorisations pour les retours de produits...........................................................Job description : CUSTOMER SERVICE REPRESENTATIVEWHO ARE WE?Canada's leading distributor of confectionery and chocolate products. Regal Confections ( Confiseries Regal ) Inc. has evolved to become the exclusive distributor of brands such as Tootsie Roll, Dubble Bubble, McCormicks, PEZ, Rockets and many others. We market a wide range of licensed products such as Disney, Lucasfilm, Emoji, NHL, Mattel, Laura Secord, MGA, Nickelodeon, Universal, DreamWorks and Illumination.Founded 60 years ago and with over 400 employees, we invite you to be part of our expansion by joining us as a Customer Service Representative - order desk.This is an ideal job for a work/family balance!WHY JOIN OUR TEAM?Flexible schedule 37.5 hours per weekPossibility of hybrid telecommuting after the trainingGroup insurance including dental - premium paid 65% by the employerSummer ScheduleAnnual bonus/profit sharingFree parkingProduct gift boxes (Halloween - Christmas - Valentine's Day - Easter)Discount on regular products - Fine chocolates, cookies, jams, pasta etc.Casual atmosphereBBQ, Christmas party and other social activitiesSKILLS REQUIRED :Completed post-secondary degree in a related fieldMinimum 3 years experience in order entry and inventory trackingBilingualism required (English, French) both written and spoken, to meet the needs of internal and external customers located across CanadaKnowledge of ERP system (J.D. Edwards or other systems)Ability to work under pressure, especially during peak periods, and have good analytical skillsWHAT WILL YOU DO?Enter orders from representatives and customersValidate orders received by EDIVerify product availability and follow up with customers as neededMake appointments and follow up with carriers, as neededCoordinate transfers between warehouses to optimize order preparationIssue authorizations for product returnsPermanent daytime position Monday to FridayType d'emploi : Temps plein, PermanentSalaire : à partir de 20,00$ par heureAvantages :Assurance DentaireAssurance InvaliditéAssurance Maladie ComplémentaireAssurance VieAssurance VisionCongés payésProgramme d'Aide aux EmployésProgrammes de Bien-êtreStationnement sur placeTenue DécontractéeHoraires de travail :Du Lundi au VendrediLieu du poste : Télétravail hybride à Laval, QC\",\n            \"location\": \"Boulevard Dagenais Ouest, Laval, QC\"\n        },\n        {\n            \"id\": \"4417E1ADEA41A435957D89F7502F4F3A\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=28bdb8806b3c411b\",\n            \"jobName\": \"Customer Service Clerks Supervisor\",\n            \"companyName\": \"Pdr Auto Ontario Inc.\",\n            \"rowSalary\": \"$28.21 an hour\",\n            \"date\": 1694446058659,\n            \"dateOfPosted\": 1692737378440,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 29.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    29.0\n                ],\n                \"range\": {\n                    \"gte\": 29.0,\n                    \"gt\": null,\n                    \"lte\": 29.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Perform same duties as workers supervised Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Identify training needs and train workers in job duties and company policies Computer and technology knowledge MS Office Work conditions and physical capabilities Attention to detail Work under pressureWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"50F846B98C9D2AE5B1A81182B58D6471\",\n            \"cityName\": \"Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a297f4dc4cf1ba09\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Triple O's Restaurants\",\n            \"rowSalary\": \"$16.75–$17.25 an hour\",\n            \"date\": 1694445965505,\n            \"dateOfPosted\": 1693555281706,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8879519,\n                    \"lon\": -119.4960106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Kelowna, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are Hiring guest focused individuals for Morning and Afternoon ShiftsCurrently we have 2 Full time and one Part time. You must have a friendly outgoing personality, strong work ethic & great customer service skills.Positions require, cashier work, stocking, cleaning and safe work practices as per job description discussed at time of interview and further explained during training.We offer Great working environment and Reliable year round work, Competitive wages and Extended health benefits for full-time employees some restrictions apply, more information provided during interview. Please email your resume or apply within at any Chevron locations in KelownaJob Types: Full-time, Part-timeSalary: $16.75-$17.25 per hourDay range:Monday to FridayWeekends as neededShift:Evening shiftNight shiftEducation:Secondary School (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Night Shift (preferred)Overnight Shift (preferred)Work Location: In person\",\n            \"location\": \"Kelowna, BC\"\n        },\n        {\n            \"id\": \"3E616DC87E364FB09EDF478179A06E17\",\n            \"cityName\": \"St. Catharines, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=95ba35757339427e\",\n            \"jobName\": \"Inside Phone Sales\",\n            \"companyName\": \"Empowerment Technologies Inc.\",\n            \"rowSalary\": \"$23–$25 an hour\",\n            \"date\": 1694445659069,\n            \"dateOfPosted\": 1694445657339,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1593745,\n                    \"lon\": -79.2468626\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St. Catharines\",\n                \"formattedAddress\": \"St. Catharines, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"St. Catharines\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"**This role is in office within our Niagara-on-the-Lake site.**Who We Are:For 20 years, we’ve been leaders in the baby safety (Levana) and DIY security space (Defender), creating ground-breaking consumer electronics that bring peace of mind to millions of people all over the world. Selling directly through our brand websites, Amazon, and our retail partners such as Walmart, Costco, and Home Depot, we are growing fast and are looking for new team members to join us on this journey. For those looking to join a passionate and collaborative team that challenge conventional methods, take risks, and settle for nothing but excellence, you’ve found the right place!Who Are You?You are a fast paced, results driven, and experienced Inside Salesperson with a successful sales track record, you have a high degree of self-motivation and resilience within a sales environment. Using your strong interpersonal skills and entrepreneurial mind set, you strategically use various contact methods to maximize your communication efforts and close sales. This role operates out of our Head Office in Niagara-on-the-Lake.Perks of This Role:Full time, 40 hours per weekScheduled shifts are days, Monday – Friday with weekend availability requiredWage is $23.00-$25.00 per hourImmediately receive 2 weeks vacation (no waiting period)Comprehensive Health Benefits program after 60 daysWork in an office environment (we are NOT a call centre)50% product discount for friends and familyWork directly for the brand owners and not a 3rd partyBe involved in new product testingQualifications:1 year of sales experience with a high focus on sales targets and customer engagementStrong attention to detail and ability to multitaskExcellent organizational, time management and communication skillsFlexible/creative approach to problem solving with the ability to simplify/detangle issues to their core factorsEmotional Intelligence: self-awareness - have a strong desire to develop and improve yourself and know when to seek out expertise; self-regulation - knowing when to push and when to stop; motivation – remain motivated while creating a strong desire to achieve in others; empathy – understand and care about people’s current reality; social skills – understand people, develop trust and help themHigh School Diploma (OSSD)Our Core ValuesExcellence - We never settle for “good enough.Results - The path to success is paved with our dedication.Love - Challenges are no match for our hearts and minds.Learning - Experimentation and curiosity are part of our DNA.Simplicity - We strip away the non-essentials to get to what really matters.Job Types: Permanent, Full-timeSalary: $23.00-$25.00 per hourBenefits:Casual dressDental careExtended health careOn-site parkingPaid time offStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededCOVID-19 considerations:COVID-19 vaccination is required. We have put measures in place, such as daily office sanitization, socially distant desk spaces, and providing masks.Ability to commute/relocate:St. Catharines, ON: reliably commute or plan to relocate before starting work (required)Experience:phone sales: 1 year (required)B2B sales: 1 year (required)Work Location: In person\",\n            \"location\": \"St. Catharines, ON\"\n        },\n        {\n            \"id\": \"D7E4DB082118ADAAA66994F0959B045B\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4ec487bb744dcb59\",\n            \"jobName\": \"Bilingual Customer Service Agent - Agent De Soutien Téléphonique Bilingue\",\n            \"companyName\": \"Globalstep\",\n            \"rowSalary\": \"$16.50–$20.00 an hour\",\n            \"date\": 1694445657223,\n            \"dateOfPosted\": 1694445655926,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"--Le français à suivre--Who we are:You name it, we’ve done it. GlobalStep partners with the world’s leading game studios and innovative brands, bringing compelling and high impact digital experiences to life, fast and flawless. Our specialized gaming practice has helped leading video game studios launch and support over 3,000 Video Game titles that have generated over $30 billion in game revenue.With a global set of service locations across 3 continents, we have a tightly integrated services model across geographies and lines of service aimed and focused on the success of our clients.Responsibilities· Effectively answer various questions from members and clients.· Handle phone calls quickly and efficiently and provide superior quality service in a context where call volume may be high.· Actively listen to members and clients by asking relevant questions to effectively meet their expectations.· Establish a climate of trust that promotes customer retention.· Conduct transactions over the phone.· Schedule appointments with credit union advisors.· Adhere to the policies, practices, and standards in force at the credit union.· Ensure the profitability of transactions and/or services offered.Behavioral and Technical Skills· Having good interpersonal skill· Being customer-oriented· Dealing with uncertainty and ambiguity· Mastering problem-solving· Demonstrating a strong ability to learn quickly· Culture of cooperation and teamwork· Professional customer environment· Advanced computer skills (Windows, Internet)Shifts:· Three shifts available (morning, evening, night)Qualifications / Education· High school diploma· Experience in customer service· Excellent learning ability· Bilingualism (essential)· Excellent listening & communication skills, both orally and in writing (French, English)Company Benefits· Rapidly growing scale-up offering opportunities for permanent positions· Premium for night shifts· Working remotely· Paid Training providedWhat we offerGlobalStep is proud to be an equal opportunity workplace and is an affirmative action employer. We are committed to equal employment opportunity regardless of race, color, ancestry, religion, sex, national origin, sexual orientation, age, citizenship, marital status, disability, gender identity or Veteran status.-------------------------Qui sommes-nous:Vous l'avez dit, nous l'avons fait. GlobalStep travaille en partenariat avec les plus grands studios de jeux et les marques les plus innovantes du monde et donne vie à des expériences numériques convaincantes et à fort impact, de manière rapide et impeccable. Notre spécialisation a aidé les principaux studios de jeux vidéo à lancer et à soutenir plus de 3 000 titres, qui ont généré plus de 30 milliards de dollars en revenus.Grâce à notre ensemble mondial de sites de services répartis sur trois continents, nous disposons d'un modèle d'activité étroitement intégré dans les zones géographiques et les lignes de services, visant et se concentrant sur le succès de nos clients.Description de l'emploi· Répondre efficacement aux différentes questions des membres et clients· Prend en charge, rapidement et efficacement, la réponse aux appels téléphoniques qui lui sont dirigés et offrir un service de qualité supérieure dans un contexte où le volume d'appels peut être élevé.· Écouter les membres et clients de façon active en leur posant des questions pertinentes pour répondre efficacement à leurs attentes· Établir un climat de confiance favorisant la rétention de la clientèle· Procède aux transactions assistées par téléphone· Prend les rendez-vous des conseillers de la caisse.· Respecte les politiques, les pratiques et les normes en vigueur à la caisse· S’assure de la rentabilité de la transaction et/ou des services offertsCOMPÉTENCES COMPORTEMENTALES et TECHNIQUES· Être doué pour la communication interpersonnelle· Être orienté vers le client· Faire face à l'incertitude et à l'ambiguïté· Maîtriser la résolution de problèmes· Démontrer une grande capacité à apprendre rapidement· Culture et esprit coopératif· Environnement professionnel de la clientèle· Compétences informatiques approfondies (Windows, Internet)Les horaires :Trois horaires sont disponibles (matin, après-midi et nuit)Exigences· Diplôme d’études secondaires· Expérience en service à la clientèle· Excellente capacité d’apprentissage· Bilinguisme (essentiel)· Excellentes aptitudes à la communication autant à l’oral qu’à l’écrit (français, anglais)Avantages sociaux· Entreprise en pleine expansion offrant des opportunités de postes permanents rapidement croissant· Prime pour les quarts de nuit· Travailler à distance· Formation rémunérée fournieCe que nous offronsGlobalStep est fier d'être un lieu de travail où l'égalité des chances est respectée et est un employeur à action positive. Nous nous engageons à garantir l'égalité des chances en matière d'emploi, indépendamment de la race, de la couleur, de l'ascendance, de la religion, du sexe, de l'origine nationale, de l'orientation sexuelle, de l'âge, de la citoyenneté, de l'état civil, du handicap, de l'identité sexuelle ou du statut d'ancien combattant.Job Types: Full-time, ContractSalary: $16.50-$20.00 per hourExperience:Customer service: 1 year (preferred)Language:French (required)English (required)\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"F44551F9C1732F24125E4054B4B65D1D\",\n            \"cityName\": \"740 Avenue du Palais, Saint-joseph-de-beauce, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b99193a68e4abbee\",\n            \"jobName\": \"Agent(e) De Service à La Clientèle / Customer Service Representative\",\n            \"companyName\": \"Purolator\",\n            \"rowSalary\": \"From $21.05 an hour\",\n            \"date\": 1694445619977,\n            \"dateOfPosted\": 1668648092737,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.3058894,\n                    \"lon\": -70.8783078\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saint-Joseph-de-Beauce\",\n                \"formattedAddress\": \"Av. du Palais, Saint-Joseph-de-Beauce, QC G0S, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Chaudière-Appalaches\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saint-Joseph-de-Beauce\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Des carrières qui font du chemin Êtes-vous à la recherche d’une occasion d’apprendre et de progresser? Voici votre occasion de nous aider à tenir les promesses de nos clients. Le statut de personne entièrement vaccinée contre la COVID-19 est une condition d’embauche pour les candidats retenus pour ce poste. Si vous avez des questions, n’hésitez pas à les poser durant l’entrevue. Depuis sa fondation en 1960, Purolator est devenue le fournisseur de pointe de solutions intégrées de logistique et d’expédition de fret et de colis au Canada. Notre équipe travaille en respectant un solide ensemble de valeurs d’entreprise qui guident tout ce que nous faisons pour nos employés. En tant qu’employeur, Purolator s’est engagée à offrir à ses employés un travail gratifiant avec des occasions de collaboration et de progression de carrière. Nous offrons un programme de rémunération globale concurrentiel qui inclut un salaire concurrentiel, un régime de retraite et des avantages sociaux complets, un programme d’aide aux employés et à la famille, un régime d’achat d’actions par les employés et des rabais pour les employés. Nous croyons que le développement d’une équipe gagnante d’employés est essentiel pour réaliser notre vision de rendre le Canada plus fort en aidant nos clients à tenir leurs promesses. Ne manquez pas cette occasion de faire partie d’une entreprise nationale qui joue un rôle significatif dans la vie de tous les Canadiens. Soumettez votre candidature dès aujourd’hui! Nous sommes présentement à la recherche d’un agent polyvalent de bureau et au centre d'expédition pour notre établissement de St-Joseph-de-Beauce. Le taux horaire de départ est de 21.05$. Établissement : 740 Av. Guy-Poulin, Saint-Joseph-de-Beauce, QC G0S 2V0 Contrat de travail : Sur appel - horaire variable Brève description des fonctions : Servir les clients de manière efficace et polie au téléphone ou en personne Vendre des produits et des services S’occuper des plaintes et des demandes des clients S’efforcer de résoudre les problèmes relatifs aux envois S’efforcer de résoudre les problèmes relatifs à l’équipement et à la technologie Collaborer avec le personnel du siège social, la direction locale, les courriers, le personnel des entrepôts, les directeurs de compte et autres partenaires pour garantir un excellent service à la clientèleQualifications et Aptitudes requises Secondaire V complété ou expérience pertinente Obtenir une note de passage dans des tests d'aptitude Anglais oral (bilingue) Commentaires : Pourra travailler avec ou sans supervision Attitude professionnel envers la clientèle Être capable de travailler sous pression Peut soulever seul des colis pouvant peser jusqu’à 70 livres. DÉTAILS DE L'AFFICHAGEÉtablissement: 186 - St-Joseph De BeauceConditions de travail: Retail Center Environment - Purolator est un employeur souscrivant au principe de l’égalité d’accès à l’emploi favorisant la diversité et l’inclusion. L’entreprise prendra en considération tous les candidats qualifiés pour l’emploi, peu importe leur race, la couleur de leur peau, leur religion, leur sexe, leur orientation sexuelle, leur identité de genre, leur origine ethnique, leur âge, leur statut d’autochtone ou tout autre facteur pouvant être considéré comme discriminatoire. Si vous avez besoin d’un accommodement durant le processus de recrutement, nous travaillerons avec vous afin de répondre à vos besoins. Nous reconnaissons que nos employés et leurs familles sont des intervenants essentiels. Notre entreprise ne sera prospère que si nous offrons à nos employés un milieu de travail sain et sécuritaire et si nous avons les bonnes personnes, aux bons postes, avec le soutien dont elles ont besoin pour réussir. Nous embauchons pour l’attitude et nous formons pour l'aptitude. Pour en apprendre davantage sur l'entreprise et ses valeurs, visitez le site www.purolator.com. Chez Purolator, chaque nouvelle journée vous offre l’occasion ainsi qu’à vos collègues de tisser des liens positifs entre vous et avec nos clients afin d’avoir un impact positif sur les collectivités dans lesquelles nous vivons et travaillons.\",\n            \"location\": \"Avenue du Palais, Saint-joseph-de-beauce, QC\"\n        },\n        {\n            \"id\": \"F096D014E2343C3A97C726DD6EE528BC\",\n            \"cityName\": \"3605 West 4th Ave, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=87bd99f2f4c29b1c\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Aphrodite's Organic Pie Shop\",\n            \"rowSalary\": \"From $15.65 an hour\",\n            \"date\": 1694445522464,\n            \"dateOfPosted\": 1692736500975,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2674848,\n                    \"lon\": -123.1094236\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W 4th Ave, Vancouver, BC V5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Aphrodite's Organic Pie Shop and Cafe is expanding and seeking part time baristas to work at our bustling cafe and brunch restaurant, 3-5 shifts per week. If you are looking for a position that never involves late nights, then we are here for you!We are a busy organic pie shop that operates from 8:00am to 6:00pm. Shift range between 7:30am to 7:00pm. We are looking for someone with flexible weekday availability specifically.Please apply in store with a resume to Kira Kirkland, our Director of Operations.Thank you!Job Type: Full-timeSalary: From $15.65 per hourSchedule:Day shiftMorning shiftSupplemental pay types:Overtime payTipsAbility to commute/relocate:Vancouver, BC: reliably commute or plan to relocate before starting work (required)Experience:Barista: 1 year (required)Customer Service: 1 year (required)Licence/Certification:Food Safety Certification (preferred)Work Location: In person\",\n            \"location\": \"W th Ave, Vancouver, BC\"\n        },\n        {\n            \"id\": \"1B1E84351F9004305FDD5562C497F2D2\",\n            \"cityName\": \"210 Rue De La Gauchetière O, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8e65cf38cc010296\",\n            \"jobName\": \"Customer Service / Hospitality Agent\",\n            \"companyName\": \"Bakan Hotels\",\n            \"rowSalary\": \"$45,000 a year\",\n            \"date\": 1694445413321,\n            \"dateOfPosted\": 1694445413144,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5026511,\n                    \"lon\": -73.563864\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue De La Gauchetière O, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Be the first point of contact for all our guests via phone, email and chatLearn the ins and outs of our hospitality business so you can handle any questions guests haveOwn the reservations process from start to finishRespond to, troubleshoot, and resolve guest issues in a timely and positive mannerCoordinate to resolve issues on the ground and provide ongoing updates to guestsMeet and greet guests when they check-in, ensuring they have an amazing first experienceTake care of day-to-day hospitality tasks, such as bringing extra items to guests during their stay and managing in-unit needs that range from troubleshooting systems and appliances, quick housekeeping fixes, and overseeing contractor appointmentsLearn about the pillars of hospitalityLearn about warehouse management and supply chain management where you will assist with warehouse duties such as preparing housekeeping kits, processing linens, and cleaningWork closely with our hospitality operations team and conduct quality control inspections inside our unitsAssist with photoshoots and on-boarding new units to be guest readyJob Types: Full-time, Part-time, PermanentPart-time hours: 40 per weekSalary: $45,000.00 per yearBenefits:Company eventsFlexible scheduleOn-site parkingStore discountSchedule:10 hour shift8 hour shiftDay shiftWeekends as neededApplication question(s):Must have at least a bachelor degree or hospitality certificate degreeEducation:DCS / DEC (required)Language:French and English (required)Work Location: In personExpected start date: 2023-10-01\",\n            \"location\": \"La Gauchetière, QC\"\n        },\n        {\n            \"id\": \"52869623752152132BC53602AC207468\",\n            \"cityName\": \"Ajax, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1d0c2d7099cea784\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Harwood Sales Group\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694445411827,\n            \"dateOfPosted\": 1692747472269,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8508553,\n                    \"lon\": -79.0203732\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ajax\",\n                \"formattedAddress\": \"Ajax, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ajax\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a sales and marketing company based out of Ajax Ontario, looking for motivated and passionate Customer Service Representatives that want to make a difference! Looking for full time schedules, Monday to Friday. Please review the following info for more details!Customer Service Representative Job Responsibilities:Serves customers by providing product and service information and resolving product and service problems.Attracts potential customers by answering product and service questions and suggesting information about other products and services.Maintains financial accounts by processing customer adjustments.Recommends potential products or services to management by collecting customer information and analyzing customer needs.Prepares product or service reports by collecting and analyzing customer information.Contributes to team effort by accomplishing related results as needed.Customer Service Representative Qualifications / Skills:Customer serviceProduct knowledgeMarket knowledgeQuality focusProblem solvingDocumentation skillsPhone skillsListeningJob Type: Full-timeSalary: $20.00-$22.00 per hourFlexible Language Requirement:French not requiredSchedule:Monday to FridayAbility to commute/relocate:Ajax, ON: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Ajax, ON\"\n        },\n        {\n            \"id\": \"29A830106D5D4BB7A5DD221BCFE8CA2E\",\n            \"cityName\": \"1801 Lakeshore Road West, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3d01cf89186fdd31\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Turtle Creek Cards And Gifts\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694445295955,\n            \"dateOfPosted\": 1690560955777,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5308514,\n                    \"lon\": -79.6082911\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Lakeshore Rd W, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Shipping parcels within Canada,USA and internationally.selling canadapost authorized products,stamps.selling gift itemsTaking passport photosJob Type: Fixed term contractContract length: 12 monthsSalary: From $15.50 per hourSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsCOVID-19 considerations:Wear a maskKeep distance Use sanitizer Ability to commute/relocate:Mississauga, ON: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Lakeshore Rd W, Mississauga, ON\"\n        },\n        {\n            \"id\": \"2BCB460D2B482CA89AA89424F03E0759\",\n            \"cityName\": \"Yarrow, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f9254220918d7915\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Chevron\",\n            \"rowSalary\": \"$16.75–$18.00 an hour\",\n            \"date\": 1694444324277,\n            \"dateOfPosted\": 1693588788040,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.0821013,\n                    \"lon\": -122.0647472\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Chilliwack\",\n                \"formattedAddress\": \"Yarrow, Chilliwack, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Fraser Valley\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Chilliwack\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usWe are professional, customer-centric and engaging.Our work environment includes:Growth opportunitiesOn-the-job trainingSafe work environmentProcess transactions professionally, accurately, in a timely fashion; with a friendly attitude using suggestive sales.Change garbages outside in all kinds of weather, clean pumps and lot. Keep store neat and clean.Must be able to verify products being delivered and then display according to planograms.Must have a positive, can do attitude, able to get along with peers as well as management.Must have a drivers license as there is no bus service at this location.Job Types: Full-time, Part-time, PermanentPart-time hours: 16-40 per weekSalary: $16.75-$18.00 per hourBenefits:On-site parkingDay range:Every WeekendHolidaysMonday to FridayFlexible Language Requirement:French not requiredShift:8 hour shiftEvening shiftMorning shiftNight shiftWork setting:Convenience storeAbility to commute/relocate:Yarrow, BC: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Shift availability:Overnight Shift (preferred)Night Shift (required)Day Shift (preferred)Work Location: In personExpected start date: 2023-09-09\",\n            \"location\": \"Yarrow, BC\"\n        },\n        {\n            \"id\": \"DF216AB045A82D6947B05F1351D0ED8D\",\n            \"cityName\": \"Cornwall, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=353d0e775d124b39\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Xplore Inc.\",\n            \"rowSalary\": \"$17.55 an hour\",\n            \"date\": 1694444112928,\n            \"dateOfPosted\": 1693581687919,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.0212762,\n                    \"lon\": -74.730345\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cornwall\",\n                \"formattedAddress\": \"Cornwall, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Stormont, Dundas and Glengarry United Counties\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cornwall\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Overview: * Do you have a passion for providing excellent customer service? Want to work for a company who believes in putting the customer at the heart of everything they do? Then join Xplore’s team of Customer Service Representatives in our Cornwall,ON office. Xplore offers a high energy, fast-paced work environment where employee opinions and feedback are valued. Xplore offers a high energy, fast-paced work environment where employee opinions and feedback are valued. We offer:$17.55/hr$3.00/hour Bilingual Premium (French/English)Bonus incentive opportunities up to $2,800 annuallyExcellent company benefits including health and dentalMatched participation in group RRSPStrong focus on internal promotion, career path development and trainingOpportunities to work from home after six months tenureKey responsibilities include:Providing an excellent customer experience by responding to customer calls in a courteous, knowledgeable and professional mannerListening to customers and probing as appropriate to discover needs while fulfilling customer expectations in a way that also complies with policies, practices and proceduresProviding general account, billing and technical support to our customersProcessing service ordersMaintaining accuracy of customer databasesAssisting with reporting and administrationMaintaining service levels and achieving business and performance goals and objectivesThe ideal candidate will possess:Completion of post-secondary education in a related field (or equivalent level of experience)Knowledge of approaches, tools and techniques for anticipating, recognizing and resolving technical issuesPrevious customer service experience is an assetStrong computer and troubleshooting skills with the ability to analyze and solve problemsSolid working knowledge of the Microsoft Operating Systems; experience with MAC and/or Linux is an assetStrong communication skills, verbal and written, with the ability to communicate effectively with customers in technical and non-technical termsSelf-motivated and driven with good time management and organizational skillsAbility to follow guidelines and strong attention to detailAbility to prioritize and multi-task while adapting in a fast-paced work environmentBilingualism is an asset (French/English) #XploreJobs Condition of employment: As a condition of employment and in order to comply with industry related data security standards, this position is subject to the successful completion of a Criminal Background Check. Details will be supplied to applicants as they move through the selection process. Xplore is committed to creating an accessible environment and will accommodate disabilities during the selection process. Please let your recruiter know during the selection process of any accommodation needs. Company Overview: Xplore Inc. is Canada’s fibre, 5G and satellite broadband company for rural living. Xplore is committed to the relentless pursuit of an improved broadband experience for all Canadians. Xplore is building a world-class fibre optic and 5G wireless network to enable innovative broadband services for better every day rural living, for today and future generations.\",\n            \"location\": \"Cornwall, ON\"\n        },\n        {\n            \"id\": \"B2DEF8FDC8F89B7F7BEC7DCFF264670F\",\n            \"cityName\": \"60 Charles Street West, Ingersoll, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=387c40b77c2f0381\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Domino's Pizza Woodstock\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694444035551,\n            \"dateOfPosted\": 1692726050714,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.0365119,\n                    \"lon\": -80.8888401\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ingersoll\",\n                \"formattedAddress\": \"Charles St W, Ingersoll, ON N5C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Oxford County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ingersoll\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Domino's Pizza is now hiring Customer Service RepresentativesWe are happy that you are interested in joining the Domino’s team!Customer Service Representatives (CSR) are primarily responsible for providing exceptional customer service, making great Domino’s Pizza products and maintaining cleanliness of the store. CSR’s at Domino’s work in a team environment and they are expected to be positive and productive team players. Every CSR plays a part in helping the store achieve its goals for customer service, sales growth, operational reviews and cost management, therefore, their attention to these targets is paramount.The responsibilities are guided by the Domino’s Pizza of Canada’s policies and procedures. The standards can in some instances be modified by Empire Pizza or the CSR’s supervisor.Other responsibilities may include being a shift leader. Shift leaders are responsible for completing all shift tasks as laid out in the policies, manage other team members, balance finances and inventory and train team members. Shift leaders may be required to attend workshops to further develop their skills.CSR’s are required to attend to their scheduled shifts on-time, in complete uniform and with positive attitudes. During some shifts, the CSR may be required to help promote the business and do some local store marketing.Although schedules are typically posted a few days early, CSR’s may be required to come to work on short notice or perform additional tasks outside of this description.Job Type: Part-timePart-time hours: 10-30 per weekSalary: $15.50-$16.50 per hourExpected hours: 10 – 30 per week\",\n            \"location\": \"Charles Street West, Ingersoll, ON\"\n        },\n        {\n            \"id\": \"7AE643FCE8837B8E7E4EDB18176B7220\",\n            \"cityName\": \"4305 Rue Griffith, Saint-Laurent, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9c5b7757c4e25754\",\n            \"jobName\": \"Commis Au Service à La Clientèle/Customer Service Clerk\",\n            \"companyName\": \"Prosol Distribution\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694444018709,\n            \"dateOfPosted\": 1694444018530,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.48487979999999,\n                    \"lon\": -73.6986762\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Griffith, Montréal, QC H4T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Date: 11 septembre 2023Lieu de travail: 4305 Rue Griffith, Saint-Laurent QC H4T 2A2Taux horaire : 20$/heureHoraire : Lundi au vendredi – 7h à 16h ou 8h à 17h - 40 heures/semainePostes : 1Tu as un grand intérêt pour le service à la clientèle et tu désires te joindre à une équipe jeune et dynamique qui aime travailler en équipe?Nous sommes présentement à la recherche de deux Commis service à la clientèle à notre siège social situé à Ville St-Laurent. Relevant du superviseur de service à la clientèle, tu seras responsable de fournir un service aux clients de l’entreprise, d’effectuer la prise de commande et de gérer les comptes clients.Description du posteUne journée typique dans ton quotidien :- Effectuer le service à la clientèle au comptoir et/ou au téléphone- Exécuter des activités de vente et de service à la clientèle comme prendre le paiement des commandes ou répondre aux questions générales et techniques- Traiter les retours et échanges de produits via le système- Gérer les cas problématiques avec les autres entrepôts- Autres tâches connexesCe qui est requis :0-1 an d’expérience en service à la clientèleBilinguisme (français et anglais fonctionnel)On te veut dans notre équipe si :Tu as le travail d’équipe à cœurTu es une personne dynamique avec de l’entregentLa débrouillardise et ponctualité ne sont pas un secret pour toiCe que nous t’offrons :- Poste permanent, 40 heures/semaine- Salaire et assurances collectives compétitifs- Formation continue- Environnement de travail chaleureux et tenue de travail décontractée- Stationnement disponible et accès facile en transports en commun- Un superviseur à l’écoute de ses employésLe défi te parle? Pour en savoir plus et postuler, c’est juste ici…À propos de la compagnie,Prosol Inc. se spécialise depuis plus de 35 ans dans la distribution d’articles et d’accessoires reliés au domaine de l’installation et de la finition des planchers. Prosol possède une expertise notamment dans les produits liés à la pose des moquettes, du vinyle en rouleaux, des carreaux de vinyle pur ou composé, des dalles de caoutchouc, du linoléum et des carreaux de céramique de granit ou de marbre.Cette spécialisation mène Prosol à maintenir plus de 20 000 produits en inventaire et à offrir un service permanent d’assistance technique. L’entreprise se distingue de ses concurrents par sa rapidité d’exécution et par l’excellence de son service. La société ne s’approvisionne qu’auprès de fournisseurs bien établis, compétents et reconnus dans notre industrie pour leur spécialisation éprouvée dans le domaine de l’installation. Le volume de ses ventes et la force de son pouvoir d’achat confèrent à Prosol la première place au Canada dans son secteur d’activités.***English Version***Date: 2022-06-20Location: 4305 Rue Griffith, Saint-Laurent QC H4T 2A2Hourly rate: 20$/hourSchedule: Monday to Friday – 7h am to 4h pm or 8h am to 5 pm – 40 hours/weekJob openings: 1You have a great interest in customer service, and you want to join a young and dynamic team that values teamwork?We are currently looking for two Customer service Clerk at our head office located in Ville St-Laurent. Reporting to the Customer service supervisor, you will be responsible for providing service to the company's customers, taking orders, and managing customer accounts.Job descriptionA typical day at work:- Perform customer service at the counter and/or on the phone- Perform sales and customer service activities such as taking payment of orders or answering general and technical questions- Process product returns and exchanges through the system- Manage problem cases with other warehouses- Other related dutiesWhat is required:0-1 year of experience in customer serviceMust speak French and functional EnglishWe want you on our team if:You are a team playerYou are a dynamic person with good interpersonal skillsYou are punctual and resourcefulWhat we offer:- Permanent position, 40 hours/week- Competitive salary and group insurance- Continuous training- Friendly work environment and casual work attire- Parking available and easy access by public transportation- The support and listening of your supervisorAre you interested in this challenge? To learn more and apply, it’s right here…About the company,Prosol Inc. has been specializing for over 35 years in the distribution of products and accessories for the installation and the finishing of floors. Prosol has a great expertise in the installation of carpets, vinyl in rolls, vinyl tiles (pure or composed), rubber tiles, linoleum and ceramic tiles of granite or marble.This specialization brings Prosol to maintain over 20 000 products in inventory and to offer technical help to the trade. The company distinguishes itself from its competitors by its speed of execution and the excellence of its service. The company buys only from well-established suppliers, competent and recognized in our industry for their proven expertise in the field of installation. The sales volume and the strength of its purchasing power confers Prosol the first place in Canada in its industry.Type d'emploi : Temps pleinSalaire : à partir de 20,00$ par heureAvantages :Assurance DentaireAssurance Maladie ComplémentaireAssurance VieStationnement sur placeTenue DécontractéeHoraires de travail :8 HeuresQuart de jourQuart du matinLieu du poste : En présentielDate de début prévue : 2023-09-18\",\n            \"location\": \"Rue Griffith, Saint-Laurent, QC\"\n        },\n        {\n            \"id\": \"B893FB96D2F9E41AB9CD252836BFE48E\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=48147e675eeab7e7\",\n            \"jobName\": \"Bilingual (Fr/En) Inbound Call Center Agent No Sales Working From Home\",\n            \"companyName\": \"I24 Call Management Solutions\",\n            \"rowSalary\": \"From $19.62 an hour\",\n            \"date\": 1694443988954,\n            \"dateOfPosted\": 1694443988763,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Important note: We do not offer a Monday to Friday schedules only, nor do we offer an evening schedule starting at 5 or 6 pm only. Weekends can be rotated or worked 1 of the 2 days all the time.WHAT WE DOi24 Call Management Solutions answers the phones for our clients when they can't. We manage phone calls for businesses of all sizes across Canada. 24/7/365, including holidays.Oh, and we're good. Not that we like to brag, but we received our 27th consecutive Award of Excellence from our national call management organization (CAM-X).Phone-phobic? You won't have to make any phone calls, only answer them. We are an inbound call answering service only. We do not make outbound solicitation or sales calls.YOU ARE IMPORTANT!Positive people produce positive work cultures.Internal (you) and external (our customers) customers are equal stakeholders in our success.We are recognized internationally by the call management industry for the quality of our employee engagement and recognition programs.WE ARE COMMITTED TO SUPPORTING OUR COMMUNITY.We are a company that is committed to our community. Some of the organizations we support include the Art for Healing Foundation (bringing the healing power of art to hospitals and wellness centers), Dan la Rue (homeless youth), the Montreal SPCA (improving the lives of animals), the Fauna Foundation (a local chimpanzee shelter that provides exemplary care to chimpanzees in need) and the Nature Conservancy of Canada (the nation's largest land conservation organization).We are proud to have developed, for over fifty years, a positive corporate culture that rewards and respects all stakeholders - employees and customers.What you need to know to become an i24 Call Management Agenti24 is strictly inbound call management company. That means you won’t be asked to do any outbound calls, sales solicitations or upselling for existing clients. As a Call Management Agent (CMA), you will be servicing inbound client calls only.As a bilingual service, our agents offer service in French and English.Examples of the types of calls we manage are assisting a caller in getting service for their home, reaching their building manager, making a doctor’s appointment, getting technical support and more – all on the same day. If you don’t like boredom, you’ll love working at i24.Of course, we don’t expect you to come by these skills naturally, as long as you provide the smile and the curiosity, we provide one of the best professional call management training in the country.Our call center is open 24 hours a day, 7 days a week, 365 days a year. Therefore, we have a need for agents who are available for multiple shifts. We will do our best to accommodate your preferences, but your availability must still be flexible. Our shifts start at varying times, depending on our needs at the time. We do NOT have a day shift and an evening shift on the same hours at all times. For example: we cannot accommodate Monday to Friday availability between 8:30am and 4:30pm only.Our dayshifts can start as early as 6am, but also at 6:30am, 7am, 7:30am, 8am, 10am, 11am, etc.Our evening shifts can end at 8pm, 9:30pm, 10pm, 11pm, midnight or 2am.We do not offer a Monday to Friday schedule only, but weekends can be rotated or done 1 day out of 2 in continuity.This is the \\\"What's in it for me? \\\". - Compensation.\\\"How much do I get paid to be an i24 Agent?\\\"The starting base salaries areBilingual (CMA English and French) - $19.62 per hour You are available to handle calls from our English and French speaking clients.English only - $17.12 per hour. You will be handling calls from our English speaking customers only.Francophone only - $17.12. You handle calls from our French speaking customers only.Graduation programI24's call management agents are highly valued in the industry. Personality and training are the key factors. We call our agents \\\"WOW Specialists\\\" because that's what they do. They wow our customers and colleagues with their level of service, creativity and generosity.Once you have worked 1000 hours and completed our Call Management Agent training, you become one of our i24 graduate.Other benefits:Paid vacationGroup insurance - including life insurance and long-term disabilityPrescription Drug PackageDental PlanPaid sick daysBereavement leave with payA comprehensive Employee Assistance Program (EAP)It takes positive people to create a positive culture.If you've ever checked out our Facebook page, you'll have noticed all the fun events we post. We host social events like costume contests, gingerbread houses and online game nights. At i24, we take fun seriously (it's one of our core values).You work from home.All of our call management agents work from home. We have agents working across Canada - from Bona-Vista to Vancouver Island.For this to be possible, there are a number of technical requirements you will need to provide.A laptop or desktop PC (Apple Macs and Chromebooks are not currently compatible with our computer systems).A minimum of a 17+ inch screen to allow access to software options.A keyboard and an external mouse.A high speed internet connection via an Ethernet cable (25mbs and more)Active and up-to-date antivirus softwareA stable phone line of your choice (cellular, residential, VOIP (e.g. Skype))A headset with external microphone compatible with your telephone line equipment AND your computuerA webcamA workspace with a desk and chair. You will be working with clients whose confidentiality must be respected; therefore, your workstation should be located in an area with minimal disruption and traffic.Note: We will provide you with computer equipment within a few weeks of the end of your probationary period.Job Types: Full-time, PermanentSalary: From $19.62 per hourBenefits:Casual dressCompany eventsDental careDisability insuranceEmployee assistance programExtended health careLife insurancePaid time offVision careWellness programWork from homeSchedule:8 hour shiftDay shiftEvening shiftHolidaysMorning shiftWeekends as neededSupplemental pay types:Bonus payApplication question(s):Please tell us, in 2 sentences, why you would like to join our i24 teamAt i24, you'll need a dedicated home office space that is both fixed and private. For consistency and quality assurance purposes, it’s not possible to work from any other location. Please describe your workspace for us.How many hours per week would you like to work? (if you're a student, please specify the number of hours while you're in class, and while you're on summer vacation).What is your availability Monday through Friday? (Please specify the days you are available, the earliest time you can start and the latest time you can finish. Be as specific as possible)REMINDER: As indicated in our ad, we do not offer 8-16, 9-17 or shifts starting after 4 p.m. (exception: 00-8 for night shifts). Ideally, you must be available for at least 12 hours to have the flexibility to work multiple shifts depending on operational needs.What is your availability on Saturday and Sunday? Please note that if you are not available on weekends, this job is not for you as it is a prerequisite to be available at least every other weekend OR one of the two days every weekend. (Please specify the days you are available, the earliest time you can start and the latest time you can finish. Be as specific as possible)REMINDER: As indicated in our ad, we do not offer 8-16, 9-17 or shifts starting after 4 p.m. (exception: 00-8 for night shifts). Ideally, you must be available for at least 12 hours to have the flexibility to work multiple shifts depending on operational needs.Are you currently a student? If so, are you in school part-time, full-time, or with no fixed schedule? If you are not a student, simply write 'no'.Our initial training lasts 2 weeks, the first week of training is Monday to Friday and hours can vary between 8:00am and 7:00pm, depending on the trainer and needs. The second week's hours can vary between 7:00 and 19:00. Are you available during these training hours, Monday to Friday, for 2 weeks?You must be permanently located in Canada to work. If this is not your case, please do not apply unnecessarily.Do you have another job that you would like to continue simultaneously with your employment with i24?Le bilinguisme de haut niveau est un critère crucial afin de réussir au sein de notre équipe. Après tout, nous avons des clients partout a travers le Canada et nombreux ne parleront pas du tout français. Nous avons donc un besoin plus haut que si vous travailleriez seulement au Québec, puisqu'étant une province bilingue, nous avons tendance a être plus compréhensif et ce ne sera pas le cas de tous nos clients.Sur 10, 0 étant le plus faible et 10 parfaitement fluide tout comme votre langue maternelle, quel score vous donneriez a votre français écrit ?Sur 10, 0 étant le plus faible et 10 parfaitement fluide tout comme votre langue maternelle, quel score vous donneriez a votre français parlé ?Sur 10, 0 étant le plus faible et 10 parfaitement fluide tout comme votre langue maternelle, quel score vous donneriez a votre anglais écrit ?Sur 10, 0 étant le plus faible et 10 parfaitement fluide tout comme votre langue maternelle, quel score vous donneriez a votre anglais parlé ?Work Location: Remote\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"C68AAABDFE9E8FADD4F01D9F3988F2F1\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=638cd5e04453bdaf\",\n            \"jobName\": \"Customer Service / Technical Support Representative (Bilingual: French/English) Remote\",\n            \"companyName\": \"Concentrix\",\n            \"rowSalary\": \"$17–$25 an hour\",\n            \"date\": 1694443881992,\n            \"dateOfPosted\": 1670084824205,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.2926993,\n                    \"lon\": -114.0134073\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Airdrie\",\n                \"formattedAddress\": \"Airdrie, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Airdrie, AB\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title: Customer Service / Technical Support Representative (Bilingual: French/English) Remote  Job Description Titre du poste : Conseiller bilingue Français et anglais RÉINVENTEZ VOTRE CARRIÈRE Êtes-vous à la recherche d’un changement de carrière « travail à domicile » au sein d’une organisation mondiale avant-gardiste qui favorise une véritable culture inclusive axée sur les personnes et un véritable sentiment d’appartenance ? Souhaitez-vous rejoindre une entreprise qui remporte chaque année les prix « Meilleurs lieux de travail au monde », « Employés les plus heureux » et « Meilleures entreprises pour la croissance de carrière » ? Alors un poste de Conseiller bilingue Français et anglais à distance chez Concentrix est exactement le bon endroit pour vous ! En tant que Conseiller bilingue Français et anglais à distance, vous rejoindrez une équipe organiquement diversifiée de 40 pays où TOUS les membres contribuent et soutiennent le succès et le bien-être de chacun, unis en tant que « One Concentrix ». Ensemble, nous aidons les marques les plus connues au monde à améliorer leurs activités grâce à des expériences client (CX) exceptionnelles, à une innovation continue et aux technologies les plus avancées. Et en raison de la croissance continue, nous recherchons plus de personnes talentueuses pour rejoindre notre objectif, des personnes aussi passionnées par la fourniture d’expériences de service client exceptionnelles que nous. CROISSANCE DE CARRIÈRE ET DÉVELOPPEMENT PERSONNEL Il s’agit d’une excellente occasion de « travail à domicile » qui vous permettra de réinventer un tout nouveau parcours professionnel et de développer des « amis pour la vie » en même temps. Nous vous donnerons toute la formation, les technologies et le soutien continu dont vous aurez besoin pour réussir. De plus, chez Concentrix, il y a un réel potentiel de croissance professionnelle (et personnelle). En fait, environ 80% de nos gestionnaires et dirigeants ont été promus de l’interne ! C’est pourquoi nous offrons une gamme de programmes d’apprentissage et de développement de la direction GRATUITS conçus pour vous mettre sur la voie du genre de carrière que vous avez toujours envisagé. CE QUE VOUS FEREZ DANS CE RÔLE En tant que Conseiller bilingue Français et anglais de Concentrix travaillant à domicile, vous : Gérer les clients via des appels entrants, des appels sortants ou via Internet en utilisant leur langue préférée (anglais ou Français) Aider les clients à l’aide d’un guide de flux d’appels pour répondre aux questions et résoudre les problèmes Suivre, documenter et récupérer des informations dansles bases de données Investir dans le succès de nos clients en offrant des produits et/ou services supplémentaires VOS QUALIFICATIONS Vos compétences, votre intégrité, vos connaissances et votre compassion sincère apporteront de la valeur et du succès à chaque interaction avec le client. Les autres qualifications pour notre rôle Conseiller bilingue Français et anglais (à distance) comprennent : La capacité de parler couramment l’anglais et Français écrite ou orale. Un diplôme d’études secondaires ou GED Un minimum de six mois d’expérience en service à la clientèle ou en vente pour des postes de vente Un environnement calme et sans distraction pour travailler dans votre résidence pour des postes de travail à domicile Offrir un service exceptionnel Solides compétences en navigation informatique et connaissances en informatique; Familiarité avec iOS et/ou macOS, ou une technologie comparable est préférable Internet haute vitesse et un téléphone intelligent CE QU’IL Y A POUR VOUS L’un de nos énoncés de culture Concentrix dit : « Nous sommes fanatiques de notre membre du personnel. » C’est pourquoi nous investissons considérablement dans notre peuple, notre infrastructure et nos capacités afin d’assurer le succès à long terme de nos équipes et de nos clients. Et nous investirons en VOUS pour vous aider dans votre cheminement de carrière et dans votre développement personnel. Dans ce rôle, vous recevrez également : Salaire de base : $17.00 - $25.00 CAD par heure Possibilités d’incitatifs et de primes de performance Formation rémunérée Un ordinateur de travail, selon le poste, mais n’est pas garanti. Les exigences spécifiques basées sur le poste seront discutées en profondeur avec un recruteur. Régime enregistré d’épargne-retraite, assurance médicale, dentaire, assurance de la vue après 90 jours et un programme d’aide aux employés qui comprend des séances de counseling gratuites, pour répondre aux besoins de chaque membre de l’équipe et bien plus encore. Postulez et parlez à un recruteur dès aujourd’hui! RÉINVENTEZ LA MEILLEURE VERSION DE VOUS ! Si tout cela vous semble être la prochaine étape parfaite de votre carrière, nous voulons avoir de vos nouvelles. Postulez dès aujourd’hui et découvrez pourquoi plus de 300 000 personnes à travers le monde appellent Concentrix leur « employeur de choix » – fièrement unis sous le nom de « One Concentrix ». Les énoncés ci-dessus visent à décrire la nature générale et le niveau de travail effectué par les personnes affectées à ce poste. Il ne s’agit pas d’une liste exhaustive de toutes les responsabilités, tâches ou compétences. Concentrix est un employeur garantissant l'égalité des chances et respecte toutes les lois sur les pratiques d'emploi équitables. Nous nous engageons à fournir un lieu de travail exempt de discrimination et de harcèlement illégaux et à interdire la même chose aux employés, candidats ou autres personnes couvertes par des collègues, des superviseurs, des gestionnaires ou des tiers en fonction de la race, de la couleur, de la religion, de la croyance, du sexe d'une personne. , orientation sexuelle, identité de genre, origine nationale, ascendance, âge, statut d'ancien combattant, handicap non lié aux exigences de l'emploi, origine ethnique, informations génétiques, service militaire, appartenance syndicale, affiliation politique, état civil et grossesse ou autre statut protégé. - Title: Customer Service / Technical Support Representative-Remote (Bilingual: French/English) Location: Ontario, Canada JOB DESCRIPTION The Customer Service / Technical Support Representative-Remote (Bilingual: French/English) works from home and interfaces with customers via inbound/outbound calls and/or via the Internet. This position provides customer service support and resolution of routine problems and questions regarding client products and/or services. REIMAGINE YOUR CAREER Are you looking for a “work from home” career change with a forward-thinking global organization that nurtures a true people-first, inclusive culture and a genuine sense of belonging? Would you like to join a company that earns “World’s Best Workplaces,” “Happiest Employees,” and “Best Companies for Career Growth” awards every year? Then a remote Customer Service / Technical Support Representative (Bilingual: French/English) at Concentrix is just the right place for you! As a remote Customer Service / Technical Support Representative (Bilingual: French/English), you’ll join an organically diverse team from 40 countries where ALL members contribute and support each other’s success and well-being, united as “One Concentrix.” Together, we help the world’s best-known brands improve their businesses through exceptional customer experiences (CX), ongoing innovation, and the most cutting-edge technologies. And due to continued growth, we’re looking for more talented people to join our purpose, people as passionate about providing exceptional customer service experiences as we are. CAREER GROWTH AND PERSONAL DEVELOPMENT This is a great “work from home” opportunity that will allow you to reimagine an all-new career journey and develop “friends for life” at the same time. We’ll give you all the training, technologies, and continuing support you’ll need to succeed. Plus, at Concentrix, there’s real career (and personal) growth potential. In fact, about 80% of our managers and leaders have been promoted from within! That’s why we offer a range of FREE Learning and Leadership Development programs designed to set you on your way to the kind of career you’ve always envisioned. WHAT YOU WILL DO IN THIS ROLE As a Customer Service / Technical Support Representative (Bilingual: French/English) working from home, you will: Handle customers via inbound calls, outbound calls, or through the internet using their preferred language (English or French) Assist customers using a call flow guide to answer questions and solve problems Track, document, and retrieve information in databases Invest in our customers’ success by offering additional products and/or services YOUR QUALIFICATIONS Your skills, integrity, knowledge, and genuine compassion will deliver value and success with every customer interaction. Other qualifications for our Customer Service / Technical Support Representative (Bilingual: French/English) role include: The ability to speak fluent English and French A high school diploma or GED A minimum of six months of customer service experience or hard sales experience for sales positions A quiet, distraction-free environment to work from in your residence for work at home positions Talent for delivering outstanding service Strong computer navigation skills and PC knowledge; Familiarity with iOS and/or macOS, or comparable technology is preferred High speed internet and a smartphone WHAT’S IN IT FOR YOU One of our Concentrix Culture Statements says, “We are fanatical about our staff.” That’s why we significantly invest in our people, our infrastructure, and our capabilities to ensure long-term success for both our teams and our customers. And we’ll invest in YOU to aid in your career path and in your personal development. In this role, you’ll also be provided with: Paid training and performance-based incentives Lucrative employee referral bonus opportunities Company networking and leadership opportunities with organized groups in the following topics: Professional Women, Black Professionals, LGBTQ+ Pride, Ability (Disabilities), and Health and Wellness Registered Retirement Savings Plan; paid PTO and holidays; medical, dental, and vision insurance; and a comprehensive Employee Assistance Program (EAP) Work-from-home convenience with company-supplied technologies Programs and events that support diversity, equity, and inclusion, as well as global citizenship, sustainability, and community support Celebrations for Concentrix Day, Team Appreciation Day, Customer Service Week, World Clean Up Day, #MyOneEarthPromise, and more REIMAGINE THE BEST VERSION OF YOU! If all this feels like the perfect next step in your career journey, we want to hear from you. Apply today and discover why over 300,000 people around the globe call Concentrix their “employer of choice” – proudly united as “One Concentrix.” Location: CAN, ON, Work-at-Home  Language Requirements: French (Required)  Time Type: If you are a California resident, by submitting your information, you acknowledge that you have read and have access to the Job Applicant Privacy Notice for California Residents Concentrix is an equal opportunity employer and complies with all fair employment practices laws. All qualified applicants will receive consideration for employment without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, ancestry, age, veteran status, disability, pregnancy, or other legally protected status. The above statements are intended to describe the general nature and duties of this position and are not intended to be comprehensive. Only qualified applicants who are legally authorized to work in Canada will be considered.Currently, this position may be performed only in the following provinces/territories: AB, BC, MB, NL, NS, ON, PE, QC, and SK.\",\n            \"location\": \"Airdrie, AB\"\n        },\n        {\n            \"id\": \"33A935022BE62D377BD26E89F420478A\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5043e8b26b0e7b50\",\n            \"jobName\": \"Remote- Bilingual Customer Service Representative-Part Time\",\n            \"companyName\": \"Phoenix A.M.D. International Inc.\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694443767851,\n            \"dateOfPosted\": 1694223944672,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We’re looking for aPART TIME Home Based - French & English Bilingual Customer Service Rep.The Bilingual Customer Service Representative is responsible for handling all communication with the end users of our products & programs while providing an exceptional customer experience to ensure that decisions are aligned with the company’s culture.Do You...Speak and write French and EnglishWork well as part of a team that is empathetic, positive, professional with high-energy?Thrive on challenges, and discovering new ways of doing things?Want to be in a job that requires you to work on things outside of your comfort zone?Want to work in an environment where progress is made, and you are the tool that moves things forward?Want to be listened to, and encouraged to use your initiative and creativity?If your answers are yes... THEN WE COULD BE THE WORK PLACE FOR YOU!What you need if you want to be the successful applicant:You learn quickly and get very passionate about getting resultsYou have the ability to effectively & professionally communicate, whether written or verbally in both English and FrenchYou have excellent customer service skills and able to work within a teamYou have excellent organization skillsYou have strong problem solving skillsYou have experience in using Excel, Outlook and WordYou have the ability to multitask and work well in a fast paced environment while under pressureWhat we bring to the table:We are a growing entrepreneurial Canadian Bilingual company in business for over 31 years, led by the 2 entrepreneurs who originally started the business. We provide lifestyle protection programs and services for the furniture, bedding, appliances and electronics retailers across North America, which are designed to enhance the experience of consumers who buy them while creating indispensable profit centers for the retailers who sell them. We are committed to innovation and being the best at what we do. We value our people with the following advantages:Fun Company EventsStrong Charity & Community SupportGreat Environment to Work inPart of a Growing Community in BowmanvilleJob Types: Part-time, PermanentSalary: $18.00 per hourWork RemotelyJob Types: Part-time, PermanentPart-time hours: 15-30 per weekSalary: $17.00 per hourBenefits:Store discountWork from homeSchedule:Day shiftMonday to FridayCOVID-19 considerations:Qualified candidates will need to be fully vaccinated in order to be eligible for this position.-All employees are following COVID protocols Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Language:French and English (required)Work Location: Remote\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"EB6FF5ED135AA2EC75941A290C1E215C\",\n            \"cityName\": \"163 Alberni Highway, Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3c3d42fe6fdf6dbc\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mid Island Liquor\",\n            \"rowSalary\": \"From $17.75 an hour\",\n            \"date\": 1694443752485,\n            \"dateOfPosted\": 1694391393803,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Liquor is looking for part-time Customer Service Representatives at our Central Parksville Liquor Store.Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you!Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in the operations of the store, including but not limited to handling customer transactions, responding to customer questions and concerns in a professional manner, creating displays and stocking shelves, and ensuring store and merchandise are neat and organized.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Representative today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. Previous retail experience is preferred, and you must have a valid Serving it Right Certificate (or be willing to get certified prior to your first day).Who we are:Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve.Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op).We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.Job Types: Permanent, Part-timeSalary: From $17.75 per hourBenefits:Employee assistance programFlexible scheduleOn-site parkingStore discountSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"A03FA86B6044036387A2F12FAD0D8D00\",\n            \"cityName\": \"950 McMaster Way, Kamloops, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e4ef568fc3c433c2\",\n            \"jobName\": \"Inside Sales Customer Service\",\n            \"companyName\": \"Westlund Industrial Supply\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694443169714,\n            \"dateOfPosted\": 1692745101120,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.67094040000001,\n                    \"lon\": -120.3752202\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kamloops\",\n                \"formattedAddress\": \"McMaster Way, Kamloops, BC V2C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Thompson-Nicola\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kamloops\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"WESTLUND, a division of EMCO We offer a fun, fast-paced and dynamic workplace. We work as a team, share core values, and support each other’s growth and development. As our teammate, you will have the opportunity to continually develop your skills through ongoing training, have the opportunity to be innovative and try new things, and work alongside passionate colleagues with diverse backgrounds and experiences. We are a team of enthusiastic individuals who are dedicated to meeting and exceeding the needs of the customers we serve.Job DescriptionAs an Customer Service Representative, you will be responsible for interacting with customers primarily over the phone and by email. You will provide excellent customer service to generate and close sales and meet or exceed sales and gross profit targets to increase profit sharing while building long lasting loyal customer relationships.Additional duties will include:Process sales orders and turn quotations into orders through customer interactions, primarily over the phoneMaintain relationships with established key accounts and ensure that their requests are being metUse interpersonal skills to strengthen relationships with existing customers and increase market shareAct as a project manager (as needed) for large projects, which includes keeping detailed records of lead times and communicating lead time updates to the customerProspect and develop new customers using outbound calling campaignsMeet or exceed the Profit Centre’s gross profit and sales targetsAssist counter sales during peak hours and continue to drive business through face-to-face customer interactionsInvestigate and resolve customer issues such as pricing deductions and product returnsExpedite customer material with vendors when requiredFollow up with customers on quotes and outstanding ordersSupport the Outside Sales and Counter Teams with customer orders and issuesBe an integral part of the team supporting all activities that occur at the Profit CentreCommunicate to the Profit Centre Manager and Credit Department any changes in a customer’s business that might cause a credit riskPerform other tasks as requested by the Profit Centre ManagerQualificationsCollege and/or University degreeA minimum of 1 year of experience in customer service or inside sales/contractor experience preferredProficient in the use of Microsoft Office softwareOutstanding customer service and telephone skillsAbility to prospect new customers and increase sales with existing accountsPossess a high level of attention to detail and strong organizational abilities; must be able to multitask and balance many different deadlinesStrong written and verbal communication skills to build and maintain strong working relationships with customers, vendors, and teammatesAbility to identify customer requirements and provide profitable solutions and close the saleAble to learn and operate the applicable software system used to process ordersIntermediate math skillsPreferred Skills:Previous experience with or knowledge of weld fittings, pipe , valves and other products sold at the Profit CentreExperience using ERP SystemAdditional InformationWhy Join Our Team?EMCO Corporation is one of Canada’s largest integrated wholesale distributors of plumbing, HVAC, waterworks, and industrial products for the construction industry. We have endless opportunities for you to grow and develop in your career and a culture that prides itself in supporting you every step of the way!In addition, we will offer you:Great mentors and on-the-job trainingGrowth potential with competitive salary, benefits, and profit sharingA career with a solid, stable company with strong core valuesParticipation in our pension plan with employer contributionsWork-life balanceJob Type: Full-timePay: $18.00-$22.00 per hourBenefits:Company pensionDental careExtended health careLife insuranceProfit sharingRRSP matchWellness programSchedule:Monday to FridaySupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Kamloops, BC V2C 6K2: reliably commute or plan to relocate before starting work (required)Experience:Sales: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Mcmaster Way, Kamloops, BC\"\n        },\n        {\n            \"id\": \"40E3675B714C6FE9A50B019F4E768552\",\n            \"cityName\": \"Sydney, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7b90eac002dcf5c0\",\n            \"jobName\": \"Cashier, Customer Service\",\n            \"companyName\": \"Pipers & Puffs Smoke Shop Limited\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694442583770,\n            \"dateOfPosted\": 1694442583580,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.1367899,\n                    \"lon\": -60.19422399999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sydney\",\n                \"formattedAddress\": \"Sydney, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Cape Breton Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sydney\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsScreening questions Are you available for shift or on-call work? Are you available for the advertised start date? Are you currently legally able to work in Canada? Do you have previous experience in this field of employment?Work Term: PermanentWork Language: EnglishHours: 20 hours per week\",\n            \"location\": \"Sydney, NS\"\n        },\n        {\n            \"id\": \"ABE020D3EC211417A98A530D29B39123\",\n            \"cityName\": \"Saint John, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=95c705721e917f5f\",\n            \"jobName\": \"Customer Service Agent Outbound (Remote) - New Brunswick\",\n            \"companyName\": \"National Diabetes Trust\",\n            \"rowSalary\": \"$15.70 an hour\",\n            \"date\": 1694442491618,\n            \"dateOfPosted\": 1694239175629,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our Organization The National Diabetes Trust is Canada’s largest charitable clothing and small household good collection service. With more than 5,000 donations bins and an active home pick-up service in communities across Canada (excluding Quebec), we collect unwanted gently used clothing and household items, using them to raise much-needed funds for Diabetes Canada.  Each year, the program diverts more than 100 million pounds of clothing and household items from landfill sites across Canada. As an employee on the National Diabetes Trust team, you are part of our national coverage in 2,500 communities, with 28 operations and 100 trucks. Join a team that is making a difference raising money for life altering charitable programs, all while helping the environment. What We Offer:Work from the comfort of your own homeEmployee Assistance Program (EAP)Registered Pension Plan (100% Employer-paid) once eligibility criteria are metCorporate discounts through Perkopolis, Value Village and GoodLife FitnessHours of Work* This role will work up to 29 hours per week in 6-hour daily time blocks, including weekends. A consistent schedule will be developed in collaboration with operational needs.  About the Outbound Customer Service Agent Role Reporting to the Virtual Contact Centre Supervisor, this role is responsible for soliciting, scheduling and confirming donation pick ups of reusable clothing and small household goods from the public. While there is no sales component to this role – we are seeking outgoing individuals with a focus on providing a “best in class” customer experience. Highlights of the role include:To solicit, schedule and/or confirm donations of reusable clothing and miscellaneous itemsThis is accomplished by reading from a standardized script to verify donor informationTo meet or exceed KPI targets and/or productivity standards as outlined by the SupervisorTo understand and promote the mission of Diabetes Canada and the National Diabetes Trust to the general publicProvide potential donors with a high level of customer service by demonstrating a professional manner, discipline and strong organizational skillsInform the Supervisor of any system or process discrepanciesMaintain accurate and up to date recordsAttend all scheduled shifts, training, and meetings as determined by the SupervisorMaintain confidentiality of donor informationAdditional duties as required, ensuring the effective operation of the Virtual Contact Centre function About You The selected candidate for this role will meet the following minimum requirements: Minimum High School Diploma6+ months of experience in customer service and/or a call centre environmentMust have in working order at all times a PC home computer, direct connect (wired) high speed internet (no Wi-Fi/router), a USB noise cancelling headset, and either an All-in-One Printer (copier, scanner, printer) OR the ability to sign documents electronically.Must have full availability between the hours of Monday-Friday 3pm-9pm EST and Saturdays and Sundays 11am -5pm EST.Strong computer skills and experience with computer databases (mouse, keyboarding, opening/closing programs, locating files, installing/uninstalling programs, updating software, basic troubleshooting)Intermediate web and email skills (internet, downloading, logging on/off, clearing history, sending, and receiving email messages, (attaching/saving/opening files), message boards, instant messagingDisciplined and organized self-starter who can succeed in a fast-paced, high volume call environment, while being able to manage multiple tasksBasic competency in Microsoft Office and AdobeAdvanced Oral and Written communication -  Diversity, Equity and Inclusion Statement At National Diabetes Trust, we are guided by our values of Accountability, Teamwork, Integrity, and Respect. We believe in the importance of Diversity, Equity and Inclusion (DEI). We are committed to bringing people together in a respectful, inclusive and supportive environment, no matter their age, gender, identity, race, ethnicity, religion, income, sexual orientation, or where they live. In July of 2020, we signed the BlackNorth Initiative CEO pledge and will hold ourselves accountable in meeting those commitments.  How to Apply Must be legally eligible to work in Canada and, where applicable, must have a valid work permit or study permit that allows the candidate to fulfill the requirements of the role.NDT welcomes applications from all qualified candidates, including women, Indigenous peoples, persons with disabilities, and members of visible minorities. We value a diverse workforce that reflects the communities we serve.We are committed to accommodating people with disabilities as part of our hiring process. If you have special requirements, please advise us during the recruitment process.We thank all interested applicants; however, only those selected for an interview will be contacted. INDNDTL\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"2A9FE02CDD0712CB2403C14D299397A4\",\n            \"cityName\": \"1101 Rutherford Road, Vaughan, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b8239aaf5b11eaf5\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"4906 - Starbucks - Rutherford & Thornhill Wood\",\n            \"rowSalary\": \"From $17.25 an hour\",\n            \"date\": 1694442429172,\n            \"dateOfPosted\": 1686131653556,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.82490079999999,\n                    \"lon\": -79.56353349999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Rutherford Rd, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Working in a Starbucks® store is different from any other job. You are creating moments of connection with our customers every day, all around the world. You will handcraft delicious beverages and build relationships with our customers and with your fellow partners. We offer great benefits and an environment that is truly welcoming.Job Types: Full-time, Part-time, PermanentPart-time hours: 20 per weekSalary: From $17.25 per hourBenefits:Company pensionDental careDisability insuranceDiscounted or free foodEmployee assistance programEmployee stock purchase planExtended health careFlexible scheduleLife insurancePaid time offProfit sharingRRSP matchStock optionsStore discountTuition reimbursementVision careWellness programFlexible Language Requirement:English not requiredSchedule:8 hour shiftDay shiftHolidaysMonday to FridayNight shiftWeekend availabilitySupplemental pay types:TipsCOVID-19 considerations:wearing masks is optional ,however we follow ontario Health canada guidance .Work Location: In person\",\n            \"location\": \"Rutherford Road, Vaughan, ON\"\n        },\n        {\n            \"id\": \"37BD7757F98CBD1BCA09FE57E7205904\",\n            \"cityName\": \"Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b20b5b725ac0dc88\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Mackay's Auto & Custom Limited\",\n            \"rowSalary\": \"$35,000–$45,000 a year\",\n            \"date\": 1694442372693,\n            \"dateOfPosted\": 1694214889909,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 1 year to 2 yearsExperience: 7 months to less than 1 yearor equivalent experience Tasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Issue receipts and other forms Maintain records and statistics Perform general office duties Receive payments Computer and technology knowledge Internet MS Excel MS Outlook MS Windows Security and safety Basic security clearance Work conditions and physical capabilities Attention to detail Fast-paced environment Work under pressure Screening questions Are you available for the advertised start date? Are you currently legally able to work in Canada? Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Health benefits Dental plan Health care plan Paramedical services coverage Vision care benefits Long term benefits Group insurance benefits Life insuranceWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"7CD81D1CF24165B9BA8C4B8E13DBCF50\",\n            \"cityName\": \"353 Market Avenue, Grand Forks, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f0169f6e7c30f968\",\n            \"jobName\": \"Barista/Customer Service/Kitchen\",\n            \"companyName\": \"The Board Room Cafe\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694442237124,\n            \"dateOfPosted\": 1693590416836,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.032146,\n                    \"lon\": -118.4380813\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grand Forks\",\n                \"formattedAddress\": \"Market Ave, Grand Forks, BC V0H 1H0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kootenay Boundary\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grand Forks\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"- Maintain regular and consistent attendance and punctuality, with or without reasonable accommodation- Available to work flexible hours that may include early mornings, evenings, weekends, and holidays- Meet store operating policies and standards, including providing quality beverages and food products, cash handling and store safety and security- Engage with and understand our customers through clear and pleasant communication- Able to perform many tasks within the store during each shiftJob Types: Full-time, Part-timePart-time hours: 15-20 per weekSalary: From $16.75 per hourExpected hours: 15 – 35 per weekBenefits:Casual dressDiscounted or free foodFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftDay shiftHolidaysOn callWeekends as neededSupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Market Avenue, Grand Forks, BC\"\n        },\n        {\n            \"id\": \"DD1330D49914F5CEF8AD833DBE52BA51\",\n            \"cityName\": \"Par2Pro in Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=506594c2734518e5\",\n            \"jobName\": \"Full-Time Golf Simulator Industry Customer Service Rep In South Central Edm\",\n            \"companyName\": \"Par2pro\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694442137984,\n            \"dateOfPosted\": 1692745686496,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Do you enjoy talking to people? More important, do you enjoy helping people? Even more important, do you enjoy working as part of a team where everyone's ideas are valued? If this sounds like you, please submit your resume!We are a fully Canadian owned company that, for the past 15 years, has been custom designing and selling fully built out residential and commercial grade golf simulator and analyzer rooms to clients all around the world. During this time we have built a reputation of trust and quality within the golf simulator industry.We are searching for a mature person who understands what \\\"Great\\\" customer service truly is and knows how to provide it. Our clients are of vital importance to us which is why we work so hard to provide them with the absolute best experience possible. Our company belief is not to push or \\\"sell\\\" anything to our clients. We instead answer their questions and help guide them to the best golf simulator system that fits both their needs and budget.As this Full Time Customer Service Representative (CSR) position is typically our client's first impression of our company, it is most important that you are professional, polite, accurate and thorough. We are not a typical walk-in retail store, meaning the CSR's mainly handle incoming phone call and email inquiries.This position has the ability to be promoted to Golf Simulator Product specialist whom will have gained extensive knowledge and experience from reading, watching, and using the systems both online and in-house.Some of the tasks and required skills for this important role are:- Having at least 2 full years of previous work related experience using CRM software and similar programs, plus be able to use a Windows computer and MS Office programs efficiently.- Accurate and detailed data entry with a minimum 60 wpm typing speed is needed.- You must be able to read, write/type & speak English fluently & flawlessly as your first language.- Any experience with and/or knowledge of Golf and Golf Simulators would be a great asset.- French bilingual ability would also be a great asset.- Have reliable transportation to and from our office location.You must take pride in your work and love being on the front line for our business. You are an energetic, positive minded, hard-working, very detailed and accurate, friendly person with a great attitude. It is extremely important that you are able to work independently and be willing to go the extra mile for our clients and our company.You are required to complete the Indeed Questions and Assessments emailed to you upon submitting your resume prior to being considered for this job.Only candidates who already live locally in Edmonton and the immediate surrounding area will be considered.We look forward to hearing from you, however only those we are interested in will be contacted.Good Luck!Job Types: Full-time, PermanentSalary: $20.00-$24.00 per hourBenefits:Casual dressCompany eventsDental careDisability insuranceExtended health careLife insuranceOn-site parkingStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridaySupplemental pay types:Bonus payCOVID-19 considerations:All current AHS health restrictions are in place.Application question(s):Why do you feel that you would be a good fit for this position?Experience:Phone & Email Customer Service: 3 years (required)Work Related QuickBooks (or equivalent)): 2 years (required)Work Location: In person\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"918B2E3AD4AFFEFDB11AA0E33F7F60F4\",\n            \"cityName\": \"6461 Metral Dr, Nanaimo, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e430e586a16eae07\",\n            \"jobName\": \"Customer Service/Pizza Maker\",\n            \"companyName\": \"Domino's Pizza | Ptza Nation Bc\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694442134025,\n            \"dateOfPosted\": 1693590277573,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.22391100000001,\n                    \"lon\": -124.0426174\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Nanaimo\",\n                \"formattedAddress\": \"Metral Dr, Nanaimo, BC V9T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Nanaimo\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Domino's Pizza is hiring immediately for Customer Service Representatives (Pizza Cook/Team Member) to join their team! Job type:Part time, Permanent We are searching for qualified customer service reps with personality and people skills. We're growing so fast it's hard to keep up, and that means Domino's has lots of ways for you to grow (if that's what you want), perhaps to management, perhaps beyond. Whether it's your hobby, main-gig, or supplemental job, drop us a line. We're bound to have just the thing for you. We take pride in our team members and our team members take pride in Domino's Pizza! Being the best pizza delivery company in the world requires exceptional team members working together. At Domino's Pizza, our people come first! As part of our crew, your responsibilities will include: Stocking ingredients from delivery area to storage, work area, walk-in cooler. Preparing products Receiving and processing telephone orders. Cleaning equipment and facility approximately daily. Benefits of working at Domino's Pizza: Flexible schedules Competitive wages for all Team Members Store discounts Fun working environment Additional pay on top of wage with tip sharing program Domino's is an equal opportunity employer. REQUIREMENTS At Domino's Pizza, Our Most Important Ingredient is Our People! We offer employment opportunities within our franchise stores. Take the first step in joining our team, and you'll find opportunities you won't find anywhere else in the industry!\",\n            \"location\": \"Metral Drive, Nanaimo, BC\"\n        },\n        {\n            \"id\": \"C8479F5406EA626F5466635B2014B240\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=073f4dacf69c1a8a\",\n            \"jobName\": \"Customer Service/Gamemaster\",\n            \"companyName\": \"Escape Hour\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694442103145,\n            \"dateOfPosted\": 1694215067923,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Escape Hour is one of the premier escape rooms. With, interactive game masters, full sound and set design, these games boast a one of a kind, immersive escape game experience.Who we are looking for:Great Game Masters are the key to our customers having an exceptional memory inducing experience; so stellar customer service skills are mandatory. Game Masters create the energy and excitement necessary for customers to begin their adventure while calming fears and providing the help and clarity teams need to have a one of a kind experience. Game Masters maintaining a professional, service-oriented focus and deliver flawless experiences to our customers by running our live events.Key Qualifications:Excellent customer service skills (total customer oriented focus)Positive and energeticSolid work ethicStrong Presentation skillsStrong attention to detailGreat communication skills and practices (verbal and written)Invigorated by constant interactions with customersPersonable, able to peak customers interest to their event settingAble to handle feedback, coachableInterested in personal growth and learningMatureTeam playerAbility to set up decorationsAdditional details:Game Masters greet customers and deliver energetic pre-game introductions (prime customers) while clearly explaining safety rules and other guidelines. When the game is on, Game Masters remotely monitor customers, provide assistance when necessary, debrief teams when games end, take group photos, and reset event spaces for the next group. In addition, with experience Game Masters are called upon to help maintain certain game props and can serve as team leaders.Game Masters are the face of the company, and are proud to represent Escape Hour while receiving great satisfaction from seeing customers thrilled by their experience with us.If you feel that Escape Hour offers an opportunity and culture in which you will excel, please email us with your resume and why you are the perfect candidate for Escape Hour.Saturday/Sunday availability is a must.Job Types: Full-time, Part-time, PermanentPart-time hours: 20 per weekSalary: $15.00-$16.00 per hourFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftEvery WeekendWeekends as neededCOVID-19 considerations:Following all AHS guidelinesApplication question(s):Are you available to work every Friday, Saturday, Sunday?Education:Secondary School (preferred)Experience:customer service: 2 years (required)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"404DCED84C0CF25EB03DE508F85CC2D8\",\n            \"cityName\": \"169 Hurontario Street, Collingwood, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9c05b66060cdcc5d\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Stuart Ellis Pharmacy\",\n            \"rowSalary\": \"From $17.55 an hour\",\n            \"date\": 1694441939502,\n            \"dateOfPosted\": 1692721232496,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.4915959,\n                    \"lon\": -80.21520579999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Collingwood\",\n                \"formattedAddress\": \"Hurontario St, Collingwood, ON L9Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Collingwood\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a locally owned and operated family Pharmacy located in downtown Collingwood. Stuart Ellis IDA Pharmacy has been serving the community for over 75 years!We are looking to hire a Full Time/Part Time Cashier/Customer Service Representative to join our team.Duties include:-Experience in Retail/Customer Service work experience preferred.-Operate a cash register with prompt and accurate processing.-Merchandising products and setting up displays as needed.-Must possess excellent communication and customer service skills.-Stocking shelves, cleaning and checking expiration dates.-Be able to Multitask.-Be Flexible, Reliable and Trustworthy.-Available to work some evenings and weekends (evenings are until 7pm on weekdays and 5pm on weekends).-We offer benefits and an employee discount program.Job Types: Full-time, Part-timeSalary: From $17.55 per hourWork setting:Drug storeApplication deadline: 2023-09-30\",\n            \"location\": \"Hurontario Street, Collingwood, ON\"\n        },\n        {\n            \"id\": \"CB5CD596617E9529D8E50C8F4089F441\",\n            \"cityName\": \"IGA Penticton in Penticton, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4c1282fdb5ea00bf\",\n            \"jobName\": \"Deli Clerk/Customer Service\",\n            \"companyName\": \"Iga Penticton\",\n            \"rowSalary\": \"Up to $20 an hour\",\n            \"date\": 1694441760278,\n            \"dateOfPosted\": 1668577364280,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.4991381,\n                    \"lon\": -119.5937077\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Penticton\",\n                \"formattedAddress\": \"Penticton, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Okanagan-Similkameen\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Penticton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"IGA Penticton is seeking highly motivated individuals to join our Deli Management TeamThe candidates must posses a passion for Customer Service while working in a Team EnvironmentThe positions will be either part time or full time depending on the candidates intentions.Experience is the retail food service industry in an asset, however training will also be provided.Applicants are required to work evenings and weekends.Job Types: Part-time, Full-timeSalary: Up to $20.00 per hourBenefits:Dental careDiscounted or free foodExtended health careFlexible schedulePaid time offTuition reimbursementSchedule:8 hour shiftCOVID-19 considerations:The store has a regulated Worksafe BC Covid-19 plan in place to protect the safety of our Employees and Customers\",\n            \"location\": \"Penticton, BC\"\n        },\n        {\n            \"id\": \"3F76871B8D216E7EF2754C67F3BC00A2\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=953b869bd414f4f4\",\n            \"jobName\": \"Bilingual Customer Service Representative (Hybrid)\",\n            \"companyName\": \"Belimo Americas\",\n            \"rowSalary\": \"$48,000–$58,000 a year\",\n            \"date\": 1694440562815,\n            \"dateOfPosted\": 1692737489189,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Belimo is a global leader in the development, production and marketing of actuator solutions for controlling heating, ventilation and air conditioning systems. Actuators, control valves and sensors make up the company's core business.JOB SUMMARYThe Bilingual Customer Service Representative is the primary contact between Belimo Customer Service and our external customers. This position provides timely responses to customer correspondence, completes the order fulfilment process and assists in closing out any action items from customer communications.COMPANY'S MISSION AND VALUESThe objectives of this position are fully integrated to the objectives of the Company’s Mission and Values. It is the responsibility of all employees to perform their duties in accordance with Company Policy.REPORTING STRUCTUREThe Bilingual Customer Service Representative is part of the Customer Service Team and reports to the Office Manager, Customer Support. This position bear’s full responsibility for all agreed upon goals and objectives.JOB RESPONSIBILITIESReceive direct correspondence from external customers and Belimo outside sales staff. Provide timely responses and assist in closing out any action items from such communications.Same day data entry of customer purchase orders into the ERP system. Order receipt can come in the form of e-mail, fax, or phone.Provide same day order confirmations and clarify order discrepancies.Support order status requests, credits/debits, quotes, answering customer questions and limited processing of return material authorizations.Expedite customer orders and follow up to ensure completion.Provide support of SAP ERP system to internal users regarding customer service issues.Generate customer service monthly metrics (e.g. SAP order entry & phone statistics) and reports to ensure customer satisfaction.Perform other duties to support Sales and marketing as needed (e.g. Trade show coordination, Canada customer newsletter content.)REQUIREMENTSAt least 2 years of direct customer service experience in a fast paced order environment is preferred.A background in supporting manufacturing processes or technical products is a plus.Minimum level of education is an Associate’s Degree or an applicable business program certification.Ability to interpret complex business documents including customer purchase orders.Ability to professionally communicate with customers both verbally and in writing in both English and French.Proficient use of personal computer, fax machine, and other supporting business equipment is a must.Proficient use of the Microsoft Suite of products (Outlook, Word, and Excel).Proficient typing skills with high level of accuracy.Experience with Microsoft Lync a plus.High degree of time management and organization required.Must have excellent interpersonal skills and maintain both a proactive and positive attitude.Must be Bilingual (English/French).We offer a competitive salary and an excellent benefits package including a performance bonus.Job Type: Full-timePay: $48,000.00-$58,000.00 per yearBenefits:Casual dressCompany eventsDental careDisability insuranceEmployee assistance programEmployee stock purchase planExtended health careLife insuranceOn-site parkingPaid time offRRSP matchTuition reimbursementVision careWellness programWork from homeSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"CB921E98A1F631F74C65E2ABEF728CF2\",\n            \"cityName\": \"360 Norwich Ave, Woodstock, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2bcb23c9ed21eadb\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Domino's Pizza Woodstock\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694440421948,\n            \"dateOfPosted\": 1693588666494,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1201853,\n                    \"lon\": -80.73938389999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Woodstock\",\n                \"formattedAddress\": \"Norwich Ave, Woodstock, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Oxford County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Woodstock\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Domino's Pizza is now hiring Customer Service RepresentativesWe are happy that you are interested in joining the Domino’s team!Customer Service Representatives (CSR) are primarily responsible for providing exceptional customer service, making great Domino’s Pizza products and maintaining cleanliness of the store. CSR’s at Domino’s work in a team environment and they are expected to be positive and productive team players. Every CSR plays a part in helping the store achieve its goals for customer service, sales growth, operational reviews and cost management, therefore, their attention to these targets is paramount.The responsibilities are guided by the Domino’s Pizza of Canada’s policies and procedures. The standards can in some instances be modified by Empire Pizza or the CSR’s supervisor.Other responsibilities may include being a shift leader. Shift leaders are responsible for completing all shift tasks as laid out in the policies, manage other team members, balance finances and inventory and train team members. Shift leaders may be required to attend workshops to further develop their skills.CSR’s are required to attend to their scheduled shifts on-time, in complete uniform and with positive attitudes. During some shifts, the CSR may be required to help promote the business and do some local store marketing.Although schedules are typically posted a few days early, CSR’s may be required to come to work on short notice or perform additional tasks outside of this description.Job Type: Part-timePart-time hours: 10-30 per weekSalary: $15.50-$16.50 per hourExpected hours: 10 – 30 per week\",\n            \"location\": \"Norwich Ave, Woodstock, ON\"\n        },\n        {\n            \"id\": \"54DC58B5B3AE6C34F8F9DDCDE31DEF52\",\n            \"cityName\": \"Trigger Industries Inc in Crossfield, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b21e68cff72155d7\",\n            \"jobName\": \"Automotive Product Advisor And Customer Service Representative\",\n            \"companyName\": \"Trigger Industries Inc\",\n            \"rowSalary\": \"$22–$28 an hour\",\n            \"date\": 1694440374547,\n            \"dateOfPosted\": 1693595912636,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.4311767,\n                    \"lon\": -114.0260774\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Crossfield\",\n                \"formattedAddress\": \"Crossfield, AB T0M 0S0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Crossfield\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Trigger Industries is a busy manufacturing company specializing in designing and building custom truck parts. We are in need of a personable and knowledgeable individual to run our front end.Roles and Responsibilities:Advising customers on products and fitment. Educating on custom optionsProcessing ordersAnswering customer questions via phone, email and social media messagesEnsuring orders are fulfilled and shipped correctly and in a timely mannerSocial Media management may be included, based on the candidateQualifications:2+ years of experience in customer serviceMust be organized, detail oriented and able to multitaskExcellent communication with customers and teamAutomotive and customization knowledge and experience is an assetWhy work at Trigger?Competitive compensation based on experienceFull time position Monday to Friday 7am - 5pmWorking in a friendly team environmentWork RemotelyNoJob Type: Full-timeSalary: $22.00-$28.00 per hourExpected hours: 40 per weekSchedule:Monday to FridayExperience:Automotive Industry: 1 year (preferred)Customer Service: 1 year (preferred)Licence/Certification:Drivers License (required)Work Location: In person\",\n            \"location\": \"Crossfield, AB\"\n        },\n        {\n            \"id\": \"78470C0E6D6D7F887ECC167F846901BC\",\n            \"cityName\": \"1653 Boul Des Promenades, Saint-Hubert, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=481fbe0d31cabfc4\",\n            \"jobName\": \"Caissier(Ère), Service à La Clientèle / Cashier (27), Customer Service\",\n            \"companyName\": \"Meubles Rd\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694440363070,\n            \"dateOfPosted\": 1692714840826,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5039691,\n                    \"lon\": -73.3833305\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Longueuil\",\n                \"formattedAddress\": \"Bd des Promenades, Longueuil, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Longueuil\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Viens faire partie des meubles!Plaisir : Ici, on meuble notre quotidien avec plaisir!Autonomie : Ici, on ne s’enfarge pas dans les fleurs du tapis!Débrouillardise : Ici, on assemble des meubles, même sans plan!Innovation : Ici, on ne déplace pas juste des meubles, on déplace des idées!Développement durable : Ici, on met la table pour un avenir meilleur!Pourquoi tu nous diras ? Parce que des choses merveilleuses t’attendent : une équipe de feu, une culture d’entreprise unique, du plaisir garanti, des possibilités de progression, un salaire compétitif, des avantages sociaux qui répondent à tes besoins, des programmes de santé et bien-être, de la conciliation travail-famille, de la reconnaissance à la saveur RD, des rabais employés et des activités sociales hautes en couleur!Voici ce que nous te proposons :Accueillir la clientèle avec le sourire et répondre aux demandes des clients au besoin;Répondre au téléphone et aux courriels;Garder son environnement de travail propre et dégagé;Préparer les contrats et veiller à la facturation, à l’aide du système informatique (Meublex);Assurer le suivi des dossiers;Balancer la caisse et le TPV;Voir à l’affichage des prix en magasin;Dynamique, débrouillarde, enthousiaste, vive d’esprit et autonome;Possédant beaucoup d’entregent;Calme, polie et courtoise;Possédant des connaissances en informatique;Ayant de l’expérience pertinente reliée au service à la clientèle et être reconnue pour son professionnalisme et son excellente approche client;Tu te reconnais? Joins-toi aux meubles, on a gardé une place juste pour toi!___________________________________________________________________Come be part of the furniture!Pleasure: Here, we furnish our daily lives with pleasure!Autonomy: Here,we don’t get caught up in insignificant details!Resourcefulness: Here, we assemble furniture even without a plan!Innovation: Here, we don’t just move furniture, we move ideas!Sustainable development: Here, we set the table for a better future!Why you say? Because marvellous things are waiting for you: a team on fire, a unique business culture, guaranteed pleasure, advancement opportunities, a competitive salary, benefits that answer your needs, health programs, work and family balance, recognition with an RD flavor, employee rebates on our products and fun social activities!Here is our proposition to you:● Welcome customers with a smile;● Handle queries from the customers if need be;● Answer the phone (according to our protocol) and emails;● Contribute to a great ambiance in the store;● Keep a clean and unobstructed workspace;● Prepare contracts and take care of invoicing, using our operating software (Meublex);● Follow up on files;● Balance the cash and the POS terminal;● Display in-store prices;● Classify documents;● Provide excellent customer service;● Make sure that the company objectives and policies are implemented;● Show a dynamic, resourceful, enthusiastic, bright and autonomous personality;● Have great interpersonal skills;● Be calm, polite, and courteous;● Have computer skills and knowledge;● Have relevant experience in regards to customer service and be known for his/her professionalism and excellent customer approach;● Experience with the Meublex operating system (an asset);You recognize yourself? Join our furniture, we kept a place just for you!Type d'emploi : Temps plein, PermanentSalaire : 16,00$ à 20,00$ par heureAvantages :Réductions TarifairesStationnement sur placeJours de travail :Toutes les fins de semaineQuarts de travail :Quart de jourLieu du poste : En présentiel\",\n            \"location\": \"Boul Des Promenades, Saint-Hubert, QC\"\n        },\n        {\n            \"id\": \"8F98868A03921787015181C1A64F4EA3\",\n            \"cityName\": \"Greater Toronto Area, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dbffbd227b83def4\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Bilingualsource\",\n            \"rowSalary\": \"$21–$26 an hour\",\n            \"date\": 1694438188214,\n            \"dateOfPosted\": 1693589315886,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.0383744,\n                    \"lon\": -79.1999949\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Greater Toronto Area, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Opportunity: Bilingual French Customer Service (Recent Grad)Are you a recent graduate with a strong command of both English and French? Are you looking to kick-start your career in a dynamic and diverse industry? We have an exciting opportunity for you!Position: Bilingual French Customer ServiceLocation: Greater Toronto Area (GTA)- Mississauga, Brampton, North York, Scarborough, Markham, Vaughn and surroundingsExperience: A few years of experience in customer service, including retail, and preferably in fields such as Insurance, Finance, Investment, or related industries.Education: University degreeWork Status: Canadian Citizenship or Permanent Residency- No student Visa for now.About Us:We are a leading company in the fields of Insurance, Finance, Investment, and more. Our team is committed to providing top-notch customer service and building lasting relationships with our clients. We value diversity, innovation, and excellence in all that we do.Role Overview:As a Bilingual French Customer Service representative, you will play a vital role in delivering exceptional service to our clients. You'll have the chance to utilize your bilingual communication skills while assisting clients with their inquiries, resolving issues, and ensuring their overall satisfaction. This role offers a supportive environment for career growth and development.Key Requirements:Strong proficiency in both English and French (spoken and written)Previous experience in customer service, including retail, and ideally in fields like Insurance, Finance, or InvestmentUniversity degree completedCanadian Citizenship or Permanent ResidencyResiding in the Greater Toronto Area (GTA)What We Offer:Competitive salary ranging between $45,000 - $55,000, depending on experience and skillsProfessional development opportunitiesCollaborative and inclusive work environmentOpportunity to work with industry expertsHow to Apply:If you are a motivated and bilingual recent graduate with a passion for providing outstanding customer service, we want to hear from you! Please submit your resume along with a brief cover letter detailing your relevant experience to farzaad.gopal@bilingualsource.comNote: Only candidates selected for an interview will be contacted.Join our team and embark on an exciting career journey with us. Apply today!Job Types: Full-time, PermanentSalary: $21.00-$26.00 per hourBenefits:Company eventsCompany pensionDental careEmployee stock purchase planExtended health careLife insurancePaid time offRRSP matchTuition reimbursementVision careSchedule:8 hour shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Greater Toronto Area, ON: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Language:French (required)Work Location: In personExpected start date: 2023-09-04\",\n            \"location\": \"Greater Toronto Area, ON\"\n        },\n        {\n            \"id\": \"40FCFB621AFCD0E66DCF8EDEA3E59E4F\",\n            \"cityName\": \"Terra Recruitment Inc. in Bradford, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8331b6c4f462a926\",\n            \"jobName\": \"Customer Service & Marketing Coordinator\",\n            \"companyName\": \"Terra Recruitment Inc.\",\n            \"rowSalary\": \"$50,000–$55,000 a year\",\n            \"date\": 1694438152579,\n            \"dateOfPosted\": 1693590653738,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.11098579999999,\n                    \"lon\": -79.5794265\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bradford West Gwillimbury\",\n                \"formattedAddress\": \"Bradford, Bradford West Gwillimbury, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bradford West Gwillimbury\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are hiring a dynamic Customer Service & Marketing Coordinator specializing for our client’s manufacturing company. You'll lead our online presence, engage audiences, and support the customer service department.Responsibilities:Develop & implement a cohesive social media strategy.Manage content across platforms and monitor trends.Craft compelling content including visuals and copy.Collaborate with design for impactful assets.Assist in planning & executing campaigns and promotions.Ensure seamless cross-team coordination.Foster online communities, engage with followers.Manage reviews for positive brand reputation.Track KPIs, provide reports, and propose improvements.Use data to refine strategies.Collaborate with customer service for issue resolution.Support customer service department adhoc when neededLeverage social media to address customer inquiries.Additional duties as required from time-to-timeQualifications:Bachelor's degree in Marketing or related field.2+ years of social media & digital marketing experience.2+ years of customer service experience preferably in a manufacturing settingProficiency in social media management tools.Strong communication & organizational skills.Creativity & adaptability in a fast-paced environment.We appreciate the interest from all candidates; however, we will be contacting only those that best fit our client’s requirements.Terra Recruitment welcomes and encourages applications from people with disabilities. Accommodations are available on request for candidates taking part in all aspects of the selection process.Job Type: Full-timeSalary: $50,000.00-$55,000.00 per yearBenefits:Extended health careSchedule:Monday to FridayAbility to commute/relocate:Bradford, ON L3Z 0Z9: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:Marketing/Social Media: 2 years (preferred)Customer Service: 2 years (preferred)Work Location: In person\",\n            \"location\": \"Bradford, ON\"\n        },\n        {\n            \"id\": \"5A4F08D6EF0A62A50A1355D67EDBCC68\",\n            \"cityName\": \"70 Powell Dr, Carbonear, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dd149cb011843154\",\n            \"jobName\": \"Customer Service And Sales Associate\",\n            \"companyName\": \"Advance Auto Care\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694437060411,\n            \"dateOfPosted\": 1692737251176,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.7282072,\n                    \"lon\": -53.2341359\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Carbonear\",\n                \"formattedAddress\": \"Powell Dr, Carbonear, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Carbonear\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Advance Auto Care is looking for a Service Advisor to join our team. If you are an energetic and motivated individual with a positive attitude, a dedication to providing exceptional customer service and a desire to succeed, we would love to have you!The Service Advisor's major responsibility is to satisfy customers by providing exceptional customer service, and expediting the repair and service of their vehicles within an expected length of time and at an expected cost. This position has a competitive monthly incentive structure.Some responsibilities:Is responsible for establishing rapport and trust with customers.Meet and greet customers and complete check-in process.Write repair orders.Be familiar with the required services of all products and suggests the required maintenance at each interval.Documents vehicle problems by listening to customers describe them and by asking probing questions.Maintains extensive contact with customers, phoning to provide estimates on service and repairs before jobs are begun, explaining the appointments/scheduling systems to customers, and establishing with customers the method of payment for repairs (cash, warranty, etc.).Constantly communicates with Technicians to obtain information on needed vehicle repairs and to order parts as required from suppliers.Recommends additional maintenance and repair services to customers when appropriate.Capable of working independently, managing his or her time and workflow.Involves patiently listening to customers describe vehicle problems, determining the appropriate work involved in the repairs, and accurately recording problems and authorized repairs on work orders so that the Technician understands what to do.Requires accuracy, attention to detail, and clear communication with other team members and departments in the dealership.Requires the continuous updating of technical knowledge by reading service bulletins and consulting with Technicians.Complete invoices and paperwork required for fleet jobs as well as inputting jobs into different portals as required.Job Type: Full-timeSalary: $18.00-$22.00 per hourBenefits:Extended health careLife insuranceSchedule:8 hour shiftExperience:Customer service: 2 years (preferred)Licence/Certification:Driving Licence (preferred)Work Location: In personExpected start date: 2023-09-01\",\n            \"location\": \"Powelll Dr., Carbonear, NL\"\n        },\n        {\n            \"id\": \"786431BE8C08AF5F5C70303D4E9E70FC\",\n            \"cityName\": \"7250 Rue du Mile End, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e0bc0ee3f22fd4c7\",\n            \"jobName\": \"Représentant-e, Service à La Clientèle/Customer Service Representative\",\n            \"companyName\": \"Global Payments (Beamery)\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694437058422,\n            \"dateOfPosted\": 1693590951497,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5320781,\n                    \"lon\": -73.62304920000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue du Mile End, Montréal, QC H2R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"DescriptionLa formation débute le 2 octobre prochain! - Postes à temps plein seulement Vous êtes à la recherche d’un nouveau défi et vous voulez rejoindre une entreprise du classement Fortune 500 axée sur la technologie et l'innovation? Chez Global Payments, vous aurez de nombreuses possibilités de croissance et de développement et nous vous promettons que chaque jour se transformera en un défi passionnant. Joignez-vous à notre équipe dynamique! L'importance que nous accordons aux membres de notre équipe: De réelles opportunités d'évolution professionnelle Un environnement de travail collaboratif et convivial avec un code vestimentaire décontracté Une assurance médicale Couverture d'invalidité à courte et longue durée Plans d'assurance vie Programmes d'épargne-retraite Programme d'achat d'actions pour les employés Programme d'assistance aux employés Programme de remboursement des frais de scolarité Possibilités de faire du bénévolat Lieu sûr pour la communauté LGBTQIA2+ Renseignements importants: Horaire: 37,5 heures par semaine, sur une base de rotation, 365. Travail du bureau: 7250, rue du Mile-End, Montreal. Salaire: 20$/h Ce que vous contribuerez à l'équipe: Aider à la formation des nouveaux commerçants dans les systèmes. Identifier et répondre aux demandes des clients concernant les comptes en utilisant l'écoute, la pensée critique et les compétences acquises pour résoudre l’appel. Fournir une solution aux problèmes ou aux plaintes des commerçants et les transmettre à la direction ou à l'équipe concernée pour les cas nécessitant une enquête plus approfondie. Utiliser adéquatement le système et les ressources internes pour servir efficacement et avec précision les clients et interpréter les données des marchands. Démontrer une connaissance des produits, des services, de la recherche de comptes, des opérations au point de vente et de la maintenance technique et de compte. Éduquer les commerçants sur les politiques, les procédures et les produits. Documenter avec précision les conversations des clients dans les systèmes appropriés. Résoudre rapidement tous les problèmes en utilisant les protocoles établis ou transférer aux personnes ressources. Interagir avec divers groupes de soutien au sein de Global Payments et assurer la liaison avec eux en ce qui a trait à la résolution d'une préoccupation d'un commerçant. Atteindre les standards de performance fixés par le département. Fournir un soutien opérationnel à d'autres unités selon les besoins de l'entreprise. Maintenir systématiquement l'étiquette téléphonique professionnelle. Compléter avec succès une formation supplémentaire sur les compétences au besoin. Maintenir les normes de service à la clientèle dans les situations de haute pression, telles que l'augmentation du volume d'appels, le manque de ressources ou la difficulté des clients. Agir en tant que membre positif de l'équipe, en affichant un respect mutuel pour les autres. Analyser et résoudre les problèmes en rassemblant systématiquement les informations pertinentes et en tenant compte d'un large éventail de problèmes, de facteurs et de données, lorsqu'il existe plusieurs réponses. Qui vous êtes: Une personne avec 6-12 mois d'expérience en service à la clientèle. Bilingue en français et en anglais. Ouvert aux heures de travail flexibles, sur une base de rotation, 24/7, 365. Diplômé(e) d’études secondaires. Une personne qui aime aider et écouter les autres. Orienté(e) service à la clientèle avec des solides compétences en communication. Une personne positive avec de fortes compétences interpersonnelles. Capable d'apprendre de nouvelles fonctions ou applications. Possède de solides compétences analytiques pour résoudre les problèmes. Responsable et autonome, avec une capacité de prise de décisions rapide et précise. Qui sommes-nous ? Global Payments est un leader du secteur des technologies de paiement avec plus de 24 000 employés dans le monde. Nous sommes fiers de nos innovations et de la valeur que nous accordons à l'inclusion. Notre équipe aide nos clients à obtenir des résultats impressionnants. C'est notre passion pour le succès qui nous a permis de surpasser la concurrence pendant des années. Rejoignez-nous et laissez votre empreinte sur le paysage technologique des paiements de demain. *** Nous remercions sincèrement tous les candidats de leur intérêt. Nous ne contacterons que les personnes sélectionnées pour un entretien. Global Payments est un employeur qui respecte l'égalité des chances. Nous valorisons la diversité et l'inclusion et offrons des chances égales à tous les employés et candidats, sans tenir compte de la race, de la couleur, de la religion, du sexe, de l'origine nationale, de l'âge, de l'état civil, de l'orientation sexuelle, de l'identité ou de l'expression de genre, du handicap physique ou mental, ou de toute autre base protégée par la loi et nous sommes heureux d'offrir aux membres de notre équipe un environnement de travail sain. Training starts on October 2nd! - Full-time positions only Looking for a new challenge and want to join a Fortune 500 company focused on technology and innovation? At Global Payments, you’ll have many opportunities for growth and development and we promise everyday will be an exciting challenge. Join a dynamic team as a bilingual customer service representative! How we care about our people: Real opportunities to grow professionally Collaborative, friendly work environment with a relaxed, casual dress code Benefits after 30 days Health insurance Short-Term and Long-Term disability coverage Life insurance plans Retirement savings programs Employee stock purchase program Employee assistance program Tuition reimbursement program Volunteering opportunities Safe place for the LGBTQIA2+ community Important information: Schedule: 37,5hr per week, on a rotational basis, 365. Work from the office: 7250, Mile End St. Montreal Salary: 20$/h What you will be contributing to the team: Assist in the training of new merchants. Identify and address customer inquiries regarding accounts. Provide resolution to merchant issues or complaints, and escalate to management or appropriate team concerned for cases requiring further investigation. Appropriately utilize internal systems and resources to accurately and effectively serve customers, and interpret merchant data. Demonstrate knowledge of products, services, account research, Point of Sale operations/technical and account maintenance. Educate merchants on policies, procedures, and products. Accurately document customer conversations in appropriate systems. Timely escalation of all department and system issues using the established reporting protocols. Interact and liaise with various support groups within Global Payments in relation to resolution of a merchant concern. Successfully complete additional skills training as required/requested. Who you are: Someone with 6-12 months of employment experience, preferably in a similar position. Bilingual in English and French. Available to work on a rotational basis, 24/7, 365. A High School Graduate. A great helper and listener. Able to maintain customer service standards during high-pressure situations. A positive member who loves to learn and share new things. A strong communicator with great interpersonal skills. A problem analyzer and solver by gathering relevant information systematically. Able to work independently and make quick and accurate decisions. Someone with strong analytical skills to troubleshoot issues. Who we are: Global Payments is a leader of the payment technology industry with over 24 000 employees worldwide. We pride ourselves on innovation and inclusion. Our team is helping customers achieve amazing results. It’s our passion for success that has led to years of out-performing the competition. Join us and make your mark on the payments technology landscape of tomorrow. *** We sincerely thank all applicants for their interest. We will only contact those selected for an interview. #LI-Onsite\",\n            \"location\": \"Rue du Mile End, Montréal, QC\"\n        },\n        {\n            \"id\": \"35A5CDA52562D866BEDCDF3F2601519D\",\n            \"cityName\": \"Canadian Tire Gas+ in Owen Sound, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bb19df302c0f1119\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Canadian Tire Gas+\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694436611595,\n            \"dateOfPosted\": 1692740349504,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.5690305,\n                    \"lon\": -80.9405602\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Owen Sound\",\n                \"formattedAddress\": \"Owen Sound, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Owen Sound\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CT Gas Bar/Car Wash/Convenience store.Availability:Full-time position available for 4-5 8 hour shifts per week (shifts from 6:30am - 2:30pm)Part-time position available for 2-3 8 hour shifts per week (shifts from 6:30am - 2:30pm and/or 2:15pm - 10:15pm)Candidate will be:Very reliable, energetic, punctual and hardworking.Comfortable working alone with little to no supervision.Comfortable in a very fast paced environment and under pressure.Able to quickly handle customer issues, and problem solve.Work Nature: Retail- Self Serve Gas Station and Car Wash.Specific Skills and Job Responsibility: Fuel sales, cash handling, lottery, stocking, maintaining highest level of customer service and cleanliness.Job Types: Part-time, PermanentSalary: $15.50-$16.50 per hourShift:8 hour shiftWork Location: In person\",\n            \"location\": \"Owen Sound, ON\"\n        },\n        {\n            \"id\": \"F153E5BB91DAACC98061FD1FB33602BF\",\n            \"cityName\": \"86 Copper Creek Drive, Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9568eff6cf1f3e4d\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Nanis Gelato\",\n            \"rowSalary\": \"$16.50–$17.50 an hour\",\n            \"date\": 1694435119086,\n            \"dateOfPosted\": 1694435118887,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.87072740000001,\n                    \"lon\": -79.2209562\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Markham\",\n                \"formattedAddress\": \"Copper Creek Dr, Markham, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Markham\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our new Nani's Gelato Markham location is seeking new customer service reps! We specialize in making all of our unique, fusion flavours and take a great deal of pride in providing a high level of customer service.This position is for Customer Service / Gelato Scooping team member. We are seeking individuals looking primarily for a combination of weekday and weekend shifts for both afternoons and evenings. Ideally, we are looking for a candidate that is available a few days during the week to help open at 2:00pm and work at least one weekend shift each week.We are seeking candidates that love to engage with people, work within an energetic team, perform well in a fast paced environment and LOVE ice cream / gelato.Training is included and paid, free gelato is available for our team during each shift and each individual staff member will always be supported with other team members during shifts.Part-time hours: 16-32Job Types: Part-time, PermanentPart-time hours: 16-40 per weekSalary: $16.50-$17.50 per hourBenefits:Casual dressFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftDay shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:Overtime payTipsWork Location: In personApplication deadline: 2023-09-15Expected start date: 2023-09-18\",\n            \"location\": \"Copper Creek Drive, Markham, ON\"\n        },\n        {\n            \"id\": \"C67F22A8FE933BFAFF1E687F68A448A5\",\n            \"cityName\": \"150 Country Hills Landng NW Suite 101, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=81ec72c394d8d0e5\",\n            \"jobName\": \"Customer Service Assistant\",\n            \"companyName\": \"Microhard Systems Inc.\",\n            \"rowSalary\": \"$23–$25 an hour\",\n            \"date\": 1694434731866,\n            \"dateOfPosted\": 1693535312643,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.1520788,\n                    \"lon\": -114.0929559\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Panorama Hills Landng NE, Calgary, AB T3K 5P2, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: EnglishHours: 40 hours per weekEducation: Bachelor's degreeExperience: 3 years to less than 5 yearsor equivalent experience Work setting Urban area Private sector Telecommunications company Tasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Arrange for refunds and credits Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Perform general office duties Receive and log complaints Receive payments Sell merchandise Answer written and oral inquiries Computer and technology knowledge Database software Enterprise resource planning (ERP) software Internet MS Excel MS Outlook MS Windows MS Word SAP (FI/CO / HR / MM / OT SD) Word processing software MS PowerPoint Electronic scheduler Presentation software Desktop publishing software Accounting software Type of online databases CIDOC-CRM Security and safety Basic security clearance Criminal record check Transportation/travel information Own transportation Willing to travel Travel expenses paid by employer Work conditions and physical capabilities Attention to detail Fast-paced environment Repetitive tasks Tight deadlines Work under pressure Manual dexterity Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Screening questions Are you available for shift or on-call work? Are you currently a student? Are you currently legally able to work in Canada? Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Do you have the above-indicated required certifications? Health benefits Dental plan Disability benefits Health care plan Long term benefits Group insurance benefits Life insurance Other benefits Free parking available Parking available\",\n            \"location\": \"Country Hills Landng NW, Calgary, AB\"\n        },\n        {\n            \"id\": \"56C0F07BFD30D09439119149C1F0592D\",\n            \"cityName\": \"Ontario\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cad8ab6730071647\",\n            \"jobName\": \"Work At Home Customer Service RepresentAtive (French Bilingual)\",\n            \"companyName\": \"Intouchcx\",\n            \"rowSalary\": \"$17–$22 an hour\",\n            \"date\": 1694434728762,\n            \"dateOfPosted\": 1693535320092,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.253775,\n                    \"lon\": -85.323214\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Ontario, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About IntouchCXIntouchCX is a global leader in customer experience management, digital engagement, and technology solutions. With over 20 years of experience, 18,000+ team members, and campuses around the globe, we obsess about our clients by providing remarkable customer experiences for the world’s most innovative brands.IntouchCX has been recognized as one of the Best Employers for Diversity in 2022 by Forbes and Statista Inc. This recognition comes after IntouchCX was named by Forbes as one of America’s Best Large Employers for 2022, and a Top Employer for New Grads.About the JobWe are currently hiring Inbound French Bilingual Work at Home Inbound Customer Service Representatives!Are you a problem solver? Do you like making meaningful connections with people? Are you interested in a rewarding career working with the world’s most exciting brands from the comfort and safety of your own home?Our Work at Home Customer Service Representatives (English / French Bilingual) are passionate about delighting customers by making every interaction an unforgettable experience - whether that’s through inbound calls, emails and/or chats. We want people with personality, who love making an impact with every customer interaction.We also want people with drive and ambition - people who want a career, not just a job. Punctuality, performance and positivity will set you up for success!Note: All applications, interviews, orientation, and training will be done virtually. IntouchCX will also provide all hardware and equipment necessary.Benefits of Working as a Work from Home Customer Service Representative (English / French Bilingual):Work from home!Flexible schedulesCompetitive salary - $17.00-$22.00 hr (varies depending on program)Industry-leading benefits - Health, Dental, VisionAmazing career growth opportunitiesWorking as a Work from Home Customer Service Representative (English / French Bilingual), You Will:Assist all customers through inbound calls, emails, and/or chats.Communicate a variety of information to the customer.Be an active listener and help resolve customer inquiries.Provide a meaningful and positive experience with every customer interaction.Learn and retain a thorough working knowledge of all existing and new products and services.Working as a Work from Home Customer Service Representative (English / French Bilingual), You Have:French Bilingual is a must!A high school diploma (or equivalent).6 months – 1 year of customer service experience.Great communication skills, both verbal and written.The ability to be consistently ready to work and on time as scheduled.Reliable internet speed and broadband connection.A secure area in the home to work from.The ability to work effectively in a work-at-home setting.The understanding that although this is a Work from Home position,you must be located in OntarioAvailability: Full Time (some shifts may depend on availability).Ready to apply? Submit your application and one of our recruiters will reach out via email/phone/text to learn more about you and connect you to this exciting opportunity! If you provide your cell number, you agree to receive automatic recruiting texts from us at that number. Consent is not a condition of employment, and you can opt-out by replying STOP at any time. Message and data rates may apply.IntouchCX provides Equal Employment Opportunities in accordance with all provincial and federal laws. IntouchCX is committed to ensuring equality of opportunity in all aspects of employment and does not discriminate based on protected characteristics.IntouchCX is committed to accommodating persons with disabilities. If you need accommodation at any stage of the application process or want more information on our accommodation policies, please let us know.By signing this application, the applicant consents to IntouchCX collecting, using and retaining his/her personal information for purposes relating to the application process and if hired, the employment relationship.Any and all personal information collected is held in the strictest confidence and in accordance with all applicable Privacy Laws.Job Type: Full-timeSalary: $17.00-$22.00 per hourBenefits:Dental careExtended health careVision careSchedule:Day shiftEvening shiftMonday to FridayMorning shiftWeekends as neededWork Location: In person\",\n            \"location\": \"Ontario\"\n        },\n        {\n            \"id\": \"1E874FD6F353116AAB20608F97C5A1F8\",\n            \"cityName\": \"33 Alderney Dr Ste 240, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fffb664f1ac6df93\",\n            \"jobName\": \"Bilingual French Customer Service Agents\",\n            \"companyName\": \"Tigertel\",\n            \"rowSalary\": \"From $23 an hour\",\n            \"date\": 1694434723712,\n            \"dateOfPosted\": 1693535302673,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.66487069999999,\n                    \"lon\": -63.5690049\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Alderney Dr, Dartmouth, NS B2Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Job DescriptionJob Description  Nous sommes à la recherche de représentant du service à la clientèle courant bilingue anglais/français à Temps Plein - Agents internes Map Communications 33, promenade Alderney, bureau 240 Dartmouth (N.-É.) B2Y 2N4 Salaire de départ 23$ de l'heure Êtes-vous à la recherche d'une entreprise à laquelle vous pouvez croire et qui est prête à s'investir à 100% pour faire bouger les choses? Êtes-vous à la recherche d'une entreprise qui CROIT EN VOUS et qui souhaite vous aider à atteindre vos objectifs de carrière? Êtes-vous capable de faire ce qui est nécessaire pour atteindre VOS objectifs personnels? Voulez-vous apprendre, grandir, produire et être respecté par vos collègues pour les talents que vous apportez à l'organisation? Nous sommes à la recherche de personnes énergiques, accueillants et professionnelles avec une grande attention aux détails pour rejoindre notre équipe à Dartmouth N.- Nous offrons une formation rémunérée, un excellent soutien continu et une couverture d'assurance médicales et dentaires/REER à l'achèvement de la période d'essai. Responsabilités Principale Gérer les appels de nos clients (nous ne sommes pas un centre de télémarketing) Répondre de manière professionnelle aux appelants, fournir et prendre de l'information des appelants Recevoir et acheminer les messages critiques vers le personnel de garde en priorisant les appels d'urgence Répondre aux demandes des clients de manière professionnelle et précis Les aptitudes requises et recherchées Attitude positive et enthousiaste Une bonne très bonne Maitrise de l'écriture anglaise et française Être à l'aise à l'informatique, notamment avec le système d'exploitation Windows Être ponctuel Capacité d'apprentissage rapide et savoir écrire 36 mots par minute Diplôme d'études secondaire ou équivalent (préférable) Aimer travailler en équipe Notre emploi nous demande de travailler avec des gens qui possèdent un grand souci du détail. Nous gérons des appels qui proviennent de plusieurs clients en Amérique du Nord. Il y aura ainsi de nombreuses activités et de défis à résoudre au quotidien Salaire 23.00$ de l'heure Nos avantages offerts :REERAssurance dentairesAssurance maladieCongés payéesAssurance des soins de la vue Conditions relatives aux prestations : Nos avantages sont offerts aux employées à temps plein, après une période d'attente Quarts de travail offerts : Temps plein (40 heures par semaine) Doit être disponible entre 08h00 et 22h30 Doit être disponible pour le travail en fin de semaine Vendredi, Samedi et Lundi Quart de travail obligatoire Pendant la formation : recevront leur formation dans le bureau, nous respecterons les directions de distance sociale de la Nouvelle-Écosse. On vous demande : D'avoir votre propre masque et le porter dans le bureau et espace commune De nettoyer votre station de travail quand on le quitte Demeurez bien à l'écart des autres dans le bureau Les stations de travail seront attribuées Formation approximative d'une semaine. Accès aux produits de nettoyage et désinfectant, on vous offre une formation sécuritaire. Ne manquez pas cette occasion - postulez dès maintenant Postulez Cliquez sur postulez maintenant et répondre aux questions fournies Nous serons en contact avec vous pour les prochaines étapes, qui seront une évaluation sur Indeed envoyée par courriel / ou sur votre compte Indeed. Vous devez effectuer les évaluations pour passer à la prochaine étape Lieu : Dartmouth (N-É) Hiring Full Time Bilingual French Call Centre Customer Service Agents - In house agents Map Communications 33 Alderney Dr., Suite 240 Dartmouth, NS B2Y 2N4 Starting wage $23 / hour Are you looking for a company you can believe in and are ready to put 100% effort into making things happen? Are you looking for a company that BELIEVES IN YOU and wants to help you take care of your career goals? Are you able to do what is necessary to achieve YOUR personal goals? Do you want to learn, grow, produce and be respected by your peers for the talents you bring to the organization? We are looking for energetic and professional individuals with great attention to detail to join our Dartmouth, NS office. We provide paid-training, great on-going support and health and dental benefits/RRSP upon completion of probation. Key Responsibilities Managing inbound phone calls from our clients (we are not a telemarketing centre) Professionally greet callers, provide and request required information Relay and route critical messages to on-call personnel by prioritizing emergency calls Responding to customer requests professionally and with accurate information General Job Requirements A friendly and upbeat voice and a positive attitude Good grammar and spelling as well as a professional demeanor Computer skills in a Windows-based environment Punctual with great attendance Fast learner and be able to type well (at least 35 words per minute) High school or equivalent (Preferred) Be a 'team player'! Our jobs require people that are very detail oriented. We handle calls for a large number of accounts and so there is always a lot of activity and new challenges to face and resolve daily! Compensation $23.00 per hour Our Benefits include:RRSP with (company matching)Dental InsuranceHealth InsurancePaid Time OffVision Insurance Benefit Conditions:Waiting period may applyOnly full-time employees eligible Shifts Offered: Full Time (40 hours) work week Availability to start as early as 8am and end as late as 10:30pm Eastern time. You must be available to work weekends Daytime and Evening shifts available to include a minimum of Friday, Saturday and Monday. During Training: We will be training you in our offices and we will be respecting Nova Scotia's Social Distancing guidelines. We request that you: Have your own mask and use it while in the facility and use of our facility amenities. Wipe down your workstation every time you leave it. Remain appropriately distanced from others in our call centre. We will assign seating. Training will last approximately one week. We will have plenty of cleaning supplies on hand to keep you, your fellow trainees, and your trainer safe during our training process. Don't miss out on this opportunity - apply today! To Apply: Click Apply Now and answer any questions provided. We will be in contact with you with the next steps, which will include Indeed Assessments that will be sent to you via email / your Indeed account. You must complete the assessments to proceed to the next step. We look forward to hearing from you! Location: Dartmouth, NS Job Types: Full-time, Permanent Salary: $23.00 per hour Benefits: Dental care Extended health care RRSP match Vision care Schedule: 9 hour shift Experience: Customer Service: 1 year (Required) Call Centre Experience: 1 year (Preferred) Education: Secondary School (Required) Job Posted by ApplicantPro\",\n            \"location\": \"Alderney Dr, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"CC71D07409F304B31266C834103F33E8\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2bb1a5a4c9f6d29e\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Goeasy\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694434705496,\n            \"dateOfPosted\": 1693534789645,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"If you are looking to join one of Canada’s fastest growing companies, goeasy Ltd. is the place for you! Recognized as one ofNorth America’s Most Engaged Workplaces, we want the best to join our team. easyfinancial is one of Canada’s leading non-prime lenders, we pride ourselves on helping everyday Canadians achieve their personal and financial goals through secured and unsecured loans up to $75,000, when everyone else says no.We are looking for our next innovative and self-motivated Customer Service Representative to support our existing team. Come work for a growing company that will ensure you will have the tools to be successful! No experience, but looking for a career opportunity? We offer full comprehensive training programs to equip you with the tools needed for success. What’s in it for you: Benefits and Perks package which goes beyond your base salary:FinancialMonthly incentive plansBase Pay: $17/hr + monthly bonusRRSP and Employee Share Purchase Plan matchingHealth & LifestyleExtended healthcare coverage, including Mental Health and on-demand virtual healthcare5 personal days, company paid volunteer days, Sundays off + paid birthday off in addition to paid vacation daysOnsite GymPerksPerkopolis employee discount programEmployee discounts on furniture, electronics, and applianceseasyloans –employees have access to loans at lower interest ratesTuition Assistance ProgramState of the art OfficeGames RoomFree Employee ParkingRecognitionOpportunities for monthly, quarterly, and annual awardsLeadership development programs – over 75% internal promotion rate!As a Customer Service Representative, you will:Create superior customer experiences by responding, listening, engaging and understanding the needs of current and potential customers and matching their needs to our lending solutions.Taking inbound calls to resolve customer inquiries while demonstrating compassion and empathyAccurately enter data, follow scripts, maintain records and handle high call volumes in a fast-paced environment.Live our value proposition of providing access, relief and respect to the cash and credit constrained consumerThrough superior product knowledge and your influence skills engage with customer to retain product or service by following a prepared script and process capitalize on cross-sell and up-sell product opportunities by paying attention to customer needExperience servicing customers in a multi – channel environment, phone, chat, email, social mediaUnderstanding and striving to meet or exceed call center metrics while providing excellent customer service.Taking part in training and other learning opportunities to expand knowledge of company and position.Adhering to all company policies and procedures.Skill in the use of computer and telephone-related software, with basic knowledge of Microsoft Office, internet and intranet search tools, and call center technologies.What you need to work with us:Experience in a customer-facing measured work environment considered an asset1-2 years’ Experience in a call center environment is an assetExcellent written and oral communication skills with the ability to create memorable customer experiencesAchievement and results-oriented with a positive attitudeEmpathetic, compassionate and operate with integrity – really care for customers!Proficient with Microsoft office software (Excel, Word, and Outlook), strong keyboarding skills and an ability to learn and master new software programsAbility to multi-task, adapt to change in a fast-paced environment and to work independently (self-motivated)Diversity, Inclusion, and Equal Opportunity Employment At goeasy, we believe that we can only be the best when people are able to bring their best selves to work every day. This means that we are committed to cultivating and preserving a work culture where we celebrate who we are, where everyone feels seen and heard and where every employee can fulfill their potential. As an equal opportunity employer, we are committed to providing accommodations for applicants upon request at any stage of the recruitment process in accordance with all legislative requirements throughout Canada. Please let us know if you require an accommodation during any aspect of the recruitment process and we will work with you to address your needs. Additional Information: All candidates considered for hire must successfully pass a criminal background check, credit check, and validation of their work experience to qualify for hire. Candidates must provide schedule flexibility to ensure that the location’s hours can be covered to meet our customer’s needs – details by location will be discussed in the interview process. We thank all interested applicants; however, we will only be contacting those for interview who possess the skills and qualifications outlined above. Why should you work for goeasy? To learn more about our great company please click the links below:http://goeasy.com/careers/\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"39BD1DC32BA89B57B979A705559A0939\",\n            \"cityName\": \"9303 Highway 93, Midland, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=326a85a2a06085c5\",\n            \"jobName\": \"Customer Service Department Associate\",\n            \"companyName\": \"Canadian Tire Midland - Store #061\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694433097615,\n            \"dateOfPosted\": 1693588457726,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.73700909999999,\n                    \"lon\": -79.9114086\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Midland\",\n                \"formattedAddress\": \"9226 County Rd 93, Midland, ON L4R 4K4, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Midland\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our company is seeking experienced, professional and motivated individuals to join our team. The successful candidates will have the opportunity to work at a growing company, build relationships with customers and contribute to the achievement of company goals. Responsibilities: *works in a fast-paced environment that involves constant interaction with customers, delivering friendly and courteous service while explaining product benefits and fulfilling customer needs, Stocking Shelves, Merchandising, and general Housekeeping.Job Types: Full-time, Part-time, PermanentPart-time hours: 0-40 per weekSalary: From $15.50 per hourBenefits:Dental careStore discountVision careDay range:HolidaysMonday to FridayWeekends as neededFlexible Language Requirement:French not requiredShift:4 hour shift8 hour shiftAfternoon shiftDay shiftEvening shiftMorning shiftWork setting:Department storeAbility to commute/relocate:Midland, ON: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Highway, Midland, ON\"\n        },\n        {\n            \"id\": \"53094E0BA0B1C583C0DE9038DA0FC902\",\n            \"cityName\": \"RELOCATION INT'L INC. in Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c78f016b3a74ab4e\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"Relocation Int'L Inc.\",\n            \"rowSalary\": \"From $3,100 a month\",\n            \"date\": 1694433051402,\n            \"dateOfPosted\": 1692699778808,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"month\",\n                \"salaryFrom\": 3100.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    3100.0\n                ],\n                \"range\": {\n                    \"gte\": 3100.0,\n                    \"gt\": null,\n                    \"lte\": 3100.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a Customer Service Clerk.Requirements1. Strong communication skills, fluent in English, Mandarin and Cantonese;2. Excellent computer skills;3. Excellent phone manner4. Familiar with the GTA regionJob Types: Full-time, PermanentSalary: From $3,100.00 per monthSchedule:8 hour shiftCOVID-19 considerations:All customers are required to wear masksWork Location: In person\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"1CBBDB0B24A5C4A3812BB65B14BF4B45\",\n            \"cityName\": \"12 Parr Blvd, Bolton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dda3cfc50d39faab\",\n            \"jobName\": \"Retail Customer Service Associate\",\n            \"companyName\": \"Water Depot Bolton/Georgetown\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694432237544,\n            \"dateOfPosted\": 1693588058630,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.848813,\n                    \"lon\": -79.707592\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bolton\",\n                \"formattedAddress\": \"Parr Blvd, Bolton, ON L0J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bolton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The role of a Retail Customer Service person is to provide exceptional customer service while on shift. General duties include assisting customers with water fill-ups; POS transactions, providing information to customers when purchasing water treatment products. The candidate will also perform some administrative duties as required.Primary Duties:Assisting customers with U-fill water jug fill-ups;Administrative duties;Promoting and selling general in-store products (training provided);Communicate courteously with guests by telephone and face to face, providing excellent guest service;Ensure customer inquiries are handled effectively, promptly and with the utmost consideration;Occasionally scheduling service and maintenance appointments for customers;Calling customers to confirm service and maintenance appointments;Stocking shelves;Opening/closing duties.Secondary duties can include:Inventory ordering/receiving;Service appointment scheduling/coordination;Email responsesSupport Water Depot Georgetown;Duties and projects as assigned.Essential Skills & Abilities:Responsible, reliable & charismatic…personality plus (i.e. not shy);Retail experience an asset;Administrative experience an asset;Willingness to learn about basic water treatment, including independent learning;Excellent verbal and written communication skills, interpersonal skills and experience working with a diverse population are essential;Computer literate with basic abilities in Microsoft Office suite, Google environment, email & internet;Flexibility to work shifts within the retail hours of operation, including Saturday (we are open 6 days a week Monday to Saturday 10am-6pm);Reliable transportation;Ability to stand for many hours at a time;Frequent use of hands: use hands to hold, handle, or feel, and reach with hands and arms;Occasional requirement to sit, climb or balance; and stoop, kneel, crouch, or crawl, and using a small step stool or ladder;Specific vision abilities include close vision, distance vision, colour vision, peripheral vision, and ability to adjust focus;Frequent requirement to lift up to, and including, 50 pounds.Future opportunities can be available for the right candidate as we continue to grow.Work remotelyNoJob Types: Part-time, PermanentSalary: $18.00 per hourExpected hours: 35 – 40 per weekDay range:Monday to FridayWeekends as neededShift:8 hour shiftDay shiftWork Location: In personExpected start date: 2023-08-23\",\n            \"location\": \"Parr Blvd, Bolton, ON\"\n        },\n        {\n            \"id\": \"EC9C040D51853FC00B842BDEB9DB1562\",\n            \"cityName\": \"11 Jacob Keffer Pky, Vaughan, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2d1e32ea035a66fb\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Mary Brown's Chicken And Taters\",\n            \"rowSalary\": \"$15.50–$18.00 an hour\",\n            \"date\": 1694432228303,\n            \"dateOfPosted\": 1692726045390,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8326829,\n                    \"lon\": -79.5042946\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Jacob Keffer Pkwy, Vaughan, ON L4K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Jacob Keffer Pky, Concord, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for hard working individuals who are able to work well under pressure and create a hospitable environment with the customers.Job Type: Part-timePart-time hours: 20-36 per weekSalary: $15.50-$18.00 per hour\",\n            \"location\": \"Jacob Keffer Pky, Concord, ON\"\n        },\n        {\n            \"id\": \"41CC5A8BC9C1DF4F492531AAC2874313\",\n            \"cityName\": \"9880 - 47 Avenue, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=84c9af46f5b327b1\",\n            \"jobName\": \"Call Centre Representative (Edmonton South) Temporary\",\n            \"companyName\": \"Trail Appliances Ltd\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694431977769,\n            \"dateOfPosted\": 1692739011458,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5460983,\n                    \"lon\": -113.4937266\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Why Trail? At Trail Appliances, we give you the support, tools, training, and a mentor to succeed. By becoming a member of the Trail family, you will be joining a diverse network of high performing, talented individuals who are continuously learning and growing everyday. Looking for a career and not just a job? Apply today! The Perks Trail Appliances values their employees and provides a comprehensive and competitive total rewards package including: Health & dental benefits Personal care days Statutory holidays off Employee & family assistance program Staff incentives and rewards Employee discounts The Role The Call Centre Representative is responsible for calling customers to confirm the time and location of their service call. This person is responsible to ensure that the open line of communication between the field technicians and customers is maintained. This is a full-time temporary position ending October 2024 What you will be doing Ensure all customer service call information is keyed into the computer system. Complete other administrative functions as required. Maintain in constant communication with the service teams and field technicians. Investigate and assist in the resolution of all customer issues. To be successful in this role you must Have a great work ethic, be punctual, pay attention to the details, and genuinely enjoy helping people Be proactive and demonstrate initiative by providing input and recommendations to continually improve the delivery of our customer experience Collaborate with various departments to ensure customer issues are resolved effectively and in a timely manner Be a quick study when it comes to computers software and systems Have outstanding oral, typing and written communication skills Enjoy working within a diverse team Have previous call center experience Our story began in 1974, when the Broderick family rented out appliances at their bottle depot on Macleod Trail in Calgary. From those humble beginnings, Trail Appliances has grown to become one of the leading independent appliance retailers in Western Canada. We continue to stand by our guiding principles of unparalleled customer service, competitive pricing, and expert advice. Having built our reputation on strong family values and creating a collaborative work culture that values respect, integrity, diversity, passion, and laughter, we’re proud to be family-owned and operated today. This and our extensive benefits, safety program and community involvement are what sets us apart from our competitors. We are proud to be recognized as an industry leader! #TrailApp\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"C5C8B4DA9723E58360F77FFB8886E32A\",\n            \"cityName\": \"114 Sydenham St, Flesherton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d9a6bd631f0b1656\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Esso\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694431601928,\n            \"dateOfPosted\": 1675894927945,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2648914,\n                    \"lon\": -80.5533015\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Flesherton\",\n                \"formattedAddress\": \"Sydenham St, Flesherton, ON N0C 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Flesherton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"$16.50/HRLOCAL CANDIDATES ONLYApply Now! Hiring Now! All training will be provided.ESSO Gas Station in Flesherton is hiring Customer Service Representatives to join its team - opening or closing shifts, weekdays or weekends. No experience necessary. Previous gas station or convenience store experience is always an asset. Full Training will be provided.Send resume online or welcome to stop by at the store.Job Types: Full-time, Part-time, PermanentSalary: From $16.50 per hourJob Types: Full-time, Part-time, PermanentSalary: From $16.50 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftEvening shiftEvery WeekendMonday to FridayMorning shiftNight shiftNo weekendsWeekend availabilityWeekends onlyAbility to commute/relocate:Flesherton, ON: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Sydenham St, Flesherton, ON\"\n        },\n        {\n            \"id\": \"0E06E7D711F64830FD21F78D57462420\",\n            \"cityName\": \"5984 Boul Cousineau, Saint-Hubert, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=defd403dfa2825d6\",\n            \"jobName\": \"Cook/Customer Service\",\n            \"companyName\": \"Chung Chun Rice Hotdog\",\n            \"rowSalary\": \"$15.25–$21.63 an hour\",\n            \"date\": 1694431409411,\n            \"dateOfPosted\": 1692737161097,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4819036,\n                    \"lon\": -73.39037859999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Longueuil\",\n                \"formattedAddress\": \"Bd Cousineau, Longueuil, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Longueuil\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OUVERTURE BIENTÔT CHUNG CHUN SAINT-HUBERT, QUEBEC5984 BOULEVARD COUSINEAU, SAINT-HUBERT, QCChungchun Rice Dog est une chaîne de cuisine de rue coréenne avec plus de 200 succursales dans le monde et les premiers à Montréal. Nous recherchons un membre enthousiaste de l'équipe qui se joindra à notre équipe et contribuera à faire croître la marque au Québec tout en profitant d’un environnement de travail agréable, d'horaires flexibles et d’une équipe incroyable. Nous avons pour objectif de leur offrir une expérience unique à nos clients en leur offrant un service de qualité et en leur faisant découvrir nos délicieux Kogos coréen.Recherche de caissier à temps-partiel.Description des tâchesExécuter tous les éléments selon les normes les plus élevées en suivant les recettes et les procédures du restaurantMaintenir les normes de propreté, de santé et sécurité du restaurantSuivre toutes les politiques et procédures opérationnellesMaintenir un niveau élevé de pratiques de sécurité alimentaireDoit travailler avec l'équipe et doit s'assurer du bon roulement du serviceDoit savoir repérer les problèmes et les résoudreDoit être autonome et proactifDiplômes et expérienceAimer le travail en équipe et avoir le sens des responsabilitésFaire du service client une prioritéAucune expérience nécessaire, expérience dans une cuisine est un atoutCompétencesCapacité à travailler en équipe tout en démontrant du leadershipCapacité à comprendre et à exécuter des instructions verbales et écritesCapacité à apprendre rapidementCapacité à parler la langue française, la langue anglaise est un plus, la languecoréenne est un plusCapacité à faire plusieurs tâches à la foisFaire du service client une prioritéExigences physiquesDebout pendant de longues périodesTravailler dans un environnement de cuisine chaudPousser, tirer, soulever ou porter occasionnellement jusqu'à 40 lbHoraires de travail/SalaireHoraire flexible, travail durant le matin et le soir, les jours de semaine et de fin de semaineTemps partielSalaire competitiveOPENING OF CHUNG CHUN, SAINT-HUBERT, QUEBECChungchun Rice Hotdog is a Korean street food chain with over 200 branches around the world. Since our opening in Canada in 2019, we now have branches in Toronto, Vancouver, Calgary and now opening our 2nd restaurant in Québec under Chungchun Kogo Coréen!We are looking for an enthusiastic team member who will join our team rank and help grow the brand in Québec while enjoying flexible hours!Duties and responsibilitiesContribute to making our customers’ day by greeting people, taking orders and preparing delicious KogosProcessing paymentsPackage take-out foodExecute all items to the highest standards following the restaurant’s recipes and proceduresMaintain cleanliness and health & safety standards of the restaurantFollow all operational policies and proceduresMaintain a high level of food safety practicesMust be available on certain holidaysQualifications and ExperienceEnjoy teamwork and having sense of responsibilityMake customer service a priorityNo experience needed, Experience in the kitchen is a plusSkills & FitAbility to work as part of a teamAbility to understand and carry out verbal and written instructionsAbility to learn quicklyAbility to speak French language, English language, Korean language is a plusPhysical RequirementsStanding for long periods of timeWorking in a hot kitchen environmentOccasional pushing, pulling, lifting or carrying up to 40lbSchedulePart-TimeFlexible hours, mixed shifts, days and evenings, weekends and weekdaysCompetitive salaryJob Type: Part-timeSalary: $15.25-$21.63 per hourSchedule:4 hour shiftDay shiftMonday to FridayMorning shiftWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Saint-Hubert, QC: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Boul Cousineau, Saint-Hubert, QC\"\n        },\n        {\n            \"id\": \"8EA7D288D92C1190E5AEF73F5843766A\",\n            \"cityName\": \"378 Mountainview Rd S, Georgetown, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=eb2897db6fde7156\",\n            \"jobName\": \"Retail Customer Service\",\n            \"companyName\": \"Water Depot Bolton/Georgetown\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694431372255,\n            \"dateOfPosted\": 1692737153958,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6390573,\n                    \"lon\": -79.88824629999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halton Hills\",\n                \"formattedAddress\": \"Mountainview Rd S, Halton Hills, ON L7G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halton Hills\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The role of a Retail Customer Service person is to provide exceptional customer service while on shift. General duties include assisting customers with water fill-ups; POS transactions, providing information to customers when purchasing water treatment products. The right candidate will act as back-up for administrative duties as required.Primary Duties:Assisting customers with U-fill water jug fill-ups;Back-up for Administrator duties (training provided);Promoting and selling general in-store products (training provided);Communicate courteously with guests by telephone and face to face, providing excellent guest service;Ensure customer inquiries are handled effectively, promptly and with the utmost consideration;Occasionally scheduling service and maintenance appointments for customers;Calling customers to confirm service and maintenance appointments;Stocking shelves;Opening/closing duties.Secondary duties (as Admin back-up) include:Inventory ordering/receiving;Customer Invoice/payment processing;Service appointment scheduling/coordination;Purchase Orders;Email responsesSupport Water Depot Georgetown;Duties and projects as assigned.Essential Skills & Abilities:Responsible, reliable & charismatic…personality plus (i.e. not shy);Retail experience an asset;Administrative experience an asset;Willingness to learn about basic water treatment, including independent learning;Excellent verbal and written communication skills, interpersonal skills and experience working with a diverse population are essential;Computer literate with basic abilities in Microsoft Office suite, Google environment, email & internet;Flexibility to work shifts within the retail hours of operation, including Saturday (we are open 6 days a week Monday to Saturday 10am-6pm);Reliable transportation;Ability to stand for many hours at a time;Frequent use of hands: use hands to hold, handle, or feel, and reach with hands and arms;Occasional requirement to sit, climb or balance; and stoop, kneel, crouch, or crawl, and using a small step stool or ladder;Specific vision abilities include close vision, distance vision, colour vision, peripheral vision, and ability to adjust focus;Frequent requirement to lift up to, and including, 50 pounds.Future opportunities can be available for the right candidate as we continue to grow.Work remotelyNoJob Types: Part-time, PermanentSalary: $18.00 per hourExpected hours: 35 – 40 per weekSchedule:8 hour shiftDay shiftMonday to FridayWeekend availabilityWork Location: In personExpected start date: 2023-08-23\",\n            \"location\": \"Mountainview Road South, Halton Hills, ON\"\n        },\n        {\n            \"id\": \"E042EDA95335630F87ACF2B1830BE964\",\n            \"cityName\": \"527 Broadway, Tillsonburg, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=64fe5961fcd2c7a9\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Domino's Pizza Woodstock\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694431306507,\n            \"dateOfPosted\": 1693586379311,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8717671,\n                    \"lon\": -80.73948709999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Tillsonburg\",\n                \"formattedAddress\": \"Broadway, Tillsonburg, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Oxford County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Tillsonburg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Domino's Pizza is now hiring Customer Service RepresentativesWe are happy that you are interested in joining the Domino’s team!Customer Service Representatives (CSR) are primarily responsible for providing exceptional customer service, making great Domino’s Pizza products and maintaining cleanliness of the store. CSR’s at Domino’s work in a team environment and they are expected to be positive and productive team players. Every CSR plays a part in helping the store achieve its goals for customer service, sales growth, operational reviews and cost management, therefore, their attention to these targets is paramount.The responsibilities are guided by the Domino’s Pizza of Canada’s policies and procedures. The standards can in some instances be modified by Empire Pizza or the CSR’s supervisor.Other responsibilities may include being a shift leader. Shift leaders are responsible for completing all shift tasks as laid out in the policies, manage other team members, balance finances and inventory and train team members. Shift leaders may be required to attend workshops to further develop their skills.CSR’s are required to attend to their scheduled shifts on-time, in complete uniform and with positive attitudes. During some shifts, the CSR may be required to help promote the business and do some local store marketing.Although schedules are typically posted a few days early, CSR’s may be required to come to work on short notice or perform additional tasks outside of this description.Job Types: Full-time, Part-timePart-time hours: 15-30 per weekSalary: $15.50-$16.50 per hourExpected hours: 10 – 30 per week\",\n            \"location\": \"Broadway St Unit A, Tillsonburg, ON\"\n        },\n        {\n            \"id\": \"C10A1247B1EFCE4E11827BBD6C8AA3A7\",\n            \"cityName\": \"The Willow Bakery & Cafe in Kensington, PE\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e17cee62fbdfe03c\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"The Willow Bakery & Cafe\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694431126800,\n            \"dateOfPosted\": 1692705640450,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.4368934,\n                    \"lon\": -63.63735109999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kensington\",\n                \"formattedAddress\": \"Kensington, PE C0B 1M0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Prince Edward Island\",\n                \"state_code\": \"PE\",\n                \"postalTown\": null,\n                \"county\": \"Prince County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kensington\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Looking for a reliable enthusiast worker. Wanting to be part of a small team. Experience not necessarily but beneficial. Must be friendly and able to provided exceptional customer service. Job includes : greeting customers, taking orders, preparing specialty coffees and drinks. Cleaning will also be included. Must be willing to work independently and with others well.Hours 7:00am- 3:00pmWe are looking forward to meeting you!Job Types: Full-time, Part-timePart-time hours: 20-40 per weekSalary: $15.00-$16.00 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftMonday to FridayWeekends as neededSupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Kensington, PE\"\n        },\n        {\n            \"id\": \"1B844ABFFA36D34BE84C7448CD768149\",\n            \"cityName\": \"20 Royal Group Crescent, Vaughan, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fb22a7039126eb4a\",\n            \"jobName\": \"Customer Service Representative/Data Entry\",\n            \"companyName\": \"Trulite Glass & Aluminum Solutions\",\n            \"rowSalary\": \"$50,000–$55,000 a year\",\n            \"date\": 1694431110035,\n            \"dateOfPosted\": 1693559236479,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7657213,\n                    \"lon\": -79.6255956\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Royal Group Crescent, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for candidates who are passionate about customer service and have experience handling inbound calls and strong attention to detail.Manufacturing experience is a great assist.Key Areas of Responsibilities:· Assisting with all customer requirements within Trulite such as:o Entering customer PO’s accurately and in timely fashiono Cross check PO’s enteredo Email/fax order acknowledgements in timely fashiono Assist customers with PO revisions and/or enquirieso Communicate with Planning and CNC department· Follow up on outstanding Purchase Order(s) pertaining to sale orders· Liaise with Production personnel for order status· Cross train on internal personnel support· Handle and liaise with Shipping department regarding customer’s shipping enquires· Switchboard support· Maintain Customer Relationship Management Software· Maintain professional internal and external relationships that meet company core values· Adhere to all company policies, procedures and business ethics codes· Other administrative duties as assignedProficient in Microsoft Office applications· Data entry accuracy· Highly effective customer service skills· Ability to manage multi responsibilities· Ability to interact and cooperate with all company employees.· Ability to build trust, value others, communicate effectively, focus on the customer, collaborate with others, solve problems creatively and demonstrate high integrity· Establish and maintain effective team working relationships and also work independentlyExcellent written and oral communication skillsNo Agency CallsJob Type: Full-timeSalary: $50,000.00-$55,000.00 per yearBenefits:Dental careEmployee assistance programExtended health careOn-site parkingPaid time offVision careSchedule:8 hour shiftSupplemental pay types:Bonus payWork Location: In personExpected start date: 2023-09-15\",\n            \"location\": \"Royal Group Crescent, Vaughan, ON\"\n        },\n        {\n            \"id\": \"AF7A961D479E7FE8F91E3FBA9D251FFF\",\n            \"cityName\": \"More Gate Digital Group in Oshawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=86c81ce8dbd412f4\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"More Gate Digital Group\",\n            \"rowSalary\": \"$45,000–$55,000 a year\",\n            \"date\": 1694431105635,\n            \"dateOfPosted\": 1692709787312,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8970929,\n                    \"lon\": -78.86579119999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oshawa\",\n                \"formattedAddress\": \"Oshawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oshawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Here’s why you should apply:Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingPrimary Functions:Serve as the information center for all customers, community contacts, and other company representativesMust be aware of daily activities and administrative responsibilitiesInteract with customers to provide information in response to inquiries, concerns and requests about products and servicesMust professionally handle all phone calls and route callersAnswers questions in a timely and courteous mannerProduce reports, forms, correspondence, orders and other materials as neededPerform other duties as assigned.QualificationsSolid organization and active listening skillsRazor sharp attention to detail with fast and accurate data entryCustomer service focused with creative problem solving skillsAbility to anticipate and advocate for your customers needsAbility to multi-task, prioritize and adjust to changing needsJust like your resume, a job description never tells the full story. Apply today and if you've got what it takes, we'd love to discuss everything in further detail. We know there's a lot more you'd like to know, why wait? Apply today!Job Types: Full-time, PermanentSalary: $45,000.00-$55,000.00 per yearBenefits:Dental careEmployee assistance programExtended health careOn-site parkingPaid time offFlexible Language Requirement:English not requiredFrench not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payOvertime payTipsEducation:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Oshawa, ON\"\n        },\n        {\n            \"id\": \"3ABB22B59CDCAB4FB58BDBA4A0B120AC\",\n            \"cityName\": \"Second Cup Cafe 9730 in Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b2d9cb3833c21867\",\n            \"jobName\": \"Front Counter Customer Service\",\n            \"companyName\": \"Second Cup Cafe 9730\",\n            \"rowSalary\": \"$14.50–$16.00 an hour\",\n            \"date\": 1694430993209,\n            \"dateOfPosted\": 1693585475259,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.895136,\n                    \"lon\": -97.13837439999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Welcome to Second Cup Bridgewater (3-325 North Town Rd)We are excited to be opening soon and we are starting to build our team !We are hiring full time and part time staff.Hours of operation are 6:00AM - 10:00PMWe have many shifts available.Does the idea of working with an iconic Canadian brand excite you? Do you have a passion for enriching the customer experience? Is your Second Cup just as exciting as your first? Then Second Cup Café has an exciting opportunity to join our team!We’re seeking an amazing Barista who lives our company values - Integrity, Kindness, Gusto and has experience in uplifting our guests and people everyday!YOU WILL:Create unforgettable beverages including espresso-based drinks.Seek every opportunity to enhance the guest experience with every interaction and provide consistent and individualized guest attention.Demonstrate passion for the Second Cup brand and have knowledge of our products.Keep café facilities clean and well maintained (dine-in area, restrooms, back of house)Restock product such as beans, cups and condiment stand.Complete sale with guests, using cash, debit/credit and Mobile App.Follow business procedures for handling voids and cash handling mistakes.Maintain coffee and food freshness standards while also controlling waste.Encourage guests to upload Mobile App and discuss the benefits associated with it. • Adhere to dress code and always be punctual and ready for your shift!YOU BRING TO THE ROLE:Excellent guest service skills– You have integrity, show kindness with each interaction and do it with GUSTO!Commitment to delivering superior quality-Obsessed with your quality of work and go above and beyond every day; you truly care about people and consider our guests in everything you do.Coffee passion! An ambassador for our brand – takes great pride in what you do.Team and community mindset- Focus on common goals; support and respect others and values relationships.Authenticity- Honest, fair and act with integrity; treat each person as if they are the most important person in the room; collaborative and communicativeAlso know that in this active & exciting role you will be:Standing for extended periods of time.Some lifting is required along with some bending, reaching and turning.Exposure to noise (blenders, espresso machine), heat (steam from espresso machine).Second Cup is an equal opportunity employer. We would like to thank all applicants for their interest. Only those applicants under consideration will be contacted. For additional information on our organization, please visit us at www.secondcup.comExperience: Barista: 1 year (preferred)Job Types: Full-time, Part-time, Permanent, CasualPart-time hours: 20-40 per weekSalary: $14.50-$16.00 per hourBenefits:Discounted or free foodOn-site parkingStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayMorning shiftWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Winnipeg, MB R3Y 1N3: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Winnipeg, MB\"\n        },\n        {\n            \"id\": \"DB8FD8B64E1A8A523C20E2907B7DA8DC\",\n            \"cityName\": \"19574 60 Ave, Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=71775dddad82c2af\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Fix Auto Langley\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694429456138,\n            \"dateOfPosted\": 1692705393722,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Fix Auto Langley is looking for a Customer Service Representative! If you are a people person and are looking to evolve in a fast-paced work environment, then this could be your ticket to a great career. As a Customer Service Representative,you will act as brand ambassador and provides positive brand experience to all customers. A day in the Life of a Customer Service Representative at Fix Auto Effectively manage front office operations to ensure efficient organization and support of the sales functionProvide service to customers by reviewing the services offered and cross-sell different programs by explaining the advantage of our multiple service offerings.Collaboration with production manager and sales managers to ensure vehicles are on track for timely and flawless deliveryCommunicate and interact with clients throughout the different technologies such as text messages, emails, online videocall, etc.As required, assign the work order to technicians. In addition to an excellent work-life balance, Fix Auto offers a host of benefits including: Inclusive work environment– we encourage you to unlock your potential and contribute meaningfully to our success.Learning & Development: Learning doesn’t stop when you land a job, so we’re committed to supporting you by investing in world-class training programs. You can take advantage of our virtual and in-person learning opportunities for your continuous evolution.Range of Benefits for your family and you.Up to date tools and equipment.Safe work environment. Apply now! 19574 60 Avenue Surrey, B.C. V3S 3S7\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"72EDF3CDC68CE744EEED0651667E744D\",\n            \"cityName\": \"Bathurst, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7c3540243352a313\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Olivier Honda Bathurst\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694429450543,\n            \"dateOfPosted\": 1693585123227,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.6183507,\n                    \"lon\": -65.6513358\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bathurst\",\n                \"formattedAddress\": \"Bathurst, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Gloucester County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bathurst\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 7 months to less than 1 yearWork setting On-site customer service Automobile repair services Tasks Access and process information Answer inquiries and provide information to customers Arrange for billing for services Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Receive payments Schedule and confirm appointments Book appointments Computer and technology knowledge Internet MS Excel MS Outlook MS Windows MS Word Security and safety Criminal record check Transportation/travel information Own transportation Valid driver's licence Work conditions and physical capabilities Attention to detail Fast-paced environment Health benefits Dental plan Disability benefits Health care plan Vision care benefits Long term benefits Group insurance benefits Life insuranceWork Term: PermanentWork Language: BilingualHours: 40 hours per week\",\n            \"location\": \"Bathurst, NB\"\n        },\n        {\n            \"id\": \"17E14DCFB1B013B53E0D06500C8A103B\",\n            \"cityName\": \"355 Erb Street West, Waterloo, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7618e59287c182b8\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Currency Converters Of Waterloo\",\n            \"rowSalary\": \"$16.55–$18.50 an hour\",\n            \"date\": 1694429447084,\n            \"dateOfPosted\": 1692710058987,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4527742,\n                    \"lon\": -80.5527051\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Waterloo\",\n                \"formattedAddress\": \"Erb St W, Waterloo, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Waterloo\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job descriptionKey ResponsibilitiesCustomer Service Representatives are primarily responsible for providing consistently exceptional customer service, performing transactions, and completing a variety of internal administrative tasks. Key responsibilities include, but are not limited to:· Buying and selling foreign currency in the form of cash, cheques, wire transfers, and other monetary instruments· Assist clients in person, over the phone, and through email regarding Currency Converters of Waterloo’s organizational products and services· Balance foreign currency and Canadian currency, Interac machines, cheques, and precious metals· Maintain customer accounts by accurately collecting, updated, and verifying customer information· Uphold client confidentiality and comply with all legal and risk management policies and proceduresQualifications· Secondary School Diploma (or equivalent)· Minimum 2+ years of customer service and/or cash handling experience· Exceptional customer service and communication skills, both written and verbal· Proficiency with numerical calculations· Ability to excel in a fast-paced environment while maintaining strong attention to detail· Must possess valid driver’s license· Must pass criminal record check and credit check· Fluency in second language is considered an assetApplicants are invited to submit their resume and cover letter directly through Indeed or drop them off at 355 Erb Street West, Waterloo. The job posting end date is September 8 2023. We sincerely thank all who apply; however, only those selected for an interview will be contacted.Currency Converters of Waterloo is committed to being a fair and include work environment. Accommodations are available on request for candidates taking part in all aspects of the recruitment and selection process.Job Types: Part-time, PermanentJob Types: Part-time, PermanentPart-time hours: 16-22 per weekSalary: $16.55-$18.50 per hourBenefits:Casual dressFlexible scheduleOn-site parkingSchedule:Day shiftMonday to FridayWeekends as neededExperience:customer service: 2 years (required)Work Location: In personApplication deadline: 2023-09-08\",\n            \"location\": \"E Erb St. West, Waterloo, ON\"\n        },\n        {\n            \"id\": \"8B6D42E30B2FD9CAE1EEE6109C2A353E\",\n            \"cityName\": \"Ancaster, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a1800611f3cfc110\",\n            \"jobName\": \"Customer Service/Serving\",\n            \"companyName\": \"Albatross Indoor Golf Centre\",\n            \"rowSalary\": \"$16.75–$17.00 an hour\",\n            \"date\": 1694429375733,\n            \"dateOfPosted\": 1692737285643,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2177791,\n                    \"lon\": -79.98728349999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Ancaster, Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking a dedicated and customer-oriented individual to join our team as a Customer Service/Serving professional. In this multifaceted role, you will be responsible for delivering outstanding customer service, managing customer interactions, facilitating simulator setup, operating the point of sale system, serving refreshments, preparing food items, and ensuring the overall cleanliness and security of our GOLFZON simulator facility.Responsibilities:Customer Check-in and Check-out: Warmly greet customers and efficiently check them in for their scheduled tee times.Handle customer payments accurately and provide assistance during check-out.Reservation Management: Answer incoming calls, addressing inquiries and booking tee times based on customer preferences.Simulator Setup Assistance: Guide customers through the setup process of the GOLFZON simulator, ensuring they have a smooth experience.Point of Sale Operation: Skillfully operate the point of sale (POS) software to process transactions and manage payments.Reconcile cash and credit card payments, maintaining accurate records of financial transactions.Customer Service and Refreshment: Provide excellent customer service by serving drinks, snacks, and addressing customer questions.Food Preparation: Prepare food items according to the menu, ensuring adherence to quality and safety standards.Facility Maintenance: Perform opening and closing duties, including cleaning and organizing the facility.Secure the building at the end of the shift, including locking doors and managing the till.Menu Management: Follow the menu to cook and prepare food items, ensuring consistency and taste quality.Team Collaboration :Collaborate with colleagues and managers to ensure smooth operations and a positive customer experience.Additional Tasks :Complete any other tasks assigned by managers to support overall facility operations.Qualifications:High school diploma or equivalent.Previous customer service experience is preferred.Basic knowledge of point of sale software and cash handling procedures.Strong interpersonal skills and a friendly, approachable demeanor.Effective communication skills, both verbal and written.Ability to multitask and remain organized in a fast-paced environment.Attention to detail and commitment to maintaining high cleanliness and hygiene standards.Basic cooking skills and the ability to follow a menu.Flexibility to work evenings, weekends, and holidays as needed.Join our team and be a pivotal part of providing exceptional customer experiences in a dynamic environment. If you're enthusiastic, adaptable, and passionate about delivering top-notch service and culinary offerings, we encourage you to apply.Job Types: Full-time, Part-time, SeasonalSalary: $16.75-$17.00 per hourBenefits:Discounted or free foodOn-site parkingStore discountSchedule:8 hour shiftMorning shiftNight shiftSupplemental pay types:Overtime payTipsAbility to commute/relocate:Ancaster, ON L9G 3K9: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Ancaster, ON\"\n        },\n        {\n            \"id\": \"2BE65BE7F80CF5E6B597EB03A0048E02\",\n            \"cityName\": \"26557 Civic Centre Rd, Keswick, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=92705dd7aa2cf89b\",\n            \"jobName\": \"Roc Lead Customer Service And Cafeteria Representative\",\n            \"companyName\": \"Town Of Georgina\",\n            \"rowSalary\": \"$17.40–$18.40 an hour\",\n            \"date\": 1694429308183,\n            \"dateOfPosted\": 1693555764780,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2985236,\n                    \"lon\": -79.4389406\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Georgina\",\n                \"formattedAddress\": \"Civic Centre Rd, Georgina, ON L0E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Georgina\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ROC Lead Customer Service and Cafeteria Representative (Posting #2023.101S) Department: Community Services Division: Recreation Services Location: The ROC Status: Seasonal (November 14, 2023 – April 12, 2024) Hours of Work: 20 – 40 hours per week (4 – 8 hours per day) Number of Positions: 1 – 2 Hourly Wage: $17.40 - $18.40 per hour Training Rate: $16.55 per hour Date Posted: August 15, 2023 Date Closing: October 15, 2023 Come work with us! Employment with the Town of Georgina offers an opportunity to make a positive difference in our community. We are a progressive, forward-thinking organization focused on continuous improvement, innovation and providing exceptional customer service. We offer a collaborative team environment and an excellent place to take charge of your career.Position Purpose Responsible for assisting the Recreation Services Supervisor with overseeing the daily operations of the ROC Ticket Office and ROC cafeteria, including but not limited to food preparation, cash handling, cleaning, customer service, opening and closing the facility. For full details, please see attached job description.Minimum QualificationsPossess a High school diploma or equivalent;Current Food Handler certification is considered is required;Previous restaurant or cafeteria food preparation (preferably in a supervisory role);Must be available to work flexible hours including daytime, evenings, weekends and holidays;Excellent customer service skills to deal effectively with the general public; For full details, please see attached job description How to apply Qualified applicants are invited to submit a resume and cover letter, identifying the Job Title and Job ID#. Please apply by visiting the www.georgina.ca/careers no later than 11:59 pm on the closing date. The assessment process may include a practical test and/or interview. Committed to diversity and a barrier-free environment The Town of Georgina is an equal opportunity employer committed to inclusive, barrier-free recruitment and selection processes and work environments. We encourage applications from people with disabilities and will accommodate the needs of applicants under the Ontario Human Rights Code and the Accessibility for Ontarians with Disabilities Act (AODA) throughout all stages of the recruitment and selection process. Please advise the Human Resources Team if you require an accommodation(s) and we will work with you to meet your needs throughout any stage of the process. Please be advised that this information will be treated in a confidential manner. We thank all candidates for their interest, however only those being considered will be contacted. Personal information collected will be used in accordance with the Municipal Freedom of Information and Protection of Privacy Act for the purpose of candidate selection. Further information concerning the collection of personal information should be directed to the Human Resources Manager, Town of Georgina, 26557 Civic Centre Road, Keswick, ON L4P 3G1 (905) 476-4301 JOB DESCRIPTION Title: ROC Lead Customer Service & Cafeteria Representative Division: Recreation Services Position #: SE12 Department: Community Services Reports To: Recreation Services Supervisor Employee Group: Seasonal Direct Exercised: ROC Customer Service Representative Date Created: September 12, 2011 & ROC Cafeteria Attendants Date Amended: August 10, 2023 Position Summary Responsible for assisting the Recreation Services Supervisor with overseeing the daily operations of the ROC Ticket Office and ROC cafeteria, including but not limited to food preparation, cash handling, cleaning, customer service, opening and closing the facility. ResponsibilitiesOpens and closes the ticket office and cafeteria;Assists with training, scheduling, and on-going guidance and support to customer service representatives and cafeteria attendants;Follows all specified procedures to correctly handle all cash and credit transactions, ensuring accurate sales transactions, including counting start up cash and balancing at end of shift, authorizes refunds and provides petty cash as required and makes daily deposits at the end of each closing shift;Performs/oversees sales to customers and maintains a pleasant attitude in an effort to create a positive customer experience and responds to all customer requests in a timely and professional manner;Ensures that food and beverage products are fresh, appetizing and properly prepared in accordance with the York Region Public Health Department regulations and guidelines;Ensures proper food handling procedures to maintain high standards of quality control and hygiene;Correctly operates all food service equipment and conducts regular maintenance inspections;Ensures weekly inventory control and documentation, daily restocking of merchandise and assist with ordering supplies as needed;Ensures diligent record keeping as it pertains to temperature regulations, inventory checklists, equipment and food inspection, and food waste reports are being conducted as needed.Oversees or performs daily cleaning of cafeteria and equipment and trash removal and ensures that cafeteria work areas are kept neat, orderly and clean;Oversees staff in providing prompt, efficient and gracious service to all guests including preparing food, beverages and snacks as ordered, bussing tables and giving correct change for cash transactions;Assists with coordination of special events as required;Utilizes the first in, first out (FIFO) rule and sorts food by their best before or expiration dates.Stores all food and beverage in accordance to York Region Public Health Department timelines and guidelines along with any product timelines and guidelines including listed on packaging.Assists with customer service and cafeteria duties as required (see ROC Customer Service Representative and ROC Cafeteria Attendant job descriptions for further details);Immediately report all concerns (including product), suspicious occurrences and hazardous conditions to the Recreation Services Supervisor or designate. The above statements reflect the general details considered necessary to describe the principal functions and duties of the position and will not be construed as a detailed job description of the work requirements that may be inherent in the job. Skill/Knowledge RequirementsPossess a High school diploma or equivalent;Current Food Handler certification is considered is required;Knowledge of all cafeteria menu options along with food service techniques;Previous restaurant or cafeteria food preparation (preferably in a supervisory role);Knowledge of the ActiveNET and Fareharbor software systems considered an asset;Responsible, courteous, good communication skills;Effective conflict resolution, problem solving and critical thinking skills;Ability to work independently without close supervision;Previous cash handling experience with accurate cash handling skills;Excellent computer Skills and good working knowledge of all Microsoft Office programs;Excellent customer service skills to deal effectively with the general public;Must be available to work flexible hours including daytime, evenings, weekends and holidays.\",\n            \"location\": \"Civic Centre Rd, Georgina, ON\"\n        },\n        {\n            \"id\": \"5917E255399B0E405F6F581B097ED4F3\",\n            \"cityName\": \"10277 City Parkway, Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=27436a8fa995dc48\",\n            \"jobName\": \"Customer Service And Food Preparation\",\n            \"companyName\": \"Donair Hub\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694429301795,\n            \"dateOfPosted\": 1693584832751,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1944856,\n                    \"lon\": -122.8481893\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"City Pkwy, Surrey, BC V3T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Looking for great customer service and flexibility every other training will be providedJob Type: Part-timePart-time hours: 20/40 per weekSalary: From $16.75 per hourSchedule:8 hour shiftDay shiftEvening shiftSupplemental pay types:Bonus payTipsEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)\",\n            \"location\": \"City Pky, Surrey, BC\"\n        },\n        {\n            \"id\": \"C01BDBEE1A0998BE3FAE223DB0590792\",\n            \"cityName\": \"2355 Millstream Rd, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8cfb20955fb2a158\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Domino's Pizza | 655069 Bc Ltd\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694429180364,\n            \"dateOfPosted\": 1693584761945,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.49118850000001,\n                    \"lon\": -123.5101833\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Millstream Rd, British Columbia V9B, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Hot job opening, fresh out of the Oven! The Customer Service Representative's role is crucial within the Domino's system! We pride ourselves on offering fast and friendly service with a smile, and our CSRs lead the way in doing so. Within our fast paced environment, the role is primarily to offer top quality customer service by phone and in person at the counter. Customer Service Representatives are expected to know Domino's products and the current offers in order to provide customers with the correct order and best value based on their needs. Customer Service Representatives will take orders by phone-in customers, as well as customers at the store. They are expected to manage the cash drawer when accepting payment for orders and returning change. CSRs will also handle customer concerns using the approach taught during Domino's onboarding and orientation. In secondary roles, Customer Service Representatives will help make quality products, label boxes, cut pizzas and prepare orders for delivery or to be served to in-store customers. CSRs also help in maintaining the store's professional image by participating in the cleaning tasks assigned to all team members. Benefits of working with Domino's Pizza include: Flexible schedules Competitive wages Staff pizzas Career growth opportunities A uniform is provided, and wages start at $15.65 plus $1.50 - $ 3.50/hour in tips. Customer Service Representatives are expected to be presentable by following Domino's personal image and grooming standards. Domino's is an equal opportunity employer. REQUIREMENTS Previous experience preferred Friendly and well spoken Good math skills to handle cash handling for in-store customer payments Speak English fluently in order to serve customers Focus on cleanliness and personal hygiene At Domino's Pizza, Our Most Important Ingredient is Our People! We offer employment opportunities within our franchise stores. Take the first step in joining our team, and you'll find opportunities you won't find anywhere else in the industry!\",\n            \"location\": \"Millstream Rd, Victoria, BC\"\n        },\n        {\n            \"id\": \"4C73F88A0CB991566B679DAC5B37CFAA\",\n            \"cityName\": \"1010 Polytek Street, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6e5e710979a44a1e\",\n            \"jobName\": \"Customer Sales And Service Rep\",\n            \"companyName\": \"Natural Purity\",\n            \"rowSalary\": \"$75,000–$85,000 a year\",\n            \"date\": 1694429178266,\n            \"dateOfPosted\": 1693584484159,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4562665,\n                    \"lon\": -75.58572459999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Polytek St, Ottawa, ON K1J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 75000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    75000.0\n                ],\n                \"range\": {\n                    \"gte\": 75000.0,\n                    \"gt\": null,\n                    \"lte\": 75000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Sales and Service Rep- Natural Purity www.naturalpurity.ca PLEASE ONLY APPLY IF YOU LIVE IN THE GREATER OTTAWA AREA AND RESIDE FULL TIME IN CANADA. We are currently looking for individuals that share our common goal and are interested in growing with a company that wants a better tomorrow. Customer Sales and Service Reps will visit our customers and offer them great opportunities and options to improve the environmental conditions in their home or business.JOB DESCRIPTION: Customer Sales and Service Reps will be responsible to educate residential and commercial clients about their environmental conditions in their home and the day-to-day effects on their lives and businesses.No experience is necessary as we will provide you with paid training by a certified trainer.We will assure all appointments have been properly screened and meet our guidelines for both the client and team member safety.All of your appointments will be prearranged, and you will have no quotas to meet. There will be no pressure to sell products to potential clients.We will provide you an extremely competitive compensation package with incentives and bonuses along with full benefits and pleasant work atmosphere.No experience necessary as we will provide full training and ongoing support.We provide a great base salary as well as a generous bonus and benefit package.We have current team members that are making six figures in this position. We are looking for enthusiastic and motivated individuals to join our team and grow our business.We ONLY WORK A 4 DAY WORK WEEK. No Saturdays or Sundays. We don't require you to work Statutory Holidays as well.We require candidates to have their own vehicle and provide a professional appearance and possess a great attitude. About Us: We are a Canadian company that is servicing customers from coast to coast with environmentally friendly proprietary products and we are expanding our business. With one of the most advanced management teams, we provide our customers a full understanding of our product line. We also spend considerable effort and time to fully train our team members which provides them the opportunity to rapidly advance within our company. We are focused on preserving the planet through providing education and in turn encouraging everyone to reduce their carbon footprint. By encouraging our customers to use our products we have shown that it will help reduce plastic bottle waste that ends up polluting our rivers, lakes, and streams. Full time positions available. Wage $75,000 - $85,000 per year paid on a weekly basis plus benefits and attractive bonus structure. This is not a work from home position. PLEASE ONLY APPLY IF YOU LIVE IN THE GREATER OTTAWA AREA AND RESIDE FULL TIME IN CANADA. PLEASE NOTE: We require candidates to have their own vehicle for this position. Please DO NOT APPLY if you do not have your own car for transportation to and from customer appointments.\",\n            \"location\": \"Polytek Street, Ottawa, ON\"\n        },\n        {\n            \"id\": \"E0C2415266F2C76DBD5AD2C99D49A0B3\",\n            \"cityName\": \"1283 Cornwall Rd, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d6841ae2970f8628\",\n            \"jobName\": \"Bilingual Customer Service Representative (Eng/Fre)\",\n            \"companyName\": \"Canadian Spa Company\",\n            \"rowSalary\": \"$42,000–$48,000 a year\",\n            \"date\": 1694428616221,\n            \"dateOfPosted\": 1693583568472,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4718977,\n                    \"lon\": -79.6662865\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Cornwall Rd, Oakville, ON L6J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Canadian Spa Company manufactures and wholesales hot tubs, swim spas and outdoor accessories on a global scale to various merchants around the world. With over 35 years of experience in the hot tub industry, we have worked on perfecting and maintaining a highly valued product with a customer first attitude. Our immediate fulfillment approach has allowed us to succeed in this competitive marketplace while providing a quality brand that customers can trust in.The Canadian Head Office is in need of an energetic, hard working and dynamic individual to join our team this year. We are looking for a Bilingual (French/English) speaking Tier 1 Customer Service Representative to assist with the Canadian market and provide translation work for marketing documentation. This is a position with great opportunities depending on the individual's strengths.Responsibilities and DutiesCorrespond with customers on a daily basis through a variety of mediums (phone, email, social media etc)Answer calls and emails to log various service issues through the use of a ticketing systemProvide feedback of product issues in the field to help improve product designTranslation work of marketing/technical documentation to improve our global presenceQualifications and SkillsExcellent customer service skills with the ability to speak and write fluently in English and FrenchTraining will be provided while on the jobProactive team playerIndividual must be able to adapt and learn on the flyGreat communication skills with an emphasis on being a team playerAbility to work in a fast-paced environmentTechnical troubleshooting considered an assistExperience working remotelyMust have competent technical skills (Microsoft Office, Google products etc.)BenefitsVarious benefits include:Competitive salary provided with flexible hoursTeam wide profit sharing and bonus incentives based off annual goalsDirect commission for individual sales and achievementPlease send all resumes through Indeed for review, we hope that you will join our team and become and part of our growth! For any questions don't hesitate to contact us at 1-877-347-7727Job Type: Full-timeSalary: $42,000.00-$48,000.00 per yearBenefits:Dental careDisability insuranceExtended health careLife insurancePaid time offVision careSchedule:Monday to FridayWeekends as neededSupplemental pay types:Bonus payCommission payAbility to commute/relocate:Oakville, ON L6J 7T5: reliably commute or plan to relocate before starting work (required)Application question(s):Describe what \\\"good customer service\\\" means to youExperience:Customer service: 1 year (preferred)Work Location: Hybrid remote in Oakville, ON L6J 7T5\",\n            \"location\": \"Cornwall Road, Oakville, ON\"\n        },\n        {\n            \"id\": \"FE42EDD93BDA9814DFAA0ED64A124931\",\n            \"cityName\": \"Homestead Oxygen + Medical Equipment Inc. in Newmarket, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0f8012030c2719e2\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Homestead Oxygen + Medical Equipment Inc.\",\n            \"rowSalary\": \"$38,000–$43,000 a year\",\n            \"date\": 1694428550144,\n            \"dateOfPosted\": 1691527985298,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.05918700000001,\n                    \"lon\": -79.46125599999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Newmarket\",\n                \"formattedAddress\": \"Newmarket, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Newmarket\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 38000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    38000.0\n                ],\n                \"range\": {\n                    \"gte\": 38000.0,\n                    \"gt\": null,\n                    \"lte\": 38000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Homestead Oxygen + Medical Equipment is a locally owned and operated company built on professional expertise and personal service. Homestead has been meeting the community’s medical equipment needs since 1997. We are opening a new location in Newmarket.Homestead Oxygen + Medical Equipment is now accepting resumes for the following position:Customer Service RepresentativeThe successful applicant will have a passion for helping people live their best life.You are a friendly, well-organized individual who enjoys working with people. You will have a mature attitude and a lot of patience. You will answer questions and help our clients overcome daily challenges by providing advice on braces, compression stockings, walkers, wheelchairs, scooters, bathroom safety products, lift chairs, mobility equipment, and other aids to daily living. Excellent verbal communication skills are required. Previous experience in sales or customer service is preferred. Preference will be given to applicants with Home Health Care sales experience and/or Certified Fitters for compression stockings and supports and braces. Previous experience with Home Health Care is an asset, but we will train the right person.You will be making a difference in people’s lives with care, compassion and empathy.This is a full-time position. Our hours of operation are Monday to Friday 9:00 am to 5 pmHomestead’s goal is to always provide our customers with unparalleled customer care. If you would like to join our team of caring professionals, please email a cover letter and resume by July 30th 2022We thank all applicants, only those qualified will be contacted for an interview.Job Type: Full-timeSalary: $38,000.00-$43,000.00 per yearFlexible Language Requirement:English not requiredSchedule:8 hour shiftMonday to FridayEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In personExpected start date: 2023-08-21\",\n            \"location\": \"Newmarket, ON\"\n        },\n        {\n            \"id\": \"C354CEA00FA5EEEC9FD7C27B8CD7EF8A\",\n            \"cityName\": \"199 Front St Frnt 218, Belleville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e73afc7e49041c18\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mcdougall Insurance And Financial\",\n            \"rowSalary\": \"$40,000–$44,000 a year\",\n            \"date\": 1694428521598,\n            \"dateOfPosted\": 1693583386261,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.1651276,\n                    \"lon\": -77.384746\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Belleville\",\n                \"formattedAddress\": \"Front St, Belleville, ON K8N, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hastings County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Belleville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"McDougall Insurance is now the largest insurance brokerage in Eastern Ontario. We represent over 50 insurance companies, giving us the ability to offer optimal selection and competitive rates. Here at McDougall we have created an Employee Promise. The leadership of McDougall Insurance promises to foster an environment of support, empowerment and inclusion, while investing in our employee’s future with McDougall Insurance. In turn, our employees promise to treat others with dignity and respect and strive to approach each day with a positive attitude and willingness to learn. Together, we promise to deliver Legendary Service to our customers and apply the McDougall principals of Trust, Honesty and Integrity with a goal of building strong lasting relationships. The result is our staff is engaged, accountable and professional.At McDougall Insurance and Financial we offer our employees; a comprehensive benefits package, McDougall pension plan, staff appreciation days, social events, a branch-wide yearend bonus, a competitive salary and paid vacation time starting at 3 weeks.Our growing team is looking for a Customer Service Representative in Personal Lines to join our team in Belleville, Ontario!Are you looking to start a new career? Do you have strong customer service skills? If so, this might be the perfect opportunity for you. We provide you with all the tools, knowledge and training you need to be successful in this role.Responsibilities:· To provide legendary service directly to the client, after the sale by the Sales Executive.· Communicate with the client in person, by phone, email, text, etc. to answer all of their questions/inquiries, provide professional advice or recommendations regarding their coverage, and collect relevant information.· Process additions, deletions or changes to their policy on the appropriate broker management system (EPIC)· Ensure all transactions and renewals are accounted for and processed accurately and on a timely basis.· Provide quotations or estimates to clients on premiums, update information, and confirm data and coverage and to record appropriate changes or adjustments.· Communicate with insurance company personnel as required.· As an independent broker working for your client, acts as liaison with the insurer and balances the interests of the client, McDougall Insurance and the insurance company in force.· Function as part of a team responsible for assisting in the collection of accounts receivable and in any other area as required.· Where appropriate, procure a sale, normally through upgrading and bundling coverage for personal lines clientsQualifications:· Must have exceptional customer service and communication skills.· Acts in a professional manner at all times and maintains a position of trust and confidentiality.· Acts in an open, respectful, honest and helpful manner with all team members, clients and other staff.· Ability to work effectively in a fast-paced environment· Must be willing and eligible to obtain a RIBO licenseRIBO stands for the Registered Insurance Brokers of Ontario. RIBO regulates the licensing, professional competence, ethical conduct and insurance related financial obligations of all independent general insurance brokers in the province of Ontario. To learn more please visit https://www.ribo.com/What We Offer:Dedication to investing in our employees’ future by offering RIBO, CAIB, and other designation education reimbursementA supportive and inclusive culture where diversity is valuedA competitive employee health and dental benefits program including long term disabilityA competitive pension planPaid vacation timeOn-site parkingAccess to ongoing training and development through our McDougall training teamMcDougall Insurance and Financial is proud to be an equal opportunity employer. We aim to find individuals who are passionate about their work and treat others with dignity and respect.If you need assistance or an accommodation, you may reach out to our Human Resources Department through our website:https://www.mcdougallinsurance.com/contact/Job Types: Full-time, PermanentSalary: $40,000.00-$44,000.00 per yearBenefits:Company eventsCompany pensionDental careDisability insuranceEmployee assistance programExtended health carePaid time offVision careFlexible Language Requirement:French not requiredSchedule:Day shiftMonday to FridaySupplemental pay types:Bonus payWork Location: In personApplication deadline: 2023-09-08\",\n            \"location\": \"Front Street, Belleville, ON\"\n        },\n        {\n            \"id\": \"67AD530CEAE070D1DFFD49A8C45AD40E\",\n            \"cityName\": \"54 Davis Dr, Newmarket, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ec673ab070e58646\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Wingsup! Restaurants Newmarket\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694428486499,\n            \"dateOfPosted\": 1668992137108,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.0624094,\n                    \"lon\": -79.44692739999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Newmarket\",\n                \"formattedAddress\": \"Davis Dr, Newmarket, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Newmarket\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Operations of various kitchen stations (cashier, breading, frying, saucing, prep)· General preparation of ingredients and finished food products for presentation to guest· General housekeeping and cleaning of kitchen, storefront and service counter (sweeping, mopping, dishes, scrubbing surfaces, etc.)· Customer service & order taking - ringing in and adjusting orders in person and over phone· Operating a point-of-sale (POS) system to ring in orders, and basic cash handling and processing debit/credit & gift card paymentsJob Types: Full-time, Part-time, PermanentSalary: $15.50-$16.50 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftEvening shiftHolidaysNight shiftWeekend availabilityCOVID-19 considerations:Requiring the use of masks among all staff. Masks are most essential in times when physical distancing is difficult. Information should be provided to staff on proper use, removal, and washing of masksJob Type: Part-timePart-time hours: 20-40 per weekBenefits:On-site parkingStore discountSchedule:Day shiftEveningsOn callWeekend availabilitySupplemental pay types:TipsAbility to commute/relocate:Newmarket, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Davis Dr, Newmarket, ON\"\n        },\n        {\n            \"id\": \"539FE115CD983FC4D91B5188F91EED71\",\n            \"cityName\": \"Home Hardware Sherwood Park in Sherwood Park, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cdb0e7d18f896bac\",\n            \"jobName\": \"Customer Service/Sales\",\n            \"companyName\": \"Home Hardware Sherwood Park\",\n            \"rowSalary\": \"$18–$23 an hour\",\n            \"date\": 1694428445545,\n            \"dateOfPosted\": 1693581693393,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5411916,\n                    \"lon\": -113.2957355\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sherwood Park\",\n                \"formattedAddress\": \"Sherwood Park, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sherwood Park\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CUSTOMER SERVICE SALESPERSONFULL-TIMEJOB DESCRIPTION:The LBM (Lumber and Building Materials) Counter Salesperson is responsible for providing prompt, courteous and efficient customer service, advising them on appropriate merchandise and related items. Their duties include:Being familiar with building supply pricing.Local building codes.Types of building permits issued.Preparing quotations.A variety of other related tasks.The LBM Counter Salesperson must perform all assigned tasks with sufficient speed and accuracy to avoid adverse impacts on customer service and achieve sales profitability.DUTIES / RESPONSIBILITIES:Ensure customers are greeted within 30 seconds of their arrival at the LBM counter.Determine customers’ needs by asking open-ended questions. Communicate product knowledge to the customer as appropriate—process special orders for non-stock or out-of-stock items. Be familiar with and maintain up-to-date pricing information. Help customers solve building problems. Update yourself with practical knowledge of building materials and lumber products, including their uses, advantages, and disadvantages. Resolve customer complaints. Be familiar with current yard inventory and surplus items. Suggest rules, policy and procedural changes when you believe they would improve efficiency, sales, profits, morale, etc. Maintain professional confidentiality of all store and customer records. Work on additional duties and assignments as assigned by management. Work safely following provincial and federal safety legislation and the use of good common sense. Report any potential hazards and unsafe behaviour to management to correct the situation.QUALIFICATIONS:Ability to work a flexible schedule, including weekends and evenings.A great attitude that continuously brings sales energy every day.Must communicate effectively and persuasively with employees, management, suppliers, and customers to obtain accurate information for pricing, estimates, quotations, etc.Prior retail experience is beneficial.Willingness to continually develop professional skills and knowledge base.High School graduate or equivalent.Ability to work cooperatively in a team atmosphere.WORKING RELATIONSHIPS:Reports directly to the Sales ManagerJob Type: PermanentSalary: $18.00 to $23.00 /hourJob Types: Full-time, PermanentSalary: $18.00-$23.00 per hourExpected hours: 40 per weekBenefits:Dental careExtended health careStore discountVision careSchedule:8 hour shiftMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Sherwood Park, AB\"\n        },\n        {\n            \"id\": \"97201346706005F38930F75C59818659\",\n            \"cityName\": \"693 Fairford St W, Moose Jaw, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0952cc522b119397\",\n            \"jobName\": \"Dispatcher/Customer Service\",\n            \"companyName\": \"Town & Country Plumbing & Heating (Moose Jaw)\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694428372568,\n            \"dateOfPosted\": 1693581755751,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.3925849,\n                    \"lon\": -105.547062\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moose Jaw\",\n                \"formattedAddress\": \"Fairford St W, Moose Jaw, SK S6H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moose Jaw\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Summary DetailsReporting to the Operations Manager, the dispatcher is responsible for dispatching of Technicians to customer locations, providing excellent customer service over the phone and in person, organizing upcoming jobs, overseeing maintenance program. Working under general supervision following clearly defined procedures and policies.This individual provides extraordinary customer service to clientsEstablishes and maintains effective communication and working relationships with clients, co-workers, and managers, etc.The Dispatcher assigns individuals and teams to tasks and locations.Coordinates resources according to customer requests and general job demands.Communicates assignments to employees and enters assignment data in computer software.Complies with all safety, security, compliance, and quality standards and procedures established by the Company, Clients, and regulatory authoritiesResponsibilitiesSupport the performance of the branch operations, including planned and unplanned maintenance/service/ installation/control calls from customers.Provide assistance, information and customer service as requested to clients.Schedules and dispatches employees, crews/teams, equipment, or service vehicles to appropriate locations according to customer requests, specifications, or needs, determine types or amounts of equipment, vehicles, materials, or personnel required according to work orders or client requirementsRelays work orders, messages, and information to or from crews/teams, supervisors, and managementConfers with clients and/or supervising personnel in order to address questions, problems, and requests for service or equipmentMonitors personnel and/or equipment locations and utilization in order to coordinate service and schedules to achieve optimal efficiency; ensures timely and efficient movement of resources according to work orders and/or resource schedulesOversees all communications within specifically assigned areasReceives or prepares work orders and work schedulesOrders supplies and equipment and issues them to personnelRecords and maintains files and records of customer requests, work, or services performed, inventory, and other dispatch informationStrictly adheres to all safety and regulatory compliance proceduresCoordinates and arranges for necessary repairs in order to restore service and schedulesMiscellaneous duties as assignedTracking:Maintains periodic contact with service personnel to ensure completion of assigned dutiesInforms the on-duty supervisor of any issues out of the ordinary that may need additional assistance or oversightCreates reports to monitor activity and operationsTransportation:Creates a work schedule for on-duty techniciansMaintains periodic contact with the technicians to ensure that they are safely and efficiently completing their assigned tasksInforms the supervisor of any issues out of the ordinary that may need additional assistance or oversightQualificationsMust be 18 years of age or olderPrevious knowledge in HVAC, plumbing, and/or electrical an assetPreferred Qualifications:Customer Service Experience1 yr of similar work experienceJob Type: Full-timeSalary: $18.00-$25.00 per hourBenefits:Dental careExtended health careRRSP matchFlexible Language Requirement:English not requiredSchedule:8 hour shiftSupplemental pay types:Overtime payExperience:dispatching: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Fairford St W, Moose Jaw, SK\"\n        },\n        {\n            \"id\": \"34C744A284B13F100BE31278F1638496\",\n            \"cityName\": \"6115 Danville Rd, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e43e5c3330cf4aa7\",\n            \"jobName\": \"Customer Service Representative (Pm)\",\n            \"companyName\": \"Lakeside Performance Gas Services Ltd\",\n            \"rowSalary\": \"$19.50 an hour\",\n            \"date\": 1694428351906,\n            \"dateOfPosted\": 1693580461999,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.643354,\n                    \"lon\": -79.67461700000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Danville Rd, Mississauga, ON L5T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*NOTE – applicants must be prepared to participate in the interview process via phone and/or video conference. Two references must be submitted if selected for an interview. *COMPANY OVERVIEWFor over 20 years, Lakeside Performance Gas Services Ltd. has been proudly serving the natural gas industry across Ontario and Quebec in partnership with top Utilities service providers. The company further excels in providing innovative solutions to its customers and extended group of clients. Headquartered in Mississauga with satellite offices throughout Ontario, the company values its dedicated group of personnel who consistently provide customers with the highest level of support.WORK HOURSMondays to Fridays from 11:30AM - 8:00PMJOB DESCRIPTIONThe purpose of the administrative function at Lakeside Gas Services is to deliver superior service through accurate data entry, aid with correspondence, record keeping and filing, while providing information to customers and maintaining the accuracy of databases.PRIMARY RESPONSIBILITIESReceive, process, and schedule requests for residential/commercial service as appropriate.Maintain regular and consistent communication with Technicians and customers.Respond to customer requests and schedule timely service appointments.Issue correspondence per predetermined schedule.Review work orders for accuracy and completeness.Ensure accuracy in information transfer and coding of documentation.Track and provide progress report on the status work assignments.Correspond and investigate with the Technicians and Utility organizations in regards to errors.Participate as needed in special department projects and other duties as assigned by department leaders.Ensure filing is accurate and updated correspondence is available as necessary in support of records integrity.Multitask efficiently using several Windows applications simultaneously to verify customer information, determine the root cause of any issue and provide the proper resolution.Exceptional computer skills (MS Office, Intermediate Excel.Perform other duties as assigned.EDUCATION AND EXPERIENCE REQUIREMENTHigh school or equivalent diplomaAsset to have a post-secondary diploma in Business Administration or equivalent.1-2 years Administrative and/or customer service experienceExperience in office administration/office setting is an asset.WORKING AT A LAKESIDE LOCATIONFlexibility is key; willing to work at a fast pace with attention to detail and accuracy.Ability to work as a team, as well as independently.No travelINCLUSION AND EQUAL OPPORTUNITY EMPLOYMENTAt Lakeside Gas Services, our belief is that diversity and inclusion are fundamental and integral part of its business innovation and growth.We are committed to building diverse and inclusive teams within an equitable workplace for our staff to collaborate and bring their true selves to work. We also strive to provide an accessible candidate experience for our prospective staff with various abilities. Please let us know if you need any accommodations during the recruitment process. Lakeside continues to actively address and improve on issues of inequity and systemic bias to support our diverse talent, clients, and communities.Job Types: Full-time, PermanentSalary: $19.50 per hourBenefits:Casual dressCompany eventsDental careExtended health careLife insuranceOn-site parkingPaid time offRRSP matchVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftEvening shiftMonday to FridaySupplemental pay types:Overtime payRetention bonusAbility to commute/relocate:Mississauga, ON L5T 2H7: reliably commute or plan to relocate before starting work (preferred)Application question(s):Are you legally eligible to work in Canada and location specified in the job posting and, if applicable, hold a valid work permit or study permit that allows you to fulfill the requirements of this role?Are you willing to undergo a background check (criminal, professional and academic), in accordance with local law and regulations?Are you willing to start at $19.50 per hour with a compensation review after probation?Are you comfortable with using a computer all day?Education:Secondary School (preferred)Experience:administrative, customer service and/or call center: 1 year (preferred)Work Location: In personExpected start date: 2023-10-02\",\n            \"location\": \"Danville Rd, Mississauga, ON\"\n        },\n        {\n            \"id\": \"0C2BBACB6B01605B12841A01A756A9DD\",\n            \"cityName\": \"Coquitlam, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e42997324107cf80\",\n            \"jobName\": \"Dispatcher/Customer Service\",\n            \"companyName\": \"Trifecta Plumbing & Hvac\",\n            \"rowSalary\": \"$20–$30 an hour\",\n            \"date\": 1694428215509,\n            \"dateOfPosted\": 1693577070127,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2837626,\n                    \"lon\": -122.7932065\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Coquitlam\",\n                \"formattedAddress\": \"Coquitlam, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Coquitlam\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Calling all happiness heroes and chat champions! Are you a vibrant ball of energy, fueled by the power of laughter and the joy of helping others? Well, prepare for the ultimate job extravaganza because we're hiring for the most epic role ever: Customer Service Rockstar!Our company is all about creating a work environment that's happier than a unicorn at a cotton candy factory. We've got a compensation package that will make your piggy bank dance with glee and benefits that will make you feel like you've won the lottery. It's a win-win situation, my friend!As our Customer Service Superstar, you'll embark on a thrilling adventure, communicating with our lovely customers in the plumbing wonderland. Your mission? To ensure they receive the VIP treatment they deserve and leave with smiles wider than the Grand Canyon.But hold on to your hats because the fun doesn't stop there! When you join our team, you'll unlock a treasure trove of perks and delights:A paycheck that will have you doing the cha-cha every payday.Paid time off to recharge your superhero powers and explore the world (or binge-watch your favorite shows).Superhero-worthy medical, dental, and vision insurance to keep you healthy and looking fabulous.matching rrsp to save for your futureOpportunities for career growth that will make you feel like you've leveled up in the game of life.A company culture so fantastic, it's like working in a magical land where unicorns moonlight as comedians.If you're a bundle of fun, happiness, and epic awesomeness looking to join a company that knows how to throw a party, don't wait a second longer! Apply now, and let's embark on a wild ride full of laughter, success, and mind-blowing plumbing adventures. Together, we'll create a future that's funnier than a stand-up comedy show at a water park!Duties:-using Service titan to book calls and dispatch technicians-apply for permits-collect payment over the phone from customers- Make outbound calls to customers to provide assistance and resolve issues- Analyze customer needs and provide appropriate solutions- Maintain accurate and detailed records of customer interactions- Collaborate with other team members to ensure excellent customer service- Follow company policies and procedures in all customer interactionsExperience:- if you have used Service Titan ,apply right now !- Previous experience in a customer service role is preferred but are looking for someone who has used service titan !- Strong communication skills, both verbal and written- Excellent problem-solving and analytical abilities- Ability to work well in a team environment- Proficient computer skills, including knowledge of Microsoft Office SuiteWe offer competitive pay and benefits package, including:- Health insurance- Dental insurance- Vision insurance- Paid time off- Retirement planIf you are a motivated individual with a passion for providing exceptional customer service, we would love to hear from you. Please submit your resume and cover letter detailing your relevant experience.Job Type: Full-timeSalary: $20.00-$30.00 per hourBenefits:Casual dressCompany eventsDental careExtended health carePaid time offRRSP matchVision careWork from homeSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payOvertime payRetention bonusSigning bonusEducation:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Coquitlam, BC\"\n        },\n        {\n            \"id\": \"524DD089F3948B08FC98EF6C9FC441F6\",\n            \"cityName\": \"Vanier, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5b438c7fc4265c17\",\n            \"jobName\": \"Entry Level Customer Service Representative\",\n            \"companyName\": \"Lucent Marketing Group\",\n            \"rowSalary\": \"$39,000–$45,000 a year\",\n            \"date\": 1694428186755,\n            \"dateOfPosted\": 1693577362286,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4370851,\n                    \"lon\": -75.658968\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Vanier, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 39000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    39000.0\n                ],\n                \"range\": {\n                    \"gte\": 39000.0,\n                    \"gt\": null,\n                    \"lte\": 39000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you experienced in the Customer Service and Sales field and looking to utilize your customer-centric approach to business development? Lucent Marketing Group is one of the Ottawa regions leading firms in Customer Service, Sales, and Business Development. We are dedicated to providing our clients with the utmost care and have a history of delivering profitable results and exceeding expectations in a vastly growing consulting industry. Utilizing this customer-centric and consultative approach is a cornerstone in how our Customer Service and Sales Team works together to create a dynamic, diverse and collaborative workspace.We emphasize our employee’s goals, growth, and leadership development to foster this atmosphere. As part of our Entry Level Customer Service Representative team, you would become an expert in all areas of consulting, customer service, sales, and leadership development. The ideal candidate is undeniably dedicated to advancing our core mission of innovation and inclusiveness. The right candidate for our Entry Level Customer Service Representative role is also a communications expert, empathetic towards people, and is exceptional at delivering results on behalf of our renowned clientele. If you are confident and possess these traits, joining our Entry Level Customer Service Representative team would be ideal for you.As A Entry Level Customer Service Representative You Will Be Responsible To:Articulate the features and benefits of our client’s products and services directly to our customers and possess the knowledge to answer any additional questions they may haveBuild rapport and long-lasting relationships with our customers to help ensure repeat business and brand loyaltyComplete the sales process with any qualifying customer who meets the client’s parameters and maintains the ability to lead with the client brand, not discountsSupport the rest of our Entry Level Customer Service Representatives and Sales teams with remaining daily responsibilities including but not limited to, compliance, product delivery tracking, and quality assuranceDrive customer engagement and satisfaction from initial contact through the point of sale to delivery of products to further help scale acquisition growth and longevityEffectively and efficiently communicate with customers to handle all inquiries, resolve issues, and overturn any objections while completing the sales processWhat We Look For In Our Entry Level Customer Service Representative:1 year of experience in an entry-level or introductory position within the field of customer service and/or sales is preferredA self-motivated individual dedicated to utilizing their existing skills and have a student mentality to learn new skillsetsStrong leadership skills and capability to mentor other members of the Entry Level Customer Service Representative and sales teamsExceptional communication skills, both written and verbalTenacious and dedicated to reinforcing the core values of unbelievable customer servicePerks Of Working With Lucent Marketing Group:Travel opportunities, both locally and internationallyLeadership development workshops and conferences across the country (in-person & virtual)Uncapped organic growth potential within our organizationEngagement opportunities to enhance our team collaborative cultureJob Type: Full-timeSalary: $39,000.00-$45,000.00 per yearBenefits:Employee assistance programSchedule:Monday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Vanier, ON\"\n        },\n        {\n            \"id\": \"E549FCC668DBE5E278F5A01BA5F75DE2\",\n            \"cityName\": \"Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ef7b1422a33f7e81\",\n            \"jobName\": \"Entry Level Customer Service Representative\",\n            \"companyName\": \"Lucent Marketing Group\",\n            \"rowSalary\": \"$39,000–$45,000 a year\",\n            \"date\": 1694428157495,\n            \"dateOfPosted\": 1693577070142,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 39000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    39000.0\n                ],\n                \"range\": {\n                    \"gte\": 39000.0,\n                    \"gt\": null,\n                    \"lte\": 39000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you experienced in the Customer Service and Sales field and looking to utilize your customer-centric approach to business development? Lucent Marketing Group is one of the Ottawa regions leading firms in Customer Service, Sales, and Business Development. We are dedicated to providing our clients with the utmost care and have a history of delivering profitable results and exceeding expectations in a vastly growing consulting industry. Utilizing this customer-centric and consultative approach is a cornerstone in how our Customer Service and Sales Team works together to create a dynamic, diverse and collaborative workspace.We emphasize our employee’s goals, growth, and leadership development to foster this atmosphere. As part of our Entry Level Customer Service Representative team, you would become an expert in all areas of consulting, customer service, sales, and leadership development. The ideal candidate is undeniably dedicated to advancing our core mission of innovation and inclusiveness. The right candidate for our Entry Level Customer Service Representative role is also a communications expert, empathetic towards people, and is exceptional at delivering results on behalf of our renowned clientele. If you are confident and possess these traits, joining our Entry Level Customer Service Representative team would be ideal for you.As A Entry Level Customer Service Representative You Will Be Responsible To:Articulate the features and benefits of our client’s products and services directly to our customers and possess the knowledge to answer any additional questions they may haveBuild rapport and long-lasting relationships with our customers to help ensure repeat business and brand loyaltyComplete the sales process with any qualifying customer who meets the client’s parameters and maintains the ability to lead with the client brand, not discountsSupport the rest of our Entry Level Customer Service Representatives and Sales teams with remaining daily responsibilities including but not limited to, compliance, product delivery tracking, and quality assuranceDrive customer engagement and satisfaction from initial contact through the point of sale to delivery of products to further help scale acquisition growth and longevityEffectively and efficiently communicate with customers to handle all inquiries, resolve issues, and overturn any objections while completing the sales processWhat We Look For In Our Entry Level Customer Service Representative:1 year of experience in an entry-level or introductory position within the field of customer service and/or sales is preferredA self-motivated individual dedicated to utilizing their existing skills and have a student mentality to learn new skillsetsStrong leadership skills and capability to mentor other members of the Entry Level Customer Service Representative and sales teamsExceptional communication skills, both written and verbalTenacious and dedicated to reinforcing the core values of unbelievable customer servicePerks Of Working With Lucent Marketing Group:Travel opportunities, both locally and internationallyLeadership development workshops and conferences across the country (in-person & virtual)Uncapped organic growth potential within our organizationEngagement opportunities to enhance our team collaborative cultureJob Type: Full-timeSalary: $39,000.00-$45,000.00 per yearBenefits:Employee assistance programSchedule:Monday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"D5EBC817CE00647DBCE45AADB4CD40BE\",\n            \"cityName\": \"Bracebridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a1e442e1a5bf3595\",\n            \"jobName\": \"Customer Service And Warranty Representative\",\n            \"companyName\": \"Mica Sport Canada\",\n            \"rowSalary\": \"$25–$30 an hour\",\n            \"date\": 1694428073288,\n            \"dateOfPosted\": 1693575923312,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.0389565,\n                    \"lon\": -79.3078787\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bracebridge\",\n                \"formattedAddress\": \"Bracebridge, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Muskoka District Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bracebridge\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 25.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    25.0\n                ],\n                \"range\": {\n                    \"gte\": 25.0,\n                    \"gt\": null,\n                    \"lte\": 25.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service and Warranty RepresentativeIf you are an outdoor enthusiast, avid cyclist, skier, snowboarder, or runner that would like to work for a Global leader in the Sporting goods industry, we are hiring. Mica Sport Canada is the Canadian Distributor for Scott Sports, with the head office & warehousing located in Muskoka, Ontario.We're looking for an eager and tech-savvy customer service and warranty representative. As a customer service and warranty representative, you'll be responsible for troubleshooting product and service related issues, administering warranties and providing superior customer service.Job SummaryWork closely with the bike brand coordinator to provide excellent customer service to dealers, sales agents, and end users.Provide the first point of contact to dealers, sales agents and end users for bicycle related questions via telephone and e-mail.Provide a timely response to bicycle related questions.Work closely with the credit department making sure orders are accurately entered to ensure payment in a timely manner.Answering customer inquiries in a timely and professional mannerResponding to customers and troubleshooting technical issuesTracking and resolving customer service related issues in a timely mannerEnsuring that customer service needs are met with minimal interruption of servicePreparing and tracking warranties and replacement productsResponsibilities:Manage, maintain, and administer all aspects of bicycle related warranty claims and issues.Enter all bicycle related orders in a timely and accurate manner (Dealers, sales agents, staff, warranty, and promotional).Manage and distribute sales order pick lists through incoming and available inventory based on ship dates and in-season order requirements, while maximizing freight efficiencies.Manage and maintain inventory and available to sell reports for internal and external use.Maintain and update a dealer database to ensure accurate order entry, discounts, terms, credit limits and shipping arrangements.Assist in the generation and creation of sales and marketing analysis.Assist the sales and marketing manager in the execution and implementation of all sales and marketing programs.Assist in the preparation for bicycle related shows and events.Assist in the setup and tear down of bicycle related events and shows.Travel as required to events and shows.Track, manage and maintain the demo fleet of bicycles.Act as support for all areas of customer service.You're a great fit for this role if you have:· Post-Secondary Education· Bicycle specific Knowledge or interest1 - 2 years' experience in customer service and tech supportExcellent verbal and written communication skillsStrong technical and problem-solving skillsKnowledge of customer service systems and softwareStrong organizational and time management skillsExperience in the warranty and customer service industry is a plus· Clean Driving record and ability to drive a company vehicle· Ability to travel domestically and internationallyCompensation/Remuneration:Salaried Position Range $25-30/hour based on experience specific to sporting goods industryHealth Benefits PackageEmployee Product Benefit PackageOffice is based in Bracebridge, ONMonday-Friday 8:30-5:00If you're the perfect candidate for this role and meet the qualifications above, we'd love to hear from you. To apply, please submit your resume and any relevant experience for review.Job Types: Full-time, PermanentSalary: $25.00-$30.00 per hourBenefits:Dental careExtended health careLife insuranceSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsWork Location: In person\",\n            \"location\": \"Bracebridge, ON\"\n        },\n        {\n            \"id\": \"7D7062B8D7454DA3F895464D42251E75\",\n            \"cityName\": \"3900 12 St NE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=df025083026c39f1\",\n            \"jobName\": \"Bilingual (French) Customer Service Representative\",\n            \"companyName\": \"Advanced Orthomolecular Research\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694427730377,\n            \"dateOfPosted\": 1693534485882,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.10407319999999,\n                    \"lon\": -114.0365001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"11 St NE, Calgary, AB T2E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"AOR is one of Canada’s fastest growing Nutraceutical health supplement organizations. Our market leading premium products are manufactured and distributed primarily to specialty retailers throughout Canada and the United States.ResponsibilitiesLearn and maintain high level product knowledge of AOR products to help educate customersPromote AOR’s brand and products and capture opportunities to upsell or cross sell AOR productsProcessing orders by phone, fax and emailMaintaining up to date and accurate customer filesHandling customer creditsFilter and direct calls, and emails to the appropriate departmentsSupply relevant marketing materials to customers and fellow staff to ensure informational needs are metResolve customer complaints in a positive, timely, win/win manner. Document issues and actions taken in accordance with company processes for future problem analysis and elimination.Answer all technical questions on nutrition and our product line for customers via the phone, tickets and live chat.Receive monthly training on new and existing products.Investigate complicated customer questions with the research team, and occasionally the Quality Control team.Make suggestions on AOR products for customers based on a condition or symptom they might be trying to correctAssist the Customer Excellence Manager as necessaryAssist Marketing, Shipping, and Finance departmentWork synergistically with the both the Internal and External teamQualifications and SkillsObtained a Certificate in Holistic Nutrition (Preferable)Fluent in French- oral and written (required)Completed post- secondary diploma in business, marketing, human resources, health science) is a nice to have but not required.Should have a strong work ethic, inter-personal skills, and independentExperience within a health- related industry would be considered an assetExperience working with Navision would be considered an assetJob Type: Full-timeSalary: $18.00-$22.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceOn-site parkingPaid time offRRSP matchVision careWellness programSchedule:8 hour shiftDay shiftMonday to FridayWork Location: In person\",\n            \"location\": \"St NE, Calgary, AB\"\n        },\n        {\n            \"id\": \"3C29D77E5013F9204C504AC483A3BB7D\",\n            \"cityName\": \"Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=28abf0bf5a686523\",\n            \"jobName\": \"Customer Service Specialist\",\n            \"companyName\": \"Bauco Access Panel Solutions Inc\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694427293422,\n            \"dateOfPosted\": 1693534782073,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4284207,\n                    \"lon\": -123.3656444\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About Bauco Access Panel Solutions Inc.  Founded in 1995, BAUCO is a manufacturing enterprise located in Victoria, BC utilizing local skills and internationally sourced inputs and technologies to create exceptional products and services. As the manufacturer and distributor of quality access panels, we serve local, national and international clients in North America and the Caribbean. The panels are virtually invisible when finished, and are an architect favorite for high-rise construction projects such as hotels and residential developments. We support architects, developers, and contractors in solving service access issues, while maintaining interior design aesthetics and ensuring easy access. We have a dynamic team with overwhelming passion and commitment to excellence. About the role:  Our customer service specialists are the face of the company. In our team driven office, you will work with other specialists to keep the business moving forward. You will interact directly with industry professionals to determine the best solution for their requirements. You will work with them from first call through to delivery providing exceptional service by applying our proven process. What you will be doing:  You are all about attention to detail and delivering solutions to customers to solve their problems. You carefully listen to client concerns. You have an aptitude and desire to understand technical details. You draw upon the resources of the technical team, employ your in-house training and utilize resources such as product literature, web links, and samples to provide detailed application based consultation. You provide commercial information in the form of detailed quotes outlining cost of goods, trade discounts, freight costs and delivery times. You will work with our established account management process, utilizing CRM , accounting, and quoting software. You enjoy communicating by phone, email, and mail with people across North America and beyond. What you bring to the table: Minimum 2 years customer service experience in a similar role. Previous experience in manufacturing, construction, commercial building supply or another business-to-business sales environment is preferred. Experience in customer support or account management is preferred. Exceptional attention to detail. Customer service driven. Strong written and telephone communication skills. Multi-targeted: versatility to move between tasks with ease, and to monitor status of many different customers. Ability to investigate and problem solve. Excellent organization skills: Priority based time management and task tracking. Team player: Shares workload to maintain a cooperative team environment. Demonstrated ability to provide, receive, and act on constructive feedback in a team based environment  Ability to collaborate with a team to solve issues from a shared leadership perspective. Enthusiasm to learn and understand our market and customer environment. Tech savvy: experience including point of sale in QuickBooks or similar, Microsoft Office Suite, CRM software. Detail focused: able to perform complex tasks with a high degree of accuracy. Experience: What we will provide to you: Competitive salary plus participation in the company bonus program. Comprehensive medical, dental, and vision care benefits to support you and your family. Options for flexible hours and some remote workdays. Generous vacation and personal leave policy to recharge and rejuvenate. Continuous learning and training to sharpen your skills and keep you ahead of the game. A casual and supportive work environment that nurtures innovation , recognizes and rewards outstanding performance. One-on-one meetings, Performance reviews, Collaborative planning, and goal-setting sessions, Employee of the Month peer recognition program, Monthly staff appreciation lunches, and many other perks. Hiring Salary: $20.00-$24.00 per hour Job Type: Full-time Salary: $20.00-$24.00 per hour\",\n            \"location\": \"Victoria, BC\"\n        },\n        {\n            \"id\": \"213A9DD544F27E2F20114BC0A1D9D7AE\",\n            \"cityName\": \"2225 14th Ave, Regina, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=10677186bb750b80\",\n            \"jobName\": \"Technician Support And Customer Service\",\n            \"companyName\": \"Rescuetech (Cbas Services Ltd)\",\n            \"rowSalary\": \"$14–$16 an hour\",\n            \"date\": 1694425232266,\n            \"dateOfPosted\": 1694236814574,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"RescueTECH is Regina's premier destination for computer repair, serving both Apple and Windows-based computers for over 15 years. As a locally owned and operated business, we also offer onsite IT services to both home and business users in the Regina area.RescueTECH is currently seeking a part-time employee (approximately 20 hours a week) to assist our repair technicians in their daily tasks. Job responsibilities will include basic office maintenance, daily vacuuming and trash disposal, monitoring and responding to emails, voicemails, and social media messages, answering phone calls and in-person inquiries, contacting customers regarding their devices, processing payments and related transactions, and any other duties as required by the employer.Only individuals who meet the following criteria will be considered:Must-haves:Physical presence for conducting job interviews in Regina, Saskatchewan.Good personal hygiene, verifiable references, and excellent English language communication skills.The ability to work independently.General knowledge of computers, their components, and operations.Past experience in customer service relevant to the position and its responsibilities.Reliability and the capacity to adhere to a set work schedule, such as 9:00 am to 12:00 pm, Monday to Friday (or as otherwise agreed upon by the employee and employer).Good-to-haves include work experience in the following areas:· Hardware repair and troubleshooting of Windows and Apple computers and other devices.· Repair of Android and/or Apple devices.· Micro-soldering and board repair.· Data recovery.· Social media management.Wages will be determined based on the work experience and qualifications of the successful candidate. Students are encouraged to apply.Job Type: Part-timePart-time hours: 20 per weekSalary: $14.00-$16.00 per hourBenefits:Flexible scheduleFlexible Language Requirement:French not requiredSchedule:Day shiftNo weekendsEducation:Secondary School (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"A0FCD6F34EE2245A7BECD5FD905BFB2C\",\n            \"cityName\": \"5526 Kingsway, Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6224d2b7aa3f8b00\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Milani Plumbing Heating & Air Conditioning Ltd.\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694423942612,\n            \"dateOfPosted\": 1693533584393,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.22315889999999,\n                    \"lon\": -122.9831859\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Kingsway, Burnaby, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"If you are the kind of person that loves helping people and are looking for a role where you can apply your excellent communications skills, then we want to hear from you!As Vancouver’s largest plumbing, heating and air conditioning company continues to expand, we need to add more people to our award-winning team! We are seeking a full-time customer service representative to join our Customer Service team. With more than 120 service trucks on the road, we field a large volume of calls every day from people all over the Lower Mainland that need our help with their plumbing, drainage, heating and air conditioning service.We are looking to fill this open position within our organization immediately, we would like to hear from people with great communication skills who truly enjoy customer serviceJob Duties:- You will handle incoming calls, responding to customer e-mails and in webchat;- Learn about our services inside and out to be able to answer any questions from customers.- Learn to identify customers’ concerns and desires in order to provide appropriate service;- Keep a record of customers’ inquiries using the company’s software system;- Schedule appointments for our plumbing, heating and air conditioning services;- Work with colleagues when necessary to resolve customer complaints;- Provide feedback to other departments to improve sales and business processes.Successful candidates must:Possess outstanding communication and customer service skillsHave a great attitude, be positive and energeticBe detail-orientedHave excellent time-management and be organizedHave excellent computer skills and typing speedBe an expert multi-taskerBe comfortable in a fast-paced environmentSpeak English fluentlyExperience working in a call center is not required but an assetMandarin or Cantonese are an asset.We provide:- Competitive Wages- Extended Medical/Dental- Training- Encouraging work environment;- Excellent team;- Opportunities for advancement- Vacation Pay- Flexible work schedule- Job DiversityCustomer Service Representatives will handle a high volume of telephone calls and is critical to the success of our business.Please respond with your resume. Applicants with a matching skillset will be contacted for a phone interview to verify your energy and communication skills.Milani Plumbing Drainage & Heating Ltd. is an equal opportunity employer!While we thank all candidates for their interest, only those who most closely match our requirements will be contactedJob Types: Full-time, PermanentSalary: $20.00-$24.00 per hourBenefits:Dental careExtended health careSchedule:8 hour shiftSupplemental pay types:Commission payExperience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Kingsway, Burnaby, BC\"\n        },\n        {\n            \"id\": \"15D76F70D0FE762C9FB4FBCC28323F9D\",\n            \"cityName\": \"Terrace, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d4f74b3fcc5374e5\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Machine Pace Group\",\n            \"rowSalary\": \"$63,574–$75,363 a year\",\n            \"date\": 1694423740425,\n            \"dateOfPosted\": 1692704192066,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.5181925,\n                    \"lon\": -128.6031539\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Terrace\",\n                \"formattedAddress\": \"Terrace, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kitimat-Stikine\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Terrace\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 63574.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    63574.0\n                ],\n                \"range\": {\n                    \"gte\": 63574.0,\n                    \"gt\": null,\n                    \"lte\": 63574.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Why should you apply? Great Question:Hybrid office with remote flexibilityWeekly Pay and Uncapped Commission$60k plus first year average incomeResidual IncomeExceptional commission ratesTrips, Training Incentives/Events and other benefitsPaid TrainingResponsibilities include:Conference over zoom, skype and phone calls with customers/clientsHandle inbound calls from customers, other lenders and insurance companiesAssist customers with inquiries, account status and problem resolutionAssist multiple departments with verifying and processing finance informationAssist various outside parties with inquires and document verificationMake outbound calls and negotiate arrangements with customers who have pending contracts or an account up for renewalAssist customers with account inquiriesRequirements:A winning attitude and determination to succeedWillingness to go above and beyond for our customersMath skills are a plusMust have experience with Microsoft Word, Excel and other Modern Office Technology like ZoomPrior customer service/sales experience is a plusJust like your resume, a job description never tells the full story. Apply today and if you've got what it takes, we'd love to discuss everything in further detail. We know there's a lot more you'd like to know, why wait? Apply today!Job Types: Full-time, Part-time, Fixed term contract, Casual, SeasonalSalary: $63,574.07-$75,363.48 per yearBenefits:Casual dressCompany eventsCompany pensionDental careDisability insuranceDiscounted or free foodEmployee assistance programExtended health careOn-site gymOn-site parkingPaid time offProfit sharingStore discountTuition reimbursementVision careWellness programWork from homeSchedule:8 hour shiftEvening shiftMonday to FridayMorning shiftNight shiftWeekends as neededSupplemental pay types:Bonus payOvertime payRetention bonusSigning bonusTipsWork Location: In person\",\n            \"location\": \"Terrace, BC\"\n        },\n        {\n            \"id\": \"7F15FEF8AB35A9B56F83D23E3567F6E7\",\n            \"cityName\": \"11 Vervain Dr, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b5810a260c98c0c5\",\n            \"jobName\": \"Customer Service Representative-Financial\",\n            \"companyName\": \"6755675 Manitoba Ltd O/A Calculus Financial\",\n            \"rowSalary\": \"$24 an hour\",\n            \"date\": 1694423732762,\n            \"dateOfPosted\": 1693552038769,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.9611152,\n                    \"lon\": -97.2334349\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Vervain Dr, Winnipeg, MB R0C 3A0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Rosser\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job DescriptionInform customers of available financial products and services to address their needs. Process customer's terms lease payments and disbursements, through bills and credit card payments, money orders, and other related banking transactions. Answer inquiries and resolve discrepancies concerning customers' accounts. Inform customers about term and due lease/loan payments. Balance daily transactions. Promote financial products and services. Store, update and retrieve financial data.Completion of Secondary School, Certificate/Diploma in Business Administration/ManagementJob Types: Permanent, Full-timeSalary: $24.00 per hourBenefits:Dental careOn-site parkingPaid time offSchedule:8 hour shiftDay shiftMonday to FridayOvertimeSupplemental pay types:Overtime payAbility to commute/relocate:Winnipeg, MB R0H 2E6: reliably commute or plan to relocate before starting work (required)Education:AEC / DEP or Skilled Trade Certificate (required)Experience:Relevant: 3 years (required)Shift availability:Day Shift (required)Work Location: In personApplication deadline: 2023-10-03\",\n            \"location\": \"Vervain Dr, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"D6232454DC288F27BC207EEB46B2B441\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5565ac094b802451\",\n            \"jobName\": \"Agent Du Service à La Clientèle / Customer Service Agent\",\n            \"companyName\": \"Voxdata\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694422833866,\n            \"dateOfPosted\": 1693535122249,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*English version to follow* *NB : Nous n'acceptons que les candidatures provenant de la grande région de Montréal car la formation se fait à partir du bureau.* *Nous exigeons que nos candidats parlent anglais car certains de nos clients sont à l'extérieur du Québec et ne parlent que l'anglais.* Prêt à vous joindre à l'un des plus importants centres d'appels de Montréal ! VOXDATA vous attend ! Nous cherchons à agrandir notre équipe avec de nouveaux membres qui sont prêts à devenir nos prochains experts en offrant la meilleure expérience client possible ! Pour avoir une meilleure idée de notre entreprise et de nos valeurs, vous pouvez consulter notre site web ici ! https://www.voxdata.com/ Voici quelques raisons pour lesquelles il fait bon travailler chez VOXDATA : Une variété de types de postes, allant du service à la clientèle aux ventes, en passant par le soutien technique, avec des rôles uniquement en anglais ou bilingues et des options d'horaire variées - nous voulons mettre en valeur vos compétences uniques dans un poste qui vous convient le mieux !Un bureau facilement accessible et convoité au cœur du centre-ville de Montréal, et la possibilité de travailler à domicile pour nos postes hybrides !Un environnement de travail diversifié, positif et encourageant, notre objectif étant d'aider nos agents à briller et à réussir au maximum de leur potentiel !Les avantages et les bénéfices pour les employés tels que les plans de primes inclus dans nos postes, les primes supplémentaires pour les personnes les plus performantes (comme des cartes cadeaux et de l'argent supplémentaire !), les couvertures d'assurance, et les primes de recommandation des employés qui peuvent aller jusqu'à 1000 $ par personne !La possibilité d'évoluer et de développer vos compétences par le biais de réunions d'équipe, de séances de coaching individuel et d'évaluations des performances, toutes conçues pour vous aider à renforcer vos capacités et à devenir un maître dans votre travail !Des opportunités de développement interne ouvertes à tous - avec des rôles tels que chef d'équipe, coach, formateur, mentor et même des postes administratifs, nous sommes fiers de toujours nous tourner vers le personnel que nous avons déjà avec nous pour le promouvoir lorsque l'occasion se présente !Pour ce poste, vous travaillerez avec une société d'aviation bien établie. Vos tâches spécifiques seront les suivantes : Fournir un service à la clientèle de premier ordre à chaque interaction avec les clients.Répondre aux appels entrants des clients pour les aider à effectuer des réservations une fois qu'elles ont été achetées.Résoudre les problèmes liés à l'accès aux billets et à la navigation sur le site web.Répondre aux questions concernant les informations sur les billets ou aux questions générales sur les réservations.Ready to join one of the leading call centers in Montreal?! VOXDATA is waiting for you! We're looking to expand our team with new members who are ready to become our next experts in delivering the best customer experience possible! To get a better idea of our company and values, you can check out our website here! https://www.voxdata.com/ Here's a few reasons why it's great to work at VOXDATA: A variety of position types, ranging from customer service, sales, and technical support, with English-only or bilingual roles and ranging scheduling options – we want to highlight your unique skillset in a position that is best suited to you!An easily accessible and coveted office location in the heart of Downtown Montreal, and the option to work from home with our hybrid roles!A diverse, supportive, and encouraging work environment, our goal is to help our agents shine and succeed to their fullest potential!Employee benefits and perks such as bonus plans included into our positions, additional bonuses for top performers (like gift cards and extra money!), insurance coverages, and employee referral bonuses that can go up to $1000 per person!The chance to grow and develop your skills through team meetings, individual coaching sessions, and performance reviews; all designed to help you further strengthen your abilities and become a master at your job!Internal growth opportunities that are open to everyone – with roles like team leader, coach, trainer, mentor, and even administrative positions; we pride ourselves on always looking to the staff we already have with us to promote when the occasion arises!For this role, you will be working with an established aviation company. Your specific tasks will include: Providing top-tier customer service to clients in every interaction.Answering inbound calls from customers to assist with bookings/reservations after they have been purchased.Resolving issues relating to ticket access and website navigation.Answering questions regarding ticket information, or general questions about bookings/reservations.Requirements Qu'est-ce qui fait de quelqu'un un excellent candidat ? Nous recherchons des personnes qui : Disponible pour travailler 40 heures par semaine, du lundi au dimanche, de 7h00 à minuit, de préférence le soir et le week-end.Ont déjà travaillé dans le service à la clientèle, les ventes ou les centres d'appels, ou ont une expérience traduisible dans d'autres secteurs.Sont bilingues en français et en anglais.Vous pouvez apprendre à utiliser et à faire fonctionner plusieurs programmes informatiques avec facilité.Être disponible pour travailler le soir et le week-end si la campagne est opérationnelle pendant ces périodes.Avoir obtenu un diplôme de fin d'études secondaires ou un diplôme équivalent.Se considèrent comme des personnes capables de résoudre des problèmes, de s'adapter à des situations changeantes et sont motivées pour être les meilleures des meilleures !What do we think makes someone a great candidate?! We're looking for people who:Are available to work 40 hours/week within the operational hours of Monday to Sunday, between 7:00 AM to 12:00 AM (midnight), evening and weekend availability is preferred.Have worked in customer service, sales, or call centers before; or have translatable experience from other industries.Are bilingual in French and English.Can learn how to use and operate multiple computer programs with ease.Have graduated high school or have an equivalent diploma.Consider themselves to be problem-solvers, adaptable to changing situations and are motivated to be the best of the best!Benefits Soumettez votre candidature dès maintenant pour lancer le processus d'embauche et voyez par vous-même pourquoi il est formidable d'être un agent VOXDATA !Ce poste est assorti d'un salaire de base de 17,00 $/heure. Submit an application now to get the hiring process started and see for yourself why its great to be a VOXDATA agent! *This position has a base salary of $17.00/hour.*\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"1D5CB6124EE86CFAAFA2CCB3245421B2\",\n            \"cityName\": \"9750 140 Street, Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b0bc5080d230eeac\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Blenz Coffee Opc\",\n            \"rowSalary\": \"$16.75–$17.00 an hour\",\n            \"date\": 1694422513394,\n            \"dateOfPosted\": 1692718694033,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.142184,\n                    \"lon\": -122.776366\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"161 St, Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Blenz at JPOPC Surrey is looking for hard working individuals with have an eye for detail. He/She should be customer friendly and a fun-loving person for this position who is companionate and empathetic. Should be flexible and have availability during weekdays for atleast 2 shifts. Food Safe is a plus. Please include your availability in response. Position is permanent and part-time only.* Always smile and greet customers.* Describe the menu product, specials and recommend it to customers.* Take customer orders and perform appropiate cash handling.* Prepare or serve hot or cold beverages, such as coffee, espresso drinks, blended coffees, or teas.* Clean or sanitize work areas, seating area, utensils, or equipment.* Check temperatures of freezers, refrigerators, or heating equipment to ensure proper functioning.* Able to take instructions from supervisor and execute them.Cafe operational hours are 7 am - 4:30 pm. Should be available for morning as well as closing shift. Cafe operational hours not suitable for high school students.Job Types: Part-time, PermanentPart-time hours: 15-20 per weekSalary: $16.75-$17.00 per hourBenefits:Dental careExtended health careLife insuranceVision careSchedule:Monday to FridayNo weekendsOn callSupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Street, Surrey, BC\"\n        },\n        {\n            \"id\": \"FD8B9A6C8631A44BC83A1651CC41517D\",\n            \"cityName\": \"235 Gore Road, Kingston, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f65071fdd35e4207\",\n            \"jobName\": \"Customer Service/Florist\",\n            \"companyName\": \"In Bloom\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694422476926,\n            \"dateOfPosted\": 1694422476726,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2606493,\n                    \"lon\": -76.4441002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kingston\",\n                \"formattedAddress\": \"Gore Rd, Kingston, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Frontenac County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kingston\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Do you wake up in the morning feeling creative and happy to start your day? Finding yourself looking for a job you can fall in love with? We want YOU on our team! We are in urgent search of a passionate individual to fill a customer service/potential Designer position at our East end flower shop. MUST have a valid G2 Drivers License and willingness to work Saturdays. Experience in the floral industry is a plus, but absolutely not a must have! If you are eager to learn, we are more then happy to teach you.Responsibilities consist of but are not limited to:- Tending to customers each individual requests- Cleaning and preparing floral product- Use of organization and time-management skills- Training/Willingness to learn designing floral arrangements- Handling money and sales- Delivering orders to customersInterviews to take place the week of September 18th and 25th.Please apply IN PERSON with a resume in hand. We look forward to welcoming a new member to our flower team!*PART TIME AND FULL TIME POSITIONS NEEDED*Job Types: Full-time, Part-timeSalary: From $15.50 per hourSchedule:Day shiftAbility to commute/relocate:Kingston, ON: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Gore Road, Kingston, ON\"\n        },\n        {\n            \"id\": \"36756BC92D0C03A0E7CF24566699CA2F\",\n            \"cityName\": \"3625 50 St, Cold Lake, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3dca4afc3e93d4da\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Enterprise Holdings\",\n            \"rowSalary\": \"$17.25 an hour\",\n            \"date\": 1694422084350,\n            \"dateOfPosted\": 1691541122378,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.4642591,\n                    \"lon\": -110.1732522\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cold Lake\",\n                \"formattedAddress\": \"Cold Lake, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Bonnyville No. 87\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cold Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" The Customer Service Representative will provide a high level of customer service by assisting both internal and external customers, primarily face-to-face, supporting their branch and rental needs. The Customer Service Representative will gain knowledge through local training and hands-on experience to provide administrative support, service customers, and act as a rental back-up in a large home city branch or airport location. This role is available as full time.  Opening available at the following branch location 3625 50 STREET COLD LAKE, AB T9M 1K6 This is a full time position that pays $17.25 / hour We offer:  Paid time off Employee discount Retirement savings plan Extended Health Benefits (Medical, Prescrption Drug, Dental and Vision) Life Insurance Training and development Schedule:  Monday-Friday: 8:00am-5:00pm Saturday: 9:00am-12:00pm (Rotating) Responsibilities: Take incoming calls- reservations, rate quotes, general questions and answers, provide information and resolution for customers, other branches, insurance companies, dealerships, repair shops and other vendors  Manage outgoing calls for callback management, A/Rs and miscellaneous calls as assigned  Provide a high level of customer service by assisting customers and assessing their rental needs in person and over the phone  Meet and greet customers in a friendly and timely manner  Provide directions and general assistance  Assist to assess condition of rental upon return  Process returns, check-ins and exit kiosk transactions  Effectively market the company while picking up customers up and/or dropping off customer in a safe and courteous manner and assisting customers as needed  Understand and communicate rental terms and conditions, vehicle features and other services  May sell optional protection products, upgrades, fuel options and other additional equipment  Responsible for notifying Management of any known vehicle problems and any required vehicle maintenance  Clean vehicle interior and exterior by hand or by operating washing equipment when needed  Perform various administrative and basic accounting functions such as: research and billing support tasks, accounts receivables, transfer and key logs, run miscellaneous reports, supply maintenance, process customer billing  Perform miscellaneous and backup duties job-related duties as assigned  Equal Opportunity Employer/Disability/Veterans Qualifications: Must be at least 18 years of age. High school diploma or above required; some college preferred Must have at least 1 year prior customer service, retail, or administrative support experience Must have a valid Class 5 drivers license with no more than 2 moving violations and/or at-fault accidents on driving record in the past 3 years No drug or alcohol related conviction on driving record in the past 5 years Must be authorized to work in Canada and not require work authorization sponsorship by our company for this position now or in the future. \",\n            \"location\": \"Cold Lake, AB\"\n        },\n        {\n            \"id\": \"DAF6D9C70A5235742E5EEEEED7F4F3E0\",\n            \"cityName\": \"Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d008b4ea81dc9e65\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Fortisbc\",\n            \"rowSalary\": \"$21.11 an hour\",\n            \"date\": 1694420875211,\n            \"dateOfPosted\": 1694212606116,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Affiliation: MoveUp Customer Service Employment Status: Unscheduled Part-Time Regular Salary: $21.11 Hourly Workplace Flexibility: No Posting End Date: Open until filled  We’re a Canadian-owned and BC-based energy company taking steps toward a lower-carbon energy future by providing renewable energy, natural gas and electricity to more than 1.2 million customers.  We’re looking for new talent to join us as we transform BC’s energy future. Our diverse team of more than 2,600 employees is committed to a safe and inclusive culture where each of us can connect, belong and grow. Join us and let’s work together for a better BC. Position Overview You live and breathe the values of delivering a world-class customer experience with an empathic demeanor, integrity and respect. A people-person at heart, you put yourself in the shoes of others to gain a better perspective of every situation so you can offer the best possible solutions. You understand that customers contribute to any company's success and take tremendous pride in ensuring every customer is happy with every interaction, so they come away with memorable experiences they can share with others.  As our Customer Service Representative, you’ll put all passion for the customer experience to work and contribute to an environment where customer engagement matters most. In this role, you’ll connect with customers to support their questions, inquiries and concerns through various channels, such as online chat, phone and email. You’ll take charge to resolve customer inquiries with little to no effort from our customers to make their situation easy and worry-free. As a customer yourself, you understand it’s all about our customers and supporting them the right way the first time. In year 1, you will: Develop knowledge and skills in the overall fundamental customer service processes to provide world-class experiences while interacting with our customers. Work to better understand our customer service expectations through specialized processes and channels of communication. Build relationships with peers and leaders through regular interactions. In year 2, you will: Continue to build knowledge, skills and confidence in all customer service processes, including resolving more complex and escalated customer inquiries. Partner with customer service leaders to support and mentor new colleagues. Gain a broader understanding of projects, committees and initiatives through collaboration across the customer service teams and beyond. What it takes: A high school diploma or general educational development. A customer-centric mentality and attitude dedicated to creating memorable and world-class experiences. Excellent verbal and written communications delivered in an understanding and respectful way. A solid multi-tasker who can navigate multiple computer programs to support the work you do with customers. Exceptional problem-solving skills and an ability to ask effective questions to get to the root of any issue and provide the best possible solution. What does it mean to be an Unscheduled Part Time Regular employee? An Unscheduled Part Time Regular employee, or UPTR for short, is hired to fill a part-time position of an ongoing nature while working variable hours. You will work a minimum 4 consecutive hours to a maximum 7.5 consecutive hours in any day and will be scheduled anytime between Monday to Friday, 7am to 8pm based on operational requirements. You are able to submit a standing request for preferred shifts (although shift assignment is based solely on operational requirements). You will normally work a minimum of 37.5 hours bi-weekly and a maximum of 60 hours bi-weekly (ranging from 18.75 to 30 hours per week). You will be eligible for benefits after their completion of 975 hours of accumulated service. Additional Information To view the full job description, click here . This is an office based role that will be required to be on site during scheduled shifts (located at our Willingdon Park office). Application process: If your application is shortlisted, you will receive an eSkills link to complete a Customer Service Assessment. Once the Assessment has been completed, you will receive a separate link to complete a one-way recorded VidCruiter Video Interview. If you are shortlisted past the VidCruiter Video Interview to the last phase of recruitment, you will be scheduled for a 15 minute Teams call with a Team Manager to discuss the role in greater detail. Successful applicants will be required to attend full-time classroom training starting on October 30, 2023, from Monday to Friday and scheduled from 8:00am - 4:00pm. Attendance is MANDATORY during this time. Our engaging workplace offers a wide range of challenging opportunities, while being safe, inclusive and diverse. We offer a competitive salary and benefits package, while supporting life-long career development. We also encourage volunteerism and nourish the need to give back to your community.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"21662E6FE2FE384C3DE01D5DABE6AEFC\",\n            \"cityName\": \"100 Mandalay Dr, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7c102c993cc57472\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Pro Star Immigration Consulting Services Ltd\",\n            \"rowSalary\": \"$15.50–$19.00 an hour\",\n            \"date\": 1694420517158,\n            \"dateOfPosted\": 1694337399247,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:- Provide exceptional customer service to clients via phone, email, and chat- Respond to customer inquiries for immigration and visa, MPNP and resolve issues in a timely and professional manner- Conduct outbound calling campaigns to follow up with customers and gather feedback- Analyze customer needs and recommend appropriate products or servicesRequirements:- Previous experience in a customer service role is preferred- Excellent communication skills, both verbal and written- Strong problem-solving abilities and attention to detail- Ability to multitask and prioritize tasks effectively- Proficient computer skills, including experience with CRM software- Ability to work independently as well as part of a teamIf you are a motivated individual with a passion for providing excellent customer service for visa and immigration , we would love to hear from you. Please apply with your resume and cover letter.Job Type: Full-timeSalary: $15.50-$19.00 per hourBenefits:Flexible scheduleFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededSupplemental pay types:Commission payEducation:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Ability to Commute:Winnipeg, MB R2P 1V8 (preferred)Ability to Relocate:Winnipeg, MB R2P 1V8: Relocate before starting work (preferred)Work Location: In personApplication deadline: 2023-09-20Expected start date: 2023-10-01\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"7F175F636C8464700E53839599214273\",\n            \"cityName\": \"11801 100 Street, Grande Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=34c3a282bd2b1d91\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Luxe Petals Gp\",\n            \"rowSalary\": \"$15.25–$16.00 an hour\",\n            \"date\": 1694420321905,\n            \"dateOfPosted\": 1693554143194,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.1816551,\n                    \"lon\": -118.7818944\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grande Prairie\",\n                \"formattedAddress\": \"96 St, Grande Prairie, AB T8V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grande Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Luxe Petals GP is looking for barista and Sales Associate to join our team!ResponsibilitiesProvide exceptional customer serviceGreet customers and answer questionsProvide accurate information on the availability of flowers and servicesMaintain a clean and inviting environmentAnswer phones and provide general information to customersProcess sales and returnsFollow all safety policies and proceduresPerform other duties as assigned by the managerSkills & Qualifications:Previous experience in customer service or other related fieldsProficiency in basic math skills, including addition, subtraction, multiplication, and divisionBasic knowledge of plants and plant care practices (so you can tell people how great the plants look!)Ability to build rapport with clientsStrong written and verbal communication skillsBasic computer skills, including Microsoft Office (Word, Excel) and sales software like Hotmail or Google Calendars)Must be able to work independently with little supervision. No experience necessary, we will train you!Must be available weekends. Our peak season is April-October. Other options available.We are a family-oriented, amily-oriented, and people-oriented, workplace that offers competitive compensation, full benefits, and an active community of friends and colleagues. If you want to make a difference in the world, come join us at Grande Prairie, AB!Job Type: Part-timeSalary: $15.25-$16.00 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftEvening shiftWeekends as neededSupplemental pay types:Bonus payCommission payOvertime paySigning bonusTipsWork Location: In person\",\n            \"location\": \"Street, Grande Prairie, AB\"\n        },\n        {\n            \"id\": \"4BD6B62E626FD760DBC3DBB4B6ED74B6\",\n            \"cityName\": \"8228 Macleod Trail SE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0dc63264d9c298e5\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Once Upon A Child Calgary - Macleod Trail Location\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694420319486,\n            \"dateOfPosted\": 1692668708075,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.94908909999999,\n                    \"lon\": -114.0708377\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Macleod Trail SE, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you a friendly and outgoing individual who enjoys working in a fun, fast-paced, and team-oriented environment? If so, we have the perfect opportunity for you! We are currently hiring for the position of Customer Service Representative, and we're looking for individuals who are interested in learning how to sort and buy drop-offs, as well as tag and hang merchandise.As a Customer Service Representative, you will be interacting with customers a majority of the day, most of whom are moms and kids! Therefore, we are looking for someone with an energetic and positive attitude. Fluency in English is a must, and you should be able to work on your feet for a full shift and lift a minimum of 30lbs.We offer flexible schedule options, employee discounts, and bonuses! If you're interested in working with us, apply today!We are able to offer the following shifts:8am to 1pm8am to 4pm9:30am to 2:30pm3:30pm to 8:30pm5:30pm to 8:30pm10:30 to 6:30 (Sundays ONLY)Please note - All employees are required to work at least one (1) night shift, one (1) weekend shift each week and attend one (1) mandatory staff meeting held on a Sunday each month.Job Types: Full-time, Part-timePart-time hours: 20 - 40 per weekSalary: $17.00 per hourBenefits:On-site parkingStore discountFlexible Language Requirement:French not requiredShift:Afternoon shiftDay shiftEvening shiftMorning shiftWork setting:Apparel storeWork Location: In person\",\n            \"location\": \"MacLeod Trail SE, Calgary, AB\"\n        },\n        {\n            \"id\": \"0638CAEB4B80582330C6E369628A06DF\",\n            \"cityName\": \"5875 Highway 7, Vaughan, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4332c36acef9f282\",\n            \"jobName\": \"Tanning Customer Service Associate\",\n            \"companyName\": \"Tanning Loft\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694418974652,\n            \"dateOfPosted\": 1694207954486,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are currently looking for a part-time Customer Service Associate.If you are creative, self-motivated, passionate and a natural about sales and social media, then Tanning Loft has a great opportunity for YOU!Required Qualifications & Skills:Experience in a fast-paced service environmentConsistently delivers remarkable customer service and has a genuine passion for qualityBasic computer skills & POS SystemAbility to meet and exceed sales goalsPersonable - the ability to interact with clientsSuperb understanding of social mediaAbility to create engaging, cutting edge online content across a variety of mediumsMotivated, driven, creative and enthusiasticExcellent verbal and written communication skillsAbility to follow a few rulesAbility to uphold professional integrityHonest and reliableMust have day, nights and weekend availability.Job Types: Part-time, PermanentSalary: From $15.50 per hourDay range:Monday to FridayWeekends as neededShift:Day shiftNight shiftApplication question(s):Please provide your current availability.Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"34AF528ABB33B275FC167795996F5C25\",\n            \"cityName\": \"Watson Lake, YT\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b1cfe4b94be918b1\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"Jgv Services Incorporated\",\n            \"rowSalary\": \"$21 an hour\",\n            \"date\": 1694416973987,\n            \"dateOfPosted\": 1694416973813,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 60.06280599999999,\n                    \"lon\": -128.710913\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Watson Lake\",\n                \"formattedAddress\": \"Watson Lake, YT Y0A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Yukon\",\n                \"state_code\": \"YT\",\n                \"postalTown\": null,\n                \"county\": \"Yukon\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Watson Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: EnglishHours: 20 hours per weekEducation: College/CEGEPExperience: 2 years to less than 3 yearsor equivalent experience Work setting Remote location Willing to relocate Business Staff accommodation available Tasks Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Receive and log complaints Receive payments Advise clients on advertising or sales promotion strategies Answer written and oral inquiries Computer and technology knowledge Internet MS Excel MS Outlook MS Windows MS Word MS PowerPoint Quick Books Security and safety Basic security clearance Criminal record check Transportation/travel information Own transportation Valid driver's licence Work conditions and physical capabilities Attention to detail Hand-eye co-ordination Repetitive tasks Tight deadlines Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Judgement Ability to multitask Screening questions Are you willing to relocate for this position? Do you have previous experience in this field of employment? What is the highest level of study you have completed? Financial benefits Bonus Other benefits Learning/training paid by employer\",\n            \"location\": \"Watson Lake, YT\"\n        },\n        {\n            \"id\": \"353023EA2804577EB6A6EDEF2780B183\",\n            \"cityName\": \"875 St James St, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=92c33ba64c1eb39a\",\n            \"jobName\": \"Work From Home Customer Service Representative\",\n            \"companyName\": \"Intouchcx\",\n            \"rowSalary\": \"$14.15–$19.00 an hour\",\n            \"date\": 1694416804194,\n            \"dateOfPosted\": 1693535624670,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8973035,\n                    \"lon\": -97.20034720000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"St James St, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About IntouchCXIntouchCX is a global leader in customer experience management, digital engagement, and technology solutions. With over 20 years of experience, 18,000+ team members, and campuses around the globe, we obsess about our clients by providing remarkable customer experiences for the world’s most innovative brands.IntouchCX has been recognized as one of the Best Employers for Diversity in 2022 by Forbes and Statista Inc. This recognition comes after IntouchCX was named by Forbes as one of America’s Best Large Employers for 2022, and a Top Employer for New Grads.About the JobWe are currently hiring Inbound Work from Home Customer Service Representatives!Are you a problem solver? Do you like making meaningful connections with people? Are you interested in a rewarding career working with the world’s most exciting brands from the comfort and safety of your own home?Our Work from Home Customer Service Representatives are passionate about delighting customers by making every interaction an unforgettable experience - whether that’s through inbound calls, emails and/or chats. We want people with personality, who love making an impact with every customer interaction.We also want people with drive and ambition - people who want a career, not just a job. Punctuality, performance and positivity will set you up for success!Note: Although it is a Work from Home position, interviews will be done on site. IntouchCX will provide all hardware and equipment necessary.Benefits of Working as a Work from Home Customer Service Representative:Work from home!Flexible schedulesCompetitive salary - $14.15-$19.00/hr (varies depending on program)Industry-leading benefits - Health, Dental, Vision,Amazing career growth opportunitiesWorking as a Work from Home Customer Service Representative, You Will:Assist all customers through inbound calls, emails, and/or chats.Communicate a variety of information to the customer.Be an active listener and help resolve customer inquiries.Provide a meaningful and positive experience with every customer interaction.Learn and retain a thorough working knowledge of all existing and new products and services.Working as a Work from Home Customer Service Representative, You Have:A high school diploma (or equivalent).6 months – 1 year of customer service experience.Great communication skills, both verbal and written.The ability to be consistently ready to work and on time as scheduled.Reliable internet speed and broadband connection.A secure area in the home to work from.The ability to work effectively in a work-at-home setting.The understanding that although this is a Work from Home position,you must be located in Winnipeg, MBAvailability: Full-time (some shifts may depend on availability).Ready to apply? Submit your application and one of our recruiters will reach out via email/phone/text to learn more about you and connect you to this exciting opportunity! If you provide your cell number, you agree to receive automatic recruiting texts from us at that number. Consent is not a condition of employment, and you can opt-out by replying STOP at any time. Message and data rates may apply.IntouchCX provides Equal Employment Opportunities in accordance with all provincial and federal laws. IntouchCX is committed to ensuring equality of opportunity in all aspects of employment and does not discriminate based on protected characteristics.IntouchCX is committed to accommodating persons with disabilities. If you need accommodation at any stage of the application process or want more information on our accommodation policies, please let us know.By signing this application, the applicant consents to IntouchCX collecting, using and retaining his/her personal information for purposes relating to the application process and if hired, the employment relationship.Any and all personal information collected is held in the strictest confidence and in accordance with all applicable Privacy Laws.Job Type: Full-timeSalary: $14.15-$19.00 per hourBenefits:Casual dressDental careExtended health careVision careWork from homeSchedule:Monday to FridayWeekends as neededWork Location: Hybrid remote in Winnipeg, MB R3H 0X2\",\n            \"location\": \"St James St, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"CD4566422D3911FC49E726753C8135D7\",\n            \"cityName\": \"635 Avenue Marshall, Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6e1f63223503d562\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Jet Car Rental\",\n            \"rowSalary\": \"From $24 an hour\",\n            \"date\": 1694416705097,\n            \"dateOfPosted\": 1649285499225,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4503213,\n                    \"lon\": -73.7500486\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval, QC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job descriptionWe are seeking Customer Service Representative to join our team for the weekend shifts! You will be responsible for helping customers by providing product and service information and resolving technical issues.As a Customer Service Representative, you will be responsible for:Qualifying and processing rental contracts with accuracy and detailPersuasively selling optional servicesProcessing customer rental returnsResponding to customer inquiries, providing directions in a courteous and expeditious mannerAdhering to all company policies and procedures.Monitoring fleet availability for reservations and walk-insA commitment to continuous improvement in an ever-changing industryRelated duties as requiredJob Qualifications:Previous car rental experience is required.Ability to work in a fast paced environment with a variety of tasks.Ability to demonstrate professionalism, enthusiasm, and outstanding communication skills.Detail oriented.Flexibility to work weekends.Computer literate.Proficiency in French & English.Valid Drivers license.Description d’emploiNous sommes à la recherche d’un représentant du service à la clientèle pour se joindre à notre équipe pour les quarts de travail de fin de semaine! Vous serez responsable d’aider les clients en fournissant des informations sur les produits et services et en résolvant les problèmes techniques.En tant que représentant du service à la clientèle, vous serez responsable de :Qualification et traitement des contrats de location avec précision et détailVendre de manière convaincante des services optionnelsTraitement des retours de location des clientsRépondre aux demandes des clients, fournir des instructions de manière courtoise et rapideAdhérer à toutes les politiques et procédures de l’entreprise.Surveillance de la disponibilité de la flotte pour les réservations et les walk-insUn engagement envers l’amélioration continue dans une industrie en constante évolutionTâches connexes au besoinQualifications professionnelles:Une expérience préalable de la location de voiture est requise.Capacité à travailler dans un environnement au rythme rapide avec une variété de tâches.Capacité à faire preuve de professionnalisme, d’enthousiasme et de compétences exceptionnelles en communication.Souci du détail.Flexibilité pour travailler les week-ends.Connaissance de l’informatique.Maîtrise de l’Français et de l’anglais.Permis de conduire valide.Job Type: Part-timePart-time hours: 16-20 per weekSalary: From $24.00 per hourSchedule:Weekend availabilitySupplemental pay types:Commission payAbility to commute/relocate:Dorval, QC H9P1E1: reliably commute or plan to relocate before starting work (preferred)Education:Secondary School (preferred)Experience:Automotive Rental Occupations: 1 year (required)Driving: 2 years (preferred)Language:English & French (required)Expected start date: 2022-04-11\",\n            \"location\": \"Dorval, QC\"\n        },\n        {\n            \"id\": \"AA78FE5005D16144CFB494D647BA1B14\",\n            \"cityName\": \"27 Monarch Rd, Guelph, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0c044f09008c48ad\",\n            \"jobName\": \"Technical Customer Service Representative\",\n            \"companyName\": \"A.R. Thomson Engineered Solutions Inc.\",\n            \"rowSalary\": \"$50,000–$60,000 a year\",\n            \"date\": 1694416660378,\n            \"dateOfPosted\": 1693531269870,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.54900240000001,\n                    \"lon\": -80.3067165\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Guelph\",\n                \"formattedAddress\": \"Monarch Rd, Guelph, ON N0B, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Wellington County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Guelph\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full-time positionReports to: Product ManagerSudbury International was established in 1975 and has earned a vibrant reputation for producing Flue Duct expansion joints for a wide range of industries including specialties in Gas Turbine exhausts. Sudbury International is a division of A.R. Thomson Engineered Solutions Inc., a Canadian-owned business with more than 55 years of experience as one of the largest manufacturers and distributors of fluid containment and control products in North America with branches located across Canada. Our Guelph location specializes in manufacturing expansion joints, flexible hose assemblies and valve repair and acts as the central hub for technical and sales support for our Eastern Canada operations.General Accountability:Review customer bid packages and source the raw materials and processes required to meet bid package specifications for manufactured partsDemonstrate a high level of competence and accuracy when creating part numbers, descriptions, BOM’s, routings, costing/pricing conditions, etc.Provide customers with accurate information on the company’s products and servicesRespond to customer requests, displaying a sense of enthusiasm and urgency appropriate to customer expectations. Proactively follow up on quotations and customer information requests, directly interacting with customersQualifications & Requirements:Minimum 2 years of industry-related experience in the industrial supply and manufacturing fieldsAn understanding of drawing standards, tolerances and Bill of Materials (BOM)Experience using Microsoft Office products.Knowledge of applicable industry codes and standards such as ASME, CSA, ISO, etc. would be an asset.Strong technical, oral and written communication, interpersonal and negotiation skillsDemonstrate ability to solve problems and adapt to changing prioritiesPosses a professional, positive, team-oriented attitudeWe thank all candidates; however, only those selected for an interview will be contacted.Health & Safety Commitment:All employees are responsible to work in a manner that safeguards themselves, their co-workers, and other persons not engaged in the work but present on our site and the environment. Employees have three basic rights which are protected by law: (1) the Right to Know what hazards are present at their worksite; (2) the Right to Participate in keeping their worksite healthy and safe, and (3) the Right to Refuse work that they believe to be dangerous to themselves or others. Our 3 fundamental principles within the ARTES safety program are (1) Commitment to maintaining a safe and healthy workplace; (2) Compliance with Company Health & Safety requirements and OHS legislation; (3) Accountability for employees’ Health & Safety responsibilities to themselves and others.Salary & Benefits:Very competitive salaryHealth Benefits include Dental & Vision care, life insurance, extended health care, long-term disability, and an employee assistance programCompany Pension planPaid time offWork anniversaries recognitionCompany eventsEndless growing opportunities!Job Types: Full-time, PermanentSalary: $50,000.00-$60,000.00 per yearBenefits:Company pensionDental careDisability insuranceEmployee assistance programExtended health careOn-site parkingPaid time offProfit sharingTuition reimbursementVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayOn callWeekends as neededAbility to commute/relocate:Unit 6 Guelph, On N1K 1N4: reliably commute or plan to relocate before starting work (required)Language:English (required)Work Location: In person\",\n            \"location\": \"Monarch Rd, Guelph, ON\"\n        },\n        {\n            \"id\": \"A63FBFD357CD918B87FEC5E8A42A8F28\",\n            \"cityName\": \"109 McCaul Street, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9f85c6c65251c515\",\n            \"jobName\": \"Dispatcher/Customer Service\",\n            \"companyName\": \"Coffee Exchange\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694415285548,\n            \"dateOfPosted\": 1694415285345,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6548028,\n                    \"lon\": -79.3916383\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"McCaul St, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:- Handle and organize merchandise in a retail environment- Assist with stocking shelves and maintaining inventory levels- Ensure products are properly labeled and priced- Provide excellent customer service by answering questions and assisting with inquiries- Maintain cleanliness and organization of the store, including regular sanitization of high-touch areas- Assist with bussing tables and cleaning in a kitchen settingExperience:- Basic math skills, including the ability to perform retail math calculations- Previous experience in a retail or customer service role is preferred- Familiarity with kitchen operations and sanitation practices is a plusNote: This job description is not intended to be all-inclusive. The employee may be required to perform other duties as assigned by their supervisor.Job Types: Part-time, Full-timePart-time hours: 35 per weekSalary: From $15.50 per hourSchedule:Monday to FridaySupplemental pay types:TipsAbility to commute/relocate:Toronto, ON M5T 3K5: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Language:English (preferred)Licence/Certification:Food Handler Certification (required)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"McCaul Street, Toronto, ON\"\n        },\n        {\n            \"id\": \"2489CF70C53EC3F93938FD67F34F5C3F\",\n            \"cityName\": \"50 Carroll Street, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c98a76dca49fc784\",\n            \"jobName\": \"Consumer Customer Service Associate (Bilingual)\",\n            \"companyName\": \"Ecco Shoes Canada, Inc.\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694415115412,\n            \"dateOfPosted\": 1671056359014,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6600512,\n                    \"lon\": -79.35320519999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Carroll St, Toronto, ON M4M, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Consumer Customer Service Associate (Bilingual) will provide comprehensive service to our consumer customer base on the phone and through e-mail. Professionally handle incoming requests from customers and ensure that issues are resolved both promptly and thoroughly.As our Consumer Customer Service Associate, your responsibilities will include:Contribute to the future of ECCO USA by providing the highest level of customer service.Handle incoming calls and emails.Provide customers with product and order information.Show flexibility, creativity and empathy when resolving customer issues and communicating policy.Offer options for fulfillment of orders or resolution of issues.Appropriately suggest alternative products.Inform customers of new products.Talk up promotions and sales.Learn and develop personal skill levels in regards to SAP, Internet systems and the footwear industry.Communicate and coordinate with all internal departments for smooth processing of all transactions.If you have...Bilingual - excellent written and oral communication skills in both French and English.Post-Secondary diploma or degree.1+ years of experience in a customer service role.Ability to communicate clearly, concisely and professionally (both verbally and written).Ability to prioritize work and adjust priorities as needed.Superior organization and follow-up skills.Proven ability to work under pressure while maintaining composure, patience and understanding in dealing with a variety of customers.…we want to hear from you!Imagining yourself at ECCO?Check out these exciting opportunities, on our global career at https://enter.ecco.com/CREATE THE FOOTPRINTS OF TOMORROWAt ECCO, you become part of a meaningful, developing and multicultural workplace. You join a global family of more than 25,000 people who are proud to create the footprints of tomorrow.Headquartered in Denmark, we are a family-owned company that offers international opportunities. Our offices and facilities have an informal culture and relaxed dress code – our shoe code is slightly stricter.Join us and we guarantee lifelong learning – the speed of progress is up to you. So, if you’re curious, passionate and ready to make an impact, you’ll fit right in.Job Type: Full-timeSalary: $18.00-$22.00 per hourSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Toronto, ON: reliably commute or plan to relocate before starting work (required)\",\n            \"location\": \"Carroll Street, Toronto, ON\"\n        },\n        {\n            \"id\": \"4B8003871B049BFB6246827D3D3603CE\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ad848f45dc8b123f\",\n            \"jobName\": \"Customer Service Coordinator\",\n            \"companyName\": \"Truckker\",\n            \"rowSalary\": \"$19–$23 an hour\",\n            \"date\": 1694414838538,\n            \"dateOfPosted\": 1694414838355,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job description _ Hiring Customer service/Receptionist- Great place to work- Starts Asap! _ Job# 3099 Link: Apply here or Call/text at ext 30 Job Description: Answer/route phone calls and serve customers Take orders Utilize MS Office and manage emails Manage/file paperwork Other tasks assigned Shift 8:00 AM-4:30 PM Job Requirements Experience in receptionist/customer service role (supplier/construction environment) Proficient in MS Office tools Benefits: Pension plan with employee and employer contribution (after one year) Group insurance plan, life, dental, prescription, and many other services. 2 weeks vacations, 3 weeks after 5 years of employment, 4 weeks after 10 years of employment About Truckker: Truckker, a TPI company has 35+ years of experience in the transportation, logistics, and supply chain industries, giving drivers unparalleled access to a network of quality carriers. Truckker offers carriers online, on-demand access to a growing database of drivers pre-vetted for safety, eligibility, and availability. With an easy application process and automated \\\"smart\\\" driver matching, carriers can successfully connect with drivers in real-time and enjoy direct communication. INDTJ Job Type: Full-time Salary: $19.00-$23.00 per hour Benefits: Dental care Extended health care Life insurance Flexible Language Requirement: French not required Schedule: 8 hour shift Day shift Monday to Friday Overtime Supplemental pay types: Overtime pay Ability to commute/relocate: Mississauga, ON: reliably commute or plan to relocate before starting work (required) Education: Secondary School (preferred) Experience: Front desk: 2 year (required) Administrative experience: 2 year (required) Language: Mandarin (preferred) Shift availability: Day Shift (preferred) Work Location: In person Job Type: Full-time Salary: $19.00-$23.00 per hour Benefits: Dental care Extended health care Life insurance Paid time off Flexible Language Requirement: English not required Schedule: Monday to Friday Ability to commute/relocate: Mississauga, ON: reliably commute or plan to relocate before starting work (required) Education: Secondary School (preferred) Experience: Sales administration: 1 year (required) Customer service: 3 years (required) Shift availability: Day Shift (preferred) Work Location: In person\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"8079E8031E2860F9946DC0A0EB0677DC\",\n            \"cityName\": \"1441 Ellice Ave, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2cf886847685b1c0\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Booster Juice\",\n            \"rowSalary\": \"From $13.50 an hour\",\n            \"date\": 1694413400295,\n            \"dateOfPosted\": 1675891936730,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8935764,\n                    \"lon\": -97.1794978\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Ellice Ave, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Booster Juice is Canada’s leading smoothie operator and is looking for an energetic individual passionate about customer service and a general love for health and wellness.What You Need to KnowLocation: Booster Juice 1441 Ellice AvePart-time positions availableWe Offer: Free Smoothie , flexible schedules and MORE!!Job RequirementsProvide \\\"Positively Outrageously Customer Service\\\".Welcome and connect with every customer.Discover customer needs and guide customer to selection.Respond to customer needs and say thank you to every customer.Provide quality beverages and food items consistently for all customers.Prepare Smoothies, food and other beverages to Booster Juice standards.Follow health, safety and sanitation guidelines for all products.Maintain quality store operations.Follow store policy and procedures for operational flow at each station.Follow standards for merchandising, stocking, rotating and storing products.Perform cleaning tasks in accordance with the daily checklists and cleaning standards.Present oneself professionally and demonstrate clear communication skills.Contribute to store profitability.Follow cash handling procedures and cash register policies.Follow inventory stocking and recording guidelines.Contribute to store goals for increasing sales and improving profits.What We’re Looking ForPossess an outgoing, enthusiastic and friendly attitude.Ability to work under pressure and in a fast-paced environment.Ability to identify and use resources to improve overall operations.High attention to detail.Teamwork and interpersonal skills.Multi-tasking skills.Willingness to learn.Effective listening, written and verbal communication skills.Effective organizing and planning skills.FOODSAFE certification is a plusWe thank all applicants, however only selected candidates will be contacted for interviewJob Types: Part-time, Permanent, CasualPart-time hours: 5-35 per weekSalary: From $13.50 per hourSchedule:Day shiftMonday to FridayNight shiftWeekend availabilityWork Location: In personApplication deadline: 2023-02-15Expected start date: 2023-02-17\",\n            \"location\": \"Ellice Street, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"A25C128D330431E41E29FDDDB0306781\",\n            \"cityName\": \"635 Grand Av W, Chatham-Kent, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=949d2ca034eadac5\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Macro Foods Inc.\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694413384477,\n            \"dateOfPosted\": 1692722658351,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.40032129999999,\n                    \"lon\": -82.2069641\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Chatham\",\n                \"formattedAddress\": \"Grand Ave W, Chatham, ON N7L, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Chatham-Kent\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Chatham\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Macro Foods is a small business in Chatham, ON. Our goal is to Serve the community fresh, healthy, chef prepared meals. We also serve protein shakes and sell supplements and healthy snacks. Customers can walk in and pick up food on the go, or order online direct to their homes anywhere in Ontario!.Our customer service department is seeking an experienced, energetic and capable individual to join our busy team. The successful candidate will be responsible for greeting all customers and explaining our products, using company policy and procedure to solve customer's problems and learning specific questions about products and services in order to deliver accurate information back to customers. We're seeking a self-motivated and organized individual with strong customer service skills who is also an effective multi-tasker. General health knowledge/healthy eating is a bonus.Responsibilities:Greet clients and other visitors in person.Answer customers' questions.Assist customers who need special assistance.Deal with angry or rude visitors.Cash handling and checking clients out.Answer the phone, take messages, and transfer calls to other staff as necessary.Enter information about clients and other visitors into the computer system.Must complete safe food handlers certificate within first 2 weeks of employment.Schedule:Opening - 11 AM (10am Wednesdays) to 230 PMClosing - 230PM to 6PMWeekend Shifts - 12PM to 5PMMinimum Availability Required of 6 shifts per above.Example:Monday all day - 2 shiftsTuesday offWed close - 1 shiftThursday open - 1 shiftFriday offSaturday and Sunday any time - 2 shiftsCash Handling, Customer Service, Shake Bar, Cleaning, Assisting Customers, Health KnowledgeJob Type: Part-timePart-time hours: 20 per weekSalary: From $15.50 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:TipsApplication question(s):Do you meet the minimum of 6 shift availability required for work?Experience:Customer service: 2 years (preferred)Work Location: In personExpected start date: 2023-09-01\",\n            \"location\": \"Grand Ave W, Chatham-Kent, ON\"\n        },\n        {\n            \"id\": \"DD250D11CC8188925896A6CA7D49F92F\",\n            \"cityName\": \"Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=acf919d9732b7aad\",\n            \"jobName\": \"Customer Service/ Pizza Maker\",\n            \"companyName\": \"Pizza 64\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694413260882,\n            \"dateOfPosted\": 1688810889438,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8879519,\n                    \"lon\": -119.4960106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Kelowna, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"-Prepare and store Pizza doughs and pizza sauce- Quality check of Pizzas before served to customer-Ensure all work areas and prep areas are cleaned and sanitized in routine-Handle customer complaints-Greet customers and handle cash/credit/debit transactionsJob Types: Full-time, Part-time, PermanentSalary: $16.75 per hourWork Location: In person\",\n            \"location\": \"Kelowna, BC\"\n        },\n        {\n            \"id\": \"4EE9C670827E94D5B594CA82DB018D11\",\n            \"cityName\": \"Saskatoon, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=494eaf90af5a6173\",\n            \"jobName\": \"Customer Service Representative Supervisor\",\n            \"companyName\": \"Biktrix Enterprises Inc\",\n            \"rowSalary\": \"$26.70 an hour\",\n            \"date\": 1694413198594,\n            \"dateOfPosted\": 1692714701455,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.157902,\n                    \"lon\": -106.6701577\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saskatoon\",\n                \"formattedAddress\": \"Saskatoon, SK, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saskatoon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 27.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    27.0\n                ],\n                \"range\": {\n                    \"gte\": 27.0,\n                    \"gt\": null,\n                    \"lte\": 27.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College/CEGEPExperience: 1 year to less than 2 yearsTasks Conduct performance reviews Perform same duties as workers supervised Co-ordinate, assign and review work Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Examine and verify accuracy of work and authorize routine deposits and withdrawals Identify training needs and train workers in job duties and company policies Requisition materials and supplies Resolve work-related problems and prepare and submit progress and other reports Work conditions and physical capabilities Attention to detail Personal suitability Client focus Organized Reliability Team player Screening questions Are you currently legally able to work in Canada? Do you have previous experience in this field of employment?Work Term: PermanentWork Language: EnglishHours: 30 hours per week\",\n            \"location\": \"Saskatoon, SK\"\n        },\n        {\n            \"id\": \"20B901BA45DF8F928F555F1CE89ADCA1\",\n            \"cityName\": \"6935 Buller Av, Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d0ac35abd01d60cc\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Nixon Automotive Bmw Service Specialists\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694410555799,\n            \"dateOfPosted\": 1690539013261,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.21389809999999,\n                    \"lon\": -122.9775055\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Buller Ave, Burnaby, BC V5J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Nixon Automotive BMW Service Specialists are looking for and outgoing and friendly individual to help create and maintain a friendly and hospitable environment for customers. The right candidate will maintain a positive attitude, have great listening skills, organization, multitasking skills, and is efficient.Tasks and duties overview:Answering phone callsTaking messagesTransferring callsScheduling appointmentsBlocking telemarketer callsGreeting customersChecking in vehicles for serviceVehicle walk aroundTagging keysInforming service advisor of vehicle arrivalAnswering emailsForwarding emails and messagesFollow up emailsChecking overnight drop boxReturning missed callsMaintaining printout suppliesSigning for deliveriesDelivery order data entryDispersing deliveries and mailAppointment reminders phone /emailManaging parking lotInforming customer of vehicle readinessTracking vehicle deliveryCustomer shuttle when neededCompletion of Secondary EducationTraining in customer service and experience recommended.Automotive general knowledge.Drivers license and confident driving skills with manual and automatic transmissions.Job Type: Full-timeSalary: From $20.00 per hourBenefits:Dental careExtended health careLife insuranceFlexible Language Requirement:French not requiredSchedule:Day shiftMonday to FridaySupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Buller Av, Burnaby, BC\"\n        },\n        {\n            \"id\": \"0EC9F29C1A5C7EB4453D9F2EAF7DE8CC\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d323be9ef7057613\",\n            \"jobName\": \"Call Center Representative\",\n            \"companyName\": \"Bloom Sales Partners\",\n            \"rowSalary\": \"$20–$21 an hour\",\n            \"date\": 1694409960712,\n            \"dateOfPosted\": 1694409960543,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are searching for a polite, professional Call Center Representative to work closely with other team members to provide outstanding service to our customers by answering questions, handling complaints, and troubleshooting problems with our products and services. The Call Center Representative may handle a high volume of inbound or outbound calls or both and should seek to create a positive experience for each caller. They will listen to clients to understand the reason for their call, address all questions or complaints, and provide an accurate and efficient response.  To be a successful Call Center Representative, you should be customer-focused, detail oriented, and efficient. You should be polite, reliable, knowledgeable, and adaptable.  Responsibilities Answering or making calls to clients to learn about and address their needs, complaints, or other issues with products or services.Responding efficiently and accurately to callers, explaining possible solutions, and ensuring that clients feel supported and valued.Engaging in active listening with callers, confirming or clarifying information and diffusing angry clients, as needed.Building lasting relationships with clients and other call centre team members based on trust and reliability.Utilizing software, databases, scripts, and tools appropriately.Understanding and striving to meet or exceed call centre metrics while providing excellent consistent customer service.Making sales or recommendations for products or services that may better suit client needs.Taking part in training and other learning opportunities to expand knowledge of company and position.Adhering to all company policies and procedures. Requirements High School Diploma or equivalent.More education or experience may be preferred.Exceptional customer service, active listening, and verbal and written communication skills, professional phone voice.Understanding of company products, services, and policies.Proficiency with computers, especially with CRM software, and strong typing skills.Ability to ask prying questions and diffuse tense situations.Strong time management and decision making skills.Adaptability and accountability.Fluency in multiple languages may be desired.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"827F234FB0A76683D5B5904D08F36D74\",\n            \"cityName\": \"Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8bee26481abe04e6\",\n            \"jobName\": \"Customer Service Representative - 1 Year Fixed Term Contract\",\n            \"companyName\": \"Waste Connections Of Canada\",\n            \"rowSalary\": \"$55,000 a year\",\n            \"date\": 1694409887594,\n            \"dateOfPosted\": 1694409887408,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.798329,\n                    \"lon\": -79.5079073\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Concord, Vaughan, ON L4K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 55000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    55000.0\n                ],\n                \"range\": {\n                    \"gte\": 55000.0,\n                    \"gt\": null,\n                    \"lte\": 55000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"aste Connections of Canada is a leading non-hazardous solid waste management in North America. We are looking for a SAFETY inclined, energetic, autonomous, and proactive team player who can make a difference in his/her team and community.This is an onsite position We have an immediate opening for a full-time Data Entry/CSR at our Vaughan, ON district.Address: 650 Creditstone Rd Vaughan, ONKey tasks:As a data entry clerk, you will enter new sales material as well as customer terminations and service changesYou will maintain sales spreadsheets and pdf files related to the sales teamRespond to customer inquiries via phone or email for questions related to waste and recycling services, including scheduling and pick upAnalyze account activity and suggest opportunities for service improvements to the customerMaintain appropriate files and documentation, in accordance with company policy and internal controlsCommunicates with customers to determine driver needsRequirements:2-3 years of customer service/office admin experienceHigh-volume call center or inbound calling experiencePleasant demeanor over the phone and emailsExcellent time management and prioritization skillsStrong working knowledge of Microsoft Office, TRUX an assetStrong written and oral communication skillsCritical and logical thinking skillsWe are a busy, but fun place to work. There will be flurry of activity every day, but with your speedy data entry and proficient Microsoft Office skills, you will be able to handle this role with ease.Come join a team environment with colleagues who embrace a \\\"work hard, play harder\\\" culture. You'll also be associating yourself with a company that likes to lead by example through a strong presence in our local communities, charitable giving, sustainability initiatives, and more.Waste Connections of Canada/Enviro Connexions is an Equal Opportunity EmployerJob Type: Full-timeSalary: $55,000.00 per yearBenefits:Dental carePaid time offSchedule:Monday to FridayAbility to commute/relocate:Concord, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Concord, ON\"\n        },\n        {\n            \"id\": \"565BD8534D6F078C1F00A45FCC63ECDA\",\n            \"cityName\": \"14200 Green Timbers Way, Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d0913d02262ae7e5\",\n            \"jobName\": \"Customer Service / Help Desk Operator\",\n            \"companyName\": \"Bouygues Energies & Services\",\n            \"rowSalary\": \"$25.99 an hour\",\n            \"date\": 1694409648964,\n            \"dateOfPosted\": 1694409648773,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1796279,\n                    \"lon\": -122.8306921\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Green Timbers Way, Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 26.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    26.0\n                ],\n                \"range\": {\n                    \"gte\": 26.0,\n                    \"gt\": null,\n                    \"lte\": 26.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Bouygues Energies & Services, a leading provider of facility management services across Canada, is seeking casual Customer Service/ Help Desk Operators to work at the RCMP Divisional Headquarters located in North Surrey, BC. The facility is a state-of-the-art, 35-acre multi-building complex that has won several awards.  Reporting to the Help Desk Supervisor, the duties of the Help Desk Operator are to provide the first point of contact between our company and our client, communicating politely and professionally while following procedures to respond to customer inquiries. As a casual Help Desk Operator, would not have set work shifts but would be asked to fill work shifts at various times and days based on your availability. Why work with us? Aside from earning a competitive hourly wage of $25.99 per hour, plus shift premiums, employees who are working more than 20 hours per week will receive excellent health and dental benefits that are 100% paid by us. You will be eligible for sick leave, short and long-term disability benefits. The Company also offers an attractive group Registered Retirement Savings Plan (RRSP) and will match up to 5% of your salary. These benefits, and annual increases to your rate of pay, are detailed in the Collective Bargaining Agreement (CBA).  Please note that individuals working at this location must obtain a high-level government Security Clearance that may take several months to process. For this, you must have resided in Canada for at least five years and have no criminal record. DUTIES & RESPONSIBILITIES:Receiving inquiries via phone calls, e-mails, and other channels and accurately logging them in the Maximo Support System. Determining and assigning type and priority of requests to ensure the work goes to the appropriate trade with the appropriate priority level, knowing when to escalate for immediate attention or supervisor intervention. Facilitating the planned maintenance program by printing off job dockets and returning to the system when complete. Communicating effectively with Management regarding emergency situations. Learning and maintaining the knowledge of contractual obligations and be able to interpret and explain operational policies and procedures to the client. Assisting in the preparation of reports and documents as required, maintaining confidentiality at all times. KEY REQUIREMENTS Have previous customer service or call centre experience and be able to deal with inquiries in a calm, courteous, and effective manner. Have previous experience working with a computerized maintenance management system, preferably Maximo. Have strong oral and written communication skills. The ability to speak French fluently will be considered an asset. Have excellent multi-tasking and organizational skills. Be proficient in the use of Microsoft Office. Have a strong sense of confidentiality. The selected candidate will be required to join the Union which is Public Private Workers Canada (PPWC). To learn more about Bouygues Canada, visit https://www.bouygues-es.ca/Other details: Job Family New Pay Type Hourly Hiring Rate $25.99 Travel Required No\",\n            \"location\": \"Green Timbers Way, Surrey, BC\"\n        },\n        {\n            \"id\": \"7C4B841FC91F86221BBEE7DD35281953\",\n            \"cityName\": \"Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a9f81765279d2824\",\n            \"jobName\": \"Customer Service Representative, Victoria\",\n            \"companyName\": \"Algaecal\",\n            \"rowSalary\": \"$48,000–$51,000 a year\",\n            \"date\": 1694409471411,\n            \"dateOfPosted\": 1693529688287,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4284207,\n                    \"lon\": -123.3656444\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Career with a heart! If you like helping people, and you want to feel supported in your work –– this is the opportunity for you. Every day, concerned people call the AlgaeCal helpline. They’ve just had bad news about their bones – and they’re scared they might break at any moment. But after talking with YOU, their fear will melt away. We call our Customer Care Representatives – Bone Health Consultants – and a typical day might include: Acting as a knowledge base for customers inquiries with respect to our products and their bone healthActively listening to customers and providing them with everything they need to make an informed decision about AlgaeCal.Supporting our customers through a variety of mediums (email, phone).Processing orders and returns for customers.Helping customers understand the results of their DEXA bone scans.Updating the records of customer interactions, processing customer accounts, and filing documents. So yes, you’ll need to enjoy administrative tasks to thrive in this role.But most importantly, setting our customers up for MAXIMUM SUCCESSThis opportunity is tailor-made for you if: You’re highly motivated to work at home. You’ve got a solid customer service background. You are passionate about natural health. You are an expert at building a rapport with customers and devoted to helping people find that aha moment – where they go from despair to hope. You’re organized. You’re humble. You think critically and creatively. You love to support and inspire others. You don’t just accept feedback – you WANT feedback, because you’re hungry to be better than you were yesterday. You’re also a brilliant multi-tasker who can effortlessly shift between a variety of priorities. So if you want to work with some of the nicest people you’ll ever meet. And you want to feel good about making a difference in the world –– all while learning about natural health and working in a well organized and supportive workplace –– send us your resume. And BTW… some of our senior executives started out in this role –– so if you’ve got the talent, there’s no telling where this job might take you :) To best service our clients, our Customer Success Centre is open 7 days per week. Work schedules are 5 consecutive days, which include 1 weekend day. Successful applicants must be willing to work a Saturday or a Sunday, each week. We won’t ask you to work both weekend days, but ya need to be available for one! Example shift rotation: Sunday to Thursday or Tuesday to Saturday. Other Goodies$48,000 starting salary with the opportunity to increase rapidly as training targets are met.AlgaeCal Healthcare Plan (Premiums Covered 100%!), which you're eligible to sign up for after three months of employment.Monthly lunches with your co-workers, coffee catch ups, and an informal coaching programme.Supported professional development and continued learning through training and coaching.Flexible Stat Holidays with the option to bank days for later use.Once you’ve been with us for 3 months you’ll get $200 to spend on whatever you want.You should know this… AlgaeCal is a hyper-growth company, which means that the role is always evolving as the company grows. We are not a typical ‘transactional’ thinking company. We are a heart-based company where people come first. In order to be successful here, you will need to have this mindset, work smart, hard, and embrace everything that is offered. If this sounds like a position for you, please respond to this advertisement with your resume and cover letter. This is an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your carefully written cover letter. Applications submitted without a resume and cover letter will be unsuccessful. Please, read carefully: 1. Write a cover letter addressing: 1. Why you're the best Customer Service Representative for this role. Give quantifiable examples of related achievements. 2. Describe why you fit perfectly with our values. Read them here: http://shorturl.at/lptFT 3. What's the toughest challenge you’ve ever overcome in your life? How did you overcome it? 4. What are the last three books you’ve read? 5. What do you do for fun? 6. Explain what you’re doing now for a job:If you don’t have one, explain why.If you have one, explain why you’re looking elsewhere.2. Upload your cover letter and resume: 1. Ensure that your cover letter and resume are saved and sent as one file. Click the “Apply Now” button on this page and upload your (1) cover letter (2) resume. *Important* AlgaeCal isn’t a boring run-of-the-mill company. So some of the questions in your online application might feel out of the ordinary. These questions are an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your answers. For more information about us, please visit our website. #INDLP\",\n            \"location\": \"Victoria, BC\"\n        },\n        {\n            \"id\": \"07D86D745E8DAC02690D63194E87F3CE\",\n            \"cityName\": \"50 Carroll Street, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=963e3340a834781e\",\n            \"jobName\": \"Wholesale Customer Service Representative (Bilingual)\",\n            \"companyName\": \"Ecco Shoes Canada, Inc.\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694407836674,\n            \"dateOfPosted\": 1667596866402,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6600512,\n                    \"lon\": -79.35320519999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Carroll St, Toronto, ON M4M, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Wholesale Customer Service Representative (Bilingual) will provide comprehensive service to our wholesale account customers, field sales team, and internal team. Create the best possible experience for our internal and external customers.As our Wholesale Customer Service Representative, your responsibilities will include:Manage customer files, order entry, maintenance of all orders for assigned territory, and return authorization processing with strict adherence to company policies, pricing, and programs.Responsible for building allocation fill rate and releasing orders to Distribution for shipping within customer start ship/cancel date windows.Answer inbound and make outbound calls with the highest level of professionalism and courtesy; ensure maximum customer satisfaction by using empathy, attention to detail, and accurate relay of information; consistently going above and beyond with a customer-first mindset.Communicate with Sales team representatives for assigned territory and/or accounts; provide open order reports at a pre-discussed cadence to ensure maximum shipping capability and minimum cancellations/past-cancel orders.Partner with Sales management team member of assigned accounts to address and prevent wrong pricing.Create and distribute weekly and monthly reports to Sales team and Senior Management.Ensure assigned back-up is trained and fully functional for instances of time out of the office.Assist with on-boarding of new hires and training documentation of Customer Service processes and procedures.Consistently provide accurate and timely information and follow through.Learn and develop personal skill levels in regards to SAP, EDI, and the footwear industry.Communicate and coordinate with all internal departments for smooth processing of all transactions.Troubleshoot and/or bring problems/situations to the attention of the department managers, and resolve internal issues for the common good.If you have…Bilingual - excellent written and oral communication skills in both French and English.Post-Secondary diploma or degree.3+ years in a customer service role.Proficiency with MS Office products, particularly Excel.Proficiency with order management platforms, SAP preferred.Ability to work under pressure and meet tight deadlines when necessary.Ability to communicate clearly, concisely and professionally (both verbally and written).Ability to prioritize work and adjust priorities as needed.Superior organization and follow-up skills.Ability to travel up to 5%, both domestic and internationally.…we want to hear from you!Imagining yourself at ECCO?Review this position and other US jobs at www.eccousacareers.comFor international opportunities, please access our global career site at https://enter.ecco.com/CREATE THE FOOTPRINTS OF TOMORROWAt ECCO, you become part of a meaningful, developing and multicultural workplace. You join a global family of more than 25,000 people who are proud to create the footprints of tomorrow.Headquartered in Denmark, we are a family-owned company that offers international opportunities. Our offices and facilities have an informal culture and relaxed dress code – our shoe code is slightly stricter.Join us and we guarantee lifelong learning – the speed of progress is up to you. So, if you’re curious, passionate and ready to make an impact, you’ll fit right in.Job Type: Full-timeSalary: $16.00-$20.00 per hourSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Toronto, ON: reliably commute or plan to relocate before starting work (required)\",\n            \"location\": \"Carroll Street, Toronto, ON\"\n        },\n        {\n            \"id\": \"87DEBE0C7B98D81CAE00143D18F6C007\",\n            \"cityName\": \"Saskatoon, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a646eeab4871d3de\",\n            \"jobName\": \"Customer Service Representative, Saskatoon\",\n            \"companyName\": \"Algaecal\",\n            \"rowSalary\": \"$48,000–$51,000 a year\",\n            \"date\": 1694407685544,\n            \"dateOfPosted\": 1693529524328,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.157902,\n                    \"lon\": -106.6701577\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saskatoon\",\n                \"formattedAddress\": \"Saskatoon, SK, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saskatoon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Career with a heart! If you like helping people, and you want to feel supported in your work –– this is the opportunity for you. Every day, concerned people call the AlgaeCal helpline. They’ve just had bad news about their bones – and they’re scared they might break at any moment. But after talking with YOU, their fear will melt away.We call our Customer Care Representatives – Bone Health Consultants – and a typical day might include: Acting as a knowledge base for customers inquiries with respect to our products and their bone healthActively listening to customers and providing them with everything they need to make an informed decision about AlgaeCal.Supporting our customers through a variety of mediums (email, phone).Processing orders and returns for customers.Helping customers understand the results of their DEXA bone scans.Updating the records of customer interactions, processing customer accounts, and filing documents. So yes, you’ll need to enjoy administrative tasks to thrive in this role.But most importantly, setting our customers up for MAXIMUM SUCCESSThis opportunity is tailor-made for you if:You’re highly motivated to work at home. You’ve got a solid customer service background. You are passionate about natural health. You are an expert at building a rapport with customers and devoted to helping people find that aha moment – where they go from despair to hope. You’re organized. You’re humble. You think critically and creatively. You love to support and inspire others. You don’t just accept feedback – you WANT feedback, because you’re hungry to be better than you were yesterday. You’re also a brilliant multi-tasker who can effortlessly shift between a variety of priorities.So if you want to work with some of the nicest people you’ll ever meet. And you want to feel good about making a difference in the world –– all while learning about natural health and working in a well organized and supportive workplace –– send us your resume. And BTW… some of our senior executives started out in this role –– so if you’ve got the talent, there’s no telling where this job might take you :) To best service our clients, our Customer Success Centre is open 7 days per week. Work schedules are 5 consecutive days, which include 1 weekend day. Successful applicants must be willing to work a Saturday or a Sunday, each week. We won’t ask you to work both weekend days, but ya need to be available for one! Example shift rotation: Sunday to Thursday or Tuesday to Saturday. Other Goodies$48,000 starting salary with the opportunity to increase rapidly as training targets are met.AlgaeCal Healthcare Plan (Premiums Covered 100%!), which you're eligible to sign up for after three months of employment.Monthly lunches with your co-workers, coffee catch ups, and an informal coaching programme.Supported professional development and continued learning through training and coaching.Flexible Stat Holidays with the option to bank days for later use.Once you’ve been with us for 3 months you’ll get $200 to spend on whatever you want.You should know this… AlgaeCal is a hyper-growth company, which means that the role is always evolving as the company grows. We are not a typical ‘transactional’ thinking company. We are a heart-based company where people come first. In order to be successful here, you will need to have this mindset, work smart, hard, and embrace everything that is offered. If this sounds like a position for you, please respond to this advertisement with your resume and cover letter. This is an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your carefully written cover letter. Applications submitted without a resume and cover letter will be unsuccessful. Please, read carefully: 1. Write a cover letter addressing:Why you're the best Customer Service Representative for this role. Give quantifiable examples of related achievements.Describe why you fit perfectly with our values. Read them here: https://drive.google.com/file/d/1deCCJZ6tiDiOSlr_W0UdCuM_V_ahzPBs/view What's the toughest challenge you’ve ever overcome in your life? How did you overcome it?What are the last three books you’ve read?What do you do for fun?Explain what you’re doing now for a job: If you don’t have one, explain why.If you have one, explain why you’re looking elsewhere.2. Upload your cover letter and resume: Ensure that your cover letter and resume are saved and sent as one file. Click the “Apply Now” button on this page and upload your (1) cover letter (2) resume. \",\n            \"location\": \"Saskatoon, SK\"\n        },\n        {\n            \"id\": \"8C6D61A0D0B1A08B39C0CCB0B15052D5\",\n            \"cityName\": \"Windsor, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b0025310e2383fa3\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"Aim Kenny U-Pull\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694405880917,\n            \"dateOfPosted\": 1692670414504,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.3149367,\n                    \"lon\": -83.03636329999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Windsor\",\n                \"formattedAddress\": \"Windsor, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Essex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Windsor\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Company Description  Kenny U-Pull takes pride in giving used vehicles a second life. Our 26 auto recycling yards across Eastern Canada are backed by 400+ employees, all passionate about the revalorization of used cars and the desire for a greener environment for future generations. Since 2008, we have recycled over 1 million vehicles and counting! At Kenny, we do things differently by offering our customers the opportunity to create their own self-serve experience. Customers pick and pull replacement parts themselves for a fraction of the manufacturer's price, in a safe, clean, and environmentally responsible environment. Our engine runs on purpose, passion, and team spirit. We’re a close-knit and supportive company where your ambitions are also ours. Come ride with us - we promise it will be a rewarding journey. Job Description  Salary starting at $16.75/h + annual bonus up to 2.5%Permanent, full-time positionAddress: 200 Sprucewood Ave, Windsor, ON N9C 0B8Schedule: TBD - we're open 7/7 from 9am to 5pm Does the thought of working around cars all day long ‘rev your engine’? Interested in being part of a dynamic, growing team who is helping to create a greener environment for generations to come? Then read on, as this position is for you! As a Customer Service Clerk, you will play the important role of being our customers’ first point of contact in-store. Reporting to the Branch Manager, your day-to-day responsibilities (besides having lots of fun!) will include: Answering customers’ questions and providing advice on products and services Identifying individual customer needs and in turn, effectively providing solutions Operating the cash register and carrying out day-to-day transactions Stocking and organizing inventory on shelves in the store Helping to keep the store, parking lot and occasionally the yard, tidy and clean Perform transactions related to the purchase of vehicles Assist with administrative or production tasks Qualifications  Team player who enjoys connecting with and helping others Passionate about providing exceptional customer service Resourceful and detail oriented Able to lift items up to 30lbs A proven track record for punctuality and reliability Car enthusiast (a plus!) Additional Information  And by additional information, we mean perks! Competitive salary Year-end bonus Comprehensive group insurance plan Overtime at time and a half after 44 hours Group RRSP with employer matching contribution Referral program Exclusive employee discounts on parts from any Kenny yard A fancy new pair of steel toe boots Clothing provided Kenny U-Pull is a subsidiary of American Iron & Metal (AIM) inc., a recognized global leader in the metal recycling industry with more than 125 site locations, 3000 employees worldwide and over 3.5 billion dollars in yearly sales. AIM and its subsidiaries offer equal employment opportunities to all. Only those selected for interviews will be contacted. Thank you for your interest.\",\n            \"location\": \"Windsor, ON\"\n        },\n        {\n            \"id\": \"283048EAEFAC6910EEF242588A1354F1\",\n            \"cityName\": \"Assante Wealth Management Ltd in Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=229a81dc29bb18a8\",\n            \"jobName\": \"Inside Phone Sales Representative\",\n            \"companyName\": \"Assante Wealth Management Ltd\",\n            \"rowSalary\": \"$16–$25 an hour\",\n            \"date\": 1694403201626,\n            \"dateOfPosted\": 1652742079518,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4503213,\n                    \"lon\": -73.7500486\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Assante Capital Management Ltd. is one of Canadas largest independent investment firms.This is a great opportunity to join our expanding inside sales team. We are looking for motivated sales reps to generate new prospective clients for our financial advisors.Qualifications:Experience in cold calling a must.Must be assertive and well-spoken.Bilingual preferred but English only accepted.Sales driven with a positive attitude.Ability to work independently.Lead list is provided.This is a permanent part time position that may lead to full time pending results.Start date is immediate.We offer excellent salary plus bonus for qualified candidates.Hours are Monday to Thursday 5:00 p.m. to 9:00 p.m.Serious candidates only please contact 514 832 5148 to arrange for interview.Work remotelyTemporarily due to COVID-19Job Types: Part-time, PermanentSalary: $16.00-$25.00 per hourBenefits:Casual dressOn-site parkingSchedule:No weekendsSupplemental pay types:Bonus pay\",\n            \"location\": \"Dorval, QC\"\n        },\n        {\n            \"id\": \"A28FD35312A8045695C766169C909AD6\",\n            \"cityName\": \"Petro Canada in Campbell River, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6157183e85bd10c0\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Petro Canada\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694402492353,\n            \"dateOfPosted\": 1693552952933,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.03312260000001,\n                    \"lon\": -125.2733353\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Campbell River\",\n                \"formattedAddress\": \"Campbell River, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Strathcona\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Campbell River\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We're looking for a quality Team Member - part time day/evening/night shifts at Campbellton location (beside walmart) leading to full time as and when position may become available.Convenience store and lotto experience is an asset but not required. Duties involve friendly customer service, cleaning, organizing, stocking and etc.Job Type: Part-timePart-time hours: 24 per weekSalary: From $17.00 per hourDay range:HolidaysWeekends as neededShift:8 hour shiftDay shiftEvening shiftNight shiftWork setting:Convenience storeWork Location: In person\",\n            \"location\": \"Campbell River, BC\"\n        },\n        {\n            \"id\": \"D02BE611BC3CA0D6AB2B33A4DBAC815D\",\n            \"cityName\": \"Sherwood Park, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5f25393f4c858db8\",\n            \"jobName\": \"Customer Service Representative (Part-Time Veterinary Receptionist)\",\n            \"companyName\": \"Pulse Veterinary Specialists & Emergency\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694402435142,\n            \"dateOfPosted\": 1693555279944,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5411916,\n                    \"lon\": -113.2957355\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sherwood Park\",\n                \"formattedAddress\": \"Sherwood Park, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sherwood Park\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you an individual passionate about providing exceptional client care? Do you have a passion for animals and a desire to get into the veterinary industry? Do you already have some veterinary clinic experience and are looking to be part of a new working culture that provides both exceptional care and a fun, warm family work environment? Are you looking to help grow our locally owned and run veterinary hospital to help serve the community? Are you looking to make an impact in an organization by being the first point of contact for all visitors? If you answered YES to the above questions, then we want YOU! Overview We are seeking a motivated, team-oriented, and passionate Customer Service Representative (receptionist) to join our Client Care Services team in our growing emergency and specialty hospital. We are currently looking for a part-time receptionist to join our Client Care Services team. As a 24-hour emergency facility, this position will require shift work (days, nights, weekends, holidays). The part-time shifts are from 4 p.m. - 2 a.m. and weekend availability. Our goal is to promote a healthy working environment centred around high standards of medicine and exceptional patient care. Come feel the difference when you are truly part of the family in Alberta’s only private referral hospital. If you enjoy working in a fast-paced environment with experienced emergency veterinarians and specialists in multiple disciplines, then this may be the job for you! Company Benefits Pulse employees receive:Competitive compensation packagePersonal pet discountsUniform allowanceHealth benefitsPaid time offOn-site parkingDeferred profit-sharing plansOpportunities for growth and professional developmentAccess to a diverse team with varied experience and knowledge Position Summary The Client Service Representative will act as the first point of contact for clients and is responsible for setting an example of high-level client care and teamwork at Pulse Veterinary Specialists & Emergency. They will report to Head of Client Services and work closely with the Client Care team to deliver exceptional patient and client care to ensure all feel welcomed and cared for. The Client Service Representative will support all emergency and specialty teams including: Cardiology, Dentistry, Neurology, Ophthalmology, Radiology, Surgery, and Internal Medicine. The ideal candidate values maintaining a collegial working culture and prioritizes embracing the strategy, commitments, and goals of the organization. Duties and ResponsibilitiesDelivers exceptional client care.Creates a welcoming environment for patients and clients.Greets patients and their owners as they arrive.Responds to incoming emergencies.Answers and triages incoming telephone calls.Manages email correspondence including client and referral inquires, as well as internal messages.Schedules, tracks, and follows-up on appointments.Maintains practice software including client and patient record management.Prepares estimates, invoices, and processes payments.Performs housekeeping duties to maintain cleanliness of reception and common areas. Ensures internal and external hospital cleaning schedules are followed.Admits and discharges patients.Assists with educating clients about insurance and home care instructions as requiredCoordinates and processes end of life care for patients and their families.Supports management of client complaints as required in partnership with the Head of Client Services and Hospital Director, interacting with clientele to deescalate, resolve, and/or escalate issues in a timely fashion.Follows all SOPs to support smooth hospital operations.Follows all federal and provincial animal health laws and regulations regarding workplace health and safety.Openly and proactively communicates updates to Head of Client Services and other department team members. Prioritize interdepartmental synergy by maintaining open lines of communication with other departments.Other duties may be assigned as required. Qualifications The ideal candidate will have: The Education and ExperienceMinimum of 1 year customer service or front desk experience is preferred (ideally in a medical or hospitality setting).Post secondary education is considered an asset. Knowledge, Skills and AbilitiesExceptional customer service skills.Strong interpersonal, verbal, and written communication skills.Proven active listening and problem-solving skills.Understands how to communicate difficult/sensitive information professionally. Aptitude for making clients feel welcomed and comfortable.Ability to adapt to changing situations and remain calm in stressful situations.Strong time management and organizational skills including the abilities to plan, coordinate, multitask, and prioritize. Ability to carry out tasks independently.Genuine interest and initiative to help Pulse be the best practice it can be.Strong initiative and desire to be an integral key player in the growth and maturation of the Client Care team.Intrinsic desire to grow personally and professionally. We thank all interested candidates for applying, however, only candidates considered for an interview will be contacted.\",\n            \"location\": \"Sherwood Park, AB\"\n        },\n        {\n            \"id\": \"A475C9F111610C2E22D1A53AB8446A7F\",\n            \"cityName\": \"57 Crowfoot Terr NW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=20e565fc3b445bc3\",\n            \"jobName\": \"Customer Service Retail Crave Ambassador (Happiness Provider)\",\n            \"companyName\": \"Crave Cupcakes\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694402368835,\n            \"dateOfPosted\": 1693534098929,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.1273066,\n                    \"lon\": -114.2004557\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Crowfoot Terrace NW, Calgary, AB T3G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"WHY CRAVEWe exist to enrich people’s lives through exceptional, home-style baking. We passionately bake from scratch, we work together for the collective good of Crave and we are kind and gracious. Crave is looking for a like-minded individual who shares our passion in creating a sense of community by being part of a collaborative team. Does the idea of waking up early to bake family recipes from scratch appeal to you? If the smell of cocoa in the air and the whirring sound of whipping crave-o-licious buttercream in the mixer gets you excited, we want to hear from you!RESPONSIBILITIES- Understand and subscribe to the Crave Values & Vision- Mastery of Crave’s from scratch menu- Packaging & gift wrapping- Operating point-of-sale system- Practice food safety and store maintenance- Offer bakery support when requiredTHE ESSENTIALS- Able to think critically in the moment- Love Crave as much as we do- Strong organizational skills- You enjoy working making moments special for people- Good customer service is a priority for you to give and receive- You strive to gain insights from your mistakes- You seek constructive feedback from colleagues and supervisors to improve results- You are high energy with the ability to energize others- Team oriented- Motivated to pursue growth within your role- You love to smileWe look forward to hearing from you!Work remotelyNoJob Type: Part-timePart-time hours: 16-24 per weekSalary: From $15.00 per hourBenefits:Dental careDisability insuranceDiscounted or free foodLife insuranceStore discountSchedule:8 hour shiftMonday to FridayOvertimeWeekends as neededSupplemental pay types:Overtime payEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Crowfoot Terr NW, Calgary, AB\"\n        },\n        {\n            \"id\": \"104594DE331D80A3A92E179C793978C0\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=57a3408002ee78b9\",\n            \"jobName\": \"Customer Service Representative, Calgary\",\n            \"companyName\": \"Algaecal\",\n            \"rowSalary\": \"$48,000–$51,000 a year\",\n            \"date\": 1694402192470,\n            \"dateOfPosted\": 1693529502493,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Career with a heart! If you like helping people, and you want to feel supported in your work –– this is the opportunity for you. Every day, concerned people call the AlgaeCal helpline. They’ve just had bad news about their bones – and they’re scared they might break at any moment. But after talking with YOU, their fear will melt away. We call our Customer Care Representatives – Bone Health Consultants – and a typical day might include: Acting as a knowledge base for customers inquiries with respect to our products and their bone healthActively listening to customers and providing them with everything they need to make an informed decision about AlgaeCal.Supporting our customers through a variety of mediums (email, phone).Processing orders and returns for customers.Helping customers understand the results of their DEXA bone scans.Updating the records of customer interactions, processing customer accounts, and filing documents. So yes, you’ll need to enjoy administrative tasks to thrive in this role.But most importantly, setting our customers up for MAXIMUM SUCCESSThis opportunity is tailor-made for you if: You’re highly motivated to work at home. You’ve got a solid customer service background. You are passionate about natural health. You are an expert at building a rapport with customers and devoted to helping people find that aha moment – where they go from despair to hope. You’re organized. You’re humble. You think critically and creatively. You love to support and inspire others. You don’t just accept feedback – you WANT feedback, because you’re hungry to be better than you were yesterday. You’re also a brilliant multi-tasker who can effortlessly shift between a variety of priorities. So if you want to work with some of the nicest people you’ll ever meet. And you want to feel good about making a difference in the world –– all while learning about natural health and working in a well organized and supportive workplace –– send us your resume. And BTW… some of our senior executives started out in this role –– so if you’ve got the talent, there’s no telling where this job might take you :) To best service our clients, our Customer Success Centre is open 7 days per week. Work schedules are 5 consecutive days, which include 1 weekend day. Successful applicants must be willing to work a Saturday or a Sunday, each week. We won’t ask you to work both weekend days, but ya need to be available for one! Example shift rotation: Sunday to Thursday or Tuesday to Saturday. Other Goodies$48,000 starting salary with the opportunity to increase rapidly as training targets are met.AlgaeCal Healthcare Plan (Premiums Covered 100%!), which you're eligible to sign up for after three months of employment.Monthly lunches with your co-workers, coffee catch ups, and an informal coaching programme.Supported professional development and continued learning through training and coaching.Flexible Stat Holidays with the option to bank days for later use.Once you’ve been with us for 3 months you’ll get $200 to spend on whatever you want.You should know this… AlgaeCal is a hyper-growth company, which means that the role is always evolving as the company grows. We are not a typical ‘transactional’ thinking company. We are a heart-based company where people come first. In order to be successful here, you will need to have this mindset, work smart, hard, and embrace everything that is offered. If this sounds like a position for you, please respond to this advertisement with your resume and cover letter. This is an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your carefully written cover letter. Applications submitted without a resume and cover letter will be unsuccessful. Please, read carefully: 1. Write a cover letter addressing: 1. Why you're the best Customer Service Representative for this role. Give quantifiable examples of related achievements. 2. Describe why you fit perfectly with our values. Read them here: http://shorturl.at/lptFT 3. What's the toughest challenge you’ve ever overcome in your life? How did you overcome it? 4. What are the last three books you’ve read? 5. What do you do for fun? 6. Explain what you’re doing now for a job:If you don’t have one, explain why.If you have one, explain why you’re looking elsewhere.2. Upload your cover letter and resume: 1. Ensure that your cover letter and resume are saved and sent as one file. Click the “Apply Now” button on this page and upload your (1) cover letter (2) resume. *Important* AlgaeCal isn’t a boring run-of-the-mill company. So some of the questions in your online application might feel out of the ordinary. These questions are an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your answers. For more information about us, please visit our website. #INDLP\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"AFC9B526AE0C694536BC8BEB6586A949\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f0795f8d6c2e30ed\",\n            \"jobName\": \"Logistics Dispatcher / Customer Service\",\n            \"companyName\": \"Ballad Consulting Group\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694400957053,\n            \"dateOfPosted\": 1694211483226,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About Us: At Ballad we consider ourselves to be the most accountable, collaborative, and entrepreneurial group of professionals in the Supply Chain industry. We empower resilient people to grow their careers and are looking for talented people like you who are eager to embrace a rewarding career in the Supply Chain industry. Position Summary: We are looking for highly organized logistics professionals who enjoy taking advantage of their amazing attention to detail to assist with coordinating dispatch operations. This is a great chance to get your career started in a role that is dynamic and rewarding and offers significant growth opportunities in the supply chain industry.This position is contingent on the successful completion of a 12 week training program that will include all necessary certifications facilitated by Ballad. Responsibilities:Data entry, input orders in computer system / TMSWork with carriers and transport companies to track shipments, expedite orders, and report on delivery timesOffer support and solutions to customers in accordance with the company's customer service policiesProvide solutions and deliver commitments to customers, dispatch and work with planning teamsCommunicate in a fast-paced environment with operations daily activityWork with customer to determine their needs and expectations and operate accounts to meet those demandsBook customer appointments for import and export containersProvide regular timely customer reportsUse strong interpersonal skills to manage geographical areas of responsibilityDemonstrate effective people management skillsEngage with clients in a friendly and professional manner while actively listening to their concerns Shift Schedule: Day shift, Monday to Friday The wage range for this position ranges from $18.00 - $22.00 per hour. Only candidates selected for the interview process will be contacted.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"28774491C1BF2682E87391770D0CAB5B\",\n            \"cityName\": \"331 Durham St E, Walkerton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ea38e9a105227bb7\",\n            \"jobName\": \"Customer Service Representative (Part Time)\",\n            \"companyName\": \"Brown's Guardian Pharmacy\",\n            \"rowSalary\": \"From $15.75 an hour\",\n            \"date\": 1694399793262,\n            \"dateOfPosted\": 1694239006437,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Brown's Guardian Pharmacy is seeking a part-time Customer Service Representative to join our Front Shop Team. This position offers 24 hours per week, including occasional Saturdays. Operating within Brown’s Guardian Pharmacy, the front shop department maintains a well-stocked array of merchandises, efficiently processes orders and purchases, and upholds Brown’s mission of exceptional customer service during all visits.The ideal applicant will possess:Proven ability to communicate effectively and courteously in-person and over the phoneA valid G Driver’s License is required, with clear driver’s abstract (no major violations in the past 3 years)Previous customer service experience, preferredExperience operating point-of-sale systems, an assetThe successful applicant will be required to submit a Criminal Record CheckGeneral Duties of the position:Operate cash register and process paymentsGreet customers and offer assistance when needed, ensuring positive customer experiencesPrepare, organize, and perform occasional deliveries (company vehicle, gas, and insurance provided)Maintain a valid driver’s license and clean driving recordStock shelves, maintain inventory, general housekeeping duties, and other duties as assignedTo Apply:Interested parties may submit their resumes in-person to Rhonda Bradley - Front Shop Manager. Applications will also be accepted through Indeed but we would really love to meet you face-to-face when you apply!Hours of operation:Monday to Friday 9am-6pm;Saturday 9am-5pmClosed Sundays and Statutory HolidaysApply today to join our team!*We thank all that apply, however, only applicants selected for an interview will be contacted. If you require an accommodation at any point during the recruitment process, please notify HR - hr@brownspharmacy.ca*Job Types: Part-time, PermanentPart-time hours: 24-32 per weekSalary: From $15.75 per hourSchedule:8 hour shiftMonday to FridayWeekends as neededExperience:Customer service: 1 year (preferred)Licence/Certification:Class G Licence (required)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"F5BCC91E0703C9A30F0AA4F8685A2453\",\n            \"cityName\": \"2390 Bristol Cir, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=de12d68c766fb9b4\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Promotion Solutions\",\n            \"rowSalary\": \"$18–$21 an hour\",\n            \"date\": 1694399662866,\n            \"dateOfPosted\": 1694215339851,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"An established company has an immediate opening for an individual who is proficient with the following:· typing & computer skills in Word & Excel· answer consumers' telephone/email inquiries· solving customers' issues· utilize computer system to search and access customer information in our records management systems· enter data into the operating system and create monthly reports· perform administrative tasks· mail sorting, create daily/weekly shipments· coupon/contest report management and increasingly challenging endeavors to meet the candidate’s qualifications- a candidate who knows French is preferredBenefits:Flexible working hoursCasual dressOn-site parkingJob Type: Part-time/full time, In OfficeJob Types: Full-time, Part-timePart-time hours: 20-40 per weekSalary: $18.00-$21.00 per hourBenefits:Casual dressFlexible scheduleOn-site parkingSchedule:Monday to FridayWork Location: In personExpected start date: 2023-10-02\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"CFB10C518311E9AEF3E012C135551F04\",\n            \"cityName\": \"240 Richmond Street West, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5b89bdef0b2f3285\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Checkmark Marketing\",\n            \"rowSalary\": \"$22–$24 an hour\",\n            \"date\": 1694398942668,\n            \"dateOfPosted\": 1694224181760,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job DescriptionJoin our purpose driven, diverse and fun team! As a customer service representative, you are the face of the organization. Checkmark Marketing is a place where we care about our team and the success of our clients.Checkmark Marketing is seeking a Customer Service Representative to join our team. This position will be responsible for providing support to our customers by responding to customer inquiries, assisting with product and service orders, and general customer service duties.If you are:Outgoing - you are someone who is approachable and positive in social interactionsEmpathetic - someone who is caring and passionate about their workCustomer oriented - you are passionate about providing top tier customer supportKind - being kind to the customers is a main priority for you and your goalsWhy work with us? The opportunity to join a growing and fast paced organization surrounded by a positive and passionate teamDiverse opportunities for professional career growthA company that is committed to making a difference in our communityYou can depend on being recognized for high-achievement and acknowledgement for your successCompetitive compensation optionsRequirementsHigh school diploma or equivalent required. College degree preferred.1-2 years of experience in a customer service role.Excellent verbal and written communication skills.Ability to multi-task, prioritize, and manage time effectively.Proficient in Microsoft Office applications (Word, Excel, Outlook).Ability to work independently with minimal supervision..Demonstrates high standards of personal hygiene and confidentiality.Must be located in the Toronto, ON area (no exceptions) or able to obtain valid work authorization within 1 year of employment.Must be able to pass a criminal background check and drug test.Job Types: Full-time, Part-timePart-time hours: 20 per weekSalary: $22.00-$24.00 per hourBenefits:Dental carePaid time offFlexible Language Requirement:French not requiredSchedule:Monday to FridayNo weekendsSupplemental pay types:Overtime payAbility to commute/relocate:Toronto, ON M5V 1V6: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"BE23C8DF4C3BD67271015F03F571144E\",\n            \"cityName\": \"1100 Champlain Crt, Whitby, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=355421f0c246ad79\",\n            \"jobName\": \"E-Commerce Customer Service Associate\",\n            \"companyName\": \"Gp Bikes Inc.\",\n            \"rowSalary\": \"$16–$18 an hour\",\n            \"date\": 1694398654470,\n            \"dateOfPosted\": 1689525258168,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8667419,\n                    \"lon\": -78.9195341\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Whitby\",\n                \"formattedAddress\": \"Champlain Ct, Whitby, ON L1N, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Whitby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Overview:If you enjoy going the extra mile for a customer, making them feel like they know you well (even if you haven’t met face-to-face), then this may be the job for you! The Online/E-Commerce Sales Associate delivers outstanding customer service as they support clients by phone or email as they make online purchases. They pick the ordered products from our retail store or special order the items as necessary. Sales are enhanced by providing information about alternative products or add-ons. The Online Sales Associate will also enter all new or updated products to GP Bikes’ website, including data and images. Online Sales Associates help customers shopping in the retail store as needed. The individual must be able to work Saturdays. Working motorcycle trade shows beyond our normal store hours 2-3 times a year is compulsory.Qualifications:Passion for the riding lifestyleMotorcycle apparel, accessories or Parts sales experience is an assetPrevious customer service experienceExcellent interpersonal skills and an ability to build trust and rapportAbility to move between various tasks without losing focusStrong verbal, written, and keyboarding skills are required to compose professional emails and converse with customers by phoneAble to work with ease in a web-based computer environmentStrong attention to detailSome post-secondary education preferredWhat you’ll get:Be part of a great team of peopleA fun and fast paced environmentFull-time hoursCompensation begins at $16-$18/hour depending on experienceGroup Insurance Benefits (once eligibility requirements have been met)Employee discounts on productProfit Sharing PlanYour schedule will be determined based on our business hours. Please note, you can be scheduled prior to our opening time for regular duties. There may also be circumstances for business needs where you are scheduled outside of our regular business hours for various reasons (ex. special projects, meetings, inventory or Bike Shows).GP Bikes is committed to providing a barrier-free work environment in conjunction with the Accessibility for Ontarians with Disabilities Act (AODA) and the Ontario Human Rights Code. As such, GP Bikes will make accommodations available to applicants with disabilities upon request during the recruitment process.The above description reflects the general details considered necessary to describe the principal functions and duties as required for proper evaluation of the job and will not be construed as a detailed description of all the work requirements that may be inherent in the job. Employees may perform other related duties and tasks as required to meet the needs of the operation.#HPJob Types: Full-time, PermanentSalary: $16.00-$18.00 per hourBenefits:Dental careOn-site parkingStore discountDay range:Monday to FridayWeekends as neededShift:10 hour shift8 hour shiftWork setting:Apparel storeAbility to commute/relocate:Whitby, ON: reliably commute or plan to relocate before starting work (required)Application question(s):How many years of Motorcycle or Dirt Bike Riding experience do you have?What is your availability for work from Monday-Saturday? (NOTE: We are closed on Sundays)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Licence/Certification:M2/M Licence (preferred)Work Location: In person\",\n            \"location\": \"Champlain Crt, Whitby, ON\"\n        },\n        {\n            \"id\": \"F836025C60432F027DA815AFBC849CF4\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=00f39ef1fcf0954b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Emson Creative\",\n            \"rowSalary\": \"$28–$32 an hour\",\n            \"date\": 1694398626643,\n            \"dateOfPosted\": 1692655479290,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 28.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    28.0\n                ],\n                \"range\": {\n                    \"gte\": 28.0,\n                    \"gt\": null,\n                    \"lte\": 28.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are hiring a Customer Service Representative to manage customer queries and complaints. You will also be asked to process orders, modifications, and escalate complaints across a number of communication channels. To do well in this role you need to be able to remain calm when customers are frustrated and have experience working with computers.  Responsibilities Maintaining a positive, empathetic and professional attitude toward customers at all times.Responding promptly to customer inquiries.Communicating with customers through various channels.Acknowledging and resolving customer complaints.Knowing our products inside and out so that you can answer questions.Processing orders, forms, applications, and requests.Keeping records of customer interactions, transactions, comments and complaints.Communicating and coordinating with colleagues as necessary.Providing feedback on the efficiency of the customer service process.Managing a team of junior customer service representatives.Ensure customer satisfaction and provide professional customer support. Requirements High school diploma, general education degree or equivalent.Ability to stay calm when customers are stressed or upset.Comfortable using computers.Experience working with customer support.\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"B51CE6C524F869DDC794FF21BAD8B16F\",\n            \"cityName\": \"10a-1209 Island Highway E, Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=19a2643bad5505d7\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mid Island Liquor\",\n            \"rowSalary\": \"$17.75 an hour\",\n            \"date\": 1694398527600,\n            \"dateOfPosted\": 1694239186383,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Liquor is looking for part-time Customer Service Representatives at our South Parksville Liquor Store Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you! Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in the operations of the store, including but not limited to handling customer transactions, responding to customer questions and concerns in a professional manner, creating displays and stocking shelves, and ensuring store and merchandise are neat and organized.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Representative today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. Previous retail experience is preferred, and you must have a valid Serving it Right Certificate (or be willing to get certified prior to your first day). Who we are: Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve. Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op). We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"D09CD11B18AE17ABA939910EFC52CD4F\",\n            \"cityName\": \"1035 7 Av SW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f5aba598e1261351\",\n            \"jobName\": \"Admissions Specialist Manager (Call Center)\",\n            \"companyName\": \"Cdi College\",\n            \"rowSalary\": \"$60,000–$70,000 a year\",\n            \"date\": 1694394924600,\n            \"dateOfPosted\": 1693535388195,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0696021,\n                    \"lon\": -114.2048762\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Cougar Ridge Ave SW, Calgary, AB T3H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 60000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    60000.0\n                ],\n                \"range\": {\n                    \"gte\": 60000.0,\n                    \"gt\": null,\n                    \"lte\": 60000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are happy to say that we are looking for an experienced Admissions Specialist Manager (Call Center)to join CDI College Regional team in Calgary, AB! Position Job Title: Admissions Specialist Manager (Call Center) Reports To: Associate Vice President of Admissions Hours: Regular Office Hours and flexible to some evenings as per business needs Location: On site CDI City Center, Calgary AB Job Status: Full-time, permanent, must be eligible to work in Canada Compensation: 60K - 70K annually + comprehensive benefits WHY JOIN US? For more than 50 years, CDI College has been one of the leading career training institutions in Canada, thanks to its commitment to quality education and the success of its students. Our rich history includes alumni of thousands of successful graduates who embark on careers rich in opportunity. We are happy to say that we are looking for an experienced Admissions Specialist Manager to join our team! The Admissions Specialist Manager is responsible for the day-to-day inbound and outbound call operations through developing and managing the call center team to ensure maximized operational efficiency and high customer satisfaction. This includes evaluating, implementing, and updating call center strategies, standards and procedures, technologies and resources while managing and developing a team of call center representatives. What is important to know before sending us your application :1. Full time schedule ( Monday to Friday 8 AM to 4PM ) 2. On site position - Job location : #700-1035 7 Ave SW, Calgary Alberta T2P 0K4 3. Available immediately  Job Profile Specifically, the Admissions Specialist Manager will be responsible for: Managing call center operations by establishing and implementing call center strategies, procedures and standards Managing and developing a professional customer service team by hiring, training, motivating, coaching and retaining high quality representatives Reviewing business processes and systems to identify improvements to processes, resources and new technologies Achieving monthly and annual sales targets Other related duties as assigned Specific Responsibilities The Admissions Specialist Manager will be responsible for the following, as well as other related duties as assigned to support the business objectives and purpose of the Company. 1. Managing call center operations by establishing and implementing call center strategies, procedures and standards such as: Communicate business objectives across the department and drive awareness of performance goals Developing call center systems, designing/introducing user interfaces, planning and controlling system implementations Identifying and resolving problems, monitoring and improving call center operations Creating reference materials and training programs, ensuring representatives have accurate product information and proper customer service skills Establishing customer services standards and metrics to guide performance evaluation Maintaining up-to-date knowledge of industry developments 2. Managing and developing a professional customer service team by hiring, training, motivating, coaching and retaining high quality representatives such as:  Providing team members with proper orientation, training and day-to-day guidance Planning, monitoring, and adjusting representatives’ responsibility allocation and work schedules Monitoring random calls, conducting regular performance evaluation, appraising or disciplining representatives’ performance to improve service quality Coordinating best practices to maximize employee development, training and performance; manage ongoing business changes without sacrificing performance results Answering representatives’ questions, guiding them through difficult calls, diffusing angry customers, or handling issues that cannot be fielded by representatives 3. Reviewing business processes and systems to identify improvements to processes, resources and new technologies  Overseeing system maintenance and upgrade implementation, calling for repairs and troubleshooting as needed Evaluating and implementing equipment/ technology upgrades Contacting service and equipment providers, negotiating contracts, and maintaining business relationships Maintaining professional and technical knowledge by tracking emerging trends and technologies 4. Achieving monthly and annual targets  Meeting performance targets for speed, efficiency, sales and quality Ensuring each representatives are achieving sales target and desired service levels, and taking corrective action as needed 5. Other related duties as assigned  Position Requirements To be successful in the Admissions Specialist Manager position, individuals must be committed to developing, maintaining and demonstrating the following: Education and Experience: Certificate, diploma or degree in Customer Service, Business and/or in a related field Minimum 3+ years of experience in a high-volume call center environment Minimum 1 year of experience as a Team Lead/Supervisor Previous sales experience Experience in planning and implementing complex system and processes Possess a strong understanding of key performance metrics and their associated drivers within a call center environment Knowledge of performance evaluation and customer service metrics Skills and Abilities: Ability to think strategically, implement policies, procedures and programs Excellent interpersonal skills and the ability to build and cultivate internal and external relationships with stakeholders Advanced oral and written communication skills, including presentation, group facilitation and business writing skills Strong proficiency with necessary technology, including MS Office, software applications, call center equipment, phone systems, etc. Previous experience in hiring, training, motivating and retaining a team Proven self-starter and problem solver A positive attitude and customer-focused approach Must be deadline driven and goal-oriented Comfortable with multi-tasking, managing multiple priorities and meeting several, often movable, deadlines under pressure Provisos: Willingness to be available to work days, evenings and weekends as needed\",\n            \"location\": \"Av SW, Calgary, AB\"\n        },\n        {\n            \"id\": \"E2FF3077B00FF19121995579EC297E28\",\n            \"cityName\": \"Rosser, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2377b953c6e2568a\",\n            \"jobName\": \"Customer Service Representative - Financial Services\",\n            \"companyName\": \"Calculus Financial\",\n            \"rowSalary\": \"$24 an hour\",\n            \"date\": 1694394911577,\n            \"dateOfPosted\": 1693535318638,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.9897361,\n                    \"lon\": -97.44723859999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Rosser\",\n                \"formattedAddress\": \"Rosser, MB R0H 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 14\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Rosser\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 1 year to 2 yearsExperience: 2 years to less than 3 yearsWork setting Financial management/services Willing to relocate General office Tasks Balance daily transactions Process banking transactions Promote financial products and services Store, update and retrieve financial data Answer enquiries and resolve problems or discrepancies concerning customers' accounts Answer clients' inquiries and provide information Computer and technology knowledge MS Windows MS Access MS Excel MS Outlook MS PowerPoint MS Word Work conditions and physical capabilities Attention to detail Fast-paced environment Tight deadlines Work under pressure Personal suitability Accurate Client focus Efficient interpersonal skills Flexibility Judgement Organized Team player Time management Other benefits Free parking availableWork Term: PermanentWork Language: EnglishHours: 35 to 40 hours per week\",\n            \"location\": \"Rosser, MB\"\n        },\n        {\n            \"id\": \"879EA31AF6DA5108BF0F68EE32AFCA8D\",\n            \"cityName\": \"Cranbrook, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a3149a7c5d51ad5a\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"R.C. Purdy Chocolates Ltd\",\n            \"rowSalary\": \"$16.75–$19.26 an hour\",\n            \"date\": 1694394906707,\n            \"dateOfPosted\": 1693534875453,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.5129678,\n                    \"lon\": -115.7694002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cranbrook\",\n                \"formattedAddress\": \"Cranbrook, BC V1C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"East Kootenay\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cranbrook\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: No degree, certificate or diplomaExperience: Experience an assetTasks Operate cash register Process money, cheques and credit/debit card payments Scan items Receive payment for goods or services Suggestive selling Stock shelves and clean counter area Greet customers Provide customer service Work conditions and physical capabilities Fast-paced environment Attention to detail Standing for extended periods Personal suitability Accurate Flexibility Team player Screening questions Are you currently legally able to work in Canada? Long term benefits Other benefitsWork Term: TemporaryWork Language: EnglishHours: 12 to 30 hours per week\",\n            \"location\": \"Cranbrook, BC\"\n        },\n        {\n            \"id\": \"372889E9E8B5C9DC8E15E7C5256F0A04\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=af7864d1e22c0ef4\",\n            \"jobName\": \"Agent Bilingue Du Service Clientèle / Bilingual Customer Service Agent\",\n            \"companyName\": \"Voxdata\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694394704034,\n            \"dateOfPosted\": 1693535125222,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*English version to follow* *NB : Nous n'acceptons que les candidatures provenant de la grande région de Montréal car la formation se fait à partir du bureau.* *Nous exigeons que nos candidats parlent anglais car certains de nos clients sont à l'extérieur du Québec et ne parlent que l'anglais.* Prêt à vous joindre à l'un des plus importants centres d'appels de Montréal ! VOXDATA vous attend ! Nous cherchons à agrandir notre équipe avec de nouveaux membres qui sont prêts à devenir nos prochains experts en offrant la meilleure expérience client possible ! Pour avoir une meilleure idée de notre entreprise et de nos valeurs, vous pouvez consulter notre site web ici ! https://www.voxdata.com/ Voici quelques raisons pour lesquelles il fait bon travailler chez VOXDATA : Une variété de types de postes, allant du service à la clientèle aux ventes, en passant par le soutien technique, avec des rôles uniquement en anglais ou bilingues et des options d'horaire variées - nous voulons mettre en valeur vos compétences uniques dans un poste qui vous convient le mieux !Un bureau facilement accessible et convoité au cœur du centre-ville de Montréal, et la possibilité de travailler à domicile pour nos postes hybrides !Un environnement de travail diversifié, positif et encourageant, notre objectif étant d'aider nos agents à briller et à réussir au maximum de leur potentiel !Les avantages et les bénéfices pour les employés tels que les plans de primes inclus dans nos postes, les primes supplémentaires pour les personnes les plus performantes (comme des cartes cadeaux et de l'argent supplémentaire !), les couvertures d'assurance, et les primes de recommandation des employés qui peuvent aller jusqu'à 1000 $ par personne !La possibilité d'évoluer et de développer vos compétences par le biais de réunions d'équipe, de séances de coaching individuel et d'évaluations des performances, toutes conçues pour vous aider à renforcer vos capacités et à devenir un maître dans votre travail !Des opportunités de développement interne ouvertes à tous - avec des rôles tels que chef d'équipe, coach, formateur, mentor et même des postes administratifs, nous sommes fiers de toujours nous tourner vers le personnel que nous avons déjà avec nous pour le promouvoir lorsque l'occasion se présente !Pour ce poste, vous travaillerez avec une société d'aviation bien établie. Vos tâches spécifiques seront les suivantes : Fournir un service à la clientèle de premier ordre à chaque interaction avec les clients.Répondre aux appels entrants des clients pour les aider à effectuer des réservations une fois qu'elles ont été achetées.Résoudre les problèmes liés à l'accès aux billets et à la navigation sur le site web.Répondre aux questions concernant les informations sur les billets ou aux questions générales sur les réservations.Ready to join one of the leading call centers in Montreal?! VOXDATA is waiting for you! We're looking to expand our team with new members who are ready to become our next experts in delivering the best customer experience possible! To get a better idea of our company and values, you can check out our website here! https://www.voxdata.com/ Here's a few reasons why it's great to work at VOXDATA: A variety of position types, ranging from customer service, sales, and technical support, with English-only or bilingual roles and ranging scheduling options – we want to highlight your unique skillset in a position that is best suited to you!An easily accessible and coveted office location in the heart of Downtown Montreal, and the option to work from home with our hybrid roles!A diverse, supportive, and encouraging work environment, our goal is to help our agents shine and succeed to their fullest potential!Employee benefits and perks such as bonus plans included into our positions, additional bonuses for top performers (like gift cards and extra money!), insurance coverages, and employee referral bonuses that can go up to $1000 per person!The chance to grow and develop your skills through team meetings, individual coaching sessions, and performance reviews; all designed to help you further strengthen your abilities and become a master at your job!Internal growth opportunities that are open to everyone – with roles like team leader, coach, trainer, mentor, and even administrative positions; we pride ourselves on always looking to the staff we already have with us to promote when the occasion arises!For this role, you will be working with an established aviation company. Your specific tasks will include: Providing top-tier customer service to clients in every interaction.Answering inbound calls from customers to assist with bookings/reservations after they have been purchased.Resolving issues relating to ticket access and website navigation.Answering questions regarding ticket information, or general questions about bookings/reservations.Requirements Qu'est-ce qui fait de quelqu'un un excellent candidat ? Nous recherchons des personnes qui : Peut travailler 40 heures par semaine pendant les heures d'ouverture de la campagne : Du lundi au dimanche, de 7 heures à 7 heures (ouvert 24 heures sur 24) ; nous préférons les candidats disponibles le soir, la nuit et le week-end. Sont bilingues en français et en anglais.Ont déjà travaillé dans le service à la clientèle, les ventes ou les centres d'appels, ou ont une expérience traduisible dans d'autres secteurs.Vous pouvez apprendre à utiliser et à faire fonctionner plusieurs programmes informatiques avec facilité.Être disponible pour travailler le soir et le week-end si la campagne est opérationnelle pendant ces périodes.Avoir obtenu un diplôme de fin d'études secondaires ou un diplôme équivalent.Se considèrent comme des personnes capables de résoudre des problèmes, de s'adapter à des situations changeantes et sont motivées pour être les meilleures des meilleures !What do we think makes someone a great candidate?! We're looking for people who: Can work 40 hours/week anytime through the campaign operation hours: Monday to Sunday, from 7 AM to 7 AM (open 24 hours/day); we prefer candidates with evening, overnight, and weekend availability. Are bilingual in French and English.Have worked in customer service, sales, or call centers before; or have translatable experience from other industries.Can learn how to use and operate multiple computer programs with ease.Have graduated high school or have an equivalent diploma.Consider themselves to be problem-solvers, adaptable to changing situations and are motivated to be the best of the best!Benefits Soumettez votre candidature dès maintenant pour lancer le processus d'embauche et voyez par vous-même pourquoi il est formidable d'être un agent VOXDATA !Ce poste est assorti d'un salaire de base de 17,00 $/heure. Submit an application now to get the hiring process started and see for yourself why its great to be a VOXDATA agent! *This position has a base salary of $17.00/hour.*\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"0A74B665098DF351560DB3CDA9EC0C02\",\n            \"cityName\": \"3080 Boulevard Le Carrefour, Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=047f0ee173475799\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Aim Kenny U-Pull\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694394032697,\n            \"dateOfPosted\": 1693534887959,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.565253,\n                    \"lon\": -73.7539157\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Boul. le Carrefour, Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Company Description  Kenny U-Pull is a fast growing company based in the Province of Quebec that contributes to the protection of the Environment by giving a second life to used vehicules. Our 28 canadian sites, in which more than 400 employees are working, have already recycled over a million of them… and it’s not over! If you like to work with people and are looking for a stimulating work environment full of opportunities, get on board: we promise you a fulfilling journey! Job Description  We are looking for a Customer Service Agent (CSA) for Kenny U-Pull’s Call Center, located in front of the Carrefour Laval. Reporting to the Call Center Supervisor, you will play the crucial role of ambassador for our trademark, and you will be responsible to create, for every client you will interact with, an outstanding personalized experience. More specifically, your daily tasks will be: Answering calls and general inquiries of clients who would like to have information on our stocks, prices and mode of operation; Taking the time to understand the specific needs of each client and propose personalized solutions; Inform the clients on our various products (batteries, tires, etc.) and services; Guide the clients in the utilization of our website; Promote in-person visits to our several branches; Register the clients to our personalized email system « Alert-Me »; Any other task related to the role. Qualifications  Minimum 1 year of experience in customer service Work experience in a call center (asset) Excellent interpersonal communication Ability to work in a team Ability to work under pressure Ability to follow the procedures rigorously Reliability, assiduity and punctuality Interest in the automotive industry Knowledge in automobiles (asset) Functional Bilinguism required to answer the French and English calls coming from everywhere in Canada Additional Information  Your benefits: Salary starting from 18 $ by hour Retention bonus (1 year) of 1 000 $ Comprehensive Collective Insurance Plan Collective RRSP with contribution of the company Employee Assistance Program (free) Exclusive discounts on our parts and cars Complete paid training provided on site Collective transportation accessible, free parking Exceptionnal advancement opportunities Fantastic culture, work atmosphere and team!!!\",\n            \"location\": \"Boulevard Le Carrefour, Laval, QC\"\n        },\n        {\n            \"id\": \"D71C7D0F2537C9ACC064506DDA50F02E\",\n            \"cityName\": \"Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a814d0f20eee151e\",\n            \"jobName\": \"Customer Service Representative (1-Year Contract)\",\n            \"companyName\": \"Horizon Grocery + Wellness\",\n            \"rowSalary\": \"$24.02 an hour\",\n            \"date\": 1694393370002,\n            \"dateOfPosted\": 1693530778651,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2488091,\n                    \"lon\": -122.9805104\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Burnaby, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 25.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    25.0\n                ],\n                \"range\": {\n                    \"gte\": 25.0,\n                    \"gt\": null,\n                    \"lte\": 25.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"JOB SUMMARY: Our Customer Service Representatives provide excellent customer service both internally and externally. They process customer orders through our web portal, over the phone, by fax, and by email, which requires accurate data entry and following detailed procedures. Additionally, they provide product information, promote sales, handle customer questions and challenges, and invoice orders. Strong people skills and written/verbal communication skills are required, as this position involves intensive customer contact, mainly by email/phone. The primary focus will be on customer service regarding our organic and natural grocery and wellness products.  MAIN RESPONSIBILITIES: Customer service: Phone calls and call backs are the number one priority Manage email correspondence and provide excellent follow–up for customer inquiries Represent Horizon in a friendly, professional, and helpful manner to all customers over the telephone and in written email correspondence Help familiarize new customers with our products, policies, and procedures Report details for any invoicing errors or account discrepancies that may arise to the claims department Order entry: Enter orders from all sources – web, handheld, phone, fax, email Confirm details (such as ship date, prepay customers-notifying A/R, ship to addresses, co-ship and order minimums) Knowledge of our product line and of how to access the information pertaining to it, including ingredients, stock level, expected arrival time of out-of-stock items, and popularity of items Review emails and reports regarding recently added, deleted, and clearance items to ensure customers have up-to-date information Review and understand monthly special sheets and volume discounts on specific products Knowledge of shipping companies' areas of service, schedules, and rates to facilitate safe, speedy, and cost-efficient delivery of goods to customers WORKING CONDITIONS: This is a one-year contract, full-time status, (Mon-Fri) based out of our Burnaby office. After one year there may be an opportunity to transition to a permanent position. The rate of pay is $24.02/hour.  QUALIFICATIONS + EXPECTATIONS:  Minimum of 2-years previous order-desk experience in a high volume, fast-paced environment Familiarity with office procedures and accurate data entry Strong computer skills - experience with MS365 and CRM or ERP Excellent verbal and written communications skills, and a polite and positive telephone presence Knowledge of basic “soft” sales techniques (offering substitutions for items that are out of stock or discontinued, and reminders of new or ongoing special deals, where appropriate), and ability to listen to and assess customers' needs and recommend products that would fulfill those needs Ability to remain calm and helpful when a customer is upset A passion for customer service and problem solving Ability to work autonomously and with the team without direct supervision or monitoring Strong sense of self-responsibility and self-awareness Knowledge and interest in the organic and natural industry is an asset SOME OF OUR PERKS AND BENEFITS: Focus on Wellness Extended Medical + Dental (company-paid premiums) EFAP immediately upon hire Paid sick time, including dependent sick time for those with children (up to 13 days per year) Fitness Subsidy Discounted grocery and wellness products and lunch program On-site gym Dog friendly office Scent-free environment Focus on our Community Partnerships with Quest Food Exchange and The Downtown Eastside Women’s Centre Paid volunteer hours Focus on the Environment Transit Subsidy – up to 100% Cycling Subsidy Indoor bike lock up area Recycling + Composting Program Partnerships with Urban Impact and Alvéole, an urban beekeeping company SUBMISSION DEADLINE:September 15, 2023 If you, or anyone you know, is interested, please send a resume with cover letter to: hr@horizondistributors.com(please note on subject line: “CSR Sep 2023”). Horizon is an equal opportunity employer valuing diversity in the workplace. All qualified applicants will receive consideration for employment without regard to race, ancestry, colour, place of origin, gender, gender identity, age, religion, disability, family status, sexual orientation, or any other status or characteristic protected by law. If you require assistance or a reasonable accommodation in any aspect of the application process, please contact the People + Culture department. Note: We thank everyone for their interest but only those advancing to the next stage of the recruitment process will be contacted. Only Lower Mainland candidates considered.About Horizon Grocery + Wellness:Horizon Grocery + Wellness is a leading distributor of organic and natural foods, household products, supplements, and natural personal care items, servicing thousands of locations across Western Canada. We thrive as a market leader via effective partnerships and primary relationships with our valued retailers and suppliers. We are a privately owned, 100% Canadian company with a 150,000 square foot Grocery facility and a 40,000 square foot Wellness facility located in south Burnaby, BC. Horizon Grocery + Wellness is the cornerstone of the Horizon Group, a privately held, Canadian-owned group of companies with distribution facilities servicing over 6000 customers across Canada.\",\n            \"location\": \"Burnaby, BC\"\n        },\n        {\n            \"id\": \"BBCF4B2A93A45FF84E2E2EBB653EA3BE\",\n            \"cityName\": \"The ups store in Dollard-Des Ormeaux, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b416e0189ffc54f2\",\n            \"jobName\": \"Store Associate/Customer Service\",\n            \"companyName\": \"The Ups Store\",\n            \"rowSalary\": \"$14.50–$16.50 an hour\",\n            \"date\": 1694391421699,\n            \"dateOfPosted\": 1665475500070,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4895636,\n                    \"lon\": -73.8205567\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dollard-Des Ormeaux\",\n                \"formattedAddress\": \"Dollard-Des Ormeaux, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dollard-Des Ormeaux\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a hard working individual who has great customer service, positive attitude and a willingness to learn.Deliver exceptional customer service to build trust and provide convenience to the customer.Responsibilities: - Provide knowledgeable business solutions including packaging, shipping and printing- Receive and distribute parcels to mailbox holders and other recipients- Operate store equipment such as Printer/Scanner, Fax machine and more- Utilize computer software to present customer with shipping options and be able to manage outlook emails- Following and understanding standard packaging guidelines; accurately asses materials for shipping- Engage with clients in a friendly and professional manner while listening to their concernsQualifications:- Computer skills (Microsoft Office Apps and others)- Customer Service with strong verbal/written skills- Good sense of multi task- Organize and maintain organized environment- Language : Fluent verbally and written in English and French | (bilingual)Job Types: Full-time, Part-time, PermanentPart-time hours: 25-40 per weekSalary: $14.50-$16.50 per hourBenefits:On-site parkingPaid time offStore discountSchedule:8 hour shiftMonday to FridayOvertimeSupplemental pay types:Overtime pay\",\n            \"location\": \"Dollard-Des Ormeaux, QC\"\n        },\n        {\n            \"id\": \"4AEB2449D48AD2220C1B264E2D2773C2\",\n            \"cityName\": \"Renfrew, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1416564c231b24cb\",\n            \"jobName\": \"Clerk, Customer Service\",\n            \"companyName\": \"George Jackson Toyota\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694391346136,\n            \"dateOfPosted\": 1692668759600,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4749199,\n                    \"lon\": -76.6877186\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Renfrew\",\n                \"formattedAddress\": \"Renfrew, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Renfrew County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Renfrew\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 3 months to less than 1 yearExperience: 1 year to less than 2 yearsor equivalent experience Work setting Business sector Tasks Access and process information Answer inquiries and provide information to customers Perform general office duties Computer and technology knowledge Database software Internet Security and safety Driver's validity licence check Driving record check (abstract) Transportation/travel information Valid driver's licence Work conditions and physical capabilities Attention to detail Fast-paced environment Tight deadlines Work under pressure Personal suitability Punctuality Client focus Organized Reliability Team player Screening questions Are you currently legally able to work in Canada? Do you have previous experience in this field of employment? Health benefits Dental plan Health care plan Long term benefits Group insurance benefits Life insuranceWork Term: PermanentWork Language: EnglishHours: 37.5 to 44 hours per week\",\n            \"location\": \"Renfrew, ON\"\n        },\n        {\n            \"id\": \"A953E6F6168665279A4243FBE8070DAB\",\n            \"cityName\": \"1 Warman Rd, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2bfc21755dd9a506\",\n            \"jobName\": \"Customer Service Specialist - 1 Warman Road\",\n            \"companyName\": \"Future Transfer Co. Inc.\",\n            \"rowSalary\": \"$22–$25 an hour\",\n            \"date\": 1694390420054,\n            \"dateOfPosted\": 1694390419872,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8908479,\n                    \"lon\": -97.07216249999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Warman Rd, Winnipeg, MB R2J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service SpecialistLocation: 1 Warman Road, Winnipeg, MBOur People Can Tell the Future. Maybe You Can Too.Who are we?We are a warehousing and transfer company that brings pride and excellence to the market every day. We bring innovation that’s authentic and measurable as well as bringing leadership to community priorities in equal unison with our corporate priorities. We recognize our core strength is ingenuity, which is a human resource that renews through encouragement and development. We are twenty-first century accomplishment leaders; inside, safety side and market side.ISO certified; Future Transfer is an essential network of specialist services for an agriculture sector with sophisticated challenges. Strategic national warehousing, next level logistics, tolerance specific custom formulation, packaging, transloading, and a fully inclusive company-wide think-tank of empowered solution achievers.Future Transfer is a growing story; join us and tell your part.Why work for us?Competitive wagesPremium health benefitsPremium RRSP & matched contributions planEmployee Assistance ProgramCompany supplied uniforms, PPE & safety shoesPaid vacationCompany lunchesCompany promotional items throughout the yearShort term disability and long-term disabilityContinued growth and development of our people & our businessWho are we searching for?We are looking for a Customer Service Specialist to join our growing Future Transfer team.Job Duties:Create and maintain strong relationship with customersEnter all production, transfers, and bulk receipts into appropriate computer systems and spreadsheets as required by customersField customer orders, inquiries, and serviceHelp manage warehouse inventory through customer demandMaintain accuracy of records through daily, weekly and monthly reportingPerform clerical duties, such as filing, record keeping and schedulingAssist in solving inventory, delivery, and order discrepanciesMaintain up to date customer filesCreate Bills of Lading and prepare required shipping documentationAssist in warehouse operations, when requiredProviding the appropriate paperwork to customersOther related duties as required or assignedRequired Knowledge:Strong computer skills and ability to operate within Microsoft Office suite of products, and other computer systemsStrong attention to detailProven ability to manage multiple tasks and tight timelines in a professional mannerEffective communication skills to interact with external customers and individuals at all levels of the organizationAble to work efficiently as part of the team as well as independentlyAbility to use general office equipmentStrong work ethic and positive team attitudeRelated manufacturing/industrial customer service/shipping/receiving work experience of 3 – 5 years requiredWorking Conditions:Manual dexterity required to use desktop computer and peripheralsOvertime as requiredLong periods of sitting, some standingVariable environment as may be required to spend time in the warehouse when resolving issuesSafety is our priority, both the starting point and foundation for all aspects of our business operations. Safe transport and storage of products, safe operational practices and safe working conditions enable us to protect our employees, customers, suppliers, and the environment.To read more about our successes and what we do, please visit: www.futuretransfer.comWe thank you for your interest in careers at Future Transfer.Click apply to submit your resume!Job Types: Full-time, PermanentSalary: $22.00-$25.00 per hourBenefits:Dental careDisability insuranceEmployee assistance programExtended health careLife insurancePaid time offRRSP matchVision careSchedule:Day shiftSupplemental pay types:Overtime payExperience:manufacturing customer service/shipping/receiving: 3 years (required)Work Location: In person\",\n            \"location\": \"Warman Rd, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"EEC09322B0639306A706C579388CEBEB\",\n            \"cityName\": \"1547 Merivale Road, Nepean, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d98d3a28b9d8384d\",\n            \"jobName\": \"Inbound Customer Service Representative (Bilingual Required)\",\n            \"companyName\": \"Costco Wholesale Canada\",\n            \"rowSalary\": \"From $18.50 an hour\",\n            \"date\": 1694390167986,\n            \"dateOfPosted\": 1693531126246,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.3403612,\n                    \"lon\": -75.72727069999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Merivale Rd, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Costco Wholesale, we’re dedicated to providing our members with the highest level of customer service. We are looking to add dynamic and personable individuals to our growing team of inbound contact centre agents.Look forward to:A fun, fast-paced environmentThe opportunity to help others by offering excellent member serviceContinued coaching/training to help you reach goalsPersonalized mentorshipWe’re looking for candidates who are:Customer-service minded – Contact centre agents are our members’ first point of contact.Flexible – Scheduling to cover our hours of operation and changing priorities.Tech-savvy – We use a variety of computer applications and resources to research each member’s inquiry. Proficiency in online ordering, Gmail and Google Drive are assets.Patient – Our members deserve the best service.Organized – To determine the best solution.Able to communicate effectively – Active listening is key and written responses must be clear.Daily tasks:Responds to member inquiries in a courteous and professional manner by phone and email for Costco.ca deliveries. Helps members with online ordering through the website as required. Areas of inquiry include website navigation, order placement and delivery follow-up.Keys notes to computer membership record to document action or conversation. Keys notes to phone system log to classify call resolution.Operates as a liaison between members, vendors, buying and operations employees.Responds to member concerns using problem-solving skills, tact and discretion.Escalates calls to supervisor.Processes a high volume of emails and incoming phone calls.Meets department daily in-bound contact goals.Confirms member addresses, phone numbers, items purchased and quantities.Maintains the quality and consistency of written and oral communications.Languages:Candidates must be able to communicate in English (oral and written).Bilingualism is required.Job Types: Part-time, SeasonalContract length: 6 monthsPart-time hours: 0-40 per weekSalary: From $18.50 per hourBenefits:Casual dressDental careEmployee assistance programExtended health careLife insuranceOn-site parkingPaid time offRRSP matchSchedule:Day shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payAbility to commute/relocate:Nepean, ON K2G 4V3: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Language:Fluent English and French (required)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Merivale Road, Ottawa, ON\"\n        },\n        {\n            \"id\": \"63714B54BA6541A8D90079F72D3CC5F3\",\n            \"cityName\": \"3045 Baseline Road, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fce2a438d0e9bf2f\",\n            \"jobName\": \"Call Center Agent - Part-Time\",\n            \"companyName\": \"Queensway Carleton Hospital\",\n            \"rowSalary\": \"$24.18 an hour\",\n            \"date\": 1694390135913,\n            \"dateOfPosted\": 1693545766378,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.3530553,\n                    \"lon\": -75.7594363\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Baseline Rd, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 25.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    25.0\n                ],\n                \"range\": {\n                    \"gte\": 25.0,\n                    \"gt\": null,\n                    \"lte\": 25.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"General Posting InformationPOSITION: Call Centre Agent DEPARTMENT: Call Centre CONDITIONS: Part-time (0.40 FTE) HOURS: Approximately 30.0 Bi-weekly Hours SHIFTS: Days / Evenings / Nights / Weekends  7.5. hours & 11.25 hours per shift (subject to change) WAGE RANGE: Scale Minimum Maximum  NONU $24.18/hr $29.01/hr RESPONSIBILITIES:Answering and redirecting telephone calls and visitors at the main reception counterOperating ancillary communication systems in order to process emergency codesRespondig to all alarma and contacting the appropriate parties in case of emergencyPerforming clerical duties including but not limited to: preparing envelopes, updating Critical, keeping an updated tracking list of loaner pagersPaging staff and physicians and maintaining accurate paging logsProcessing all emergency code proceduresDemonstrate QCH values, collaboration, accountability, innovation, respect Please note: The 24 hour per day operation is divided into shifts and is of \\\"constantly interrupted\\\" nature, ofter requiring working long periods in a seated position. REQUIREMENTS:Grade 12 education6 months experience using a swtichboardKnowledge of medical terminologyWorking knowledge of MS Word, Excel, Microsoft Outlook and MeditechMust be familiar with all Hosptial Policies and Procedures and be capable of handling all phases of Hospital communcationsAbility to deal calmly with emergency situationsExcellent interpersonal skills to be able to communicate effectively in both oral and written format with Call Centre Staff, Hospital Staff, physicians, nursing and paramedical staff on matters relating to Call CentrePlease note that according to the Ontario Health and Queensway Carleton Hospital Vaccination Policy, all applicants must be fully vaccinated unless they can provide the proof of a valid medical contraindication or exemption on the basis of protected grounds under the Ontario Human Rights Code in order to be considered for any staff or volunteer opportunities. Upon hiring, applicants must provide the proof of either government issued documentation proving they have been fully vaccinated, or present supporting documentation of a valid medical contraindication or exemption under Ontario Human Rights Code.Thank you for your continued interest in Queensway Carleton Hospital. We deeply value and celebrate the principles of equity, diversity, inclusion, and belonging, as they are integral to the enrichment of our work environment. We believe that by fostering an inclusive and diverse community, we can achieve our mission of providing exceptional healthcare services to all individuals with compassion and respect. We encourage applicants from all backgrounds to apply. We welcome those who would contribute to the further diversification of our organization including, but not limited to women, racial or ethnic minorities, First Nations, Inuit, and Métis peoples, persons with Disabilities, and 2SLGBTQI+ communities. At Queensway Carleton Hospital, we are committed to ensuring accessibility and accommodating the needs of all candidates throughout the entire selection process. Our dedicated recruitment team is readily available to assist individuals with any inquiries or concerns regarding accessibility and accommodations at any stage of our recruitment process. We invite you to reach out and let us know how we can best support you. We look forward to welcoming diverse talent into our team and continuing to make a positive impact in the lives of our patients and the communities we serve.\",\n            \"location\": \"Baseline Rd, Ottawa, ON\"\n        },\n        {\n            \"id\": \"603B86F50F4D5D464D9E5DD7D9F9B3BA\",\n            \"cityName\": \"26557 Civic Centre Rd, Keswick, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e99469ec3464b6c1\",\n            \"jobName\": \"Roc Customer Service Representative\",\n            \"companyName\": \"Town Of Georgina\",\n            \"rowSalary\": \"$16.55 an hour\",\n            \"date\": 1694390124359,\n            \"dateOfPosted\": 1693545758533,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2985236,\n                    \"lon\": -79.4389406\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Georgina\",\n                \"formattedAddress\": \"Civic Centre Rd, Georgina, ON L0E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Georgina\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ROC Customer Service Representative (Posting #2023.99S) Department: Community Services Division: Recreation Services Location: The ROC Status: Seasonal (December 4, 2023 – April 5, 2024) Hours of Work: 4 – 25 hours per week (4 – 8 hours per day) Number of Positions: 5 – 10 Hourly Wage: $16.55 per hour Training Rate: $16.55 per hour Date Posted: August 15, 2023 Date Closing: October 15, 2023 Come work with us! Employment with the Town of Georgina offers an opportunity to make a positive difference in our community. We are a progressive, forward-thinking organization focused on continuous improvement, innovation and providing exceptional customer service. We offer a collaborative team environment and an excellent place to take charge of your career.Position Purpose Responsible for ticket sales, rentals, cash handling and customer service. For full details, please see attached job description.Minimum QualificationsKnowledge of all ticketing and sales options;Excellent customer service skills to deal effectively with the general public;Strong organizational skills;Responsible, courteous, good communication skills;Effective conflict resolution, problem solving and critical thinking skills; For full details, please see attached job description How to apply Qualified applicants are invited to submit a resume and cover letter, identifying the Job Title and Job ID#. Please apply by visiting the www.georgina.ca/careers no later than 11:59 pm on the closing date. The assessment process may include a practical test and/or interview. Committed to diversity and a barrier-free environment The Town of Georgina is an equal opportunity employer committed to inclusive, barrier-free recruitment and selection processes and work environments. We encourage applications from people with disabilities and will accommodate the needs of applicants under the Ontario Human Rights Code and the Accessibility for Ontarians with Disabilities Act (AODA) throughout all stages of the recruitment and selection process. Please advise the Human Resources Team if you require an accommodation(s) and we will work with you to meet your needs throughout any stage of the process. Please be advised that this information will be treated in a confidential manner. We thank all candidates for their interest, however only those being considered will be contacted. Personal information collected will be used in accordance with the Municipal Freedom of Information and Protection of Privacy Act for the purpose of candidate selection. Further information concerning the collection of personal information should be directed to the Human Resources Manager, Town of Georgina, 26557 Civic Centre Road, Keswick, ON L4P 3G1 (905) 476-4301 JOB DESCRIPTION Title: ROC Customer Service Representative Position #: SE6 Department: Community Services Division: Recreation Services Reports To: Recreation Services Supervisor Direct Reports: None Date Created: September 12, 2011 Date Amended: August 10, 2023 Employee Group: Seasonal Position Summary Responsible for ticket sales, rentals, cash handling and customer service. ResponsibilitiesDemonstrates a high level of customer service and provides this service on the front-line of operation and does so in an efficient, courteous and respectful manner;Daily operation of the ticketing office, including lift ticket, season pass, lesson and helmet rental sales & inquires;Supports guests with proper helmet fittings and ensures that all helmets are returned and inspected for future use.the accurate completion of liability waiver, helmet and locker rental forms as well as securing and returning of security/damage deposit;Processes all point of sale purchases, and handles cash, credit and debit transactions in an accurate manner and balances daily sales to align with computer reports;Follows all specified cash handling procedures including; float reporting, cash reconciliation, and cash depositing.Answers all in person and telephone inquiries and responds to voicemails in a timely manner;Assists with cafeteria attendant duties as required (see ROC Cafeteria Attendant job description for further details);Participate in the Town’s Health and Safety Program and follow safety practices in work methods and procedures; observes and complies with all relevant Health & Safety regulations.Immediately report all, concerns, suspicious occurrences and hazardous conditions to the Recreation Services Supervisor or designate. The above statements reflect the general details considered necessary to describe the principal functions and duties of the position and will not be construed as a detailed job description of the work requirements that may be inherent in the job. Skill/Knowledge RequirementsKnowledge of all ticketing and sales options;Experience working in a recreational and/or customer service setting considered an asset;Knowledge of the ActiveNET and Fareharbor software systems considered an asset;Responsible, courteous, good communication skills;Ability to work independently without close supervision;Effective conflict resolution, problem solving and critical thinking skills;Excellent customer service skills to deal effectively with the general public;Must be available to work flexible hours including daytime, evenings, weekends and holidays;Previous cash handling experience with accurate cash handling skills;Strong organizational skills;\",\n            \"location\": \"Civic Centre Rd, Georgina, ON\"\n        },\n        {\n            \"id\": \"1C302E2B5A6A0FFE7C93BB56F272CE5D\",\n            \"cityName\": \"19 Norm Newman Dr, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1428735f380e16cd\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Russell Lake Animal Hospital\",\n            \"rowSalary\": \"From $23.50 an hour\",\n            \"date\": 1694387711601,\n            \"dateOfPosted\": 1694387710776,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6696568,\n                    \"lon\": -63.5283615\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Norm Newman Dr, Dartmouth, NS B2W, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"As a privately owned hospital, we strongly believe in investing in our employees. We provide opportunities for professional growth and ensure that their whole wellbeing is taken care of by offering a living wage and benefits.Who are we looking for?We are looking for someone that is outgoing and has strong client relations skills. Someone who is committed to excellence in their work habits, in pursuing knowledge and education and that is motivated to help us grow our hospital.Qualifications:– Customer Service: 2+ year (required)– Veterinary Medicine Experience: 2+ years (preferred)– Administrative Experience: 2+ year (preferred)– Experience and LSHR silver certification are an asset but not required.– Education or experience in related fields is also considered an asset.– A positive attitude, the ability to stay calm, and critical thinking skills are required.What does a Client Service Representative do?Our Client Care Reps are the face of our hospital as they are the first point and last point of contact for our clients. Their role is vital to the success of our hospital as they set the tone for client interactions and conversations.– Answer phone calls– Schedule appointments– Process payment– File documents electronically– Stock shelves– Additional administrative & housekeeping dutiesWhat we offer:– Continuing Education opportunities in Hospital and outside– Uniform Shirts– 2 Weeks Paid Vacation– Staff Discounts– Health BenefitsStart Date: ASAPApplications without a cover letter or that do not complete the skills tests will not be considered.Job Types: Full-time, PermanentSalary: From $23.50 per hourBenefits:Dental careExtended health carePaid time offVision careCOVID-19 considerations:We require staff to be vaccinated for Covid-19.Our Covid Protocols can be found here: https://russelllakevet.com/covid-19-protocols/Ability to commute/relocate:Dartmouth, NS: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 3 years (required)Veterinary Medicine: 2 years (preferred)Administrative: 2 years (preferred)Work Location: In person\",\n            \"location\": \"Norm Newman Dr, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"C6D43F1FFB85D332A5798D513FE15557\",\n            \"cityName\": \"404 May St N, Thunder Bay, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0b00c7cab4b9eb4f\",\n            \"jobName\": \"Customer Service/Back Room Associate (Part-Time)\",\n            \"companyName\": \"Community Clothing Assistance\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694387708823,\n            \"dateOfPosted\": 1690387858486,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.39201449999999,\n                    \"lon\": -89.2455198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Thunder Bay\",\n                \"formattedAddress\": \"May St N, Thunder Bay, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Thunder Bay District\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Thunder Bay\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Part-Time leading to Full-Time Opportunity: Community Clothing Assistance is looking for a Customer Service Associate. Successful candidates will have previous transferable experience. Experience dealing with the public, conflict resolution, taking initiative, and problem-solving would be considered assets as well.Do you value integrity and teamwork? Are you willing to grow with a local charity? We welcome qualified candidates to submit their applications to this advertisement.Application Deadline: As soon as possibleOPEN TO THE PUBLICLocation: 404 N May StreetThunder Bay, ON P7C 3R5Hours: Monday - Friday 11 am to 5 pmSaturday 12 pm to 5 pmSunday ClosedPhone: 474 - 3583Website: https://clothingassistance.com/main_website/#thunderbaynowhiring#jobsthunderbay#thunderbaychairty#communityclothingassistance#thunderbaysmallbusiness#thunderbay#thunderbaybusiness#wearehiringJob Type: Part-timeSalary: From $15.50 per hourSchedule:8 hour shiftDay shiftMonday to FridayWork Location: In person\",\n            \"location\": \"May St N, Thunder Bay, ON\"\n        },\n        {\n            \"id\": \"532A5406154F8F40D3FE7D80823FA386\",\n            \"cityName\": \"101-11920 100 St, Grande Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4d503cdf925b03db\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Bullets & Broadheads Shooting Center\",\n            \"rowSalary\": \"$15–$20 an hour\",\n            \"date\": 1694386317612,\n            \"dateOfPosted\": 1694386317446,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.1745974,\n                    \"lon\": -118.8025315\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grande Prairie\",\n                \"formattedAddress\": \"10404 102 St, Grande Prairie, AB T8V 2W3, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grande Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our customer service role involves providing assistance, support, and guidance to customers seeking firearms, ammunition, archery, and related accessories. The primary objective of this role is to ensure that customers have a positive and safe experience while adhering to all relevant laws and regulations surrounding firearms sales.Key responsibilities of a customer service representative in a gun shop will include:Product Knowledge: Acquiring a comprehensive understanding of the various firearms, ammunition, and accessories available for sale. This includes being up-to-date on the latest models, features, and safety measures.Customer Assistance: Engaging with customers in a friendly and approachable manner, answering their questions, and helping them find products that best suit their needs and preferences.Safety Education: Emphasizing the importance of firearm safety and responsible ownership to customers, including proper storage, handling, and use.Compliance: Ensuring strict adherence to all federal, provincial, and local laws and regulations governing the sale of firearms. This includes conducting background checks and verifying customers' eligibility to purchase firearms.Sales and Transactions: Assisting customers with the purchasing process, guiding them through the necessary paperwork, and ensuring all required documentation is completed accurately.Range Services: If the gun shop has an associated shooting range, customer service representatives may provide information on range memberships, scheduling shooting sessions, and offering basic shooting tips.Troubleshooting: Addressing any issues or concerns customers may have with their purchased firearms or accessories and assisting them with resolving problems.Inventory Management: Keeping track of stock levels, ensuring products are properly displayed, and reordering merchandise as needed.Customer Relations: Building strong relationships with customers, fostering a welcoming and inclusive atmosphere in the store, and addressing any customer feedback or complaints.Continuous Learning: Staying informed about industry trends, attending training sessions, and participating in professional development opportunities to enhance product knowledge and customer service skills.In this role, exceptional interpersonal skills, knowledge of firearms, and strict adherence to safety and legal regulations are essential to providing excellent customer service while promoting responsible firearm ownership.Job Type: Full-timeSalary: $15.00-$20.00 per hourBenefits:Casual dressCompany eventsDental careExtended health careFlexible scheduleLife insuranceOn-site parkingStore discountFlexible Language Requirement:French not requiredSchedule:Monday to FridayWeekends as neededAbility to commute/relocate:Grande Prairie, AB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Licence/Certification:RPAL (preferred)Shift availability:Day Shift (preferred)Work Location: In personApplication deadline: 2023-09-17Expected start date: 2023-09-20\",\n            \"location\": \"St, Grande Prairie, AB\"\n        },\n        {\n            \"id\": \"D62E0816C0CF1F7D6C259A38D41B38CB\",\n            \"cityName\": \"3812 7 St SE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ae348ab8fefb77cf\",\n            \"jobName\": \"Customer Service Labour\",\n            \"companyName\": \"1-800-Got-Junk?\",\n            \"rowSalary\": \"$22–$24 an hour\",\n            \"date\": 1694386127584,\n            \"dateOfPosted\": 1694386127420,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.96843759999999,\n                    \"lon\": -113.9758168\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"40 St SE, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ZAG Community of Businesses is the parent company to seven 1-800-GOT-JUNK? franchises across North America, headquartered in Calgary, AB.Hiring Immediately! Apply today and start this or next week.1-800-GOT-JUNK?, our motto is “Want More, Work Happy”. We hire happy people that enjoy our awesome team environment, like the variety of the work we do, and are excited to grow their skills to become more. We offer what very few companies can.Truck Team Members - Driver, Labor, & Customer ServiceHiring immediately for: Full-Time & Part-Time (weekday & weekend shifts available)Pay: $17/hr base + tips + bonuses (avg $22 - $24/hr all in with base pay, tips, bonuses, and other incentives).Availability: Part-Time & Full-Time (employees choice) We operate Mon-Sun starting at 7:30am. For Full-Time, we offer 4 days on, 3 days offLocation: Office based in Calgary - SE. Our trucks are available for pickup city-wide!We're a fun and fast-paced operation that helps people in our community get rid of unwanted items, responsibly. And, we do it like no one else with our professional, on-time service, clean shiny trucks and friendly uniformed team.With 1-800-GOT-JUNK? each day is different. Here’s what you’ll be doing:Alongside another Truck Team Member, you'll operate the company vehicle (no special driver's license required) on assigned service routes for the dayProviding excellent customer service when you're onsite to remove the items or give them an estimate that they've requested and educating them on our servicesRetrieving, transportation, and disposal of unwanted items, responsiblyQualifications & Requirements:You’re 19+ years of age (required for insurance purposes)You have a great attitude, are reliable, and hardworkingA valid full class 5 driver’s license & good driving recordPhysically able to lift/carry 50 pounds repeatedly over a full shiftPrevious experience in general labor, customer service, driving, and/or sales is a plus, but isn’t required - we train happy, hardworking individuals.Successful applicants will hear from us within 2 business days. We conduct onsite or remote interviews at your earliest convenience and extend job offers within 24-hours of successful interviews. Apply today - we move fast with great people!Thank you for your interest in 1-800-GOT-JUNK?\",\n            \"location\": \"St SE, Calgary, AB\"\n        },\n        {\n            \"id\": \"09F41E9301C4D806BA4DEB68DE1E2140\",\n            \"cityName\": \"Outpost Mini Donut Company in Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d6a9093a4ac2d41d\",\n            \"jobName\": \"Customer Service RepresentAtive/Team Member At Outpost Mini Donut Company\",\n            \"companyName\": \"Outpost Mini Donut Company\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694386100718,\n            \"dateOfPosted\": 1686882458872,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1665898,\n                    \"lon\": -123.133569\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Richmond, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for an enthusiastic and energetic part-time team member to join us. If you have proven customer service experience and are interested in working in a fun and relaxed setting, we would like to hear from you. The position works well for a post-secondary or high school student looking for part-time hours.Outpost Mini Donut Company is an independently owned mini donut shop located in Steveston, BC. The shop benefits from walk through traffic, corporate and personal orders, and is a go-to destination for gourmet mini donuts.The ideal candidate must be able to work in a fast paced environment and provide exceptional customer service. You will be required to work both independently and in a team environment operating all facets of the store, including but not limited to:-opening/closing of the store (independently)-operating mini donut machine and decorating donuts-operating POS system-serving customers with exceptional customer service-cleaning of shopAs the workflow can be fast paced, you must be able to multi-task and prioritize your duties, at times by yourself.Applicants can except onsite training as well as a flexible work schedule. The schedule is prepared weeks in advance and set work days are often assigned depending on availability.Preference will be given to local Richmond/Steveston residents who are familiar with the area and local businesses. Previous customer service experience in the food industry is also an asset.Please provide your weekday availability when applying. At the moment, we are only looking for applicants that will continue to have availability into the next school year. Thank you!Job Type: Part-timePart-time hours: 10-12 per weekSalary: $16.75 per hourBenefits:Casual dressSchedule:Day shiftMonday to FridayWeekend availabilitySupplemental pay types:TipsApplication question(s):Please describe your previous work experience as it relates to this job.Are you located in Richmond/Steveston?What is your availability this summer and fall/winter season?Work Location: In person\",\n            \"location\": \"Richmond, BC\"\n        },\n        {\n            \"id\": \"D364365BB0021601460E345DAE467844\",\n            \"cityName\": \"REPUBLIC PACKAGING CORP in Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4e78eb96a3622f84\",\n            \"jobName\": \"Customer Service Representative Ii\",\n            \"companyName\": \"Republic Packaging Corp\",\n            \"rowSalary\": \"From $60,000 a year\",\n            \"date\": 1694386028312,\n            \"dateOfPosted\": 1694386028109,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 60000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    60000.0\n                ],\n                \"range\": {\n                    \"gte\": 60000.0,\n                    \"gt\": null,\n                    \"lte\": 60000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OverviewThe Customer Service Representative II is responsible for interacting with the company's customers and addressing inquiries, requests, resolving complaints and processing customer orders. A part of site Operations, the role is responsible for ensuring that customers receive a high level of attention and that any customer related gaps are escalated and/or corrected.ResponsibilitiesPoint of escalation for key accounts and requirements outside of existing parameters.Liaises with production and upper management on critical issues.Resource for sales and operations when considering new, large opportunities.Interacts with customers via telephone, email, or in person to provide support and information on products or services.Collects and enters orders for new or additional products or services.Builds rapport with customers and works to ensure they receive excellent service.Updates customer information and requirements as necessary.Uses company ERP system to retrieve necessary customer information, inventory information, and purchase order status.Provides back-up support in other functional areas.Fields customer questions and complaints - when the issue is beyond the representative's knowledge, escalates to the appropriate individual.Ensures that appropriate actions are taken to resolve customers' problems and concerns.Maintains customer accounts and records of customer interactions with details of inquiries, complaints, or comments.Performs regular reviews of customer consumption against min/max levels and engages appropriate individuals and processes when adjustments are needed.Performs other related duties as assigned.Requirements4-year college degree in Business or related area.5+ years of experience in an advanced customer service role.Experience in the packaging industry a significant plus.Excellent organizational skills and attention to detail.Excellent communication and interpersonal skills.Service-oriented and able to resolve customer grievances.Ability to maintain good customer relations.Excellent computer skills with an ability and willingness to learn and adapt to ERP systems and processes.Job Type: Full-timeSalary: From $60,000.00 per yearBenefits:Dental careSchedule:Monday to FridayMorning shiftWeekends as neededAbility to commute/relocate:Mississauga, ON: Reliably commute or planning to relocate before starting work (Required)Education:Bachelor's (Required)Work Location: In person\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"1FD7FF2F070B36587980AC9EA6096F5E\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=48384c8b0030d513\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Henry & Debbie's Coffee @ Calgary Farmers' Market South\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694385184711,\n            \"dateOfPosted\": 1693536497790,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are currently looking for an enthusiastic Barista / Customer Service Assistant to join us at our Calgary Farmers’ Market SOUTH location. If you are passionate about coffee and enjoy working with people in a fun environment, please send us your resume.Barista experience although desirable, not required.At this time we are looking for baristas interested in working BOTH weekend days (Saturdays and Sundays).Calgary Farmers' Market SOUTH @ 510 77 Ave SE.Job Type: Part-timeSalary: From $18.00 per hourWork Location: In person\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"34DE1EDD3767EC67A0A04A00650A44DF\",\n            \"cityName\": \"Milton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=195101a147927be8\",\n            \"jobName\": \"Financial Customer Service Representative\",\n            \"companyName\": \"Pay2day\",\n            \"rowSalary\": \"$16.50–$18.00 an hour\",\n            \"date\": 1694385001358,\n            \"dateOfPosted\": 1690301765306,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5182991,\n                    \"lon\": -79.8774042\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Milton\",\n                \"formattedAddress\": \"Milton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Milton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you interested in growth, development, and leadership? If you are, join our team because you are exactly who we’re looking for! Pay2Day is a rapidly growing company with endless opportunities for career advancement.Additional characteristics of our team members include:Customer focused; Check us out on Google and Trust Pilot. Our customers love us, and we LOVE them! We do what’s right for our clients when it counts, not what’s easy.Team players; We all succeed together and want the best for everyone on our team.Goal oriented; We care about our results and understand that the performance of our company is a reflection of us.Outgoing; Team members participate in community events, talk to potential clients, and regularly perform local marketing tasks.Open to feedback; Team members at all levels have an open door policy. Feedback makes us stronger as individuals and employees.Hard working; Our team members will do whatever it takes and more to get the job done. Our high performing team actively looks for solutions. We only focus on the barriers to understand how to break them down.Flexibility; Our Stores are open 7 days a week with varying hours. Our team members need to be available for varying shifts throughout the week.Innovative; Our team is full of tech savvy, creative people who think outside the box, will communicate new ideas and embrace change.Detail Oriented; Both internal and external clients matter so we take care in how and what we do in order to continually exceed expectations.If this sounds like a fit for you, we cannot wait to meet you!Your responsibilities will also include:Cash handling/teller responsibilitiesOpening/closing the branchPerforming daily calls to remind clients of payment arrangementsReviewing applicants/completing financial risk assessment to determine approvalsResponding to client inquiries/Information requests by both in store and virtual clientsCollaborate with various departments to maximize profit while focusing on exceptional customer service and salesFocusing on client retentionMarketing/growing the businessCandidate must have a broad availability as this is a 7 day a week operation. Must be available to work days, evenings and weekends to meet our client’s business needs.Pay2Day welcomes and encourages applications from people with disabilities. Accommodations are available upon request for candidates taking part in all aspects of the selection process.For more information about our company, visit www.pay2day.ca and check out our locations!Job Types: Full-time, PermanentSalary: $16.50-$18.00 per hourFlexible Language Requirement:English not requiredSchedule:8 hour shiftSupplemental pay types:Overtime payEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Milton, ON\"\n        },\n        {\n            \"id\": \"11EF271FCE7D1CAB92482E4F30A0E721\",\n            \"cityName\": \"19 City View Dr Unit 1, Etobicoke, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a5e52e413a5f28da\",\n            \"jobName\": \"Customer Service/Office Co-Ordinator\",\n            \"companyName\": \"Torbram Fire Protection\",\n            \"rowSalary\": \"$24–$30 an hour\",\n            \"date\": 1694384492719,\n            \"dateOfPosted\": 1693537593706,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6971555,\n                    \"lon\": -79.5857856\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"City View Dr, Toronto, ON M9W, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Join our team as a Office Co-Ordinator with Customer Service experience and play a vital role in providing exceptional service to our valued customers. As a Customer Service Representative, you will have the opportunity to interact with customers, analyze their needs, and provide them with the best solutions. We offer a supportive work environment, competitive compensation, and opportunities for growth within the company.If you are passionate about delivering outstanding customer service as well as co-ordinate with office staff and enjoy working in a fast-paced environment, we would love to hear from you. Apply today to join our team!You will be the first point of contact for our customers and maintain positive working relationships with our customers. In this role you can expect to perform a combination of the following:Duties and Responsibilities:Strong communication and problem-solving skills with a focus on delivering an excellent customer service experienceSelf-motivation, detail-orientation and the ability to multitask.Accurate typing and keyboard skills; comfort with PC/internet navigationCommunicate with customers through various channels to acknowledge and resolve complaints or respond promptly to inquiries.Maintain detailed product knowledge to effectively answer customer questions.Communicate and coordinate with colleagues in a positive manner.Keep records of customer interactions, transactions, comments, and complaints.Review, evaluate and implement new administrative proceduresEstablish work priorities and ensure procedures are followed and deadlines are metCarry out administrative activities of establishmentQualifications:Experienced in customer service/ call center ideally within a Fire Protection company.1-3 years’ experience in sprinklers/fire protection is preferred.Possesses exceptional communication skills, both verbal and written.Able to work with a high volume of calls and inquiries.Able to take direction and work in a team environment (professional, tactful, diplomatic)Excellent communication and interpersonal skills.Product knowledge of the Fire Protection industry is required.Strong knowledge and aptitude of Microsoft applications (i.e. Microsoft Office)Highly organizedand able to work under pressure.Strong verbal and written communication and people skills, including a proven ability to build relationshipsExcellent at planning and organizingKnowledge of building standards and requirements coupled with sound technical knowledgeKnowledge of local building code & NFPA requirements.Strong analytical, problem-solving & negotiation skillsFlexible and can adapt to change.Job Type: Full-timeSalary: $24.00-$30.00 per hourBenefits:Extended health careFlexible Language Requirement:French not requiredSchedule:Monday to FridayAbility to commute/relocate:Etobicoke, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 3 years (required)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In personApplication deadline: 2023-09-10Expected start date: 2023-09-11\",\n            \"location\": \"City View Dr, Toronto, ON\"\n        },\n        {\n            \"id\": \"6ED18B196E4C840CABD1EFA30F7E9C8B\",\n            \"cityName\": \"1300 Woolridge Street, Coquitlam, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d808381694fa0d4b\",\n            \"jobName\": \"Customer Service (Full-Time)\",\n            \"companyName\": \"Crash Crawly's/Ninja Tag\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694384157842,\n            \"dateOfPosted\": 1693535866176,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2329442,\n                    \"lon\": -122.8591801\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Coquitlam\",\n                \"formattedAddress\": \"Woolridge St, Coquitlam, BC V3K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Coquitlam\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Crash Crawly's is an indoor children's play centre and Ninja Tag is the latest gamified experience located in Coquitlam.We are looking for outgoing and energetic individuals who enjoy dealing with customers and children in a fast paced environment to join our team.Currently we are looking to hire for a FULL-TIME position.WORK DAYS will be MONDAY to FRIDAY. (*Work days are subject to change if required.)The daily shift will be an 8 HOUR SHIFT either 12pm-8pm or 2pm-10pm.Skills/Experience: operating a point-of-sale, handling cash, customer service and cleaning of the facility.Job Type: Full-timeSalary: $16.75 per hourSchedule:8 hour shiftEducation:Secondary School (preferred)Experience:Customer Support & Client Services Occupations: 1 year (preferred)Work Location: In personExpected start date: 2023-09-11\",\n            \"location\": \"Woolridge St, Coquitlam, BC\"\n        },\n        {\n            \"id\": \"073F2543B1829945850038577B9CF536\",\n            \"cityName\": \"875 St James St Unit 3, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=55f6af13b5243aa9\",\n            \"jobName\": \"Work At Home Customer Service RepresentAtive (French Bilingual) [Ats36-15]\",\n            \"companyName\": \"Intouchcx\",\n            \"rowSalary\": \"$16–$22 an hour\",\n            \"date\": 1694384091185,\n            \"dateOfPosted\": 1693523999751,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8878595,\n                    \"lon\": -97.202473\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"810 St James St Unit A, Winnipeg, MB R3G 3J7, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About IntouchCXIntouchCX is a global leader in customer experience management, digital engagement, and technology solutions. With over 20 years of experience, 18,000+ team members, and campuses around the globe, we obsess about our clients by providing remarkable customer experiences for the world’s most innovative brands.IntouchCX has been recognized as one of the Best Employers for Diversity in 2022 by Forbes and Statista Inc. This recognition comes after IntouchCX was named by Forbes as one of America’s Best Large Employers for 2022, and a Top Employer for New Grads.About the JobWe are currently hiring Inbound French Bilingual Work at Home Inbound Customer Service Representatives!Are you a problem solver? Do you like making meaningful connections with people? Are you interested in a rewarding career working with the world’s most exciting brands from the comfort and safety of your own home?Our Work at Home Customer Service Representatives (French Bilingual) are passionate about delighting customers by making every interaction an unforgettable experience - whether that’s through inbound calls, emails and/or chats. We want people with personality, who love making an impact with every customer interaction.We also want people with drive and ambition - people who want a career, not just a job. Punctuality, performance and positivity will set you up for success!Note: All applications, interviews, orientation, and training will be done virtually. IntouchCX will also provide all hardware and equipment necessary.Benefits of Working as a Work from Home Customer Service Representative (French Bilingual):Work from home!Flexible schedulesCompetitive salary - $16.00-$22.00 hr (varies depending on program)Industry-leading benefits - Health, Dental, VisionAmazing career growth opportunitiesWorking as a Work from Home Customer Service Representative (French Bilingual), You Will:Assist all customers through inbound calls, emails, and/or chats.Communicate a variety of information to the customer.Be an active listener and help resolve customer inquiries.Provide a meaningful and positive experience with every customer interaction.Learn and retain a thorough working knowledge of all existing and new products and services.Working as a Work from Home Customer Service Representative (French Bilingual), You Have:French Bilingual is a must!A high school diploma (or equivalent).6 months – 1 year of customer service experience.Great communication skills, both verbal and written.The ability to be consistently ready to work and on time as scheduled.Reliable internet speed and broadband connection.A secure area in the home to work from.The ability to work effectively in a work-at-home setting.The understanding that although this is a Work from Home position,you must be located in Winnipeg, MBAvailability: Full Time (some shifts may depend on availability).Ready to apply? Submit your application and one of our recruiters will reach out via email/phone/text to learn more about you and connect you to this exciting opportunity! If you provide your cell number, you agree to receive automatic recruiting texts from us at that number. Consent is not a condition of employment, and you can opt-out by replying STOP at any time. Message and data rates may apply.IntouchCX provides Equal Employment Opportunities in accordance with all provincial and federal laws. IntouchCX is committed to ensuring equality of opportunity in all aspects of employment and does not discriminate based on protected characteristics.IntouchCX is committed to accommodating persons with disabilities. If you need accommodation at any stage of the application process or want more information on our accommodation policies, please let us know.By signing this application, the applicant consents to IntouchCX collecting, using and retaining his/her personal information for purposes relating to the application process and if hired, the employment relationship.Any and all personal information collected is held in the strictest confidence and in accordance with all applicable Privacy Laws.Job Type: Full-timeSalary: $16.00-$22.00 per hourBenefits:Dental careVision careWork from homeSchedule:8 hour shiftMonday to FridayWeekends as neededWork Location: Hybrid remote in Winnipeg, MB R3G 3J7\",\n            \"location\": \"St James St Unit, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"6627AC96488F618A908D500DDADA572C\",\n            \"cityName\": \"Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=527db7ff82a5300a\",\n            \"jobName\": \"Customer Service Representative, Winnipeg\",\n            \"companyName\": \"Algaecal\",\n            \"rowSalary\": \"$48,000–$51,000 a year\",\n            \"date\": 1694381918633,\n            \"dateOfPosted\": 1693533411620,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.895136,\n                    \"lon\": -97.13837439999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Career with a heart! If you like helping people, and you want to feel supported in your work –– this is the opportunity for you. Every day, concerned people call the AlgaeCal helpline. They’ve just had bad news about their bones – and they’re scared they might break at any moment. But after talking with YOU, their fear will melt away. We call our Customer Care Representatives – Bone Health Consultants – and a typical day might include: Acting as a knowledge base for customers inquiries with respect to our products and their bone healthActively listening to customers and providing them with everything they need to make an informed decision about AlgaeCal.Supporting our customers through a variety of mediums (email, phone).Processing orders and returns for customers.Helping customers understand the results of their DEXA bone scans.Updating the records of customer interactions, processing customer accounts, and filing documents. So yes, you’ll need to enjoy administrative tasks to thrive in this role.But most importantly, setting our customers up for MAXIMUM SUCCESSThis opportunity is tailor-made for you if: You’re highly motivated to work at home. You’ve got a solid customer service background. You are passionate about natural health. You are an expert at building a rapport with customers and devoted to helping people find that aha moment – where they go from despair to hope. You’re organized. You’re humble. You think critically and creatively. You love to support and inspire others. You don’t just accept feedback – you WANT feedback, because you’re hungry to be better than you were yesterday. You’re also a brilliant multi-tasker who can effortlessly shift between a variety of priorities. So if you want to work with some of the nicest people you’ll ever meet. And you want to feel good about making a difference in the world –– all while learning about natural health and working in a well organized and supportive workplace –– send us your resume. And BTW… some of our senior executives started out in this role –– so if you’ve got the talent, there’s no telling where this job might take you :) To best service our clients, our Customer Success Centre is open 7 days per week. Work schedules are 5 consecutive days, which include 1 weekend day. Successful applicants must be willing to work a Saturday or a Sunday, each week. We won’t ask you to work both weekend days, but ya need to be available for one! We are currently hiring for the following shift rotations:Tuesday to Saturday, 9am - 5pm PST (Tues-Fri) / 8am - 4pm PST (Sat)Sunday to Thursday, 9am - 5pm PST (Mon-Thurs) / 8am - 4pm PST (Sun)Note: Shift times are subject to change and are dependent on biz unit requirements. Other Goodies$48,000 starting salary with the opportunity to increase rapidly as training targets are met.AlgaeCal Healthcare Plan (Premiums Covered 100%!), which you're eligible to sign up for after three months of employment.Monthly lunches with your co-workers, coffee catch ups, and an informal coaching programme.Supported professional development and continued learning through training and coaching.Flexible Stat Holidays with the option to bank days for later use.Once you’ve been with us for 3 months you’ll get $200 to spend on whatever you want.You should know this… AlgaeCal is a hyper-growth company, which means that the role is always evolving as the company grows. We are not a typical ‘transactional’ thinking company. We are a heart-based company where people come first. In order to be successful here, you will need to have this mindset, work smart, hard, and embrace everything that is offered. If this sounds like a position for you, please respond to this advertisement with your resume and cover letter. This is an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your carefully written cover letter. Applications submitted without a resume and cover letter will be unsuccessful. Please, read carefully: 1. Write a cover letter addressing: 1. Why you're the best Customer Service Representative for this role. Give quantifiable examples of related achievements. 2. Describe why you fit perfectly with our values. Read them here: http://shorturl.at/lptFT 3. What's the toughest challenge you’ve ever overcome in your life? How did you overcome it? 4. What are the last three books you’ve read? 5. What do you do for fun? 6. Explain what you’re doing now for a job:If you don’t have one, explain why.If you have one, explain why you’re looking elsewhere.2. Upload your cover letter and resume: 1. Ensure that your cover letter and resume are saved and sent as one file. Click the “Apply Now” button on this page and upload your (1) cover letter (2) resume. *Important* AlgaeCal isn’t a boring run-of-the-mill company. So some of the questions in your online application might feel out of the ordinary. These questions are an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your answers. For more information about us, please visit our website.\",\n            \"location\": \"Winnipeg, MB\"\n        },\n        {\n            \"id\": \"EC4FC92F50A32EB52CCE7B7B22848B2D\",\n            \"cityName\": \"Fire Grill House in Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8bc3e030c8c05e74\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Fire Grill House\",\n            \"rowSalary\": \"$15.50–$20.00 an hour\",\n            \"date\": 1694381742324,\n            \"dateOfPosted\": 1693535604108,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Join an exciting and thriving environment in a brand new up-coming restaurant that is about to launch in the ever-fun Westboro area. We are looking for an enthusiastic individual who loves customer service and is tech-savy (social media oriented)! We are here to have fun and service delicious food. If you want to work with a great team, apply today! Send your CV to us!Job Responsibilities:- Provide exceptional customer service by greeting and assisting customers in a friendly and professional manner- Process customer transactions accurately and efficiently, including cash, credit, and debit payments- Maintain a clean and organized restaurant area- Answer customer inquiries and resolve any issues or concerns- Promote and upsell products- Assist with inventory management, including restocking shelves and monitoring product availability- Work well in a group- Handle food appropriately- Also looking for servers and other roles, including kitchen service and other. Please don't hesitate to apply within.Qualifications:- Strong time management and organizational skills to prioritize tasks effectively- Previous experience in retail or customer service or the restaurant business is preferred- Excellent verbal communication skills in English to interact with customersWe offer great pay + TIPS and opportunities for career growth within our restaurant. Join our team today!Job Types: Full-time, Part-timePart-time hours: 14-36 per weekSalary: $15.50-$20.00 per hourBenefits:Dental carePaid time offDay range:HolidaysMonday to FridayWeekends as neededShift:Afternoon shiftDay shiftEvening shiftMorning shiftWork Location: In person\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"C0CCEE30779EED97691CF97A1E905755\",\n            \"cityName\": \"Courtenay, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c89b3262e481302f\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"R.C. Purdy Chocolates Ltd\",\n            \"rowSalary\": \"$16.75–$19.26 an hour\",\n            \"date\": 1694381469425,\n            \"dateOfPosted\": 1693535456385,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.6841391,\n                    \"lon\": -124.9904494\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Courtenay\",\n                \"formattedAddress\": \"Courtenay, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Strathcona\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Courtenay\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: No degree, certificate or diplomaExperience: Experience an assetTasks Operate cash register Process money, cheques and credit/debit card payments Scan items Greet customers Provide customer service Work conditions and physical capabilities Fast-paced environment Attention to detail Standing for extended periods Personal suitability Accurate Flexibility Team player Screening questions Are you currently legally able to work in Canada? Long term benefits Other benefitsWork Term: TemporaryWork Language: EnglishHours: 12 to 30 hours per week\",\n            \"location\": \"Courtenay, BC\"\n        },\n        {\n            \"id\": \"E1EE7911419381C9093B44E7AD87EFA7\",\n            \"cityName\": \"Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f1a1feb8a33e634b\",\n            \"jobName\": \"Overnight Customer Service Representative\",\n            \"companyName\": \"Tigertel\",\n            \"rowSalary\": \"$17.42 an hour\",\n            \"date\": 1694381391198,\n            \"dateOfPosted\": 1693535318199,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6660885,\n                    \"lon\": -63.56756309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Job DescriptionJob Description  Immediately hiring Full Time Overnight Customer Service Representatives at TigerTel! Through our dedicated Customer Service Representatives at TigerTel, we deliver critical services and create exceptional outcomes for our clients and the many people who count on them. Do you love helping people? You have the opportunity to make a difference and be part of a culture that values your contributions. As a member of our team, your excellent customer service and communication skills will create positive experiences for our customers. Your punctuality and dependability are important to the success of our clients. Customer service experience is a plus, but not required. Training in office and then remote after training. Your job will be to professionally handle incoming calls, greet callers, provide and request required information, transfer calls, or take messages as necessary. You will work on our state-of-the-art call processing system and will be trained on a variety of call centre tools to help properly prioritize customer needs. We are an inbound call centre only. We do not perform any outbound telemarketing or hard sales calls. To be successful in this role, you must have: A welcoming voice with an upbeat tone Strong command of the English language with good spelling and grammar Computer skills in a Windows based environment Good attendance The ability to type 35 words per minute or more Live within an hour of the office Compensation: $17.42 per hour Shifts Offered: Full Time (40 hour work week) Various shifts available Must be available to work weekends Our Benefits for Full Time Employees Include: RRSP with company matching Health Insurance Dental Insurance Vision Insurance Paid Vacations (up to 4 weeks per year over time) Benefit Conditions: Waiting period may apply Only full-time employees eligible Don't miss out on this opportunity - Apply Today! Job Posted by ApplicantPro\",\n            \"location\": \"Dartmouth, NS\"\n        },\n        {\n            \"id\": \"7FB3320EF8D10B48DE2179A9DF19E7D3\",\n            \"cityName\": \"Fort McMurray, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8e5d05e9016262f4\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"R.C. Purdy Chocolates Ltd\",\n            \"rowSalary\": \"$15.25–$17.54 an hour\",\n            \"date\": 1694381336469,\n            \"dateOfPosted\": 1693534907507,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 56.7266598,\n                    \"lon\": -111.3790441\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fort McMurray\",\n                \"formattedAddress\": \"Fort McMurray, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 16\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fort McMurray\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: No degree, certificate or diplomaExperience: Experience an assetTasks Operate cash register Process money, cheques and credit/debit card payments Receive payment for goods or services Greet customers Provide customer service Work conditions and physical capabilities Fast-paced environment Attention to detail Standing for extended periods Personal suitability Accurate Flexibility Team player Screening questions Are you currently legally able to work in Canada? Long term benefits Other benefitsWork Term: TemporaryWork Language: EnglishHours: 12 to 30 hours per week\",\n            \"location\": \"Fort McMurray, AB\"\n        },\n        {\n            \"id\": \"007BC0958738F3FD3A379F20D26DF082\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8b53912594c18a49\",\n            \"jobName\": \"Bilingual Customer Service Representative (Day Shift)\",\n            \"companyName\": \"Phoenix Amd International Inc.\",\n            \"rowSalary\": \"$36,000–$38,000 a year\",\n            \"date\": 1694381239123,\n            \"dateOfPosted\": 1693534863897,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 36000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    36000.0\n                ],\n                \"range\": {\n                    \"gte\": 36000.0,\n                    \"gt\": null,\n                    \"lte\": 36000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" C ustomer Service Representative Calling all Customer Service enthusiasts! Phoenix AMD International is looking to expand its Customer Service department. The responsibility is simple, handle all furniture/repair or service-related communication with the end users of our products and programs while providing an exceptional customer experience!!  Do You: Speak and write English and French Fluently? Work well as part of a team that is empathetic, positive, professional with high-energy? Thrive on challenges, and discovering new ways of doing things? Want to be in a job that requires you to work on things outside of your comfort zone? Want to work in an environment where progress is made, and you are the tool that moves things forward? Want to be listened to, and encouraged to use your initiative and creativity? If this sounds like you, apply today! What you need if you want to be the successful applicant: You have experience in a furniture sales and/or service environment. You learn quickly and get very passionate about getting results. You're a doer, if you don't know how, you will find out how to do it and learn. You have strong communication skills both verbally and in writing. You have strong customer service skills/soft skills. You have excellent organization skills. You have strong problem solving skills. You have experience in using Excel, Outlook and Word. You have the ability to multitask and work well in a fast paced environment while under pressure. What we bring to the table: We are a growing entrepreneurial Canadian Bilingual company in business for over 32 years, led by the 2 entrepreneurs who originally started the business. We provide lifestyle protection programs and services for the furniture, bedding, appliances and electronics retailers across North America, which are designed to enhance the experience of consumers who buy them while creating indispensable profit centers for the retailers who sell them. We are committed to innovation and being the best at what we do. What we Offer: Great Benefits Plan. Health and dental coverage, so you can focus on your work. Fun Company Events. Strong Charity & Community Support. Great Environment to Work in. Part of a Growing Community in Bowmanville. Salary: $36,000.00-$38,000.00 per year.  Benefits: Dental care. Disability insurance. Extended health care. Life insurance. Paid time off. Vision care. Wellness program. Work from home. Schedule:  8 hour shift. Day shift. Monday to Friday. Education: Secondary School. (required) Experience: Customer service: 1 year. (preferred)About Phoenix AMD International Inc.:Phoenix A.M.D. International Inc., a privately held company, is one of North America’s leading value-added home furnishings protection and service specialists, with an unparalleled reputation for customer service and support. Since its’ inception in 1991, Phoenix has been providing customers with the highest quality home furnishing warranty programs with the greatest perceived value and realistic expectations. They also provide fully bilingual customer service, using the most advanced computer technology. As one of North America’s leading providers of lifestyle protection programs and services, supported by our exceptional vendor partners, such as Teflon™, Phoenix A.M.D. International consistently and passionately innovates the future and sets the trend for all other suppliers and companies to follow.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"0DC7FBC69AF50D1A724947CC60C96F98\",\n            \"cityName\": \"365 Argyle St S, Caledonia, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=57fdb2a44a9f8157\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Canadian Tire #049\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694380634050,\n            \"dateOfPosted\": 1693534592142,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.0632464,\n                    \"lon\": -79.9602989\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Caledonia\",\n                \"formattedAddress\": \"Argyle St S, Caledonia, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Haldimand County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Caledonia\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Canadian Tire Caledonia is looking for part and full time cashiers!Previous cash handling experience is preferred, but we are willing to train the right candidate.Successful candidates will demonstrate the following competencies:· Strong orientation towards customer service excellence.· Highly approachable, customer-oriented individual who thrives in offering exceptional service to customers.· Strong belief in the Canadian Tire Values of honesty, integrity, and respect.· Effective written and oral communication skills (probing, listening, etc.) and the ability to maintain professional communication, even in challenging situations.· Ability to complete detail-oriented retail tasks according to instructions and to demonstrate responsibility for outcomes.· Ability to work in a fast-paced team environment that provides assistance and support to co-workers to achieve common goals.· Ability to resolve retail and/or customer issues.· Ability to multitask, adapt and cope with challenging and changing situations.Positive attitude, punctuality and solid work ethic.Job Types: Full-time, Part-timePart-time hours: 20-40 per weekSalary: From $15.50 per hourBenefits:On-site parkingStore discountDay range:Monday to FridayWeekends as neededShift:8 hour shiftDay shiftEvening shiftExperience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Argyle St S, Caledonia, ON\"\n        },\n        {\n            \"id\": \"2820426354C9879B221054EC57DFF8DD\",\n            \"cityName\": \"639 Terry Fox Drive, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fee335087932411f\",\n            \"jobName\": \"Customer Service Advisor\",\n            \"companyName\": \"Mr. Lube - Kanata\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694380608830,\n            \"dateOfPosted\": 1693533636366,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.306109,\n                    \"lon\": -75.912274\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Terry Fox Dr, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Updated: August 31st, 2023Location: 639, Terry Fox Dr, Kanata, ONWe're not looking for someone who \\\"needs a job.\\\" We're looking for someone who can make a difference in our customers' experience, learn some skills and earn an income. Sales experience is preferred.Job Overview: Ready for a Change?Named one of Canada's Best Managed Companies & 10 Most Admired Corporate Cultures, Mr. Lube offers a fun work environment, competitive wages, and the best paid training and advancement program in the industry for our employees.Customer Service RepresentativeIn this role, you'll get to take full ownership over the complete customer experience. We will provide full training so you can confidently work directly on a customer's car and be in control of the entire customer service and sales cycle; from walking a customer through the services on a car to completing the tasks and sale.A Customer Service Representative at Mr. Lube spends:70% of their time providing Customer Service:Greeting customersDiscussing products and services with customersProviding recommendations based on vehicle assessmentsSuggesting new products and servicesWorking with a close knit team and communicating with Lower Technicians30% of their time completing Mechanical Duties:Oil and filter changesReplacement of vital car fluids (e.g. coolant, transmission, and transfer case fluid)Replacement of parts under the hood (e.g. air filters, headlights, taillights and wiper blade replacements)Refilling performance enhancers to ensure the car runs smoothly (e.g. engine stop leak, oil treatment, and valve cleaner)Performing courtesy checks on all vehicles (e.g. topping up fluid levels, cleaning windows and checking tire pressure)Performing tire changes and rotationsWhat else can you expect from a career at Mr. Lube?A fun environment with the best paid training in the industry Excellent employee incentives and recognition. With constant learning and growth opportunities. A company, management and team that cares. If you have a positive attitude, flexible availability, are driven to succeed, have a willingness to learn, and genuinely like interacting with people, put yourself in the driver's seat at Mr. Lube!Please contact:Denis GagneArea ManagerJob Types: Full-time, Part-timePart-time hours: 20-44 per weekSalary: From $16.50 per hourBenefits:Company eventsDental careExtended health careFlexible scheduleOn-site parkingPaid time offStore discountTuition reimbursementVision careSupplemental pay types:Bonus payCommission payOvertime payTipsAbility to commute/relocate:Ottawa, ON K2L 4H9: reliably commute or plan to relocate before starting work (required)Experience:Service Advisor: 1 year (required)Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Terry Fox Drive, Ottawa, ON\"\n        },\n        {\n            \"id\": \"825E28E863F63AE682473FE598B4FE35\",\n            \"cityName\": \"Delta, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=16bfaced0db5e64b\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"True Blue Construction Ltd\",\n            \"rowSalary\": \"$35 an hour\",\n            \"date\": 1694379616783,\n            \"dateOfPosted\": 1692669347449,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.09521549999999,\n                    \"lon\": -123.0264758\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Delta\",\n                \"formattedAddress\": \"Delta, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Delta\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 35.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35.0\n                ],\n                \"range\": {\n                    \"gte\": 35.0,\n                    \"gt\": null,\n                    \"lte\": 35.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Experience an assetTasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Recruit and hire workers and carry out related staffing actions Train or arrange for training Set up machines and equipment Estimate costs and materials Ensure health and safety regulations are followed Recommend personnel actions Read blueprints and drawings Requisition or order materials, equipment and suppliesWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Delta, BC\"\n        },\n        {\n            \"id\": \"DEB78AD6BAB96DB297914300F8116C7E\",\n            \"cityName\": \"320 Bayfield St, Barrie, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=13e05c70043dc69e\",\n            \"jobName\": \"Weekend Customer Service Cashier\",\n            \"companyName\": \"Canadian Tire Gas Bar\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694379288255,\n            \"dateOfPosted\": 1694239194174,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Every weekend MANDATORYThis is a weekends only positionShifts may be 7am-3pm or 3-11pmweekday afternoon shifts may be available shortlyMUST have good communication and interpersonal skillsMUST be reliableMUST be able to manage cashing out customers, have view of outside all the time as well as keeping store sufficiently stocked and cleanedJob Type: Part-timePart-time hours: 16 per weekSalary: From $15.50 per hourBenefits:Dental carePaid time offVision careDay range:Every WeekendWeekends onlyShift:8 hour shiftAfternoon shiftDay shiftWork setting:Convenience storeExperience:Cash handling: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (required)Night Shift (required)Work Location: In personApplication deadline: 2023-09-18Expected start date: 2023-09-20\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"23AB4917B8A7F1264147D0DB0C8A3417\",\n            \"cityName\": \"706 Denison St, Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8ec84d1ac30ab9da\",\n            \"jobName\": \"Customer Service Rep\",\n            \"companyName\": \"Running Free\",\n            \"rowSalary\": \"$16.80–$18.00 an hour\",\n            \"date\": 1694379083555,\n            \"dateOfPosted\": 1694288878153,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Online retail is an exciting and constantly evolving space in which providing customers with a truly exceptional experience is our number one priority. If you're an enthusiastic, self-motivated, detail-oriented person, who is passionate about running, triathlon, cycling, or fitness, we want to talk to you!Description:Part-time position involves interacting with customers via email and phone, and occasionally in person. Handling ordering, shipping, reporting, and product related questions and tasks. Flexible hours. Small and friendly online team. Opportunities for growth.Skills and Experience:- Excellent communication in English (spoken and written).- Previous retail experience an asset.- Very comfortable working with Windows based systems and programs.- Experience with programs such as Excel or Google Sheets valuable.- Eye for detail and design and familiarity with graphics programs (similar to Photoshop) useful.Job Type: Part-timePart-time hours: 20 - 40 per weekSalary: $16.80-$18.00 per hourBenefits:On-site parkingSchedule:8 hour shiftWeekends as neededWork Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"ED6A6E031F702FF8D8A30F62E95CFEC0\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=17d07df84f3c4d96\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Algaecal\",\n            \"rowSalary\": \"$48,000–$51,000 a year\",\n            \"date\": 1694378648897,\n            \"dateOfPosted\": 1693529543967,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Career with a heart! If you like helping people, and you want to feel supported in your work –– this is the opportunity for you. Every day, concerned people call the AlgaeCal helpline. They’ve just had bad news about their bones – and they’re scared they might break at any moment. But after talking with YOU, their fear will melt away. We call our Customer Care Representatives – Bone Health Consultants – and a typical day might include: Acting as a knowledge base for customers inquiries with respect to our products and their bone healthActively listening to customers and providing them with everything they need to make an informed decision about AlgaeCal.Supporting our customers through a variety of mediums (email, phone).Processing orders and returns for customers.Helping customers understand the results of their DEXA bone scans.Updating the records of customer interactions, processing customer accounts, and filing documents. So yes, you’ll need to enjoy administrative tasks to thrive in this role.But most importantly, setting our customers up for MAXIMUM SUCCESSThis opportunity is tailor-made for you if: You’ve got a solid customer service background. You are passionate about natural health. You are an expert at building a rapport with customers and devoted to helping people find that aha moment – where they go from despair to hope. You’re organized. You’re humble. You think critically and creatively. You love to support and inspire others. You don’t just accept feedback – you WANT feedback, because you’re hungry to be better than you were yesterday. You’re also a brilliant multi-tasker who can effortlessly shift between a variety of priorities. So if you want to work with some of the nicest people you’ll ever meet. And you want to feel good about making a difference in the world –– all while learning about natural health and working in a well organized and supportive workplace –– send us your resume. And BTW… some of our senior executives started out in this role –– so if you’ve got the talent, there’s no telling where this job might take you :) To best service our clients, our Customer Success Centre is open 7 days per week. Work schedules are 5 consecutive days, which include 1 weekend day. Successful applicants must be willing to work a Saturday or a Sunday, each week. We won’t ask you to work both weekend days, but ya need to be available for one! Example shift rotation: Sunday to Thursday or Tuesday to Saturday. Other Goodies$48,000 starting salary with the opportunity to increase rapidly as training targets are met.AlgaeCal Healthcare Plan (Premiums Covered 100%!), which you're eligible to sign up for after three months of employment.Monthly lunches with your co-workers, coffee catch ups, and an informal coaching programme.Supported professional development and continued learning through training and coaching.Flexible Stat Holidays with the option to bank days for later use.You should know this… AlgaeCal is a hyper-growth company, which means that the role is always evolving as the company grows. We are not a typical ‘transactional’ thinking company. We are a heart-based company where people come first. In order to be successful here, you will need to have this mindset, work smart, hard, and embrace everything that is offered. If this sounds like a position for you, please respond to this advertisement with your resume and cover letter. This is an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your carefully written cover letter. Applications submitted without a resume and cover letter will be unsuccessful. Please, read carefully: 1. Write a cover letter addressing: 1. Why you're the best Customer Service Representative for this role. Give quantifiable examples of related achievements. 2. Describe why you fit perfectly with our values. Read them here: http://shorturl.at/lptFT 3. What's the toughest challenge you’ve ever overcome in your life? How did you overcome it? 4. What are the last three books you’ve read? 5. What do you do for fun? 6. Explain what you’re doing now for a job:If you don’t have one, explain why.If you have one, explain why you’re looking elsewhere.2. Upload your cover letter and resume: 1. Ensure that your cover letter and resume are saved and sent as one file. Click the “Apply Now” button on this page and upload your (1) cover letter (2) resume. *Important* AlgaeCal isn’t a boring run-of-the-mill company. So some of the questions in your online application might feel out of the ordinary. These questions are an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your answers. For more information about us, please visit our website.\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"F5C89E26A82557E99EEB18FF95D67CFF\",\n            \"cityName\": \"3454 Tillicum Rd, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=28f6d67d4ec8fa00\",\n            \"jobName\": \"Ice-Cream Parlor And Arcade Customer Service\",\n            \"companyName\": \"Mr. Tubbs Ice Cream Parlor\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694377626021,\n            \"dateOfPosted\": 1693531288333,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4504499,\n                    \"lon\": -123.3967516\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Tillicum Rd, Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About us:Mr. Tubbs Ice Cream Parlor has its history of nearly thirty years. With 48 flavours ice creams and a room of video games, it is a place creates memories for thousands of kids and families.Now, we are looking for both full-time and part-time employees who enjoy spending time with kids, scooping ice creams, making ice-cream sandwiches and cakes, and operating and arcade game machines.Responsibilities:Make ice cream cakes (will be trained)Serve ice cream and birthday parties.Answering phones and managing our online booking systems and be able to take online orders.Take payment.Clean up equipment after use and keep kitchen area organized and sanitized.Stock ingredients as needed.Operate machinery, including mixers, blenders, etc., safely and effectively.Maintain a clean work area, including storage areas and workstations.Follow all health and safety standards to ensure proper food safety practices.Ability to manage an ever-changing environment.Qualification· * Customer service oriented, experience preferred however willing to train the right candidate· * Strong ability to organize and multi-task· * Ability to prioritize· * Energetic, High level of accuracy and Attention to detail· * Excellent verbal communication skills· * Problem solving skills and accountability for work assigned· * Willingness to learn and continuously improve· * Be punctual and a 100% focused on job related tasksPlease note only the selected candidates will be contacted and invited to an interview. However, we thank you for expressing your interest!Job Types: Full-time, Permanent, CasualSalary: $17.00-$19.00 per hourBenefits:Discounted or free foodJob Types: Full-time, Part-time, PermanentPart-time hours: 30 per weekSalary: $17.00-$19.00 per hourSchedule:Day shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Victoria, BC V8Z 4H3: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 2 years (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Tillicum Rd, Victoria, BC\"\n        },\n        {\n            \"id\": \"492B753BA72C119A2D349C67D2DABE5A\",\n            \"cityName\": \"5777 Trans Canada Highway, Duncan, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=30d4e8239bcc685d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mid Island Liquor\",\n            \"rowSalary\": \"From $17.75 an hour\",\n            \"date\": 1694377171524,\n            \"dateOfPosted\": 1694289432437,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Liquor is looking for part-time Customer Service Representatives at our Duncan Liquor Store.Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you!Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in the operations of the store, including but not limited to handling customer transactions, responding to customer questions and concerns in a professional manner, creating displays and stocking shelves, and ensuring store and merchandise are neat and organized.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Representative today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. Previous retail experience is preferred, and you must have a valid Serving it Right Certificate (or be willing to get certified prior to your first day).Who we are:Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve.Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op).We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.Job Types: Permanent, Part-timeSalary: From $17.75 per hourBenefits:Employee assistance programFlexible scheduleOn-site parkingStore discountSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"3916505F2AAF1775F8C9B3AE555312F4\",\n            \"cityName\": \"360 Newkirk Road, Richmond Hill, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1e6c74b74068f2f0\",\n            \"jobName\": \"Customer Service Representative (Csr)\",\n            \"companyName\": \"James Snow Storage\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694377169555,\n            \"dateOfPosted\": 1694287981593,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"As a customer service representative, you should be able to provide speedy and efficient service to our customers. We offer both storage and U-Haul servicers for which training will be provided. Secondarily, there is a physical component to the position; must be able to assist in physical labor both indoors and outdoors. The job has a 3 month probationary period you can expect $ 0.5 pay raise pending on your performance ofter the end of probationary period.Primary responsibilities include: (Training will be provided)Interact with our customers in a friendly, fast, courteous and efficient manner.Should be able to perform physically demanding tasks such as connecting trailers.Should be able to perform tasks under minimum supervision.Renting U-Haul trucks, trailers and storage rooms.Maintain a standard of cleanliness of Trucks and Storage.Attention to detail in order to promote positive customer interactions.Efficient communication with customers and fellow staff members.Complete online and hands on training.Help out in maintenance of the building all year.Requirements:Availability to work weekends.Valid driver’s license (Preferred) and the ability to maintain a good driving record to operate commercial motor vehicles.Ability to work with computers and use specialized rental software (Training will be provided).Education/Training:High School Diploma or equivalent.Post secondary students, international students (Preferred)Job Types: Part-time, Fridays, Saturdays and Sundays.Salary: From $16.50 per hour.Benefits:Insurance Benefits including.Dental careDisabilityLife insuranceVision Care.Company events.On-site parking.Job Type: Part-timePart-time hours: 20 per weekSalary: From $16.50 per hourBenefits:Company eventsDental careDisability insuranceLife insuranceOn-site parkingStore discountVision careSchedule:8 hour shiftEvery WeekendWeekends onlyAbility to commute/relocate:Richmond Hill, ON: reliably commute or plan to relocate before starting work (required)Application question(s):Are you allowed legally to work in Canada?Are you available to work Fridays, Saturdays and Sundays every week?Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"2B880055E2F0FA414F2573CBFDA887CC\",\n            \"cityName\": \"Speedy Cash in Kamloops, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b9ae68b3f41d64a4\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Speedy Cash\",\n            \"rowSalary\": \"From $18.75 an hour\",\n            \"date\": 1694377133564,\n            \"dateOfPosted\": 1693520740378,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.674522,\n                    \"lon\": -120.3272675\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kamloops\",\n                \"formattedAddress\": \"Kamloops, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Thompson-Nicola\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kamloops\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Canadian-operated, Speedy Cash is a strong leader in the financial services industry. Founded in 1998, Speedy Cash currently operates over twenty branch locations across Canada. We are building a dynamic team of business professionals and can provide the right candidate with significant opportunities for career growth and job satisfaction.If you’re looking for a fun, energized environment where we support each other, as a team, to create a rewarding workplace and deliver amazing customer service, then look no further, Speedy Cash is the place for you!Perks and BenefitsWelcome BonusCompetitive wages, bonuses, and benefitsHands-on and continual training in transferable skillsBirthdays off, annual fun day for each storeIncredible support systemA team environment that makes work satisfying and funRRSP matchingOpportunities for growth. We promote from within!You are a Champion of Change; you will help motivate the team to increase sales, minimize bad debt and adapt to the ever-changing regulatory environment. You have a strong sense of curiosity and have a passion for learning; you are proactive and look for ways to be more efficient in your day-to-day work. You inspire your teammates with your innovative and resourceful way of thinking. Your attention to detail and exceptional organizational skills will ensure that the day-to-day operations of the store run smoothly. You can work independently as you pursue excellence while taking pride in your achievements, supporting company initiatives, and accomplishing the work that needs to be done in the store. An interest in travel would be considered an asset as from time to time support in other stores in the network is needed.Job ResponsibilitiesBuilding customer relationships while providing exceptional customer serviceIdentifying and meeting the customer’s financial needs in order to process loan applicationsCollecting on delinquent accounts in the interest of minimizing bad debtConveying information through in-person, telephone, and email communicationsAiding in loan sales, cheque cashing, and in-store promotionsHandling and balancing daily cash and debit transactionsPerforming all daily operations of the storeRequirementsValid Government Issued Photo IDClean Criminal RecordHigh School Diploma or EquivalentWageSalary commensurate with experienceFor more information about Speedy Cash check out our website at www.speedycash.ca/careersJob Type: Full-timeSalary: From $18.75 per hourBenefits:Dental careExtended health carePaid time offRRSP matchVision careSchedule:Monday to FridayWeekends as neededEducation:Secondary School (preferred)Work Location: In personApplication deadline: 2023-09-18\",\n            \"location\": \"Kamloops, BC\"\n        },\n        {\n            \"id\": \"E0091B940D575ABBBEA7E8F5BCA98400\",\n            \"cityName\": \"Speedy Cash in Cranbrook, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2a3022b2812ea3e8\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Speedy Cash\",\n            \"rowSalary\": \"From $18.75 an hour\",\n            \"date\": 1694377089914,\n            \"dateOfPosted\": 1693522629263,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.5129678,\n                    \"lon\": -115.7694002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cranbrook\",\n                \"formattedAddress\": \"Cranbrook, BC V1C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"East Kootenay\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cranbrook\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Canadian-operated, Speedy Cash is a strong leader in the financial services industry. Founded in 1998, Speedy Cash currently operates over twenty branch locations across Canada. We are building a dynamic team of business professionals and can provide the right candidate with significant opportunities for career growth and job satisfaction.If you’re looking for a fun, energized environment where we support each other, as a team, to create a rewarding workplace and deliver amazing customer service, then look no further, Speedy Cash is the place for you!Perks and BenefitsWelcome BonusCompetitive wages, bonuses, and benefitsHands-on and continual training in transferable skillsBirthdays off, annual fun day for each storeIncredible support systemA team environment that makes work satisfying and funRRSP matchingOpportunities for growth. We promote from within!You are a Champion of Change; you will help motivate the team to increase sales, minimize bad debt and adapt to the ever-changing regulatory environment. You have a strong sense of curiosity and have a passion for learning; you are proactive and look for ways to be more efficient in your day-to-day work. You inspire your teammates with your innovative and resourceful way of thinking. Your attention to detail and exceptional organizational skills will ensure that the day-to-day operations of the store run smoothly. You can work independently as you pursue excellence while taking pride in your achievements, supporting company initiatives, and accomplishing the work that needs to be done in the store. An interest in travel would be considered an asset as from time to time support in other stores in the network is needed.Job ResponsibilitiesBuilding customer relationships while providing exceptional customer serviceIdentifying and meeting the customer’s financial needs in order to process loan applicationsCollecting on delinquent accounts in the interest of minimizing bad debtConveying information through in-person, telephone, and email communicationsAiding in loan sales, cheque cashing, and in-store promotionsHandling and balancing daily cash and debit transactionsPerforming all daily operations of the storeRequirementsValid Government Issued Photo IDClean Criminal RecordHigh School Diploma or EquivalentWageSalary commensurate with experienceFor more information about Speedy Cash check out our website at www.speedycash.ca/careersJob Type: Full-timeSalary: From $18.75 per hourBenefits:Dental careExtended health carePaid time offRRSP matchVision careSchedule:Monday to FridayWeekends as neededEducation:Secondary School (preferred)Work Location: In personApplication deadline: 2023-09-29\",\n            \"location\": \"Cranbrook, BC\"\n        },\n        {\n            \"id\": \"48A1B19C4B92BF5C28C70750B2A6127E\",\n            \"cityName\": \"Fort Erie, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c53d2704da0e8c31\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Aerogutter Inc\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694376983657,\n            \"dateOfPosted\": 1694240123557,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Aerogutter Inc is looking to add another member to our team!We are a family owned and operated small company who handles incoming calls/requests from customers who use our exterior services in the USA. We've been in business since 2002 and we work hard at building a team of qualified, driven, and wonderful people! If you're tired of working in a place where you're simply a number...and are interested in a position with a small group of dedicated people who make work more exciting, keep reading!The position involves a nice comfy chair and a desk with two monitors. There is a headset (and yes it's comfortable) that covers both ears and the phone is answered on the screen. We have a picnic table outside for lunch during the warmer times, and a nice kitchen with chairs and a tv. We even have a dishwasher so you don't have to worry about dishes (wow!).With all that being said, we are looking for a happy person who enjoys making the lives of others better by providing an excellent customer experience! Someone who keeps a \\\"to do\\\" list and enjoys checking things off as they finish them! Someone who can empathize with a customer who calls in with a problem and has the ability to offer peace of mind because you know you have a team of capable people who can handle any issue a customer may have. If this sounds like the job for you...keep reading and apply below!Duties include but are not limited to:· Answer incoming customer phone calls regarding billing issues, estimate and service requests, scheduling inquiries and general client concerns and take appropriate action for each call· Return customer voicemails, emails, and text messages· Entering and checking customer contracts in the customer database· Reviewing, printing and mailing of customer invoices and contract renewals· Processing customer payments and contract renewals received in the mail via check or credit card· Match service trucks GPS records to work completed· Contact customers regarding outstanding balancesJob Details:· 1 full time position available in a small office setting working with 6 other team members.· Office hours are Monday through Friday 8:30AM to 5:00PM and some Saturdays (Spring and Fall).· In-office training will be Monday to Friday from 10:00AM to 3:00PM.· Starting wage is $18.00-$20.00 per hour .· Candidate must have a minimum of 2 years of Call Centre Customer Service experience.· Candidate must have own transportation. Public transit is not available.· Good work ethic, attendance, ability to work as part of a team, and professional customer service is also a MUST!Job Type: Full-timeSalary: $18.00-$20.00 per hourSchedule:8 hour shiftHolidaysMonday to FridayWeekend availabilityEducation:Secondary School (preferred)Experience:customer service: 2 years (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"DB651E0F16802D9EE640C7D52D4CDD90\",\n            \"cityName\": \"13120 66 Street NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6a4943f19d763148\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Mac'S Convenience Store/ Circle K\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694376923179,\n            \"dateOfPosted\": 1694223927188,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Description: Customer Service RepresentativeLooking for experienced CSR to work at Circle K located North east side. Looking for someone with a flexible schedule that is able to work various shifts including overnight, throughout the week and weekendDuties:- Provide exceptional customer service- Ring up sales on cash register- Process payments and handle customer complaints- Performs cleaning duties to uphold store standard, this includes inside and outside the store- Receives and verifies deliveries- Maintains food safe practice- Stock and merchandise products- Control shoplifting as per our company policyExperience:- Previous experience is considered an assetPhysical Requirements- Able to stand for 8 hours-Lift up to 50lbsIf you are passionate about providing exceptional customer service and have the necessary skills and experience, we would love to hear from you. Please submit your resume and cover letter detailing your relevant qualifications.Job Type: Full-timeSalary: From $15.00 per hourSchedule:8 hour shiftEvening shiftMonday to FridayNight shiftWeekends as neededEducation:Secondary School (preferred)Shift availability:Day Shift (required)Night Shift (required)Overnight Shift (required)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"BA852DCD860AC3215A154EA21B4B9071\",\n            \"cityName\": \"SKM Acquisitions in Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5e7514a4d5f7e285\",\n            \"jobName\": \"Customer Service Sales Representative\",\n            \"companyName\": \"Skm Acquisitions\",\n            \"rowSalary\": \"$700–$1,000 a week\",\n            \"date\": 1694375918254,\n            \"dateOfPosted\": 1694215050866,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 700.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    700.0\n                ],\n                \"range\": {\n                    \"gte\": 700.0,\n                    \"gt\": null,\n                    \"lte\": 700.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you looking for a supportive, collaborative workplace with great teams and inspiring leaders? You’ve come to the right place. SKM is looking for ambitious people who share our values and want to make every day better for people around the world. If this sounds like you, and the career below sounds exciting, we’d like to hear from you.As a Customer Service Sales Representative, you will be the face of our clients. You will interact with customers to bring our clients products and services to life! You will create effective sales opportunities with each customer using the skills provided in our intensive training model. Customer Service Sales Representative will establish sales objectives which will contribute to the overall success of the business.Key Accountabilities:Meet sales, service, quality and productivity objectivesResponsible for interacting with new and existing customers and clientsConduct needs analysis and provide advice to customers by effectively communicating the value and benefits of the products and services offered by our clientsProvide a high level of service, build relationships and provide accurate information and the appropriate solutions to new and existing customersRaise issues, concerns and trends to the leadership teamMaintain a high level of product knowledge, operational process and servicesAs our ideal candidate, you make valuable contributions in your ability to communicate effectively with people. You have a high-energy level and a desire to become part of a globally dynamic organization offering long-term career opportunities.Qualifications:Experience in a retail, customer service or sales rolePost-secondary degree or equivalent work/business experienceDemonstrated ability to persuade and negotiate and must possess active listening skillsEffective client record management, with attention to detailAbility to work in a fast-paced environment and manage multiple day-to-day tasksStrong computer skills, and a general knowledge level of the MS Office suite of productsMust have a valid driver’s license and access to reliable transportationJob Type: Full-timeSalary: $700.00-$1,000.00 per weekSchedule:Monday to FridayWeekends as neededAbility to commute/relocate:Ottawa, ON K2C 3N1: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"5CA5C4383AB32996952269EF1B8211DE\",\n            \"cityName\": \"Michaud Petroleum Inc. Grand Falls and St-Leonard NB in Grand-sault/grand Falls, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a162d3f681f89584\",\n            \"jobName\": \"Cashier/Customer Service - Full And Part Time Day & Evenings\",\n            \"companyName\": \"Michaud Petroleum Inc. GrAnd Falls And St-Leonard Nb\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694373550363,\n            \"dateOfPosted\": 1689530225864,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.0479934,\n                    \"lon\": -67.7399015\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grand Falls\",\n                \"formattedAddress\": \"Grand Falls, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Victoria County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grand Falls\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Michaud Petroleum Inc. is currently looking to fill a Full Time Cashier position for its Shell gas station in Grand Falls and St-Leonard location as well as the Ultramar station in Grand Falls.The candidate will be in charge of completing the following tasks (but not limited to) :Help and assist customersReplenishing store shelvesBalance cashKeeping store cleanAnswer phonesAssist card lock customersKeeping sidewalks and walkways clean (Sweeping in summertime and Shovel during winter).Maintain work equipmentMaintain a safe work environmentAfternoon shift is 11:00 am to 7:00 pm, evening shift is 2:00 pm to 10:00 pm. Weekends has same shifts plus a 6:00 am to 2:00 Pm option as well.Position offers 5 shifts per week, Monday to Sunday.Job requirementsAll candidates must be fully bilingual in both official languages (Oral)Have a strong client oriented attitudeMust be available to work daytime, evenings and on week-endsJob Types: Full-time, Part-time, PermanentSalary: $15.00-$16.00 per hourBenefits:Dental careOn-site parkingVision careShift:8 hour shiftAfternoon shiftDay shiftEvening shiftWork setting:Convenience storeCOVID-19 considerations:Language:English and French (required)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Grand Falls, NB\"\n        },\n        {\n            \"id\": \"B6A531BAFEAF682F9946C561D7FE4EEC\",\n            \"cityName\": \"656 Dundas St, London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c4782049e07d115b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Union Ten Distilling Co.\",\n            \"rowSalary\": \"$16.55 an hour\",\n            \"date\": 1694373548215,\n            \"dateOfPosted\": 1693519282617,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.0034491,\n                    \"lon\": -81.1805791\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"Dundas St, London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking a highly motivated and enthusiastic individual to join our team as a Customer Service Representative at our Distillery. As a Customer Service Representative, you will be providing exceptional service and support to our valued customers. You will be responsible to ensure a positive and memorable experience for all who interact with our Distillery. This is an excellent opportunity for someone with a passion for the spirits industry and a knack for delivering outstanding customer service.Responsibilities:Provide accurate information about our distillery products, including their production process, ingredients, tasting notes, and availability.Assist customers with placing orders, providing guidance on product selection, and recommending suitable options based on their preferences.Manage bookings and host Cocktail Classes and Tours as required.Assist in managing inventory as needed, restocking of product in retail store. This may also include tasks related to fulfilling of online orders for shipping and curbside pickup.Maintain a thorough understanding of our distillery's offerings, promotions, and special events to effectively communicate them to customers.Collaborate with internal teams, such as sales and production, to relay customer feedback, identify trends, and suggest improvements for enhancing customer satisfaction.Continuously develop product knowledge by staying up-to-date with industry trends, attending training sessions.Contribute to a positive and engaging work environment, fostering teamwork, collaboration, and a customer-centric mindset.Requirements:High school diploma or equivalent; additional education or certification in customer service is a plus.Proven experience in a customer service role, preferably in the beverage, hospitality, or related industry.Excellent verbal and written communication skills, with the ability to convey information clearly, concisely, and in a friendly manner.Strong interpersonal skills, capable of building rapport and maintaining positive relationships with customers and team members.Ability to handle challenging situations with patience, empathy, and a solution-oriented mindset.Detail-oriented with excellent organizational and multitasking abilities.Flexibility to work in shifts, including days, evenings, weekends, and holidays, as required.A genuine interest in and knowledge of spirits, distilling processes, and the craft beverage industry.Must be of legal drinking age and comply with all applicable laws and regulations related to alcohol.Smart Serve certification is required.We offer the opportunity to be part of a dynamic team dedicated to producing exceptional spirits and providing unparalleled customer service. If you are passionate about the world of spirits, possess outstanding customer service skills, and thrive in a fast-paced environment, we would love to hear from you!Job Type: Part-timePart-time hours: 30 per weekSalary: $16.55 per hourBenefits:Casual dressStore discountFlexible Language Requirement:French not requiredSchedule:Day shiftMonday to FridayWeekends as neededWork Location: In personExpected start date: 2023-09-19\",\n            \"location\": \"Dundas St, London, ON\"\n        },\n        {\n            \"id\": \"A417A401C4D646723ABAA55586F281C8\",\n            \"cityName\": \"137 Cowichan Lake Road, Lake Cowichan, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ba3e77afdaaf55a9\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mid Island Co-Op\",\n            \"rowSalary\": \"From $17.75 an hour\",\n            \"date\": 1694373507992,\n            \"dateOfPosted\": 1693507878727,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.8299295,\n                    \"lon\": -124.0258333\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lake Cowichan\",\n                \"formattedAddress\": \"Cowichan Lake Rd, Lake Cowichan, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Cowichan Valley\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lake Cowichan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Co-op is hiring full-time and part-time Customer Service Representatives at our Gas Bar located in Lake Cowichan, British Columbia.Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you!Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in the operations of the store, including but not limited to handling customer transactions, responding to customer questions and concerns in a professional manner, creating displays and stocking shelves, and ensuring store and merchandise are neat and organized.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Representative today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. Previous retail experience is preferred, and propane and/or FoodSafe certification would be an asset.Who we are:Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve.Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op).We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.Job Types: Permanent, Part-time, Full-timePart-time hours: 24-40 per weekSalary: From $17.75 per hourBenefits:Company eventsCompany pensionDental careDisability insuranceEmployee assistance programExtended health careLife insuranceOn-site parkingPaid time offTuition reimbursementVision careSchedule:Day shiftEvening shiftHolidaysMonday to FridayWeekends as neededSupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Cowichan Lake Rd, Lake Cowichan, BC\"\n        },\n        {\n            \"id\": \"7DE74F761FAA7CFD30A02129A245436D\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fabbcdf0b1a77d4b\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"Sam Dhaliwal Professional Corporation\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694370947101,\n            \"dateOfPosted\": 1689674908889,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsTasks Operate cash register Process money, cheques and credit/debit card payments Scan items Tabulate total payment for goods or services required Receive payment for goods or services Calculate daily/shift payments received and reconcile with total sales Suggestive selling Greet customers Provide customer service Personal suitability Team playerWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"7E734AB841350A9259901477989FC199\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=663e30b62af05b87\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Pro-Line Building Materials\",\n            \"rowSalary\": \"$18–$21 an hour\",\n            \"date\": 1694369910318,\n            \"dateOfPosted\": 1693517259643,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Pro-Line Building Materials Ltd. is a leading distributor of roofing, insulation and waterproofing products in Western Canada we are currently taking applications at our Victoria, B.C. store for a full time Customer Service Representative.The Customer Service Rep is responsible for assisting, maintaining, and building profitable relationships with our customers by ensuring all customer requirements are met to the best of Pro-Line's abilities.Communicate effectively with all team members (warehouse to office) regarding customer objectivesOverseeing warehouse and yard is tidy, organized, and that stock rotatesCompile and maintain all sales orders as they flow through the branchContribute to the work environment that leads to a winning team and personal growthParticipate as a key player by supporting operational needsMaintain housekeeping standards as set by the management staffAcknowledge and greet appropriately customers in a timely mannerDressed in appropriate attire (proper tied up footwear, no tattered clothing)Process customer orders in a courteous, efficient, and timely mannerRecognize sales orders with delivery deadlines and back ordersEffectively present and demonstrate products and services offered to the customersManage telephone calls professionally with good communication skillsAttend to customer questions, challenges, and facilitate a satisfactory resolutionCoding of credit and cash orders, inventory inputtingSupport outside sales reps by gathering customer information to achieve a successful deliveryEnsuring sales orders have been double checked the day prior to deliveryFill out Bill of Ladings with all pertinent information (address, loading instructions, directions, pitch, etc.)Project tracking (Cool Net)All other duties as specified by managementFeel free to apply online or show up in person at 4910 Builders Road S.E.Calgary, AB. T2G 4C6Job Type: Full-timeSalary: $18.00-$21.00 per hourSchedule:8 hour shiftMonday to Friday\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"F693FC3CA96AE83A8546DF3650C4F73C\",\n            \"cityName\": \"Grande Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3fb4147ba9e693ea\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Tenacious Detail Grande Prairie\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694368538724,\n            \"dateOfPosted\": 1693517263263,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.17071259999999,\n                    \"lon\": -118.7884464\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grande Prairie\",\n                \"formattedAddress\": \"Grande Prairie, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 19\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grande Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Tenacious Detail is looking to hire a full-time/ part-time front counter person.You will be the first point of contact for our walk-in clients.Other tasks will be:answering phone callscollecting paymentslight office cleaninghelping in the Detail shop when needed for other tasks.keeping things organized in and around the shopWe are looking for an individual who can work independently or as part of a team! Someone with a bright and bubbly personality. Knowledge of detailing products an asset.Job Types: Full-time, Part-timePart-time hours: 20-40 per weekSalary: From $17.00 per hourBenefits:Dental carePaid time offFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:Overtime payAbility to commute/relocate:Grande Prairie, AB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In personExpected start date: 2023-09-11\",\n            \"location\": \"Grande Prairie, AB\"\n        },\n        {\n            \"id\": \"B04D971110D238534A9C04797F27C984\",\n            \"cityName\": \"Canada\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9d9c9df290ee4a8c\",\n            \"jobName\": \"Call Centre Agent - Work At Home\",\n            \"companyName\": \"Inspire Direct Marketing\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694364628182,\n            \"dateOfPosted\": 1693517243927,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"$20.00-$24.00/hour + Benefits.Call Centre Agent - Work from HomeIf you are a mature sales or call centre representative, come join our team of professional fundraising agents to elevate your career and use your skills to help make our world a better place. Quit your day job, come help us save the world!We are a Canadian agency on a mission to inspire fundraising. We provide a warm and friendly voice to the largest and most respected charities in Canada. Our team is passionate, engaged and extremely effective. We call existing supporters to raise funds for important causes around the globe. So while there are no cold calls or high-pressure tactics, we are a performance team and results matter. We hope they motivate you as well.This is a full-time, outbound, work-from-home position.Description:Each day and each call can be different. We find new child sponsors, welcome new donors, renew event participants, and invite donors to give monthly. We thank, connect, engage and inspire. We look for creative new ways to delight on every call. We are all about teamwork, customer connections and most importantly, having fun while we do it. Inspire fundraisers connect with, laugh with and uplift the lives of our client's donors - even if just for a few moments. Their work goes beyond raising funds for some of the world's most worthwhile causes; it's about creating a human connection with every donor. They enjoy being able to deliver world-class results autonomously, while representing great causes and being part of a passionate team.Benefits:Premium wages, $20.00 - $24.00 hourly w bonuses Permanent, full-time employment with consistent hours and growth opportunities Engagement with world-class charitable organizations 100% paid training and health benefits (at 3 months) Trip incentives (to visit child sponsor communities), bonuses and rewards Training opportunities, lunch-and-learns, workshops Team culture and activities, ice breakers, community eventsYou have:A minimum of 2 years' customer service and call centre experience You love talking to people and are a great communicator You are looking for full-time hours, 40 hours a week Availability to work evenings (1:00PM - 10:00PM EST Mon -Thu, 10:00AM - 7:00PM EST Fri) Availability to work occasional Saturday shifts (10:00AM to 5:00PM) You are technically savvy and self-reliantYou provide:A professional work from home office space newer-version Windows PC or laptop computer (Apple or Mac are not supported) High-speed cabled internet connection (min 25 mbps down/5 mbps up) A USB headset and webcamIf you are looking to be part of something bigger than yourself and to join a mature call centre team with opportunities to grow and support your peers; we would love to hear from you.Inspire is committed to Employment Equity and Diversity. We do not discriminate against any employee or applicant for employment because of national origin, race, religion, ethnicity, age, disability, sex, sexual orientation, gender identity, veteran status or any other federal, provincial, or local protected class. We welcome and encourage applications from persons with disabilities. Accommodations are available upon request for candidates who participate in all aspects of the selection process.Please note: We thank everyone for their interest however only the best qualified candidates may be contacted.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"27580B3EBB1E95A716ACBF541482CB66\",\n            \"cityName\": \"26 Thomas Raddall Dr Suite 182, Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1c2c2a18082b227a\",\n            \"jobName\": \"Part-Time Customer Service Representative\",\n            \"companyName\": \"Canada Games Centre\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694363751463,\n            \"dateOfPosted\": 1693517261950,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.65802,\n                    \"lon\": -63.66342119999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax\",\n                \"formattedAddress\": \"Thomas Raddall Dr, Halifax, NS B3S, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halifax\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Canada Games Centre (CGC) is a vibrant multi-sport community and recreation centre in Halifax, Nova Scotia. We are a 176,000 sqft facility operated by a non-profit society committed to promoting physical literacy, fitness and wellness, and to supporting the needs of high performance sport & athlete development. The Centre runs sport and recreation programs, camps, fitness classes and so much more in an inclusive environment. Located in Mi’kma’ki, the ancestral and traditional lands of the Mi’kmaq people, the CGC acknowledges the Peace & Friendship Treaties signed in this Territory and recognizes that we are all Treaty People. Together, we inspire healthy active living. Position Summary For the first point of contact at the Canada Games Centre Customer Service Desk, we are looking for enthusiastic, friendly individuals to assist in delivering exceptional customer service and support to all of our guests. Must be able to multi-task and work under the pressure of a busy environment. ResponsibilitiesWelcome and greet all guests – members, drop-ins, corporate, or leisure groupsReceive, respond, and manage all inquiries – on site, phone calls, and email – in a timely mannerCommunicate policies, procedures, updates, and all other required information to guestsAccept and process all payments – cash, credit card, etc.UpsellFollow opening and closing proceduresMaintain files in proper orderBe able to multi-task in a fast-paced environmentAbide by Canada Games Centre policies and procedures – phone etiquette, dress code, etc.Qualifications MandatoryHigh school graduate – some level of post-secondary education is considered an assetExperience working with the public in a similar roleExperience working in a facility or venueCustomer service experience – i.e., the retail or hospitality industriesExperience and comfort using computers and various software programsExperience processing financial transactions – cash handling, payment processing, etc.DesirableDemonstrate strong interpersonal, communication, and listening skillsBe actively engaged and excited about your roleHave a proactive and positive attitudeMember and guest focusedAlways conduct oneself with integrity and professionalismBe detail oriented and well organizedDemonstrated problem solving skills with a solution-based approachWork well under pressureExperience working in a diverse, multi-cultural environmentMotivated by the success of othersUnderstand and appreciate the role that sport and recreation plays in healthy communitiesWorking ConditionsDaytime, evening and weekend availability requiredWorking environment includes physical, emotional, and mental demandsSafe use of all protective / barrier equipment as required by the employerExposure to loud noises and ability to concentrate in a busy environmentNotesCriminal Record & Child Abuse Registry checks will be required as part of the hiring processWhat’s in it for you?Free facility membershipFree parking and close proximity to Halifax TransitAmazing team environmentOrganization committed to extraordinary staff and customer experienceCompensation The compensation for this position is $15.50 per hour (plus 4% vacation pay). Applications Instructions To apply, please submit a cover letter and resume, outlining how you meet the specific qualifications listed in the job posting to Wasan Nayfeh at careers@canadagamescentre.ca by Friday, September 29th, 2023. Please include your full name and the position you are applying for in the subject line. Failure to properly identify your application or attach working documents may result in your application being omitted. We are a welcoming and supportive environment whose goal is to be a diverse workplace representative of the citizens we serve. Indigenous people, persons with disabilities, African Nova Scotians, racially visible persons, women in occupations where they are under-represented, and the LGBTQIA2S+ community are encouraged to self-identify on your application.\",\n            \"location\": \"Thomas Raddall Dr, Halifax, NS\"\n        },\n        {\n            \"id\": \"BDE2B0D9DE7AC32CCE99FE6275D78945\",\n            \"cityName\": \"140 Ellen St, Miramichi, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a41b0dc3577a8904\",\n            \"jobName\": \"Customer Service/Bakery Assistant\",\n            \"companyName\": \"Cake a Chance\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694363426980,\n            \"dateOfPosted\": 1692662081298,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.0016309,\n                    \"lon\": -65.565644\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Miramichi\",\n                \"formattedAddress\": \"Ellen St, Miramichi, NB E1V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Miramichi\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ellen St, Miramichi, NB Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Tuesday-Friday 9-5Saturday 9-3-Have an outgoing personality-Hard-working, efficient-able to multitask-able to work unsupervised-detail oriented-strong work ethic, punctual-provide excellent customer serviceDuties-serving customers-Taking orders in person and over the phone-packing up orders-keeping out front fully stocked-Ensure that the store front is clean-able to stand for 8 hours-must be able to lift 20kg-frost cupcakes/small display cakes--make boxes/cut circles-cleaning/doing dishes-sweep/mop floors-frost cupcakes (will train)-decorating cookies (will train)- keep show case, fridges fully stocked-take inventory-able to help with fondant details for orders is an asset. (can train)*Need food safety courseJob Type: Full-timeSalary: From $16.00 per hourBenefits:Casual dressStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftSupplemental pay types:TipsEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In personApplication deadline: 2023-08-31Expected start date: 2023-09-05\",\n            \"location\": \"Ellen St, Miramichi, NB\"\n        },\n        {\n            \"id\": \"5FBF6F1F0C4D7878248C3648E914FA60\",\n            \"cityName\": \"3900 12 St NE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1daecee555ee028b\",\n            \"jobName\": \"Nutritional Support Customer Service Representative\",\n            \"companyName\": \"Advanced Orthomolecular Research\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694363403324,\n            \"dateOfPosted\": 1693517257539,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.10407319999999,\n                    \"lon\": -114.0365001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"11 St NE, Calgary, AB T2E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"AOR is one of Canada’s fastest growing Nutraceutical health supplement organizations. Our market leading premium products are manufactured and distributed primarily to specialty retailers throughout Canada and the United States.ResponsibilitiesLearn and maintain high level product knowledge of AOR products to help educate customersPromote AOR’s brand and products and capture opportunities to upsell or cross sell AOR productsProcessing orders by phone, fax and emailMaintaining up to date and accurate customer filesHandling customer creditsFilter and direct calls, and emails to the appropriate departmentsSupply relevant marketing materials to customers and fellow staff to ensure informational needs are metResolve customer complaints in a positive, timely, win/win manner. Document issues and actions taken in accordance with company processes for future problem analysis and elimination.Answer all technical questions on nutrition and our product line for customers via the phone, tickets and live chat.Receive monthly training on new and existing products.Investigate complicated customer questions with the research team, and occasionally the Quality Control team.Make suggestions on AOR products for customers based on a condition or symptom they might be trying to correctAssist the Customer Service Manager as necessaryAssist Marketing, Shipping, and Finance departmentWork synergistically with the both the Internal and External teamQualifications and SkillsObtained a Certificate in Holistic Nutrition or equivalent (Required)Completed post- secondary diploma in business, marketing, human resources, health science) is a nice to have but not required.Should have a strong work ethic, inter-personal skills, and independentExperience within a health- related industry would be considered an assetExperience working with Navision would be considered an assetJob Types: Full-time, PermanentSalary: $19.00-$22.00 per hourBenefits:Casual dressDental careDisability insuranceEmployee assistance programExtended health careLife insuranceOn-site parkingPaid time offRRSP matchStore discountVision careWellness programSchedule:8 hour shiftDay shiftMonday to FridayWork Location: In person\",\n            \"location\": \"St NE, Calgary, AB\"\n        },\n        {\n            \"id\": \"5DB6EBB41445BD0E9841B892A7594F2B\",\n            \"cityName\": \"Manitoba\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=76f0aa93ad896733\",\n            \"jobName\": \"Work-At-Home Customer Service RepresentAtive Job Openings (Full-Time)\",\n            \"companyName\": \"Mci Careers\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694362703969,\n            \"dateOfPosted\": 1665853894972,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.7608608,\n                    \"lon\": -98.8138762\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Manitoba, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" LOCATION: Remote Work-at-Home JOB TYPE: Full-Time PAY TYPES: Hourly + Bonus SALARY: $14.50 / hour BENEFITS & PERKS: REMOTE REPRESENTATIVE: Work-From-Home, Paid Training, Paid Time Off, Medical, Dental, Vision, Life Insurance, Retirement, Flexible Schedules, Company Laptop, Daily Contests, Prizes, Casual Dress Code, Regular Raises APPLICATION DETAILS: No Resume Required, Phone Interview POSITION OVERVIEW:  Sydney Call Centre, a MCI company is looking for work at home customer service, help desk, technical support, and sales representatives to support remote work demand. In these roles, you will handle inbound customer inquiries, or troubleshoot basic technical issues, and assist customers in adding or removing products and services. There are full-time positions available for almost any schedule, day, night, seven days a week.  The positions offers a competitive base pay, schedule, level, plus benefits for full-time, paid vacation, and variable bonus and contest incentives. All it takes to get started is for you to complete an easy online application and an informal interview with a talent acquisition specialist. If you do not have your equipment, MCI will provide it. You will need a home broadband connection.  -:  POSITION RESPONSIBILITIES:  WHAT DOES A CALL CENTRE REPRESENTATIVE DO? Develop your abilities and grow with our team, interacting with customers from coast to coast making outbound calls. Call Centre Representatives are responsible for the following tasks: Listen to customers, understand their needs, and resolve customer issues Utilize systems and technology to complete account management tasks Recognize sales opportunity and apply sales skills to upgrade Explain and position the products and processes with customers Appropriately escalate customer dissatisfaction with managerial team Ensure first call resolution through problems solving and effective call handling CANDIDATE QUALIFICATIONS:  WONDER IF YOU ARE A GOOD FIT? MCI provides all new employees with world-class training, so all positive, driven, and confident applicants are encouraged to apply. Ideal candidates for this position are highly motivated, energetic, and dedicated.Qualifications Must be 18 years of age or older High school diploma or equivalent Excellent organizational, written, and oral communication skills The ability to type swiftly and accurately (20+ words a minute) Basic knowledge of Microsoft Office Suite (Excel, PowerPoint, Word, Outlook) Basic understanding of Windows operating system Highly reliable with the ability to maintain regular attendance and punctuality The ability to evaluate, troubleshoot, and follow-up on customer issues An aptitude for conflict resolution, problem solving and negotiation Must be customer service oriented (empathetic, responsive, patient, and conscientious) Ability to multi-task, stay focused and self manage Strong team orientation and customer focus The ability to thrive in a fast-paced environment where change and ambiguity prevalent Excellent interpersonal skills and the ability to build relationships with your team and customers CONDITIONS OF EMPLOYMENT: Must be authorized to work in their country of residence (The United States or Canada) If needed, must be willing to submit up to a LEVEL II background and/or security investigation with a fingerprint. Job offers are contingent on background/security investigation results COMPENSATION DETAILS:  WANT AN EMPLOYER THAT VALUES YOUR CONTRIBUTION? We believe that hard work should pay off, so we make sure that our compensation and total rewards are competitive. Standard starting compensation is commensurate with experience. Regular reviews and raises are awarded based on tenure and performance, so our employees make more each year. Employees earn paid time off as well as paid holidays and paid training opportunities. Regular daily, weekly and monthly incentives are part of the overall compensation our team members enjoy and include monetary incentive and prizes such as computers, tablets, phones, TV’s, trips, tickets, and even cars. In addition to our standard group benefits offering for full-time employees following 90-days of employment, all employees are eligible to opt for our MEC medical plan after only 30-days of employment. Benefits options and plans vary slightly by location. JUST A FEW OF THE BENEFITS Medical, Dental, and Vision Coverage Options Paid Time-Off Advancement Opportunity Fun, Engaging Work Environment Casual Dress Code Cash and Prize Contests PHYSICAL REQUIREMENTS:  This job operates in a professional office environment. While performing the duties of this job, the employee will be largely sedentary and will be required to sit/stand for long periods while using a computer and telephone headset. The employee will be regularly required to operate a computer and other office equipment, including a phone, copier, and printer. The employee may occasionally be required to move about the office to accomplish tasks; reach in any direction; raise or lower objects, move objects from place to place, hold onto objects, and move or exert force up to forty (40) pounds.  REASONABLE ACCOMMODATION:  Consistent with the Americans with Disabilities Act (ADA), or the Canadian Disabilities Act (CDA) it is the policy of MCI and affiliates to provide reasonable accommodation when requested by a qualified applicant or employee with a disability unless such accommodation would cause undue hardship. The policy regarding requests for reasonable accommodation applies to all aspects of employment. If reasonable accommodation is needed, please contact Kate Murph, Vice President of Human Resources, kate.murph@mci.world.  DIVERSITY AND EQUALITY:  At MCI and its subsidiaries, we embrace differences and believe diversity is a benefit to our employees, our company, our customers, and our community. All aspects of employment at MCI are based solely on a person's merit and qualifications. MCI maintains a work environment free from discrimination, one where employees are treated with dignity and respect. All employees share in the responsibility for fulfilling MCI's commitment to a diverse and equal opportunity work environment. MCI does not discriminate against any employee or applicant on the basis of age, ancestry, color, family or medical care leave, gender identity or expression, genetic information, marital status, medical condition, national origin, physical or mental disability, political affiliation, protected veteran status, race, religion, sex (including pregnancy), sexual orientation, or any other characteristic protected by applicable laws, regulations, and ordinances. MCI will consider for employment qualified applicants with criminal histories in a manner consistent with local and federal requirements. MCI will not tolerate discrimination or harassment based on any of these characteristics. We adhere to these principles in all aspects of employment, including recruitment, hiring, training, compensation, promotion, benefits, social and recreational programs, and discipline. In addition, it is the policy of MCI to provide reasonable accommodation to qualified employees who have protected disabilities to the extent required by applicable laws, regulations, and ordinances where an employee works. ABOUT MCI (PARENT COMPANY):  MCI helps customers take on their CX and DX challenges differently, creating industry-leading solutions that deliver exceptional experiences and drive optimal performance. MCI assists companies with business process outsourcing, staff augmentation, contact center customer services, and IT Services needs by providing general and specialized hosting, software, staff, and services.  In 2019 Marlowe Companies Inc. (MCI) was named by Inc. Magazine as Iowa’s Fastest Growing Company in the State of Iowa and was named the 452nd Fastest Growing Privately Company in the USA, making the coveted top 500 for the first time. MCI’s subsidiaries had previously made Inc. Magazine's List of Fastest-Growing Companies 15 times respectively. MCI has fifteen business process outsourcing service delivery facilities in Iowa, Georgia, Florida, Texas, Massachusetts, New Hampshire, South Dakota, New Mexico, California, Kansas, and Nova Scotia.  Driving modernization through digitalization, MCI ensures clients do more for less. MCI is the holding company for a diverse lineup of tech-enabled business services operating companies. MCI organically grows, acquires, and operates companies that have a synergistic products and services portfolios, including but not limited to Automated Contact Center Solutions (ACCS), customer contact management, IT Services (IT Schedule 70), and Temporary and Administrative Professional Staffing (TAPS Schedule 736), Business Process Management (BPM), Business Process Outsourcing (BPO), Claims Processing, Collections, Customer Experience Provider (CXP), Customer Service, Digital Experience Provider (DXP), Account Receivables Management (ARM), Application Software Development, Managed Services, and Technology Services, to mid-market, Federal & enterprise partners. MCI now employs 10,000+ talented individuals with 150+ diverse North American client partners across the following MCI brands: GravisApps, Mass Markets, MCI Federal Services (MFS), The Sydney Call Center, OnBrand24, and Valor Intelligent Processing (VIP).  DISCLAIMER:  The purpose of the above job description is to provide potential candidates with a general overview of the role. It's not an all-inclusive list of the duties, responsibilities, skills, and qualifications required for the job. You may be asked by your supervisors or managers to perform other duties. You will be evaluated in part based upon your performance of the tasks listed in this job description. The employer has the right to revise this job description at any time. This job description is not a contract for employment, and either you or the employer may terminate employment at any time, for any reason. REGARDING COVID-19:  As an employer supporting critical Federal, State, Provincial, and Commercial clients, we have taken steps to ensure that we remain operational while taking every precaution possible to prevent the spread of COVID-19 and keep our employees safe. Measures include social distancing for those working on-site, frequent deep cleaning and disinfecting of workstations and common areas, daily contactless temperature checks for those essential employees working on-site, travel policies limiting travel and mandatory quarantine, reporting and quarantine processes and policies for those exposed, and requesting masks to be worn when on-site employees are not at their workstation.REGARDING MASKS To help protect our candidates and employees, we are REQUESTING that all on-site candidates wear a mask to interviews and training. In locations where state or local government has mandated the use of masks, we will abide by the mandate, and REQUIRE masks be worn when on-location. For more information on MCI’s response to COVID-19 please visit www.mci.world/covid-19.\",\n            \"location\": \"Manitoba\"\n        },\n        {\n            \"id\": \"CDA0BDB1AC0AED665880E54E60B6F0D7\",\n            \"cityName\": \"60 Calder St, Red Deer, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fbcf853e5d5ea076\",\n            \"jobName\": \"Customer Service/Retail Sales (Shine Genius)\",\n            \"companyName\": \"Mint Smartwash\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694362651293,\n            \"dateOfPosted\": 1692658282748,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.2690328,\n                    \"lon\": -113.8114955\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Red Deer\",\n                \"formattedAddress\": \"Red Deer, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Red Deer County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Red Deer, AB\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"COMPANY OVERVIEWMint Smartwash (“Mint”) is an unparalleled growth story in the express tunnel car wash market space, strategically headquartered in Calgary, Alberta, with operations located in Western Canada and Montana, USA. The mission of Mint Smartwash is To provide a superior car wash experience delivering epic shine while saving time and feeling mint! Mint is highly focused on capitalizing on their successes to date, as an industry leader, innovator, and employer of choice to expand their presence across our geographical markets. The Mint leadership team is a dedicated group of car wash enthusiasts with strong operational and business competencies exemplifying a growth mind set, in the pursuit of excellence. At Mint we look to SHINE everyday through living our corporate values of being MAVERICKS, helping our COMMUNITIES, investing in the future of our PEOPLE, neutralizing our ENVIRONMENTAL impact and delivering EXCELLENCE in customer experience.COMPENSATION· Base pay starting at $15.00 per hour.· UNLIMITED earning potential! Earn an extra $15.00 or MORE when you match customers with the right membership product!· Profit sharing through our monthly bonus program! Sharing up to 1% of revenue by achieving our targets and following our processes while achieving our shared goals.· Investing in the future of our people through our professional development / scholarship program.REPORTINGReports directly to General Manager, takes direction from Assistant Managers & Supervisors.Why does this role exist? To build customer relationships through great service. Providing sales support to customers and driving membership sales for the business. Shine Genius is also responsible to identify prohibited vehicles and ensure they do not enter the wash.CORE ACCOUNTABILITIES(listed in order of importance)Customer Service: Ensure we are providing outstanding customer service throughout the wash experience. Provide our customers with knowledgeable and friendly service.Membership and Wash Sales: Develop sales skills to drive membership sales at the location.Tunnel Operations: Develop skills to operate and troubleshoot the equipment in the wash tunnel, and vacuum plaza.Safety Performance: Be an active participant in safety meetings, hazard assessments and training.Facility Upkeep: Ensuring that all aspects of a Mint Smartwash location is neat and tidy all the time.Professional Development: Ensure you are continuously learning and growing your skillset through Mint's competency-based training program.KEY RESPONSIBILITIESCustomer Service· Greet the customer with a smile and wave, this is the foundation for creating a welcoming and fun environment.· Embody professionalism with colleagues and customers. Wear the Mint uniform and take pride in its appearance.· Represent Mint Smartwash in the community in a positive manner.· Guide and mentor new employees to become successful Shine Genius’s.Membership and Wash Sales· Follow the Mint sales process and execute on all aspects of it.· In depth knowledge of the products and services we offer.· Be able to execute sales promotions.· Consistently execute on sales targets.· Screen vehicles at the paystation and radio any requirements to the operations staff.Tunnel Operations· Develop in-depth knowledge of the wash equipment, and how each component is supposed to operate.· Manage the tunnel. This includes monitoring no pile-ups and being in the tunnel at all times that a vehicle is going through the wash.· Work with the team to improve wash quality.· Work with the team to ensure we meet uptime targets for the wash.· Support maintenance personnel by keeping the equipment room in good order and reporting any issues or leaks that develop.Understand the car wash chemistry and how to add, document and work on chemical panels.Safety Performance· Bring forward safety concerns to your supervisor and log them as Hazard ID's in Mint Ops.· Complete, understand and put into action the required safety training.· Participate in Safety Meetings.Facility Upkeep· Own the daily tasks that keep the office, pay stations, vacuum lot and entire site looking Mint.· Actively look for ways to improve the cleanliness or appearance of the facility.· Become proficient with Mint Operations software and how to complete tasks and checklists.Professional Development· Become an expert in all tasks related to the Shine Genius position.· Work through the competency-based training program to develop the skills required for the next role.CORE COMPETENCIES· Customer Orientation: Focused on ensuring we provide excellent customer service. This includes direct interaction as well as wash quality and facility and employee presentation.· Team Player: Concerned with team success as well as individual performance; works well with other team members.· Safety Leadership: Robust understanding of safety principles and ability to lead, train and enforce safe operating procedures.· Inquisitive: Seeks to understand and asks questions about things they don't know. Empowers themselves with knowledge.· Well-Developed Communication Skills: Fosters mutual understanding using solid verbal communication skills; able to effectively influence and positively negotiate with others.Job Types: Full-time, Part-time, PermanentPart-time hours: 20 per weekSalary: From $15.00 per hourBenefits:Dental careExtended health carePaid time offVision careSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayMorning shiftWeekends as neededSupplemental pay types:Commission payEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Red Deer, AB\"\n        },\n        {\n            \"id\": \"5A6F30B19C5C7D5971E7C25545C0F6BA\",\n            \"cityName\": \"Whitby, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8c7edcf5b3bbbb47\",\n            \"jobName\": \"Clerk, Customer Service\",\n            \"companyName\": \"P.D. Mclaren Limited\",\n            \"rowSalary\": \"$45,000 a year\",\n            \"date\": 1694361477341,\n            \"dateOfPosted\": 1693511345102,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8975446,\n                    \"lon\": -78.94293290000002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Whitby\",\n                \"formattedAddress\": \"Whitby, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Whitby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: BilingualHours: 40 hours per weekEducation: Secondary (high) school graduation certificateExperience: 7 months to less than 1 yearTasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Receive and log complaints Receive payments Answer written and oral inquiries Prepare or oversee preparation of reports, briefs, bibliographies, speeches, presentations, Website content and press releases Explain procedures, risks and benefits to clients Computer and technology knowledge Internet MS Excel MS Outlook MS Word MS PowerPoint MS Office Work conditions and physical capabilities Attention to detail Fast-paced environment Tight deadlines Work under pressure Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Judgement Ability to multitask Screening questions Are you currently a student? Are you currently legally able to work in Canada? Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Health benefits Dental plan Health care plan Paramedical services coverage Long term benefits Long-term care insurance\",\n            \"location\": \"Whitby, ON\"\n        },\n        {\n            \"id\": \"F165ABD4D37553E78784130B34F99AFC\",\n            \"cityName\": \"1055 St Laurent Blvd, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2f88a28757d6ac50\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Adonis Groupe\",\n            \"rowSalary\": \"From $16.10 an hour\",\n            \"date\": 1694360730163,\n            \"dateOfPosted\": 1692655831593,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4184938,\n                    \"lon\": -75.6342112\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"St. Laurent Blvd, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking a multi-talented and highly motivated customer service professional to join our team. The ideal candidate will have strong communication skills, a keen attention to detail, and the ability to quickly learn and adapt to the ever-changing retail environment. This position is a great fit for an individual who possesses these skills and is interested in working in a dynamic and fast-paced retail environment.SummaryAs the last point of contact with customers, it is the cashier's responsibility to ensure that the customer's experience has been positive, that they have found everything they were looking for and that they leave the store with a smile. The Cashier takes care of the payment stage, balances the register and finally, makes sure that his workstation is clean.Specific Tasks· Greet customers and make them feel welcome· Advise and answer customers' questions· Provide exemplary customer service· Ask the customer if they have found everything they were looking for; if not, ask a clerk or cashier's assistant to pick up the product· Ensure that all items have been paid for and there are no products on the bottom of the cart· Ensures that the customer is of legal age to purchase liquor and lottery products· Record all sales in accordance with store procedures· Collects money due from customers (cash, credit or debit card)· Completes purchase orders for delivery· Assist in the packaging of products when the packer is not available· Contact the packer or clerk to verify the price of a product· Clean the work area (carpet and cash counter)· Make cash deposits during the day, according to policy· Count the cash float, according to policy· Close the cash register, produce the cash report and make deposits· Adhere to store dress and personal hygiene code· Adhere to safety standards and wear personal protective equipment as required· Follow food safety procedures as required by the departmentEligibility Criteria· Cashier Experience is an asset· Past work experience in a grocery store setting is an AssetCompetencies· Focused on excellent customer service· Honesty and speed· Team player· Autonomous and resourceful· Sense of responsibilityThe Cashier works as a team with the members of the Department. They also interact with customers in order provide them with good service.Adonis welcomes and encourages applications from people with disabilities. Every effort will be made to provide accommodations requested by candidates taking part in all aspects of the selection process.Job Type: Full-timePay: From $16.10 per hourBenefits:On-site parkingDay range:Every WeekendMonday to FridayShift:Day shiftEvening shiftWork setting:Grocery storeWork Location: In person\",\n            \"location\": \"St-laurent, Boulevard, Ottawa, ON\"\n        },\n        {\n            \"id\": \"2440F44B646233C725F496172BA83E39\",\n            \"cityName\": \"Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d50f1931e01b0fb3\",\n            \"jobName\": \"Customer Service Representative - Insurance\",\n            \"companyName\": \"Recrute Action Inc.\",\n            \"rowSalary\": \"$21.02 an hour\",\n            \"date\": 1694360574810,\n            \"dateOfPosted\": 1692655676076,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.64876350000001,\n                    \"lon\": -63.5752387\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax Regional Municipality\",\n                \"formattedAddress\": \"Halifax Regional Municipality, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halifax Regional Municipality\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 2 years to less than 3 yearsWork setting Insurance company Tasks Answer inquiries and provide information to customers Computer and technology knowledge MS Windows Sales experience Call centre Security and safety Criminal record check Work conditions and physical capabilities Attention to detail Fast-paced environment Personal suitability Efficient interpersonal skills Excellent oral communication Excellent written communicationWork Term: TemporaryWork Language: EnglishHours: 37.5 hours per week\",\n            \"location\": \"Halifax, NS\"\n        },\n        {\n            \"id\": \"9BBFFDD0FF6FF3F241C017CDF47CB4E0\",\n            \"cityName\": \"140 Ellen St, Miramichi, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=defd90c2caf2bc22\",\n            \"jobName\": \"Customer Service/Bakery Assistant\",\n            \"companyName\": \"Cake a Chance\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694360373756,\n            \"dateOfPosted\": 1692662087851,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.0016309,\n                    \"lon\": -65.565644\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Miramichi\",\n                \"formattedAddress\": \"Ellen St, Miramichi, NB E1V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Miramichi\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ellen St, Miramichi, NB\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Tuesday-Friday 9-5Saturday 9-3-Have an outgoing personality-Hard-working, efficient-able to multitask-able to work unsupervised-detail oriented-strong work ethic, punctual-provide excellent customer serviceDuties-serving customers-Taking orders in person and over the phone-packing up orders-keeping out front fully stocked-Ensure that the store front is clean-able to stand for 8 hours-must be able to lift 20kg-frost cupcakes/small display cakes--make boxes/cut circles-cleaning/doing dishes-sweep/mop floors-frost cupcakes (will train)-decorating cookies (will train)- keep show case, fridges fully stocked-take inventory-able to help with fondant details for orders is an asset. (can train)*Need food safety courseJob Type: Full-timeSalary: From $16.00 per hourBenefits:Casual dressStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftSupplemental pay types:TipsEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In personApplication deadline: 2023-08-31Expected start date: 2023-09-05\",\n            \"location\": \"Ellen St, Miramichi, NB\"\n        },\n        {\n            \"id\": \"E4930A03AD5751ACD144F5AE9F7B6985\",\n            \"cityName\": \"Kenora, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=16237b593e382179\",\n            \"jobName\": \"Clerk, Customer Service\",\n            \"companyName\": \"Xtracash Ltd\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694360364590,\n            \"dateOfPosted\": 1692657332860,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.7670416,\n                    \"lon\": -94.4893924\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kenora\",\n                \"formattedAddress\": \"Kenora, ON P0V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Kenora District\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kenora\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Will trainWork setting Private sector Security and safety Bondable Criminal record check Transportation/travel information Own transportation Work conditions and physical capabilities Attention to detail Personal suitability Excellent written communication Organized Reliability Team playerWork Term: PermanentWork Language: EnglishHours: 20 to 30 hours per week\",\n            \"location\": \"Kenora, ON\"\n        },\n        {\n            \"id\": \"0B8E1FB93589746EC8067EFFD4B001B0\",\n            \"cityName\": \"Harrow, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6ed2c52c118497e3\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Viewpointe Estate Winery\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694357120230,\n            \"dateOfPosted\": 1692657234468,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.0355591,\n                    \"lon\": -82.918148\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Essex\",\n                \"formattedAddress\": \"Harrow, Essex, ON N0R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Essex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Essex\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Viewpointe Estate Winery is looking for a qualified part-time candidate for Customer Service Associate . Are you someone that is friendly, well spoken and has a passion for wine with an interest to develop that further? Capable of providing guests with a memorable and enjoyable experience?We strive to make all of our staff and guests feel welcomed and appreciated. We are looking for someone with a great work ethic and the integrity who is capable of providing the highest level of customer satisfaction. This candidate will be working in the Tasting Bar, on the Patio and in Retail Store.Smart serve certification is a must.Looking for someone with a flexible schedule but capable of working Day shifts Daily including weekends and holidaysThe Candidate should:Be able to provide the highest level of customer service at all times (for the guests' entire experience)Have 1-3 years experience in the wine, hospitality or retail industryBe able to anticipate guests' needs, offer suggestions and anticipate customer concerns and requestsBe responsible for educating guests on Viewpointe's wines & wine-making processes in a friendly, informative, professional way , including suggestive-selling to provide the customer with a complete satisfying experience.Be able to effectively operate the POS system with accuracy ,efficiency and provide accurate cash counts and perform opening & end-of-shift closeout tasks.Stock shelves and maintain wine inventory levelsEnsure that the retail area & other common areas are kept swept, mopped & cleaned ,including washrooms, halls and the outdoor patio areasBus and clear tables as well as sanitizing as per Covid guidelinesAssist with promotion, display and marketing of merchandise and ensure specials, features and/or events are highlightedPossess presentation skills-leading guest through tastings or toursBe able to lift 40 pounds (wine cases)Be able to work independently and within a team structure.Have excellent written and oral communication skillsHave the ability to organize & prioritize the workload and possess quick decision-making skills and withstand a high-pressure environment.Follow all policies, procedures and service standardsPerform other duties as assignedViewpointe welcomes and encourages applications from people with disabilities. Accommodations are available on request for candidates taking part in all aspects of the selection processPart-time hours: 10-24 per week*Job Types: Part-time, CasualSalary: $16.50 per hourCOVID-19 considerations:All customers are required to where a mask until seated, PPE provided, curbside service availableBenefits:Discounted or free foodStore discountCOVID-19 precautionsPPE provided, curbside service availableJob Types: Part-time, Fixed term contract, SeasonalContract length: 6 monthsPart-time hours: 10-24 per weekSalary: $16.50 per hourBenefits:Store discountDay range:HolidaysMonday to FridayWeekend availabilityShift:Day shiftExperience:sales: 2 years (preferred)customer service: 2 years (preferred)Work Location: In personExpected start date: 2023-08-28\",\n            \"location\": \"Harrow, ON\"\n        },\n        {\n            \"id\": \"86A02E302D9BB001C96DBBD5B3F80100\",\n            \"cityName\": \"Central Mountain Air in Campbell River, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5a0943cd04b1fb68\",\n            \"jobName\": \"Customer Service And Ramp Agent\",\n            \"companyName\": \"Central Mountain Air\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694356386877,\n            \"dateOfPosted\": 1693508667664,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.03312260000001,\n                    \"lon\": -125.2733353\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Campbell River\",\n                \"formattedAddress\": \"Campbell River, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Strathcona\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Campbell River\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Central Mountain Air, we pride ourselves in providing vital air connectivity to remote communities nestled within the stunning landscapes of Alberta and British Columbia. Our commitment to safety, reliability, and exceptional customer service is at the core of everything we do. Join our dedicated team and become an integral part of bringing people together and fostering economic growth in these unique regions. We are currently seeking a Part-Time Customer Service Agent/Ramp Agent to join our team at our Campbell River, BC base.Customer Service Agents are part of a team that works in conjunction with crew members and ground agents to escort and board passengers, take reservations, and maintain baggage accuracy and safety.Customer Service Agents report to the Customer Service Supervisor.Job ResponsibilitiesCustomer Service AgentCheck-in and greeting passengers, taking reservations and handling payments (when necessary)Responding to passenger inquiriesAssisting passengers with disabilities during deplaning and enplaningProcessing baggage and cargoGate operations and flight closure, communicating load counts to flight crewsOther duties as assignedRamp AgentHandling passenger baggage and cargo while adhering to all ramp/airside methods and standardsMarshalling aircraft in and out of the ramp area safelyOperating and positioning all airside equipmentPerforming basic baggage equipment maintenance checksAssisting passengers with disabilities during deplaning and enplaningCoordinate aircraft de-icingAccepting and receiving cargoCommunicate load counts to flight crewsOther duties as assignedJob RequirementsMust have a valid driver’s license or transferrable license (“N” license at minimum)Ability to lift 70lbs/32kgs repetitivelyAbility to bend, kneel, crawl, stoop, climb repetitivelyWork in confined spacesSafety conscious- able to keep safety a priority in all tasksSuperior customer service skillsGood communication and interpersonal skillsAbility to work independently as well as in a team environmentAbility to work flexible hours, including split shifts and weekend coverageWillingness to work outside in adverse weather conditionsGood computer skillsA positive attitude with the ability to be flexibleMust be able to obtain and retain an Airport RAICBenefits of Working at Central Mountain Air (part-time employees)Standby travel within Central Mountain Air network for employees, their eligible family members, and their buddies (not including fees and taxes)Free cargo shipping for employees on CMA flightsCentral Mountain Air is an equal opportunity employer and values diversity in our workplace. Our requirement is that you have the skills and abilities to do the job and the attitude of a team player. We encourage applications from all qualified individuals regardless of race, nationality, ethnic origin, color, religion, age, sex, sexual orientation, marital status, family status, and disability.Central Mountain Air thanks all applicants, however, only those selected for an interview will be contacted.Job Type: Part-timePart-time hours: 2 - 3 per weekSalary: $17.00-$18.00 per hourAbility to commute/relocate:Campbell River, BC V9H 1T5: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Campbell River, BC\"\n        },\n        {\n            \"id\": \"6C8DEC921DC1760B81FC910E24E6BAB0\",\n            \"cityName\": \"700 Penner St, Virgil, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c1e3d3b0ba042e26\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Penner Building Centre\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694355575613,\n            \"dateOfPosted\": 1692655486184,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.22555939999999,\n                    \"lon\": -79.12088729999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara-on-the-Lake\",\n                \"formattedAddress\": \"Penner St, Niagara-on-the-Lake, ON L0S, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Elden Street, Niagara-on-the-Lake, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you looking for a part time scenario where you can work 3 days a week and feel like your part of a family? we are looking to hire a part time cashier to work through out the week and on the very rare occasion on a saturday. We are only ever open till 6pm and we are always closed on Sundays. This position will be ongoing and is not a seasonal job so we are hoping to find someone local and part of the NOTL and Virgil community. A positive attitude and a smile mean more to us that years of experience so don't worry about having an extensive resume with a lot of experience, we can train the cashier part but you need the smile.If this sounds like what you need and are looking for please apply and we will get back to you asap.Job Types: Part-time, PermanentPart-time hours: 18-28 per weekSalary: From $15.50 per hourBenefits:Store discountDay range:Weekends as neededShift:10 hour shift8 hour shiftDay shiftShift availability:Day Shift (preferred)Work Location: In personExpected start date: 2023-09-08\",\n            \"location\": \"Elden Street, Niagara-on-the-Lake, ON\"\n        },\n        {\n            \"id\": \"F8FD7348B23AFB85A0EDC58D65B0A272\",\n            \"cityName\": \"Calforex Currency Exchange in Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9b913b3bc14aaac0\",\n            \"jobName\": \"Teller/Customer Service Representative\",\n            \"companyName\": \"Calforex Currency Exchange\",\n            \"rowSalary\": \"$16–$18 an hour\",\n            \"date\": 1694355505938,\n            \"dateOfPosted\": 1693506956047,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"NO STUDENTS/MUST SPEAK FRENCH AND ENGLISH AT HIGH LEVELCalforex is a rapidly growing foreign exchange company with branches across Canada. We are currently seeking Foreign Exchange Tellers in our Ottawa branch.Hiring either Full-Time or Part-Time positions with shifts scheduled between 10:00 am -8:00 pm seven days a week.Applicants MUST have flexible availability in order to apply for this position.The position of teller is of a front line, ambassador to both our local clientele and tourists from across the globe. We are looking for candidates to fulfill the following responsibilities:Offer excellent customer service and professionalismProbe customers to accurately determine their needs and offer appropriate products and services from Retail, Corporate and Private Client departmentsCash and time management experience (an asset)Bilingual (English and French) preferableSuccessful candidates will possess the following skill sets and qualifications:Friendly and enjoys working with the publicProfessional and courteous phone etiquetteHigh school diploma and proficient with computersAbility and desire to learn and growA professional, business dress code is in place and must be adhered to at all times. Applicants must be bondable and be able to pass a police background check.Job Type: Full-TimeSalary: $16.00 to $18.00 /hourFull-time hours: 30-40 per weekJob Types: Part-timeSalary: $16.00-$18.00 per hourCOVID-19 considerations:We have policies in place that all employees and customers must adhere to.Job Type: Full-timeSalary: $16.00-$18.00 per hourSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayNight shiftWeekends as neededExperience:customer service: 2 years (preferred)Language:French (required)Work Location: In person\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"512B4B68D8944C5B8135D604AEE293B0\",\n            \"cityName\": \"27 Allstate Pky, Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1bd750ff9d5b8897\",\n            \"jobName\": \"Customer Service Associate - 28467\",\n            \"companyName\": \"Exela Technologies\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694355504750,\n            \"dateOfPosted\": 1693506955297,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8561002,\n                    \"lon\": -79.3370188\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Markham\",\n                \"formattedAddress\": \"Markham, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Markham\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Key responsibilities include:Backfill for front receptionist- greet visitors, answer phones, and hospitality dutiesReview and process confidential and extremely time-sensitive applicationsIdentify objective data and enter (“key what you see”) at a high level of productivity and accuracy.Perform data entry task from a paper and/or document imageUtilize system functions to perform data look-up and validationMaintain high degree of quality control and validation of the completed workIdentify, classify, and sort documents electronicallyUpdate computer records on multiple local databasesLocate, retrieve, maintain, organize and assist usersRetrieve and/or archive documentsEnsure operating and quality standards are met based on service objectivesMaintain accuracy of required reports and logsEnsure the highest level of customer careEnsure adherence to business guidelines, safety, and security proceduresSupport financial results by minimizing site waste and reworkCreate excel spreadsheets, mail merge projects and word documentsAbility to multi-task and manage multiple priorities and deadlines is criticalPerform A/P functionsAssist with general facility computer task and supportProcess system access requests for clientDependable, Self-motivated and accountableMust be a team player with a solution minded attitudeTake direction from supervisor or site managerParticipate in cross-training and perform other duties as assigned (answer phones, outgoing shipments, etc)Perform other tasks as assignedAdhering to all safety procedures PositionRequirements:High school diploma or equivalent (GED) requiredMinimum of 1 year A/P related experience preferredAbility to communicate both verbally and written with customers and company personnel requiredGeneral knowledge of Access and Lotus notes databasesMust become fully familiar with a variety of on-site equipment and be capable and willing to perform first level troubleshootingStrong organizational and administrative skills preferredProficient with PC and windowsProficient in MS OfficeAbility to walk, sit, stand or sit for long periods (possibly entire shift)Ability to adhere to employee attendance policyPreferred Qualifications:One year administrative/Accounts Payable or related work experience preferredProven organizational and multi-tasking skills“The pay range for this position starts at $17; however, base pay offered may vary depending on job-related knowledge, skills, and experience. Bonus opportunities may be provided as part of the compensation package, in addition to a full range of medical, financial, and/or other benefits, dependent on the position offered.”Job Types: Full-time, PermanentPay: $17.00-$18.00 per hourDay range:Monday to FridayShift:8 hour shiftExperience:Front desk: 1 year (preferred)Administrative: 1 year (preferred)\",\n            \"location\": \"Markham, ON\"\n        },\n        {\n            \"id\": \"E66952C69E8EDCC9D62B1285E31C91EB\",\n            \"cityName\": \"120 Lowson Cres, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2230d8133c3339b0\",\n            \"jobName\": \"E-Store Customer Service Representative\",\n            \"companyName\": \"The Quark Group\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694355410328,\n            \"dateOfPosted\": 1692655592817,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8357439,\n                    \"lon\": -97.20617569999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Lowson Cres, Winnipeg, MB R3P, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"In Office Position:The E-Store Customer Service Representative performs the daily functions of the Quarks E-Store: Upload merchandise details to the website, generating picking information for the stores, and handle troubleshooting, complaints, returns, and phone orders with exceptional customer service skills.ResponsibilitiesE store Customer Service:· Respond to email and telephone queries.· Handle customer complaints, provide appropriate solutions and alternatives within the time limits; follow up to ensure resolution.· Process special orders, exchanges and returns.Website Updates:· Upload images and group merchandise for the E-Store.\\\\· Communicate with vendors to receive images in advance of upcoming season.- Various other website maintenance dutiesOrder Fulfillment:· Generate picking info to stores.· Supply shipping information to stores.Other:· Adhere to all applicable federal and provincial regulations and company policies.· Consistently look for operational improvements.· Other duties, relevant to the position, shall be assigned as required.Requirements· 1 Year of proven customer support experience or experience as a client service representative.· Strong phone contact handling skills and active listening.· Ability to multi-task, prioritize, and manage time effectively.· Excellent communication skills.· Proficient with Microsoft Excel, Word and Outlook. Knowledge of Imagine is an asset.· Team oriented, and able to manage stress.· Bilingual is an asset.Job Type: Full-timeSalary: $16.50 per hourBenefits:Dental careExtended health carePaid time offSchedule:8 hour shiftEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Lowson Cres, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"95260582D134B9257892A590239C5FB6\",\n            \"cityName\": \"London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ee360d088118769e\",\n            \"jobName\": \"Vmi Customer Service Representative\",\n            \"companyName\": \"Wfs Ltd\",\n            \"rowSalary\": \"$19.35 an hour\",\n            \"date\": 1694355407284,\n            \"dateOfPosted\": 1693506619947,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9849233,\n                    \"lon\": -81.2452768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"POSITION TITLE: VMI Customer Service RepresentativeThis is a Full Time position on the day shift. WFS Ltd. is an industrial distribution company founded in 1955. In 2014, WFS was acquired by Grainger, marking the beginning of a new and exciting chapter in WFS’ evolution. With multiple branch locations across Southwestern Ontario, and approximately 250 team members, we help professionals keep the world working, while creating a company where dedicated talented people can thrive.At WFS our true value is our people. Attracting and engaging the best team members is the key to our success. We offer a positive work environment, and we value diversity and inclusion, which makes WFS a great place to work. Are you looking for a career that offers competitive pay for performance, comprehensive benefits, an attractive pension plan, and challenging and rewarding job opportunities?Join us today!KEY DUTIES AND RESPONSIBILITIES:Travel to customer facilities in London and surrounding area on a daily or weekly basisPerform inventory cycle counts and inventory replenishment for on-site inventory and vending machine inventory at customer stocking locationsInteract with the customer’s personnel to provide the highest level of customer serviceFill customer orders and package orders for deliveryComplete deliveries as requiredOrganize and maintain accurate inventory at all stocking locationsWork with WFS Sales staff to create VMI programs for customersAdvise Inside Customer Service Representative of customer orders and requestsFollow all safety protocol in compliance with WFS' Health and Safety policies, the Occupational Health & Safety Act and the customer’s safety programSupport the WFS Quality SystemAll other duties as assignedREQUIRED EXPERIENCE AND QUALIFICATIONS:Minimum of 1 year warehouse experience, and 2 years’ customer service experienceCompletion of high school diploma, or equivalent experienceAbility to self-manage, self-motivate, and work independentlyDemonstrated winning attitudeSuperior organizational and time management skillsProven ability to build relationships with customers and business partners, and communicate effectivelyIntermediate computer literacy including Microsoft applications (Excel, Word, etc.)Ability to learn and retain new software programs relating to industrial vendingPossession of a valid G driver’s license and a clean driver’s abstractIf you don't meet every qualification, know that at WFS Ltd. we are dedicated to building a diverse, inclusive, and authentic workplace. So, if you're excited about this role but your past experience doesn't align perfectly with every skillset in the job description, we encourage you to apply anyway. You may be just the right candidate for this or other roles.WFS strives to be an employer of choice, to attract and retain top diverse talent, and to provide a safe and positive work environment for all of its team members. As part of the WFS hiring process, pre-employment background checks will be required for all external candidates. Internal candidates will be required to undergo a pre-employment background check when they move from a non-driving role to a driving role, and/or into a leadership position.WFS is an Equal Opportunity Workplace. All applicants who we believe to be qualified will receive consideration for employment without regard to race, religion, sex, sexual orientation, gender identity, national origin, age, or disability. Accommodations are available on request for all persons with disabilities taking part in the selection process.Job Type: Full-timePay: $19.35 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftMonday to FridayApplication question(s):What are your salary expectations for this position?Shift availability:Day Shift (required)Willingness to travel:50% (required)Work Location: On the road\",\n            \"location\": \"London, ON\"\n        },\n        {\n            \"id\": \"D73EBEEFFA3E26F81AEFA3F6A1A7FB22\",\n            \"cityName\": \"3105 Winston Churchill Blvd, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2fcebe79d8b0a686\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Cell N Computer\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694355333380,\n            \"dateOfPosted\": 1672355604166,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5506821,\n                    \"lon\": -79.7195594\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Winston Churchill Blvd, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Maintaining a positive, empathetic and professional attitude toward customers at all times.Responding promptly to customer inquiries.Communicating with customers through various channels.Acknowledging and resolving customer complaints.Knowing our products inside and out so that you can answer questions.Processing orders, forms, applications, and requests.Keeping records of customer interactions, transactions, comments and complaints.Communicating and coordinating with colleagues as necessary.Providing feedback on the efficiency of the customer service process.Ensure customer satisfaction and provide professional customer support.Organizing and shelving products, if neededJob Type: Part-timeSalary: $15.00-$16.00 per hourBenefits:On-site parkingStore discountSchedule:4 hour shiftMonday to FridayWeekend availabilitySupplemental pay types:Commission payCOVID-19 considerations:To keep our employees as safe as possible, we have installed clear plastic barriers and provided masks, gloves, and hand sanitizers. Additionally, masks are mandatory for Employees and Customers inside.Work Location: In person\",\n            \"location\": \"Winston Churchill Blvd, Mississauga, ON\"\n        },\n        {\n            \"id\": \"40C5251AFCD86174721FCD341B24A56E\",\n            \"cityName\": \"Aurora, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c5fec82ccb34d070\",\n            \"jobName\": \"Insurance Customer Service Representative\",\n            \"companyName\": \"Gowda-Singh Insurance Inc.\",\n            \"rowSalary\": \"$44,000 a year\",\n            \"date\": 1694354354936,\n            \"dateOfPosted\": 1693508806665,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.00648,\n                    \"lon\": -79.450396\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Aurora\",\n                \"formattedAddress\": \"Aurora, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Aurora\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 44000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    44000.0\n                ],\n                \"range\": {\n                    \"gte\": 44000.0,\n                    \"gt\": null,\n                    \"lte\": 44000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Insurance - Customer Service Representative Desjardins Agent Team Member Location: Aurora, ON Type: Full Time, Permanent, 100% In office positionThank you for your interest and time in reviewing our open posting! My name is Samantha Gowda-Singh and I am a Desjardins Insurance Agent looking for an energetic, driven and competitve sales professional interested in joining my team, helping our clients through value-based conversations and providing a truly remarkable client experience! If you are motivated, honest, indepenedent, and looking for a long-term career with a supportive team then this might just be the opportunity for you!About Our Team & Office SpaceWe help customers with their insurance and financial services needs, including Auto Insurance, Home Insurance, Life Insurance, Business InsuranceOur entire team works from our office location, and we recently moved to our new office space located in Aurora, ONWe currently have 6 team members at our agencyWe hold monthly team meetings that include lunch, where we always support a local small businessBeverage & snack station at the office included (e.g. coffee, tea, water)We love supporting our local community! e.g. participating in Chamber of Commerce events like the annual Street Festival & Home Show, donating to our local food banks.Responsibilities:Provide efficient, and exceptional customer service each and every time you interact with a client Service can include responding to telephone, email or walk-in inquiries regarding insurance eligibility, coverages, changes, claim submissions and billing clarifications.Work with the team to establish sales goals that will contribute to the agency's growth and then executing on the plan laid out by the team to achieve these goalsComplete administrative tasks as neededRequirements:Property & Casualty OTL license (preferred/must be able to obtain within 1 month of a job offer) please note all job offers are conditional upon successful completion of the OTL license - learn more about the exam through the Insurance Institute of Ontario.Previous sales or customer service experience is an assetExcellent communication skills - written, verbal and listeningProactive in problem-solvingAbility to multi-taskAbility to make presentations to potential customersstrong typing speedCompensation Package highlights:Base salary starting at $42,000 increase to $44,000/year, after successful completion of probationary period (6 months) as well as obtaining OTL license OTLEmployee benefitsUncapped income earning potential through sales commissions and incentivesPaid trainingPaid vacation (starting at 3 weeks/year)Paid personal daysPaid sick daysThese positions are with an independent contractor agent that is part of the Desjardins exclusive agent network, not with Desjardins Group or its subsidiaries. This agents’ employees are not employees of Desjardins. Independent contractor agents are responsible for and make all employment decisions regarding their employees. Samantha Gowda-Singh - Desjardins Insurance Agent Company Website: www.gowdasingh.com\",\n            \"location\": \"Aurora, ON\"\n        },\n        {\n            \"id\": \"7C675EF4DE321BE4A3D22634FFB2F01A\",\n            \"cityName\": \"Allseas Fisheries Corp. in Etobicoke, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d899f7542282b319\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Allseas Fisheries Corp.\",\n            \"rowSalary\": \"$20–$23 an hour\",\n            \"date\": 1694354228285,\n            \"dateOfPosted\": 1693506945221,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6204946,\n                    \"lon\": -79.5131983\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Etobicoke, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service RepresentativeABOUT USSince 1986, Allseas Fisheries is the industry leader in Canada in the development, marketing and direct distribution of fresh and frozen fish and seafood. Allseas Fisheries strives to provide its customers with the highest quality product combined with value in a wide line of fish and seafood products from around the world as well as value-added products.SUMMARYWe have an exciting career opportunity for a full-time Customer Service Representative to become part of our growing team! As a customer service rep, you will be required to interact with customers to address their concerns, answer their questions, and assist them with their needs. This role will be reporting to the President.KEY POSITION ACCOUNTABILITIES· Taking customer orders accurately in-person or over the phone.· Actively promotign existing and newly available goods.· Investigating complaints and updating accounts.· Dynamically selling product by providing customers with information needed to make product-related decisions.· Arranging for refunds, exchanges, and credits for returned items.· Initiating billing and processing claim payments.· Receiving payment for goods.ABOUT YOU· You have previous customer service experience with a passion for serving people.· You have experience in a sales environment.· You have knowledge of seafood and fish species which is considered an asset.· You are proficient in Microsoft Office (Word, Excel, and PowerPoint).WORK CONDITIONS· Monday to Friday, 8AM to 5PM· On-site, indoor office environment.Allseas Fisheries Inc. is an equal opportunity employer and is committed to providing employment accommodation in accordance with the Ontario Human Rights Code and the Accessibility for Ontarians with Disabilities Act. Please note that only qualified candidates will be contacted. Should you require an accommodation, please notify Human Resources at the time of scheduling your interview.If interested, apply today!Job Types: Full-time, PermanentSalary: $20.00-$23.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Overtime payAbility to commute/relocate:Etobicoke, ON M8Z 5Z8: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:customer service: 2 years (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Etobicoke, ON\"\n        },\n        {\n            \"id\": \"CF6D139BF2374C15FF6BD9A191A183D4\",\n            \"cityName\": \"2130 Morningside Ave, Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e4a2cc9f9b852c96\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Petit Delights\",\n            \"rowSalary\": \"$15.75–$16.50 an hour\",\n            \"date\": 1694354156912,\n            \"dateOfPosted\": 1694211486831,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Experience:barista, Customer Service RepresentativeDuties:- Provide exceptional customer service to ensure customer satisfaction- Assist customers with inquiries, concerns, and complaints in a professional and timely manner- Process customer orders.- Operate cash register and handle cash transactions- Maintain a clean and organized work area- Follow food handling and preparation guidelines to ensure food safety- Collaborate with team members to achieve sales goals and targets- Utilize basic math skills to calculate prices, discounts, and change accuratelyRequirements:barista: 1 year (preferred)customer service: 1 year (preferred)- Previous experience in customer service, preferably in the food industry or retail environment- Strong communication skills with the ability to effectively interact with customers and team members- Basic math skills for cash handling and retail math calculations- Knowledge of food handling and preparation guidelines is a plus- Ability to work in a fast-paced environment while maintaining attention to detail- Excellent problem-solving skills to address customer inquiries and resolve issues- Flexibility to work various shifts, including weekends and holidaysJoin our team as a Customer Service Representative and be part of a dynamic and customer-focused environment. As a valued member of our team, you will have the opportunity to provide exceptional service to our customers while gaining valuable experience in the food service industry.fulltime and long term .Note: This job description is intended to provide a general overview of the position. It is not an exhaustive list of responsibilities, duties, or qualifications associated with the job.Job Type: Full-timeSalary: $15.75-$16.50 per hourSchedule:Monday to FridayWeekends as neededShift availability:Day Shift (preferred)Overnight Shift (preferred)Night Shift (preferred)Ability to Commute:Scarborough, ON M1X 0C9 (preferred)Ability to Relocate:Scarborough, ON M1X 0C9: Relocate before starting work (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"177C37DEC910EE7F542E499D112BF0D8\",\n            \"cityName\": \"Happy Valley-Goose Bay, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d91555abe32c5fae\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Enterprise Holdings\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694353960902,\n            \"dateOfPosted\": 1692658246411,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.3016826,\n                    \"lon\": -60.3260842\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Happy Valley-Goose Bay\",\n                \"formattedAddress\": \"Happy Valley-Goose Bay, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 10\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Happy Valley-Goose Bay\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" The Customer Service Representative will provide a high level of customer service by assisting both internal and external customers, primarily face-to-face, supporting their branch and rental needs. The CAR Sr will gain knowledge through local training and hands-on experience to provide administrative support, service customers, and act as a rental back-up in a large home city branch or airport location. This role is available as regular part time  Opening available at the following branch location:6 VULCAN RD HAPPY VALLEYGOOSE BAY, NL A0P 1C0. This is a part time position that pays $19.00 / hour We offer:  Employee discount Retirement savings plan Training and development Responsibilities: Take incoming calls- reservations, rate quotes, general questions and answers, provide information and resolution for customers, other branches, insurance companies, dealerships, repair shops and other vendors  Manage outgoing calls for callback management, A/Rs and miscellaneous calls as assigned  Provide a high level of customer service by assisting customers and assessing their rental needs in person and over the phone  Meet and greet customers in a friendly and timely manner  Provide directions and general assistance  Assist to assess condition of rental upon return  Process returns, check-ins and exit kiosk transactions  Effectively market the company while picking up customers up and/or dropping off customer in a safe and courteous manner and assisting customers as needed  Understand and communicate rental terms and conditions, vehicle features and other services  May sell optional protection products, upgrades, fuel options and other additional equipment  Responsible for notifying Management of any known vehicle problems and any required vehicle maintenance  Clean vehicle interior and exterior by hand or by operating washing equipment when needed  Perform various administrative and basic accounting functions such as: research and billing support tasks, accounts receivables, transfer and key logs, run miscellaneous reports, supply maintenance, process customer billing  Perform miscellaneous and backup duties job-related duties as assigned  Equal Opportunity Employer/Disability/Veterans Qualifications: Must be at least 18 years of age. High school diploma or above required; some college preferred Must have at least 1 year prior customer service, retail, or administrative support experience Must have a valid Class 5 drivers license with no more than 2 moving violations and/or at-fault accidents on driving record in the past 3 years No drug or alcohol related conviction on driving record in the past 5 years Must be authorized to work in Canada and not require work authorization sponsorship by our company for this position now or in the future. \",\n            \"location\": \"Happy Valley-Goose Bay, NL\"\n        },\n        {\n            \"id\": \"8FEC9B6DB98F79ECF659C97F701B9A7F\",\n            \"cityName\": \"Rocky View, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f52d0393347344b8\",\n            \"jobName\": \"Customer Service Representative - 203\",\n            \"companyName\": \"Copart\",\n            \"rowSalary\": \"$22.38 an hour\",\n            \"date\": 1694353895041,\n            \"dateOfPosted\": 1692655747172,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.2086495,\n                    \"lon\": -113.9815345\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Rocky View County, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service Representative (CSR) provides exceptional customer service to internal and external customers of Copart. Through a thorough understanding of Copart practices, the CSR offers solutions that aid and facilitate a unique customer service experience. The CSR provides general administrative support while multi-tasking in hectic and stressful situations. In addition, the CSR will be the face of the Company through face-to-face and vocal interactions with all levels of customers which range from the general public to high-level managers of organizations.Receive and process payments.Update lot (vehicle) notes in the system.Answer multi-line telephone in a professional manner.Face-to-face customer interaction.Use company resources to gather information and offer solutions to meet customer needs.Contact clients to obtain vehicle pick-up information.File documents according to criteria.Process mail incoming and outgoing per criteria.Read and interpret various reports and documents.Proper completion of sale documents.Other duties as assigned.Required Skills & Experience:One year of office support experience in a customer service role preferredHigh School diplomaExcellent customer service skills and attitudeExcellent written and verbal skillsProficient with office equipmentAttention to detailProblem-solvingComputer proficiency - MS SuiteTyping speed 45WPMProfessional appearanceAbility to multi-task in a fast-paced environmentBilingual skills a plusOccasional overtime as neededFor 40 years, Copart has led its industry in innovation and customer service, enabling it to grow profitably in markets across the globe. Our success is the direct result of the skills and efforts of our talented and diverse employees. Our mindset? It's never just a \\\"job\\\" when your coworkers are like family - it's like coming home.Location: Rocky View,AB,Canada, AlbertaLocation: Rocky View,AB,Canada, AlbertaJob Type: Full-timePay: $22.38 per hour\",\n            \"location\": \"Rocky View, AB\"\n        },\n        {\n            \"id\": \"C4258EB753F5BD440503AFA1D3DB4328\",\n            \"cityName\": \"1200 Derry Rd E, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2adb27d34d3d6da0\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Dm Horizon Insurance Solutions Inc\",\n            \"rowSalary\": \"$16–$21 an hour\",\n            \"date\": 1694353894501,\n            \"dateOfPosted\": 1667212544741,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6841863,\n                    \"lon\": -79.6641054\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Derry Rd E, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position: Customer Service Representative (Insurance) - RIBO LicensedDuties and Responsibilities:Building and maintaining client relationshipsProviding customer service with the highest standard while building and maintaining great client relationshipReviewing policies and making recommendations based on individual client needs while identifying opportunities to cross-sell/upsellAdhering to underwriting guidelines set out by broker partnersFollowing up and coordinating with clients to ensure documents are completeQualifications:RIBO licensed RequiredMinimum 1 years of experience working in general insurance brokerageAbility to organize and prioritize work effectivelyHighly organized with strong attention to detailMust be able to prioritize work and meet deadlinesExcellent interpersonal and communication (written and oral) skillsPrior experience with Compuquote, Powerbroker & company partner’s portalsWhat We Offer:Competitive salaryOpportunities to grow and developOnly Qualified candidates will be contactedJob Type: Full-timeSalary: $16.00-$21.00 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayEducation:Bachelor's Degree (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Derry Rd E, Mississauga, ON\"\n        },\n        {\n            \"id\": \"43219B6B74FEF91F9FD70C44E9908F4E\",\n            \"cityName\": \"515 Dundas St W Ste 214, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=eab22acaae00b919\",\n            \"jobName\": \"Broker - Experienced Insurance Customer Service Representative\",\n            \"companyName\": \"Billyard Insurance Group\",\n            \"rowSalary\": \"From $62,000 a year\",\n            \"date\": 1694353756659,\n            \"dateOfPosted\": 1690394034176,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4750608,\n                    \"lon\": -79.73379849999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Dundas St W, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 62000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    62000.0\n                ],\n                \"range\": {\n                    \"gte\": 62000.0,\n                    \"gt\": null,\n                    \"lte\": 62000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Please only apply if you currently hold a RIBO license and have experience as a CSR.Billyard Insurance Group is attracting top insurance professionals and providing them with innovative technology, tools, and the support required to compete in the fast-changing insurance landscape. We are a rapidly growing insurance brokerage with over 40 locations across Ontario. We’re also proud to have been recognized on Insurance Business Canada’s Top Brokerages list for the last two years and named one of Canada’s Top Growing Companies on the Globe and Mail’s 2020 Report on Business.Billyard Insurance Group Oakville is seeking an energetic Customer Service Representative to join our established team.This role is responsible for all aspects of account management from new business to servicing clients. In addition to providing excellent customer service, individuals must be able to prioritize work and meet deadlines. If you are comfortable working in a technology-focused environment that continues to evolve, we encourage you to apply.There is a great opportunity to write your own business and make your salary + commission.Feel free to visit our website www.thebig.caResponsibilities:Building and maintaining client relationshipsProviding superior customer service when responding to client inquiries and resolving concerns in a timely mannerReviewing policies and making recommendations based on individual client needs while identifying opportunities to cross-sell/upsellAdhering to underwriting criteria set out by broker partnersFollowing up and coordinating with clients to ensure documents are completeMaking changes through company partners’ portals and websitesConducting billing calls as neededIf you’d like to try sales, we have an opportunity available with an attractive commission structure, although not requiredAttributes:Ambitious and self-motivatedAbility to thrive in a fast-paced environmentPositive attitude and customer-focusedExcellent interpersonal and communication (written and oral) skillsStrong computer skills with ability to learn new software systemsQualifications:RIBO license is requiredExperience in insurance industry is also a requirementRequired education:High school or equivalentWhat We Offer:Competitive salaryHealth care and dental care benefits for you and your familyOpportunities to grow and developJob Types: Full-time, PermanentSalary: From $62,000.00 per yearBenefits:Casual dressDental careExtended health careLife insuranceWork from homeSchedule:8 hour shiftMonday to FridayNo weekendsSupplemental pay types:Bonus payCommission payEducation:Secondary School (preferred)Work Location: Hybrid remote in Oakville, ON\",\n            \"location\": \"Dundas Street West, Oakville, ON\"\n        },\n        {\n            \"id\": \"B63AE0AF4C0EDECB72454D1F8838F0CD\",\n            \"cityName\": \"17531 Stony Plain Rd NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=15eed5034966c42f\",\n            \"jobName\": \"Customer Service Representative (Part Time)\",\n            \"companyName\": \"Homes Alive Pets\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694353269161,\n            \"dateOfPosted\": 1694353268975,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5416043,\n                    \"lon\": -113.6228336\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Stony Plain Rd, Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Why Homes Alive Pets? This isn't your average pet store. You'll feel it when you walk through our door. It's more than beautifully-designed locations and friendly staff – it's a belief in a higher standard for pet care. Our stores are community hubs – somewhere to come and share an experience with your pet. You'll immediately notice a refreshing shopping experience at Homes Alive because we take a brand-agnostic, knowledge-over-upselling approach. Rather than pushing a certain product or feeling pressured to meet sales quotas, our team's attention is solely focused on getting to know you and your pet and empowering you to make confident decisions. Our Mission is to add value to every life. When we say every life, we include guests and their pets. Employees and co-workers. Brand reps and vendors. Even our communities. There is life all around us, and it is our mission to add value qualitatively and quantitatively. In the qualitative sense, it is our mission to elevate every life as important and worthwhile. In the quantitative sense, and in the context of our business, it is also our mission to add value, discounts, and a fair balance of price and quality for our guests. This is how we will make a positive impact in our communities and world. Job Title Customer Service Representative Direct Report Store Manager Department Store Operations Location 17531 Stony Plain Rd NW, Edmonton, AB T5S 2S1 Job Summary Customer Service Representatives are the first point of contact for customers and strive to ensure that each customer has a positive shopping experience. Responsibilities of Customer Service Representatives include operating cash registers and handling money, providing customers with information about products offered in the store, and maintaining a clean and organized work environment. The ideal Customer Service Representative has excellent communication and people skills, experience in customer service or a willingness to learn, and a passion for pets. Core Competencies A Positive and Hardworking Attitude. A willingness to go the extra mile to provide customers with the best possible shopping experience. Strong Communication Skills. Ability to clearly communicate with customers and other staff. Resilience. Ability to remain calm and navigate through high stress situations Behaviour & Skills Customer Service Excellent time management & attention to detail Excellent teamwork & collaborative abilities Confident & articulate communication Trustworthy & positive attitude Understanding of pet nutrition & needs Ability to lift 50lbs Job Responsibilities Customer Service Representatives are responsible for these 5 areas of store functions in order of Priority with objectives: Customer Service To serve and learn the immediate needs of customers and offering honest and sincere advice, as well as welcoming them to the culture of the Homes Alive community. Operate cash registers and accurately handle cash. Store Appearance Maintain stock on the shelves, product detail communication for your specific section (ie. Price tags, sales signs, etc.), clean and face products and shelves to provide the highest quality of solo shopping experience for the customer. Employee Service Self-initiate service to co-workers and leaders to assist with any projects or tasks to develop a culture and community of servantship and improve the quality of life of those around you. System Maintenance Complete routine tasks specified in checklists & delegated by leaders and follow proper system procedures for efficiency, effective communication, and accuracy of inventory. Self-Development Take initiative in any possible opportunities to learn and develop skills or knowledge in any area within Homes Alive to develop yourself to become a servant leader (a leader that goes the extra mile to serve others). A Day in the Life of a Customer Service Representative Each day as a Customer Service Representative will be dynamic and unique. A typical day will involve you helping customers find the supplies they need for their pets, providing them with information about pet care and nutrition, and assisting them at the cash register. You will also work to make sure your store looks clean and presentable and that inventory on the shelves is full and well organized. As customers often bring their pets into the store, you will also get plenty of opportunity to interact with dogs and cats (and even hand out treats!). Schedule Part-time Customer Service Representatives work up to 30 hrs./week, at the discretion of the Store Manager. Shifts may be morning, afternoon, or evening, Monday to Sunday. Compensation $16.00/hr.\",\n            \"location\": \"Stony Plain Road NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"23226FDACD7B1179372E6115B5148E14\",\n            \"cityName\": \"1401 20 Avenue NW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=81db49a22f8d6e09\",\n            \"jobName\": \"Kitchen Helper/Customer Service\",\n            \"companyName\": \"Jimmys Donair\",\n            \"rowSalary\": \"$16.50–$18.50 an hour\",\n            \"date\": 1694352984588,\n            \"dateOfPosted\": 1692659184363,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0678621,\n                    \"lon\": -114.0848958\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"17 Ave NW, Calgary, AB T2M, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Hey!We need a few great people to complete our team , here are some of the highlights on what your job will entail: Greeting guests, taking orders and processing payments  Preparing food Managing delivery and mobile orders  Assembling orders and packaging take-out and delivery Keeping all surfaces clean and sanitary to ensure the safety for our guests, fellow crew members, and yourself Whether you are working in the kitchen or at the front counter you are a part of a dynamic team that works together to deliver an exceptional guest experience.Food safety course is necessary. Experience is a must minimum 1 year.Job Types: Part-time, PermanentPart-time hours: 20 per weekSalary: $16.50-$18.50 per hourFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayWeekends as neededCOVID-19 considerations:Following all current protocols as set by Alberta Health.Work Location: In person\",\n            \"location\": \"Avenue NW, Calgary, AB\"\n        },\n        {\n            \"id\": \"9BAA28EF8862DAC5994BC2F553612DBF\",\n            \"cityName\": \"60 Victoria Crescent, Nanaimo, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=15ce0010d5cd25e3\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mid Island Consumer Services Cooperative\",\n            \"rowSalary\": \"$17.75 an hour\",\n            \"date\": 1694352816243,\n            \"dateOfPosted\": 1693446295197,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1633011,\n                    \"lon\": -123.9352068\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Nanaimo\",\n                \"formattedAddress\": \"Victoria Crescent, Nanaimo, BC V9R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria Crescent, Nanaimo, BC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Co-op is hiring a part-time Customer Service Representative at our Victoria Crescent Gas Bar. Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you! Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in the operations of the store, including but not limited to handling customer transactions, responding to customer questions and concerns in a professional manner, creating displays and stocking shelves, and ensuring store and merchandise are neat and organized.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Representative today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. Previous retail experience is preferred, and propane and/or FoodSafe certification would be an asset. Who we are: Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve. Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op). We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.\",\n            \"location\": \"Victoria Crescent, Nanaimo, BC\"\n        },\n        {\n            \"id\": \"A841E0EAAF28772CF53951A2F1BD38F3\",\n            \"cityName\": \"Fredericton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7c8509eb2ead0a23\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Stow It All\",\n            \"rowSalary\": \"$16–$17 an hour\",\n            \"date\": 1694352798351,\n            \"dateOfPosted\": 1693506948550,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.9635895,\n                    \"lon\": -66.6431151\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fredericton\",\n                \"formattedAddress\": \"Fredericton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"York County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fredericton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a Maritime owned self storage company looking for a customer service officer to join our team. The position is permanent, part-time position available, weekdays 8:30 am to 4:30 pm. Perfect for an individual whose not ready to fully retire.As the customer service officer, you will:Meet and greet clientsRespond to enquiries via e-mail, phone and face-to-faceProvide customers with quotes and product informationCreate and manage filesManage customer invoicing and paymentsKeep database currentThe successful candidate will:Love working one-on-one with customersHave a warm, approachable mannerHave the rare people skills which allow you to cheerfully assist customers, in a sometimes busy environmentHave an easy going, can-do-it attitudeHave basic computer knowledgeBe flexible to work at both Fredericton area locationsBe able to do light property maintenance would be an asset, but not a deciding factor for this positionWork remotelyNoJob Types: Permanent, Part-timePart-time hours: 16-24 per weekSalary: $16.00-$17.00 per hourBenefits:Profit sharingFlexible Language Requirement:French not requiredSchedule:8 hour shiftCOVID-19 considerations:All customers and staff are required to follow current COVID-19 precautions, as mandated by the government.Education:Secondary School (required)Experience:customer service: 1 year (preferred)Work Location: In personExpected start date: 2023-09-11\",\n            \"location\": \"Fredericton, NB\"\n        },\n        {\n            \"id\": \"07E065969D2B740AE9AAED4551FBF068\",\n            \"cityName\": \"7420 Rue Saint-Jacques, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5cf74bfead6425bd\",\n            \"jobName\": \"Full-Time Customer Service Representative\",\n            \"companyName\": \"Sutton Plumbing\",\n            \"rowSalary\": \"$45,000–$55,000 a year\",\n            \"date\": 1694352671327,\n            \"dateOfPosted\": 1693506958466,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4749414,\n                    \"lon\": -73.595434\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Saint-Jacques, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Sutton Plumbing and Heating Supplies Ltd., a family-owned and operated company since 1954, is currently looking for an experienced full-time Customer service representative to join our growing team. We are a leading supplier in our field, and are currently in expansion. If you are a hard-working, dedicated individual, and are looking for a new opportunity in a great company, please apply. (Knowledge of the plumbing field is an asset)Job Description and responsibilitiesLearn to identify customer needs or desires in order to recommend the appropriate product or service.Learn the software systems used by the company to be able to communicate effectively with incoming inquiries.Keep a record of incoming inquiries to be able to reference at a later date.Be able to process orders, forms, and quotations.Work with colleagues when necessary to resolve customer complaints.Provide feedback to other departments to help improve sales, marketing, and business processes.Learn about the products inside and out to be able to answer any questions from customers.Handle customer complaints by providing solutions, often within a time limit to ensure the customer is satisfied.Customer Service Representative skills and qualifications3 Years Customer service experience required (Knowledge of the plumbing industry is a plus)Strong phone contact handling skills and active listeningability to adapt/respond to different types of charactersAbility to multitask, prioritize and manage time effectivelyBilingual English/French is an assetWhy work at Sutton? (Extra Bonuses!)Join a young, energetic and fun teamon site GymFree on site parking!Basketball, Lacrosse and Hockey Gear for Lunchtime friendly competition!\\\"chill room\\\" with couches and games (Nintendo cube, cards etc.)Large updated lunch room (with Free coffee)Pool table***DartsTable hockeyIf you are interested in taking on a new challenge at a growing company, we encourage you to apply today.---------------------------------------------------------------------------Sutton Plumbing and Heating Supplies Ltd., une entreprise familiale en affaires depuis 1954, est actuellement à la recherche d'un(e) représentant(e) du service clientèle à temps plein pour rejoindre notre équipe. Nous sommes chef de file dans le domaine de la distribution en plomberie et chauffage et nous sommes en pleine phase d’expansion. Si vous êtes une personne travaillante, dévouée et que vous recherchez de nouvelles opportunités au sein d'une excellente entreprise, ne chercher pas plus loin! (Une connaissance du domaine de la plomberie est fortement recommandée)Description du poste et responsabilités :Identifier les besoins ou les désirs des clients afin de recommander le produit ou le service approprié.Apprendre à connaître les produits en détail pour pouvoir répondre aux questions des clients.Apprendre à utiliser les systèmes informatiques de l'entreprise pour pouvoir communiquer efficacement avec les demandes entrantes.Conserver un enregistrement des demandes entrantes pour pouvoir y faire référence ultérieurement.Être capable de traiter les commandes, les formulaires et les devis.Travailler avec des collègues au besoin pour résoudre les plaintes des clients.Fournir des retours d'information à d'autres départements pour aider à améliorer les ventes, le marketing et les processus commerciaux.Traiter les plaintes des clients en fournissant des solutions, souvent dans des délais serrés, pour garantir la satisfaction du client.Compétences et qualifications du représentant du service clientèle :3 ans d'expérience en service clientèle liée au domaine de la plomberie requis (Connaissance de l'industrie)Solides compétences en gestion des contacts téléphoniques et en écoute activeCapacité à s'adapter/répondre à différents types de personnalitésCapacité à gérer plusieurs tâches, à établir des priorités et à gérer efficacement le tempsPourquoi travailler chez Sutton ? (Bonus supplémentaires !)Rejoignez une équipe jeune, énergique et amusanteSalle de sport sur placeParking gratuit sur placeÉquipement de basketball, de crosse et de hockey pour des compétitions amicales à l'heure du lunch\\\"Salle de détente\\\" avec canapésGrande salle de déjeuner rénovée (avec café gratuit et jeux tel que Nintendo GameCube, cartes, etc.)Table de billard ***FléchettesHockey sur tableSi vous êtes intéressé(e) par le défi que représente une entreprise en pleine croissance, nous vous encourageons à postuler dès aujourd'hui.Job Types: Full-time, PermanentSalary: $45,000.00-$55,000.00 per yearBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site gymOn-site parkingVision careSchedule:Monday to FridayApplication question(s):Do you have Experience / Knowledge related to Plumbing?Experience:customer service: 3 years (preferred)Work Location: In person\",\n            \"location\": \"Montreal- Rue Saint-Jacques, Montréal, QC\"\n        },\n        {\n            \"id\": \"988DB5C3525973A011EE24A2B9ADFF50\",\n            \"cityName\": \"7 Arbour Lake Dr NW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e7006a4d88c14c6e\",\n            \"jobName\": \"Grocery/Customer Service Clerk - Arbour Lake\",\n            \"companyName\": \"Amaranth Whole Foods Southland\",\n            \"rowSalary\": \"$16.50–$18.00 an hour\",\n            \"date\": 1694352600274,\n            \"dateOfPosted\": 1693506950448,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.1366093,\n                    \"lon\": -114.1993777\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Arbour Lake Dr NW, Calgary, AB T3G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Amaranth, our mission is to create a great customer experience. Our vision is to work with local farmers and producers to provide healthy food for our communities. As we continue to grow within Alberta, Amaranth is excited to welcome new team members that share our passions. All Amaranth retail jobs require ensuring a positive company image by providing courteous, friendly, and efficient service to customers and team members at all times. All positions must be performed in accordance with store best practices. Further, Team Members must be prepared and able to perform the duties inherent in other Team Member job descriptions. All positions must strive to support Amaranth's core values and goals.A successful team member:WILL BEPassionate and Knowledgeable about Health & WellnessPut others first and willing to go above and beyond in the customer experience.Committed, Flexible and Open to Growth.Solution Focused and Business Minded.Motivated to provide Outstanding Customer Service.Experienced in various grocery departments and responsibilities.Role: The Grocery/Customer Service Clerk is responsible for the Department’s daily operations. Duties may include providing support to Grocery Department team members; receiving and verifying shipments primarily in Grocery, and in other departments during peak times; picking transfers; stocking shelves, overstock and down stock rotation, stocking shelves, coolers and freezers; bulk re-packing, maintaining correct inventory levels and records for expiry dates; product merchandising; maintaining store cleanliness; and providing friendly, attentive and EXCELLENT customer service. As a cashier; responsible for outstanding customer service and monitoring tills, processing customers transactions; bagging and carrying out groceries; maintaining store cleanliness; and providing friendly, attentive and efficient customer service.Reports to: Store Manager and Grocery LeadTime Requirements: Full-time position with flexible working availability including days, evenings, weekends and assisting with added shift coverage**Physical Requirements: Able to stand for extended periods of time, climb ladders, ability to lift up to 50 lbs and be able to navigate certain tools and environments.Compensation: To be discussed based on level of experience.WILL HAVEStrong Performance in Customer Service:Proactively engage customers to ensure unparalleled customer service.Efficiently and accurately process customer transactions through the use of applicable POS functions and carry out customer purchases.Respond to customer questions and provide assistance or when necessary page department representative to provide assistance.Assist customers with product inquiries, share product knowledge and take customers to the location of the product directly.Be knowledgeable about and advise customers of current store promotions and programs.Report errors in retail pricing or signage to the management team.Ensure daily department checklists are being followed and completed.Assist with store opening and closing duties to ensure the store is properly prepared for the day’s operations.Other duties as assigned by the Store Manager or Store Lead.Cash Experience with POS, Till Transactions and Unparalleled Service to Others:Efficiently and accurately process customer transactions through the use of applicable till functions.Bag groceries in a careful and timely manner and offer carry-out assistance.Assist with customer flow and line-ups through till operation or grocery bagging.Keep the till area clean, well-stocked, and organized, change receipt rolls, sweep floors behind tills, and wash counters.Maintain confection area stock, face gluten-free freezer, dairy cooler, and drink cooler.Grocery/Bulk/Repack/Perishables familiarity with store products, local and organic:Maintain on-shelf inventory including stocking coolers and shelves, down stocking and stock rotation, shipment receiving and verification, and putting away shipments.Manage inventory using a database system and maintain accurate shelf signage and pricing.Keep aisles clean and free of ladders, boxes and carts.Sweep bulk areas regularly, ensure clean scoops, pencils, bags, and twist ties are stocked.Check expiry dates and complete markdowns for perishables stock.Special Orders and Going Above and Beyond in Customer Service:Once a special order arrives in store, ensure the customer who placed the special order is contacted initially and weekly thereafter until the 4th week where appropriate action is taken if not picked up.Maintain “on-hold” status of items in the database system.Inventory Management with hole counts, out of stock, on-order, backorder, and yearly counts:Ensure inventory levels recorded in the database system match the physical inventory on shelf and in back stock.Manage inventory using the database system and maintain accurate shelf signage and pricing.Receiving Process from start to finish, awareness with credits and follow up an asset.Physically receive and verify shipments.Received stock is delivered on floor in a timely manner, placed accordingly, rotated by correct best before dates and rotated with down stock.Ensure price tags are accurate and red dots are on all Gluten Free tags, and blue dots are on discontinued items.Transfers for multi-store database system:Respond to Pick Requests from other locations in an accurate and timely manner, maintaining an orderly transfer area.Process incoming transfers from other stores in an accurate and timely manner, following up on errors with the appropriate location immediately.Distributing combined orders and working with the Category Manager to implement efficiencies.LeadershipAbility to lead by example in daily activities and strive to improve personal performance each and every day.Commitment to maintaining a positive attitude and approach challenges in a pro-active and problem-solving manner.Capability to assist and direct team members to complete duties such as stocking, down stocking, and stock rotation including coolers and shelves, empty shelf look-ups, shipment receiving and verification, and putting away shipments.Keen attention to prioritizing the day by level of importance, organize tasks and to-do lists that fall into categories of daily, weekly, monthly requirements.Store MaintenanceAbility to support in mopping the store floor first thing each morning.Ability to direct staff when there are cleaning projects to be completed.End CapsCommitment to working with the Category Manager, ensuring end caps are well stocked and changed over in a timely manner for sales and promotions.Qualifications and Attributes:Excellent communication skills and willingness to work as part of a teamHave supervisory experience in a retail environmentIntermediate computer skills with an emphasis on database operationAbility to follow instructions and proceduresAbility to work with a flexible attitude in a dynamic environmentAbility to think independently, prioritize, and complete projects in a timely mannerExcellent organization and interpersonal skillsKnowledge of the organic and natural foods industry is an assetFood Handling Safety education and/or certificate is an assetBasic Physical RequirementsStand for extended periods of time. Walk, bend and twist your body, reach above and below shoulders.Use of mops, brooms, cleaning products, knives, box cutters, carts, computers and printers.Use ladders of varying heights up to 12 feet.Ability to lift up to 50lbs maximum.Repetitive use of hands for grasping, pushing, pulling, and typing.Environmental exposure to extreme temperatures in coolers, freezers, and outdoorsJob Type: Part-timePart-time hours: 30 per weekSalary: $16.50-$18.00 per hourBenefits:Store discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftHolidaysMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Arbour Lake Dr NW, Calgary, AB\"\n        },\n        {\n            \"id\": \"ECC2C696D8940821CD2CCAEF250E3D6E\",\n            \"cityName\": \"545 Memorial Ave, Orillia, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=58d8d7849035171c\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Wendy's Restaurant Orillia\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694352550860,\n            \"dateOfPosted\": 1692657410070,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.58068180000001,\n                    \"lon\": -79.4306655\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Orillia\",\n                \"formattedAddress\": \"Memorial Ave, Orillia, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Orillia\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Focused, ability to multi task, fast paced environment, follow direction,Job Type: Full-timeSalary: $15.50 per hourBenefits:On-site parkingDay range:Every WeekendHolidaysMonday to FridayWeekends as neededShift:4 hour shift8 hour shiftDay shiftEvening shiftMorning shiftNight shiftWork Location: In person\",\n            \"location\": \"Memorial Avenue, Orillia, ON\"\n        },\n        {\n            \"id\": \"A2364F9DCF2585DFA5246C0BB55BBC9E\",\n            \"cityName\": \"James Snow Self Storage in Milton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6862ae1a5cbfbab4\",\n            \"jobName\": \"Part Time Customer Service\",\n            \"companyName\": \"James Snow Self Storage\",\n            \"rowSalary\": \"$16.50–$18.00 an hour\",\n            \"date\": 1694352416799,\n            \"dateOfPosted\": 1691525654153,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5182991,\n                    \"lon\": -79.8774042\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Milton\",\n                \"formattedAddress\": \"Milton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Milton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position: Customer Service RepresentativeLocation: Milton, ONJob Description:The Customer Service Representative will interact with customers via phone, email, and chat to ensure a smooth and positive experience. This will include learning both the U-Haul system and the storage systems to assist customers with all storage and U-Haul needs. MUST HAVE A DRIVERS LICENSE. G2 IS FINE BUT G PREFERED. MUST BE ABLE TO WORK SATURDAY'S. THIS IS NOT A FULL TIME POSITION. Ideal for a high-school student looking for after school hours. Hours during the week are 3-6 and Saturday shifts are 7:30-12:30 AND/OR 12-5.*If you can't work these hours or want full time work, or do not have a drivers license please do not apply.*Essential Duties & Responsibilities:Answer incoming calls and emails to provide a positive customer experience.Provide a positive first impression to the customer by providing a clear message on the outbound call or email.Build and maintain strong relationships with customers by clearly communicating the needs of the business and providing prompt, accurate information.Respond to customer inquiries regarding product details; pricing; availability.Sing in/out U-Haul trucks, ensuring they are swept and cleanly enough for the next customer.Provide accurate information regarding storage/U-Haul inquiriesProcess U-Haul returns in a timely manner.Maintain an organized, clean, and sanitary work area.Perform other duties as assigned.Required Skills: ·Excellent written and verbal communication skills. This position requires excellent listening skills as well.·Strong organizational skills with the ability to work with a team and aloneStarting wage will reflect experience.Job Type: Part-timeSalary: $16.50-$18.00 per hourFlexible Language Requirement:French not requiredSchedule:Evening shiftMonday to FridayWeekends as neededAbility to commute/relocate:Milton, ON L9T 5G7: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Milton, ON\"\n        },\n        {\n            \"id\": \"70CC434CE5267BF57B764E198494A9D4\",\n            \"cityName\": \"1020 South Service Road East, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0b5b56a4d66a2f88\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Pioneer Family Pools & Spas\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694352396122,\n            \"dateOfPosted\": 1693506945329,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4639338,\n                    \"lon\": -79.6804022\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"South Service Rd E, Oakville, ON L6J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Seasonal Contract· Support a strong commitment to superior and genuine customer service by exerting compassion, knowledge and empathy to all customers and associates. Drive sales through engaging both customers and associates with accurate and practical product knowledge.· Deliver a positive, friendly and pleasant experience with the goal of always exceeding our customers’ expectations.· Your behavior at work should be ethical, positive, encouraging, helpful, dedicated, efficient and respectful at all times.· You are required to dress according to Pioneer Family Pools uniform policy.· Maintain a clean and organized work environment free of clutter at all times· Perform miscellaneous cleaning in the store· Provide courteous and friendly service to all customers, escorting those who require further assistance to the appropriate sales associate or manager· Assist all customers on the retail floor, and answer any questions that are within your training, knowledge, and expertise. If you can’t answer their question, notify them you will find someone who can better assist.· Ensure float is the correct amount at the beginning of your shift and complete accurate float count and end of day paperwork responsibilities. All end of day results should be reviewed with the Retail Manager or Assistant Manager at the end of each day.· Check out customers’ orders in an accurate and efficient manner using the correct scan or processing method· Excessive Cash Payments (+$500) must be reviewed by Retail Manager or Assistant Manager and immediately stored in the safe.· Perform cashier-customer transactions accurately in order to maximize customer satisfaction and minimize losses by handling all monetary transactions according to Pioneer Family Pools’ policies and procedures· Maintain security and minimize losses through awareness of pricing errors, coupons, promotions, and other interactions. Be informed and execute promotions accurately and consistently.· Properly bag customer’s orders. Watch for torn bags, leaking items, broken products, heavy bags and assist where necessary to provide an easy and efficient carry out.· Help price, stock, and face merchandise on the sales floor and retail shelves daily, or as required by current stock levels or manager request· Stock and maintain all register supplies each morning and throughout the day as needed· Re-stock returns (if saleable); *See Internal Training Guide for Cashier’s for details.· Retrieve shopping carts throughout the day· Responsible for accurate till counts and deposits, End of day reports, copies of receipts,· Thank all customers for visiting the store upon them leaving· Log and Schedule hours, vacation request and time off with Retail Manager or Assistant Retail Manager· Other duties as assignedJob Types: Full-time, Part-time, Temporary, SeasonalContract length: 3 monthsSalary: From $15.50 per hourDay range:Monday to FridayWeekends as neededShift:8 hour shiftDay shiftAbility to commute/relocate:Oakville, ON: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"South Service Road East, Oakville, ON\"\n        },\n        {\n            \"id\": \"E81385C7F6E2DB04177D1252748ABA70\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0189dc3a605a6462\",\n            \"jobName\": \"Delivery Driver/Customer Service\",\n            \"companyName\": \"Vegan Supply\",\n            \"rowSalary\": \"$20–$25 an hour\",\n            \"date\": 1694352391860,\n            \"dateOfPosted\": 1692659694404,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"A Vegan Owned & Operated business in Vancouver, BC is looking for a P/T Delivery Driver to join our team! We service customers within Vancouver & The Lower Mainland, Vancouver Island, up The Sea to Sky, and occasionally the Okanagan.This is a customer facing position when dropping off/picking up items so a friendly disposition and ability to trouble shoot is essential. This position is mostly Mon-Fri however an occasional weekend delivery will be required. Delivery schedule is coordinated with our in-house staff based out of our Chinatown location.Experience city driving a large truck, a class 5 license, and clean drivers abstract are required.Job Type: Part-timeSalary: $20.00-$25.00 per hourBenefits:Casual dressDiscounted or free foodExtended health careOn-site parkingStore discountSchedule:Monday to FridayExperience:delivery driving: 1 year (preferred)Language:English (preferred)Licence/Certification:Class 5 Licence (preferred)Shift availability:Day Shift (preferred)Work Location: On the roadExpected start date: 2023-09-04\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"46F218BC3EE6D2F774F77961748FC0DB\",\n            \"cityName\": \"62 On 401 E, Tilbury, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=aa7520062b2ff3d2\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Canadian Tire Gas Station Tilbury 401 Eastbound\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694352134643,\n            \"dateOfPosted\": 1692655468412,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.2643968,\n                    \"lon\": -82.42923119999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Tilbury\",\n                \"formattedAddress\": \"Tilbury, ON N0P 2L0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Chatham-Kent\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Tilbury, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job DescriptionCanadian Tire Gas Station Tilbury 401 Eastbound is seeking a Customer Service Representative to join our team!Duties include:Greeting customersHandling cashStocking shelvesMaintaining a clean work environment.Outside duties, pumping fuel, cleaning, sweeping, etcJob Type: Part-timePart-time hours: 16-24 per weekSalary: $15.50 per hourSchedule:8 hour shiftEvening shiftWeekends as neededWork Location: In person\",\n            \"location\": \"Tilbury, ON\"\n        },\n        {\n            \"id\": \"E02DCAC8776D950E3B1153EF808BCE8D\",\n            \"cityName\": \"305 Cranston Crescent, Midland, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0cf540716593e6c8\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Enterprise Holdings\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694351903161,\n            \"dateOfPosted\": 1693506960029,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.72886279999999,\n                    \"lon\": -79.86487199999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Midland\",\n                \"formattedAddress\": \"Cranston Crescent, Midland, ON L0K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Midland\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" The Customer Service Representative Sr (CAR Sr) will provide a high level of customer service by assisting both internal and external customers, primarily face-to-face, supporting their branch and rental needs. The CAR Sr will gain knowledge through local training and hands-on experience to provide administrative support, service customers, and act as a rental back-up in a large home city branch or airport location. This role is available as permanent part time.  Opening available at the following branch location: 305 CRANSTON CRESCENT MIDLAND, ON L4R 4P4 This is a part time position that pays $18.00 / hour We offer:  Employee discount Retirement savings plan Training and development Responsibilities: Take incoming calls- reservations, rate quotes, general questions and answers, provide information and resolution for customers, other branches, insurance companies, dealerships, repair shops and other vendors  Manage outgoing calls for callback management, A/Rs and miscellaneous calls as assigned  Provide a high level of customer service by assisting customers and assessing their rental needs in person and over the phone  Meet and greet customers in a friendly and timely manner  Provide directions and general assistance  Assist to assess condition of rental upon return  Process returns, check-ins and exit kiosk transactions  Effectively market the company while picking up customers up and/or dropping off customer in a safe and courteous manner and assisting customers as needed  Understand and communicate rental terms and conditions, vehicle features and other services  May sell optional protection products, upgrades, fuel options and other additional equipment  Responsible for notifying Management of any known vehicle problems and any required vehicle maintenance  Clean vehicle interior and exterior by hand or by operating washing equipment when needed  Perform various administrative and basic accounting functions such as: research and billing support tasks, accounts receivables, transfer and key logs, run miscellaneous reports, supply maintenance, process customer billing  Perform miscellaneous and backup duties job-related duties as assigned  Equal Opportunity Employer/Disability/Veterans Qualifications: Must be at least 18 years of age. High school diploma or above required; some college preferred Must have at least 1 year prior customer service, retail, or administrative support experience Must have a valid G or G2 drivers license with no more than 2 moving violations and/or at-fault accidents on driving record in the past 3 years No drug or alcohol related conviction on driving record in the past 5 years Must be authorized to work in Canada and not require work authorization sponsorship by our company for this position now or in the future. \",\n            \"location\": \"Cranston Crescent, Midland, ON\"\n        },\n        {\n            \"id\": \"A0E7368F708286D9FF45B7106A69F72D\",\n            \"cityName\": \"Serious Coffee in Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6092a5d2d6c55be8\",\n            \"jobName\": \"Customer Service/Barista\",\n            \"companyName\": \"Serious Coffee\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694351890355,\n            \"dateOfPosted\": 1693506961488,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3193375,\n                    \"lon\": -124.3136411\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Parksville\",\n                \"formattedAddress\": \"Parksville, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Parksville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usAs a barista with Serious Coffee you will fill many roles. Your main duties will be preparing specialty drinks, preparing lunch foods, working the cash and offering exceptional customer service. If you have a positive attitude and work well in a team environment, no experience is necessary.Our work environment includes:On-the-job trainingCompany perksSafe work environmentFlexible working hoursCasual work attireFood providedCurrently we are in need of someone to work 5 days a week but are open to 3 days a week. Please note that this is a permanent position.We offer paid training, flex time, tips paid out daily, medical and dental after probationary period, and free staff meals.Please email your resume, or come to the café and if it is not busy we may be able to interview you on the spot.Job Types: Full-time, Part-time, PermanentPart-time hours: 40 per weekSalary: From $16.75 per hourBenefits:Casual dressDental careDisability insuranceDiscounted or free foodExtended health careLife insuranceOn-site parkingVision careFlexible Language Requirement:French not requiredSchedule:Weekends as neededSupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Parksville, BC\"\n        },\n        {\n            \"id\": \"3B086CEF65DC37F4C3F622F8881779FD\",\n            \"cityName\": \"Johnny K CARSTAR Group in Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=51436e6c7a7f67e7\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Johnny K Carstar Group\",\n            \"rowSalary\": \"$15–$20 an hour\",\n            \"date\": 1694351884094,\n            \"dateOfPosted\": 1692658298757,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a Customer Service Representative (CSR) who communicates well with both the team and customer, highly organized (i.e. on top of schedule, able to prioritize tasks, always update the team with new information), able to handle multiple tasks at once,In return, we are offering competitive hourly wage and benefits package, a fair and family-like atmosphere, opportunities for advancement, and continuous training for our team at the Leduc North location!Role of a CSR/Parts:The CSR is a crucial position for our team since they create the first impression of the team to our customers. Therefore, the CSR is responsible to create a warm and welcoming environment for our customers, while being knowledgeable of what is happening in his/her surroundings (i.e. repair status, rental bookings, becoming the point of contact, etc.)Other responsibilities include:Administrative DutiesBooking appointments for estimates as well as confirming deductibles with insurance companies as well as calling customers for follow up.Update and maintain estimates schedules as well as updating insurance companies information on both the booking system and under each insurance companies’ profile.Collect and record any payments.Create files for any customers and file all paperwork accordingly, including explaining the national-wide warranty program to the customers.Refer customers complaints and/or questions to the appropriate team members.Checking-in and checking-out vehicles before and after repair.Managing rental reservations and updates for our customers.Responsible for receiving, scanning, labelling and sorting vehicle parts.Other additional duties as assigned.Operational and Other DutiesOperating CARSTAR’s vehicles in a safe manner to provides shuttle services to customers as well as our partners in terms of picking up and dropping off vehicles.Operating customers vehicles to our vendors for any sublets work (e.g. vehicles that need to be brought to a dealership, detailing, etc.).Assist with the daily production of the shop (i.e. washing vehicles, keeping the front office clean, etc.)Receiving parts for the vehicles that are being repaired and ensuring that the parts match with both the invoice and the repair orders.Posting of parts on the shop management system.Processed damaged parts as well as any returns for damaged item or incorrect items.Other additional duties as assigned.Requirements:Excellent customer service (experience in providing customer service in a service/retail environment).Some knowledge of vehicle partsHave basic estimating skills is considered an asset.Knowledge in Microsoft Office programs (mandatory) and Collision Repair Estimating/Management System (preferred).Ability to communicate effectively and efficiently.Able to work as a team and handle pressure well during busy times.Ability to communicate with all level of personnel and prioritize, organize and plan work independently.Valid and clean Driver’s License – Alberta Class 5 or equivalent.What we can offer you:- Standard work hours – 8 hours shift with 1-hour break.- Continuous training and advancement opportunities.- Open communications with management and ongoing support.- Competitive wages.If you feel that this is the environment that you have been looking for, do not hesitate to send in your applications!We would like to thank all applicants for their interest, however, only those who meet the qualifications and being considered for the said positions will be contacted.Job Type: Full-timeSalary: $15.00-$20.00 per hourBenefits:Dental careDisability insuranceEmployee assistance programExtended health careLife insuranceOn-site parkingWellness programFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Edmonton, AB T5P 4B6: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Licence/Certification:Driving Licence (required)Work Location: In person\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"B80EAE425247090486C46DD60055ACA1\",\n            \"cityName\": \"Wipro in Moncton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ca4206418816ba3c\",\n            \"jobName\": \"Customer Service (Bilingual English And French Or English And Spanish)\",\n            \"companyName\": \"Wipro\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694351847856,\n            \"dateOfPosted\": 1693506947459,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.0878165,\n                    \"lon\": -64.7782313\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"3 Roles available1. Loyalty Customer Support Analysts - Phone Support, 2 Shifts between 10am-8pm, Monday-Friday. Salary based on experience, up to 22$/hr2. Technical support roles for retail locations (Also phone support), on rotating 24/7 shift schedule, where alternating weekends are guaranteed. Salary based on experience, up to 22$/hr3. Customer Complaints - 10-8 Monday to Friday - Phone Support, 2 Shifts between 10am-8pm, Monday-Friday. Salary based on experience, up to 22$/hr. (Must be bilingual English and french)Full Benefits, competitive salary with opportunities to develop professionally.3 weeks vacation, paid sick leave. Flexible work/life balance.If you have any more questions, please apply and we'll be happy to answer them.Job Types: Full-time, PermanentSalary: $19.00-$22.00 per hourBenefits:Dental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offRRSP matchVision careSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayNight shiftWeekends as neededCOVID-19 considerations:Site operator has excellent cleaning practices in place. Ability to commute/relocate:Moncton, NB E1C 0J4: reliably commute or plan to relocate before starting work (preferred)Work Location: In person\",\n            \"location\": \"Moncton, NB\"\n        },\n        {\n            \"id\": \"DD71AAD39C917FDEA248E4860E307524\",\n            \"cityName\": \"Burlington, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0c1e5771f1201f62\",\n            \"jobName\": \"Customer Service And Sales Representative\",\n            \"companyName\": \"Goldfish Swim School - Ontario\",\n            \"rowSalary\": \"$19–$20 an hour\",\n            \"date\": 1694351827503,\n            \"dateOfPosted\": 1692657295944,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.3255196,\n                    \"lon\": -79.7990319\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burlington\",\n                \"formattedAddress\": \"Burlington, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burlington\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"WHY JOIN GOLDFISH SWIM SCHOOL? Making a meaningful difference in the lives of children is what drives us. Watching our swimmers gain confidence, self-esteem and life-changing skills makes every day GOLDEN! We look for dynamic individuals who share this passion.  If you want to have fun and improve the lives of children in and out of the pool, join our team - you will get back way more than you give! Status: Part time *Must be available to work DAY time with some evenings and weekend shifts*** WILL BE A FLOATER BETWEEN OAKVILLE & BURLINGTON LOCATIONS***Summary: Promotes the sale of swim lesson memberships and related products and services with Goldfish Swim School. Displays quality customer service in addressing the needs of existing and new members. Acts as the first point of contact and as such is responsible for presenting a positive image for the company. Duties and Responsibilities include the following. Other duties may be assigned. Completes the sales process using leads generated through marketing activities including events, advertising, referrals, etc.With effective communication skills, addresses a potential customer’s needs & expectations while presenting the services available from Goldfish Swim School.Manages day to day inquiries from existing members while building strong relationshipsAssists members with purchases of merchandise & vending productsResolves member concerns using a professional & empathetic approach.Prepares daily reports & schedules to support lesson execution and management activitiesParticipates in training/in-services as required.Benefits: Flexible schedule to accommodate school or other activities  Staff Referral bonuses  Team building events  Starting rate $19ph and pay increase at 12 months of continuous service  Discounts on swim lessons for family members Education/Experience:Minimum of two years experience in direct sales or in a related retail sales roleSelf-motivated and conscientiousExcellent presentation, organization, verbal and written communication are mandatoryPositive and clear phone mannerMotivated to achieve sales results Intermediate-level computer skills required using Word, Excel, and other software systems. We will provide reasonable accommodation at any time throughout the hiring and employment process for applicants with disabilities. If you require accommodation, please contact the General Manager and include the job title of the role you are interested in, your name, and your preferred method of contact.  Job Type: Part-time  Salary: $19.00 per hour Application QuestionsYou have requested that Indeed ask candidates the following questions:How many years of Sales experience do you have? Each Goldfish Swim School is an independently owned and operated franchise. The respective Franchisee is the employer at each Goldfish Swim School location. Each franchisee can set their own wages, benefit programs and terms and conditions of employment, which may vary at each Goldfish Swim School location.\",\n            \"location\": \"Burlington, ON\"\n        },\n        {\n            \"id\": \"5D5B4917381AA0804E29DED1B33907F2\",\n            \"cityName\": \"987 Gordon St Unit 11, Guelph, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e9181bd87aa0e0fe\",\n            \"jobName\": \"Retail Customer Service Representative For Specialty Food Store\",\n            \"companyName\": \"University Square Bakery & Deli\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694348187562,\n            \"dateOfPosted\": 1693496511492,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5419735,\n                    \"lon\": -80.24724789999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Guelph\",\n                \"formattedAddress\": \"26 Gordon St, Guelph, ON N1H 4G7, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Wellington County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Guelph\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"University Square Bakery & Deli requires a motivated, Bakery Customer Service Representative who will be responsible for providing prompt, courteous and knowledgeable service to customers. The incumbent must be able to take customer orders, prepare merchandise for sale and ring in customer purchases. The position requires an individual who has the ability to multitask, works well as a team as well as on their own and has strong communication skills.Job Duties:· Greet customers and discuss type, quality and quantity of merchandise or services required· Take orders from clients and prepare merchandise for purchase· Prepare sales and accept cash, credit card or automatic debit payment. Able to Manually use a deli slicer and knives to cut cheese and meats· Replace used stock, rotate current stock and ensure satisfactory inventory levels· Maintain cleanliness of the bakery throughout shift· Understand and follow all pertinent Food Safety guidelines, procedures and requirements· Engage and interact with customers to create a positive shopping experience· Maintain a high level of customer service· Participate in merchandising and promotional activities· Participate in all manner of store maintenance· Maintain a high level of product and service knowledge· Work in partnership with Store Manager and other employees to maximize store sales and in-store presence· Maintain a professional appearance, demeanor, and attitude at all timesQualified applicants should email their resumeRegards,OwnershipJob Type: Part-timePart-time hours: 12-18 per weekSalary: From $16.50 per hourBenefits:On-site parkingStore discountSchedule:Day shiftEvery WeekendCOVID-19 considerations:Regular Sanitization is done throughout store, curbside pick-up is available.Work Location: In personApplication deadline: 2023-09-15Expected start date: 2023-09-05\",\n            \"location\": \"Gordon St Unit, Guelph, ON\"\n        },\n        {\n            \"id\": \"B097F63966911410CFE69EE6A8B1B94A\",\n            \"cityName\": \"33 Commonwealth Ave, Mount Pearl, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fca8a10c7a3e9d79\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Ches's Fish And Chips\",\n            \"rowSalary\": \"From $14.75 an hour\",\n            \"date\": 1694348131689,\n            \"dateOfPosted\": 1693499627040,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.5126534,\n                    \"lon\": -52.8011297\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mount Pearl\",\n                \"formattedAddress\": \"Commonwealth Ave, Mount Pearl, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mount Pearl\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full Job Descriptionwe are looking for someone energetic, have a flexible schedule, like a fast-paced environment, and can learn quickly, we want to hear from you!We are currently hiring a cashier with daytime and evening time availability (weekdays and weekends).Greet guests and advise on store's ordering products and services, handle transactions on POS terminal and process payments, maintain a clean environment for the guests (restock, clearing and cleaning of dining room area), perform all opening and closing duties.Job Types: Part-time, Full-timePart-time hours: 20-40 per weekSalary: From $14.75 per hourBenefits:Store discountVision careDay range:Monday to FridayWeekends as neededShift:4 hour shift8 hour shiftAbility to commute/relocate:Mount Pearl, NL A1N 1W7: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Commonwealth Ave, Mount Pearl, NL\"\n        },\n        {\n            \"id\": \"32665EFCEA1EAF3BB32636EC1F242E57\",\n            \"cityName\": \"209 Bank St, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b6bcddc4483fe7f8\",\n            \"jobName\": \"Financial Customer Service Representative\",\n            \"companyName\": \"Pay2day\",\n            \"rowSalary\": \"$16.50–$17.50 an hour\",\n            \"date\": 1694346816447,\n            \"dateOfPosted\": 1686861403004,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4209477,\n                    \"lon\": -75.70115419999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Bank St, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Do you believe that providing exceptional customer service is the key to a company’s success?At Pay2day, we believe this to be a vital component of success for the individual hired. Within the role of a Financial Customer Service Representative, we are looking for individuals who model they way through every client interaction because our clients are the lifeline of our business.To be a better and different kind of financial service provider; we believe in being EPIC in all we do.Our ideal candidate is in search of an opportunity that allows them to enhance their professional skillset while embracing a culture of ongoing feedback for that next level development.While assisting clients meet their financial goals and building relationships at all levels, you will be part of a team that truly cares. If you’re looking for opportunities within Pay2Day, we offer multiple levels of development programs to those that possess the right attitude and a determination to succeed.Additional Characteristics of Our Team Members Include:· Team player: We succeed together; a collaborative approach wins.· Goal oriented: Results reflect our frontline team’s commitment.· Open to feedback: At all levels feedback is a constant, feedback is a gift.· Problem Solving: Initiative to get the job done, breaking down the barriers to find a solution.· Innovative: Creativity and thinking outside the box is promoted, at Pay2Day the best idea wins!· Detail Oriented: Both internal and external clients matter so we take care in how and what we do to continually exceed expectations.· Communication: Open communication and productive conversations are a focus. Transparency at all levels allows us to success as a team.· Adaptable: Working within an ever-changing industry means you are comfortable with adapting to and embracing change.Job Responsibilities:· Delivering an exceptional client experience/ Responding to client inquiries and requests.· Cash handling/ Data entry· Opening and/or closing the store· Communicating with clients to solidify payment arrangements on past due accounts· Reviewing applicants and completing financial risk assessment to determine approvals· Collaborating with various departments as required· Tasks as assigned by your Branch Manager that are client and revenue focused.If you believe that the role of a Financial Customer Service Representative sounds like a fit for you, we want to meet you!Job Types: Full-time, PermanentSalary: $16.50-$17.50 per hourBenefits:Dental careFlexible schedulePaid time offVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekend availabilityEducation:Secondary School (preferred)Experience:customer service: 1 year (required)Cash handling: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Bank Street, Ottawa, ON\"\n        },\n        {\n            \"id\": \"83A9FFBD0D5CF701D19B3C8D092787CB\",\n            \"cityName\": \"245 Daniel Street South, Arnprior, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=73961f9b943ceeb5\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Canadian Tire Gas+ Arnprior\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694346584449,\n            \"dateOfPosted\": 1693499619726,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4255866,\n                    \"lon\": -76.3649207\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Arnprior\",\n                \"formattedAddress\": \"Daniel St S, Arnprior, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Renfrew County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Arnprior\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking to fill two positions immediately. We need people to fill both opening(5am) and closing(11pm) positions at a busy gas station. We have a steady stream of customers throughout the day and time management will be a great trait for someone to have here. In between customers we have to clean up and restock the store. If you are looking to keep yourself busy while having some enjoyable conversations with customers, this could be the role you were looking for.We will schedule a four hour training shift with follow up training as needed. We can offer full time hours after a couple weeks of employment.If you do not live in Canada, do not apply. I can not see someone willing to commute from Mozambique.Job Types: Permanent, Part-timePart-time hours: 15-20 per weekSalary: From $16.00 per hourBenefits:Flexible scheduleSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayNight shiftWeekends as neededAbility to commute/relocate:Arnprior, ON: reliably commute or plan to relocate before starting work (required)Work Location: In personExpected start date: 2023-09-05\",\n            \"location\": \"Daniel St S, Arnprior, ON\"\n        },\n        {\n            \"id\": \"93E1F724CA2A2F2BDCADBA7AB4B2DB5D\",\n            \"cityName\": \"686 Crown Drive, Peterborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c0158f8c45df7bfa\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Alypsis Inc.\",\n            \"rowSalary\": \"$15.50–$18.80 an hour\",\n            \"date\": 1694346305094,\n            \"dateOfPosted\": 1693499623423,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.276707,\n                    \"lon\": -78.3381535\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Peterborough\",\n                \"formattedAddress\": \"Crown Dr, Peterborough, ON K9J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Peterborough County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Peterborough\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position: Customer Service RepresentativeJob Description:The Customer Service Representative will play a key role in the success of our company. This position is responsible for answering phone calls, responding to emails and web research. The Customer Service Representative will work closely with all departments and may be required to help in other departments.Core Duties & Responsibilities:Answer incoming phone calls and direct calls to appropriate person.Handle web research for customers in a timely manner.Follow up with customers on any issues that may arise from the sales team.Maintain an organized, clean work area.Perform other duties as assigned.Required Skills & Competencies:Excellent communication skills, both written and verbal.Excellent computer skills, including Google drive (docs, sheets, etc...)Attention to detail.Ability to work in a fast-paced, high-pressure environment while maintaining a positive attitude.Desire to learn new skills and be part of the team success.Strong organizational skills and ability to multitask.Passion for natural healthKnowledge about cosmetics and essential oilsWork Location:One location - No remote positions currently offeredWork RemotelyNoJob Types: Seasonal, Casual, Part-timeContract length: 6 monthsPart-time hours: 24-32 per weekSalary: $15.50-$18.80 per hourBenefits:Casual dressOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftNo weekendsSupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Peterborough, ON K9J 6W1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Crown Dr, Peterborough, ON\"\n        },\n        {\n            \"id\": \"0F897A56390EE6C235C81A057F2663EF\",\n            \"cityName\": \"3650 Langstaff Rd, Woodbridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b282e1898f027472\",\n            \"jobName\": \"Front Counter Customer Service\",\n            \"companyName\": \"Langstaff Dry Cleaners\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694345888654,\n            \"dateOfPosted\": 1693496558635,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8034026,\n                    \"lon\": -79.5849546\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Langstaff Rd, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking a motivated individual to work as front counter customer service. Minimum 3 years customer service experience required. Must live locally.Responsibilities:Assist in store customers.Sort, ticket and package customer laundryMaintain a high level of professionalism when dealing with customers.Job Type: Full-timeSalary: From $16.00 per hourSchedule:8 hour shiftMonday to FridayEducation:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Langstaff Rd, Woodbridge, ON\"\n        },\n        {\n            \"id\": \"E09CF9EFC0FCD9F6A953CA0011DB7D3C\",\n            \"cityName\": \"1 Promenade Cir, Thornhill, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6fa37c1905413edc\",\n            \"jobName\": \"Customer Service Associate / Cashier\",\n            \"companyName\": \"Aroma Espresso Bar Promenade Mall\",\n            \"rowSalary\": \"$15.50–$18.36 an hour\",\n            \"date\": 1694345170047,\n            \"dateOfPosted\": 1687763150437,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8068111,\n                    \"lon\": -79.4501259\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Promenade Cir, Vaughan, ON L4J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We at aroma espresso bar Promenade mall are seeking a Customer Service Associate / Cashier to join our team. As a Customer Service Associate / Cashier, you will be responsible for providing exceptional customer service and technical sales support to our customers. The ideal candidate is organized, has excellent time management skills, and is fluent in English.Duties:- Greet customers as they enter the store- Answer customer questions and provide technical sales support- Operate cash register and handle financial transactions- Maintain a clean and organized storeQualifications:- Excellent customer service skills- Strong organizational skills- Ability to manage time effectively- Fluent in English- Previous retail or customer service experience is preferredBenefits:- Competitive pay- Flexible scheduling- Employee discounts on productsIf you are looking for a challenging and rewarding position in a fast-paced environment, we encourage you to apply for this exciting opportunity!Job Type: Part-timePart-time hours: 20 per weekSalary: $15.50-$18.36 per hourBenefits:Store discountDay range:Weekend availabilityFlexible Language Requirement:French not requiredAbility to commute/relocate:Thornhill, ON L4J 4P8: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:fast food: 1 year (required)Language:Filipino (required)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Promenade Cir, Vaughan, ON\"\n        },\n        {\n            \"id\": \"4935FDE462C855FC89E0BC50B9D45F2C\",\n            \"cityName\": \"13571 Verdun Place, Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=580bd7ba7bd091e9\",\n            \"jobName\": \"Front Counter Customer Service\",\n            \"companyName\": \"Fred Holmes Fuel Injection\",\n            \"rowSalary\": \"From $25 an hour\",\n            \"date\": 1694345036359,\n            \"dateOfPosted\": 1694345036074,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.193288,\n                    \"lon\": -123.0747659\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Verdun Pl, Richmond, BC V6V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 25.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    25.0\n                ],\n                \"range\": {\n                    \"gte\": 25.0,\n                    \"gt\": null,\n                    \"lte\": 25.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Start at 8am and end at 4:30pm, 2 coffee breaks and 1 lunch break. Need to have strong English skills and be able to fluently communicate. Must have at least 1 year of experience in the automotive/parts industry. Additional training will be provided. Looking for someone to work long-term in our company.Responsibilities:- Provide exceptional customer service and support to clients- Answer incoming calls and respond to customer inquiries- Assist customers with product information, pricing, and order status- Resolve customer complaints or issues in a professional and timely manner- Process orders, returns, and exchanges accurately- Maintain customer records and update information as needed- Collaborate with other team members to ensure customer satisfaction- Conduct outbound calls to follow up with customers or provide additional informationExperience:- Previous experience in a customer service role preferred- Excellent communication skills, both verbal and written- Strong problem-solving abilities and attention to detail- Ability to multitask and prioritize tasks effectively- Proficient in using computer systems and software applications- Knowledge of CRM software is a plusJoin our team as a Customer Service Representative and be part of a dynamic and supportive work environment. We offer competitive compensation, opportunities for growth, and a positive company culture. Apply today to start your career in customer service!Job Types: Full-time, PermanentSalary: From $25.00 per hourJob Types: Full-time, PermanentSalary: From $25.00 per hourBenefits:Casual dressOn-site parkingFlexible Language Requirement:French not requiredSchedule:Day shiftMonday to FridayNo weekendsEducation:Secondary School (preferred)Experience:Automotive / Parts Inustry: 1 year (required)Customer service: 1 year (preferred)Shift availability:Day Shift (required)Ability to Commute:Richmond, BC V6V 1W5 (preferred)Ability to Relocate:Richmond, BC V6V 1W5: Relocate before starting work (preferred)Work Location: In personExpected start date: 2023-09-13\",\n            \"location\": \"Verdun Pl, Richmond, BC\"\n        },\n        {\n            \"id\": \"5CC7F780F24AC27CF54F2AF45CA370B6\",\n            \"cityName\": \"2000 Boul St Régis, Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ee1fee0c73bd486b\",\n            \"jobName\": \"Customer Service Representative/Inside Sales\",\n            \"companyName\": \"Amacor\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694344985411,\n            \"dateOfPosted\": 1693498021423,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.488025,\n                    \"lon\": -73.7817139\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Boul Saint Régis, Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer service representative / Inside Sales:Amacor is seeking a dynamic, detailed orientated CSR/Inside sales Representative.Located in the West Island close to Highway 40 and Blvd Des Sources.Amacor provides its clients with full-service garment embellishment that includes Silk-screening, Embroidery, Patches and a host of Digital technologies.Responsibilities:Responding promptly to customer inquiriesCollaborate with several departments to address client’s needsEnsure to have all required information to process ordersPrepare quotes, input information and process ordersOrder entry into CRM databaseKeeping records of customer interactions, transactions and commentsAssist sales team with administrative dutiesFollow-up on order statusAnswer customer inquiries about orders via phone or emailSkills:High school diploma or equivalent2 years related work experience preferredBilingual (fluent French and English both written and verbal)Great communicator in person and via telephone and emailProblem solver-ConfidentTeam player as it is a collaborative open environmentMust work well under pressure in a fast-paced environmentAbility to prioritize many tasksComputer skills: Excel-Outlook-WordReprésentant du service à la clientèle / Ventes internes :Amacor est à la recherche d'un représentant RSE/ventes internes dynamique et détaillé.Situé dans le West Island près de l'autoroute 40 et du boulevard Des Sources.Amacor fournit à ses clients un service complet d'embellissement de vêtements qui comprend la sérigraphie, la broderie, les écussons et une multitude de technologies numériques.-------------------------------------------------------------------------------Représentant du service à la clientèle / Ventes internes :Amacor est à la recherche d'un représentant RSE/ventes internes dynamique et détaillé.Situé dans le West Island près de l'autoroute 40 et du boulevard Des Sources.Amacor fournit à ses clients un service complet d'embellissement de vêtements qui comprend la sérigraphie, la broderie, les écussons et une multitude de technologies numériques.Responsabilités:- Répondre rapidement aux demandes des clients- Collaborer avec plusieurs départements pour répondre aux besoins des clients- S'assurer d'avoir toutes les informations nécessaires pour traiter les commandes- Préparer les soumissions, saisir les informations et traiter les commandes- Saisie des commandes dans la base de données CRM- Tenir des registres des interactions, des transactions et des commentaires des clients- Assister l'équipe de vente dans les tâches administratives- Suivi de l'état des commandes- Répondre aux demandes des clients sur les commandes par téléphone ou par courrielCompétences:- Diplôme d'études secondaires ou équivalent- 2 ans d'expérience de travail connexe préférable- Bilingue (français et anglais courants tant à l'écrit qu'à l'oral)- Excellent communicateur en personne et par téléphone et courriel- Résolveur de problèmes - Confiant- Avoir un esprit d'équipe car il s'agit d'un environnement collaboratif ouvert- Doit bien travailler sous pression dans un environnement en évolution rapide- Capacité à prioriser de nombreuses tâches- Compétences informatiques: Excel-Outlook-WordBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingSchedule:8 hour shiftMonday to FridayEdit jobOpenView public job pageJob Types: Permanent, Full-timeSalary: $18.00-$22.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Boul Saint-Régis, Dorval, QC\"\n        },\n        {\n            \"id\": \"8F3AFB74BE3BBD5A55843809E90C4F4B\",\n            \"cityName\": \"8063 North Fraser Way, Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d91ae0b9326bd0c5\",\n            \"jobName\": \"Customer Service/Sales Representative\",\n            \"companyName\": \"Bmg Industries Inc.\",\n            \"rowSalary\": \"$19–$23 an hour\",\n            \"date\": 1694344720247,\n            \"dateOfPosted\": 1693499579393,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.195621,\n                    \"lon\": -122.995875\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"N Fraser Way, Burnaby, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About Us: BMG Industries Inc.Qualified candidates from Burnaby and Lower mainland onlyFounded in 2015, BMG Industries Inc. set out with an aspiration to make a significant mark on Canada's e-commerce landscape. Today, having navigated the challenges and opportunities that came our way, we have experienced commendable growth and are now setting our gaze beyond Canadian territories, aiming for a substantial presence in the U.S. market and further.Our approach is rather direct: We pinpoint exceptional products, ensure they're priced attractively, and then rely on our adept marketing team to promote them effectively.What differentiates BMG Industries Inc. in the bustling e-commerce market?Vertical Integration: Instead of depending on third-party logistics, we've invested in our own warehouse. This not only streamlines our operations from sourcing to delivery but also gives us better control over our supply chain's entirety.Dedicated In-House Team: Our belief is that effective branding is as crucial as the product itself. Supporting this conviction is our team of in-house UX/UI designers, graphic artists, social media experts, and videographers. Their collaborative efforts ensure that our products aren't just sold but are presented in a way that resonates with our audience.Our Unique Edge: This combined operational and creative approach provides us a distinct advantage, helping our brands stand out in a sea of e-commerce offerings.For those newer to the field and looking to delve deep into the e-commerce sector, BMG Industries Inc. offers a unique opportunity. While we do promise a conducive working environment, it's the learning experience and the chance to be part of a growth-centric company that truly makes the difference.Your RoleThis multifaceted role demands an individual who can efficiently address real-time challenges, such as rerouting packages, while also possessing the finesse to liaise with wholesale clients, ensuring their needs are consistently met and relationships are nurtured.Key Responsibilities:Customer Service Excellence: Address customer queries promptly, whether from individual buyers on our platforms or wholesale partners.Package Management: Act swiftly in cases where packages face issues. This includes rerouting or providing solutions to ensure customer satisfaction.Liaison with Virtual Assistants: Collaborate with VAs to manage feedback on Amazon, aiming for resolution and continual service enhancement.Call Management: Handle incoming calls, ensuring they are effectively routed and that callers receive comprehensive assistance.Wholesale Client Relationship: Serve as the primary contact for wholesale clients, understanding their needs, addressing their concerns, and maintaining a positive, productive relationship.Sales Quotations: Craft and send tailored quotes to clients based on their requirements.Order Oversight: Track and monitor orders, intervening proactively when issues arise.Digital Expansion: Contribute insights and feedback as we diversify our sales platforms, especially focusing on enhancing our proprietary website's user experience.Feedback Loop: Regularly gather feedback to refine our processes and enhance customer satisfaction across all platforms.Qualifications:Proven experience in a combined customer service and sales role.Exceptional communication skills, both oral and written.Familiarity with e-commerce platforms, especially Amazon, is an asset.Acumen to manage challenges in real-time, such as package rerouting.Strong interpersonal skills, particularly in relationship management with key clients.Proficiency in CRM tools and other relevant software.A proactive approach, anticipating challenges and acting before they escalate.Additional Note:We’re seeking a versatile candidate who not only excels in customer service but is also motivated by the prospects of earning commissions by identifying and converting potential leads. Recognizing that there may be downtimes during regular responsibilities, the ideal candidate will utilize these periods proactively to make cold calls to qualified leads.Key Responsibilities:Customer Service Excellence: Efficiently address and resolve queries from our platform users and wholesale partners.Package Management: Handle any challenges related to packages, including rerouting or finding quick solutions to delivery issues.Wholesale Client Liaison: Act as the primary contact for wholesale clients, fostering a positive, lasting relationship.Cold Calls: Utilize downtime to proactively make cold calls to qualified leads, aiming for sales conversions.Commission-Based Sales: Actively seek out new clients and sales opportunities, earning a commission for every successful conversion you initiate.Order Management: Monitor orders diligently, ensuring a seamless customer experience.Feedback Implementation: Regularly gather and act upon feedback to optimize our services.Qualifications:Solid experience in a customer service and sales capacity.Excellent communication skills, both verbal and written.Familiarity with e-commerce platforms, particularly Amazon.Aptitude for managing challenges promptly, e.g., package rerouting.Strong interpersonal and relationship management skills.Experience with CRM tools and sales software.Self-motivation and a proactive mindset, especially regarding sales opportunities.Compensation:Apart from a competitive base salary, candidates will have the opportunity to earn a commission for every customer or sale they independently secure. This offers an excellent incentive for those who are driven by performance and results.Additional Note:This role is perfect for those who wish to combine their customer service expertise with a passion for sales. The structure allows for substantial earning potential for those who are proactive and results-oriented.If you have the drive to not only address customer needs but also expand our clientele base, we want to hear from you! Kindly apply with an updated CV and a cover letter detailing your experience in both customer service and sales, especially any prior roles that involved commission-based earning. their experience in managing both individual customers and wholesale relationships.Job Type: Full-timeSalary: $19.00-$23.00 per hourBenefits:Dental careLife insurancePaid time offVision careFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Commission payAbility to commute/relocate:Burnaby, BC V5J 5M8: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Work Location: In personApplication deadline: 2023-09-07Expected start date: 2023-09-11\",\n            \"location\": \"North Fraser Way, Burnaby, BC\"\n        },\n        {\n            \"id\": \"3296F6AEF095A01D19E7F7390F1A4940\",\n            \"cityName\": \"Frisco Pools Inc. in Bolton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5e27c168286cacd7\",\n            \"jobName\": \"Executive Customer Service/Office Manager\",\n            \"companyName\": \"Frisco Pools Inc.\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694344685307,\n            \"dateOfPosted\": 1682455746943,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8741995,\n                    \"lon\": -79.7306602\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Caledon\",\n                \"formattedAddress\": \"Bolton, Caledon, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Caledon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job descriptionFrisco Pools Inc. has been providing quality services to residential locations for over 25 years and we are growing! We are looking to hire an Executive Customer Service/Office Manager to handle all of our pools, hot tubs, and water feature inquiries. We are looking for candidates that have experience providing high-value Customer Service, are self-motivated, hard-working, and able to work as part of a team. We are looking for people who want to learn and grow within our organization. This is a permanent position with seasonal hours. We offer competitive pay and an excellent team dynamic. Must have prior experience in a similar role.Job Details:Plan, organize, direct, control, and evaluate daily operationsCommunicate with Department ManagersCustomer relations, including maintaining customer electronic files, & responding to emails and phone callsManage part-time staff and assign dutiesDetermine merchandise and services to be sold, locate, select and procure merchandise for resaleExplain the type of and cost of services offered, issue receipts and other formsQualifications:Experience using QuickBooks in a workplace setting for at least ONE YEAR is a must.Must have your own transportation to head office.Excellent interpersonal and negotiation skills in a professional manner across a range of mediums including internet, email, telephone, and in-personMust be a self-motivated team player able to organize and prioritize workload in a high volume fast-paced environmentProficiency in Windows-based office applications including Word, Excel, and OutlookMarketing experience is an assetCompensation & Benefits:$18.00 to $25.00/hourBonus PerksVacation**Additional benefits will become available in early 2023.Schedule & Hours:Monday to Friday, & occasional weekendsAverage day 10 am to 5 pm, flexible, extended times during peak seasonWinter hours are reduced (December to March)35 Average weekly hours#READYTOWORKJob Types: Permanent, Part-time, Full-timePart-time hours: 30-40 per weekSalary: $18.00-$25.00 per hourBenefits:Casual dressFlexible scheduleOn-site parkingFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftCOVID-19 considerations:To keep our team as safe as possible, we have limited staff in the office, specified workstations to work from, we have on-site masks, gloves, and hand sanitizer.Application question(s):We are located in Bolton. Do you have reliable transportation to and from the office?Experience:administrative/customer service: 1 year (preferred)QuickBooks (in a workplace setting): 1 year (preferred)Work Location: In person\",\n            \"location\": \"Bolton, ON\"\n        },\n        {\n            \"id\": \"FC46830C6AAF2B38C72EA1FD85F94A19\",\n            \"cityName\": \"Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1fb1f4a2f66e2fe2\",\n            \"jobName\": \"Customer Service Sales Representative\",\n            \"companyName\": \"United Management Group Inc.\",\n            \"rowSalary\": \"$600–$850 a week\",\n            \"date\": 1694344676594,\n            \"dateOfPosted\": 1693495282305,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.895136,\n                    \"lon\": -97.13837439999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 600.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    600.0\n                ],\n                \"range\": {\n                    \"gte\": 600.0,\n                    \"gt\": null,\n                    \"lte\": 600.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We specialize in client acquisition and business development for brands with a strong commitment with a passion for providing exceptional products and services. Our team shares a passion for giving back; both to our fellow teammates and to our community. Our team enjoys problem-solving and to continue our efforts in the Winnipeg area and keep up with client demand, we are hiring a Customer Service Sales Representative immediately.The Customer Service Sales Representative will act as the first point of contact with existing customers. They will assist with organizing our sales team and reporting back to the Executive Sales Manager. The Customer Service Sales Representative will receive hands-on training on all sales and marketing techniques, brand management strategies, territory management, and compliance standards as well as coaching, mentoring, and career development. The ideal candidate will have exceptional communication skills and be genuinely excited to grow with a company.Customer Service Sales Representative Responsibilities:Meeting planned sales goalsSetting individual sales targets with the sales team.Tracking sales goals and reporting results as necessaryOverseeing the activities and performance of the sales team.Develop and deliver informative sales presentations based on individual customer needs to maximize market shareParticipate in continuous training opportunities with the intent to increase qualified customer contacts, enhance relationships and advance the sales process.Customer Service Sales Representative Qualifications:Previous experience in marketing, promotions, sales, or account management preferredComfortable taking on a leadership role and support role within a team (must work well with others)Strong interpersonal skillsExperience in customer relationship management (preferred, not required)Experience in a management or leadership roleExcellent written and verbal communication skills.Dedication to providing great customer serviceJob Types: Full-time, PermanentSalary: $600.00-$850.00 per weekBenefits:On-site parkingSchedule:8 hour shiftMonday to FridayWeekends as neededAbility to commute/relocate:Winnipeg, MB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Winnipeg, MB\"\n        },\n        {\n            \"id\": \"38082F8E43474942EA881CBD2D8325F6\",\n            \"cityName\": \"1760 Ymca Rd, Gibsons, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=44dc9343b0b960fd\",\n            \"jobName\": \"Customer Service Representative, Ymca Camp Elphinstone\",\n            \"companyName\": \"Ybc\",\n            \"rowSalary\": \"$23 an hour\",\n            \"date\": 1694344642333,\n            \"dateOfPosted\": 1690269516733,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.4453039,\n                    \"lon\": -123.4735974\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Gibsons\",\n                \"formattedAddress\": \"YMCA Rd, British Columbia V0N 1V6, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Sunshine Coast Regional District\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Gibsons\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Title: Customer Service Representative, YMCA Camp Elphinstone  Location: 1760 YMCA Road Gibsons, BC  Terms:Full-Time Seasonal Contract Contract Dates: As soon as possible – November 4, 2023  Shifts: Monday – Friday  Rate: $23.00 per hour  Reports To: Director, YMCA Camp Elphinstone  YMCA Camp Elphinstone  YMCA Camp Elphinstone is located near Gibsons on the Sunshine Coast, a 40-minute ferry ride from Vancouver. It is situated on 144 acres of temperate rainforest along the shores of Howe Sound. Camp Elphinstone operates as a residential summer camp during July and August offering programs like one and two week camp, Sailing Camp, Leadership Development, and out-trips to Desolation Sound and the Sunshine Coast Trail.  From September to June, Camp Elphinstone operates as an Outdoor Education, Recreation and Retreat Centre for schools, businesses, clubs, and other special interest groups. Camp Elphinstone currently serves over 12,000 participants annually.  YMCA Camp Elphinstone has accommodation and dining for up to 400 people and has programs and equipment for swimming, canoeing, kayaking, sailing, stand up paddleboarding, low/high ropes, rock climbing, wilderness and environmental programs, archery, crafts and more. Camp Elphinstone employs approximately 140 staff/volunteers during July and August, with a team between 20-50 for the spring and fall Outdoor Education seasons, and a smaller core team of 10 staff during the winter season. Successful Camp Elphinstone staff are self-motivated individuals whose ambition is to help children and youth develop in an outdoor camp setting.  Nature and Scope: The Customer Service Representative is the primary administrative support for the YMCA Camp Elphinstone main office. The person will provide onsite excellent customer service, registration support, and office administration support for all camp programs. The work environment is fast-paced with a high volume of program participants.  Major Responsibilities: Support registration for all YMCA Camp Elphinstone programs Provide exemplary customer service Monitor phone and email inquiries Support customers in the navigation of online self-service technologies Work with Microsoft Office, ActiveNet, and other Database systems Process transactions Produce reports Waitlist management Collect and sort mail Provide positive and welcoming presence at reception desk; maintains organized reception area Develops and maintains positive working relationships with key stakeholders including YMCA staff and volunteers, community agencies and other service providers Behaves in a professional manner at all times Willingness to learn new skills Other tasks and duties as assigned Qualifications: Related experience Experience with CRM Systems Working knowledge of new technologies Strong computer proficiency Ability to multitask, prioritize and work independently Ability to be flexible and problem solve Strong attention to detail Strong written and verbal communication skills in English Ability to work in a team environment Well-developed interpersonal and relationship building skills Successful candidates will be required to provide a current and satisfactory Criminal Reference Check/Vulnerable Sector Search issued no later than six (6) months preceding your start date About the YMCA: YMCA BC is a charity dedicated to strengthening the foundations of community, by nurturing the potential of children, teens & young adults, promoting healthy lifestyles, fostering a sense of social responsibility and delivering lasting personal & social change to grow in spirit, mind, and body.  Since January 2023, YMCA of Northern British Columbia, YMCA-YWCA of Kamloops and YMCA of Greater Vancouver are officially one association, with one mission to strengthen our impact for communities across British Columbia. We are YMCA BC. This transition marks a new chapter in our long-standing history of building communities, transforming lives, and connecting people of all ages, stages, backgrounds and abilities, to unique opportunities to learn, grow, and reach their potential.  YMCA BC provides services in health, fitness & aquatics, child care, camping, employment & community services to over 150,000 participants annually. Our values guide our decision-making and behavior: Do the right thing - We are caring, respectful, honest and responsible in all we doPut people first - We believe in the strengths, perspectives and passion of peopleKeep our promises -We do what we say we will doLead by example -We are courageous, speak with conviction, listen attentively and collaborate Application Deadline: Ongoing until filled, consideration of candidates will begin immediately  Thank you for your interest and application. Due to the high volume of applications received, only short-listed candidates will be contacted.\",\n            \"location\": \"Ymca Rd, Gibsons, BC\"\n        },\n        {\n            \"id\": \"FAC7E6E6724B53879EBD2D85AAD4AE4B\",\n            \"cityName\": \"5379 Hwy 2, Shannonville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c7a2f5a5d63e4532\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Fast Freddy's North Shannonville\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694344619894,\n            \"dateOfPosted\": 1693492882717,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.194916,\n                    \"lon\": -77.2274319\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Shannonville\",\n                \"formattedAddress\": \"Shannonville, ON K0K 3A0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hastings County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Shannonville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Reliable persons needed for Busy gas station/variety store . Experience: Cash, Lottery training considered an asset (willing to train the right candidate)Cashier, customer service, POS system, stocking, Input inventory as received. Able to lift up to 40 lbs, carry, bend, stand for long periods.Stock/ Cleaning are required : Be able to time management and be proactive.Scheduled times can be any time between 5:30am to 11:00pm Monday to Sunday, various shifts on weekdays and weekends.Looking to hire both full time and part time with availability for all shifts. Subsidized benefits plan available for full time employees.Job Types: Permanent, Part-time, Full-timePart-time hours: 20-40 per weekSalary: $15.50 per hourBenefits:Dental careOn-site parkingStore discountVision careDay range:HolidaysWeekend availabilityFlexible Language Requirement:French not requiredShift:8 hour shiftDay shiftEvening shiftMorning shiftWork setting:Convenience storeWork Location: In personExpected start date: 2023-09-08\",\n            \"location\": \"Shannonville, ON\"\n        },\n        {\n            \"id\": \"C46F0D03BE15A2693B0CF46B272DB3B9\",\n            \"cityName\": \"Fall River, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=657475462bfbaef7\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Petro Canada\",\n            \"rowSalary\": \"$13.35–$13.85 an hour\",\n            \"date\": 1694344584363,\n            \"dateOfPosted\": 1652421036693,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.8180582,\n                    \"lon\": -63.6119749\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fall River\",\n                \"formattedAddress\": \"Fall River, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fall River\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Looking to hire for two day shifts weekends only saturday sunday 6:45 to 3:15 and evening 2:45 to 11:15No experence is needed.As a gas station cashier, your duties includegreeting and assisting customers, maintaining the inventory of products on store shelves, operating the cash register and running credit card transactions, lotto machine, scratch tickets, handling and cleaning the gas station shop and restrooms.Job Type: Part-timePart-time hours: 34 per weekSalary: $13.35-$13.85 per hourBenefits:Dental careVision careSchedule:8 hour shiftSupplemental pay types:Bonus payAbility to commute/relocate:Fall River, NS: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Overnight Shift (preferred)Day Shift (preferred)Night Shift (preferred)\",\n            \"location\": \"Fall River, NS\"\n        },\n        {\n            \"id\": \"087A9064D0ACAFFEADF4BE33F99DB85B\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bfcc515080a4db77\",\n            \"jobName\": \"Customer Service Supervisor (Except Financial Services)\",\n            \"companyName\": \"Southwood Automotive\",\n            \"rowSalary\": \"$31 an hour\",\n            \"date\": 1694344449922,\n            \"dateOfPosted\": 1686824273682,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 31.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    31.0\n                ],\n                \"range\": {\n                    \"gte\": 31.0,\n                    \"gt\": null,\n                    \"lte\": 31.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 3 months to less than 1 yearExperience: 2 years to less than 3 yearsTasks Co-ordinate, assign and review work Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Identify training needs and train workers in job duties and company policies Requisition materials and supplies Resolve work-related problems and prepare and submit progress and other reports Supervision 3-4 people Security and safety Criminal record check Work conditions and physical capabilities Attention to detail Fast-paced environment Large workload Tight deadlines Work under pressure Personal suitability Accurate Client focus Dependability Efficient interpersonal skills Initiative Judgement Organized Reliability Team player Screening questions Are you available for the advertised start date? Do you have previous experience in this field of employment? Long term benefits Other benefitsWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"84495894B31B609F33EFEC4925A852D2\",\n            \"cityName\": \"114 Sydenham St, Flesherton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c1784b32a234b422\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Esso\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694341726396,\n            \"dateOfPosted\": 1669018985368,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2648914,\n                    \"lon\": -80.5533015\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Flesherton\",\n                \"formattedAddress\": \"Sydenham St, Flesherton, ON N0C 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Flesherton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"$16.50/HRLOCAL CANDIDATES ONLYApply Now! Hiring Now! All training will be provided.ESSO Gas Station in Flesherton is hiring Customer Service Representatives to join its team - opening or closing shifts, weekdays or weekends. No experience necessary. Previous gas station or convenience store experience is always an asset. Full Training will be provided.Send resume online or welcome to stop by at the store.Job Types: Full-time, Part-time, PermanentSalary: From $16.50 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftEveningsEvening shiftEvery WeekendHolidaysMonday to FridayMorning shiftNo weekendsOn callWeekend availabilityWeekends onlyAbility to commute/relocate:Flesherton, ON: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Sydenham St, Flesherton, ON\"\n        },\n        {\n            \"id\": \"22EBCF0069DAAF4AB72BFDDD73218B58\",\n            \"cityName\": \"1888 West Broadway, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d4fe0cc104bfe56d\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Le Coq Frit\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694341142710,\n            \"dateOfPosted\": 1675833991466,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.26376459999999,\n                    \"lon\": -123.14866\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Broadway, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"-serving-bussing-phone orders for take-out-POS system, 3rd party delivery tablet, payment processing-take-out prep for packaging orders-cleaning duties-various other related dutiesMust be able to work during weekday(Monday - Friday between 11-9pm)Job Types: Permanent, Part-timePart-time hours: 25 per weekSalary: From $16.00 per hourSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayMorning shiftSupplemental pay types:TipsCOVID-19 considerations:Required to wear a mask. Sanitize surfaces after use.Work Location: In person\",\n            \"location\": \"Broadway WR\"\n        },\n        {\n            \"id\": \"11101BB5C45FB63E336C41533FF7B93C\",\n            \"cityName\": \"9917 99 Avenue, Sexsmith, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=459c7064513964a2\",\n            \"jobName\": \"Customer Service And Communications Assistant\",\n            \"companyName\": \"Sexsmith Shannon Municipal Library\",\n            \"rowSalary\": \"$22.12–$24.71 an hour\",\n            \"date\": 1694341055476,\n            \"dateOfPosted\": 1693490472098,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.3451183,\n                    \"lon\": -118.7797081\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sexsmith\",\n                \"formattedAddress\": \"Sexsmith, AB T0H 3C0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Grande Prairie County No. 1\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sexsmith\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service and Communications AssistantJob Description:The role plays a key role at the Sexsmith Shannon Municipal Library. This position will assist with answering phone calls, responding to emails and requests for materials. You will helping our patrons make the most of their library experience and will take a lead role in our social media.Core Duties & Responsibilities:Assist library patrons with finding materials within the library, ordering materials from other libraries and systemsAnswer incoming phone calls and respond to emails and inquiriesMaintain general knowledge of products and servicesParticipate in the development of programs and offeringsDevelop and create a social media plan for the library and servicesPerform other duties as assignedRequirements:High School Diploma or equivalent required2 years of customer service experience in a business settingMust be able to work flexible hours including weekends and holidaysAbility to build rapport with clients and employeesStrong written and verbal communication skillsAbility to problem solve, analyze problems, and develop solutionsThis position will be 30 to 34 hours per week and is expected to be filled in late September.Job Types: Full-time, PermanentSalary: $22.12-$24.71 per hourBenefits:Casual dressPaid time offSchedule:Evening shiftWeekends as neededWork Location: In person\",\n            \"location\": \"Avenue, Sexsmith, AB\"\n        },\n        {\n            \"id\": \"F56E66741822E290CA5DFBE99806C513\",\n            \"cityName\": \"Smart IP in Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=842a7d1e49a1f1fa\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Smart Ip\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694341047614,\n            \"dateOfPosted\": 1668834044099,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7315479,\n                    \"lon\": -79.7624177\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Brampton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job SummaryWorking in a contact center providing support to our customers.Connecting and building a rapport with a variety of customers, asking questions and offering solutions to resolve their needsCommunicating efficiently with customer, regarding tickets, tasks and escalationsResponsibilities and DutiesCommunicating efficiently with customer, regarding tickets, tasks and escalationsQualifications and SkillsExperience in Telecommunications RoleGrade 12 GraduateJob Type: Full-timeSalary: $17.00-$18.00 per hourBenefits:Casual dressExtended health careOn-site gymOn-site parkingPaid time offSchedule:8 hour shiftWork Location: In person\",\n            \"location\": \"Brampton, ON\"\n        },\n        {\n            \"id\": \"BC0112755CD56CC047EB628EB8783C92\",\n            \"cityName\": \"Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d9e8e290cdd28755\",\n            \"jobName\": \"Customer Service Alarm Dispatcher\",\n            \"companyName\": \"Armstrongs\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694341015689,\n            \"dateOfPosted\": 1688681350036,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6066487,\n                    \"lon\": -73.712409\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laval\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Alarm DispatcherArmstrong's Monitoring Centers, an AvantGuard Company Laval, PQ, CanadaAt Armstrong’s we are Canada’s premiere alarm monitoring company. We are a part of the AvantGuard Monitoring company with the mission to create solutions for a safer world through our innovative technologies and caring people. We operate one of the largest and fastest growing monitoring companies in North America, monitoring alarms (security, fire, medical, environmental, IoT) throughout the U.S. and Canada for nearly 1.7 million people every day. At Armstrong's we are defined by our core values: We Care, We're Fun, We're Innovative, We value Relationships, We give great Service, and We work as a team to extend trust. In short, We Care F.I.R.S.T. about our employees and subscribers.Reasons You'll Love Working Here:4 days off per week! We have a rotating schedule where you will work 4 days on and 4 days off (12 hour shifts)Starting pay of $17/hr for day shift and $18.00/hr for night shift - Earn an extra $1 per hour for speaking French.4 weeks of fully paid, hands-on trainingJob security with guaranteed hours (various shifts)Secure building with key fob access and free parkingNO SALES or Surveys, just helping people!Growth opportunities - We have strong, steady growth and always look internally for promotions firstA FUN team, company parties, professional development, and more!What You'll Do:Process alarm signals quickly, accurately and professionally in stressful situationsDispatch the proper authorities, verify that help is on the way and notify subscribersAccurately document all responses for the alarm on the computerLearn and use new software to complete multiple tasksWhat We're Looking for?:Our ideal candidate is fluent in FrenchMust have a completed high school diploma or equivalentExperience providing excellent customer service preferredAbility to stay calm in a very fast past environment with high pressure situationsMust be able to pass a pre-employment criminal record checkCandidates MUST reside and be legally authorized to work in CanadaArmstrong's Montioring Centers, AvantGuard Monitoring Centers and Becklar, LLC is an equal opportunity employer. All applicants will be considered for employment without attention to race, color, religion, sex, sexual orientation, gender identity, national origin, veteran or disability statusAgent au service à la clientèleArmstrong’s - Un Centre de Surveillance AvantGuard Laval, PQ, CanadaChez Armstrong’s, nous sommes un centre de surveillance d’alarme de premier choix au Canada. Nous faisons partie de la société AvantGuard Monitoring avec la mission de créer des solutions pour un monde plus sûr grâce à nos technologies innovantes et à nos employées attentionnées. Nous exploitons l’une des entreprises de surveillance les plus importantes et à la croissance la plus rapide en Amérique du Nord, en surveillant les alarmes (sécurité, incendie, médical, environnemental) aux États-Unis et au Canada pour près de 1,7 million de clients chaque jour. Chez Armstrong, nous sommes définis par nos valeurs fondamentales: nous nous soucions des autres, nous sommes innovants, nous valorisons les relations, nous offrons un excellent service et nous travaillons en équipe pour étendre la confiance. En bref, Nous nous soucions en premier de nos employés et abonnés.Raisons pour lesquelles vous allez adorer travailler ici:4 jours de congé par semaine! Nous avons un horaire rotatif où vous travaillerez 4 jours et 4 jours de congé (quarts de travail de 12 heures)Salaire de départ de 17 $/h pour le quart de jour et 18,00 $/h pour le quart de nuit - Gagnez 1 $ de plus de l'heure pour parler français.Sécurité d’emploi avec heures garanties (divers quarts de travail)Bâtiment sécurisé avec carte d’accès et stationnement gratuitPAS DE VENTES ou de sondage, on aide simplement les gens!Opportunités de croissance - Nous avons une croissance forte et régulière et cherchons toujours d’abord à l’interne pour des promotions.Une équipe dynamique, des évenement d’entreprise, un développement professionnel et plus encore!Ce que vous ferez:Traiter les signaux d’alarme rapidement, avec précision et professionnellement dans des situations stressantesDépêchez les autorités appropriées, vérifiez que l’aide est en route et informez les abonnésDocumenter avec précision toutes les réponses pour l’alarme sur l’ordinateurApprenez et utilisez de nouveaux logiciels pour effectuer plusieurs tâchesCe que nous recherchons?:Notre candidat idéal parle couramment le français et l’anglaisDoit avoir un diplôme d’études secondaires ou l’équivalentExpériencea fournir un excellent service à la clientèleCapacité à rester calme dans un environnement de travail très rapide avec des situations de haute pressionDoit être en mesure de passer une vérification du casier judiciaire préalable à l’emploiArmstrong’s Montioring Centers, AvantGuard Monitoring Centers et Becklar, LLC est un employeur d’égalité des chances. Tous les candidats seront pris en considération pour un emploi sans se souciant de la race, de la couleur, de la religion, du sexe, de l’orientation sexuelle, de l’identité de genre, de l’origine nationale, du statut d’ancien combattant ou d’invalidité\",\n            \"location\": \"Laval, QC\"\n        },\n        {\n            \"id\": \"F8DB4501705E264FF21E5F15F3D9ECD4\",\n            \"cityName\": \"15110 54a Ave, Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ca94bfeb7185f887\",\n            \"jobName\": \"Customer Service /Gym Staff\",\n            \"companyName\": \"Elevation Fitness\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694339292988,\n            \"dateOfPosted\": 1690129626464,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1901012,\n                    \"lon\": -122.8503845\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"13438 Central Ave, Surrey, BC V3T 0N2, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Elevation Fitness is looking for high energy, outgoing customer service representatives for closing shifts Wednesday to Sunday. 30-35hrsApplicants with a confident, outgoing and social personality required. Must be responsible, have reliable transportation, have excellent customer service skills and be good at multitasking. Duties include, greeting customers, creating a high energy pleasant environment, front desk duties, giving tours, general cleanliness of the facility and juice bar duties. Must be available for evening and weekend shifts.Please apply with cover letter and resume.Job Types: Full-time, Part-timePart-time hours: 30 -35 per weekSalary: $16.00-$20.00 per hourSchedule:Day shiftEvening shiftWeekend availabilityEducation:Secondary School (required)Experience:Customer Support & Client Services Occupations: 1 year (preferred)Work Location: In person\",\n            \"location\": \"A  Ave, Surrey, BC\"\n        },\n        {\n            \"id\": \"00140BBB85D261AFF36BECDC162BB214\",\n            \"cityName\": \"Dufresne Furniture and Appliances in Thunder Bay, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=451121a081764ba5\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Dufresne Furniture And Appliances\",\n            \"rowSalary\": \"$16.50–$17.00 an hour\",\n            \"date\": 1694338331970,\n            \"dateOfPosted\": 1693490468281,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.3808951,\n                    \"lon\": -89.2476823\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Thunder Bay\",\n                \"formattedAddress\": \"Thunder Bay, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Thunder Bay District\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Thunder Bay\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"As a Customer Service Agent, you will be responsible for addressing our customer service issues and notifications.The Dufresne Group is committed to investing in our team members; we offer:Market competitive wages;Excellent employee discounts;Career growth and continuous development;Respectful and family-oriented working environment with strong company values.As the Customer Service Agent, you will:Provide excellent customer service to our team and our guestsCommunicate with guests by following your training resolution processesContact customers through outbound queue provide updates and book deliveries and advise of delivery/technician timeframesAccurately opens, monitors and closes Customer Service OrdersAccurately records Delivery Completion DataComplete Customer Invoicing and initiate parts orderingAs a successful candidate you will have the following:Be available to work days, evening and weekends as requiredHave excellent verbal communication skills and telephone etiquette with ability to negotiate tactfully and act with diplomacy and respectGood computer skills with ability to quickly learn new applicationsApply now!Job Types: Part-time, PermanentPart-time hours: 8-20 per weekSalary: $16.50-$17.00 per hourWork Location: In person\",\n            \"location\": \"Thunder Bay, ON\"\n        },\n        {\n            \"id\": \"E8CEAB2DED77DF06F8B873414C64D339\",\n            \"cityName\": \"New Westminster, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b8a39ab4411a1cd9\",\n            \"jobName\": \"Casino Dealer (Customer Service Alternative)\",\n            \"companyName\": \"Evolution Americas\",\n            \"rowSalary\": \"$17–$24 an hour\",\n            \"date\": 1694338311721,\n            \"dateOfPosted\": 1693487254517,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2057179,\n                    \"lon\": -122.910956\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"New Westminster\",\n                \"formattedAddress\": \"New Westminster, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"New Westminster\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Job Description  Do you have the flair to be a great entertainer and are able to improvise while performing live as a Casino Dealer? Do you have acting experience and are comfortable hosting live on camera? We are now looking for Casino Dealers who want to work in a fast-paced and social work environment. As a Casino Dealer, you will spend most of your working day in front of the camera hosting classic casino games like blackjack, poker, roulette, and other casino games and interacting with the players. The job will help you grow your performance techniques and your ability to entertain. We operate from a newly renovated facility in the central part of New Westminster, easily accessible from locations such as Surrey, Coquitlam, Port Moody and Burnaby. The studio runs all hours of the day, which means that we offer both night and day shifts. We Offer Generous Compensation Package including: Earn from $17.00 - $24.00 per hour plus monthly performance bonus. Extended Health and Benefit Plan 15 Days Paid Vacation 8 Paid Sick Days 2 Paid Evo Day We are looking for: Fast learners with positive energy who are looking to start a career with us or build professional hosting skills for the future Previous acting, hosting experience is an advantage Applicants should be charismatic with an open-minded personality A show person at heart and be able to communicate fluently in English Open availability for shifts Qualifications  Age 19+ High school diploma or equivalent Professional and service-minded with good communications skills Must be able to work a flexible schedule, evenings, weekends and holidays Must be able to obtain Provincial Gaming License (sponsored by the company) Wear an assigned uniform and maintain professional appearance standards Must be comfortable wearing theatrical make-up (foundation, blush) Fluent in English, with strong communication skills Prior experience as an actor, performer, theatre, or broadcasting. Additional Information  About Us Evolution is a market-leading developer and provider of products and services for online casino entertainment. Our excellence is driven by over 17,000 EVOlutioneers across 30 markets worldwide, working in product innovation, software development, IT solutions, game hosting and business support. Evolution's dynamic and creative environment creates a unique opportunity for personal and professional growth. Our integrated business-to-business solutions guarantee that our clients can always provide an unrivalled online entertainment experience to their players globally. We thrive on remaining an award-winning digital powerhouse of entertainment products and services with an ever-expanding line-up of product brands: Evolution Live, NetEnt, Red Tiger, Ezugi, Big Time Gaming, Nolimit City and DigiWheel. Evolution is a Swedish company founded in 2006 and listed on Nasdaq Nordic (EVO).\",\n            \"location\": \"New Westminster, BC\"\n        },\n        {\n            \"id\": \"02CDBF376E5C170048C23D57770ABF53\",\n            \"cityName\": \"300 East River Rd, New Glasgow, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9bb83abddfab48b1\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Needs Convenience\",\n            \"rowSalary\": \"From $14.50 an hour\",\n            \"date\": 1694338260939,\n            \"dateOfPosted\": 1693493033752,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5741799,\n                    \"lon\": -62.6423135\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"New Glasgow\",\n                \"formattedAddress\": \"E River Rd, New Glasgow, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Pictou County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"New Glasgow\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cash/Debit SalesUp selling a mustLotto and Tobacco SalesCustomer Service/Following PolicyMerchandising/StockingCleaningSign work contract and expectations of job upon hiringLift, kneeling and bendingAble to work alone and have great time management skillsSome experience an asset but willing to trainNight shift premiumJob Type: Part-timePart-time hours: 16 per weekSalary: From $14.50 per hourShift:8 hour shiftDay shiftEvening shiftNight shiftWork setting:Convenience storeWork Location: In personExpected start date: 2023-09-02\",\n            \"location\": \"East River Road, New Glasgow, NS\"\n        },\n        {\n            \"id\": \"0EF364B9856DE9273FD50F911E8EB3CB\",\n            \"cityName\": \"991 Victoria Street North, Kitchener, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3714c8ee9125cbf7\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Colonial Acres Coins Ltd.\",\n            \"rowSalary\": \"$16–$18 an hour\",\n            \"date\": 1694338127185,\n            \"dateOfPosted\": 1693494283922,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4753536,\n                    \"lon\": -80.4310146\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kitchener\",\n                \"formattedAddress\": \"Victoria St N, Kitchener, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kitchener\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service RepresentativeColonial Acres Coins and Jewellery has been in business since 1991. We strive to provide exceptional Customer Service to collectors of numismatics all over the world, focusing on Canadian products. We provide services both online and in our store front.We require a fresh face for our store front to assist customers who come into the store with their numismatic shopping needs.This is a full time position, 9am to 5pm Monday to Friday. Must be available to work one Saturday a month from 9:30am to 3pmKey ResponsibilitiesGreet customers as they come into the store, and direct them to where they need to goAssist customers with their coin and jewellery purchasesProcess transactionsMaintain inventory on an online platformOrganize and maintain products and displays in the store frontAnswer incoming customer inquiriesCollaborate with management teams to stay updated on new products, services, and policiesCollaborate with other departments to ensure smooth operation in day-to-day businessEngage with clients in a friendly and professional manner while actively listening to their needs and concernsResolve customer service problems promptly and accurately, within proscribed company guidelines, and in a manner designed to retain and promote customer loyalty.Daily reconciliationsAnswer incoming phone calls as required in a friendly and professional mannerOther duties as assigned by managementIdeal Candidates will possess:1+ years experience in a customer service environmentHigh school diploma or equivalent requiredCriminal record check may be requiredComfort and ease in dealing with the public in an upbeat, friendly mannerExcellent written and oral communication skillsExcellent problem-solving skillsAbility to multitaskInternet navigation and website user knowledgeExcellent attention to detailComputer proficiencyAbility to work in a fast-paced environmentAbility to maintain strict confidentiality with customer account informationJob Type: Full time, 37.5 hours a week to 44 hours a weekSchedule: 9am to 5pm Monday to Friday. Must be available for one Saturday per month 10am to 3pmJob Types: Full-time, PermanentPay: $16.00-$18.00 per hourBenefits:Casual dressCompany eventsDental careExtended health carePaid time offFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayOvertimeWeekends as neededSupplemental pay types:Overtime payAbility to commute/relocate:Kitchener, ON N2B 3C7: reliably commute or plan to relocate before starting work (required)Application question(s):Are you able to work Monday to Friday, 9am to 5pm?Are you able to work one Saturday a month from 9:30am to 3pm?Education:Secondary School (preferred)Experience:Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Victoria Street North, Kitchener, ON\"\n        },\n        {\n            \"id\": \"3366A56B4340CBCD8F7ECECA0AD3FD17\",\n            \"cityName\": \"1226A King St W, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b2eef0883d5f8654\",\n            \"jobName\": \"Ecommerce Customer Service Representative\",\n            \"companyName\": \"Nella Cutlery & Food Equipment Inc.\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694337711402,\n            \"dateOfPosted\": 1693492878031,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6472532,\n                    \"lon\": -79.3866709\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"King St W, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Nella Cutlery was established 70 years ago, and serves Toronto’s finest restaurants, businesses and food shops with food equipment, utensils and a knife sharpening service. Nella is currently looking for a Ecommerce Customer Service Representative.Responsibilities include:Customer InteractionEngage with customers courteously and professionally across diverse communication channels, such as email, chat, phone.Provide precise and pertinent information about products, prices, promotions, and company policies, catering to customers' specific needs.Order AssistanceAssist customers in placing orders, navigating the ecommerce platform, and completing the checkout process seamlessly.Address inquiries related to product availability, sizing, colors, specifications, and any customization options.Issue ResolutionIdentify and meticulously resolve customer problems and complaints, prioritizing swift resolution and optimal customer satisfaction.Handle customer frustrations and concerns empathetically, ensuring a positive interaction even during challenging situations.Returns and RefundsProficiently manage the returns, exchanges, and refunds process, adhering to established company protocols and ensuring customers are informed about the process.Guide customers through the return process, provide updates on their requests, and ensure a hassle-free experience.Product KnowledgeDevelop an in-depth understanding of the company's product offerings, enabling the delivery of accurate, comprehensive, and insightful information to customers.Technical SupportProvide adept technical support to customers encountering issues with the ecommerce platform, including payment concerns, and account management queries.CommunicationMaintain crystal-clear and concise communication with customers, conveying complex information in a digestible manner to facilitate understanding.CollaborationCollaborate seamlessly with various departments, including logistics, marketing, and product teams, to address customer concerns and provide pertinent information.Order Processing to ShippingFacilitate the seamless transition of web orders to the shipping department, ensuring accurate order details are communicated to expedite timely fulfillment.Collaborate with the shipping team to ensure orders are properly packaged, labeled, and dispatched, monitoring the shipping process to guarantee a smooth delivery experience for customers.Upselling and Cross-SellingRecognize opportunities to introduce additional products or services that align with customers' preferences, enhancing their shopping experience and potentially increasing sales.Feedback and ImprovementAct as a conduit for gathering and transmitting valuable customer feedback to relevant teams, contributing to continuous improvements in products and services.Adaptability and Time ManagementKeep abreast of product updates, policy changes, and evolving customer needs, efficiently managing multiple customer interactions while maintaining service excellence.Customer SatisfactionAspire to surpass customer expectations, leaving a lasting positive impression of the company and its services.Continuous LearningActively participate in ongoing training initiatives to enrich product knowledge, enhance customer service skills, and refine problem-solving capabilities.Qualifications:· Shopify experience or similar ecommerce solution is an asset· Strong working knowledge of MS Excel or similar· Proficient communication skills· Excellent problem-solving skills, analytical skills and be able to multi-task· Excellent organizational skills, with strong attention to detail & timelines· Excellent written and verbal communication skillsStrong ability to work independently and within a team environment Company IntroductionJob Types: Permanent, Full-timeSalary: $20.00-$22.00 per hourBenefits:Casual dressDental careExtended health carePaid time offSchedule:8 hour shiftWork Location: In person\",\n            \"location\": \"King St W, Toronto, ON\"\n        },\n        {\n            \"id\": \"135F7AF4C35B6BE17045DC3CEF49B024\",\n            \"cityName\": \"FreshCo Grocery Store in London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a71c0544528be17f\",\n            \"jobName\": \"Customer Service Manager (Csm)\",\n            \"companyName\": \"Freshco Grocery Store\",\n            \"rowSalary\": \"From $19 an hour\",\n            \"date\": 1694337364008,\n            \"dateOfPosted\": 1693490475110,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9849233,\n                    \"lon\": -81.2452768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OverviewThe Customer ServiceManager is responsible for the efficient and fiscally responsible operation of the front End department. The Manager will lead and manage staff to achieve the highest level of customer service, while adhering to all Food Safety Protocols, Standard Operating Procedures, corporate policies and Health and Safety, and other programs and initiatives. The Manager will also manage budgets, labour costs, inventory control, product presentation and merchandising. The Manager will coach, motivate and develop their team to foster customer loyalty, fullfill customer needs and actively contribute to an environment of employee and customer engagement.The front end manager is responsible for payroll and labour hours of the entire store.The front end running smoothly with no line ups.People LeadershipCreate a coaching and development culture for all employees, which embraces a passion for foodDemonstrate outstanding leadership, while serving as a role modelManage direct reports including: selection, orientation, training and development, performance management, succession planning and compensationCommunicate operational requirements/changes to department employeesManage store operations as requiredCustomer Offering Create a shopping experience that engages customers in a way that enhances loyalty, sales, and profit  Provide superior customer service to meet customer needsDemonstrate exceptional product knowledge, including awareness of product changes, promotions, and seasonal trends*Order, receive, organize, rotate, merchandise and present products and stock in accordance with company standardsExecute winning conditions as requiredPolicy/ Regulatory Adherence Lead the implementation of all corporate policies, initiatives, and Standard Operating Procedures and ensure the department and employees comply and use them effectively, including timely and accurate submission of all relevant documentation as required  Responsible for ensuring that OH&S, food safety, and other regulatory requirements and procedures are implemented and maintained*Financial Directly responsible to ensure the department achieves all financial targets and maximizes sales and margins, including appropriate sales forecasting, variance analysis and correction, and labour cost controlManage the department budgetPersonal/ Professional Development Thorough understanding of all relevant company programs; attend training as requiredKeeps abreast of local competitor activity, industry trends and makes recommendations on internal pricing, promotions and product policiesEmployee Engagement Act as the employer of choice by actively supporting an environment of employee engagement  Initiate, support, participate and lead community and charitable events and activities*Other Duties Coordinate maintenance of department equipment and repairsProvide feedback for continuous improvementMaintain a clean and safe working environment as per Company requirementsOther duties as requiredJob Requirements Ability to work independently in a fast paced environment  Above average communication skills (both oral and written)Full knowledge of department operations and skills*Proficient use of Microsoft Office SuiteFull knowledge of total store operations and skillsHigh School DiplomaMinimum 18 months of retail store experience, particularly in the specific departmentExperience reading and analyzing financial reports, and experience in developing and adhering to budgetsWhile all responses are appreciated only those being considered for interviews will be acknowledged.Looking for a strong leader.Must have 5 years cashier experience.Must be able to work in a fast paced environment and have great customer service.Must be able to multitask in a fast paced environment.Job Type: PermanentSalary: From $19.00 per hourBenefits:Dental careDisability insuranceExtended health careLife insuranceRRSP matchStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftEvening shiftWeekends as neededSupplemental pay types:Bonus payEducation:Secondary School (preferred)Experience:Retail Management: 5 years (required)Work Location: In person\",\n            \"location\": \"London, ON\"\n        },\n        {\n            \"id\": \"0BF0F7FCC69270B5C825C24F7BD6AACD\",\n            \"cityName\": \"Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f196bbc5202be1b4\",\n            \"jobName\": \"Customer Service Representative Supervisor\",\n            \"companyName\": \"Swami Enterprises\",\n            \"rowSalary\": \"$27 an hour\",\n            \"date\": 1694337317754,\n            \"dateOfPosted\": 1693456060560,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7315479,\n                    \"lon\": -79.7624177\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Brampton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 27.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    27.0\n                ],\n                \"range\": {\n                    \"gte\": 27.0,\n                    \"gt\": null,\n                    \"lte\": 27.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 1 year to 2 yearsExperience: 7 months to less than 1 yearTasks Conduct performance reviews Recruit and hire staff Co-ordinate, assign and review work Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Examine and verify accuracy of work and authorize routine deposits and withdrawals Identify training needs and train workers in job duties and company policies Resolve work-related problems and prepare and submit progress and other reports Work conditions and physical capabilities Attention to detail Personal suitability Client focus Organized Reliability Team playerWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Brampton, ON\"\n        },\n        {\n            \"id\": \"976B4970F08C7C21A1B074C919F80BC5\",\n            \"cityName\": \"7622 Keele St, Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=865dd93d8edd8fef\",\n            \"jobName\": \"Bilingual Customer Service Representative- Fulltime Hybrid\",\n            \"companyName\": \"Kohl & Frisch Limited\",\n            \"rowSalary\": \"From $48,000 a year\",\n            \"date\": 1694326493690,\n            \"dateOfPosted\": 1693449564006,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8086703,\n                    \"lon\": -79.50147179999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Keele St, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Founded in 1916, Kohl & Frisch Limited has a solid reputation in the healthcare industry that distinguishes it as the only national, Canadian-owned, and operated wholesale distributor. A family-owned company, it is one of Canada’s leading national distributors and is the essential link between pharmaceutical manufacturers and healthcare providers. Kohl & Frisch is fully equipped to service large chain retailers, independent pharmacies, clinics, and hospitals for all their Rx, OTC, home healthcare, and front shop needs.Primary Role of This PositionIn this role, the Customer Service Representative (CSR) provides excellence in customer service to our customers with regard to order placement and issue resolution.LocationWe are proud to offer full-time remote work for our Bilingual Customer Service team; however there is a requirement to be in-office 1 day per month to meet with the Customer Service team. For this reason, you must be within a reasonable commuting distance to the Concord, ON office or be based in the Montreal area to be able to attend these meetings.Major ResponsibilitiesResponsible for several key customer service tasks including order entry and the resolution of customer issues and inquiries.Empowered to build relationships with customers by ‘owning’ customer issues, being responsive and proactive, and consistently providing a high level of customer follow-up and service.Education and ExperienceHigh school graduatePrevious customer service or Call Centre experience is a strong assetQualificationsCapable of handling a large volume of calls while maintaining professional and efficient serviceAbility to think problems through and recommend creative solutions to nonstandard customer issuesExcellent communication and interpersonal skillsDemonstrated ability to work in a team environmentAbility to communicate effectively (verbally and written) in a professional manner with K& F customers and internal K&F departmentsStrong computer skills (Microsoft Office applications), good typing skillsGood work history including performance, attendance, etc.Must be able to work independently with limited supervisionProactive nature, high attention to detail, and takes initiativeHours of WorkMust be available to work a flexible shift schedule Monday to Friday between 8:00 am to 10:00 pmKohl & Frisch Limited is an equal opportunity employer that is committed to diversity and inclusion in the workplace. We prohibit discrimination and harassment of any kind and are committed to a diverse and inclusive workplace for all. Our employees’ diverse backgrounds, abilities, and experiences make our business successful. This policy applies to all employment practices within our organization. If you are contacted for a job opportunity, please advise us of any accommodations needed to ensure fair and equitable access throughout the recruitment and selection process. All accommodation information provided will be treated as confidential and used only for the purpose of providing an accessible candidate experience.Job Type: Full-timeSalary: From $48,000.00 per yearBenefits:Casual dressCompany eventsCompany pensionDental careEmployee assistance programExtended health carePaid time offVision careWellness programWork from homeSchedule:8 hour shiftMonday to FridayOn callSupplemental pay types:Bonus payExperience:Customer service: 1 year (required)Language:French (required)Shift availability:Day Shift (preferred)Night Shift (required)Work Location: Hybrid remote in Concord, ON L4K 2R5\",\n            \"location\": \"Keele St, Concord, ON\"\n        },\n        {\n            \"id\": \"4447C164C661832ED28DB7DFDA4EBDE9\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9a1d6773486b93f1\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Chivlabs Inc\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694325003210,\n            \"dateOfPosted\": 1668876233982,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 56.130366,\n                    \"lon\": -106.346771\n                },\n                \"country\": \"Canada\",\n                \"locality\": null,\n                \"formattedAddress\": \"Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": null,\n                \"state_code\": null,\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Canada Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Join our team as a remote customer service representative in Canada to assist clients while being safe and at ease in your own home. Start a remote-based career with a group that represents many of the most well-known companies in the world. What you'll do in this job:Take pleasure in busy days filled with phone calls from consumers and problem-solvingProvide first-rate customer service by responding to inquiries, resolving problems, and dispensing knowledge in response to worries and requestsCustomers should be made aware of the features, services, billing, and costs of current products. When applicable, provide alternatives to your current solutions in an effort to keep customers as clients.Work with us and you’ll enjoy:Full-Time, 40 hour/week schedule100% paid trainingFull benefits package including medical, dental, vision, and life insuranceOpportunities for advancement and professional developmentPersonal benefits of working from home including saving time, money, and the environment.Required qualifications, skills and experienceApply with us, if you possess:A high school diploma or GEDThe ability to connect with customers with empathy & offer helpful solutionsExcellent listening & communication skills, both written and verbalBasic PC navigation skills, including basic search engine experience, browser navigation, typing in URL’s, completing forms online, etc.Ability to work evening and weekend shiftsAble to provide a stand-alone monitor, USB corded headset and a quiet, and distraction-free home workspace (we’ll provide the rest!)Job Types: Full-time, Internship / Co-opSalary: $17.00-$18.00 per hourBenefits:Flexible scheduleWork from homeFlexible Language Requirement:French not requiredSchedule:8 hour shiftSupplemental pay types:Commission payEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: Remote\",\n            \"location\": \"Canada Canada\"\n        },\n        {\n            \"id\": \"C3BAF281D31FBEE4AB1D8B7827DF6212\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=94479fb32c17f4ab\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"Sportech Indoor Golf\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694323022852,\n            \"dateOfPosted\": 1693466498865,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Will trainTasks Operate cash register Process money, cheques and credit/debit card payments Receive payment for goods or services Stock shelves and clean counter area Greet customers Provide customer serviceWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"89CE664CBF0FA929B126B908937B5065\",\n            \"cityName\": \"3356 Elmbank Rd, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3a12a94cf84de0a2\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Jet Car Rental\",\n            \"rowSalary\": \"From $18.50 an hour\",\n            \"date\": 1694322956426,\n            \"dateOfPosted\": 1651325595405,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking Customer Service Representative to join our team for the weekend & afternoon shifts. You will be responsible for helping customers by providing product and service information and resolving technical issues.As a Customer Service Representative, you will be responsible for:Qualifying and processing rental contracts with accuracy and detailPersuasively selling optional servicesProcessing customer rental returnsResponding to customer inquiries, providing directions in a courteous and expeditious mannerAdhering to all company policies and proceduresMonitoring fleet availability for reservations and walk-insA commitment to continuous improvement in an ever-changing industryRelated duties as requiredJob Qualifications:Previous car rental experience is requiredAbility to work in a fast paced environment with a variety of tasksAbility to demonstrate professionalism, enthusiasm, and outstanding communication skillsDetail orientedFlexibility to work weekends & afternoonsComputer literateProficiency in EnglishValid Drivers licenseJob Type: Part-timePart-time hours: 16-32 per weekSalary: From $18.50 per hourSchedule:Evening shiftWeekend availabilitySupplemental pay types:Commission payAbility to commute/relocate:Mississauga, ON L4V 1A5: reliably commute or plan to relocate before starting work (preferred)Application question(s):Are you available to work on weekends?Experience:Automotive Rental Occupations: 1 year (required)Driving: 2 years (preferred)Expected start date: 2022-05-06\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"34843951B194319326F32EC19EFFBF97\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e3f09898dcdde398\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Key Equipment Services\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694320757551,\n            \"dateOfPosted\": 1693462783061,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Key Equipment Services Customer Service Representative Who we are: Key Equipment Services, a division of Heritage Food Service Group of Canada, is the largest service provider for the food service industry in western Canada. We have 40 years of history, and our licensed, factory-trained technicians minimize downtime and prioritize urgent service. In addition, we have an extensive support team to drive service excellence and we maintain a sizable inventory of OEM parts. We are the industry leader in Canada, and we care beyond service! A Day in the life: As a CSR at you are the first point of contact for the customer, so your main priority is to welcome them, hear their concerns, and leave them with the confidence that they have been listened to and that they will be looked after. The day goes by quickly in this fast-paced environment. There's always something to learn and this keeps the job fresh and challenging! Responsibilities: Answers incoming/outgoing calls and written communications in a courteous and customer-focused manner Acts as the first point for conflict resolution by listening and empathizing with dissatisfied customers to reduce escalation and achieve a resolution to complaint Provides customers with requested information, updates, ETAs, schedules and contact sub-agents, technicians and other stakeholders as needed Creates service orders using our ERP system from service requests via telephone, emails, portals, and the Salesforce platform Ensures accuracy of information, such as warranty verification, billing address, contact names, equipment location, COD payment processing, etc Builds positive relationships with all clients through active listening Works closely with other members of the customer service team, but also with the team of dispatchers and technicians What you will bring: Minimum of 2 years' experience working in customer service Experience working with an ERP system Excellent written and verbal communication skills Ability to learn quickly Having the curiosity and capacity to learn about various commercial kitchen equipment Minimum 50 wpm Demonstrated ability and proficiency in MS Office suite of applications Need strong memory retention - we service over 300 manufacturers and 1000's of customers Why work for us? Industry-leading compensation Each day brings new challenges and endless learning opportunities Comprehensive group benefits and retirement savings program Extended health, dental, STD and LTD Training and Development Opportunities 24/7 Resources and Support Industry leaders in Canada You will be part of a growing, stable organization, that is the industry leader in Canada We are an equal opportunity employer that supports diversity and inclusion in the workplace. We put safety first, and deliver service excellence with integrity, from a team-driven, collaborative mindset. We support community, both internally and externally. Come join us and be part of a Canadian industry leader in commercial kitchen equipment service. Due to the high volume of interest, we regret that we are unable to respond to all applications. To be considered, candidates must be able to live and work in Canada. Qualified candidates are invited to apply online at:https://keyfood.prevueaps.com/jobs/.\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"EAB696BC808752D6EA02DF80C278C769\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=13ce4148d7c33a6b\",\n            \"jobName\": \"Customer Service Supervisor - Retail\",\n            \"companyName\": \"Maan Truck Sales And Leasing Limited\",\n            \"rowSalary\": \"$29.35 an hour\",\n            \"date\": 1694320168577,\n            \"dateOfPosted\": 1693455962586,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 30.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    30.0\n                ],\n                \"range\": {\n                    \"gte\": 30.0,\n                    \"gt\": null,\n                    \"lte\": 30.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Assign sales workers to duties Order merchandise Establish work schedules Sell merchandise Resolve problems that arise, such as customer complaints and supply shortages Supervise and co-ordinate activities of workers Supervision 1 to 2 people Transportation/travel information Public transportation is available Work conditions and physical capabilities Fast-paced environment Attention to detail Personal suitability Team playerWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"585C6EBA06858A3EBB098102D545A4C7\",\n            \"cityName\": \"181 Commercial St, Berwick, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5619eec944bf9c56\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Petro Canada\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694319955763,\n            \"dateOfPosted\": 1692228063705,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.0460443,\n                    \"lon\": -64.7363937\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Berwick\",\n                \"formattedAddress\": \"Commercial St, Berwick, NS B0P 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Kings County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Berwick\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for an energetic person to join Mel's team!!Job Duties include but are not limited to:Operate all aspects of the register, including cash and card transactions, scanners, and scalesMaintain an accurate cash drawer, ensuring that all transactions are accounted for by the end of the shiftAnswer any customer inquiries, and use your knowledge of store layout and product content to give directions as neededMaintain a clean work environment, keeping register clear for incoming customersOther duties as requestedJob Qualifications:Able to multitask.Able to lift heavy boxes.Able to stand for long periods of time.Attention to DetailAmbitiousJob Types: Full-time, PermanentSalary: From $15.00 per hourBenefits:Dental careVision careDay range:HolidaysMonday to FridayWeekend availabilityFlexible Language Requirement:French not requiredWork setting:Convenience storeWork Location: In person\",\n            \"location\": \"Commercial St, Berwick, NS\"\n        },\n        {\n            \"id\": \"5551750F7CAD31015A4D3BA83488CDE9\",\n            \"cityName\": \"334 Munster Ave, Etobicoke, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6943ffe9000bc101\",\n            \"jobName\": \"Bilingual Call Centre Representative\",\n            \"companyName\": \"Voicelogic\",\n            \"rowSalary\": \"$17–$21 an hour\",\n            \"date\": 1694319786952,\n            \"dateOfPosted\": 1693466500340,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6381825,\n                    \"lon\": -79.5322343\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Munster Ave, Toronto, ON M8Z, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Munster Ave, Etobicoke, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Must be fluent in both English and French (Quebecois).Part time and Full time available. Monday to Friday only. Day time and evening hours available.This bilingual role consists of outbound calls, customer service, and membership renewals for a prominent Canadian membership organization.**We are looking for candidates with a strong call centre, sales. and customer service background.**While we do look at every resume submitted, we only reach out to the applicants we wish to interview. If we have not reached out to you within five business days of when you first applied, then your resume was not selected for an interview.Amenities: For the pleasure of our staff, we have a 1,000 sq ft lounge, full kitchen, water cooler, Microwave, coffee machine, TV, couches, snack machine, outdoor picnic tables, free parking.Site Directions:1. Get off at Kipling Subway station.2. Take the escalators or stairs DOWNSTAIRS and exit LEFT (you will see signs for the South Parking Lot)3. When outside, you will see a bridge. Walk towards it and go under it.Once under the bridge, you are now on Munster Ave.4. Keep walking along Munster Ave to the end of Road. We are at 334 Munster Ave, (Shawbridge & Munster)ALSO AVAILABLE: Part-time work, part time leading to full-time , shift work, customer service, customer support, call center, telemarketing. Flexibility to choose your hours.ABOUT US: We are a communications company. We have been in business since 1997. We service customers in Canada and USA. Our services include b2b and B2C voice broadcasting, email broadcasting, fax broadcasting, and call centre services. ( VOICELOGIC.COM )Job Type: Full-timeSalary: $17.00-$21.00 per hourBenefits:Casual dressFlexible scheduleOn-site parkingSchedule:Monday to FridayNo weekendsExperience:Sales: 1 year (preferred)Call Centre: 1 year (preferred)Customer service: 1 year (preferred)Language:English (required)French (required)Work Location: Hybrid remote in Etobicoke, ON\",\n            \"location\": \"Munster Ave, Etobicoke, ON\"\n        },\n        {\n            \"id\": \"145623EC1DF3B9055D260CE6C9035F8E\",\n            \"cityName\": \"Stony Plain, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bf460fd917d2f2aa\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"Shell Gas Station\",\n            \"rowSalary\": \"$23.18 an hour\",\n            \"date\": 1694319569890,\n            \"dateOfPosted\": 1689370566404,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.52942880000001,\n                    \"lon\": -114.0018793\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Stony Plain\",\n                \"formattedAddress\": \"Stony Plain, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Stony Plain\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Issue receipts and other forms Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Receive and log complaints Receive payments Work conditions and physical capabilities Attention to detail Repetitive tasksWork Term: PermanentWork Language: EnglishHours: 32 hours per week\",\n            \"location\": \"Stony Plain, AB\"\n        },\n        {\n            \"id\": \"2003810F6F385399E20ED91D1466562F\",\n            \"cityName\": \"New Westminster, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=51f6f3d03fd20a53\",\n            \"jobName\": \"Card Shuffler - Customer Service\",\n            \"companyName\": \"Evolution Americas\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694319563155,\n            \"dateOfPosted\": 1693456102860,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2057179,\n                    \"lon\": -122.910956\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"New Westminster\",\n                \"formattedAddress\": \"New Westminster, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"New Westminster\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Company Description  Evolution is a market-leading developer and provider of products and services for online casino entertainment. Our excellence is driven by over 17,000 EVOlutioneers across 30 markets worldwide, working in product innovation, software development, IT solutions, game hosting and business support. Evolution's dynamic and creative environment creates a unique opportunity for personal and professional growth. Our integrated business-to-business solutions guarantee that our clients can always provide an unrivalled online entertainment experience to their players globally. We thrive on remaining an award-winning digital powerhouse of entertainment products and services with an ever-expanding line-up of product brands: Evolution Live, NetEnt, Red Tiger, Ezugi, Big Time Gaming, Nolimit City and DigiWheel. Evolution is a Swedish company founded in 2006 and listed on Nasdaq Nordic (EVO). Job Description  We are looking for driven and focused individuals to work as Card Shuffler in our state of the art broadcast studios in New Westminster, BC. The chosen person will be in charge of shuffling playing cards on the Live gaming tables and provide customer service. Responsibilities Shuffle and change the cards on the Live tables when needed Keep in order and under control all facilities that store playing cards, equipment for the tables, and related documentation To keep in order equipment for the Live tables: playing cards and any sort of tables' equipment Flexible attitude to changing priorities, including changes to shifts and covering colleague absences where required Attend training courses/workshops as required and strive to continually improve his/her own technical skills To keep in order documentation for audit To carry out any other duties that may be reasonably requested from time to time. Qualifications  Good working knowledge of English Ability to work well in a multi-cultural team whilst also being able to work independently Ability to perform and work well under pressure Attention to detail Customer Service Resilience and dedication Applicants must be at least 19 years old able to pass BC Gaming Policy & Enforcement Branch (GPEB) licensing able to work shifts (Morning/Afternoon/Night) able to work in a fast paced environment Additional Information  Why you should apply Earn $17 per hour plus a monthly performance bonus. 15 Days Paid Leave 8 Paid Personal Days 2 Paid Evo Days Extended Benefit Plan (Family Coverage) About Us Evolution is a market-leading developer and provider of products and services for online casino entertainment. Our excellence is driven by over 17,000 EVOlutioneers across 30 markets worldwide, working in product innovation, software development, IT solutions, game hosting and business support. Evolution's dynamic and creative environment creates a unique opportunity for personal and professional growth. Our integrated business-to-business solutions guarantee that our clients can always provide an unrivalled online entertainment experience to their players globally. We thrive on remaining an award-winning digital powerhouse of entertainment products and services with an ever-expanding line-up of product brands: Evolution Live, NetEnt, Red Tiger, Ezugi, Big Time Gaming, Nolimit City and DigiWheel. Evolution is a Swedish company founded in 2006 and listed on Nasdaq Nordic (EVO).\",\n            \"location\": \"New Westminster, BC\"\n        },\n        {\n            \"id\": \"72E1CB88A8A1DFBBFB12A0671E4851FB\",\n            \"cityName\": \"1873 Forge Pl, Abbotsford, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cf6b8f5ed1c2d75d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Matteo Lighting Inc\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694317507314,\n            \"dateOfPosted\": 1693451412781,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.0351127,\n                    \"lon\": -122.3424947\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Abbotsford\",\n                \"formattedAddress\": \"Forge Pl., Abbotsford, BC V2T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Fraser Valley\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Forge Pl, Abbotsford, BC Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Looking for a hardworking, self-motivated employee who will bring energy and enthusiasm to the workplace.Must have excellent English verbal and written skills.Ability to multitask and work in a fast-paced environment.Computer skills required in Outlook, Excel and Word is required.Knowledge of Sage or Truck mate is an asset.Job duties include:Order EntryAnswering phones, replying to emails, sending order confirmationsDeal with customer requests and complaintsRunning Reports when requiredBuilding strong relationships with the customers and sales team to help grow the business.Job Type: Full-timeSalary: $20.00 per hourBenefits:Dental careExtended health careSchedule:Monday to FridayAbility to commute/relocate:Abbotsford, BC V2T 5Z9: reliably commute or plan to relocate before starting work (preferred)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Forge Pl, Abbotsford, BC\"\n        },\n        {\n            \"id\": \"CB9961BFC27EEB4AEED5ACAAC2A121E3\",\n            \"cityName\": \"Vernon, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bbc37bc3bc432ac0\",\n            \"jobName\": \"Customer Service Sales Clerk\",\n            \"companyName\": \"Corbett Office Equipment Ltd.\",\n            \"rowSalary\": \"$17.57 an hour\",\n            \"date\": 1694317111886,\n            \"dateOfPosted\": 1693455752804,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.2670137,\n                    \"lon\": -119.2720107\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vernon\",\n                \"formattedAddress\": \"Vernon, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"North Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vernon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: EnglishHours: 40 hours per weekEducation: Secondary (high) school graduation certificateExperience: Experience an assetWork setting Urban area Furniture store Office supplies store Tasks Operate cash register Provide advice about merchandise Conduct sales transactions through Internet-based electronic commerce Estimate or quote prices, credit or contract terms, warranties and delivery dates Greet customers and discuss type, quality and quantity of merchandise or services sought for purchase, rental or lease Prepare merchandise for purchase, rental or lease Prepare sales, rental or leasing contracts and accept cash, cheque, credit card or automatic debit payment Type of product Office supplies Area of specialization Office furniture Transportation/travel information Own transportation Public transportation is available Work conditions and physical capabilities Repetitive tasks Sitting Combination of sitting, standing, walking Weight handling Up to 13.5 kg (30 lbs) Personal suitability Adaptability Analytical Efficiency Goal-oriented Hardworking Integrity Outgoing Positive attitude Proactive Quick learner Time management Dependability Efficient interpersonal skills Flexibility Organized Reliability Team player Excellent oral communication Accurate Screening questions Are you currently legally able to work in Canada? Health benefits Dental plan Disability benefits Health care plan Paramedical services coverage Vision care benefits\",\n            \"location\": \"Vernon, BC\"\n        },\n        {\n            \"id\": \"FA455A278CD2D404B9D952C136A77030\",\n            \"cityName\": \"Firetronics 2000 Inc. in Saint John, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e05f2062e8d34b71\",\n            \"jobName\": \"Monitoring Call Centre Operator - Bilingual (English/French)\",\n            \"companyName\": \"Firetronics 2000 Inc.\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694316811891,\n            \"dateOfPosted\": 1678307118819,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.2733153,\n                    \"lon\": -66.06330799999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saint John\",\n                \"formattedAddress\": \"Saint John, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Saint John County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saint John\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OverviewAt Firetronics 2000 Inc. safety is our number one concern. We specialize in installing, maintaining and monitoring ULC fire alarm systems. We stand by our services and products, ensuring adherence to all applicable regulations, industry standards and guidelines. One of our principal goals is to be a dependable and trusted partner to our clients, authorities and associations.Find out more information about Firetronics 2000 Inc. by visiting our website at www.firetronics.ca.Duties and ResponsibilitiesMonitor fire and security alarm systems utilizing specialized monitoring software and equipmentHandle all telephone calls efficiently and in a professional mannerNotify appropriate contacts or emergency authorities such as Fire Department, Police, Emergency Medical Services in a prompt and efficient manner following strict proceduresDiligently keep required records and filesPrepare and distribute reports internally and to external parties as requiredFollow all established procedures, regulations and guidelinesOther related duties as may be assignedPlease note that this is not a remote positionQualificationsVerbal and written fluency in both English and FrenchEducation: secondary school diploma minimumPreferred a minimum of 1 year experience in the same or similar role such as 911 Operator/Dispatcher, Customer Service Representative (CSR), Telephone Operator/Agent, Call Centre Operator/Agent, Answering Service Operator/Agent, etc.Excellent telephone and communication skillsFlexibility to work 12-hour rotating shifts (days and nights required)Advanced computer proficiency with strong data entry/keyboarding skillsAbility to work under pressureAttention to detail is requiredAbility to stay focused at all times during working hours.Passing criminal record checkWorking ConditionsFriendly team environmentCareer growth opportunitiesContinuous operations (24/7)12-hour rotating shifts (4 on- 4 off Schedule)Participation in On Call Schedule is requiredOffice environment with semi-open workstationsLocated close to major highways and public transitJob Types: Full-time, PermanentSalary: $20.00-$22.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offVision careSchedule:12 hour shiftSupplemental pay types:Overtime payAbility to commute/relocate:Saint John, NB E2L 4L1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer Service: 1 year (preferred)Language:English fluently (required)French fluently (required)Work Location: In person\",\n            \"location\": \"Saint John, NB\"\n        },\n        {\n            \"id\": \"8E2DBFEDD7060C242ECBFACE6F47B25A\",\n            \"cityName\": \"812 Warden Ave, Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9ae78ed8d12e760c\",\n            \"jobName\": \"Customer Service/Cashier\",\n            \"companyName\": \"California Sandwiches\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694316043579,\n            \"dateOfPosted\": 1667377027488,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7699591,\n                    \"lon\": -79.3038263\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Warden Ave., Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for someone who is high energy, someone who is capable of working well with others while providing a great service to our customers. It’s important that this person is able to take and follow direction. A positive attitude goes along way when you’re working with the public. Food prep, dishwashing, cleanliness, multi-tasker, strong work ethic.Job Type: Full-timeSalary: From $16.00 per hourDay range:Weekend availabilityShift:Day shiftAbility to commute/relocate:Scarborough, ON: reliably commute or plan to relocate before starting work (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Warden Ave, Scarborough, ON\"\n        },\n        {\n            \"id\": \"730379145DDBC67C2B569957D8DF77FD\",\n            \"cityName\": \"1164 Notre Dame Dr, Petersburg, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ee87a0756d789d13\",\n            \"jobName\": \"Customer Service Coordinator\",\n            \"companyName\": \"Queen Of The Thrones™\",\n            \"rowSalary\": \"From $42,000 a year\",\n            \"date\": 1694314849796,\n            \"dateOfPosted\": 1693446671951,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4438974,\n                    \"lon\": -80.6390153\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kitchener\",\n                \"formattedAddress\": \"Notre Dame Dr, Wilmot, ON N0B, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kitchener\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"If this is you, please apply, and feel good about joining a fast growing natural health **COVER LETTER + RESUME REQUIRED**Are you passionate about health and wellness?If you are a dedicated, organized, energetic and joyful person who is looking for a full-time role as Customer Service Coordinator in CPG company in the Natural Health and Wellness industry, then Queen of the Thrones® would love to connect with you.You love the challenge of your company and its amazing products expanding internationally and doing good for all those that invest in themselves. You love the multifaceted nature of our business that includes growing not only a CPG brand, but also Property Management and a Not for Profit Charity Division dedicated to perform research in natural wellness to ultimately serve and grow both people and preserve the planet.If this is you, please apply, and feel good about joining a fast growing natural health products company that makes it easy for people around the world to live the natural way.This is a high-speed, flexible, & exciting job opportunity with wonderful colleagues that are a dream team to work with.Your role is mainly acted on remotely, from the comfort of your home or your favourite working space. You will be required to attend some in-person trainings/meetings in the Kitchener/Waterloo area , and travel internationally for key events with shareholders.You are right for this position because of…A Degree or Diploma in Communications/natural health and wellness or other experienceA personal passion for health, nutrition & natural medicine.You serve selflessly, helping the customer in every way possible, to have an excellent experience with us.You lead and guide your colleagues towards success, always working within the spirit of cooperation and not competition, Yes & thinking, acting as a person of increase and because of that you meet all of your “DONELINES\\\"You have solid attuned business experience You LOVE and thrive in a fast paced environment and find challenges the spice of life having with an excellent ability to make probiotic kombucha lemonade out of rotting lemons.You speak another language preferably Spanish or Portuguese, french, fluently**COVER LETTER + RESUME REQUIRED**THE ROLEAnswering customer service questions online, through email and over the phonesFind creative solutions to improve service to our customersTrack common customer service feedback, and report to other departments to help support improvement of products and customer journeyInnovate ways to rate your ability to provide next level, and extra mile supportOther Administrative tasks as neededUpselling and Cross Selling to best service client needsExceptional understanding of the customer service and sales processesWorking cooperatively with other team membersREQUIREMENTS**COVER LETTER + RESUME REQUIRED**Must be highly proficient in the English languageNice to have Proficiency in other language ( Spanish, French, Portuguese)Must be open to spirituality and growth trainingStrong financial and bookkeeping assistant skills with a friendly, enthusiastic and positive attitude in assisting all shareholdersBe a Person of IncreaseBe a YES AND personA background as a nutritionist, naturopathic doctor, or have alternative formal training in natural health/nutrition, or a personal interest is an assetAbility to adapt and solve problems independently with strong attention to detailExcellent communication and critical thinking skillsMust be flexible, some weeks require more hours, some less, with a few hours on the weekends**COVER LETTER + RESUME REQUIRED**THE COMPANYQueen of the Thrones® is a fast-growing international natural products company and online business located in the Kitchener/Waterloo area. Our mission is to became a Unicorn company in under 10 years, so we can help millions of people around the world to feel better the natural way.Our e-commerce company started a mere 4 years ago but is blooming with growth! Founded by renowned naturopathic doctor, Marisol Teijeiro, the company’s roots date back to 10 years ago, when Marisol barely out of naturopathic Medical School, took a messy, DIY health treatment & invented the only heatless, less-mess, reusable castor oil pack (a natural health practice that improves digestion & other foundational health functions).Our company primarily sells castor oil kits and other self-care products and informational training. Our next phase of growth into done for you services, Not For Profit Research, Property Management of health retreats, ownership of supply chain and apps.HOW TO APPLYDo you think you have what it takes to excel in this exciting role? If so, we invite you to submit your resume to the email provided. We thank all that apply, however, only those selected for an interview will be contacted.Job Type: Full-timeSalary: From $42,000.00 per yearBenefits:Extended health careStore discountFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Bonus payEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: Hybrid remote in Petersburg, ON N0B 1M0\",\n            \"location\": \"Notre Dame Dr, Petersburg, ON\"\n        },\n        {\n            \"id\": \"8CBE80997EA71FF1C5868FCB3868BE38\",\n            \"cityName\": \"9045 Chemin de la Côte-de-Liesse, Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f2f8af1a842a1c22\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Scanwell Logistics (Montreal) Inc.\",\n            \"rowSalary\": \"$650–$700 a week\",\n            \"date\": 1694314817939,\n            \"dateOfPosted\": 1662693617286,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4623591,\n                    \"lon\": -73.72318779999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Chem. de la Côte-de-Liesse, Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 650.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    650.0\n                ],\n                \"range\": {\n                    \"gte\": 650.0,\n                    \"gt\": null,\n                    \"lte\": 650.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cargo Logistics Co-ordinatorWe are seeking a Customer Service Representative to join our team! You will be responsible for helping customers by providing service information and resolving technical issues.Responsibilities:Handle customer inquiries and complaintsData entryProvide information about the products and servicesTroubleshoot and resolve product issues and concernsDocument and update customer records based on interactionsDevelop and maintain a knowledge base of the evolving products and servicesQualifications:Previous experience in customer service, sales, or other related fieldsAbility to build rapport with clientsAbility to prioritize and multitaskPositive and professional demeanorExcellent written and verbal communication skillsJob Type: Full-timeSalary: $650.00-$700.00 per weekSchedule:8 hour shiftCOVID-19 considerations:All employees here are fully vaccinatedEducation:Secondary School (required)Experience:customer service: 2 years (required)Language:English (preferred)French (preferred)\",\n            \"location\": \"Chemin de la Côte-de-Liesse, Dorval, QC\"\n        },\n        {\n            \"id\": \"DD743C032BACBB4249C62DAD3D0C7A82\",\n            \"cityName\": \"8528 Glenlyon Pky, Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a0372c8b2c26cafd\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Key Food Equipment Services\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694314749787,\n            \"dateOfPosted\": 1693455772585,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2016496,\n                    \"lon\": -123.009984\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Glenlyon Pkwy, Burnaby, BC V5J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Glenlyon Pky, Burnaby, BC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Key Equipment ServicesCustomer Service RepresentativeWho we are:Key Equipment Services, a division of Heritage Food Service Group of Canada, is the largest service provider for the food service industry in western Canada. We have 40 years of history, and our licensed, factory-trained technicians minimize downtime and prioritize urgent service. In addition, we have an extensive support team to drive service excellence and we maintain a sizable inventory of OEM parts. We are the industry leader in Canada, and we care beyond service!A Day in the life:As a CSR at you are the first point of contact for the customer, so your main priority is to welcome them, hear their concerns, and leave them with the confidence that they have been listened to and that they will be looked after. The day goes by quickly in this fast-paced environment. There's always something to learn and this keeps the job fresh and challenging!What you will bring:2-3 years previous office experience and customer service experience preferredSuperior communication skills when dealing with challenging service callsExcellent computer skills; savvy with new ERP programs and MS Office (Excel)Typing speed of 50-60 wpmExcellent attention to detail; accurate and efficient with data entryNeed strong memory retention - we service over 300 manufacturers and 1000's of customersGeographically savvy; has better than basic understanding of western provincesWhy work for us?Industry-leading compensationComprehensive group benefits and retirement savings programExtended health, dental, STD and LTDTraining and Development OpportunitiesIndustry leaders in CanadaYou will be part of a growing, stable organization, that is the industry leader in CanadaBe part of a fun and collaborative team dedicated to the success of our businessInput and ideas are always accepted. Your opinion matters here!We are an equal opportunity employer that supports diversity and inclusion in the workplace. We put safety first, and deliver service excellence with integrity, from a team-driven, collaborative mindset. We support community, both internally and externally. Come join us and be part of a Canadian industry leader in commercial kitchen equipment service.Due to the high volume of interest, we regret that we are unable to respond to all applications. To be considered, candidates must be able to live and work in Canada.Qualified candidates are invited to apply online at:https://keyfood.prevueaps.com/jobs/.Job Type: Full-timeSalary: $19.00-$22.00 per hourFlexible Language Requirement:French not requiredSchedule:Monday to FridayOn callWork Location: In person\",\n            \"location\": \"Glenlyon Pky, Burnaby, BC\"\n        },\n        {\n            \"id\": \"3F5AFF8ABF1509BAEF8B0936EBD3E35D\",\n            \"cityName\": \"Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f12c7aa020d84369\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Thos. R. Birnie & Sons\",\n            \"rowSalary\": \"$18–$21 an hour\",\n            \"date\": 1694314709820,\n            \"dateOfPosted\": 1692302691853,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2557206,\n                    \"lon\": -79.8711024\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Opportunity We have a an opening for a full-time Customer Service Representative in our call center. In this position you are a key member of our team, acting as the first point of contact for our company. You are responsible for providing the highest level of customer service to our customers. Key job tasks include: Receive incoming calls in a professional and courteous mannerConvert calls into booked service appointmentsMake outbound calls, following up on recent service visitsPrioritize and coordinate the scheduling of servicesMaintain and update our customer database with accurate information Other administrative duties as assigned Job Type: Full Time Job Location: Our Customer Service Representatives are are expected to report in person to our office location for each scheduled shift. Benefits & Perks:Supportive and friendly office team environment.Competitive wages.Health benefits.RRSP plan with company match.Culture building events. Training and resources to help you learn and grow What We Need From You:Minimum two years of customer service experience.Experience in a call center environment is preferred.Open availability.You are a great communicator and are able to connect and build positive relationships with customers and your team.You are detail-oriented with the ability to multitask.You demonstrate a positive attitude and are willing to learn and grow.You are customer service focused.About Us Thos. R. Birnie & Sons is an original family owned company that has been providing service to the Hamilton and Golden Horseshoe communities for 100 years. We specialize in residential plumbing and drain services. Our team is dedicated to enhancing the lives of the people we meet daily, and we have been for generations! Check us out by visiting our website: www.birnie.pro  Equal Opportunity Employer \",\n            \"location\": \"Hamilton, ON\"\n        },\n        {\n            \"id\": \"49EA8817567D092E563C3FC2B3ECC4BC\",\n            \"cityName\": \"Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e6cda464c6a8b9a7\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Humphry Inn & Suites\",\n            \"rowSalary\": \"$14.15 an hour\",\n            \"date\": 1694314346887,\n            \"dateOfPosted\": 1693456056974,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.895136,\n                    \"lon\": -97.13837439999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: No degree, certificate or diplomaExperience: Experience an assetTasks Answer inquiries and provide information to customers Arrange for billing for services Arrange for refunds and credits Explain the type and cost of services offered Maintain records and statistics Receive and log complaints Receive payments Sell merchandise Financial benefits BonusWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Winnipeg, MB\"\n        },\n        {\n            \"id\": \"A5FE2F5928D92491D411F0E5C9FD6A14\",\n            \"cityName\": \"Cerco Cable Inc. in Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=42e73ec7b4cf9574\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Cerco Cable Inc.\",\n            \"rowSalary\": \"$45,000–$50,000 a year\",\n            \"date\": 1694313672908,\n            \"dateOfPosted\": 1694215273927,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Role DescriptionThis is a full-time on-site role for a Customer Service Representative located in Mississauga, ON.Support the sales team in the preparation of project bids.Support the sales team via Microsoft Office & SharePoint software.Support the sales team related to the IT requests/issues.Support the sales team with the daily order entries.Follow-up of orders for customers with the procurement team.Prepare samples and marketing documents for meetings with clients.Gather the credit references and proper documentation from clients/others so our accounting department may open a line of credit in a timely manner.nd concerns in a timely manner- Maintain accurate and detailed records of customer interactions and transactions- Collaborate with other team members to ensure customer satisfactionSkills:- Excellent verbal and written communication skills- Strong problem-solving abilities- Ability to multitask and prioritize tasks effectively- Proficient in using computer systems and software applications- Ability to work well in a team environmentThis position requires a high level of professionalism, attention to detail, and the ability to handle challenging situations with patience and empathy. Successful candidates will have a strong customer service background and the ability to adapt to changing customer needs.Job Types: Full-time, PermanentSalary: $45,000.00-$50,000.00 per yearBenefits:Dental careLife insuranceOn-site parkingPaid time offSchedule:Monday to FridayAbility to commute/relocate:Mississauga, ON L4W 3Y5: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"DB0D56A3AD01BFD8399E6BEDB6701747\",\n            \"cityName\": \"Sherwood Park, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fd654960140ea81e\",\n            \"jobName\": \"Cashier, Customer Service\",\n            \"companyName\": \"Petro Canada A&W\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694313334168,\n            \"dateOfPosted\": 1686142682670,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5411916,\n                    \"lon\": -113.2957355\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sherwood Park\",\n                \"formattedAddress\": \"Sherwood Park, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sherwood Park\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 7 months to less than 1 yearWork setting Restaurant Retail business Tasks Operate cash register Process money, cheques and credit/debit card payments Scan items Tabulate total payment for goods or services required Receive payment for goods or services Calculate daily/shift payments received and reconcile with total sales Stock shelves and clean counter area Greet customers Provide customer service Assist customers with self-checkout Verify the age of customers when selling lottery tickets, alcohol or tobacco products Screening questions Are you available for shift or on-call work? Long term benefits Other benefits Other benefits Free parking availableWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Sherwood Park, AB\"\n        },\n        {\n            \"id\": \"588917970F3B1FC7A759C6727EB1E455\",\n            \"cityName\": \"6228 Rue St Jacques, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=26678c6139f1aefc\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"The Ups Store #345\",\n            \"rowSalary\": \"From $14.25 an hour\",\n            \"date\": 1694313298374,\n            \"dateOfPosted\": 1669496574521,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.474932,\n                    \"lon\": -73.5954731\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Saint-Jacques, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Bonne disponibilité variante pendant la semaine entre 9h et 18h30. Et disponibilité fiable pour les Samedis entre 10h et 15h Requise. La période de formation commencera avec des quarts flexibles pendant la semaine, durant une période de 3 - 4 semaines.Bilinguisme: Bonne communication Eng/Fr orale & écriteTÂCHES, EXIGENCES ET RESPONSABILITÉSConseiller les clients (par téléphone, email, et en personne) et savoir identifier leurs besoins. Aptitude pour la communication et la résolution de problèmes.Apprendre les processus d’expédition à l’international; Rechercher et fournir les différents tarifs et d'autres options des services à la satisfaction du client.Remplir les labels d’expéditions avec precision; gérer les pick-ups et receptions de colis avec attention; emballage de colis etc..Job Types: Part-time, PermanentSalary: From $14.25 per hourSchedule:8 hour shiftMonday to FridayWeekend availabilitySupplemental pay types:Bonus payCommission payEducation:Secondary School (preferred)Language:French (required)English (required)\",\n            \"location\": \"Rue St Jacques, Montréal, QC\"\n        },\n        {\n            \"id\": \"442F55CEDC3E7DFCD5E70D4CD3380049\",\n            \"cityName\": \"15440 Bayview Avenue, Aurora, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=82343b2330efdff5\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Nj Staffing Agency Inc\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694313112755,\n            \"dateOfPosted\": 1664978000569,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.99592029999999,\n                    \"lon\": -79.44169579999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Aurora\",\n                \"formattedAddress\": \"Bayview Ave, Aurora, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Aurora\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a Customer Service Representative with a strong background in Food industry and written communication skills. Our ideal candidate is an individual who enjoys working in a fast-paced work environment. The Customer Service Representative will be required to follow company policiesLocation: NICK FAMOUS SHAWARMAS located at 15440 Bayview Ave, Aurora, ON L4G 7J1RESPONSIBILITYwelcoming customers,taking beverage and food orders,conducting satisfaction checks,placing orders using the POS, and collecting payments for meals.Servers should be knowledgeable about menu items and be able to answer questions about ingredients and dietary restrictions. Will be trainedGreet and speak with customers.Answer questions about products, processes, or services.Briefly explain things to customers.Resolve customer billing issues.Handle customer complaints.FriendlyOrganizedWorks well under pressureGreat multitasker1 Year experience in restaurant industry(Fast food , Shawarma)Ability to commute/relocate:Job Types: Full-time, Part-time, PermanentSalary: $17.00-$18.00 per hourSchedule:10 hour shift4 hour shift8 hour shiftSupplemental pay types:Bonus payOvertime payTips\",\n            \"location\": \"Bayview Avenue, Aurora, ON\"\n        },\n        {\n            \"id\": \"0FA857B336C119DE00AE92638E363427\",\n            \"cityName\": \"Pearls Furniture and Mattresses in Langley, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3446a170465c459c\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Pearls Furniture And Mattresses\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694312769087,\n            \"dateOfPosted\": 1673959002653,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1041779,\n                    \"lon\": -122.6603519\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Langley City\",\n                \"formattedAddress\": \"Langley City, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Langley City\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for Customer Service Associates for our Langley store.Qualifications*At least 1 year of retail experience;Effective communication skills;Proficiency in English;Proven salesmanship and positive leadership;Proven strong collaboration spirit, enthusiasm, teamwork, and interest in interior design;Available from Monday to Sunday days and evenings.Job Types: Full-time, Part-time, PermanentSalary: $16.00-$20.00 per hourBenefits:On-site parkingStore discountSchedule:8 hour shiftSupplemental pay types:Overtime payWork Location: In person\",\n            \"location\": \"Langley, BC\"\n        },\n        {\n            \"id\": \"35C2B82FD78B2DB1901DDB867BC288F1\",\n            \"cityName\": \"4045 Main Street, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f3e5b5b89e291fdd\",\n            \"jobName\": \"Life Insurance Customer Service Representative\",\n            \"companyName\": \"Tony Lau Insurance Agencies Ltd\",\n            \"rowSalary\": \"$40,000–$50,000 a year\",\n            \"date\": 1694312454173,\n            \"dateOfPosted\": 1693456293550,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2457108,\n                    \"lon\": -123.101237\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Main St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Life Insurance Customer Service Representative is required to be trained in general insurance. Eligible candidate must hold a life insurance license and be computer literate. Mandarin and Cantonese speaking mandatory. We offer:1. Competitive salary and benefits2. Commission3. E & O and License fees4. Quality Life insurance leads from our branches5. Autoplan and General Insurance training6. Excellent prospects for advancementPlease note that this is a salaried position. The employee will work INSIDE an office serving walk-in Autoplan, General Insurance and Life Insurance clients.For the profile of our agencies established in 1981, please visit our website at www.tonylauinsurance.com.Please send resume in confidence to: tlau@tonylauinsurance.comAnnual salary: $40,000-$50,000 plus life insurance commissions and benefitsJob Types: Full-time, PermanentSalary: $40,000.00-$50,000.00 per yearBenefits:Dental careExtended health careSchedule:8 hour shiftSupplemental pay types:Commission payLanguage:Both Mandarin and Cantonese (required)Licence/Certification:Life insurance license (required)Work Location: In personExpected start date: 2023-09-01\",\n            \"location\": \"Main St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"65D3F4681310AAC96093A1C097C06613\",\n            \"cityName\": \"Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c078534eade91e6d\",\n            \"jobName\": \"Ice Cream Scooper/Customer Service - Casual (VictOria Or LangfOrd)\",\n            \"companyName\": \"Parachute Ice Cream\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694312434431,\n            \"dateOfPosted\": 1692349675914,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4284207,\n                    \"lon\": -123.3656444\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Busy local ice cream shop is looking for a positive, reliable, professional team member to work Casually at our Bridge and/orLangford location this Spring/Summer. Pay starts at $17/hr and includes approx $4-6/hr in Tip as well as Vacation pay and potential health benefits (full time staff).This position would be casual to start, but could lead to Seasonal/Permanent Part/Full time for the right candidate. We are prioritizing individuals with more availability. If you are great with customers, love light kitchen duties like making waffle cones, baking pies, and love eating ice cream, we would love to hear from you!Please include your availability, if you are seeking casual, seasonal or permanent employment, and your ideal number of working days per week.We get many applicants so if you want to stand out you're welcome to message us something about yourself. Some ideas are: who you are, what's important to you in a work place and why you think you would be a good fit.A little bit about us: We are a locally owned and operated artisan ice cream shop. We create ice cream for both retail and wholesale markets, both traditional, water buffalo milk, sorbet and vegan. We are positive and passionate about local food, and we love to put smiles on peoples faces! We offer higher than average wages and an equal share of the generous tip pool.The ideal candidate will have some or all of:The ability to work with a team or alonePositive attitudeWillingness to work weekdays and weekendsWilling to work in a fast paced environmentWe offer a full benefits package (health, dental, disability, other) to full-time employees who are committed to working with us long-term.We can’t wait to hear from you!Job Types: Part-time, Permanent, Casual, SeasonalPart-time hours: 8-40 per weekSalary: From $17.00 per hourBenefits:Casual dressDental careDisability insuranceDiscounted or free foodExtended health careFlexible scheduleLife insuranceOn-site parkingPaid time offStore discountVision careSchedule:4 hour shift8 hour shiftDay shiftMonday to FridayWeekends as neededSupplemental pay types:Overtime payTipsApplication question(s):Are you currently living in BC?Are you looking to work at our Victoria or Langford location. Or both?What is your availability?Are you looking for Permanent or Seasonal?Are you looking for Full, Part time or Casual?Work Location: In personExpected start date: 2023-08-14\",\n            \"location\": \"Victoria, BC\"\n        },\n        {\n            \"id\": \"3A44D3372A9A6806C5709C065254115D\",\n            \"cityName\": \"626 Victoria St, Strathroy, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3dc1b42b146d609e\",\n            \"jobName\": \"Cashier/Customer Service Representative\",\n            \"companyName\": \"Mobil Gas Station\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694312399539,\n            \"dateOfPosted\": 1670145906424,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9586997,\n                    \"lon\": -81.63092189999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Strathroy\",\n                \"formattedAddress\": \"Victoria St, Strathroy, ON N7G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Strathroy\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Seeking a reliable and trust worthy individual. Must be comfortable working alone and at night.Job duties would include; general cleaning, closing (or opening) of the store, stocking shelves as needed, customer service, as well as tending to lottery and gas sales. Reliability for shifts is a must as we have a small group of employees.Seeking someone with experience in the following:Customer serviceCashierCigarette sales (or a knowledge of brands and types)Lottery experiencePrevious experience working in a gas station— Part time, 3-4 shifts to start (available for either Saturday or Sunday shifts) 6-8 hour shifts— Primarily afternoon shifts (closing)— Must be available to work some weekendsJob Type: Part-timeSalary: $15.50 per hourShift:Evening shiftCOVID-19 considerations:All customers and employees are required to wear a mask. The employees must sanitize the POS and disinfect the pumps, door handles, pinpads, etc.Experience:Retail sales: 1 year (preferred)Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Victoria St, Strathroy, ON\"\n        },\n        {\n            \"id\": \"1752EFB1C67AE3C4C912969BBEB94CCF\",\n            \"cityName\": \"282 W 49th Ave, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e622441d734d1b6b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Ybc\",\n            \"rowSalary\": \"$17.25 an hour\",\n            \"date\": 1694312185673,\n            \"dateOfPosted\": 1693455764619,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2674848,\n                    \"lon\": -123.1094236\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W 4th Ave, Vancouver, BC V5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"W th Ave, Vancouver, BC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Title: Customer Service Representative Location: YMCA Contact Centre (282 W 49th Ave, Vancouver, BC V5Y 2Z5 or 955 Burrard St, Vancouver, BC V6Z 1Y2) Terms: Permanent, Part-Time (8-24 hours/week) Shifts: Thursday-Saturday or Sunday 8:00am-6:00 pm Start Date: As soon as possible Salary: 0-500 hours $17.25 per hour 501-1000 hours $17.77 per hour 1001 – 1500 hours $18.30 per hour 1500 + hours $18.85 per hour Reports To: Manager, Client Services Benefits: Free YMCA Staff Membership Casual dress code Flexible Scheduling Training and Professional Development Opportunities Be part of a charitable organization that positively impacts the community Nature & Scope: The Client Services Representative works collaboratively with YMCA staff and volunteers to provide exceptional service to YMCA members, guests, and staff. The primary focus is on the client experience, resolving any client issues and promoting membership sales and services. Who we are? We’re a small group of dedicated individuals who love working with our Members and our Community. We are compassionate, innovative, accountable and strive to contribute to the success of the team and the YMCA as a whole. Who you are? You are detail-oriented, conscientious and eager to learn. You take pride in your work and are passionate about helping others. You enjoy working as part of Team and look for opportunities to affect change. A Day at the Contact Centre: We are not your typical Contact Centre. We provide a casual, relaxed atmosphere where you are encouraged to contribute ideas and provide solutions. Your daily assignments include responding to members via emails and inbound and outbound phone calls, working on reports and other administrative tasks. You are encouraged to provide feedback and suggestions to make our Team and Department better. As your knowledge grows, you will assist with training new staff/volunteers in procedures and practices. Requirements: Computer proficiency, including Microsoft Office and CRM systems experience Excellent communication and interpersonal skills with customer service orientation Exceptional customer service skills and a great attitude towards helping others Successful candidates will be required to provide a current and satisfactory Criminal Reference Check/Vulnerable Sector Search issued no later than six (6) months preceding your start date 3 professional references YMCA BC is committed to creating an inclusive, accessible environment where all members of our community feel valued, respected, and supported. We encourage applications from the diverse communities in which we live and serve, including but not limited to people of colour, Indigenous people, persons with disabilities, and persons of any sexual orientation or gender identity. We have established policies, procedures, and practices to meet accessibility standards throughout the hiring process. Should you require any accommodation throughout the recruitment process, please do not hesitate to contact our Human Resources department. Application Deadline: Ongoing Thank you for your interest and application. Due to the high volume of applications received, only short-listed candidates will be contacted.\",\n            \"location\": \"W th Ave, Vancouver, BC\"\n        },\n        {\n            \"id\": \"BD3A8B275556246F94115F81FCAD3F87\",\n            \"cityName\": \"Vernon, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fb437fb3925f0190\",\n            \"jobName\": \"Call Center Representative\",\n            \"companyName\": \"Fox Plumbing Heating Cooling Electrical\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694312133632,\n            \"dateOfPosted\": 1693455840827,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.2670137,\n                    \"lon\": -119.2720107\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vernon\",\n                \"formattedAddress\": \"Vernon, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"North Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vernon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Call Center Representative in Vernon, BC at FOX Plumbing Heating Cooling Electrical WHO YOU ARE You're not just a Call Center Representative – you're the voice of exceptional service and customer satisfaction. Your passion for building genuine rapport, coupled with your effective communication skills, make you a valued team member. Whether addressing inquiries or resolving issues, your authenticity shines through, creating memorable interactions. At FOX, we're excited to have you join us as a pivotal part of our customer-centric team. A DAY IN THE LIFEConvert incoming customer calls into meaningful service appointments, delivering an authentic and personable experienceEngage customers with call scripts that resonate and leave a positive impressionRespond promptly to customer requests, efficiently resolving concerns and promoting the FOX brandCultivate professionalism and rapport, fostering repeat business and creating strong customer relationshipsParticipate in training to optimize booking calls and enhance outbound calling skillsAdhere to the company's customer complaint resolution plan, ensuring swift and favorable outcomesMaintain an updated customer database with accurate information for streamlined service delivery WHAT YOU BRINGA track record of delivering exceptional customer service and fostering positive interactionsIT proficiency, strong typing skills, and familiarity with phone systemsStrong organizational skills with an unwavering commitment to task follow-throughExcellent verbal and written communication abilitiesA knack for building trust, demonstrating empathy, and creating lasting customer relationshipsAdaptability to a fast-paced, goal-oriented environment, contributing both individually and as a team playerMotivation, flexibility, and a positive outlook that resonates with your team and customers WHAT'S IN IT FOR YOUCompetitive Compensation and Bonuses: Rewarding your dedication and hard work with competitive wages and performance bonuses.Comprehensive Health Benefits: Access robust health, dental, and vision benefits to ensure the well-being of both you and your family.Work-Life Balance: Enjoy a set schedule with no evenings, weekends, or holidays required, allowing you to cherish time with loved ones.Birthday \\\"PAID\\\" Holiday: Celebrate your special day with a paid holiday, showcasing our commitment to your well-being.Dynamic Work Environment: Thrive in a fast-paced setting, surrounded by a supportive family atmosphere.Daily Support and Training: Receive ongoing coaching and training to enhance your skills and foster your professional growth.Family-Centered Culture: Engage in fun, company-wide events that foster camaraderie and a strong sense of community.Full-Time Employment: Benefit from full-time work, providing stability and consistency.Work/Life Balance: Embrace a healthy balance between your work responsibilities and quality time with friends and family.Peak Time Flexibility: Alternate shift options during peak periods, ensuring adaptability while maintaining overall work-life harmony. ABOUT US FOX Plumbing Heating Cooling Electrical is more than a company – it's a community dedicated to growth and excellence. With a legacy spanning over two decades, we're a trusted name in the Vernon home service industry. Our team is committed to exceeding expectations, delivering 5-star service, and creating an environment where you can thrive. As a Call Centre Representative at FOX, you're joining a community that values your contributions and invests in your success. Your commitment to exceptional service aligns perfectly with our mission to raise the bar in customer experiences. Join us for a journey of learning, achievement, and industry excellence. At FOX, you're not just an employee – you're part of a family that is dedicated to your success and prioritizes your growth. Apply now and let's talk!\",\n            \"location\": \"Vernon, BC\"\n        },\n        {\n            \"id\": \"B9B80089D87CE0CECE014ECA5FFA535E\",\n            \"cityName\": \"Terrace, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6c113b2ccd01304d\",\n            \"jobName\": \"Call Center Rep\",\n            \"companyName\": \"Grand Techx Group\",\n            \"rowSalary\": \"$73,763–$84,107 a year\",\n            \"date\": 1694311247070,\n            \"dateOfPosted\": 1693452705586,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.5181925,\n                    \"lon\": -128.6031539\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Terrace\",\n                \"formattedAddress\": \"Terrace, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kitimat-Stikine\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Terrace\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 73763.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    73763.0\n                ],\n                \"range\": {\n                    \"gte\": 73763.0,\n                    \"gt\": null,\n                    \"lte\": 73763.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Thank you for taking a moment to look into our Call Center Program. This is a unique opportunity to join an exceptional team and gain hands-on experience at a high-growth company. This program gives you the chance to learn the steps and systems to efficiently run, market and ultimately grow a business. The primary function of the call center rep is to provide a wide range of strategic, organizational and administrative support to our most premier clientele and business partners. You'll engage with customer through a digital communication center where you can schedule zoom meetings, line up phone calls and streamline email conversations.Requirements:An upbeat, positive attitudeWillingness to go that extra mile for your team and our customersMath/Accounting skills are a plus!Must have experience with Microsoft/ExcelPrior customer service/sales experience is a plusEssential Functions:Book zoom meetings and educate/troubleshoot questions with clienteleWork cooperatively between customers, service providers and other departmentsCommunicate with customers and vendors in a clear, effective, and professional mannerReceive customer inquiries, issues, or challenges and follow-through to resolutionBasic filing and data entryHere’s why you should apply:Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingWe promote from within and are proud to be a company that embraces diversity and inclusion. Please apply with a current resume and be on the lookout for a message from one of our area managers.Job Types: Full-time, CasualSalary: $73,763.00-$84,107.00 per yearBenefits:Casual dressCompany eventsCompany pensionDental careDisability insuranceDiscounted or free foodEmployee assistance programExtended health careFlexible scheduleOn-site gymOn-site parkingPaid time offProfit sharingRRSP matchStore discountVision careWellness programSchedule:Day shiftMonday to FridayMorning shiftNight shiftSupplemental pay types:Bonus payOvertime payRetention bonusSigning bonusTipsWork Location: In person\",\n            \"location\": \"Terrace, BC\"\n        },\n        {\n            \"id\": \"2126479F8A9C6AFBCEE838DE18F2866F\",\n            \"cityName\": \"240 Richmond Street West, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4a6e4b868ca43bb7\",\n            \"jobName\": \"Customer Service Representative (Csr)\",\n            \"companyName\": \"Harwood Sales Group\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694310984683,\n            \"dateOfPosted\": 1693447771440,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6478501,\n                    \"lon\": -79.3958828\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Richmond St W, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond St W, Toronto, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a sales and marketing company based out of Toronto Ontario, looking for motivated and passionate Customer Service Representatives that want to make a difference! Looking for full time schedules, Monday to Friday. Please review the following info for more details!Customer Service Representative Job Responsibilities:Serves customers by providing product and service information and resolving product and service problems.Attracts potential customers by answering product and service questions and suggesting information about other products and services.Maintains financial accounts by processing customer adjustments.Recommends potential products or services to management by collecting customer information and analyzing customer needs.Prepares product or service reports by collecting and analyzing customer information.Contributes to team effort by accomplishing related results as needed.Customer Service Representative Qualifications / Skills:Customer serviceProduct knowledgeMarket knowledgeQuality focusProblem solvingDocumentation skillsPhone skillsListeningJob Type: Full-timeSalary: $20.00-$22.00 per hourBenefits:Flexible scheduleOn-site gymOn-site parkingPaid time offFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Overtime payAbility to commute/relocate:Toronto, ON M5V 1V6: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Richmond St W, Toronto, ON\"\n        },\n        {\n            \"id\": \"F144EFC4C49ADD2017CA02E48A63E288\",\n            \"cityName\": \"6260 Thorold Stone Rd, Niagara Falls, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=297001d35fa3bde4\",\n            \"jobName\": \"Customer Service And Sales Associate\",\n            \"companyName\": \"Party Connection\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694310972836,\n            \"dateOfPosted\": 1689720287733,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.11450360000001,\n                    \"lon\": -79.12803939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara Falls\",\n                \"formattedAddress\": \"Thorold Stone Rd, Niagara Falls, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Niagara Falls\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a sales associate to join our Event Team - friendly and eager to learn. We sell party supplies, helium balloons, party & event decor and party rentals including tents. We pride ourselves in our customer service over the past 38 years in Niagara Falls. You will help our customers who are planning life's special moments. Using your product knowledge, you will showcase our products and services. You will also be required to take phone orders, complete sales, price and put out merchandise, inflate balloons and assist in creating balloon sculptures. A familiarity with computers is helpful in cashing out sales and printing & processing online orders. We have flexible work hours from Monday to Saturday. We are closed on Sundays. If you enjoy a fast paced environment and interacting with people, consider \\\"partying\\\" for a living.Job Types: Full-time, Part-time, PermanentPart-time hours: 20-40 per weekSalary: From $15.50 per hourShift:8 hour shiftCOVID-19 considerations:You are free to wear a mask if you are more comfortable with this protection. Otherwise, we follow covid protocols that are mandated. Ability to commute/relocate:Niagara Falls, ON L2J 1A7: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Thorold Stone Rd, Niagara Falls, ON\"\n        },\n        {\n            \"id\": \"12ABF5BECEDD20DDD3C4F857F768732E\",\n            \"cityName\": \"16610 59a Street NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b7e3f35478e4807a\",\n            \"jobName\": \"Sales Associate/Customer Service\",\n            \"companyName\": \"Circle K\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694310785676,\n            \"dateOfPosted\": 1693449898274,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5225151,\n                    \"lon\": -113.6241906\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"8882 170 St NW, Edmonton, AB T5T 4J2, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"West Edmonton Mall, AB\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative Operate cash registerProvide advice about merchandiseConduct sales transactions through Internet-based electronic commerceGreet customers and discuss type, quality and quantity of merchandise or services sought for purchase, rental or leaseMaintain sales records for inventory controlAssist in display of merchandiseWork Conditions and Physical CapabilitiesFast-paced environmentRepetitive tasksHandling heavy loadsStanding for extended periodsBending, crouching, kneelingWork RemotelyNoJob Types: Full-time, Part-timePart-time hours: 25-30 per weekSalary: $16.00 per hourBenefits:On-site parkingStore discountDay range:Monday to FridayWeekends as neededShift:4 hour shift8 hour shiftDay shiftEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"West Edmonton Mall, AB\"\n        },\n        {\n            \"id\": \"E994D081C4462C68A813D5FB13FCDE29\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b17bcfdedd3afc21\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"Fast Drywall Ltd\",\n            \"rowSalary\": \"$34 an hour\",\n            \"date\": 1694310695349,\n            \"dateOfPosted\": 1688987824361,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 34.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    34.0\n                ],\n                \"range\": {\n                    \"gte\": 34.0,\n                    \"gt\": null,\n                    \"lte\": 34.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 2 years to less than 3 yearsWork site environment Outdoors Noisy Work setting Construction Inspection Willing to relocate Installation Commercial Industrial Institutional Maintenance Residential Repair Tasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Oversee apprenticeship training Recruit and hire workers and carry out related staffing actions Train or arrange for training Estimate costs and materials Ensure health and safety regulations are followed Read blueprints and drawings Requisition or order materials, equipment and supplies Supervision 5-10 people Drywall installers and finishers Apprentices Trades helpers Labourers Transportation/travel information Own vehicle Work conditions and physical capabilities Work under pressure Overtime required Own tools/equipment Steel-toed safety boots Hard hat Safety glasses/goggles Personal suitability Excellent oral communication Organized Reliability Team playerWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"4368AE13D8E8419BCD40641029300BBB\",\n            \"cityName\": \"Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f0b3a74df01fe55e\",\n            \"jobName\": \"Central Dispatcher/Customer Service Kelowna\",\n            \"companyName\": \"Mario's Towing Ltd\",\n            \"rowSalary\": \"$20–$25 an hour\",\n            \"date\": 1694310575988,\n            \"dateOfPosted\": 1694310575738,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8879519,\n                    \"lon\": -119.4960106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Kelowna, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Salary: $20-$25.00 per hour DOE  Central Dispatch Person required Responsibilities: Answering phones, emails Working directly with customers to book tows Working directly with drivers in all locations, giving call information and clearing Maintaining Customer Service with Team Members and Customer's Requirements: Vehicle knowledge an asset. Must have computer skills Able to work under busy conditions Have excellent communication skills dealing with customers, drivers, co-workers, team members and management. Able to work without supervision. Able to work within a team environment Strong Multitasker and Positive Attitude Strong Organizing Skill Criminal Record Check required yearly Extended Health Benefits after 3 months. Job Types: Full-time Job Duties: Answer incoming customer inquiries Offer support and solutions to customers in accordance with the company's customer service policies Job Type: Full-time Wage: $20-$25.00 per hour Benefits: Casual dress Dental care Extended health care Paid time off RRSP match Vision care Schedule: 8 hour shift Day shift Afternoon shift Holidays Weekend availability Experience: Language: English (Required)\",\n            \"location\": \"Kelowna, BC\"\n        },\n        {\n            \"id\": \"656017B782F5CFA53C9D2DA82B8A7C62\",\n            \"cityName\": \"Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=23df94e904bdc54f\",\n            \"jobName\": \"Call Center Representative\",\n            \"companyName\": \"Jetfx Solutions\",\n            \"rowSalary\": \"$53,244–$74,016 a year\",\n            \"date\": 1694310274013,\n            \"dateOfPosted\": 1692552366145,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8879519,\n                    \"lon\": -119.4960106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Kelowna, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 53244.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    53244.0\n                ],\n                \"range\": {\n                    \"gte\": 53244.0,\n                    \"gt\": null,\n                    \"lte\": 53244.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"If you're looking to join a company that has won back-to-back awards for their company culture and workplace vibe, look no further! We’re making a massive expansion throughout the state and giving a handful of candidates the chance to launch the career of a lifetime.I'm sure you have some questions. No worries! Upon being chosen to move forward in the hiring process, you'll receive a full company overview to make sure you have everything you need to know about this opportunity. With our whole company now working remote, a call center job has never been more convenient or more lucrative!Why work here?Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingRequirements:An upbeat, positive attitudeWillingness to go that extra mile for your team and our customersMath/Accounting skills are a plus!Must have experience with Microsoft/ExcelPrior customer service/sales experience is a plusEssential Functions:Book zoom meetings and educate/troubleshoot questions with clienteleWork cooperatively between customers, service providers and other departmentsCommunicate with customers and vendors in a clear, effective, and professional mannerReceive customer inquiries, issues, or challenges and follow-through to resolutionBasic filing and data entryWe are an Equal Opportunity Employer. We promote from within and are proud to be a company that embraces diversity and inclusion. Our approach to training and ongoing mentorship is what has led us to be ranked as a top workplace, top office culture, and put on the Forbes list as one of the happiest companies to work for. Please apply with a recent resume and lookout for email correspondence from our area managers.Job Types: Full-time, Permanent, CasualSalary: $53,244.00-$74,016.00 per yearBenefits:Casual dressCompany eventsCompany pensionDental careDisability insuranceDiscounted or free foodEmployee assistance programExtended health careLife insuranceOn-site gymOn-site parkingPaid time offProfit sharingStore discountTuition reimbursementVision careWellness programSchedule:Evening shiftMonday to FridayMorning shiftSupplemental pay types:Bonus payCommission payOvertime payRetention bonusSigning bonusTipsWork Location: In person\",\n            \"location\": \"Kelowna, BC\"\n        },\n        {\n            \"id\": \"0E4C52552A58E36A14577585DED8F8B9\",\n            \"cityName\": \"145 Idema Rd, Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a25cebcd9f06985d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Ventmere\",\n            \"rowSalary\": \"$15.50–$18.00 an hour\",\n            \"date\": 1694310257543,\n            \"dateOfPosted\": 1693448391805,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8162561,\n                    \"lon\": -79.3510552\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Markham\",\n                \"formattedAddress\": \"Idema Rd, Markham, ON L3R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Idema Road, Markham, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job descriptionCOMPANYVentmere is a fast-growing start-up specializing in online marketing and ecommerce. We make use of the latest web-based technologies and platforms to boost online sales. Ventmere offers a vast catalog of products across all major online marketplaces on the planet.DUTIES AND RESPONSIBILITIESSolve customer inquiry tickets on ZendeskAnswer emails, phone calls and chat inquiriesProvide product troubleshooting and recommendations in audio, tools, small appliances, etcMake decisions on returns, refunds and warranty claimsIdentify potential product flaws and raise them to manufacturersIdentify opportunities to improve the efficiency of customer servicesCOMPETENCIES AND QUALIFICATIONSGreat personality and communication skillsExcellent professional phone and email etiquetteFluent in English, verbally and writtenCustomer service experience preferredAble to learn and understand product functionalities and troubleshootingBilingual in French, Spanish, German or Chinese is a great assetJob Types: Full-time, PermanentSalary: $15.50-$18.00 per hourBenefits:Dental careDiscounted or free foodExtended health careOn-site parkingVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Overtime payWork Location: In person\",\n            \"location\": \"Idema Road, Markham, ON\"\n        },\n        {\n            \"id\": \"189A382D6381FDB0AAAAD0A94E1E1CFE\",\n            \"cityName\": \"30 Capilano Way, New Westminster, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d55b8d4709320842\",\n            \"jobName\": \"Junk Removal - General Labourer / Driver/ Customer Service\",\n            \"companyName\": \"First Choice Junk Removal\",\n            \"rowSalary\": \"$19–$25 an hour\",\n            \"date\": 1694310232842,\n            \"dateOfPosted\": 1663260714526,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2248876,\n                    \"lon\": -122.8845709\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"New Westminster\",\n                \"formattedAddress\": \"Capilano Way, New Westminster, BC V3L, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"New Westminster\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"APPLY TODAY & START AS SOON AS NEXT WEEK!First Choice Junk Removal is growing and looking for positive, physically fit people to join our Truck Teams.Every day is a new adventure when it comes to the removal industry. We work together as a team, keeping a positive mental attitude. We create the atmosphere needed to have fun while working. This environment allows us to service the customer, give them a great experience; therefore, we are the first and only choice they consider using junk removal services. You'll get to travel around the nicest areas of the Greater Vancouver Area while taking away customer’s unwanted items. Variety is the spice of life!Truck Team Member – General Labour / Customer Service / DriverFull-Time & Part-TimeAt First Choice Junk Removal, we take measures to ensure our team members have access to the recommended health and safety precautions to provide this essential service. Our Safety Focus Areas are healthy teams, physical distance, safety equipment and training, and refusal of service.Compensation:Truck Team Member - General Labour / Customer Service / DriverHiring Immediately for Full-Time and Part-TimePay: Starting Base Pay $16.5 for Navigators Average pay is between $19-$25/hr all-in (inclusive of hourly pay, bonuses, and tips- paid every paycheck)We offer performance-based and promotion-based pay raises as you stay and grow on the team.Schedules that work:We offer full-time or part-time hours (as long as you can work at least 2-days per week).We can accommodate students looking for weekend workShort term work; summers/waiting for work to start up againAbout you:Valid driver’s license (no special license required to drive our trucks)A positive, friendly attitudePhysically capable of lifting 50lbs+ repeatedlyGood verbal and written communication skillsPrevious general labor or customer service experience a plus!https://www.icbc.com/driver-licensing/getting-licensed/Pages/Your-driving-record.aspxJob Types: Full-time, Part-timeSalary: $19.00-$25.00 per hourFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftDay shiftOvertimeWeekend availabilitySupplemental pay types:Bonus payOvertime payTips\",\n            \"location\": \"Capilano Way, New Westminster, BC\"\n        },\n        {\n            \"id\": \"050A6594B3019C9A4ED6DC90CD31372E\",\n            \"cityName\": \"1415 Alberni Highway, Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4a9f65f27a74d2b8\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mid Island Liquor\",\n            \"rowSalary\": \"From $17.75 an hour\",\n            \"date\": 1694310157345,\n            \"dateOfPosted\": 1694310157157,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3045941,\n                    \"lon\": -124.3349719\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Parksville\",\n                \"formattedAddress\": \"Alberni Hwy, Parksville, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Parksville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Liquor is looking for part-time Customer Service Representatives at our Parksville Liquor Store.Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you!Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in the operations of the store, including but not limited to handling customer transactions, responding to customer questions and concerns in a professional manner, creating displays and stocking shelves, and ensuring store and merchandise are neat and organized.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Representative today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. Previous retail experience is preferred, and you must have a valid Serving it Right Certificate (or be willing to get certified prior to your first day).Who we are:Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve.Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op).We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.Job Types: Permanent, Part-timeSalary: From $17.75 per hourBenefits:Employee assistance programFlexible scheduleOn-site parkingStore discountSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Alberni Highway, Parksville, BC\"\n        },\n        {\n            \"id\": \"FBF86AB346423BFA3FC5CFECDF5130D1\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c5dbca2a9db438db\",\n            \"jobName\": \"Customer Service Representative Supervisor\",\n            \"companyName\": \"Rcspl Canada Inc.\",\n            \"rowSalary\": \"$28.50 an hour\",\n            \"date\": 1694310147275,\n            \"dateOfPosted\": 1686806332848,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 29.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    29.0\n                ],\n                \"range\": {\n                    \"gte\": 29.0,\n                    \"gt\": null,\n                    \"lte\": 29.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsHealth benefits Dental plan Health care planWork Term: PermanentWork Language: EnglishHours: 32 hours per week\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"250381D77C03D83BF9178B44D9924EA6\",\n            \"cityName\": \"The Village Store in Athens, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=36a48b206da5a2cf\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"The Village Store\",\n            \"rowSalary\": \"From $32,000 a year\",\n            \"date\": 1694309925017,\n            \"dateOfPosted\": 1689525193992,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6265326,\n                    \"lon\": -75.95113839999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Athens\",\n                \"formattedAddress\": \"Athens, ON K0E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Leeds and Grenville United Counties\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Athens\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 32000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    32000.0\n                ],\n                \"range\": {\n                    \"gte\": 32000.0,\n                    \"gt\": null,\n                    \"lte\": 32000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Village Store is a family-owned and operated grocery business. We're committed to providing a truly exceptional grocery experience, where customers get exceptional value, great service, and great selection.Greet customers and offer exceptional customer service.Scan, process and bag customer orders accurately and with careHandle cash and EFT transactions accuratelyProvide customers with information on our unique items, sales items and up-sellingShare customer feedback with managementMaintain a clean and safe workplace, adhering to sanitation policiesAdditional duties as requiredJob RequirementsPrevious experience working as a Cashier or Service in a grocery store is preferredPassionate about customer service; approachable and enjoys helping customersHealth and safety orientated adhering to food, safety and sanitation standardsExcellent manual dexterity; comfortable standing, bending, walking and light lifting for long periods of timeOpen availability; must be flexible to work all shifts including days, evenings and weekends.Job Types: Full-time, Part-timePart-time hours: 35 per weekSalary: From $32,000.00 per yearDay range:HolidaysMonday to FridayWeekends as neededShift:8 hour shiftDay shiftNight shiftCOVID-19 considerations:Public health guidelines are followed as requiredExperience:sales: 1 year (preferred)customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Athens, ON\"\n        },\n        {\n            \"id\": \"4F0C5CA328926069FA1AF6BB211BACEC\",\n            \"cityName\": \"6941 Steeles Ave W, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a2107e33268b2f5b\",\n            \"jobName\": \"Customer Service Representative With Sales Experience\",\n            \"companyName\": \"Melodia Homecare\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694309872378,\n            \"dateOfPosted\": 1669046159272,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7737989,\n                    \"lon\": -79.5298064\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Steeles Ave W, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Looking for Customer Service Agent that has at least one year of sales experience.Job Type: Full-timeSalary: From $16.00 per hourSchedule:8 hour shiftDay shiftMonday to FridayWeekend availabilitySupplemental pay types:Commission payAbility to commute/relocate:NOBLETON, ON: reliably commute or plan to relocate before starting work (required)Education:DCS / DEC (preferred)Experience:Customer service: 1 year (preferred)Work Location: Hybrid remote in Toronto, ON\",\n            \"location\": \"Steeles Avenue West, Toronto, ON\"\n        },\n        {\n            \"id\": \"4A946BEF71CA22CEBE4D003F0A40D870\",\n            \"cityName\": \"110-6711 MacLeod Trail SW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ec2c4d32f4c76208\",\n            \"jobName\": \"Customer Service Representative (Part Time)\",\n            \"companyName\": \"Homes Alive Pets\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694309686341,\n            \"dateOfPosted\": 1694309686151,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.9702696,\n                    \"lon\": -114.0714787\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Macleod Trail SW, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Why Homes Alive Pets? This isn't your average pet store. You'll feel it when you walk through our door. It's more than beautifully-designed locations and friendly staff – it's a belief in a higher standard for pet care. Our stores are community hubs – somewhere to come and share an experience with your pet. You'll immediately notice a refreshing shopping experience at Homes Alive because we take a brand-agnostic, knowledge-over-upselling approach. Rather than pushing a certain product or feeling pressured to meet sales quotas, our team's attention is solely focused on getting to know you and your pet and empowering you to make confident decisions. Our Mission is to add value to every life. When we say every life, we include guests and their pets. Employees and co-workers. Brand reps and vendors. Even our communities. There is life all around us, and it is our mission to add value qualitatively and quantitatively. In the qualitative sense, it is our mission to elevate every life as important and worthwhile. In the quantitative sense, and in the context of our business, it is also our mission to add value, discounts, and a fair balance of price and quality for our guests. This is how we will make a positive impact in our communities and world. Job Title Customer Service Representative Direct Report Store Manager Department Store Operations Location 110-6711 Macleod Trail SW Calgary AB, T2H 2T3 Summary Customer Service Representatives are the first point of contact for customers and strive to ensure that each customer has a positive shopping experience. Responsibilities of Customer Service Representatives include operating cash registers and handling money, providing customers with information about products offered in the store, and maintaining a clean and organized work environment. The ideal Customer Service Representative has excellent communication and people skills, experience in customer service or a willingness to learn, and a passion for pets. Core Competencies A Positive and Hardworking Attitude. A willingness to go the extra mile to provide customers with the best possible shopping experience. Strong Communication Skills. Ability to clearly communicate with customers and other staff. Resilience. Ability to remain calm and navigate through high stress situations Behaviour & Skills Customer Service Excellent time management & attention to detail Excellent teamwork & collaborative abilities Confident & articulate communication Trustworthy & positive attitude Understanding of pet nutrition & needs Ability to lift 50lbs Job Responsibilities Customer Service Representatives are responsible for these 5 areas of store functions in order of Priority with objectives: Customer Service To serve and learn the immediate needs of customers and offering honest and sincere advice, as well as welcoming them to the culture of the Homes Alive community. Operate cash registers and accurately handle cash. Store Appearance Maintain stock on the shelves, product detail communication for your specific section (ie. Price tags, sales signs, etc.), clean and face products and shelves to provide the highest quality of solo shopping experience for the customer. Employee Service Self-initiate service to co-workers and leaders to assist with any projects or tasks to develop a culture and community of servantship and improve the quality of life of those around you. System Maintenance Complete routine tasks specified in checklists & delegated by leaders and follow proper system procedures for efficiency, effective communication, and accuracy of inventory. Self-Development Take initiative in any possible opportunities to learn and develop skills or knowledge in any area within Homes Alive to develop yourself to become a servant leader (a leader that goes the extra mile to serve others). A Day in the Life of a Customer Service Representative Each day as a Customer Service Representative will be dynamic and unique. A typical day will involve you helping customers find the supplies they need for their pets, providing them with information about pet care and nutrition, and assisting them at the cash register. You will also work to make sure your store looks clean and presentable and that inventory on the shelves is full and well organized. As customers often bring their pets into the store, you will also get plenty of opportunity to interact with dogs and cats (and even hand out treats!) Schedule Part-time Guest Service Representatives work up to 30 hrs./week, at the discretion of the Store Manager. Shifts may be morning, afternoon, or evening, Monday to Sunday. Compensation $16.00/hr.\",\n            \"location\": \"S Macleod Trl, Calgary, AB\"\n        },\n        {\n            \"id\": \"9B605CB0A49EA295187BB1EEAE820E5B\",\n            \"cityName\": \"Dollard-Des Ormeaux, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=22279517b8debb0f\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Starbucks Des Sources\",\n            \"rowSalary\": \"From $14.90 an hour\",\n            \"date\": 1694309679236,\n            \"dateOfPosted\": 1648560395532,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4895636,\n                    \"lon\": -73.8205567\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dollard-Des Ormeaux\",\n                \"formattedAddress\": \"Dollard-Des Ormeaux, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dollard-Des Ormeaux\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Great work environment with a friendly staff!Barista tasks include:- Preparing beverages- Creating best moments with customers- Drive thru fun- Basic cleaning tasksOperating hoursMonday - Friday: 5:30-22:30Saturday- Sunday: 6:30-22:30Job Types: Full-time, Part-timePart-time hours: 20 per weekSalary: From $14.90 per hourBenefits:Dental careExtended health carePaid time offRRSP matchVision careSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payOvertime payTipsAbility to commute/relocate:Dollard-Des Ormeaux, QC H9B 1Z9: reliably commute or plan to relocate before starting work (required)\",\n            \"location\": \"Dollard-Des Ormeaux, QC\"\n        },\n        {\n            \"id\": \"9D84C3265DF973D5C959FF78FBCB00F6\",\n            \"cityName\": \"6016 Yonge Street, North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cfc069e3d4e3d2a2\",\n            \"jobName\": \"Bi-Lingual Customer Service Representative (Korean And English)\",\n            \"companyName\": \"Hans Lee Insurance Agency\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694309489414,\n            \"dateOfPosted\": 1666209012530,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7542766,\n                    \"lon\": -79.40866609999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Yonge St, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Insurance office is looking for a candidate to fill a part time position. Candidate must be fluent in English and Korean.Candidate will be responsible for assisting clients with their insurance matters. No prior experience required, however previous office experience will be an asset.Candidate must have excellent computer and phone skills.All training will be provided on the job.Job Type: Part-timeSalary: From $16.00 per hourSchedule:Day shiftMonday to FridayNo weekendsLanguage:Korean (required)\",\n            \"location\": \"Yonge Street, North York, ON\"\n        },\n        {\n            \"id\": \"8C722000192FFE2A38D326E2856A3AD3\",\n            \"cityName\": \"6720 Highway 35, Coboconk, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b18a66516e6c6ed3\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Shell Gas Station Coboconk\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694309250136,\n            \"dateOfPosted\": 1656196808824,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.66080950000001,\n                    \"lon\": -78.80183939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kawartha Lakes\",\n                \"formattedAddress\": \"Coboconk, Kawartha Lakes, ON K0M, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Kawartha Lakes\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kawartha Lakes\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job DescriptionCome and join a winning team with strong family values that has exciting expansion plans. Our company has a great culture where we put the customer at the heart of everything we do!Our Values - Honour: Respect: Honesty: Integrity: Ethics Is this something that you would like to be part of?We are currently hiring at our Shell Gas Station and Convenience Store located in Coboconk.Full time or Part time hours available.What are we looking for?You will have:A positive attitude to working with a team outstanding customer service skills.Your own transportation and be flexible when it comes to working within a business that operates from 5am to 10pm all year round (Holiday hours apply at Christmas time)No Experience necessary. Training will be provided.We offer:Competitive salary ratesSafe environments to workCareer opportunities with a growing businessNew Uniform including safety PPEFull & Part Time Positions availableGreat working culture!Please send us your resume... we'd love to hear from you!'Don't delay...apply today'Job Types: Full-time, Part-timeSalary: $14.00 to $16.00 /hourJob Types: Full-time, Part-timeSalary: $14.00 to $16.00 /hourPart-time hours: 17-35 per weekJob Types: Full-time, Part-time, PermanentSalary: $14.00-$16.00 per hourCOVID-19 considerations:All current COVID-19 Protocols in force at this time.Job Types: Permanent, Part-time, Full-timePart-time hours: 20 - 40 per weekSalary: $15.00-$16.00 per hourSchedule:8 hour shiftAbility to commute/relocate:Coboconk, ON K0M 1K0: reliably commute or plan to relocate before starting work (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)\",\n            \"location\": \"Coboconk, ON\"\n        },\n        {\n            \"id\": \"29DA9BE3375CE282DB170C675BA8E75E\",\n            \"cityName\": \"Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b686e53ce34f1c75\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Alarme Sentinelle / Sentinel Alarm\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694308920898,\n            \"dateOfPosted\": 1693447816110,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4503213,\n                    \"lon\": -73.7500486\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Established in 1978, Alarme Sentinelle is a privately held full-service security company with a ULC listed and Five Diamond monitoring station providing customized solutions to customer in the greater Montreal region. With over 100 years of combined experience amongst our bilingual staff we are able to maintain high value service to our customers.We are looking for a new detail-oriented member to join our team to take the reigns as Customer Service and Sales Support. You will be reporting directly to the former support specialist, who will be moving to another position, and will work closely with the sales department, the installation/service departments and central station manager.If you cannot speak both English andFrench, please do not applyThe following list is not exhaustive, other duties may be assigned by managementResponsibilities· Verify all documents are collected and open customer files accordingly· Prepare contracts and send online using Adobe Sign· Process client inquires over the phone, through email, online chat· Upsell through cancellations and customer feedback· Follow up on potential cancellation and forward to sales team for retention· Process cancellations· Manage social media and website· Perform any other tasks that may be assigned to you from time to timeRequirements· Oral and written fluency in French and English· Ability to provide outstanding customer service· Knowledge of Microsoft Office products· Knowledge of social media platforms· Industry experience is an asset· Confidence to upsell new services to clients· Resourceful with a self-starter attitude· Ability to work under pressure and meet time sensitive deadlines· Ability to work in a teamJob Type: Full-timeSalary: From $18.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingVision careSchedule:8 hour shiftNo weekendsSupplemental pay types:Signing bonusAbility to commute/relocate:Dorval, QC: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Language:English (required)French (required)Work Location: In person\",\n            \"location\": \"Dorval, QC\"\n        },\n        {\n            \"id\": \"87E6B0815F4B196804AEEDE7CFDC2308\",\n            \"cityName\": \"26 Thomas Raddall Dr Suite 182, Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5df08e041e300fbe\",\n            \"jobName\": \"Customer Service Coordinator (Two Positions)\",\n            \"companyName\": \"Canada Games Centre\",\n            \"rowSalary\": \"$42,000–$58,000 a year\",\n            \"date\": 1694308840782,\n            \"dateOfPosted\": 1693447678579,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.65802,\n                    \"lon\": -63.66342119999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax\",\n                \"formattedAddress\": \"Thomas Raddall Dr, Halifax, NS B3S, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Thomas Raddall Dr, Halifax, NS\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Canada Games Centre (CGC) is a vibrant multi-sport community and recreation centre in Halifax, Nova Scotia. We are a 176,000 sqft facility operated by a non-profit society committed to promoting physical literacy, fitness and wellness, and to supporting the needs of high performance sport & athlete development. The Centre runs sport and recreation programs, camps, fitness classes and so much more in an inclusive environment. Located in Mi’kma’ki, the ancestral and traditional lands of the Mi’kmaq people, the CGC acknowledges the Peace & Friendship Treaties signed in this Territory and recognizes that we are all Treaty People. Together, we inspire healthy active living. Position Summary We are looking for two (2) enthusiastic, recreation/sports-minded, positive individuals to provide leadership in delivering exceptional customer service and support to our members and guests. This position is responsible to work alongside another Customer Service Coordinator for the overall day-to-day supervision and training of the Canada Games Centre Customer Service and Membership teams. Strong communication skills and relationship building are key to success in this role. The Coordinator will work within our Service Operations department to ensure members and guests have a quality experience in our Centre. This position will report directly to the Manager, Service Operations and will aid in providing support and leadership to a staff team consisting of Customer Service staff, Membership Assistants, Gate Monitors, and Child Minding staff. In addition to a commitment to exceptional customer service and a positive customer experience, the Customer Service Coordinator must be highly organized, sales focused, manage time effectively, and complete correspondence with members and users in a timely, efficient, and professional manner. This is a client facing role where professionalism and building rapport are the keys to success. ResponsibilitiesHours will consist of flexible daytime, evening, and weekend hoursOrganize and administer customer service protocols and proceduresEnsure staff scheduling for appropriate coverage and keep within budgetary allowancesIdentify training needs and build/conduct training as necessary for staff regarding memberships, service delivery, paperwork completion, and other relevant topicsAssist with member services including, but not limited to check-ins, membership sales, daily cash-outs, facility tours, paperwork, and end of shift reconciliationsAssist with member adherence to the User Code of Conduct for the facility and provide counselling for behaviour improvement and/or disciple when necessaryRespond to inquiries – on-site, emails, and phone calls/textsCommunicate policies, procedures, updates, and all other required information to guestsAssist in the growth and development of memberships for the facility including the corporate membership programAccept and process paymentsReceive and manage all customer complaints or concerns (either directly or through other departments, depending on the specific issue)Act as the lead point of contact for Customer Management Software (Legend) at Customer ServiceDay-to-day coaching, recruitment, hiring, training, and development of part-time and full-time Membership, Customer Service, Child Minding and Gate Monitor staffAdminister the organizations Performance Management system with all members of the Customer Service business unitResponsible for ensuring that staffing levels are appropriate for fluctuating business needsAssist in the planning and implementation of member appreciation events and marketing events to promote membership growthAssist in developing and expanding any procedural documents and training materials necessary for end-users and staffAssist in the organization’s member retention strategy, including working with the Marketing department on member communications, following up on cancellations,Maintaining inventory and ordering supplies for areaUnderstanding and coordination of all financial responsibilities associated with Customer Service, including but not limited to ensuring change/cash floats are monitored and replenished, investigating discrepancies in staff daily balance sheets and payrollLiaise with all Canada Games Centre departments to ensure key messages are received and communicated to the Customer Service teamServe as an after-hours point of contact for Customer Service staff and provide desk coverage when neededWork in conjunction with other Canada Games Centre staff to develop best practices to maximize use of the CentreCommunicate effectively and in a timely manner with public, user groups and staffProcess payments and perform invoicing where necessaryPrepare and submit payrollComplete additional projects and tasks as assigned by Manager, Service OperationsQualifications Education & ExperienceDegree in Business Administration, Recreation Management, or equivalent combination of relevant education and experienceTwo (2) years’ experience in supervisory role in similar environmentExperience in cash handling and revenue reportingExperience working with the public in a customer service focused role including in conflict situationsExperience and comfort using computers and various software programsExperience processing financial transactionsExperience in staff training and coaching for successUnderstand and appreciate the important role that sport, and recreation plays in healthy communitiesStrong interpersonal and communication skillsStrong listening skillsDetail and solution orientedGood decision-making skillsExperience dealing with various publics (individuals, families, corporate, seniors, youth, etc.)Schedule flexibility required – weekdays and weekends + day and evening shiftsWorking ConditionsThis position requires full-time work, 35+ hours per week, with flexibility for working hours between 5:30am and 10:00pm, Monday through Sunday, mornings, evenings, and weekends. This includes the potential to be on call when required by facility operations and schedule demands and to serve as the Person on Duty (POD) on our duty schedule with other facility Coordinators/Supervisors/Assistants.Working conditions in general, subject to seasonal programs, evening meetings, budgetary planning exercises or individual projects or events. May require evening hours for internal meetings or other community meetingsThis position may include heavy lifting of supplies and equipment and may be exposed to loud noises and will require an individual to be able to concentrate in a busy environmentPsychological Demands: Potentially high stress environment due to multi-task requirement and customer expectationsNotesCriminal Record & Child Abuse Registry checks will be required as part of the hiring processWhat’s in it for you?Group benefits and RRSP planEducation allowanceFree facility membershipFree parking and close proximity to Halifax TransitAmazing team environmentOrganization committed to extraordinary staff and customer experienceCompensation Salary will be based on a range from $42,000–$58,000 commensurate with education and level of experience. Applications Instructions To apply, please submit a cover letter and resume, outlining how you meet the specific qualifications listed in the job posting to Wasan Nayfeh at careers@canadagamescentre.ca by Friday, September 29th, 2023. Please include your full name and the position you are applying for in the subject line. Failure to properly identify your application or attach working documents may result in your application being omitted. We are a welcoming and supportive environment whose goal is to be a diverse workplace representative of the citizens we serve. Indigenous people, persons with disabilities, African Nova Scotians, racially visible persons, women in occupations where they are under-represented, and the LGBTQIA2S+ community are encouraged to self-identify on your application.\",\n            \"location\": \"Thomas Raddall Dr, Halifax, NS\"\n        },\n        {\n            \"id\": \"5DC8C81E7E400E7F79067B10B8DD679B\",\n            \"cityName\": \"FAS GAS Plus South Avenue in Spruce Grove, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c0dea4fea545d00c\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Fas Gas Plus South Avenue\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694308534844,\n            \"dateOfPosted\": 1671090684452,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5411191,\n                    \"lon\": -113.9101291\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Spruce Grove\",\n                \"formattedAddress\": \"Spruce Grove, AB T7X, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Spruce Grove\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Company descriptionFAS GAS Plus South Avenue,REDDI MARTConvenience store + Gas stationJob descriptionJob requirements Languages English Education Secondary (high) school graduation certificate Experience 2 years to less than 3 years Specific Skills Sell merchandise; Prepare reports on sales volumes, merchandising and personnel matters; Authorize payments by cheque; Authorize return of merchandise; Assign sales workers to duties; Resolve problems that arise, such as customer complaints and supply shortages; Organize and maintain inventory Additional SkillsEstablish work schedules; Hire and train or arrange for training of staffWork Conditions and Physical CapabilitiesFast-paced environment; Attention to detailPersonal SuitabilityEffective interpersonal skills; Flexibility; Accurate; ReliabilityIndustry: RetailJob Types: Full-time, TemporarySalary: $15.00 per hourSchedule:EveningsWork Location: In person\",\n            \"location\": \"Spruce Grove, AB\"\n        },\n        {\n            \"id\": \"CDF169B8716E4DCB6A17B3007421715F\",\n            \"cityName\": \"Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=69cdb16d0708465d\",\n            \"jobName\": \"Call Center Agent\",\n            \"companyName\": \"Orange Dot Clean\",\n            \"rowSalary\": \"$19.80–$25.50 an hour\",\n            \"date\": 1694308530848,\n            \"dateOfPosted\": 1692606882001,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:Interact with all customers in a friendly and courteous mannerMust be able and willing to receive a high amount of inbound callsPerform a variety of tasks associated with customer and client servicesThorough documentation of all contacts within the customer management systemHandle interactions via phone, chat, or emailUnderstand and adhere to all rules of conductQualifications:High School Diploma or combination of education and experienceHigh-speed internet connection (if working remotely)Excellent verbal and written communication skillsBasic understanding of windows base systemsAbility to read, understand, and follow oral and written instructionsStrong attention to detailJob Types: Full-time, Part-timePart-time hours: 20 per weekSalary: $19.80-$25.50 per hourBenefits:Company pensionDental careLife insurancePaid time offSchedule:Monday to FridaySupplemental pay types:Commission payAbility to commute/relocate:Hamilton, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"129BE0B2EE65873E8EE2BD20CF3A88A7\",\n            \"cityName\": \"478 Woody Rd, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2abd8364feb03115\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"U-Haul\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694307457652,\n            \"dateOfPosted\": 1661368312355,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.467517,\n                    \"lon\": -79.6876659\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"START TODAY, GET PAID TODAY! New hires eligible for BONUS!Are you a people person? Do you love helping others? U-Haul is in search of friendly, motivated people for the position of Customer Service Technician. As a Customer Service Technician, you will work as part of a supportive team to be the face of U-Haul’s exceptional service, ensuring customers get all the help they need on their journeys.U-Haul Offers Customer Service Representative:Paid holidays, vacation, and sick daysCareer stabilityOpportunities for advancementValuable on-the-job trainingComplete Benefit Plan if eligibleRRSP payroll deduction planDeferred profit-sharing plan if eligible.Discounts on Dell computers, hotels, and moreCustomer Service Representative Responsibilities:Assist customers inside and outside U-Haul Center with U-Haul products & servicesUse smartphone-based U-Scan technology to manage rentals and inventoryMove and hook up U-Haul trucks and trailersClean and inspect equipment on the lot including checking fluid levelsAnswer questions and educate customers regarding products and servicesPrepare rental invoices and accept equipment returned from rentalCustomer Service Representative Minimum Qualifications:Valid driver’s license and ability to maintain a good driving recordHigh School Diploma or equivalentWork Environment:The work involves moderate risks or discomforts which require special safety precautions, e.g., working around moving parts or machines, fumes, or irritant chemicals. May be required to use protective clothing, or gear such as masks, goggles, gloves or shields.Physical Demands:The work requires some physical exertion such as long periods of remaining stationary, moving around an office and occasionally outdoors, positioning oneself to reach objects at varying heights, and moving equipment weighing a minimum of 50 lbs. assisted or unassisted.U-Haul is an equal opportunity employer. All applications for employment will be considered without regard to race, color, religion, sex, national origin, physical or mental disability, veteran status, or any other basis protected by applicable federal, provincial, state, or local law. Individual accommodations are available on requests for applicants taking part in all aspects of the selection process. Information obtained during this process will only be shared on a need to know basis.Job Type: Part-timePart-time hours: 30 per weekSalary: $17.00-$18.00 per hourSchedule:8 hour shiftAbility to commute/relocate:Oakville, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)\",\n            \"location\": \"Oakville, ON\"\n        },\n        {\n            \"id\": \"73BC01456EEA301CD4AE1F728DE6D3F9\",\n            \"cityName\": \"High Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e12c0ead00297621\",\n            \"jobName\": \"Customer Service Associate - High Prairie\",\n            \"companyName\": \"Peavey Industries Lp\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694307296148,\n            \"dateOfPosted\": 1693450116049,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.43289910000001,\n                    \"lon\": -116.4886918\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"High Prairie\",\n                \"formattedAddress\": \"High Prairie, AB T0G 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 17\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"High Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate Type of Employment: Part time Location: High Prairie  With its Corporate office in Red Deer, Alberta and its Regional office in London Ontario, Peavey Industries LP is the corporate parent to retail brands Peavey Mart, MainStreet Hardware, and Ace Canada. We are 100% Canadian and employee owned.  Peavey is an engaging workplace. We are proud to promote from within and provide training to make this possible. We offer flextime and comprehensive benefits.  We are committed to our customers and the communities and agricultural regions we serve every day. Job Overview: The Customer Service Associate is a customer service specialist. Customer Service Associates are responsible for advising customers and processing customer purchases/returns. When not attending to a customer, the Customer Service Associate stocks shelves, assists in setting up displays, prices product, and maintains the cleanliness of the store. Ideal Candidate: The ideal candidate has experience working with the public and has excellent customer service skills.  Responsibilities Warmly approaching and greeting customers.Advising customers on products and suggesting solutions to their needs.Providing a high level of customer service.Encouraging further business by thanking customers and asking for them to come back.Help customers with concerns and put them in contact with a Supervisor as needed.Answering the telephone in a warm and friendly mannerLearn and maintain a product knowledge of store merchandiseHelping to set up displays as directed by store management teamProvide customer carry outs and load products for customers. Use Team Lift when needed.Weigh, measure, and cut merchandise to fill customer orders.Establishing/identifying prices for itemsKeying or scanning merchandise for customer purchaseTotal and receive payment for merchandiseIssue receipts, refunds, credits, or change due to customers per policyEnsuring proper return and refund policy is followed, including Management sign-offWrapping or bagging merchandise purchased by the customerCount money in cash drawers at the beginning of shifts to verify accuracyManager on duty verifies opening and closing cash countsStocking/Re-stocking merchandise as neededMaintaining cleanliness of the store and checkout areaMerchandising, pricing and tasking the point of purchase area when there are no customers in lineHelp with receiving on an as needed basisUse safe work procedures while setting a good example to fellow employeesCarry out work in a manner that will not create a hazard to themselves or othersWork with co-workers and members of the Safety Committee to help create a safe working environment by making safety suggestions and recommendationsReport any accidents, incidents, near misses, injuries, and/or occupational health concerns to a safety committee memberFollow Peavey Industries LP medical and first aid proceduresPositively communicate and demonstrate the company’s Core Values Qualifications On the job training or previous experience Employee Perks Employee DiscountInclusive work cultureLaid back atmosphereWork-life balanceOnly those selected for an interview will be contacted. Peavey Industries LP is committed to creating a diverse environment and is proud to be an equal opportunity employer. All qualified applicants will receive equal consideration for employment, and we welcome the unique contributions that you can bring in terms of education, culture, ethnicity, race, sex, gender identity and expression, nation of origin, age, languages spoken, veteran’s status, colour, religion, disability, sexual orientation and beliefs.\",\n            \"location\": \"High Prairie, AB\"\n        },\n        {\n            \"id\": \"2D1A7E544CD5169DBF61FA1DA9CB8F9B\",\n            \"cityName\": \"High Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3f23a16c1a9d827c\",\n            \"jobName\": \"Customer Service Associate - High Prairie\",\n            \"companyName\": \"Peavey Industries Lp\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694306872467,\n            \"dateOfPosted\": 1693450106216,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.43289910000001,\n                    \"lon\": -116.4886918\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"High Prairie\",\n                \"formattedAddress\": \"High Prairie, AB T0G 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 17\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"High Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate Type of Employment: Full time Location: High Prairie, AB  With its Corporate office in Red Deer, Alberta and its Regional office in London Ontario, Peavey Industries LP is the corporate parent to retail brands Peavey Mart, MainStreet Hardware, and Ace Canada. We are 100% Canadian and employee owned.  Peavey is an engaging workplace. We are proud to promote from within and provide training to make this possible. We offer flextime and comprehensive benefits.  We are committed to our customers and the communities and agricultural regions we serve every day. Job Overview: The Customer Service Associate is a customer service specialist. Customer Service Associates are responsible for advising customers and processing customer purchases/returns. When not attending to a customer, the Customer Service Associate stocks shelves, assists in setting up displays, prices product, and maintains the cleanliness of the store. Ideal Candidate: The ideal candidate has experience working with the public and has excellent customer service skills.  Responsibilities Warmly approaching and greeting customers.Advising customers on products and suggesting solutions to their needs.Providing a high level of customer service.Encouraging further business by thanking customers and asking for them to come back.Help customers with concerns and put them in contact with a Supervisor as needed.Answering the telephone in a warm and friendly mannerLearn and maintain a product knowledge of store merchandiseHelping to set up displays as directed by store management teamProvide customer carry outs and load products for customers. Use Team Lift when needed.Weigh, measure, and cut merchandise to fill customer orders.Establishing/identifying prices for itemsKeying or scanning merchandise for customer purchaseTotal and receive payment for merchandiseIssue receipts, refunds, credits, or change due to customers per policyEnsuring proper return and refund policy is followed, including Management sign-offWrapping or bagging merchandise purchased by the customerCount money in cash drawers at the beginning of shifts to verify accuracyManager on duty verifies opening and closing cash countsStocking/Re-stocking merchandise as neededMaintaining cleanliness of the store and checkout areaMerchandising, pricing and tasking the point of purchase area when there are no customers in lineHelp with receiving on an as needed basisUse safe work procedures while setting a good example to fellow employeesCarry out work in a manner that will not create a hazard to themselves or othersWork with co-workers and members of the Safety Committee to help create a safe working environment by making safety suggestions and recommendationsReport any accidents, incidents, near misses, injuries, and/or occupational health concerns to a safety committee memberFollow Peavey Industries LP medical and first aid proceduresPositively communicate and demonstrate the company’s Core Values Qualifications On the job training or previous experience Employee Perks (FT/Permanent) Employee Ownership ProgramEmployee DiscountRRSP Matching ProgramCompetitive Group BenefitsInclusive work cultureLaid back atmosphereWork-life balanceOnly those selected for an interview will be contacted. Peavey Industries LP is committed to creating a diverse environment and is proud to be an equal opportunity employer. All qualified applicants will receive equal consideration for employment, and we welcome the unique contributions that you can bring in terms of education, culture, ethnicity, race, sex, gender identity and expression, nation of origin, age, languages spoken, veteran’s status, colour, religion, disability, sexual orientation and beliefs.\",\n            \"location\": \"High Prairie, AB\"\n        },\n        {\n            \"id\": \"5107EE42F5A36DC1F1E088D05AC7F142\",\n            \"cityName\": \"15110 54a Ave, Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9b9679b94f0c2298\",\n            \"jobName\": \"Customer Service/Key Holder\",\n            \"companyName\": \"Elevation Fitness\",\n            \"rowSalary\": \"$17–$20 an hour\",\n            \"date\": 1694306733266,\n            \"dateOfPosted\": 1689721263149,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1901012,\n                    \"lon\": -122.8503845\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"13438 Central Ave, Surrey, BC V3T 0N2, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Elevation Fitness is looking to hire Customer Service Representatives to join our team!2 Postions: Full time morning 5 am to 1pm and 2nd position is evenings and weekends.Please indicate which position you are applying for.Duties:Service staff are responsible for front desk duties, giving tours, juice bar duties. and providing excellent customer service to members and guests of Elevation Fitness.Qualifications:The ideal candidate will have a background in customer service experience, have a passion for helping others and will be a great team member! Other qualities we are looking for in a candidate include: positive attitude, strong communication skills, self-motivation and dependability.We look forward to hearing from you!Job Type: Full-timeSalary: $17.00-$20.00 per hourSchedule:Evening shiftMorning shiftEducation:Secondary School (preferred)Experience:Microsoft Office: 1 year (preferred)Work Location: In person\",\n            \"location\": \"A  Ave, Surrey, BC\"\n        },\n        {\n            \"id\": \"0AE7E796D7C51764E698EAF49DE182C4\",\n            \"cityName\": \"Lethbridge, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4ff63f5c22735599\",\n            \"jobName\": \"Call Center Rep\",\n            \"companyName\": \"Two Links Solutions\",\n            \"rowSalary\": \"$63,548–$87,321 a year\",\n            \"date\": 1694306187466,\n            \"dateOfPosted\": 1692552257063,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.6955856,\n                    \"lon\": -112.8451364\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lethbridge\",\n                \"formattedAddress\": \"Lethbridge, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 2\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lethbridge\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 63548.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    63548.0\n                ],\n                \"range\": {\n                    \"gte\": 63548.0,\n                    \"gt\": null,\n                    \"lte\": 63548.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"What you get from us:Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeBonusesResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingPrimary Responsibilities:Trained in and proficient in responding to inquiries about varies programs and benefitsIdentify customer needs and expectationsResponsible for promptly and accurately addressing customer inquiriesServe as primary contact for inbound customer issues.Escalate more technical product-related issues to the proper support departmentUpdate customer information and ensure accurate entry of contact informationMaintain quality service by following established policies and proceduresEnsure proper security procedures are followed on all customer interactionsWe are an Equal Opportunity Employer and prohibit discrimination and harassment of ANY KIND: We are committed to the principle of equal employment opportunity for all employees and to providing employees with a work environment free of discrimination and harassment. We hope you take the time to apply today and may we have the chance to speak with each other in the near future.Job Type: Full-timeSalary: $63,548.40-$87,321.30 per yearBenefits:Casual dressCompany carCompany eventsCompany pensionDental careDisability insuranceDiscounted or free foodEmployee assistance programExtended health careFlexible scheduleOn-site gymOn-site parkingPaid time offProfit sharingRRSP matchStore discountTuition reimbursementVision careWellness programSchedule:8 hour shiftDay shiftMonday to FridayMorning shiftSupplemental pay types:Bonus payOvertime paySigning bonusWork Location: In person\",\n            \"location\": \"Lethbridge, AB\"\n        },\n        {\n            \"id\": \"387E750C23651D7E07A200F99652274D\",\n            \"cityName\": \"1782 Baron Rd, Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8924db79cf1d6cdd\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Platos Closet Kelowna\",\n            \"rowSalary\": \"$17.68–$18.20 an hour\",\n            \"date\": 1694305832112,\n            \"dateOfPosted\": 1691455552347,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.88296889999999,\n                    \"lon\": -119.4274829\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Baron Rd, Kelowna, BC V1X, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate / Buyer - Full-time or 3/4 timePlato’s Closet Kelowna is a locally-owned resale business that is all about being fashion savvy and shopping smart. We’re an unique gently used retail store specializing in buying and selling current fashions from petite to plus sizes for teens to young adults.POSITION DESCRIPTIONPresent a high level of customer service by ensuring customers are assisted in an enthusiastic, timely, and knowledgeable manner. Promote all aspects of the business including but not limited to buying, selling, pricing, and merchandising. Work with the team and store management in daily operations of the store.RESPONSIBILITIESGreet customers immediately, determine their needs and handle all transactions in a professional and enthusiastic mannerExhibit appropriate selling and buying procedures and effectively communicate to all customers our Buy Policy as well as our inventory needsBecome familiar with products, brands, and prices and make recommendations of products, including their features and benefits, to suit customers’ needsBecome certified in the buying processPrice and tag all items based on pricing and buying guidelines. Restock store following merchandising plan. Maintain store displays and follow store housekeeping and maintenance standards and proceduresDevelop proficiency in operating computerized Point of Sale (POS) system for all sales transactions, buys, returns, etc.Achieve store sales goals by applying sound customer service and sales protocolQUALIFICATIONSPlato’s Closet Kelowna is looking for high-energy customer service-oriented associates to join our team. We offer a fun, fast-paced family-oriented environment with lots of variety in the role. The right candidate will be available to work flexible hours and meet the following criteria:Proven customer service skillsRetail and Merchandising experience an assetKey Holder experience an assetFlexible availability for day, evening and weekend shiftsAbility to work independently as well as in a team and take direction from supervisorsExcellent communication and interpersonal skillsAbility to work at a fast pace with accuracy (multi-tasking is essential)Basic math skills essentialSales and goal drivenPHYSICAL REQUIREMENTSAbility to stand and walk for long periods of time, up to 8 hours a day.Lift up to 40 lbs. without assistanceBending, rotating, and reaching customary to a retail environment; including receiving, pricing, and stocking/back stocking merchandiseExposure to typical retail environment conditions and noise levelsCOMPENSATIONWage to be discussed, great employee discount and we promote from withinWe thank all applicants for their interest however only those candidates selected for an interview will be contacted. If you meet the above requirements and are interested in joining our team please apply today or stop by the store with your resume.Plato’s Closet Kelowna1782 Baron Rd., Kelowna, BC V1X 7G9Job Types: Full-time, PermanentSalary: $17.68-$18.20 per hourBenefits:Store discountDay range:Monday to FridayWeekends as neededShift:4 hour shift8 hour shiftDay shiftEvening shiftExperience:Fashion retail: 3 years (required)Key Holder: 2 years (preferred)customer service: 3 years (required)Work Location: In person\",\n            \"location\": \"Baron Road, Kelowna, BC\"\n        },\n        {\n            \"id\": \"DD2340282A31676AB1AD01B2A68AC5B2\",\n            \"cityName\": \"2633 Viking Way, Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5edc135b117e2808\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Motostarz\",\n            \"rowSalary\": \"$19.50 an hour\",\n            \"date\": 1694305480221,\n            \"dateOfPosted\": 1665776888686,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1904602,\n                    \"lon\": -123.0733212\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Viking Way, Richmond, BC V6V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for motivated staff to assist customers with motorcycles parts and accessories inquiry. Also, this job is specifically geared towards someone that has a passion for motorcycles. Basic knowledge of motorcycles is a MUST.Some requirements:Assist customers in a friendly and professional manner.Maintain a clean and organized storefront.Receive and issue paymentsWebsiteResponding to emails and shipping orders. Training is provided on the job.No experience needed as long as you know a lot about motorcycles.We are considering Full-time applicants and will provide training for the right candidate.We are open 5 days a week, shifts are from 10-6 pmJob Type: Full-timeJob Types: Full-time, PermanentSalary: $19.50 per hourBenefits:Store discountSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsOvertimeEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)\",\n            \"location\": \"Viking Way, Richmond, BC\"\n        },\n        {\n            \"id\": \"FEE8C5C4A37C3DC191DABA96E001A6E4\",\n            \"cityName\": \"7013 Thunder Bay St, Powell River, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7d08e045cbc4eb08\",\n            \"jobName\": \"Cashier And Customer Service\",\n            \"companyName\": \"Pacific Point Market And Suites\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694305453300,\n            \"dateOfPosted\": 1689526828042,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8037035,\n                    \"lon\": -124.5149188\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Powell River\",\n                \"formattedAddress\": \"Thunder Bay St, Powell River, BC V8A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"qathet Regional District\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Thunder Bay St, Powell River, BC Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Pacific Point MarketWage negotiable – part or full time permanentPacific Point Market and Suites has openings for Part or Full Time Permanent Employees. These roles are available in all areas of the Market.Job Duties and Responsibilities could includeCustomer Service, cash handling, health & safety, receiving and stocking shelves, deli prep, produce, receiving freight etc.Cash register operationProvide superior customer service to all customersEnsure a clean and sanitary environmentTo perform other duties and tasks assigned or required as consistent with the nature and scope of the positionSkills and Qualifications:Must be available to work during day and closing shifts.Previous retail or customer service experience in a grocery setting an assetLotto and/or food safe certification an assetWork well in a fast paced environmentSuperb customer service skills with a desire to provide a great shopping experience for every customerWillingness and availability to work a variety of shifts, including: Mornings, Afternoons, Evenings & WeekendsAbility to work in a safe and responsible mannerDemonstrated high level of communication, interpersonal & conflict resolution skillsProven track record as a self-starter; dedicated and reliablePhysical ability to stand, lift, and handle up to 50 pounds on a regular basisAbility to follow established company policiesExcellent command of the English language both verbal and writtenIf you feel you are the this person and want to join a great Team of people, please drop Resume off at Pacific Point Market and Suites or by emailJob Types: Full-time, Part-timePart-time hours: 24 - 40 per weekSalary: $16.00-$20.00 per hourDay range:HolidaysWeekend availabilityShift:Evening shiftAbility to commute/relocate:Powell River, BC V8A 1E3: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)customer service: 1 year (preferred)Shift availability:Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Thunder Bay St, Powell River, BC\"\n        },\n        {\n            \"id\": \"C57802ADCB4C062474EB12D0988A3AF1\",\n            \"cityName\": \"1402 Douglas St, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=017101dbd4fb32a2\",\n            \"jobName\": \"Cannabis Customer Service Associate (Budtender)\",\n            \"companyName\": \"The Original Farm Ltd.\",\n            \"rowSalary\": \"$19.07–$19.57 an hour\",\n            \"date\": 1694305443049,\n            \"dateOfPosted\": 1693447763075,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4295924,\n                    \"lon\": -123.3645015\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Douglas St, Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Since 2015, FARM has been providing safe access to cannabis in a discreet and professional environment remaining client focused and service minded in a high volume retail setting. Budtenders at FARM interact with customers seeking information on the range of available cannabis products and are essential for the front of house (FOH) customer service team. Individuals in this position educate and train new hires ensuring that quality and efficiency standards are met for all customers.PRINCIPLE DUTIES/RESPONSIBILITIES:Ensuring quality assurance and excellent customer service;Maintaining knowledge of a wide range of products and accessories;Providing customer education on FARM’s range of products;Providing a smooth full-spectrum customer experience;Maintaining a pleasant and organized environment;Strict adherence to all policy and compliance, including The Original FARM’s internal policies, Provincial, and Federal; andOther duties as required.QUALIFICATIONS AND SKILLS:Strong customer service skillsWorking knowledge of POS systems, Word, and ExcelStrong communication skills, time management, and problem-solving skillsWorks well in high volume, high level of care, retail environmentAble to work as a member of a teamStrong cannabis knowledge and passion requiredBC Selling it Right CertificateTERMS OF EMPLOYMENT:Part-time ranging from 10 - 30 hours weeklyMust be willing to sign FARM’s terms of employment contractMust be able to work a variety of night/weekend shifts when requiredMust be willing to cover shifts in the event of sick days/ leaves of colleaguesReports to: Assistant Front of House Managers and Store ManagerDirect Reports: NoFARM adheres to BC Employment Standards law for hiring and terminationJob Type: Part-timePart-time hours: 10-30 per weekSalary: $19.07-$19.57 per hourBenefits:Dental careExtended health careLife insuranceOn-site parkingStore discountSchedule:8 hour shiftDay shiftEvening shiftSupplemental pay types:Overtime payTipsWork Location: In person\",\n            \"location\": \"Douglas St, Victoria, BC\"\n        },\n        {\n            \"id\": \"25C1A2895DEE9F66115F2F5348B0E8D8\",\n            \"cityName\": \"555 W 12th Av, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f64fabca286cdef0\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Vancouver Hot Yoga 101\",\n            \"rowSalary\": \"$15.65–$17.00 an hour\",\n            \"date\": 1694305426004,\n            \"dateOfPosted\": 1671486236843,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2674848,\n                    \"lon\": -123.1094236\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W 4th Ave, Vancouver, BC V5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Hot Yoga 101 | Inferno Hot Pilates Vancouver is seeking a part-time Front Desk Customer Experience and Sales Rep to join our team!We are looking for someone motivated, energetic and friendly to go above and beyond to enhance the customer experience. This is a customer service and sales oriented position. You must be confident in explaining and selling memberships to new and returning students. Previous sales experience is desirable, but we will train the right candidate.The Front Desk Customer Service Team Member is also responsible for ensuring a clean and presentable studio at all times. Cleaning duties are required. This is a part-time position, and will be for our studio inside City Square Mall at Cambie and West 12th.What we are looking for:Enjoys yoga and fitnessFun, friendly and personableSales oriented (sales experience a bonus)Ability to multi-task and prioritize workStrong problem solving abilities (understanding customer needs)Works well in a team environmentExcellent communication skillsAttention to detailIf you are a customer service and sales driven individual, with a passion for yoga, we invite you to apply with your resume via email. Please enter the following in your subject line: \\\" Front Desk Application\\\"Only qualified candidates will be contacted. Please do not call the studio. Applications will only be considered via online process.Job Type: Part-timePart-time hours: 8-20 per weekSalary: $15.65-$17.00 per hourSchedule:HolidaysMonday to FridayWeekend availabilityWork Location: In person\",\n            \"location\": \"W th Ave, Vancouver, BC\"\n        },\n        {\n            \"id\": \"2EA03E917ABF476385E8B55635E57D39\",\n            \"cityName\": \"Lower Sackville, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b0ae1078712f1d99\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Money Direct\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694305322437,\n            \"dateOfPosted\": 1691455532933,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.7763767,\n                    \"lon\": -63.6775544\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lower Sackville\",\n                \"formattedAddress\": \"Lower Sackville, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lower Sackville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Would you like to be part of a fun, friendly, management team? Money Direct is a Canadian owned and operated company with 9 Canadian branches, so we are a very close knit accessible team!Job Description What do you do?In the Customer Service Representative role you will do it all, sales, customer service, local area marketing, collections, security of your store, and the list goes on. Your primary function in the CSR role is to provide excellent customer service through the provision of Money Direct Financial Services.Duties/Responsibilities· Provide and ensure quality Customer Service is consistently delivered .· Complete all product and service transactions in the Point of Sale system.· Enter customer information completely and accurately into the Point of Sale system.· Issue Loans quickly and efficiently ensuring risk assessment strategies are utilized· Cross-selling additional products and services to all customers.· Respond to customer complaints and provide resolution.· Ensure store appearance is maintained in adherence to company standards.· Adhere to and ensure proper operational policy/procedures are followed.· Adhere to and ensure proper Security and cash management policy/procedures are followed.· Maintain all audit/compliance policy/procedures· Carry out chargeback/collection activity and complete all collection related tasks assigned.· Ensure financial goals/targets are met for the store.· Maintain proper accounting procedures and ensure all reporting is completed in a timely fashion.· Successfully, open and close the store and complete all paperwork accurately.· Maintain cash and inventory accuracy/controls and effectively control cash variances.· Drive revenue through the implementation of company-wide marketing plans and execution of promotions as well as through other local area marketing efforts.· All other job related duties as directed by Management.Qualifications/Skills:· High School Diploma· 1-2 years customer service and cash handling· Experience in the financial services industry highly desirable.· Friendly, outgoing, confident / problem solver, flexible, self-motivated, team player.· Customer Service Orientation· Accountability· OrganizationWe invest in our employees, and offer extensive training, and development programs to set you up for future success. If we sound like a fit and you’re ready to start an exciting career with an organization that encourages employee growth, apply today! We look for bright, energetic, motivated individuals who are interested in learning and developing their careerJob Types: Full-time, PermanentJob Type: Full-timeSalary: From $15.50 per hourBenefits:Dental careExtended health careFlexible scheduleLife insuranceOn-site parkingPaid time offSchedule:Day shiftEvening shiftWeekend availabilitySupplemental pay types:Bonus payCOVID-19 considerations:Consistent sanitizing of all high touch surfaces.Education:DCS / DEC (required)Experience:Customer service: 2 years (required)Work Location: In person\",\n            \"location\": \"Lower Sackville, NS\"\n        },\n        {\n            \"id\": \"470BAF0AD80D6C04AC30441BC811A543\",\n            \"cityName\": \"Kuujjuaq, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=517a722e0b3924e4\",\n            \"jobName\": \"Tamaani – Customer Service Representative\",\n            \"companyName\": \"Kativik Regional Government\",\n            \"rowSalary\": \"$38,651 a year\",\n            \"date\": 1694305302609,\n            \"dateOfPosted\": 1664881404540,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 58.102996,\n                    \"lon\": -68.41883899999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kuujjuaq\",\n                \"formattedAddress\": \"Kuujjuaq, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Nord-du-Québec\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kuujjuaq\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 38651.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    38651.0\n                ],\n                \"range\": {\n                    \"gte\": 38651.0,\n                    \"gt\": null,\n                    \"lte\": 38651.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Kativik Regional Government (KRG), a supra municipal body with jurisdiction over the  territory located north of the 55th parallel, is now looking for a self-motivated and dynamic individual interested in joining the KRG to work in the capacity of:TAMAANI – CUSTOMER SERVICE REPRESENTATIVE  (TEMPORARY, FULL-TIME POSITION) The Customer Services Representative is the front line support for Tamaani Internet customers.  He/she has to ensure that Tamaani Internet’s clients receive support to connect to Internet. Under  the supervision of the Internet Services Coordinator, the Customer Services Representative has  responsibility for the following duties:   Assist new customers to activate their Internet service;   Provide basic technical support to existing customers when they have problems related to the Internet;   Assist local Tamaani agents in each village in the troubleshooting and support of remote customers;   Provide support to customers over the phone and sometime go on client’s premises to provide support;   Manage customer’s email accounts (creation, deletion, modifications and passwords management);   Maintain hardware/software inventories of Tamaani’s equipment;   Assist with the maintenance of Tamaani’s Network under the supervision of the Senior Network administrator;   Creating or maintaining support documentation up to date;   Provide assistance to the Senior Accounting Clerk with basic accounting and clerical tasks;   Carry out any work related tasks as requested by the Internet Services Coordinator.QUALIFICATIONS   Pertinent computer training or equivalent;   Possess troubleshooting abilities with computers;   Experience providing services to customers;   Definite interest in computer related activities;   Written and oral working knowledge of at least two (2) of the following languages: Inuktitut, English and French;   Excellent communication skills;   Good organization skills;   Good moral character.Place of employment: KuujjuaqSalary: Min. $38 651 yearly to a Max. $62 638 yearly (E5) Other Benefits: Cost-of-living differential: minimum $8 500 annually; Food allowance: minimum $3 453 annually;  Annual leave trips: maximum of 3 per person annually;  RRSP: 6% employer, 4% employee; Group Insurance;  Vacation: 20 days/year; Statutory Holidays: 19 days including 10 during Christmas  holidays.Please send your résumé to: Human Resources Department Kativik Regional Government P.O. Box 9 Kuujjuaq QC J0M 1C0 Fax: 819-964-2975 E-mail : humanresources@krg.ca* An employee is entitled to receive at least the Northern benefits allocated to an employee without dependants. An employee with dependants is entitled to benefits for her/his spouse and eligible dependants. The KRG is an equal opportunity employer. In accordance with this and with the James Bay and Northern Québec Agreement, conditions may vary to promote the employment of Inuit candidates. Only candidates selected for an interview will be contacted.\",\n            \"location\": \"Kuujjuaq, QC\"\n        },\n        {\n            \"id\": \"48A1B50C8D3BB4F44D166CDD1BC9D7BC\",\n            \"cityName\": \"#550 Rue De Boucherville, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a10048b610c825ff\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Canada-Europe Ltée / Canada-Europe Ltd.\",\n            \"rowSalary\": \"$17–$22 an hour\",\n            \"date\": 1694305254235,\n            \"dateOfPosted\": 1689719095005,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"International trading company (wholesale distributor) is looking for a B2B Customer Service Representative who is passionate about providing excellent inbound customer service to our clients and who will maintain and increase customer satisfaction. Training offered. You will liaise with a Sales Representative and work closely with a Manager, our office and warehouse teams.Main Responsibilities:Respond to existing and prospective inquiries to house accounts, customers and Sales RepresentativeProvide superior B2B customer service (incoming calls, emails, and new quotes)Provide knowledgeable answers to questions about products, pricing, availability and understand each customer's needsUpdate existing customer database, to ensure all communications are logged and identifiedCoordinate communication strategy for Sales Representative and marketingAbout you:Excellent organizational and time-management skillsExcellent communicator and listenerProven ability to effectively manage multiple projects and prioritiesExcellent email communication and note takingSelf-motivated and collaborativeQualifications:Previous experience (2-5 years) with B2B Customer service, inbound sales rolesPrevious experience in Retail hardware and/ or Industrial distribution channelsMust be bilingual and be proficient in French and EnglishGood knowledge of MS (Word, Excel, PowerPoint)Experience in project management and Sales CRMTeam player with excellent interpersonal skillsSchedule:9 am to 5 pm75% desk position (no remote working), 25% on-site with VPWorking at Condor ...Friendly and dynamic teamCasual dress codeLaid back cultureGrowth opportunitiesCompetitive salaryOn-site parkingLocation:Company located at the corner of Notre-dame street East and highway 25 service road. Accessible by public transportation.Metro L'Assomption and bus #33or Metro Langelier and bus #22Starting date: as soon as possibleJob Types: Permanent, Full-timeSalary: $17.00-$22.00 per hourBenefits:Paid time offFlexible Language Requirement:English not requiredSchedule:Monday to FridaySupplemental pay types:Bonus payCOVID-19 considerations:Wearing a mask and social distancing.Application question(s):Do you live in Montreal ?Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"5F0CDE9FDAA3E95F49C015E44FF54A17\",\n            \"cityName\": \"Saint-Augustin-de-Desmaures, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8592a0cae97132e0\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Louis Garneau Sports Inc.\",\n            \"rowSalary\": \"$22.29–$34.02 an hour\",\n            \"date\": 1694305244287,\n            \"dateOfPosted\": 1686955502342,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.747041,\n                    \"lon\": -71.459344\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saint-Augustin-de-Desmaures\",\n                \"formattedAddress\": \"Saint-Augustin-de-Desmaures, QC G3A 2E3, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Québec\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saint-Augustin-de-Desmaures\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: BilingualHours: 37.5 hours per weekEducation: College, CEGEP or other non-university certificate or diploma from a program of 1 year to 2 yearsExperience: 7 months to less than 1 yearWork setting Private sector Bicycle store Tasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for refunds and credits Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Perform general office duties Receive and log complaints Answer written and oral inquiries Computer and technology knowledge Internet MS Excel MS Outlook MS Word Work conditions and physical capabilities Attention to detail Fast-paced environment Tight deadlines Personal suitability Punctuality Client focus Excellent oral communication Excellent written communication Organized Reliability Team player Initiative Judgement Screening questions Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? What is the highest level of study you have completed? Workplace information Remote work available Health benefits Dental plan Disability benefits Health care plan Paramedical services coverage Vision care benefits Long term benefits Deferred Profit Sharing Plan (DPSP) Life insurance Registered Retirement Savings Plan (RRSP) Other benefits Free parking available On-site recreation and activities Paid time off (volunteering or personal days) Parking available\",\n            \"location\": \"Saint-Augustin-de-Desmaures, QC\"\n        },\n        {\n            \"id\": \"6F695D2F5F138B49D98870A3889FB1E3\",\n            \"cityName\": \"210 McLeod Avenue, Spruce Grove, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4bcd89f114d632b9\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Stony Plain Dry Cleaners/Grove Fashion Cleaners\",\n            \"rowSalary\": \"$15–$18 an hour\",\n            \"date\": 1694305094515,\n            \"dateOfPosted\": 1686791782967,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.542311,\n                    \"lon\": -113.9063023\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Spruce Grove\",\n                \"formattedAddress\": \"McLeod Ave, Spruce Grove, AB T7X, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Spruce Grove\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mature person needed for part time customer service work in a dry cleaning plant.-Must be outgoing and good with customer interaction.-Must be organized and able to work alone.-Computer knowledge is an asset.Job Type: Part-timePart-time hours: 16 per weekSalary: $15.00-$18.00 per hourDay range:Monday to FridayWeekend availabilityShift:4 hour shift8 hour shiftAfternoon shiftDay shiftWork Location: In person\",\n            \"location\": \"McLeod Avenue, Spruce Grove, AB\"\n        },\n        {\n            \"id\": \"7BDAFEDC5722BC85323D4DA1B9400866\",\n            \"cityName\": \"3555 Johnston Road, Port Alberni, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f3f75a57aa88e2a0\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"A&W\",\n            \"rowSalary\": \"$15.65–$16.40 an hour\",\n            \"date\": 1694305070395,\n            \"dateOfPosted\": 1642462961646,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2631393,\n                    \"lon\": -124.7980987\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Port Alberni\",\n                \"formattedAddress\": \"Johnston Rd, Port Alberni, BC V9Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Alberni-Clayoquot\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Port Alberni\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"You are an enthusiastic individual who works hard to deliver exceptional service to every guest, every time. As a Kitchen Crew Member/Front Crew Member, you are proud to serve great tasting food, made with care. You are a team player that arrives to work energized and motivated and you thrive in a fun, fast paced work environment.What we can offer you:A flexible working schedule;• Employee discounts; • Great training and transferable skills; • Opportunities for advancement • Competitive wage depending upon experience. Apply for this job if you: • Have a passion for guest service and creating exceptional guest experiences; • Enjoy working in a fast-paced environment • Have excellent communication skills; • Enjoy learning new things; • Have a ready smile and a warm personality; You can be part of the changing face of fast foodWork RemotelyNoJob Types: Full-time, Part-time, PermanentPart-time hours: 20-40 per weekSalary: $15.65-$16.40 per hourBenefits:Discounted or free foodOn-site parkingSchedule:8 hour shiftDay shiftHolidaysMonday to FridayNight shiftWeekend availabilityExperience:A&W: 1 year (preferred)customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)\",\n            \"location\": \"Johnston Rd, Port Alberni, BC\"\n        },\n        {\n            \"id\": \"BCAF1975D6E0EA45D3E6F5BAE145D052\",\n            \"cityName\": \"1729 Powell St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=378f84a9022144cb\",\n            \"jobName\": \"Inside Sales / Customer Service\",\n            \"companyName\": \"Signamara Vancouver\",\n            \"rowSalary\": \"$17–$22 an hour\",\n            \"date\": 1694305037904,\n            \"dateOfPosted\": 1689719274760,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827482,\n                    \"lon\": -123.0843227\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Powell St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you a highly motivated and results-driven individual with a passion for sales and a flair for creativity? If so, this is the perfect opportunity for you to unleash your potential and become an integral part of our thriving team at Sign A Rama Vancouver!About Us:At Sign A Rama Vancouver, we take immense pride in being a pioneer in the signage industry for over 17 years. Our commitment to using state-of-the-art computer technology to craft customized and eye-catching designs has earned us a reputation as a top-notch, full-service sign company.Why Join Us:A Culture of Excellence: Joining our team means being part of a culture that celebrates excellence and innovation. You'll be surrounded by a talented group of professionals who are passionate about what they do and committed to achieving outstanding results.Endless Growth Opportunities: As a Sales Representative, you'll have the chance to truly shine and grow in your career. We believe in providing ample opportunities for skill development and career advancement, so you can constantly elevate your performance and reach new heights and positions.Unleash Your Creativity: At Sign A Rama Vancouver, we believe that creativity is the key to crafting remarkable signage solutions. As a sales rep, you'll collaborate with our skilled design team to bring unique and captivating visions to life for our clients, leaving a lasting impression.What We're Looking For:We are seeking a sales rep who is not just another employee but a dynamic go-getter who can drive our business forward. The ideal candidate will:Be a Sales Superstar: You will be the driving force behind our business expansion, generating, prospecting, qualifying, and closing leads. Your passion for sales and your ability to build strong relationships will be key to your success.Exude Charisma: Your outgoing personality will shine through as you interact with clients, leaving them with a positive and memorable experience.Embody Professionalism: As the face of our company, you will represent us with professionalism and integrity, creating trust and credibility with our valued customers.*Qualifications:Some Previous Sales Experience requiredHave Great Attention to Detail with an ability to multi-taskHave a Positive AttitudeBe able to build and maintain lasting relationships with customersPossess professional and organized follow-up skillsHave good organization skills to grow and manage a territoryBe a strong problem solver with good objection handling skillsHave an incredible work ethic willing to do what it takes to succeedHave great people skills and enjoy assisting clientsMust have a great verbal and written communications skillsJoin Our Team Today!If you are ready to embark on an exciting journey of growth and success, we welcome you to join our passionate and dynamic team at Sign A Rama Vancouver. Together, let's make an impact and redefine the world of customized signage and designs. Apply now and let your sales prowess and creativity shine!Job Type: Full-timeSalary: $17.00-$22.00 per hourBenefits:Dental careExtended health careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Commission payAbility to commute/relocate:Vancouver, BC V5L 1H6: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Retail sales: 1 year (preferred)sales: 1 year (preferred)Licence/Certification:Driving Licence (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Powell St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"8DA2B3CA675ED984DE3AFBD4C3D54CE9\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5612f6c741a88652\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Bottleworks Liquor Store\",\n            \"rowSalary\": \"From $17.25 an hour\",\n            \"date\": 1694305023858,\n            \"dateOfPosted\": 1693447877576,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Bottleworks Customer Service RepresentativeAboutWith several locations across the lower mainland, the Kooner Hospitality Group has been an innovator and pioneer in the industry for over 10 years. We offer a fun and energetic work atmosphere, competitive wages, staff discounts, staff incentives, product knowledge training, and an opportunity for advancement.You’ll find us at the King George hub just steps away from the King George Skytrain Station.Our liquor store boasts an incredible selection of boutique wines, craft beers and specialty spirits, including products that you won’t find anywhere else. We are looking for energetic, outgoing and positive people to join our team.TypeStart Date: TBD Hours: Full-time, Part-timeSalary/Hourly: $17.25/hr Average Gratuities: $1-2/hourWho You AreYou are an outgoing, energetic and positive person.You take pride in providing exceptional customer service.You enjoy being part of a team, can work independently and have a strong work ethic.You thrive working in a fast-paced environment, have a sense of urgency, and can multitask.You enjoy beer, wine and spirits and want to learn more about them.You want flexible hours and a positive working environment.Position ResponsibilitiesEnsure exceptional customer service is provided.Assist with the everyday tasks including stocking, building displays and assisting customers.Perform general cleaning and maintenance including dusting, sweeping floors and putting away orders.Representing the team in a professional manner.What We OfferA great working environment.Room to advance within our growing company.A team member discount at all of our locations.To be eligible, applicants must meet the following qualification requirements:Be at least 19 years of age.A valid Serving it Right Certificate.Are able to lift 50lbs.Excellent customer service and interpersonal skills.Must be flexible and be able to work evenings and weekends.Knowledge of beer, wine, and spirits is an asset.If you are interested in the position, apply now, and tell us a bit about yourself!Job Types: Full-time, Part-timeSalary: From $17.25 per hourBenefits:Store discountFlexible Language Requirement:French not requiredSchedule:Day shiftEvening shiftHolidaysMonday to FridayWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Surrey, BC V3T 0P9: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"968EA6BEF34E4AA2C30FB916431E5ED8\",\n            \"cityName\": \"80 Westcreek Blvd, Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0b5cfa9778618c63\",\n            \"jobName\": \"Cash Management (Call Centre Agent)\",\n            \"companyName\": \"Aeolus Freight Solutions Inc.\",\n            \"rowSalary\": \"$16–$21 an hour\",\n            \"date\": 1694304747740,\n            \"dateOfPosted\": 1665518130484,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6796058,\n                    \"lon\": -79.7034733\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Westcreek Blvd, Brampton, ON L6T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are searching for a remarkable INBOUND CUSTOMER SERVICE REPRESENTATIVE - CONTACT CENTER to join our passionate teamGrowing your career as a Full Time INBOUND CUSTOMER SERVICE REPRESENTATIVE - CONTACT CENTER is a fantastic opportunity to develop productive skills.REQUIREMENTS- 2-3 years of experience in customer service inbound.Education • Secondary (high) school graduation certificateExperience Work SettingPrivate sector TasksAccess and process informationAddress customers' complaints or concernsAnswer inquiries and provide information to customersMaintain records and statisticsReceive and log complaints Computer and Technology KnowledgeSalesforceDatabase softwareInternetMS OutlookMS Windows Security and SafetyCriminal record check Work Conditions and Physical CapabilitiesAttention to detailFast-paced environmentHand-eye co-ordinationRepetitive tasksTight deadlinesWork under pressure Personal SuitabilityPunctualityClient focusEffective interpersonal skillsExcellent oral communicationExcellent written communicationFlexibility • Organized • Reliability • Team player ExperienceJob Type: Full-timeSalary: $16.00-$21.00 per hourSchedule:10 hour shift8 hour shiftSupplemental pay types:Overtime pay\",\n            \"location\": \"Westcreek Blvd, Brampton, ON\"\n        },\n        {\n            \"id\": \"0F2C8B01DC92336BBE375F53F01CAE2E\",\n            \"cityName\": \"80 Westcreek Blvd, Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=765a2e580b7466a6\",\n            \"jobName\": \"Call Centre Agent (A/R, A/P)\",\n            \"companyName\": \"Aeolus Freight Solutions Inc.\",\n            \"rowSalary\": \"$16–$21 an hour\",\n            \"date\": 1694304002482,\n            \"dateOfPosted\": 1668146998410,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6796058,\n                    \"lon\": -79.7034733\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Westcreek Blvd, Brampton, ON L6T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are searching for a remarkable INBOUND CUSTOMER SERVICE REPRESENTATIVE - CONTACT CENTER to join our passionate teamGrowing your career as a Full Time INBOUND CUSTOMER SERVICE REPRESENTATIVE - CONTACT CENTER is a fantastic opportunity to develop productive skills.REQUIREMENTS- 2-3 years of experience in customer service inbound.Education • Secondary (high) school graduation certificateExperience Work SettingPrivate sector TasksAccess and process informationAddress customers' complaints or concernsAnswer inquiries and provide information to customersMaintain records and statisticsReceive and log complaints Computer and Technology KnowledgeSalesforceDatabase softwareInternetMS OutlookMS Windows Security and SafetyCriminal record check Work Conditions and Physical CapabilitiesAttention to detailFast-paced environmentHand-eye co-ordinationRepetitive tasksTight deadlinesWork under pressure Personal SuitabilityPunctualityClient focusEffective interpersonal skillsExcellent oral communicationExcellent written communicationFlexibility • Organized • Reliability • Team player ExperienceJob Type: Full-timeSalary: $16.00-$21.00 per hourSchedule:10 hour shift8 hour shiftSupplemental pay types:Overtime payAbility to commute/relocate:Brampton, ON: reliably commute or plan to relocate before starting work (preferred)\",\n            \"location\": \"Westcreek Blvd, Brampton, ON\"\n        },\n        {\n            \"id\": \"E2CD725C7766C589F3AB2A1D887D1407\",\n            \"cityName\": \"10406 184 Street NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a69699ac20ceb5fb\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Kms Tools & Equipment Edmonton West\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694303673164,\n            \"dateOfPosted\": 1693446810274,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.6065656,\n                    \"lon\": -113.3801256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"24a St NW, Edmonton, AB T5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"KMS Tools Edmonton West is looking for a Cashier to add to our team. Applicants must be dependable, friendly, detail oriented and focused on customer service. Ability to handle high volume of orders and customers. We are closed Sundays and Holidays. Working Saturdays is required. Competitive benefits offered.Job Types: Full-time, PermanentSalary: From $15.00 per hourBenefits:Dental careOn-site parkingPaid time offStore discountDay range:Every WeekendMonday to FridayShift:8 hour shiftDay shiftCOVID-19 considerations:Personal protective equipment provided or required Plastic shield at work stations Social distancing guidelines in place Sanitizing, disinfecting, or cleaning procedures in placeApplication question(s):Are you currently working? If so - when would you be able to start?Do you have any schedule restrictions?What is your expected starting pay based on your experience?Experience:customer service: 1 year (preferred)Cashiering: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Street NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"3C1157758A602525A111097B56800DD9\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=99ae976b98fbb3bd\",\n            \"jobName\": \"Customer Service/Inside Sales Representative (Maternity Leave)\",\n            \"companyName\": \"Heidelberg Materials Us, Inc.\",\n            \"rowSalary\": \"$58,104–$81,346 a year\",\n            \"date\": 1694303625215,\n            \"dateOfPosted\": 1690387767529,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 58104.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    58104.0\n                ],\n                \"range\": {\n                    \"gte\": 58104.0,\n                    \"gt\": null,\n                    \"lte\": 58104.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"AutoReqId: 18300BRPay Class: Salaried Non-ExemptDepartment: SalesJob Posting:Heidelberg Materials provides the materials to build our future. Our future is sustainable. Our future is digital. And it goes beyond cement, aggregates, and ready-mixed concrete. Heidelberg Materials North America, previously known as Lehigh Hanson, operates more than 450 locations with approximately 9,000 employees in the U.S. and CanadaHeidelberg Materials is seeking a Temporary Inside Sales Representative (Maternity Leave Coverage) to join the local team in Edmonton, AB. Reporting to the Customer Service Manager the Inside Sales Representative will be responsible for receiving and processing of cement and fly ash sales orders. This opportunity is perfect for the sales professional who is looking to grow their career with an industry leader. While focusing on growing existing and prospective customers to increase market share and improve profit margins, you will begin your career with a proven leader in the cement and construction materials industry.What you'll get to do:Leads the order process assuring accurate, courteous, and timely scheduling and data input of customer phone, online, and email orders.Work with carriers to schedule and dispatch delivery to customers on an on-time basis.Ensure all incidents or issues regarding quality, customer complaints or delivery are entered into database.Prioritize customer needs to provide superior customer service and support.Develop and maintain customer relationships.Work closely with sales department in identifying customer needs and wants.Essential Experience & Skills:Minimum high school diploma. Preference will be given to candidates who possess a post-secondary educationPrevious administration or inside sales experience an assetExcellent customer relations and communication skillsProblem solver with an aptitude for focusing on customer requirementsWorking knowledge of Microsoft Office products.Ability to work independently as required and under time and scheduling pressuresKnowledge of the trucking industryStrong organizational skillShift work, rotating 12-hour shiftsPreferred Experience and SkillsCDM Order Management experience is an assetSAP experience is an asset\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"892FE30DFA5B73422751468698600A31\",\n            \"cityName\": \"Sherwood Park, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4d8b2a7502127b59\",\n            \"jobName\": \"Customer Service Representative - Insurance\",\n            \"companyName\": \"Chowdhury Insurance Ltd.\",\n            \"rowSalary\": \"$23.18 an hour\",\n            \"date\": 1694303529804,\n            \"dateOfPosted\": 1692449695959,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5411916,\n                    \"lon\": -113.2957355\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sherwood Park\",\n                \"formattedAddress\": \"Sherwood Park, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sherwood Park\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsor equivalent experience Work setting Insurance company Tasks Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Explain the type and cost of services offered Order office supplies and maintain inventory Perform general office duties Answer written and oral inquiries Health benefits Dental plan Health care plan Vision care benefitsWork Term: PermanentWork Language: EnglishHours: 37.5 to 40 hours per week\",\n            \"location\": \"Sherwood Park, AB\"\n        },\n        {\n            \"id\": \"B29B3CC3182C721632C9C67408D63DC4\",\n            \"cityName\": \"1053 Carling Avenue, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0c41bd776a2743bc\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Second Cup Cafe\",\n            \"rowSalary\": \"$16.28 an hour\",\n            \"date\": 1694303396220,\n            \"dateOfPosted\": 1693447896405,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.35917600000001,\n                    \"lon\": -75.79599209999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Carling Ave, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Duties of a Barista Customer servicePreparing specialty drinksFood preparationAll General cleaningJob Type: Part-timePart-time hours: 16-20 per weekSalary: $16.28 per hourBenefits:Dental careDiscounted or free foodPaid time offTuition reimbursementFlexible Language Requirement:French not requiredSchedule:Monday to FridayShift availability:Day Shift (required)Work Location: In personExpected start date: 2023-09-05\",\n            \"location\": \"Carling Avenue, Ottawa, ON\"\n        },\n        {\n            \"id\": \"7ECDEBAF131FCBCD8C013E51790E6F56\",\n            \"cityName\": \"6506 Norwest Bay Rd, Sechelt, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1a4b4187b2dab182\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Mason Place Market\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694303394753,\n            \"dateOfPosted\": 1691497625599,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a small family run business and would love to welcome more people to our team!We are looking for people who are super friendly and energetic, extremely reliable and responsible and able to stand on their feet for long periods. We can teach the rest!The days and hours of work are flexible! We are mostly looking to cover the hours from 3pm until 9:30 pm, 7 days a week.Please drop off your resume at the store; 6506 Norwest Bay RdJob Type: Part-timePart-time hours: 20-36 per weekSalary: $17.00-$19.00 per hourBenefits:On-site parkingDay range:HolidaysMonday to FridayWeekends as neededShift:4 hour shift8 hour shiftAfternoon shiftEvening shiftWork setting:Convenience storeWork Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"BCB7B6359CC576A402CE37B19335A5A0\",\n            \"cityName\": \"Rocky View, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=042b87658fcc7386\",\n            \"jobName\": \"Customer Service Representative - 203\",\n            \"companyName\": \"Copart\",\n            \"rowSalary\": \"$22.38 an hour\",\n            \"date\": 1694303110450,\n            \"dateOfPosted\": 1686166990692,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.2086495,\n                    \"lon\": -113.9815345\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Rocky View County, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service Representative (CSR) provides exceptional customer service to internal and external customers of Copart. Through a thorough understanding of Copart practices, the CSR offers solutions that aid and facilitate a unique customer service experience. The CSR provides general administrative support while multi-tasking in hectic and stressful situations. In addition, the CSR will be the face of the Company through face-to-face and vocal interactions with all levels of customers which range from the general public to high-level managers of organizations.Receive and process payments.Update lot (vehicle) notes in the system.Answer multi-line telephone in a professional manner.Face-to-face customer interaction.Use company resources to gather information and offer solutions to meet customer needs.Contact clients to obtain vehicle pick-up information.File documents according to criteria.Process mail incoming and outgoing per criteria.Read and interpret various reports and documents.Proper completion of sale documents.Other duties as assigned.Required Skills & Experience:One year of office support experience in a customer service role preferredHigh School diplomaExcellent customer service skills and attitudeExcellent written and verbal skillsProficient with office equipmentAttention to detailProblem-solvingComputer proficiency - MS SuiteTyping speed 45WPMProfessional appearanceAbility to multi-task in a fast-paced environmentBilingual skills a plusOccasional overtime as neededFor 40 years, Copart has led its industry in innovation and customer service, enabling it to grow profitably in markets across the globe. Our success is the direct result of the skills and efforts of our talented and diverse employees. Our mindset? It's never just a \\\"job\\\" when your coworkers are like family - it's like coming home.Location: Rocky View,AB,Canada, AlbertaLocation: Rocky View,AB,Canada, AlbertaJob Type: Full-timePay: $22.38 per hour\",\n            \"location\": \"Rocky View, AB\"\n        },\n        {\n            \"id\": \"40D158562EB45C4F09E31ED870DEFFB4\",\n            \"cityName\": \"Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=10bda59da0472794\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Service Experts\",\n            \"rowSalary\": \"$15–$19 an hour\",\n            \"date\": 1694302954500,\n            \"dateOfPosted\": 1598544655638,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Service Experts Heating & Air Conditioning, we believe in doing what’s right for our customers and our employees. We offer the stability of working for a national industry leader but we also treat our people like family. Our team is made up of the very best, and we provide ongoing training, support, and opportunities for unlimited professional growth.What we can offer:Competitive wages and vacation timeBenefits after 3 months of employment which includes medical, dental, short-term and long-term disability, vision care, and life insuranceCompany RRSP match available after 6 months of employmentEmployee Assistance ProgramEmployee Referral BonusExtensive training and long-term career opportunitiesPersonal Protection Equipment provided, including safety bootsHoliday and vacation payRelocation expenses for the right candidateThe Customer Service Specialist handles customer questions, complaints, and billing inquiries with the highest degree of courtesy and professionalism to resolve customer issues with one-call resolution.QualificationsMust be able to work from 3-11 PM on Monday and FridaysHigh school diploma or equivalent (post-secondary education preferred)Previous customer service experienceExcellent interpersonal skillsExceptional verbal communicationStrong computer software skillsWillingness to work with and assist co-workers as needed, in addition to working occasional overtime and weekend hours as requiredResponsibilitiesAnswering incoming phone calls from customers and other office duties as assignedMaintaining good customer relations and ensuring that all calls meet Service Experts’ standardsHandling and resolving a variety of customer concerns, complaints, and questions by phone, email, and in-person (questions may include billing inquires, technician ETA, scheduling issues, and general company product and service questions)Ability to accept empowerment and to be prepared to make decisions regarding customer satisfaction with confidenceResolving problems by clarifying issues, researching, exploring answers/alternative solutions, implementing solutions, and escalating unresolved issuesMaintaining customer records by updating account informationWorking with Dispatch to improve accuracy in scheduling and speed of responseCommunicating with customers on the status of service callsAssisting with dispatching as neededPerforming outbound calls to schedule preventative maintenances and tune-upsEnsuring that customers are contacted in a timely manner to schedule preventative maintenanceWorking with General Manager/Operations Manager to ensure that capacity demands are metContinually maintain working knowledge of all company products, services, and promotionsAll employees must be able to pass our background check criteria.Join the team of Experts and realize your full potential.Service Experts is an Equal Opportunity Employer.Service Experts is committed to an inclusive, barrier-free recruitment process. We will accommodate the needs of applicants under the Ontario Human Rights Code and the Accessibility for Ontarians with Disabilities Act (AODA)Job Types: Full-time, PermanentSalary: $15.00-$19.00 per hourBenefits:Company eventsDental careDisability insuranceEmployee assistance programLife insuranceOn-site parkingPaid time offRRSP matchTuition reimbursementVision careSchedule:8 hour shiftMonday to FridayExperience:call center: 1 year (Required)customer service: 1 year (Required)Education:Secondary School (Required)Job Duties:Answer incoming customer inquiriesCollaborate with key stakeholders and teams to stay updated on new products, services, and policiesRecord and modify customer information within the databaseEngage with clients in a friendly and professional manner while actively listening to their concernsOffer support and solutions to customers in accordance with the company's customer service policiesOther duties as requestedWork remotely:No\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"87F9CF55384F598F2011225E0A0DCEB5\",\n            \"cityName\": \"2032 Boul Curé Labelle, Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dc565ca2e01b8043\",\n            \"jobName\": \"Call Center Representative\",\n            \"companyName\": \"Auto Primo, Laval\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694302811274,\n            \"dateOfPosted\": 1693448587961,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6110486,\n                    \"lon\": -73.7922317\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Bd du Curé-Labelle, Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laval\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Description complète du posteAuto Primo est un concessionnaire automobile connaissant une grande croissance avec plus de 200 véhicules en inventaire.Vous devez etre dynamique, professionnel et proactif.Fonction du poste;Répondre aux appels de nouveau clients et répondre à leur besoinsPrendre des rendez-vous pour le département des ventesÉcoutez les clients et les accompagner durant toute la transactionAssister les vendeurs dans leurs suivis et tachesQualification:Expérience dans le travail à commission;Experience dans l'automobile (Non obligatoire)Connaissance basique (Suite google) ;Comfortable de travailler dans un centre d'appel actifÊtre capable de creer des relations rapides aux téléphonesBonne orginisation afin de faire les suivis nécessaireDemandes:Blilingue (Francais et anglais);Qualité interpersonnel;Facilitié à travailler en équipe;Avoir de l'aisance et être extraverti ;)Porfessionnel, organisé et courtoisConditions:Poste temps plein et permanent;Possibilité de travail en fin de semaine;Rabais pour employs;Ambiance d'équipe super jeune;Équipe accès sur les résultats;____________________Full job descriptionAuto Primo is a fast growing car dealership with over 200 vehicles in inventory.You must be dynamic, professional and proactive.Job function;Answer calls from new customers and respond to their needsMake appointments for the sales departmentListen to customers and accompany them throughout the transactionAssist sales people in their follow-ups and tasksQualifications:Experience in commission work;Experience in the automotive industry (Not required)Basic knowledge (google suite);Comfortable working in an active call centerAbility to build rapport quickly on the phoneGood orginization in order to do the necessary follow-upsDemands:Blilingual (French and English);Interpersonal skills;Ability to work in a team;Comfortable and outgoing ;)Professional, organized and courteousConditions:Full-time, permanent position;Possibility of working on weekends;Discounts for employees;Young team atmosphere;Team access on results;Job Type: Full-timeSalary: $18.00-$25.00 per hourBenefits:Dental careDisability insuranceExtended health careLife insuranceVision careSchedule:8 hour shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payCommission payOvertime payTipsEducation:Secondary School (preferred)Experience:Sales: 1 year (preferred)Customer service: 3 years (preferred)Work Location: In person\",\n            \"location\": \"Boulevard Curé-Labelle, Laval, QC\"\n        },\n        {\n            \"id\": \"085705EC73907140D2D0EA07F3F3E8AB\",\n            \"cityName\": \"London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=695937cf4223d28f\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Talbot Marketing\",\n            \"rowSalary\": \"$19–$21 an hour\",\n            \"date\": 1694302719698,\n            \"dateOfPosted\": 1692242128052,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9849233,\n                    \"lon\": -81.2452768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Talbot Marketing is a leader in the Canadian promotional products industry. Talbot has stood the test of time because we continue to invest, innovate and bring value to our customers and to the promotional product marketplace. Talbot is one of the largest providers of promotional products and corporate apparel in Canada. We specialize in solutions to leverage the power of a company’s brand.We aspire to become a company where our employees and clients are proud to call themselves a part of Talbot Marketing. Our corporate values include: to improve the lives of all those around us, operate with integrity, embrace diversity, make it fun and earn a fair profit. Talbot is a family oriented organization that treats everyone associated with Talbot with empathy, trust, fairness, and respect.We are looking for a Customer Service Representative to join our growing team. Candidates with customer service experience and the interest to develop and grow your skills thru learning and mentorship within the customer service team would be considered an asset as we grow our team.We offer a competitive compensation and benefit package – including 2 retirement programs with company contributions, company paid health & dental benefits and an employee assistance program. Employee sick days and vacation time above ESA standards.Job DescriptionThe purpose of this position is to maintain superior support of the sales representatives by ensuring that orders, quotations and sourcing are processed and produced in a timely and efficient manner. The incumbent must be able to knowledgably answer questions from sales representatives, end users, suppliers and fellow employees on a timely basis.Duties· Answer all communication from sales agents, suppliers and end users providing information and assistance as and when necessary.· To act as liaison between supplier and sales associates regarding items such as proof approvals, extra charges, ordering samples (and returning as needed), generate spec samples and ensuring deliveries are on track (by utilizing open order report). Email artwork/embroidery discs when required, resolve discrepancies between end user, sales associate and supplier.· Review supplier acknowledgements for correctness and noting supplier confirmation on system in a timely fashion.· Source products for sales associates and prepare formal quotations when required. Assist sales associates with creative selling ideas.· Attend various outside/inside trade shows and supplier product knowledge sessions.· Prioritize and organize effectively to maximize use of time to meet workload volume.· Other duties as requiredSkills· Excellent knowledge of Windows, Excel, Word, PowerPoint, etc· Strong in customer service and communication· Organizing / Prioritizing· Team Player (offer assistance, actively listen, respect others, be a problem solver, celebrate team successes)· Positive attitude, motivated, compassionate· Results orientatedEducation and Experience· Completion of a Community College program (concession may be considered based upon an individual’s job experience).· One year of industry related experience or a minimum of three years of customer service experience, is necessary to carry out the Customer Service Associate role.To learn more about Talbot Marketing visit our website at www.talbot-promo.com.Job Types: Full-time, PermanentSalary: $19.00-$21.00 per hourBenefits:Casual dressCompany eventsCompany pensionDental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offRRSP matchVision careWellness programFlexible Language Requirement:French not requiredSchedule:Monday to FridayOvertimeSupplemental pay types:Bonus payOvertime payWork Location: In person\",\n            \"location\": \"London, ON\"\n        },\n        {\n            \"id\": \"19FE975DEC40DDBEFE0205B80CA55155\",\n            \"cityName\": \"1867 Ashburnham Dr, Peterborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8a9f5436ac1befdf\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Peterborough Utilities Group\",\n            \"rowSalary\": \"$25.66–$36.58 an hour\",\n            \"date\": 1694302667021,\n            \"dateOfPosted\": 1693447899436,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2945085,\n                    \"lon\": -78.2994973\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Peterborough\",\n                \"formattedAddress\": \"Ashburnham Dr, Peterborough, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Peterborough County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Peterborough\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 26.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    26.0\n                ],\n                \"range\": {\n                    \"gte\": 26.0,\n                    \"gt\": null,\n                    \"lte\": 26.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative - Full Time Union Reports to: Supervisor, Customer Service Department: Customer Service Location: 1867 Ashburnham Dr., Peterborough Rate: $25.66 - $36.58 per hour, 37.5 hours per week JOB PURPOSE: The Customer Service Representative utilizes skills by dealing effectively and in a friendly, professional manner with internal and external customers by telephone and in person regarding all aspects of utility services to include billing, credit, collections, and service order processing. Receive and reply to verbal and written customer inquiries and be involved in a broad range of customer service office responsibilities. Process, monitor and adjusts business transactions as well as conducts daily, weekly, and monthly processes required to accurately bill utility customer accounts. MAIN ACCOUNTABILITIES:Process customer requests for new applicants, changes in service, account closures, book appointments and document pertinent customer dealings.Inbound/Outbound - Communicate directly with the customer to obtain all necessary and relevant information and reach a mutual agreement for payment of their debt. Ensure a balance between quality customer service and effective collections techniques.Make needed adjustments to customer records and transactions as necessary to ensure accurate billing, collecting and receipt of service.In compliance with the Policies and Practices, identify appropriate conditions for discontinuing service and initiating action.Deal with external contractors and internal operations staff regarding delivery of notices, collection of arrears and process all attendant forms and service orders.Receive and process customer, finance, and zoo payments. Balance and create daily deposit for banking. Investigate misapplied or unidentified customer payments.Take customers calls for water heater investigations, new installs and removals. Obtain signed contract for water heater rental, create/resolve service orders, enter inventory into the billing system, scrap inventory, approve payment of invoices and scan contracts.Investigate consumption issues; leaks, zero consumption, stopped meters and resolve the issue.Process and investigate high bill inquiries, and correct billing system errors and warnings, no application for service, duplicate payments/duplicate banking information on multiple accounts, incorrect phone number, email bounce back, refunds with no forwarding address etc.Answer customer inquiries from info at and Customer Self ServiceShare knowledge on various procedures as requested with other representatives.Responsible for personal safety and the safety of others that is dependent upon their actions. Report hazards and unsafe acts or conditions encountered on the job to fellow workers and supervisors.Assist with projects, programs and miscellaneous assignments as required including cross department workflow. Consult with and share information with all departments for the purpose of monitoring and correcting transactionsDaily processing of manual and electronic reads that fail validation to ensure that reads are available for billing: Review and estimate/approve water reads based on historical dataCreate and resolve service ordersCorrect billed reads, add customer bill messages, and cancel/rebillQUALIFICATIONS Post secondary education in related discipline (Business Administration, Office Administration, Customer Service) A minimum of one (1) years of experience involved with customer service and collection in a call centre environment. TECHNCIAL SKILLS Demonstrated ability to work in fast paced, high pressure, high stress situations.Strong written and oral communications and customer service skills.Being understanding, helpful, cooperative, sensitive to needs and feelings of others while maintaining composure in difficult situations.Demonstrated ability to analyze multiple sources of information to determine best course of action.Demonstrated initiative, good judgment, integrity, and stability in executing duties.Demonstrated techniques in collections.Must be willing to work in an environment that requires heavy phone-based customer interaction.Previous computer experience within in a Microsoft office software environment. Experience working with a Customer Information System Demonstrated knowledge on regulations, guidelines, and programs.Demonstrated ability to process work in an accurate, efficient, and timely manner.Demonstrated excellent safety record and attitude and attendance record.Demonstrated ability to deal with personal information in a confidential, ethical, and professional manner.All applications must be submitted by end of day September 15th, 2023. Please indicate in your cover letter if you are interested in a full time position, contract position or both.\",\n            \"location\": \"Ashburnham Drive, Peterborough, ON\"\n        },\n        {\n            \"id\": \"F8FD0A64971F94DC812E20EEA1A94EE5\",\n            \"cityName\": \"114 Sydenham St, Flesherton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ff408608f685a78a\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Country Style & Mr. Sub\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694302554076,\n            \"dateOfPosted\": 1691497521642,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2648914,\n                    \"lon\": -80.5533015\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Flesherton\",\n                \"formattedAddress\": \"Sydenham St, Flesherton, ON N0C 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Flesherton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"$16.50/HR“ LOCAL CANDIDATES ONLY “Apply Now! Hiring Now! All training will be provided.ESSO Gas Station in Flesherton is hiring Customer Service Representatives to join its team - opening or closing shifts, weekdays or weekends. No experience necessary. Previous gas station or convenience store experience is always an asset. Full Training will be provided.Send resume online or welcome to stop by at the store.Job Types: Full-time, Part-time, PermanentSalary: From $16.50 per hourFlexible Language Requirement:French not requiredAbility to commute/relocate:Flesherton, ON N0C 1E0: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Sydenham St, Flesherton, ON\"\n        },\n        {\n            \"id\": \"B9C534C72D6A493AB8E5F33A1411EFBB\",\n            \"cityName\": \"1867 Ashburnham Dr, Peterborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=48b266a32cbe5f46\",\n            \"jobName\": \"Contract Customer Service Representative\",\n            \"companyName\": \"Peterborough Utilities Group\",\n            \"rowSalary\": \"$25.66–$36.58 an hour\",\n            \"date\": 1694302369088,\n            \"dateOfPosted\": 1693448328849,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2945085,\n                    \"lon\": -78.2994973\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Peterborough\",\n                \"formattedAddress\": \"Ashburnham Dr, Peterborough, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Peterborough County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Peterborough\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 26.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    26.0\n                ],\n                \"range\": {\n                    \"gte\": 26.0,\n                    \"gt\": null,\n                    \"lte\": 26.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative - 1 Year Contract Reports to: Supervisor, Customer Service Department: Customer Service Location: 1867 Ashburnham Dr., Peterborough Rate: $25.66 - $36.58 per hour, 37.5 hours per week JOB PURPOSE: The Customer Service Representative utilizes skills by dealing effectively and in a friendly, professional manner with internal and external customers by telephone and in person regarding all aspects of utility services to include billing, credit, collections, and service order processing. Receive and reply to verbal and written customer inquiries and be involved in a broad range of customer service office responsibilities. Process, monitor and adjusts business transactions as well as conducts daily, weekly, and monthly processes required to accurately bill utility customer accounts. MAIN ACCOUNTABILITIES:Process customer requests for new applicants, changes in service, account closures, book appointments and document pertinent customer dealings.Inbound/Outbound - Communicate directly with the customer to obtain all necessary and relevant information and reach a mutual agreement for payment of their debt. Ensure a balance between quality customer service and effective collections techniques.Make needed adjustments to customer records and transactions as necessary to ensure accurate billing, collecting and receipt of service.In compliance with the Policies and Practices, identify appropriate conditions for discontinuing service and initiating action.Deal with external contractors and internal operations staff regarding delivery of notices, collection of arrears and process all attendant forms and service orders.Receive and process customer, finance, and zoo payments. Balance and create daily deposit for banking. Investigate misapplied or unidentified customer payments.Take customers calls for water heater investigations, new installs and removals. Obtain signed contract for water heater rental, create/resolve service orders, enter inventory into the billing system, scrap inventory, approve payment of invoices and scan contracts.Investigate consumption issues; leaks, zero consumption, stopped meters and resolve the issue.Process and investigate high bill inquiries, and correct billing system errors and warnings, no application for service, duplicate payments/duplicate banking information on multiple accounts, incorrect phone number, email bounce back, refunds with no forwarding address etc.Answer customer inquiries from info at and Customer Self ServiceShare knowledge on various procedures as requested with other representatives.Responsible for personal safety and the safety of others that is dependent upon their actions. Report hazards and unsafe acts or conditions encountered on the job to fellow workers and supervisors.Assist with projects, programs and miscellaneous assignments as required including cross department workflow. Consult with and share information with all departments for the purpose of monitoring and correcting transactionsDaily processing of manual and electronic reads that fail validation to ensure that reads are available for billing: Review and estimate/approve water reads based on historical dataCreate and resolve service ordersCorrect billed reads, add customer bill messages, and cancel/rebillQUALIFICATIONS Post secondary education in related discipline (Business Administration, Office Administration, Customer Service) A minimum of one (1) years of experience involved with customer service and collection in a call centre environment. TECHNCIAL SKILLS Demonstrated ability to work in fast paced, high pressure, high stress situations.Strong written and oral communications and customer service skills.Being understanding, helpful, cooperative, sensitive to needs and feelings of others while maintaining composure in difficult situations.Demonstrated ability to analyze multiple sources of information to determine best course of action.Demonstrated initiative, good judgment, integrity, and stability in executing duties.Demonstrated techniques in collections.Must be willing to work in an environment that requires heavy phone-based customer interaction.Previous computer experience within in a Microsoft office software environment. Experience working with a Customer Information System Demonstrated knowledge on regulations, guidelines, and programs.Demonstrated ability to process work in an accurate, efficient, and timely manner.Demonstrated excellent safety record and attitude and attendance record.Demonstrated ability to deal with personal information in a confidential, ethical, and professional manner.All applications must be submitted by end of day September 15th, 2023. Please indicate in your cover letter if you are interested in a full time position, contract position or both.\",\n            \"location\": \"Ashburnham Drive, Peterborough, ON\"\n        },\n        {\n            \"id\": \"9581E0AF944D927A91ECBD1BF422D10B\",\n            \"cityName\": \"5516 Spring Garden Rd, Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bc402247bd8a8828\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Highmart Store\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694302290652,\n            \"dateOfPosted\": 1692242113886,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Store Associates must have cash knowledge, some computer knowledge, good customer service, be punctual, and self motivated. Reliability is extremely important. We are a fast-paced store, so the ability to multi task is a must. Daily tasks include but are not limited to : Cash duties, selling to customers, receiving stock and merchandising the store, cleaning and maintaining cleanliness of store. Must be able to stand, and lift up to 50lbs.Job Types: , Part-time, PermanentSalary: From $15.00 per hourJob Types: Permanent, Full-timeSalary: From $15.00 per hourDay range:Monday to FridayWeekends as neededShift:8 hour shiftEvening shiftMorning shiftWork setting:Convenience storeSpecialty storeWork Location: In personExpected start date: 2023-08-17\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"3191FD46A790D1AB6F3D941ACB22E34A\",\n            \"cityName\": \"850 Powell St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d9be26328b306359\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Starbucks Coffee Canada- Powell Street Drive-Thru\",\n            \"rowSalary\": \"$16.30–$18.85 an hour\",\n            \"date\": 1694302086584,\n            \"dateOfPosted\": 1650263504099,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827482,\n                    \"lon\": -123.0843227\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Powell St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Starbucks is looking for partners to join our team at our Powell Street Drive-Thru location (located in Strathcona neighbourhood- accessible by transit buses 4, 7, 14, 20). We are looking for both baristas for flexible, full time or part time shifts.Our barista position is our entry level role and requires no experience.We offer a competitive total pay package, excellent perks and benefits and have many opportunities for career development and growth. Partners that work at least 20 hours a week are eligible for our full benefits package, including medical and dental. We have opportunities for shifts during all day parts, starting as early as 4:30am and as late as 9pm.If you are interested in exploring opportunities with Starbucks, please submit your application! More details on all of our roles can be found at www.starbucks.ca/careers and apply online and select store 4502- Powell Street location or drop by with your resume at 850 Powell Street or call 604 215-0711Job Types: Full-time, Part-timeSalary: $16.30-$18.85 per hourCOVID-19 considerations:All partners have the option to wear a mask; CoVid safety check done before all shifts; partners work behind plexi barriers to ensure physical distancing; high touch areas sanitized on a timely basisJob Types: Full-time, Part-time, PermanentSalary: $16.30-$18.85 per hourJob Types: Full-time, Part-time, PermanentPart-time hours: 20-30 per weekSalary: $16.30-$18.85 per hourBenefits:Casual dressDental careDisability insuranceDiscounted or free foodEmployee assistance programEmployee stock purchase planExtended health careFlexible scheduleLife insuranceOn-site parkingPaid time offRRSP matchStock optionsStore discountTuition reimbursementVision careWellness programSchedule:Day shiftHolidaysMonday to FridayNight shiftOvertimeWeekend availabilitySupplemental pay types:Overtime payTipsAbility to commute/relocate:Vancouver, BC V6A 1H8: reliably commute or plan to relocate before starting work (required)\",\n            \"location\": \"Powell St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"C456E995639BD08E623817AEA2956FB6\",\n            \"cityName\": \"1410 Elmwood Dr, Moncton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6fe611341e00b305\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Needs/Fast Fuel Moncton\",\n            \"rowSalary\": \"From $13.75 an hour\",\n            \"date\": 1694301780619,\n            \"dateOfPosted\": 1667532942368,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.13788400000001,\n                    \"lon\": -64.7721581\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Elmwood Dr, Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"WE ARE LOOKING FOR “PART-TIME CASHIER”The cashier is responsible for providing exceptional customer service in a high energy, demanding environment. Cashiers are required to process credit/debit card and cash transactions using an electronic register. Other responsibilities include daily store maintenance, unpacking and stocking merchandise, store cleaning (inside and outside), counting products and cash floats, as well as other store specific duties.JOB DUTIES & RESPONSIBILITIESPerform visual checks of store (inside and outside)Provide prompt, personalized and courteous customer serviceCash Handling, use of POS System and Inventory Monitoring/ BalancingAbide by all policies, procedures, operational guidelines, and government regulationsPrepare ice, drink (coffee, slushies), and food.Execute daily store cleaning maintenance (e.g. mopping, sweeping, dusting, emptying garbage, etc)Any task required by management in order to run the business efficientlyEXPECTATIONSStrong verbal and written communication skillsExceptional customer service skillsAccountable and DependableAttention to detailAble to work effectively in groups, as well as independentlyExcellent organization skillsStrong work ethic and positive team attitudeAbility to multitaskAble to work a flexible schedule including days, evenings, and weekends (scheduling will be discussed at interview).Job Types: Permanent, Part-timeSalary: From $13.75 per hourShift:8 hour shiftAbility to commute/relocate:Moncton, NB: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)\",\n            \"location\": \"Elmwood Dr, Moncton, NB\"\n        },\n        {\n            \"id\": \"7F0971D60053BD82823E5399BECB2718\",\n            \"cityName\": \"3381 Steeles Avenue, Suite 200, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=33040768d405745a\",\n            \"jobName\": \"Customer Service Representative I\",\n            \"companyName\": \"Global Payments\",\n            \"rowSalary\": \"$17.05 an hour\",\n            \"date\": 1694301755334,\n            \"dateOfPosted\": 1665752766809,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.577719,\n                    \"lon\": -79.831102\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halton Hills\",\n                \"formattedAddress\": \"Steeles Ave, Halton Hills, ON L0P, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halton Hills\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Every day, Global Payments makes it possible for millions of people to move money between buyers and sellers using our payments solutions for credit, debit, prepaid and merchant services. Our worldwide team helps over 3 million companies, more than 1,300 financial institutions and over 600 million cardholders grow with confidence and achieve amazing results. We are driven by our passion for success and we are proud to deliver best-in-class payment technology and software solutions. Join our dynamic team and make your mark on the payments technology landscape of tomorrow. Who We Are Every day, the people of TSYS (A Global Payments’ Company) improve lives and businesses around the globe through our payment processing capabilities and Customer Service. We make it possible for millions of people to move money between buyers and sellers using our payments solutions including credit, prepaid, and merchant services. We are People-Centered Payments®, and our team has the unique opportunity to help create a world in which payments make people’s lives easier and better. This is both a tremendous honour and important responsibility for those who accept the challenge. If you are looking to make a valuable difference for people everywhere – and for yourself – TSYS may be the right place for you!Why Us? What We Offer Full-time, permanent employment with a predictable and stable schedule $17.05/hour Work from Home position – we supply the equipment! Opportunities for over-time Shift premiums available Competitive benefits that include extended health care, dental, and vision care Retirement Savings Plan (employer match up to 5%) Employee Stock Purchase Plan Paid Training (during daytime hours only) Employee Assistance Program available for your use as early as your first day on the job What Role Will You Play? As a Customer Service Representative, you would: Respond to customer inquiries via telephone, email, SMS and Chat to provide problem resolution in accordance with the organization's service standards. Receive and/or place telephone calls which are predominantly routine, but may require deviation from standard screens, scripts, and procedures. Answer customer telephone inquiries, orders, service needs and complaints, respond where applicable or direct to technical/service areas. Maintain detailed and current knowledge of the company's/assigned client's products and services. Analyze customer service needs for communication to service and technical departments, when applicable Who You Are: People and Customer Oriented : You are not only great at talking on the phone, but you are friendly, personable, and a natural-born problem solver A Team Player : You’re ready to join a tight-knit team that works closely with one another to meet and exceed the expectations of our customers Organized: You can calmly and positively handle conversations with real people, all while multitasking efficiently Education: You have a minimum of a High School Diploma (or equivalent) or higher Ready for a New Challenge: No relevant experience is required for the role, we offer comprehensive training to build on your current skills to help you excel in this role. Do you think you’ve found your calling? Apply to this posting today! TSYS and Global Payments Inc. is an equal opportunity employer. We provide equal employment opportunities to all employees and applicants for employment without regard to race, color, religion, sex (including pregnancy), national origin, ancestry, age, marital status, sexual orientation, gender identity or expression, disability, veteran status, genetic information or any other basis protected by law. Those applicants requiring reasonable accommodation to the application and/or interview process should notify a representative of the Human Resources Department. Global Payments Inc. is an equal opportunity employer. Global Payments provides equal employment opportunities to all employees and applicants for employment without regard to race, color, religion, sex (including pregnancy), national origin, ancestry, age, marital status, sexual orientation, gender identity or expression, disability, veteran status, genetic information or any other basis protected by law. Those applicants requiring reasonable accommodation to the application and/or interview process should notify a representative of the Human Resources Department.\",\n            \"location\": \"Steeles Ave, Hornby, ON\"\n        },\n        {\n            \"id\": \"0DDCAF84D35AF8487838AA221ECE5A51\",\n            \"cityName\": \"530 Portland St, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c1dd064786867d2b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Co-Operators Insurance & Financial Services\",\n            \"rowSalary\": \"$35,000–$40,000 a year\",\n            \"date\": 1694301331758,\n            \"dateOfPosted\": 1693438646160,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6705489,\n                    \"lon\": -63.5360417\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Portland St, Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Portland St, Dartmouth, NS\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position: Customer Service RepresentativeJob Description:The Customer Service Representative is ensuring our daily administrative activities are handled in a timely and accurate manner. They manage agency administrative processes and ensure the agency stays on track for daily and annual goals.The Customer Service Representative is the team’s first point-of-contact for our clients. They should take pride in delivering and servicing client inquiries and have the ability and initiative to take on new and challenging assignments. They should also be able to work cooperatively, with our team, to accomplish objectives.This is a full-time position: Monday to Friday, 9:00-5:00pm. The office is in Dartmouth, Nova Scotia and our Customer Service Representative is required to work in the office every day.Roles and responsibilities:· First responder to client walk-ins, phone calls and Group email and assisting them accordingly.· Manage the agency’s leads.· Take payments, balance daily.· Responsible for filing paperwork for all lines of business.· Call clients to remind them of renewals.· Manage Policy Centre activities and assign them accordingly.· Manage all Billing Centre activities daily.· Manage all incoming, outgoing mail, and returned mail.· Book Client Reviews for the agency.· Any other duties necessary to reach the agency objectives.Working Conditions:· Regular office environment.Qualifications and Skills:· Skilled in communication (verbal and written)· Strong interpersonal skills.· Strong organizational and time management skills.· Candidate must be comfortable in a technology-dependent environment including proficiency with Microsoft Office and other corporate software (training in-house)· The successful candidate shall be subject to a Criminal Record and Consumer History background check as a condition of employment.Experience required:· Minimum 2 years working in Administration in an office environment.Job Types: Full-time, PermanentSalary: $35,000.00-$40,000.00 per yearBenefits:Dental careDisability insuranceEmployee assistance programOn-site parkingPaid time offVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsSupplemental pay types:Bonus payAbility to commute/relocate:Dartmouth, NS B2Y 4V6: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Office Administration: 2 years (required)Customer service: 2 years (required)Shift availability:Day Shift (preferred)Work Location: In personApplication deadline: 2023-09-08Expected start date: 2023-10-02\",\n            \"location\": \"Portland St, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"F11E20882C55B2DF10B92E414B85DFE5\",\n            \"cityName\": \"Bow SS Agency. in Windsor, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=399f9b1602b7e150\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Bow Ss Agency.\",\n            \"rowSalary\": \"$45,000–$50,000 a year\",\n            \"date\": 1694300363116,\n            \"dateOfPosted\": 1687800200458,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.3149367,\n                    \"lon\": -83.03636329999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Windsor\",\n                \"formattedAddress\": \"Windsor, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Essex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Windsor\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Benefits of working with us:Weekly Pay and Uncapped CommissionHybrid office with remote flexibility$60k plus first year average incomeBonusesResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingWhat are we looking for from you?Strong communication and interpersonal skillsA positive attitude and results-oriented work ethicAn ability to self-monitor progress on project goals and employ corrective actions as necessaryDemonstrated problem-solving skillsResults-oriented work ethicAble to work both independently and within a team environmentJob Requirements:Help customers using zoom, facetime, over the phone or in personServe as a customer service professional inputting order information, pricing, product information and catalog requestsEnsure delivery of excellent customer service through timely, accurate and professional communicationWork alongside executive staff members to streamline effortsLearn our ERP systemIf you feel that you possess the qualities that we are looking for and would like to see if you are a fit for our company, apply now! I will set you up with an interview at the soonest available date. We will email you back promptly, so please check your emails for a response.Job Types: Full-time, PermanentSalary: $45,000.00-$50,000.00 per yearBenefits:Dental careEmployee assistance programExtended health careOn-site parkingPaid time offRRSP matchSchedule:Monday to FridaySupplemental pay types:Bonus payCommission payOvertime payTipsEducation:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Windsor, ON\"\n        },\n        {\n            \"id\": \"0A31FA82AD95B15AF2DA01FFB4BA7360\",\n            \"cityName\": \"Greater Sudbury, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4814f519f43230ad\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Pinchman's Cafe & Bakery\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694300325825,\n            \"dateOfPosted\": 1694300325624,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.4917317,\n                    \"lon\": -80.99302899999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Greater Sudbury\",\n                \"formattedAddress\": \"Greater Sudbury, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Greater Sudbury Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Greater Sudbury\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"APPLICANTS MUST BE AVAILABLE TO WORK MORNING/LUNCH/DAY SHIFTS DURING THE WEEK. BUSY BAKERY IN THE SOUTH END OF SUDBURY, PINCHMANS HAS A SOLID REPUTATION FOR FRENCH AND INTERNATIONAL BAKED GOODS. COME AND DISCOVER THE BENEFITS OF WORKING FOR A LOCALLY, INDEPENDENTLY OWNED BUSINESS.Job Types: Permanent, Full-timeSalary: From $16.00 per hourExpected hours: 20 – 35 per weekBenefits:Discounted or free foodOn-site parkingStore discountSchedule:Day shiftSupplemental pay types:TipsCOVID-19 considerations:YESEducation:Secondary School (required)Shift availability:Day Shift (required)Work Location: In personExpected start date: 2023-09-19\",\n            \"location\": \"Greater Sudbury, ON\"\n        },\n        {\n            \"id\": \"0ED548825D2C04AE7439C9FDCDFCE52E\",\n            \"cityName\": \"1888 West Broadway, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3ca140ba3644d2fc\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Le Coq Frit\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694299680524,\n            \"dateOfPosted\": 1670761444528,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.26376459999999,\n                    \"lon\": -123.14866\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Broadway, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"-serving-bussing-phone orders for take-out-POS system, 3rd party delivery tablet, payment processing-take-out prep for packaging orders-cleaning duties-various other related dutiesMust be able to work during weekday(Monday - Friday between 11-9pm)Job Types: Permanent, Part-timeSalary: From $16.00 per hourSchedule:HolidaysMonday to FridayMorning shiftSupplemental pay types:TipsCOVID-19 considerations:Required to wear a mask. Sanitize surfaces after use.Work Location: In person\",\n            \"location\": \"Broadway WR\"\n        },\n        {\n            \"id\": \"840D5EA76DF2E534234A571BED1E6F7B\",\n            \"cityName\": \"3901 11 Ave NE, Salmon Arm, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0ca5916b0d132cf0\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Enterprise Holdings\",\n            \"rowSalary\": \"$18.40 an hour\",\n            \"date\": 1694299483712,\n            \"dateOfPosted\": 1692374137337,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.7529838,\n                    \"lon\": -119.2594938\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Salmon Arm\",\n                \"formattedAddress\": \"73 Ave NE, Salmon Arm, BC V1E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Columbia-Shuswap\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Salmon Arm\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" The Customer Assistance Representative Sr (CAR Sr) will provide a high level of customer service by assisting both internal and external customers, primarily face-to-face, supporting their branch and rental needs. The CAR Sr will gain knowledge through local training and hands-on experience to provide administrative support, service customers, and act as a rental back-up in a large home city branch or airport location.  Opening available at the following branch location: 3901 11 Ave Ne, Salmon Arm, BC. V1E 2S2 This is a full time position that pays $18.40 / hour We offer:  Paid time off Employee discount Retirement savings plan Extended Health Benefits (Medical, Prescription Drug, Dental and Vision) Life Insurance Training and development Schedule Monday-Friday: 8am-5pm Responsibilities: Take incoming calls- reservations, rate quotes, general questions and answers, provide information and resolution for customers, other branches, insurance companies, dealerships, repair shops and other vendors  Manage outgoing calls for callback management, A/Rs and miscellaneous calls as assigned  Provide a high level of customer service by assisting customers and assessing their rental needs in person and over the phone  Meet and greet customers in a friendly and timely manner  Provide directions and general assistance  Assist to assess condition of rental upon return  Process returns, check-ins and exit kiosk transactions  Effectively market the company while picking up customers up and/or dropping off customer in a safe and courteous manner and assisting customers as needed  Understand and communicate rental terms and conditions, vehicle features and other services  May sell optional protection products, upgrades, fuel options and other additional equipment  Responsible for notifying Management of any known vehicle problems and any required vehicle maintenance  Clean vehicle interior and exterior by hand or by operating washing equipment when needed  Perform various administrative and basic accounting functions such as: research and billing support tasks, accounts receivables, transfer and key logs, run miscellaneous reports, supply maintenance, process customer billing  Perform miscellaneous and backup duties job-related duties as assigned  Equal Opportunity Employer/Disability/Veterans Qualifications: Must be at least 18 years of age. High school diploma or above required; some college preferred Must have at least 1 year prior customer service, retail, or administrative support experience Must have a valid Class 5 drivers license with no more than 2 moving violations and/or at-fault accidents on driving record in the past 3 years No drug or alcohol related conviction on driving record in the past 5 years Must be authorized to work in Canada and not require work authorization sponsorship by our company for this position now or in the future.  Apart from religious observation, must be able to work the following schedule(s):  Monday-Friday 8am-5pm\",\n            \"location\": \"Ave NE, Salmon Arm, BC\"\n        },\n        {\n            \"id\": \"4805B38E5FBBE36EA956CBB3911E1376\",\n            \"cityName\": \"231 Lombard St, Smiths Falls, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=41fc43654c3d11af\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Peavey Industries (Peavey Mart)\",\n            \"rowSalary\": \"Up to $15.50 an hour\",\n            \"date\": 1694299332430,\n            \"dateOfPosted\": 1652194775677,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.8872851,\n                    \"lon\": -76.033272\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Smiths Falls\",\n                \"formattedAddress\": \"Lombard St, Smiths Falls, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Lanark County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Smiths Falls\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Corporate Office and Distribution CentreRegional Office and Distribution Centre 7740 40 Avenue, Red Deer, AB T4P 2H9 1000 Clarke Road, London, ON N5V 3A9Tel: 403.346.8991 Tel: 519.453.5270Customer Service Associate Reports to: Department Lead, Supervisor, Store Management TeamDepartment: RetailJob Overview: The Customer Service Associate is a customer service specialist. Customer Service Associates are responsible for advising customers and processing customer purchases/returns. When not attending to a customer, the Customer Service Associate stocks shelves, assists in setting up displays, prices product, and maintains the cleanliness of the store.Responsibilities Warmly approaching and greeting customers.Advising customers on products and suggesting solutions to their needs.Providing a high level of customer service.Encouraging further business by thanking customers and asking for them to come back.Help customers with concerns and put them in contact with a Supervisor as needed.Answering the telephone in a warm and friendly mannerLearn and maintain a product knowledge of store merchandiseHelping to set up displays as directed by store management teamProvide customer carry outs and load products for customers. Use Team Lift when needed.Weigh, measure, and cut merchandise to fill customer orders.Establishing/identifying prices for itemsKeying or scanning merchandise for customer purchaseTotal and receive payment for merchandiseIssue receipts, refunds, credits, or change due to customers per policyEnsuring proper return and refund policy is followed, including Management sign-offWrapping or bagging merchandise purchased by the customerCount money in cash drawers at the beginning of shifts to verify accuracyManager on duty verifies opening and closing cash countsStocking/Re-stocking merchandise as neededMaintaining cleanliness of the store and checkout areaMerchandising, pricing and tasking the point of purchase area when there are no customers in lineHelp with receiving on an as needed basisUse safe work procedures while setting a good example to fellow employeesCarry out work in a manner that will not create a hazard to themselves or othersProud to be 100% Canadian and Employee Owned Corporate Office and Distribution CentreRegional Office and Distribution Centre 7740 40 Avenue, Red Deer, AB T4P 2H9 1000 Clarke Road, London, ON N5V 3A9Tel: 403.346.8991 Tel: 519.453.5270Work with co-workers and members of the Safety Committee to help create a safe working environment by making safety suggestions and recommendationsReport any accidents, incidents, near misses, injuries, and/or occupational health concerns to a safety committee memberFollow Peavey Industries LP medical and first aid proceduresPositively communicate and demonstrate the company’s Core Values.Supervisory Responsibilities NoneKnowledge, Skills, and Abilities Required Maintaining a customer first, positive attitudeHigh attention to detailAbility to count, total, and work with numbersAbility to learn and operate till technologyStaying calm and attentive in a busy environmentAbility to approach customers, listen attentively, and use suggestive selling.Ability to multi-taskQualifications On the job training or previous experienceWorking Conditions Standing for extended periods, walking long distances to move/handle merchandise and provide customer serviceLifting up to 40lbs. and maintaining fitness level to perform all functions as set forth aboveOperating keyboard, scanning, and touch screen till technology in a repetitive mannerJob Type: Part-timePart-time hours: 20 per weekSalary: Up to $15.50 per hourSupplemental pay types:Bonus payEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)\",\n            \"location\": \"Lombard Street, Smiths Falls, ON\"\n        },\n        {\n            \"id\": \"F2DAE9E117814CB901FAAD05F02E2F15\",\n            \"cityName\": \"Canada\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6433a2e03f7b5eaa\",\n            \"jobName\": \"Bilingual Customer Service Specialist\",\n            \"companyName\": \"Bpa International Inc\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694299277768,\n            \"dateOfPosted\": 1692357148334,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.83385,\n                    \"lon\": -119.5236098\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Okanagan Lake, British Columbia, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Bilingual Customer Service SpecialistRemote Work from Home Position, Canada*Overview of Job Function*Conducting outbound call surveys to customers who recently received services from our client. You will receive training in conducting the surveys and responding to general questions. Your survey results will be compiled to provide our client with insights on the customers’ feedback in order to help them improve customer satisfaction.*Principal Duties and Essential Responsibilities*Attending training program and calibration sessionsConduct a survey with the customer and document detailed customer feedback, maintaining a high level of quality.Demonstrate identified winning behaviors.Successfully navigate the customer software applications and systems.Ensure all surveys are completed in a timely manner and in accordance with the project requirements.Ensure compliance with all up-to-date health and safety regulations and procedures maintaining a safe working environment.Comply with all BPA policies and procedures and maintain the highest standards of Client and information confidentiality.*Job Requirements*Bi-lingual Canadian French and EnglishA passion for customers and the ability to recognize excellent customer service.Excellent communication skillsDesire to develop skills in providing clear, objective, feedback to our clients.Focus and attention to detail to provide accurate assessments to our clients.Comfortable navigating and learning computer programs/systemsAbility to work to tight targets and deadlines.Fast, reliable, internet connectionAs a homeworker, a dedicated space where you can focus and provide accurate assessments is required.Comfortable troubleshooting basic internet and computer issues*Preferred Requirements*Call Center experienceOutbound Call Surveyor experience*About Us*At BPA Quality, we believe customer engagement is at the core of every successful global brand. Our mission is to help organizations discover opportunities to connect to their customers positively and efficiently. We hire innovators with a passion for customers and drive for quality. Our commitment is to attract and retain talented, diverse and engaged teams that create a collaborative environment that openly celebrates all cultures and affords personal and professional growth opportunities.*More Information*As an equal opportunity employer, BPA Quality prides itself on providing employees with a work environment in which all individuals are treated with respect and dignity. This means we are committed to providing equal opportunity to all qualified employees and applicants for employment without regard to one’s race, color, religion, national origin, age, sex (including pregnancy, sex stereotyping, gender identity, gender expression, or transgender status), disability, alienage or citizenship status, marital status, creed, genetic predisposition or carrier status, sexual orientation, Veteran status, political affiliation or any other classification or characteristic protected by applicable federal, state or local laws. This policy applies to all terms and conditions of employment including but not limited to hiring, placement, promotion, compensation, training, leave of absence or termination.*Job Info*Job Schedule: Full and Part TimeLocation: Remote Homeworker, CanadaStatus: Non- Exempt/ HourlyStarting Salary-18 per hour*Spécialiste du Service à la Clientèle Bilingue - Télétravail*Télétravail, Canada*Aperçu des descriptions de tâches*Mener des sondages téléphoniques auprès des consommateurs qui ont récemment reçu des services de notre client. Vous recevrez une formation dans le but d’effectuer des sondages et répondre aux questions générales. Les résultats du sondage seront compilés pour fournir un aperçus des commentaires des consommateurs afin d’aider notre client à améliorer la satisfaction de la clientèle.*Fonctions principales et responsabilités essentielles*Assister au programme de formation et aux séances d’échantillonnage.Mener des sondages auprès des consommateurs et documenter les commentaires détaillés, en maintenant un haut niveau de qualité.Démontrer un comportement positif.Naviguer avec succès dans le système de gestion du consommateur.S’assurer que tous les sondages soient réalisés en temps opportun et conformément aux exigences du projet.Assurer le respect de tous les réglementations et procédures de santé et sécurité afin de maintenir un environment de travail sécuritaire.Respecter les procédures de BPA. Maintenir les normes et les informations confidentiel du client.*Compétences Requises*Bilingue Français et Anglais CanadienÊtre passionné et avoir la capacité de reconnaître un excellent service à la clientèle.Excellente faculté à communiqué.Une désir de développer des compétences pour fournir une rétroaction claire et objective à nos clients.Attention et souci du détail pour fournir une évaluation précise à nos clients.Naviguer confortablement et apprendre les programmes/systèmes du logiciel.Capacité à travailler aves des objectifs et des délais serrés.Connection internet rapide et fiable.Pour le Télétravail dédié un espace où vous pouvez vous concentrer et fournir une évaluation précise est nécessaire.À l’aise pour résoudre les problèmes de base liés à Internet et à l’ordinateur*Exigences Requises*Expérience en centre d’appelsExpérience en sondages téléphoniqueÀ propos de nousChez BPA Quality, nous croyons que l’engagement du client est au coeur de toute compagnie mondiale prospère. Notre mission est d’aider les organizations à découvrir des opportunités de se connecter à leurs clients de manière positive et efficace. Nous embauchons des innovateurs passionnés pour les consommateurs et soucieux de la qualité. Notre engagement est d’attirer et de retenir des équipes talentueuses, diversifiées et engagées qui créent un environment collaboratif qui célèbre ouvertement toutes les cultures et offre des opportunités de croissance personnelle et professionnelle.*Plus d’informations*En tant qu’employeur équitable, BPA Quality est fière d’offrir à ses employés un environnement de travail dans lequel tous les individus sont traités aves respect et dignité. Cela signifie que nous nous engageons à offrir des chances égales à tous les employés qualifiés et candidats à l’emploi sans égard à la race, la couleur, la religion, nationalité, l’âge, le sexe (incluant grossesse, les stéréotype sexuels, l’identité de genre, l’expression de genre ou le statu transgenre) handicap, aliénation ou statut citoyen, état matrimonial, croyance, prédisposition génétique ou statut de porteur, orientation sexuelle, Vétéran, affiliation politique ou classification ou caractéristique protégée par les lois fédérales, les états ou locales. Cette politique s’applique à toutes les conditions d’emploi, y compris, mais sans limiter, l’embauche, le placement, la promotion, la rémunération, la formation, les congés ou la démission.*Information sur l’emploi*Horaire: Temps plein et temps partielLieu: Télétravail, CanadaStatus: Non exonéré/ l’heureSalaire débutant à 18$/hrsType d'emploi : Temps PleinRémunération : 18,00$ par heure\",\n            \"location\": \"Okanagan\"\n        },\n        {\n            \"id\": \"A8374FB95DEE31F8CB676CDC518BD54B\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=54eca50df33eef7d\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Thai Express\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694299247277,\n            \"dateOfPosted\": 1664104548424,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Richmond Hillcrest mallSzechuan(Chinese Fast food Restaurant)hiring a full/part timecashier or Counter helpwelcome student employment !9350 yonge st Richmond hill.(16th and Yonge Streets )Tel James Yao :4168285850职位类型：全职, 兼职, 临时工, 合同工兼职小时数： 每周 30-40薪资： 每小时$16.00预期开始日期： 25-09-2022\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"38D4C4C72DB1E14270D98D7048781E79\",\n            \"cityName\": \"Richmond Hill, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dc21de333931e14f\",\n            \"jobName\": \"Customer Service Supervisor (Except Financial Services)\",\n            \"companyName\": \"Media Technologies\",\n            \"rowSalary\": \"$28.25–$30.00 an hour\",\n            \"date\": 1694298944538,\n            \"dateOfPosted\": 1692353458812,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8828401,\n                    \"lon\": -79.4402808\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond Hill\",\n                \"formattedAddress\": \"Richmond Hill, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond Hill\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 29.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    29.0\n                ],\n                \"range\": {\n                    \"gte\": 29.0,\n                    \"gt\": null,\n                    \"lte\": 29.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College/CEGEPExperience: 1 year to less than 2 yearsTasks Conduct performance reviews Perform same duties as workers supervised Co-ordinate, assign and review work Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Examine and verify accuracy of work and authorize routine deposits and withdrawals Identify training needs and train workers in job duties and company policies Resolve work-related problems and prepare and submit progress and other reports Supervision Customer service clerk 1 to 2 people Work conditions and physical capabilities Attention to detail Fast-paced environment Large workload Tight deadlines Work under pressure Personal suitability Accurate Client focus Dependability Efficient interpersonal skills Excellent oral communication Excellent written communication Initiative Interpersonal awareness Judgement Organized Reliability Team playerWork Term: PermanentWork Language: EnglishHours: 30 hours per week\",\n            \"location\": \"Richmond Hill, ON\"\n        },\n        {\n            \"id\": \"CA227E9EA661F4F89744912AE807D2E9\",\n            \"cityName\": \"503 Centennial Road North, Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=733045b4fe5ec279\",\n            \"jobName\": \"Customer Service Operator\",\n            \"companyName\": \"Answer North America\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694298898419,\n            \"dateOfPosted\": 1692281088038,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7935509,\n                    \"lon\": -79.1533266\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Centennial Rd N, Toronto, ON M1C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Centennial Road North, Scarborough, ON Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Part-time work required in a call centre from the hours of 3pm-11pm on Thursdays, Fridays, Saturdays, and Sundays. Potential other shift available at the same time on Mondays-Wednesdays. You will be required to answer phone calls for a number of companies and dispatch calls/messages out as required for each client.Ideally, you will have strong customer service skills and are able to listen to callers to determine what they need and provide top notch service. Typing proficiency is a plus as you will relay messages through typing emails to clients, as well as some computer skills (Microsoft Office).Training will be conducted in our office in Scarborough. You must be able to work 3pm-11pm, preference will be given to anyone who is able to work occasional overnight shifts, approximately two per month as well as occasional back-up or coverage shifts. Our office is open 365 days of the year, so you may be required to work some holidays.For the quickest response, call us at 416-724-8333!Job Type: Part-timePart-time hours: 20-30 per weekSalary: $16.50 per hourSchedule:8 hour shiftEvening shiftNight shiftWork Location: In person\",\n            \"location\": \"Centennial Road North, Scarborough, ON\"\n        },\n        {\n            \"id\": \"AC0B705D19223E0609B72E6C3381675B\",\n            \"cityName\": \"7 Copeland Street, East York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c23757eafe001f37\",\n            \"jobName\": \"Customer Service Representative/Receptionist\",\n            \"companyName\": \"My Storage\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694298546930,\n            \"dateOfPosted\": 1693427319621,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7114575,\n                    \"lon\": -79.3535203\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Copeland St, Toronto, ON M4G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Copeland Street, East York, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Hourly pay rate plus commission and travel payJob Responsibilities include;- Managing/maintaining a facility(s) and completing site checks, sweeping halls, and cleaning storage units- Provide assistance to customers, taking payments, move in's, etc..- Completing daily and weekly reports pertaining to your site(s)- Cleaning office space daily after use, mopping, disinfecting, cleaning windows, dusting, etc.. as well as keeping facility up to standards- Have a vehicle and valid drivers license to complete bank runs- Be able to go to different GTA Locations and perform same tasks at each site- digital content creation, run kijij ads, promotions, post on social mediaEmployees need to be;- Punctual and reliable- have full availability including weekends- computer literate, customer service capabilities, phone etiquette- Great communication skills while handling customers and working in an office aloneAll candidates can forward a copy of their resume via email and will be contacted for a interview meeting through zoom.Job Types: Full-time, PermanentSalary: $18.00-$22.00 per hourSchedule:10 hour shift8 hour shiftEvery WeekendWeekends as neededSupplemental pay types:Commission payCOVID-19 considerations:All customers need to wear masks and maintain social distance, sanitize space after use.Application question(s):Do you have your own vehicle to travel to different facilities? MandatoryEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Copeland Street, East York, ON\"\n        },\n        {\n            \"id\": \"E93153BD3FE3FCF3CC4212747C37879D\",\n            \"cityName\": \"Vanderhoof, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dda9d0001d41a774\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Ymca Of Northern Bc\",\n            \"rowSalary\": \"$16.20 an hour\",\n            \"date\": 1694298346526,\n            \"dateOfPosted\": 1667018546571,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.01397979999999,\n                    \"lon\": -124.0129801\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vanderhoof\",\n                \"formattedAddress\": \"Vanderhoof, BC V0J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Bulkley-Nechako\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vanderhoof\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Health, Fitness, and Aquatics  Employment Opportunities P.O. Box 1808 • 2020 Massey Drive • Prince George • BC • V2L 4V7 | 250 562 9341 | nbc.ymca.ca Customer Service Representative Responsibilities and abilities  The Customer Service Representative, reporting to the Centre Manager,  is responsible for delivering excellent service through our SAM  Standards. The Customer Service Representative ensures that the front  counter is welcoming, friendly and operated in a clean, efficient and  effective manner. Fostering a culture of continuous improvement to delivering a 5  star customer service experience. Detail oriented, self-starter and organized. Excellent communication skills. Excellent time management and teamwork abilities. Occasional participation in Y community events. Location  Vanderhoof Aquatic CentreHours  Flexible Hours Part-time and Full-time positionsWhat you will gain  $16.20/hr starting wage YMCA Membership Health, Fitness, and Aquatics  Employment Opportunities P.O. Box 1808 • 2020 Massey Drive • Prince George • BC • V2L 4V7 | 250 562 9341 | nbc.ymca.ca Flexibility required to meet changing demands. Qualifications A combination of experience and training related to customer service. Experience working within a customer service orientated setting is preferred. Current First Aid and CPR certification or willingness to complete. Satisfactory criminal record check and clear vulnerable sector search. 3 satisfactory professional references Competencies  In addition to bringing a commitment to YMCA vision and values, and an orientation  to service, the candidate should possess the following competencies: 1. Leadership/Coaching – Ability to direct and develop performance of others to achieve desired  result. 2. Negotiation/Communication/Interpersonal Skills Able to speak, write, listen, and secure  information in a variety of settings. Ability to cooperate with others to achieve results. Ability to  create and build relationships inside and outside the organization. 3. Planning/Organizing – Ability to establish a clearly defined and effective course of action for self  and others to accomplish short and long term goals. 4. Problem Solving – Ability to identify an issue, gathers and processes relevant information,  determine possible solutions, selects appropriate responses and implements and evaluates  them. 5. Service Strategy – Ability to identify the needs and wants of members/participants as a priority  and respond in an effective and timely manner to enhance every person’s YMCA experience. 6. Community Awareness and Understanding – Demonstrates and promotes a personal  understanding of and appreciation for the vision, mission, and values of the organization.How to apply The YMCA thanks all those interested in this position.  Only those selected for an interview will be contacted. Please apply with cover letter, resume, and  application (found at nbc.ymca.ca) to: Sara Lungtoo  Centre Manager- Vanderhoof Aquatic Centre and  Integris Community Centre  sara.lungtoo@nbc.ymca.ca\",\n            \"location\": \"Vanderhoof, BC\"\n        },\n        {\n            \"id\": \"880AEB8542E54B5C7E875C2B240346CE\",\n            \"cityName\": \"25515 Township Road 500, Leduc, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a36000d76d9d1f0c\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Raodia Agency\",\n            \"rowSalary\": \"$45,000–$55,000 a year\",\n            \"date\": 1694298271686,\n            \"dateOfPosted\": 1687800194572,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.2704335,\n                    \"lon\": -113.5669902\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Leduc\",\n                \"formattedAddress\": \"5406 Discovery Way Unit 101a, Leduc, AB T9E 8L9, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Leduc County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Leduc\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Here’s why you should apply:Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingPrimary Functions:Serve as the information center for all customers, community contacts, and other company representativesMust be aware of daily activities and administrative responsibilitiesInteract with customers to provide information in response to inquiries, concerns and requests about products and servicesMust professionally handle all phone calls and route callersAnswers questions in a timely and courteous mannerProduce reports, forms, correspondence, orders and other materials as neededPerform other duties as assigned.QualificationsSolid organization and active listening skillsRazor sharp attention to detail with fast and accurate data entryCustomer service focused with creative problem solving skillsAbility to anticipate and advocate for your customers needsAbility to multi-task, prioritize and adjust to changing needsJust like your resume, a job description never tells the full story. Apply today and if you've got what it takes, we'd love to discuss everything in further detail. We know there's a lot more you'd like to know, why wait? Apply today!Job Types: Full-time, PermanentSalary: $45,000.00-$55,000.00 per yearBenefits:Dental careExtended health careOn-site parkingPaid time offFlexible Language Requirement:English not requiredFrench not requiredSchedule:8 hour shiftMonday to FridayWeekend availabilitySupplemental pay types:Bonus payOvertime payTipsEducation:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Township Road, Leduc, AB Canada\"\n        },\n        {\n            \"id\": \"2CDC68C7339DD889CE8D060370FE941F\",\n            \"cityName\": \"700 3rd Line, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=eebaaceaceea26b7\",\n            \"jobName\": \"Customer Service/Administrative Assistant\",\n            \"companyName\": \"Beauty First\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694298222489,\n            \"dateOfPosted\": 1693421901653,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4283542,\n                    \"lon\": -79.73036499999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Third Line, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"rd Line, Oakville, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OverviewBeauty First Spa is committed to giving our guests an inclusive, unique experience at every visit to one of our spas. The happiness of our guests is our priority, and it’s what keeps our guests coming back to us. Our employees build meaningful relationships with each one of our guests to ensure we are always prioritizing their needs.Major ResponsibilitiesDo admin duties like filing and updating POS system· Engage in incoming and outgoing calls to Pre-book future appointments.· Answering phones and working different shifts and weekend.· Learn about the products inside and out to be able to answer any questions from customers.· Resolve customer complaints/queries via phone, email, mail, or social media (Google, Facebook, Instagram, Whatsapp)· To handle multiple tasks and Utilize computer technology to manage day to day business.· Various administrative duties as required.· Flexibility in hours (Evenings/Weekends)Experience & Skills RequiredHigh-school diploma.Excellent verbal and written communication skills.Passion for finding solutions and providing the best possible customer experience.* Must have proficiency in Excel*· Ability to multitask and communicate with multiple customers at one time.Extremely strong conversational phone skills.Minimum 1-year customer service-related experience.Job Type: 1 Part-time applicant & 1 Full Time applicant requiredSalary: $17.00 per hourJob Types: Full-time, Part-timeSalary: From $17.00 per hourSchedule:8 hour shiftEvening shiftMonday to FridayMorning shiftWeekends as neededAbility to commute/relocate:Oakville, ON L6L 4B1: reliably commute or plan to relocate before starting work (preferred)Education:Secondary School (preferred)Experience:Front desk: 1 year (preferred)Administrative experience: 1 year (preferred)Work Location: In person\",\n            \"location\": \"rd Line, Oakville, ON\"\n        },\n        {\n            \"id\": \"8D23F590328DC000CA25E3EA811936BB\",\n            \"cityName\": \"Nova Scotia\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=77ac2046b6dcbf8f\",\n            \"jobName\": \"Remote Customer Service Agent (Work At Home)\",\n            \"companyName\": \"Mci Careers\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694298077557,\n            \"dateOfPosted\": 1667989583883,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.68198659999999,\n                    \"lon\": -63.744311\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax Regional Municipality\",\n                \"formattedAddress\": \"Nova Scotia, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halifax Regional Municipality\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" LOCATION: Remote Work-at-Home JOB TYPE: Full-Time PAY TYPES: Hourly + Bonus SALARY: $14.50 / hour BENEFITS & PERKS: REMOTE REPRESENTATIVE: Work-From-Home, Paid Training, Paid Time Off, Medical, Dental, Vision, Life Insurance, Retirement, Flexible Schedules, Company Laptop, Daily Contests, Prizes, Casual Dress Code, Regular Raises APPLICATION DETAILS: No Resume Required, Phone Interview POSITION OVERVIEW:  Remote Customer Service Agent, Work at Home, Bring Your Own Device Looking to work for a fast growing company? In these challenging times, we are offering work at home positions with flexible schedules.  The compensation is competitive. Benefits include paid vacation, variable bonus, and contest incentives.  Your own working PC device and internet broadband at home are required. All it takes to get started is for you to complete an easy online application and an informal interview with a talent acquisition specialist.  -:  POSITION RESPONSIBILITIES:  WHAT DOES A WORK AT HOME CONTACT CENTER REPRESENTATIVE DO? This position supports customer service and sales interactions. This role requires you to interact with hundreds of customers each week across the country to resolve support issues, sell new products and services, and ensure best in class customer experience. In addition to being the best in the business when it comes to customer interactions, you will need to be confident, fully engaged, a team player, and dedicated to bringing a positive and enthusiastic outlook to work each day.  Our entry-level Contact Center Representatives are responsible for the following tasks: Listen to customers, understand their needs, and resolve customer issues Utilize systems and technology to complete account management tasks Recognize sales opportunity and apply sales skills to upgrade Explain and position the products and processes with customers Appropriately escalate customer dissatisfaction with managerial team Ensure first call resolution through problems solving and effective call handling CANDIDATE QUALIFICATIONS:  WONDER IF YOU ARE A GOOD FIT? MCI provides all new employees with world-class training, so all positive, driven, and confident applicants are encouraged to apply. Ideal candidates for this position are highly motivated, energetic, and dedicated.Qualifications Must be 18 years of age or older High school diploma or equivalent Excellent organizational, written, and oral communication skills The ability to type swiftly and accurately (20+ words a minute) Basic knowledge of Microsoft Office Suite (Excel, PowerPoint, Word, Outlook) Basic understanding of Windows operating system Highly reliable with the ability to maintain regular attendance and punctuality The ability to evaluate, troubleshoot, and follow-up on customer issues An aptitude for conflict resolution, problem solving and negotiation Must be customer service oriented (empathetic, responsive, patient, and conscientious) Ability to multi-task, stay focused and self manage Strong team orientation and customer focus The ability to thrive in a fast-paced environment where change and ambiguity prevalent Excellent interpersonal skills and the ability to build relationships with your team and customers CONDITIONS OF EMPLOYMENT: Must be authorized to work in their country of residence (The United States or Canada) Must be willing to submit up to a LEVEL II background and/or security investigation with a fingerprint. Job offers are contingent on background/security investigation results COMPENSATION DETAILS:  WANT AN EMPLOYER THAT VALUES YOUR CONTRIBUTION? We believe that hard work should pay off, so we make sure that our compensation and total rewards are competitive. Standard starting compensation is commensurate with experience. Regular reviews and raises are awarded based on tenure and performance, so our employees make more each year. Employees earn paid time off as well as paid holidays and paid training opportunities. Regular daily, weekly and monthly incentives are part of the overall compensation our team members enjoy and include monetary incentive and prizes such as computers, tablets, phones, TV’s, trips, tickets, and even cars. In addition to our standard group benefits offering for full-time employees following 90-days of employment, all employees are eligible to opt for our MEC medical plan after only 30-days of employment. Benefits options and plans vary slightly by location. JUST A FEW OF THE BENEFITS Medical, Dental, and Vision Coverage Options Paid Time-Off Advancement Opportunity Fun, Engaging Work Environment Casual Dress Code Cash and Prize Contests PHYSICAL REQUIREMENTS:  This job operates in a professional office environment. While performing the duties of this job, the employee will be largely sedentary and will be required to sit/stand for long periods while using a computer and telephone headset. The employee will be regularly required to operate a computer and other office equipment, including a phone, copier, and printer. The employee may occasionally be required to move about the office to accomplish tasks; reach in any direction; raise or lower objects, move objects from place to place, hold onto objects, and move or exert force up to forty (40) pounds.  REASONABLE ACCOMMODATION:  Consistent with the Americans with Disabilities Act (ADA) it is the policy of MCI and affiliates to provide reasonable accommodation when requested by a qualified applicant or employee with a disability unless such accommodation would cause undue hardship. The policy regarding requests for reasonable accommodation applies to all aspects of employment. If reasonable accommodation is needed, please contact Kate Murph, Vice President of Human Resources.  DIVERSITY AND EQUALITY:  At MCI and its subsidiaries, we embrace differences and believe diversity is a benefit to our employees, our company, our customers, and our community. All aspects of employment at MCI are based solely on a person's merit and qualifications. MCI maintains a work environment free from discrimination, one where employees are treated with dignity and respect. All employees share in the responsibility for fulfilling MCI's commitment to a diverse and equal opportunity work environment. MCI does not discriminate against any employee or applicant on the basis of age, ancestry, color, family or medical care leave, gender identity or expression, genetic information, marital status, medical condition, national origin, physical or mental disability, political affiliation, protected veteran status, race, religion, sex (including pregnancy), sexual orientation, or any other characteristic protected by applicable laws, regulations, and ordinances. MCI will consider for employment qualified applicants with criminal histories in a manner consistent with local and federal requirements. MCI will not tolerate discrimination or harassment based on any of these characteristics. We adhere to these principles in all aspects of employment, including recruitment, hiring, training, compensation, promotion, benefits, social and recreational programs, and discipline. In addition, it is the policy of MCI to provide reasonable accommodation to qualified employees who have protected disabilities to the extent required by applicable laws, regulations, and ordinances where an employee works. ABOUT MCI (PARENT COMPANY):  MCI helps customers take on their CX and DX challenges differently, creating industry-leading solutions that deliver exceptional experiences and drive optimal performance. MCI assists companies with business process outsourcing, staff augmentation, contact center customer services, and IT Services needs by providing general and specialized hosting, software, staff, and services.  In 2019 Marlowe Companies Inc. (MCI) was named by Inc. Magazine as Iowa’s Fastest Growing Company in the State of Iowa and was named the 452nd Fastest Growing Privately Company in the USA, making the coveted top 500 for the first time. MCI’s subsidiaries had previously made Inc. Magazine's List of Fastest-Growing Companies 15 times respectively. MCI has fifteen business process outsourcing service delivery facilities in Iowa, Georgia, Florida, Texas, Massachusetts, New Hampshire, South Dakota, New Mexico, California, Kansas, and Nova Scotia.  Driving modernization through digitalization, MCI ensures clients do more for less. MCI is the holding company for a diverse lineup of tech-enabled business services operating companies. MCI organically grows, acquires, and operates companies that have a synergistic products and services portfolios, including but not limited to Automated Contact Center Solutions (ACCS), customer contact management, IT Services (IT Schedule 70), and Temporary and Administrative Professional Staffing (TAPS Schedule 736), Business Process Management (BPM), Business Process Outsourcing (BPO), Claims Processing, Collections, Customer Experience Provider (CXP), Customer Service, Digital Experience Provider (DXP), Account Receivables Management (ARM), Application Software Development, Managed Services, and Technology Services, to mid-market, Federal & enterprise partners. MCI now employs 10,000+ talented individuals with 150+ diverse North American client partners across the following MCI brands: GravisApps, Mass Markets, MCI Federal Services (MFS), The Sydney Call Center, OnBrand24, and Valor Intelligent Processing (VIP). DISCLAIMER:  The purpose of the above job description is to provide potential candidates with a general overview of the role. It's not an all-inclusive list of the duties, responsibilities, skills, and qualifications required for the job. You may be asked by your supervisors or managers to perform other duties. You will be evaluated in part based upon your performance of the tasks listed in this job description. The employer has the right to revise this job description at any time. This job description is not a contract for employment, and either you or the employer may terminate employment at any time, for any reason. REGARDING COVID-19:  As an employer supporting critical Federal, State, Provincial, and Commercial clients, we have taken steps to ensure that we remain operational while taking every precaution possible to prevent the spread of COVID-19 and keep our employees safe. Measures include social distancing for those working on-site, frequent deep cleaning and disinfecting of workstations and common areas, daily contactless temperature checks for those essential employees working on-site, travel policies limiting travel and mandatory quarantine, reporting and quarantine processes and policies for those exposed, and requesting masks to be worn when on-site employees are not at their workstation.REGARDING MASKS To help protect our candidates and employees, we are REQUESTING that all on-site candidates wear a mask to interviews and training. In locations where state or local government has mandated the use of masks, we will abide by the mandate, and REQUIRE masks be worn when on-location. For more information on MCI’s response to COVID-19 please visit www.mci.world/covid-19.\",\n            \"location\": \"Nova Scotia\"\n        },\n        {\n            \"id\": \"9B32476F0CE8163544FBF13D5D573FA5\",\n            \"cityName\": \"88 W Pender St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a67cdbc09b45ea20\",\n            \"jobName\": \"Customer Service And Cooking On Flat Grill\",\n            \"companyName\": \"Milaty Grill\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694298069228,\n            \"dateOfPosted\": 1668245657914,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.28590639999999,\n                    \"lon\": -123.1167774\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Pender St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Must have Foodsafe level 1 taking order from customers, taking payment and cooking there meal on the flat grill , cutting vegetables and meat , washing dishes cleaning up the kitchenJob Type: Part-timeSalary: From $17.00 per hourSchedule:4 hour shiftAbility to commute/relocate:VANCOUVER, BC: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Pender St E, Vancouver, BC\"\n        },\n        {\n            \"id\": \"9F5AD1B2A30A3C389BB96A661F30FDE0\",\n            \"cityName\": \"10505 20 Ave, Blairmore, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=eb0a859823aa1478\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"A & B Liquor Store\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694298035765,\n            \"dateOfPosted\": 1688662982149,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.60809889999999,\n                    \"lon\": -114.4394835\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"12305 20 Ave, Blairmore, AB T0K 0E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Crowsnest Pass\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Part time permanent casual position. Average of 2 shifts per week. Possibility of more shifts throughout the summer. Must be physically fit and able to lift repetitively. Must have no prior injuries. Must be available for shifts in the day, evening and weekends. Must live locally. Must have ProServe.Specific Skills - Operate POS System, process money and credit/debit transactions, scan items, count and reconcile float at the end of shift, stock shelves and coolers, help keep the store clean, and greet and assist customers.Business Equipment - POS System, credit/debit machine, price scanner, calculator and fax machine.Essential Skills - Mature, reliable, trustworthy, standing for extended periods, reading text, numeracy, problem solving, decision making, computer use, lifting up to 25lbs., communication, working well with others and alone. Must be flexible about working different shifts, evenings, weekends, and occasional days.Job Types: Part-time, PermanentSalary: $16.00 per hourJob Types: Part-time, Permanent, casualSalary: $16.00 per hourJob Type: Part-timeSalary: $16.00 per hourBenefits:Store discountSchedule:Day shiftEvening shiftWeekend availabilityExperience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Ave, Blairmore, AB\"\n        },\n        {\n            \"id\": \"2B9EA6D7B6C7D6879B0D6C6790A279E1\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=20853ed7f8e44053\",\n            \"jobName\": \"Game Presenter - French Speaking - Customer Service\",\n            \"companyName\": \"Evolution Americas\",\n            \"rowSalary\": \"$17–$24 an hour\",\n            \"date\": 1694297989030,\n            \"dateOfPosted\": 1689698929272,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Company Description  Evolution is a market-leading developer and provider of products and services for online casino entertainment. Our excellence is driven by over 17,000 EVOlutioneers across 30 markets worldwide, working in product innovation, software development, IT solutions, game hosting and business support. Evolution's dynamic and creative environment creates a unique opportunity for personal and professional growth. Our integrated business-to-business solutions guarantee that our clients can always provide an unrivalled online entertainment experience to their players globally. We thrive on remaining an award-winning digital powerhouse of entertainment products and services with an ever-expanding line-up of product brands: Evolution Live, NetEnt, Red Tiger, Ezugi, Big Time Gaming, Nolimit City and DigiWheel. Evolution is a Swedish company founded in 2006 and listed on Nasdaq Nordic (EVO). Job Description  Showcase your vivacious personality as Evolution’s Online Casino Dealer! Rotate between morning and evening shifts from the comfort of our private, state-of-the-art studio located in New Westminster. You’ll host iconic casino games like Blackjack, Poker and Roulette, provide customer service with unlimited virtual players – with the chance to earn unlimited tips. We Offer Generous Compensation Package including: Earn from $17.00 - $24.00 per hour plus monthly performance bonus. Extended Health and Benefit Plan 15 Days Paid Vacation 8 Paid Personal Days 2 Paid Evo Day What You’ll Do Enthusiastically introduce players, the rules of the game and the winners Deal cards, spin a wheel, and announce winners Use quick and accurate handling of cards Research appropriate topics and trivia to discuss with the audience Follow and supervise the updates and amendments in the game Engage in friendly conversation, without offering your opinion (sports, music, and trivia facts) Be presentable and confident in front of the camera Provide Customer Service to players Always use a positive parting remark to end the game conversation Our Benefits At and After Work Work for a casino without smoking, alcohol, loud music, and health hazards Toast your successes on treat days and holiday events Collaborate with approachable, diverse and global co-workers Security-protected office with no physical players in the studio Paid vacation time and paid breaks No experiences required as we will provide paid in-house trainings Company-assistance to obtain Provincial Gaming License Enhanced Covid-19 safety protocols implemented to ensure a safe work environment. Receive up to $750 per employee referral Loyalty Incentives and Employee Discounts Complimentary Night shift taxi drop off service Fun and Engaging Company sponsored Team-building Events Qualifications  Age 19+ High school diploma or equivalent Experience in customer service and hospitality Professional and service-minded with good communications skills Must be able to work a flexible schedule, evenings, weekends and holidays Must be able to obtain Provincial Gaming License (sponsored by the company) Wear an assigned uniform and maintain professional appearance standards Must be comfortable wearing theatrical make-up (foundation, blush) Fluent in French, working knowledge of English Additional Information  #EVOHP About Us Evolution is a market-leading developer and provider of products and services for online casino entertainment. Our excellence is driven by over 17,000 EVOlutioneers across 30 markets worldwide, working in product innovation, software development, IT solutions, game hosting and business support. Evolution's dynamic and creative environment creates a unique opportunity for personal and professional growth. Our integrated business-to-business solutions guarantee that our clients can always provide an unrivalled online entertainment experience to their players globally. We thrive on remaining an award-winning digital powerhouse of entertainment products and services with an ever-expanding line-up of product brands: Evolution Live, NetEnt, Red Tiger, Ezugi, Big Time Gaming, Nolimit City and DigiWheel. Evolution is a Swedish company founded in 2006 and listed on Nasdaq Nordic (EVO).\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"820011F7A45DCAF151416B2528CF532F\",\n            \"cityName\": \"2435 4 St SW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=88f4d9b32753cac0\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"La Boulangerie Bakery Cafe\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694297895859,\n            \"dateOfPosted\": 1662646022251,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.02468200000001,\n                    \"lon\": -114.093319\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Alfege St SW, Calgary, AB T2T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"La Boulangerie bakery cafe is looking for friendly Barista and food counter attended to work in a fast paced environment.The job includes: taking orders ,making coffee sandwiches and crepes .Please apply if you are able to work in a full time job .You can drop off resume (please not on lunch time ) or send us emailWork RemotelyNoJob Types: Full-time, PermanentSalary: $15.00 per hour\",\n            \"location\": \"St SW, Calgary, AB\"\n        },\n        {\n            \"id\": \"2C995A2CC17B55260142617D93260CE9\",\n            \"cityName\": \"97 Saramia Cres Unit 2, Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7887fa531531450f\",\n            \"jobName\": \"Customer Service Representative / Admin. Assistant\",\n            \"companyName\": \"Chemsyn Services Inc.\",\n            \"rowSalary\": \"$40,000–$43,000 a year\",\n            \"date\": 1694296651486,\n            \"dateOfPosted\": 1693424110681,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8150008,\n                    \"lon\": -79.5263283\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"60 Saramia Crescent #1, Concord, ON L4K 4J7, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saramia Cres Unit, Concord, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job SummaryCustomer Service / Admin will be responsible for providing administrative and clerical support. The candidate will provide administrative support in a dynamic environment, and function with a high degree of attention to detail, quality, accuracy and prioritization of work autonomously. The Customer Service / Admin will also have the key responsibility to liaise customers and employees and as such is expected to provide the highest level of customer service addressing all inquiries in a timely and professional manner.Minimum EducationHigh School Diploma or GED requiredMinimum ExperienceFive (5) years experience required in clerical support or related area; two (2) of those years as an Office Administrator II or equivalent administrative experience supporting a manager-level or district staff position.Responsibilities· Provide a variety of complex and time sensitive administrative duties within tight time frames.· Communicate (including phone, email, and direct face to face) with the Company employees and customers in a timely and professional manner· Greet people and direct them to contacts or service areas· Assists with creation of reports, presentations, etc., including researching, compiling, analyzing and/or developing necessary information and materials· Ensures the efficient daily operation of the office and department functions, including maintenance of supplies and equipment· Support The Sales and Service Team daily.· Draft documents, responses, memorandums while ensuring accuracy using intermediate skills in relevant software applications (Word, Excel, Power Point.)Qualifications· Excellent written and verbal communication skills· Coordinates travel arrangements, meetings, updates and maintains calendar appointments.· Prepares required materials for conferences, meetings, calls, and various appointments· Excellent organization and time management skills with an ability to effectively manage complex tasks simultaneously· Ability to deal effectively with multiple priorities and possess tact and diplomacy in dealing with inquiries and requests for information· Demonstrates initiative, high degree of accuracy, and ability to handle a complexity of tasks simultaneously· Strong problem solving skills with an ability to identify problems/issues and take necessary steps to resolve them· Professional and customer service oriented with an ability to work with individuals across all levels of the organization· Self-directed, detail oriented, dependable, and resourceful· Performs other duties as assigned.Schedule:Monday to FridayCOVID-19 considerations:All interviews will be conducted via Zoom or MS TeamsAdditional SkillsTrain other workersIntermediate computer skills, including Microsoft Word, Excel and OutlookPersonal SuitabilityCustomer Service OrientedFlexibilityAccurateTeam playerExcellent oral communicationExcellent written communicationReliabilityOrganizedAbility to multi-taskWe thank everyone for taking the time to apply; only selected candidates will be contacted.Job Type: PermanentSalary: $40,000.00-$43,000.00 per hourJob Types: Full-time, PermanentSalary: $40,000.00-$43,000.00 per yearBenefits:Extended health careSchedule:8 hour shiftWork Location: In person\",\n            \"location\": \"Saramia Cres Unit, Concord, ON\"\n        },\n        {\n            \"id\": \"86C1CA354E32E5CB2CB17748C89B6705\",\n            \"cityName\": \"20330 88 Avenue, Langley, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a54d42d7556b6c04\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Meridian Meats & Seafood Ltd.\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694296162867,\n            \"dateOfPosted\": 1691454540048,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.10396770000001,\n                    \"lon\": -122.6631466\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Langley\",\n                \"formattedAddress\": \"20200 56 Avenue Sunshine Hills Surrey, 102-20200 56 Ave, Langley, BC V3A 851, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Langley\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service ACE (Ambassador of Customer Experience)Join our growing family business! Enjoy a 30% Employee Discount, Benefits, and Flexible Hours.Meridian ACEs give people the best possible experience through serving them well and personally connecting with friendly hospitality.You’ll LOVE this job if you:Have the ability to connect with people in ways that help them feel welcomed, valued, and appreciatedEnjoy being there for others, serving, and providing assistance.No previous experience required.This role is for you if you have:Strong interpersonal skillsAbility to learn quicklyKnowledge of the retail environmentEffective communication skillsAbility to work as part of a teamAbility to lift up to 50 lbs continuously.Ability to work on your feet all day, bending, leaning, crouching, and walking.Ability to work for extended periods of time, in a refrigerated environment (cooler or freezer)Deli or kitchen experience is a plus.Weekday, daytime availability is a must!Job Type: Full & Part-time Positions availableSchedule:20-35 hours per week4–8-hour shiftsDay shifts and/or closing shiftsWage/Salary:starting at $16.75 per hour (dependent upon experience)Bi-annual wage increasesAdvancement opportunitiesBenefits:30% Employee Discount on in-store purchasesHealth & Dental carePaid Sick TimeFlexible ScheduleMeridian is an equal opportunity employer of all qualified individuals. Our workplace is welcoming to people of all backgrounds, orientations, and diversities, and we encourage all to apply.Job Types: Full-time, Part-time, PermanentPart-time hours: 15 - 35 per weekSalary: From $16.75 per hourBenefits:Extended health careOn-site parkingStore discountFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftDay shiftEvening shiftMonday to FridayWeekend availabilitySupplemental pay types:Overtime payAbility to commute/relocate:Langley, BC: reliably commute or plan to relocate before starting work (required)Application question(s):Are you able to work during the Day come September?Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Avenue, Langley, BC\"\n        },\n        {\n            \"id\": \"6C112ACB1E0D9AFB6321C37CA7F0C25F\",\n            \"cityName\": \"2287 Commercial Dr, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bf69c3ea47d7b4d6\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Express News Convenience\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694295842022,\n            \"dateOfPosted\": 1692208843103,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2838641,\n                    \"lon\": -123.0703588\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Commercial Dr, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position: Customer Service RepresentativeJob Description:The Customer Service Representative will play a key role in the success of our organization. This position is responsible for answering phone calls, responding to emails, and providing customer service support to our sales team. The CSR will also serve as the main point of contact for customer questions and inquiries. The position requires a high level of attention to detail, excellent organizational skills, the ability to think critically and maintain a positive attitude during fast-paced situations.Core Duties & Responsibilities:Greet and assist customers in a warm and welcoming manner.Provide product information and help customers make informed purchasing decisions.Operate the cash register and handle transactions accurately.Maintain a clean and organized store environment, including restocking shelves and ensuring product availability.Address customer inquiries, concerns, and complaints professionally and promptly.Follow store policies and procedures to ensure smooth operations.Promote store loyalty programs and special promotions to customers and UPSELL.Collaborate with team members to ensure a positive and cohesive work environment.Requirements:Strong communication skills – face-to-faceStrong attention to detailAbility to work independently as well as in a team environmentHighly motivated with a positive attitudeAbility to multi-task, prioritize, and manage time effectivelyKnowledge of operation systems or tools used in office settings (e.g., CRM, G-Suite) is a plus!Express News Convenience is an equal opportunity employer. All qualified applicants will receive consideration for employment without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, disability or protected veteran status.Job Type: Part-timePart-time hours: 20 per weekSalary: $16.75 per hourSchedule:Every WeekendMonday to FridayEducation:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Ability to Commute:Vancouver, BC V5N 4B6 (preferred)Ability to Relocate:Vancouver, BC V5N 4B6: Relocate before starting work (preferred)Work Location: In personApplication deadline: 2023-08-17Expected start date: 2023-08-21\",\n            \"location\": \"Commercial Dr, Vancouver, BC\"\n        },\n        {\n            \"id\": \"1CE78175287C6EE3C86EAA6C044323C6\",\n            \"cityName\": \"90 Inglis St Unit A005, Sydney, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cec4cc6284a53663\",\n            \"jobName\": \"Customer Service Representative (Full-Time)\",\n            \"companyName\": \"Mci Careers\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694295634087,\n            \"dateOfPosted\": 1625167774802,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.14031689999999,\n                    \"lon\": -60.1832895\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sydney\",\n                \"formattedAddress\": \"Inglis St, Sydney, NS B1P, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Cape Breton Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sydney\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" LOCATION: Sydney, NS SALARY: $14.50 / hour POSITION OVERVIEW:  CALL CENTER REPRESENTATIVE SUPPORTING COMMERCIAL AND PUBLIC SECTOR CLIENTS We are looking for call center representatives to support inbound and outbound customer service and sales projects for a wide variety of clients. In this role, you will handle inbound inquiries, make outbound calls to existing customers to assist with customer service questions and upsell customers on new products and services. There are a wide variety of project openings on government program as well as some of the most recognizable brands in the world. Candidates should have excellent communication skills, willing to learn on the job and be highly reliable. Schedules vary by site and project however we can usually find something that works for everyone. This is an entry-level position with competitive compensation commensurate with experience. While prior contact center experience isn't required, Experience in customer service, technical support, inside sales, or back-office support in a contact center environment is a plus.  -:  POSITION RESPONSIBILITIES:  WHAT DOES SOMEONE IN THIS ROLE ACTUALLY DO? This position supports customer service, technical support, and customer sales interactions. This role requires you to interact with hundreds of customers each week across the country to resolve support issues, sell new products and services, and ensure a best-in-class customer experience. In addition to being the best in the business when it comes to customer interactions, you will need to be confident, fully engaged, a team player, and dedicated to bringing a positive and enthusiastic outlook to work each day. Essential Duties Handle inbound and outbound contacts in a courteous, timely, and professional manner Listen to customers, understand their needs, and resolve customer issues Research systems to find missing information as applicable; coordinate with other departments to resolve issues as applicable Follow the processes of the Client program and perform all tasks in a courteous and professional manner Utilize systems and technology to complete account management tasks Accurately document and process customer claims in appropriate systems Follow all required scripts, policies, and procedures Utilize knowledge base and training to accurately answer customer questions Comply with requirements surrounding confidential information and personal information Appropriately escalate customer issues with the managerial team Escalate customer issues to the appropriate staff and managerial for resolution as needed. Ensure first call resolution through problems solving and effective call handling Attend meetings and training and review all new training material to stay up-to-date on changes to program knowledge, systems, and processes Adhere to all attendance and work schedule requirements CANDIDATE QUALIFICATIONS:  WONDER IF YOU ARE A GOOD FIT? It's about building relationships and turning the knowledge you gain in training into customer wins. Representatives make a difference to customers and the company, providing over-the-phone customer service, sales, and technical support. We provide all new employees with world-class training, so all positive, driven, and confident applicants are encouraged to apply. Ideal candidates for this position are highly motivated, energetic, and dedicated. Required Must be 18 years of age or older High school diploma or equivalent Experience with data-entry utilizing a computer The ability to read and speak English fluently Have a wired, high-speed internet connection (Download speed of 20Mbps+) Excellent organizational, written, and oral communication skills The ability to type swiftly and accurately (20+ words a minute) Ability to work regularly scheduled shifts within our hours of operation including the training period. Basic knowledge of Microsoft Office Suite (Excel, PowerPoint, Word, Outlook) Familiarity with computer and Windows PC applications and the ability to learn new and complex computer system applications Highly reliable with the ability to maintain regular attendance and punctuality The ability to evaluate, troubleshoot, and follow-up on customer issues An aptitude for conflict resolution, problem solving and negotiation Must be customer service oriented (empathetic, responsive, patient, and conscientious) Ability to multi-task, stay focused, and self-manage Strong team orientation and customer focus The ability to thrive in a fast-paced environment where change and ambiguity are prevalent Excellent interpersonal skills and the ability to build relationships with your team and customers Preferred (Not Required) One (1) year of experience in customer service, technical support, inside sales, back-office, chat, or administrative support in a contact center environment Work at home experience State or Federal work experience CONDITIONS OF EMPLOYMENT: Must be authorized to work in their country of residence (The United States or Canada) Must be willing to submit up to a LEVEL II background and/or security investigation with a fingerprint. Job offers are contingent on background/security investigation results COMPENSATION DETAILS:  WANT AN EMPLOYER THAT VALUES YOUR CONTRIBUTION? We believe that hard work should pay off, so we make sure that our compensation and total rewards are competitive. Standard starting compensation is commensurate with experience. Employees earn paid time off as well as paid holidays and paid training opportunities. Regular daily, weekly and monthly incentives are part of the overall compensation our team members enjoy and include monetary incentive and prizes such as computers, tablets, phones, TV’s, trips, tickets, and even cars. In addition to our standard group benefits offering for full-time employees following 90-days of employment, all employees are eligible to opt for our MEC medical plan after only 30-days of employment. Benefits options and plans vary slightly by location. JUST A FEW OF THE BENEFITS Medical, Dental, and Vision Coverage Options Paid Time-Off Regular Raises Advancement Opportunity Fun, Engaging Work Environment Casual Dress Code Cash and Prize Contests PHYSICAL REQUIREMENTS:  This job operates in a professional office environment. While performing the duties of this job, the employee will be largely sedentary and will be required to sit/stand for long periods while using a computer and telephone headset. The employee will be regularly required to operate a computer and other office equipment, including a phone, copier, and printer. The employee may occasionally be required to move about the office to accomplish tasks; reach in any direction; raise or lower objects, move objects from place to place, hold onto objects, and move or exert force up to forty (40) pounds.  REASONABLE ACCOMMODATION:  Consistent with the Americans with Disabilities Act (ADA) it is the policy of MCI and affiliates to provide reasonable accommodation when requested by a qualified applicant or employee with a disability unless such accommodation would cause undue hardship. The policy regarding requests for reasonable accommodation applies to all aspects of employment. If reasonable accommodation is needed, please contact Kate Murph, Vice President of Human Resources, kate.murph@mci.world.  DIVERSITY AND EQUALITY:  At MCI and its subsidiaries, we embrace differences and believe diversity is a benefit to our employees, our company, our customers, and our community. All aspects of employment at MCI are based solely on a person's merit and qualifications. MCI maintains a work environment free from discrimination, one where employees are treated with dignity and respect. All employees share in the responsibility for fulfilling MCI's commitment to a diverse and equal opportunity work environment. MCI does not discriminate against any employee or applicant on the basis of age, ancestry, color, family or medical care leave, gender identity or expression, genetic information, marital status, medical condition, national origin, physical or mental disability, political affiliation, protected veteran status, race, religion, sex (including pregnancy), sexual orientation, or any other characteristic protected by applicable laws, regulations, and ordinances. MCI will consider for employment qualified applicants with criminal histories in a manner consistent with local and federal requirements. MCI will not tolerate discrimination or harassment based on any of these characteristics. We adhere to these principles in all aspects of employment, including recruitment, hiring, training, compensation, promotion, benefits, social and recreational programs, and discipline. In addition, it is the policy of MCI to provide reasonable accommodation to qualified employees who have protected disabilities to the extent required by applicable laws, regulations, and ordinances where an employee works. ABOUT MCI (PARENT COMPANY):  MCI helps customers take on their CX and DX challenges differently, creating industry-leading solutions that deliver exceptional experiences and drive optimal performance. MCI assists companies with business process outsourcing, staff augmentation, contact center customer services, and IT Services needs by providing general and specialized hosting, software, staff, and services.  In 2019 Marlowe Companies Inc. (MCI) was named by Inc. Magazine as Iowa’s Fastest Growing Company in the State of Iowa and was named the 452nd Fastest Growing Privately Company in the USA, making the coveted top 500 for the first time. MCI’s subsidiaries had previously made Inc. Magazine's List of Fastest-Growing Companies 15 times respectively. MCI has fifteen business process outsourcing service delivery facilities in Iowa, Georgia, Florida, Texas, Massachusetts, New Hampshire, South Dakota, New Mexico, California, Kansas, and Nova Scotia.  Driving modernization through digitalization, MCI ensures clients do more for less. MCI is the holding company for a diverse lineup of tech-enabled business services operating companies. MCI organically grows, acquires, and operates companies that have a synergistic products and services portfolios, including but not limited to Automated Contact Center Solutions (ACCS), customer contact management, IT Services (IT Schedule 70), and Temporary and Administrative Professional Staffing (TAPS Schedule 736), Business Process Management (BPM), Business Process Outsourcing (BPO), Claims Processing, Collections, Customer Experience Provider (CXP), Customer Service, Digital Experience Provider (DXP), Account Receivables Management (ARM), Application Software Development, Managed Services, and Technology Services, to mid-market, Federal & enterprise partners. MCI now employs 10,000+ talented individuals with 150+ diverse North American client partners across the following MCI brands: GravisApps, Mass Markets, MCI Federal Services (MFS), The Sydney Call Center, OnBrand24, and Valor Intelligent Processing (VIP). DISCLAIMER:  The purpose of the above job description is to provide potential candidates with a general overview of the role. It's not an all-inclusive list of the duties, responsibilities, skills, and qualifications required for the job. You may be asked by your supervisors or managers to perform other duties. You will be evaluated in part based upon your performance of the tasks listed in this job description. The employer has the right to revise this job description at any time. This job description is not a contract for employment, and either you or the employer may terminate employment at any time, for any reason. REGARDING COVID-19:  As an employer supporting critical Federal, State, Provincial, and Commercial clients, we have taken steps to ensure that we remain operational while taking every precaution possible to prevent the spread of COVID-19 and keep our employees safe. Measures include social distancing for those working on-site, frequent deep cleaning and disinfecting of workstations and common areas, daily contactless temperature checks for those essential employees working on-site, travel policies limiting travel and mandatory quarantine, reporting and quarantine processes and policies for those exposed, and requesting masks to be worn when on-site employees are not at their workstation. For more information on MCI’s response to COVID-19 please visitwww.mci.world/covid-19.\",\n            \"location\": \"Inglis St Unit A, Sydney, NS\"\n        },\n        {\n            \"id\": \"E18DC05A0D6AE4443EFBF7D05872C1CA\",\n            \"cityName\": \"120 Boul Ste Rose, Laval-ouest, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1d8d5b314434cf5f\",\n            \"jobName\": \"Bilingual Customer Service Representative - Remote\",\n            \"companyName\": \"Assistance Services Group\",\n            \"rowSalary\": \"$15.00–$17.05 an hour\",\n            \"date\": 1694295627037,\n            \"dateOfPosted\": 1692300109537,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5517876,\n                    \"lon\": -73.8703587\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Laval-Ouest, Laval, QC H7R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laval\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval-ouest, QC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"100% Online Application. Virtual Interview.Bilingual Inbound Customer Assistance Representative - RemoteWhen you're good at what you do, you can Work from Home.When you're the best at what you do, come work with us!Start Date:Various - August, September, OctoberLocation:Work from Home - CanadaEmployment Type:Permanent Full-Time, Part, Time and Contract roles availableApplication Closing Date:14 April 2023About UsWe provide expert assistance for moments that matter.Now part of Sitel Group, Assistance Services Group (ASG) is committed to building positive and lasting relationships with our clients' customers, associates, and citizens. For over 66 years, we have provided enterprise-wide services addressing needs across various industries, including automotive, healthcare, insurance and legal. But regardless of the industry, our goal remains the same: to provide timely assistance and information for the moments that matter most. Whether it's car trouble in the middle of nowhere or a child's fever in the middle of the night, we pride ourselves on being there 24/7 with prompt, professional and experienced help.We believe in relationships, value, change and YOU.What Can We Offer YOU!With the rising cost of Gas Prices, what better way to ease the Day's stress than by Working from Home. Benefits include saving time, money, and the environment.Hands-on paid virtual classroom-style training.Company-sponsored benefits include medical, dental, life and vision insurance, company-matched RRSP contribution and paid vacation time.Don't have the equipment needed to do the job? Don't worry; we will send you what you need.Bilingual (French/English) associates are paid an additional $2.50 per hour.When work seems fun, you must be working from home.Customer AssistanceAs a full-time Work from Home Bilingual Customer Assistance Representative, you will work with our incredible Roadside Assistance team to dispatch roadside services quickly and efficiently to our members in difficult and stressful situations. They could be stuck on a busy highway, in the middle of an intersection, or alone late at night in an empty parking lot.With empathy, reassurance, and a sense of urgency, you will ensure they're safe, determine their exact location using mapping software, and quickly dispatch an authorized service provider to help. Your calm, soothing voice and can-do attitude make all the difference, and their gratitude is your reward.What You Bring!You currently reside in CanadaHigh School graduates or equivalentMust have at least three (3) months of working experience in the customer service fieldKnowledge of MS Office 365, MS TEAMS and a Microsoft Windows environment.Must have a good command of English and spoken FrenchYou'll need to be able to work varying shifts in our 24/7 operationProblem-Solving, Empathy, Adaptability and ReliabilityWhat You Can Offer US!A desk, comfortable chair, access to a quiet home office space, high-speed internet (minimum of 10 mbops download and 5 mbps upload), and the ability to hardwire your internet modem to the equipment we supply.Follow ASG on Social MediaLOVE YOUR CAREER!Sitel Group is committed to Global Ethics and is an equal opportunity employer. We are committed to fostering a diverse, inclusive and equitable work environment where all associates are represented, supported and treated with fairness and respect. We believe in selecting, developing and rewarding the best candidate for the job based on the requirements and responsibilities of the role. If you are contacted for any opportunity with us and require any accommodation during the recruitment and selection process please be sure to communicate your needs with your recruiter. Any information shared will be treated confidentially and will only be shared in order to provide a positive and accessible candidate experience.Job Type: Full-timeSalary: $15.00-$17.05 per hourBenefits:Dental careExtended health careLife insurancePaid time offRRSP matchWork from homeSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayMorning shiftNight shiftWork Location: Hybrid remote in Laval-Ouest, QC H7R 1R2\",\n            \"location\": \"Laval-ouest, QC\"\n        },\n        {\n            \"id\": \"6A0D987A8DA663E5AFD0520AC1482323\",\n            \"cityName\": \"100 Aldersmith Pl, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=baa340935f59dd66\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Domino's Pizza | 655069 Bc Ltd\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694295609392,\n            \"dateOfPosted\": 1692266470696,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4487147,\n                    \"lon\": -123.4287257\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"View Royal\",\n                \"formattedAddress\": \"Aldersmith Pl, View Royal, BC V9A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"View Royal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Hot job opening, fresh out of the Oven! The Customer Service Representative's role is crucial within the Domino's system! We pride ourselves on offering fast and friendly service with a smile, and our CSRs lead the way in doing so. Within our fast paced environment, the role is primarily to offer top quality customer service by phone and in person at the counter. Customer Service Representatives are expected to know Domino's products and the current offers in order to provide customers with the correct order and best value based on their needs. Customer Service Representatives will take orders by phone-in customers, as well as customers at the store. They are expected to manage the cash drawer when accepting payment for orders and returning change. CSRs will also handle customer concerns using the approach taught during Domino's onboarding and orientation. In secondary roles, Customer Service Representatives will help make quality products, label boxes, cut pizzas and prepare orders for delivery or to be served to in-store customers. CSRs also help in maintaining the store's professional image by participating in the cleaning tasks assigned to all team members. Benefits of working with Domino's Pizza include: Flexible schedules Competitive wages Staff pizzas Career growth opportunities A uniform is provided, and wages start at $15.65 plus $1.50 - $ 3.50/hour in tips. Customer Service Representatives are expected to be presentable by following Domino's personal image and grooming standards. Domino's is an equal opportunity employer. REQUIREMENTS Previous experience preferred Friendly and well spoken Good math skills to handle cash handling for in-store customer payments Speak English fluently in order to serve customers Focus on cleanliness and personal hygiene At Domino's Pizza, Our Most Important Ingredient is Our People! We offer employment opportunities within our franchise stores. Take the first step in joining our team, and you'll find opportunities you won't find anywhere else in the industry!\",\n            \"location\": \"Aldersmith Pl, Victoria, BC\"\n        },\n        {\n            \"id\": \"C875A44034D761DDDB9ED9E819198C63\",\n            \"cityName\": \"1360 Boul René Lévesque O, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7001d5e0de8d9bd8\",\n            \"jobName\": \"Food Preparation And Customer Service\",\n            \"companyName\": \"Cultures Restaurant\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694295583171,\n            \"dateOfPosted\": 1691469923719,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4980208,\n                    \"lon\": -73.5709092\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Boulevard René-Lévesque O, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking to fill in the position for food preparation and customer service.From Monday to Friday from 8:00 to 15:00.Job Type: Full-timeSalary: $17.00-$19.00 per hourSchedule:Day shiftMonday to FridaySupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"René-Lévesque Boulevard West, Montréal, QC\"\n        },\n        {\n            \"id\": \"859602944C0C9FEAA93914C6FE714F48\",\n            \"cityName\": \"Smiths Falls, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=524881204cc7031d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Wetrentals Inc.\",\n            \"rowSalary\": \"$15–$20 an hour\",\n            \"date\": 1694295538341,\n            \"dateOfPosted\": 1623804750302,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.903748,\n                    \"lon\": -76.02161889999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Smiths Falls\",\n                \"formattedAddress\": \"Smiths Falls, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Lanark County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Smiths Falls\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Boat Delivery & Customer Service Company descriptionWetRentals is a local Seadoo and other boat rental company. We offer rentals at a reasonable rate and they are delivered to our customers docks or doors.Job descriptionJob Title: Boat Delivery and Customer ServiceReports To: Sales ManagerJob Overview:As a Boat Delivery & Customer Service Representative, you will be required to deliver our boats to our customers dock or door. Once delivered, the boats must be unloaded and the customers must be briefed on the safety and operations of the boat. Customer service is key. Once the boats are fully delivered, the job duties are finished until the boats are required to be picked up. On pickup the boats must be inspected and returned to our location. Deliveries take place all over Ottawa, Kingston and Perth.A TRUCK IS REQUIRED (you will be paid $.58c/ km)Responsibilities and Duties- Rent Seadoo's to customers- Upsell our boats and accessories- Complete transactions- Collect deposits and signed contracts- Give safety briefings- Deliver Boats- Clean down boats, check for damage.- Answer questions as needed.Qualifications- Minimum of 18 Years of age- Sales experience is an asset- Boat knowledge is an asset- Local knowledge is an asset- Boaters licence is a must.- Truck or large vehicle is a must.HoursHours vary based on rentals. Our rentals are 9am-5pm. Deliveries and pickups happen at 9am and 5pm.The Perfect HireOur perfect hire is an energetic, outgoing individual who is looking to help grow our small business. The hire will have to be able to back up a trailer with boats and unload them proficiently. Customer service is a must as the hire must be able to fully explain how our boats work.Contract length: 2 monthsApplication deadline: 2021-06-20Expected start date: 2021-07-01Job Types: Full-time, TemporarySalary: $15-$20 per hourCOVID-19 considerations:All employees are required to wear a face covering while the government regulations are in place. Hand sanitizer and cleaning supplies are available 24/7Contract length: 2 monthsPart-time hours: 20 per weekExpected start date: 2021-07-01WetRentals Inc. provided the following inclusive hiring information:We are an equal opportunity employer and considers all qualified applicants equally without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, veteran status, or disability status.Job Types: Part-time, TemporarySalary: $15.00-$20.00 per hourApplication question(s):Do You Own A Large SUV or Truck?Education:Secondary School (preferred)Experience:customer service: 1 year (preferred)\",\n            \"location\": \"Smiths Falls, ON\"\n        },\n        {\n            \"id\": \"107AAA3BD6E6DB0E41D033E313E06BAC\",\n            \"cityName\": \"GTA Kitchen Remodeling inc. in Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=772b2e417b735975\",\n            \"jobName\": \"Customer Service Assistant\",\n            \"companyName\": \"Gta Kitchen Remodeling Inc.\",\n            \"rowSalary\": \"$38,386–$50,000 a year\",\n            \"date\": 1694295532867,\n            \"dateOfPosted\": 1638402492269,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7315479,\n                    \"lon\": -79.7624177\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Brampton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 38386.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    38386.0\n                ],\n                \"range\": {\n                    \"gte\": 38386.0,\n                    \"gt\": null,\n                    \"lte\": 38386.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our company is looking for a full time Retail Sales Specialist to join our team in Mississauga. This job is a fantastic opportunity for an individual who can work effectively with store management to increase retail sales and execute client-driven merchandising that meet the client’s expectations. The sales representative will need to be outgoing, friendly, and be able to drive sales and brand awareness for our client’s products at major retail locations. You will be engaging and educating the customers on their next purchase of some of the leading brands in retail. The ideal candidate is independent, self-motivated, ambitious, and driven to succeed. When you join the Company, you will receive top-notch training and competitive pay rates.Responsibilities:Meet client and Company objectives by maintaining full distribution on all authorized SKU’s.Must have the ability to communicate effectively both internally with The Company management and externally with all Customers.Perform sales skills through continuously creating sale opportunities to reach goalsEnsure that communication between the client and all post sales follow-ups are met and upt date such as delivery status and deadlines.Will complete accurate and timely paperwork and reports, recaps, itineraries, timesheets, expense reports, etcQualificationsSales experience of at least 1 year.Must have a vehicleJob Types: Full-time, PermanentSalary: $38,386.00-$50,000.00 per yearSchedule:8 hour shiftEducation:Bachelor's Degree (preferred)Experience:customer service: 1 year (preferred)Work remotely:No\",\n            \"location\": \"Brampton, ON\"\n        },\n        {\n            \"id\": \"1EACDBF7D6261C69843E0260721C7FF4\",\n            \"cityName\": \"11819 111 Ave NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2601b70efe2cedee\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Spec Hardware\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694295457519,\n            \"dateOfPosted\": 1668223544451,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5862898,\n                    \"lon\": -113.402279\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Henry Ave NW, Edmonton, AB T5A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Spec Hardware is Edmonton’s one stop shop for all specialty hardware for indoor, outdoor, residential and commercial spaces.Spec Hardware assists customers, interior designers, architects, builders, renovators, and millworkers in the selection of the architectural hardware for their upcoming projects. We have a vast selection of door, cabinet, bath, and exterior hardware readily available. We are always bringing in new hardware displays and partnering with new suppliers to keep our competitive edge on our products.We are looking for an outgoing individual who is passionate about home design to join our team!You will be a customer facing associate charged with working with our clientele to meet their design needs. Your primary responsibility will focus on providing exceptional customer service while professionally representing Spec. You will be responsible for daily administrative duties; knowing our products and selection, providing a positive customer experience, completing customized sales orders, as well as other duties assigned.RequirementsWorking knowledge/understanding of hardware and designComputer literacy with POS systems and Microsoft OfficeExcellent Customer Service skills – ability to deal effectively with customers in person and on the phoneFlexible with the ability to multi-task and work effectively handling multiple job functionsMust be able to work varying hours and shifts to reflect Specs Hardware operating hoursResponsibilitiesExhibits a high level of activity, passion and energy, while providing an expert level of product knowledgeProvide detailed product information to customers and peersPromoting and recommending products and plans that match customer needsPrepare Quotes for sales TeamTake initiative to elevate personal knowledge of all product categories in current and future merchandise and maintains awareness of store promotions, pricing and special eventsAnticipate customer needs and follow up on all leadsAll other duties as assignedJob Types: Full-time, PermanentSalary: $19.00-$22.00 per hourSchedule:8 hour shiftEducation:Bachelor's Degree (preferred)Experience:customer service: 3 years (preferred)\",\n            \"location\": \"Ave NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"E67203083B08DECF0BCAE998217A46C0\",\n            \"cityName\": \"Au Canada Apparel in Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=01beb7221457b3b0\",\n            \"jobName\": \"Au Canada Apparel Fulfillment, Social Media & Customer Service Associate\",\n            \"companyName\": \"Au Canada Apparel\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694295052817,\n            \"dateOfPosted\": 1663414267405,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8879519,\n                    \"lon\": -119.4960106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Kelowna, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We're a small online business located in Kelowna, BC looking for an easy-going, yet hard-working member to add to small family team!If you're looking for flexible part time hours, keep reading!You'll have the opportunity to work with us and make sure our customers have the best experience with our brand!With this position, you'll ship out our customer's orders over the holiday season. It also includes a customer service role (responding to emails), and could grow into inventory management and getting new designs made for our apparel. (Don't worry, you won't have to design it, you'll just have to facilitate it!).We're also looking for someone to post images and reels on our social media.Requirements & Details:You must have a car to get to and from the storage unitFlexible, part-time hoursPacking is done in our studioPost images & videos on our social mediaIf you're interested we'd love to hear from you! Please respond and let us know if you'd like to work with Au Canada Apparel!www.aucanadaapparel.comJob Types: Part-time, Casual, Seasonal, Internship / Co-opContract length: 3 monthsPart-time hours: 10 per weekSalary: $17.00 per hourSchedule:4 hour shiftDay shiftMonday to FridayNo weekendsAbility to commute/relocate:Kelowna, BC V1V0C6: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Application deadline: 2022-09-24\",\n            \"location\": \"Kelowna, BC\"\n        },\n        {\n            \"id\": \"2C688F663279C7F6F7CC1672DDA7732B\",\n            \"cityName\": \"250 Teakwood Pl, Waterloo, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e062f20136132f38\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Ventigo Publications\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694295052722,\n            \"dateOfPosted\": 1662728952440,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4642578,\n                    \"lon\": -80.5204096\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Waterloo\",\n                \"formattedAddress\": \"Waterloo, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Waterloo, Ontario, Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Company descriptionFounded in 2017, Ventigo Publications specializes in multi-language novel translation and publication. With hundreds of published titles and a large customer base, the business continues to see accelerating growth.Job descriptionWe are seeking for an enthusiastic Customer Service Representative to join our growing team and to push our business forward.Responsibilities1. Respond to customer support tickets2. Resolve customer requests via email in a timely manner3. Monitor and report site reliability issues4. Accelerate customer experience and provide feedback to improve customer satisfactionSkills Requirement1. 1 year of customer service experience2. Excellent team player with a high sense of responsibility3. Experience with communication platforms such as Discord and familiarity with webtools in the ecommerce industry4. Proficiency with MS Word and Excel5. Strong grasp of English and Mandarin Chinese6. Strong communications skills and a quick learner7. Fast typer职位类型：全职, 终身制薪资： 每小时$15.50\",\n            \"location\": \"Waterloo, Ontario, Canada\"\n        },\n        {\n            \"id\": \"EEA9DB42EB487EE825B7BE1A35FA2B2E\",\n            \"cityName\": \"St. Catharines, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bf68bf5301e21a25\",\n            \"jobName\": \"Retail Customer Service & Sales Associate\",\n            \"companyName\": \"Essential Hr\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694294758848,\n            \"dateOfPosted\": 1694239233667,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We envision a world where everyone has access to clean water! By actioning our core values of Respect, Connection, Ambition and Value our team stives to achieve this goal..... one client at time. At Water Superstore (St. Catharines) we value YOU and the skills and experience you have to contribute. We are looking for passionate individuals who value the opportunity to learn about the growing health and water industry, love interacting with people , and have a positive attitude ! JOB DETAILS Primary Responsibilities : Accurately complete point of sale transactions in the retail store Serve clients through our drive thru, which involves lifting 50-pound water bottles Recommend and sell water filtration systems and water accessories Opening and closing the retail store Receiving/Inventory management Merchandising Book service and sales appointments Maintaining a clean retail work space Schedule  Full-time and part-time roles are available. The successful candidate must have flexibility in scheduling and be able to work shifts that accommodate our hours (Monday to Saturday, 10am - 6pm) Compensation  Starting at $16.50/hour. \",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"87DDEB9CEDE9854EB28C3B654D738C3B\",\n            \"cityName\": \"34 Futurity Gate, Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=43ea4fe877203ecf\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Ecotech Windows & Doors\",\n            \"rowSalary\": \"$35,000–$45,000 a year\",\n            \"date\": 1694294627183,\n            \"dateOfPosted\": 1668088665424,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.798329,\n                    \"lon\": -79.5079073\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Concord, Vaughan, ON L4K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Concord, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Ecotech Windows and Doors is seeking an ambitious and detail oriented individual with a drive to provide the highest level of internal and external customer care in this fast paced industryServes customers by providing product and service information and resolving product and service problems.Attracts potential customers by answering product and service questions and suggesting information about other products and services.Maintains customer records by updating account information.Resolves product or service problems by clarifying the customer’s complaint, determining the cause of the problem, selecting and explaining the best solution to solve the problem, expediting correction or adjustment, and following up to ensure resolution.Listen to customer concerns and complaints with the goal of identifying the causes of the problemContact clients as needed to ensure payment of outstanding invoicesQualificationsCustomer support experienceOver-achieving quotaStrong phone contact handling skills and active listeningFamiliar with CRM systems and practicesCustomer orientation and ability to adapt/respond to different types of charactersExcellent communication and presentation skillsAbility to multi-task, prioritize and manage time effectivelyHigh school diploma or equivalent; college degree preferredJob Type: Full-timeSalary: $35,000.00-$45,000.00 per yearBenefits:Casual dressDental careDisability insuranceExtended health careFlexible scheduleLife insuranceVision careSchedule:8 hour shiftSupplemental pay types:Bonus payEducation:Secondary School (preferred)Experience:Customer service: 1 year (required)\",\n            \"location\": \"Concord, ON\"\n        },\n        {\n            \"id\": \"65427E5B6DD07FA6F561ECFEA39ECF38\",\n            \"cityName\": \"Mission, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=62c15242acdea61d\",\n            \"jobName\": \"Order Desk & Customer Service\",\n            \"companyName\": \"Talentnest On Demand\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694294588590,\n            \"dateOfPosted\": 1694215082806,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Order Desk and Customer Service We are seeking an enthusiastic and detail-oriented Administrative Assistant to join our team and assist with our order desk and customer support services. The ideal candidate will have exceptional customer service skills, excellent computer knowledge, and experience with bookkeeping and some accounting. Responsibilities: Answering phone calls, emails and responding to inquiries or complaints in a timely, professional, and courteous manner Taking customer orders via phone, email, or post and processing them accurately and efficiently Handling inquiries and complaints with tact and diplomacy to ensure customer satisfaction Providing alternative suggestions to products that may be out of stock or unsuitable for the customer Promoting sales by highlighting discounts and sales to increase revenue Reaching out to customers via social media, email, and phone to ensure customer satisfaction Keeping accurate records of customer interactions and transactions Supporting the sales team and other departments as needed Requirements: Excellent customer service skills with a customer-focused mindset and exceptional communication skills Strong computer skills, including proficiency with Microsoft and Google Drive functions Experience with bookkeeping and accounting is a plus Proactive and able to take initiative, with excellent organizational skills Comfortable working as part of a team and independently Fluent in English with excellent verbal and written communication skills Able to think quickly and creatively in interactions with customers to provide a positive brand image Education and Training: High school diploma or equivalent Experience with mass-email software programs is preferred If you are passionate about providing exceptional customer service and enjoy working in a dynamic team environment, please apply. While we appreciate all applications, only successful applicants will be contacted. Starting $20 / hour\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"AC8736B390C8A9FEFC88F1718A6D95D9\",\n            \"cityName\": \"2731 Mountain Rd, Moncton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9c48dc4fd19e3ffd\",\n            \"jobName\": \"Customer Service/Cashier Part Time\",\n            \"companyName\": \"Magnetic Hill Irving\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694294372480,\n            \"dateOfPosted\": 1692207174266,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.1175797,\n                    \"lon\": -64.84080349999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Mountain Rd, Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usMagnetic Hill Irving is owned and operated by Power Plus Technology Inc based out of Moncton, NB. Power Plus Technology Inc also ownes and operates Carrefour a Cap-Pele and Crossroads at Hanwell and employs approximately 40 people.We are looking for energetic and responsible individuals to join our team of Customer Service Associates. The successful candidates will be responsible for operating a cash register and dealing with customers on a regular basis. The ideal candidates have experience with retail environments, quick decision-making skills and the ability to work in fast-paced environments.Responsibilities:Provide customer service to each customer quickly and efficiently.Interact with customers in a friendly manner.Answer customers' questions about products and offering suggestions to help them find what they are looking for.Receiving orders, stockingDaily store maintenance and cleaning inside and outside(e.g. sweeping/mopping, garbages, washrooms etc)Full Service gas attendant duties when requiredJob Types: Part-time, PermanentPart-time hours: 20 per weekSalary: From $15.00 per hourBenefits:On-site parkingDay range:HolidaysWeekend availabilityShift:8 hour shiftAfternoon shiftDay shiftEvening shiftMorning shiftWork setting:Convenience storeAbility to commute/relocate:Moncton, NB: reliably commute or plan to relocate before starting work (required)Experience:Retail sales: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Mountain Rd, Moncton, NB\"\n        },\n        {\n            \"id\": \"8BABB2EBE5330658A35873E0A8863ACA\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=948e688ae145cc1c\",\n            \"jobName\": \"Customer Service Sales Representative\",\n            \"companyName\": \"United West Mississauga\",\n            \"rowSalary\": \"$620–$1,050 a week\",\n            \"date\": 1694294370812,\n            \"dateOfPosted\": 1691410529201,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 620.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    620.0\n                ],\n                \"range\": {\n                    \"gte\": 620.0,\n                    \"gt\": null,\n                    \"lte\": 620.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you looking for a supportive, collaborative workplace with great teams and inspiring leaders? You’ve come to the right place. We’re looking for ambitious people who share our values and want to make every day better for people around the world. If this sounds like you, and the career below sounds exciting, we’d like to hear from you. As a Customer Service Sales Representative , you will be the face of our clients. You will interact with customers to bring our clients products and services to life! You will create effective sales opportunities with each customer using the skills provided in our intensive training model. You will establish sales objectives which will contribute towards the overall success of the business. We have relationships with numerous high-profile associations and external businesses; therefore, you can directly impact the Company’s reputation, profitability and image.Key Accountability:Meet sales, service, quality and productivity objectivesResponsible for interacting with new and existing customers and clientsConduct needs analysis and provide advice to customers by effectively communicating the value and benefits of the products and services offered by our clientsProvide a high level of service, build relationships and provide accurate information and the appropriate solutions to new and existing customersRaise issues, concerns and trends to the leadership teamMaintain a high level of product knowledge, operational process and servicesAs our ideal candidate, you make valuable contributions in your ability to communicate effectively with people. You have a high-energy level and a desire to become part of a globally dynamic organization offering long-term career opportunities.Qualifications:Experience in a retail, customer service or sales rolePost-secondary degree or equivalent work/business experienceDemonstrated ability to persuade and negotiate and must possess active listening skillsEffective client record management, with attention to detailAbility to work in a fast-paced environment and manage multiple day-to-day tasksStrong computer skills, and a general knowledge level of the MS Office suite of productsJob Type: Full-timeSalary: $620.00-$1,050.00 per weekFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayWeekends as neededAbility to commute/relocate:Mississauga, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"45C7B369585593F1A0A6233DE4ABD5BB\",\n            \"cityName\": \"975 Wilkinson Ave, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7edcb5f34bf86a27\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Needs/Shell\",\n            \"rowSalary\": \"$13.60 an hour\",\n            \"date\": 1694293136481,\n            \"dateOfPosted\": 1666633379957,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.7146169,\n                    \"lon\": -63.5683191\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Wilkinson Ave, Dartmouth, NS B3B, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full time job is available at Needs/Shell Gas Station & Convenience. **Shifts are available for weekdays and weekends 12pm-8pm or 1pm-9pm**Looking for someone who is able to work Weekends. Some duties include but are not limited to:- Serving and assisting customers with fuel and grocery based transactions- Maintain store cleanliness in efforts to meet and exceed customer expectations- Ensure food safety compliance by maintaining temperature logs- Ensure customer satisfaction by keeping shelves and coolers full of product-Handle and resolve customer issues and complaints- Having knowledge of product and location of product within store to meet customers needs- Ensure legal age requirements for customers purchasing lotto & tobacco productsIdeal candidate would be someone who is punctual and reliable, someone who possesses a natural customer service ability with a friendly attitude and someone who takes pride in their work that shows in terms of store condition. Previous experience in customer service is not needed but is considered an asset. Qualified candidates will be reached out to for an interview.Full time: 30-37.5 hr/weekJob Types: Full-time, PermanentSalary: $13.60 per hourDay range:HolidaysMonday to FridayWeekend availabilitySchedule:8 hour shiftMonday to FridayNight shiftWeekend availabilityShift:8 hour shiftDay shiftEveningsEvening shiftAbility to commute/relocate:Dartmouth, NS B3B 0J4: reliably commute or plan to relocate before starting work (preferred)Experience:Cash handling: 1 year (preferred)gas: 1 year (preferred)\",\n            \"location\": \"Ave Wilkinson, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"3AF82A99E801577187A3E583B58A1689\",\n            \"cityName\": \"855 Industrial Ave Unit 13, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ab8f01fc6c175428\",\n            \"jobName\": \"Call Centre Representative With Golfworks Canada\",\n            \"companyName\": \"Golfworks Canada\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694293028819,\n            \"dateOfPosted\": 1694211477798,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"GolfWorks Canada is hiring for their call centre in Ottawa, at 855 Industrial AvenueThe position is available right away40 hours per week.Typical hours are Monday to Friday 9am-5pmResponsibilities include answering phones, processing customer orders and other customer supportGolf knowledge is requiredCustomer service experience is preferredJob Type: Full-timeSalary: From $17.00 per hourSchedule:8 hour shiftDay shiftMonday to FridayExperience:customer service: 1 year (preferred)Golf: 2 years (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"8BC366372B6866C9AD8B56ADB1883384\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dd7270fc5b52d522\",\n            \"jobName\": \"Customer Service - Vehicle Replacement Specialist\",\n            \"companyName\": \"Solera\",\n            \"rowSalary\": \"$19–$21 an hour\",\n            \"date\": 1694292810515,\n            \"dateOfPosted\": 1694207942801,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The RoleServe as the primary point of contact for insurance clients requesting a vehicle replacement report for a total loss claim.Responsible for handling frontline inbound telephone calls and or electronic inquiries from customers (insurance companies) regarding the vehicle replacement product. The VRS1 agent will be responsible for entering or updating automotive, boat, equipment, and other vehicles total loss replacement reports on behalf of our insurance clients.Our agents make an important contribution to customer satisfaction by providing a prompt, efficient and courteous service.What You Will DoAccurately produce vehicle replacements for regular passenger vehicles; by conducting online research, utilizing our internal resources, and making outbound calls to dealerships.Provides level one support by assisting clients with entering a new request for a vehicle replacement report or update an existing one.Provides level one support by answering questions or guiding clients to understand the content of the report.Accurately assesses the customer's concerns.Asks the client well thought out or detailed questions and carefully listens to the user's response to fully comprehend the need, product issue, and best approach for resolving the problem.Take responsibility for all duties relating to compliance proceduresUse internal knowledgebase to resolve issues. Keeps current on most recent changes and/or upgrades.Communicates issues clearly and effectively to clients; documents all customer interactions consistently, thoroughly, and free of grammatical errors.Documents customer issues clearly and accurately when escalating to Tier 2 support to minimize resolution time for customer.Participates in continuous training programs to improve product knowledge and service skills, as well as learning in an ever-changing environment with different vehicles introduced every year.Deliver an amazing customer experience to clients requesting and updating reports through phone and electronic support.Performs all other duties as assigned.What You Will BringTo perform this job successfully, an individual must be able to perform each essential duty satisfactorily. The requirements listed below are representative of the knowledge, skill, and/or ability required. Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions.High School diploma or GED equivalent required, College diploma or University degree preferred.1-2 years customer service experience. (Required)Bilingual (French/English Required)Sales experience is a plus.Required Skills and AbilitiesMust have an aptitude for math.Analytical and naturally inquisitive with good questioning skills and good attention to detailsDesire to go the extra mile for the customers, and take personal responsibility for resolving issuesAbility to effectively communicate with others at all levels of the Company and the public, both verbally and in writing.Ability to demonstrate a courteous, tactful, and professional approach with employees and external customers and vendors.Ability to accurately complete tasks and projects, within allowable timeframes.Ability to perform special assignments as requested by the management team.Ability to work both independently and as part of a team.Ability to multi-task and switch between tasks seamlessly within a fast-paced environment.Must be able to always maintain confidentiality.Excellent written and oral communication skillsKnowledge and experience with Windows Operating systemsExcellent computer skills (Microsoft office, SharePoint, mobile applications, etc.)Knowledge to work in a dealership environment, auto insurance, or related is a plus.PHYSICAL DEMANDSThe physical demands described here are representative of those that must be met by an employee to successfully perform the essential functions of this job. Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions.Required to sit for extended periods of time.Required to wear a telephone headset to interact with clients over the phone for 7+ hours a day.Required to type for extended periods of time.Required to work with digital displays for 7+ hours a day.WORK ENVIRONMENTThe work environment characteristics described here are representative of those an employee encounters while performing the essential functions of this job. Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions.Work from the office.Flexibility if required to work shifts and or weekends.ACCOUNTABILITYDetailed description of responsibility including subordinates and functional responsibility.This position does not have any subordinates. It is an entry level position, independent contributor.Decisions are escalated to a senior level.Job Type: Full-timePay: $19.00-$21.00 per hourBenefits:Dental careExtended health careLife insurancePaid time offVision careSchedule:8 hour shiftDay shiftMonday to FridayOvertimeWeekends as neededSupplemental pay types:Bonus payExperience:Customer service: 1 year (required)Language:French (required)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"0EC3E6C2E94E0648CEBE38962F43DEC1\",\n            \"cityName\": \"Blue Mountains, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6314087d163acfe0\",\n            \"jobName\": \"Barista/Customer Service *** Saturday & Sunday 7am -2pm*****\",\n            \"companyName\": \"Royal Majesty Espresso Bar Bakery\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694292775863,\n            \"dateOfPosted\": 1694204506635,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Royal Majesty Espresso Bar Bakery - Blue Mountains. $18-$20/per hour~Im much rather hang out in a a cafe~Hello EveryoneIf you are a morning person - WE ARE YOUR PEOPLEIf you love coffee - WE ARE YOUR PEOPLEIf you want to learn how to make Lattes and Cappuccinos - WE ARE YOUR PEOPLEShifts available : Saturday and Sunday 7am-2pm. - GOOD VIBES ONLYWe look forward to meeting everyone !Job Type: Part-timePart-time hours: 15 per weekSalary: $18.00-$20.00 per hourSchedule:Weekends as neededWork Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"A81139F939A9CDD6A3ED3DB46060DC12\",\n            \"cityName\": \"Speedy Cash in North Battleford, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fbf79648cfa2a65d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Speedy Cash\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694292572978,\n            \"dateOfPosted\": 1694239244825,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Canadian-operated, Speedy Cash is a strong leader in the financial services industry. Founded in 1998, Speedy Cash currently operates over twenty branch locations across Canada. We are building a dynamic team of business professionals and can provide the right candidate with significant opportunities for career growth and job satisfaction.If you’re looking for a fun, energized environment where we support each other, as a team, to create a rewarding workplace and deliver amazing customer service, then look no further, Speedy Cash is the place for you!Perks and BenefitsWelcome BonusCompetitive wages, bonuses, and benefitsHands-on and continual training in transferable skillsBirthdays off, annual fun day for each storeIncredible support systemA team environment that makes work satisfying and funRRSP matchingOpportunities for growth. We promote from within!You are a Champion of Change; you will help motivate the team to increase sales, minimize bad debt and adapt to the ever-changing regulatory environment. You have a strong sense of curiosity and have a passion for learning; you are proactive and look for ways to be more efficient in your day-to-day work. You inspire your teammates with your innovative and resourceful way of thinking. Your attention to detail and exceptional organizational skills will ensure that the day-to-day operations of the store run smoothly. You can work independently as you pursue excellence while taking pride in your achievements, supporting company initiatives, and accomplishing the work that needs to be done in the store. An interest in travel would be considered an asset as from time to time support in other stores in the network is needed.Job ResponsibilitiesBuilding customer relationships while providing exceptional customer serviceIdentifying and meeting the customer’s financial needs in order to process loan applicationsCollecting on delinquent accounts in the interest of minimizing bad debtConveying information through in-person, telephone, and email communicationsAiding in loan sales, cheque cashing, and in-store promotionsHandling and balancing daily cash and debit transactionsPerforming all daily operations of the storeRequirementsValid Government Issued Photo IDClean Criminal RecordHigh School Diploma or EquivalentWageSalary commensurate with experienceFor more information about Speedy Cash check out our website at www.speedycash.ca/careersJob Type: Full-timeSalary: From $16.00 per hourBenefits:Dental careExtended health carePaid time offRRSP matchVision careSchedule:Monday to FridayWeekends as neededEducation:Secondary School (preferred)Work Location: In personApplication deadline: 2023-09-30\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"7F9AB219F131C04A5A92F420831DF836\",\n            \"cityName\": \"12015 Main St, Winchester, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5e538498594b89b2\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Winchester Foodland\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694292296066,\n            \"dateOfPosted\": 1692278921655,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.1768527,\n                    \"lon\": -75.28705889999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cornwall\",\n                \"formattedAddress\": \"Main St, North Dundas, ON K0C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Stormont, Dundas and Glengarry United Counties\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cornwall\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We at Winchester Foodland pride ourselves with providing our customers with excellent care and friendly service. The Front End Customer Experience is key to building a strong customer relationship within our community and beyond. Our courteous, efficient and caring Cashiers play such an important role in the success of our store. Full training is provided for this position.***If you have applied for this position in the past please feel free to apply again as we navigate through the hiring process. ***Experience· No previous experience requiredKey Responsibilities· Upholds and complies with company procedures, standards and policies in all situations· Greets customers in a polite and friendly manner· Demonstrates superior customer service in accordance with Company’s programs· Process cash register payments by cash, cheque, credit card, gift card and debit· Wrap and place merchandise in bags / carts· Maintain cleanliness of check stands· Stock various product in check stand areaKnowledge, Skills and Abilities Required· Ability to learn quickly· Ability to work in a fast paced environment· Highly motivated and team oriented· Ability to communicate clearly and concisely in both oral and written form· Possess strong customer service qualities· Works in a safe and responsible manner· Available to work flexible hours· Day, Evening and Weekend availability is a MUSTMust have or be able to get SmartServeJob Type: Part-timeBenefits:On-site parkingStore discountDay range:Monday to FridayWeekend availabilityFlexible Language Requirement:French not requiredShift:Day shiftEvening shiftWork Location: One locationJob Type: Part-timePart-time hours: 15-32 per weekSalary: From $15.50 per hourDay range:Monday to FridayWeekends as neededFlexible Language Requirement:French not requiredShift:Day shiftEvening shiftMorning shiftWork setting:Grocery storeWork Location: In person\",\n            \"location\": \"Main St, Winchester, ON\"\n        },\n        {\n            \"id\": \"68C28E23476755C01ABD0279A4783322\",\n            \"cityName\": \"580 Adelaide St N, London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=64e73716f1eb4a8e\",\n            \"jobName\": \"Customer Service/Food Preparation\",\n            \"companyName\": \"Marshalls Pasta & Bakery\",\n            \"rowSalary\": \"$16.55–$18.00 an hour\",\n            \"date\": 1694292214110,\n            \"dateOfPosted\": 1694223940052,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usMarshalls Pasta & Bakery is a small business operating in London, ON for over 25 years.We are customer-centric, fast-paced catering company and retail store. We specialize in making home made Italian food. We make all types of fresh pasta and sauces on site. We also bake our own bread. We are the leading supplier of school hot lunches in the city. We also catering to many sport teams in London and from out of town.Our work environment includes:Food providedMarshall's Pasta is looking for an experienced individual in the food service sector. We are very customer oriented so we are looking for someone who is friendly and outgoing. This new hire must be fluent in English. Your job description includes, using the cash register, preparing meals, helping to prep food in the kitchen, taking catering orders and kitchen maintenance. Kitchen maintenance includes mopping and dishes. We are looking for someone who can work days from 2:00 pm to 7:00pm and Saturdays from 9 to 5. We are closed Sundays and all Stat holidays.Job Type: Part-timePart-time hours: 24 per weekSalary: $16.55-$18.00 per hourBenefits:Discounted or free foodFlexible scheduleStore discountFlexible Language Requirement:French not requiredSchedule:Every WeekendMonday to FridayWeekends as neededSupplemental pay types:TipsApplication question(s):Are you able to work Saturdays?Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Language:English (preferred)Licence/Certification:Food Handler Certification (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"CF24B256B04B04483F145328226143C1\",\n            \"cityName\": \"2 Robert Speck Pky Ste 620, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=06b210f64287e7f1\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Remitbee Inc\",\n            \"rowSalary\": \"$15.59–$20.00 an hour\",\n            \"date\": 1694292159314,\n            \"dateOfPosted\": 1692327367253,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5977341,\n                    \"lon\": -79.6362388\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Robert Speck Pkwy, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About RemitbeeRemitbee is online money transfer and currency exchange platform. Customers can send money to over 90 countries from Canada using web and mobile devices. We are just at the beginning of our growth and have ambitious plans to bring our service to all the countries on Earth.https://www.remitbee.com/aboutAbout the role:At Remitbee, we value customer care and satisfaction greatly. We are therefore looking for a part time outgoing and enthusiastic individuals for our customer service representative roles. As a bilingual customer service representative, you will be responsible for managing and directing inbound/outbound communication and customer service interaction, with a specific emphasis on the Spanish language.Additional description:Part time position for 6 months with the scope of converting into full time permanent position.Answer inquiries through the intended method of communication graciously and in a customer-oriented mannerUnderstand the needs of customers and provide quotes through phone or email communicationGuide and instruct customers when they are navigating Remitbee platformsEfficiently and effectively follow up with customers, companies and other leads to maintain relationshipsExhibit exceptional negotiation and conflict resolution skills when communicating with irritated customersMaintain detailed and organized documentation of communicated inquiries and conversationsApplicant RequirementsMust be able to communicate in Spanish with at least professional work proficiency (fluent)Ability to commute to work location.Weekend AvailabilityMust hold a High School Diploma2+ years of customer service experience preferredExceptional verbal and written communication skillsAble to effectively manage time and keep organizedAdvanced critical-thinking and problem-solving skillsProficient in required programs and softwaresBenefits package offeredMonthly Uber eats creditExtended health insurance (Drugs, Vision, Dental)Education creditApplyingWe look forward to hearing from you, but please note that due to the volume of applications that we usually receive for our job positions, only those shortlisted for next steps will be contacted.To stay in touch with Remitbee and keep up to date on all open opportunities, follow us on LinkedIn!Tipo de puesto: Medio tiempoSalario: $15,00 - $20,00 la horaPregunta(s) de postulación:Have you submitted the resume in English language ?Are you available to work on Weekends ?Experiencia:customer service: 1 año (Obligatorio)Idioma:Spanish (Obligatorio)Job Type: Full-timeSalary: $15.59-$20.00 per hourBenefits:Dental careSupplemental pay types:Overtime payAbility to commute/relocate:Mississauga, ON L4Z 1H8: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)\",\n            \"location\": \"Robert Speck Parkway East, Mississauga, ON\"\n        },\n        {\n            \"id\": \"8A396AD87878FAF84713F8720BDA54AE\",\n            \"cityName\": \"423 Elizabeth Street, Burlington, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=20dd64468c309f25\",\n            \"jobName\": \"Barista/Customer Service - Fall Availability Required\",\n            \"companyName\": \"Lola Choco Bar\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694292121702,\n            \"dateOfPosted\": 1690501285768,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.3265888,\n                    \"lon\": -79.796796\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burlington\",\n                \"formattedAddress\": \"Elizabeth St, Burlington, ON L7R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burlington\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Lola Choco Bar and Sweet House is located in Village Square in downtown Burlington. We are looking for an enthusiastic, and friendly barista to work on a part time basis (20-30 hours per week; shifts will include day, evening and weekend hours).Skills Required:Candidates must have exceptional customer service skills, and be extremely reliable and responsible.have a positive, outgoing and energetic attitude and love interacting with otherswork well and efficiently in a team environment and have strong communication skillsable to prioritize and multi task jobs on your ownare thorough and detailed orientedhave the ability to work well under pressureavailable to work a flexible schedule Monday through Sunday (including both morning and afternoon/evening shifts)able to maintain a clean and organized work environmentDuties include but not limited to:- Greeting customers with a positive and welcoming demeanor- Preparing and serving hot and cold beverage orders (previous barista and Espresso machine experience is an asset)- Taking and processing orders- Cleaning tasks and maintaining an organized work environmentJob Type: Part-timePart-time hours: 20-30 per weekSalary: From $15.50 per hourBenefits:Casual dressSchedule:Day shiftMonday to FridayMorning shiftWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Burlington, ON L7R 2L8: reliably commute or plan to relocate before starting work (required)Experience:Barista: 1 year (preferred)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Elizabeth St., Burlington, ON\"\n        },\n        {\n            \"id\": \"7DA57691B97E34E031BE2ACC09230928\",\n            \"cityName\": \"Downsview, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d9b79b31ff183c9a\",\n            \"jobName\": \"Customer Service Agent 3 -Downsview - Part Time - Perm - Bilingual (French And English)\",\n            \"companyName\": \"Serco North America\",\n            \"rowSalary\": \"$21.18 an hour\",\n            \"date\": 1694291947543,\n            \"dateOfPosted\": 1690362582393,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7266992,\n                    \"lon\": -79.4820609\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Downsview, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Position Description :  This role has a starting hourly rate of $21.18!  Serco Canada Inc. operates all the DriveTest Centres across Ontario on behalf of the Ministry of Transportation. As a customer service agent with Serco Canada Inc., you will be based out of one of our 56 Ontario DriveTest Centres. If you are a positive and professional team player who enjoys working with the public in a high energy environment, rewarding job opportunities await you at Serco Canada Inc.  Customer service agents are responsible for providing information and assisting members of the public at various stages of the driver’s licensing process. Some of the work includes responding to customer inquiries in person and on the telephone, providing information about licence rules and regulations, verifying driver records, taking applicant photos, scheduling road test appointments, collecting applicable fees, and preparing reports. Customer service agents must have excellent time management and organizational skills and exercise superior judgment skills. We require individuals who can work independently, meet deadlines, and strive to achieve customer satisfaction in all aspects of their work.  Purpose of the Job: Provides information and assistance related to driver examination services. Reviews information, determines test(s) requirements, and conducts/processes transactions and exams inside the DriveTest Centre. Assists in the smooth and efficient administration of examinations, including preparation of test takers entry, invigilating, the distribution of exam materials, and the collection of examinations. Ensures the fair and proper conduct of examinations. Creates a calm, professional, and supportive environment that enables applicants to perform to the best of their abilities. Provides Security Guard Testing (SGT) examination services support. Primary Duties and Responsibilities: Responds to inquiries related to driver licensing, determines applicant status, and provides information regarding test/re-test procedures and regulations relating to all classes of licences. Distributes and verifies application forms for accuracy and completeness. Investigates problems or errors in licence records and initiates corrections. Captures applicant photos, administers vision tests to ensure minimum requirements are met, and provides referrals to vision specialists. Collects applicable fees accurately. Conducts and processes knowledge tests, dispatches road test appointments, provides results, issues temporary driver’s licences, and processes licensing changes. Identifies licence exchange privileges and/or test requirements for driver’s licence applicants from other countries, provinces, and jurisdictions; assesses foreign licence eligibility, translations, and letters of authentication from other countries. Contacts members of the public to communicate information and correct errors. Administers commercial licence renewals, including accepting medical examination reports and criminal record checks. Escalates customer concerns and redirects customers to other government agencies, when required. Qualifications :  To be successful in this role, you must have:  Fluency level in French and English. Valid Ontario class “G” of licence is required. 1-4 years of customer service experience in a service environment is preferred to include, but not required:  Airline Industry Financial Industry Banking Industry Federal and Local Government Services Healthcare Industry Must have and maintain an acceptable driving record. Intermediate-level computer skills in Microsoft Office are required. Touch-typing and data entry. Must be able to perform physical duties of the position, this may include sitting or standing for extended periods of time and entering and existing vehicles up to 30 times per shift. Must pass Criminal Record Check (CPIC); Fingerprint Criminal Record Check. **Employee hours vary based on customer demand and location’s operating hours. **This position may require extended shift hours and possibly Saturday hours (depending on location) during certain periods of the year when Drive Test Centre volume is higher. **This position requires the attendance of a formal training session, which includes classroom instruction with experienced and qualified trainers and on-the-job shadowing at a Drive Test Centre facilitated by a coach. If you are unsuccessful at any stage of the training, your employment will end effective immediately. If you are interested in supporting and working with our Customer Service professionals and a passionate Serco team- then submit your application now for immediate consideration. It only takes a few minutes and could change your career! Company Overview :  Serco Inc. (Serco) is the Americas division of Serco Group, plc. In North America, Serco’s 9,000+ employees strive to make an impact every day across 100+ sites in the areas of Defense, Citizen Services, and Transportation. We help our clients deliver vital services more efficiently while increasing the satisfaction of their end customers. Serco serves every branch of the U.S. military, numerous U.S. Federal civilian agencies, the Intelligence Community, the Canadian government, state, provincial and local governments, and commercial clients. While your place may look a little different depending on your role, we know you will find yours here. Wherever you work and whatever you do, we invite you to discover your place in our world. Serco is a place you can count on and where you can make an impact because every contribution matters.  To review Serco benefits please visit: https://www.serco.com/na/careers/benefits-of-choosing-serco. If you require an accommodation with the application process please email: careers@serco-na.com or call the HR Service Desk at 800-628-6458, option 1. Please note, due to EEOC/OFCCP compliance, Serco is unable to accept resumes by email.  Candidates may be asked to present proof of identify during the selection process. If requested, this will require presentation of a government-issued I.D. (with photo) with name and address that match the information entered on the application. Serco will not take possession of or retain/store the information provided as proof of identity. For more information on how Serco uses your information, please see our Applicant Privacy Policy and Notice.  Serco does not accept unsolicited resumes through or from search firms or staffing agencies without being a contracted approved vendor. All unsolicited resumes will be considered the property of Serco and will not be obligated to pay a placement or contract fee. If you are interested in becoming an approved vendor at Serco, please email Agencies@serco-na.com.  Serco is an equal opportunity employer. We evaluate qualified applicants without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, disability, veteran status, and other legally protected characteristics. \",\n            \"location\": \"Downsview, ON\"\n        },\n        {\n            \"id\": \"E01E76DD5D08C48CE87CA2D78A928121\",\n            \"cityName\": \"1411 Avenue Dollard, Lasalle, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b29466a14d21282e\",\n            \"jobName\": \"Reception/Customer Service\",\n            \"companyName\": \"Salon De Bronzage Suntan\",\n            \"rowSalary\": \"$14.25 an hour\",\n            \"date\": 1694291478865,\n            \"dateOfPosted\": 1670761538414,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4309034,\n                    \"lon\": -73.63370909999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Av Dollard, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service/Receptionfront deskJob Types: Part-time, PermanentPart-time hours: 14 per weekSalary: $14.25 per hourBenefits:Casual dressFlexible scheduleOn-site parkingStore discountSchedule:Day shiftEvery WeekendWeekends onlySupplemental pay types:Commission payAbility to commute/relocate:Lasalle, QC: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Av Dollard, Lasalle, QC\"\n        },\n        {\n            \"id\": \"9F66A76DBBBB354763E70023BD4867CC\",\n            \"cityName\": \"46 Wright Ave, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0b4c72fdcae9107b\",\n            \"jobName\": \"Warehouse Assistant - Customer Service\",\n            \"companyName\": \"Happy Harry's\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694291337870,\n            \"dateOfPosted\": 1669262763200,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.7083211,\n                    \"lon\": -63.5827791\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Wright Ave, Dartmouth, NS B3B, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Description: This position has the primary function of working in the warehouse to complete customer orders to their exact specifications; assist with loading orders; and, installing window inserts; and re-stocking products. This position also has responsibility of obtaining and delivering product to and from the warehouse. This position is also responsible for ensuring that all merchandise and work areas are maintained in a clean and safe manner.DUTIES AND RESPONSIBILITES· Abide by and adhere to all tasks and procedures outlined in the HH Distributing Company Limited Employee Manual and any other distributed documents.· Comply with all health and safety regulations and wearing appropriate personal protective equipment as required.· Report for work as scheduled wearing the appropriate clothing and logoed HH Distributing Company Limited attire as may be required.· Processing door orders by checking and ensuring the dimensions are correct.· Installing window inserts ensuring orders are correct.· Loading product for customers and checking off the product loaded to the sales ticket.· Assisting customers with returns when necessary.· Loading and unloading product from the warehouse to restock inventory as required.· Maintain outside areas and ensure they are neat, tidy and safe always.· Cleaning washrooms when assigned, signing off the schedule and following requested appropriate procedures.· Assisting co-workers with their tasks during slow periods or by sharing product knowledge, etc.· Communicate with other stores/door plant/suppliers as necessary.· Clean up work area daily, ensuring site is always kept tidy and safe.· Perform any other tasks as assigned by supervisors.Tools & EquipmentCompany specified tools for this position include but are not limited to:· Drills· Knife· Hand Saw· Measuring tape· Calculator· Shovel, broom, mop, etc.· Pallet jack· Forklifts· Carts· Ladders· Electrical SawSkills· Completion of High School or equivalent.· Certifications in WHMIS and First Aid would be considered an asset.· Strong technical knowledge in carpentry/construction products and processes; application of products and processes; math skills; occupational health and safety.· Previous experience in sales would be considered an asset.· Ability to communicate clearly and concisely in English both verbally and in writing.· Excellent analytical and problem-solving skills.· Ability to be self-motivated.· Strong organizational skills and must be detail oriented and flexible.· Ability to work as part of a team and be a team player.· Ability to lift 50 to 75 pounds on a repetitive basis.· Ability to provide clean drivers abstract and criminal records background check.Decision MakingThis position makes decisions only within the scope of the job description and/or specific instructions from his supervisors. This position is accountable for the decisions he makes.Inside/Outside RelationshipsThis position deals with customers, co-workers, suppliers on a regular basis and must always be able to maintain a professional and business-like attitude.Position ConditionsThis position works both inside and outside and must monitor and adhere to various safety guidelines. This position must have the flexibility to stand, sit, walk, climb, twist or bend as required and must be able to lift 50 to 75 pounds on a repetitive basis. This position has some exposure to dust, dirt, fumes, heat, cold, noise, and inclement weather. This position requires visual concentration to complete daily tasks. This position requires good hearing to listen for unusual sounds in equipment and site management.FinancialThis position does not have any financial responsibility.Supervisory/ManagementThis position has no supervisory responsibility.Job Type: Full-timeSalary: $17.00-$18.00 per hourBenefits:On-site parkingStore discountSchedule:Monday to FridayWeekend availabilityCOVID-19 considerations:All customers are required to wear a mask while in our warehouseExperience:warehouse: 1 year (preferred)warehouse worker: 1 year (preferred)Expected start date: 2022-11-28\",\n            \"location\": \"Wright Ave, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"190AFCACD1F5CA02B8D36D9B8AFF764F\",\n            \"cityName\": \"London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=96bbdab0413740f7\",\n            \"jobName\": \"Lumber Yard Customer Service\",\n            \"companyName\": \"Copp Building Materials Limited\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694291151071,\n            \"dateOfPosted\": 1659423385018,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9849233,\n                    \"lon\": -81.2452768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Family owned and operated through four generations, Copp’s Buildall has played a prominent role in the city of London’s building industry for over 140 years. We have four locations within London and supply to both contractor and retail customers. We are currently seeking Customer Service Representatives to provide support in our Lambeth Lumber Yard A Yard Associate will be responsible with assisting customers with fast and friendly service and general yard maintenance. Daily tasks include assisting customers throughout their experience in our yard with both knowledge on our products, helping with loading and unloading materials from vehicles, and keeping the yard in pristine shape. RESPONSIBILITIES: Proper stocking of materials Assisting customers with their purchases Responsible for maintaining branch appearance according to branch standards guidelines Ensures machinery maintenance by completing daily checks Contributes to a positive team environment within the branch and throughout the company QUALIFICATIONS: A basic knowledge of building materials Forklift experience General math skills Ability to lift heavy materials / objects Able to work independently and accurately Ability to work outdoors in all weather conditions Customer focused WHY JOIN US? Family owned and operated company with a long standing history in the city Career advancement opportunities Employee discount Dynamic work environment Diverse culture and family values Excellent benefit package Copp’s Buildall is an equal opportunity employer valuing equality and diversity. Job Type: Full-time Salary: $15.50-$16.50 per hour\",\n            \"location\": \"London, ON\"\n        },\n        {\n            \"id\": \"D98F2C2727DCFC8DB2F2BB7832DD04C0\",\n            \"cityName\": \"Cedarbrae Eye Doctors in Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e61fa4aa379cd2d3\",\n            \"jobName\": \"Optometric Assistant Office Advisor And Front Desk Customer Service\",\n            \"companyName\": \"Cedarbrae Eye Doctors\",\n            \"rowSalary\": \"$15–$18 an hour\",\n            \"date\": 1694290853443,\n            \"dateOfPosted\": 1626675462808,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"customer service work with patientsAnswer calls and book appointmentsperform pretests with patients (will train)Answer questions about procedures and productsDo computer billing deal with OHIPother office dutiesReference ID: 11Job Type: Full-timeSalary: $15.00-$18.00 per hourBenefits:On-site parkingSchedule:Monday to FridayEducation:DCS / DEC (required)Work remotely:No\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"C7C4012E506A534DA1D7F83D46D79396\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6342b30256cd438a\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"Batista Properties Inc\",\n            \"rowSalary\": \"$34 an hour\",\n            \"date\": 1694290848726,\n            \"dateOfPosted\": 1686938945551,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 34.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    34.0\n                ],\n                \"range\": {\n                    \"gte\": 34.0,\n                    \"gt\": null,\n                    \"lte\": 34.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 2 years to less than 3 yearsTasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Oversee apprenticeship training Recruit and hire workers and carry out related staffing actions Train or arrange for training Set up machines and equipment Estimate costs and materials Ensure health and safety regulations are followed Recommend personnel actions Requisition or order materials, equipment and supplies Work conditions and physical capabilities Work under pressure Overtime required Personal suitability Excellent oral communication Organized Reliability Team playerWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"68B45FAB869D48286BE6DFD486DCB1E0\",\n            \"cityName\": \"Niagara-on-the-Lake, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3972b687167d5a31\",\n            \"jobName\": \"Inside Phone Sales\",\n            \"companyName\": \"Empowerment Technologies Inc.\",\n            \"rowSalary\": \"$23–$25 an hour\",\n            \"date\": 1694290784988,\n            \"dateOfPosted\": 1692278918669,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2549988,\n                    \"lon\": -79.0772616\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara-on-the-Lake\",\n                \"formattedAddress\": \"Niagara-on-the-Lake, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Niagara-on-the-Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"**This role is in office within our Niagara-on-the-Lake site.**Who We Are:For 20 years, we’ve been leaders in the baby safety (Levana) and DIY security space (Defender), creating ground-breaking consumer electronics that bring peace of mind to millions of people all over the world. Selling directly through our brand websites, Amazon, and our retail partners such as Walmart, Costco, and Home Depot, we are growing fast and are looking for new team members to join us on this journey. For those looking to join a passionate and collaborative team that challenge conventional methods, take risks, and settle for nothing but excellence, you’ve found the right place!Who Are You?You are a fast paced, results driven, and experienced Inside Salesperson with a successful sales track record, you have a high degree of self-motivation and resilience within a sales environment. Using your strong interpersonal skills and entrepreneurial mind set, you strategically use various contact methods to maximize your communication efforts and close sales. This role operates out of our Head Office in Niagara-on-the-Lake.Perks of This Role:Full time, 40 hours per weekScheduled shifts are days, Monday – Friday with weekend availability requiredWage is $23.00-$25.00 per hourImmediately receive 2 weeks vacation (no waiting period)Comprehensive Health Benefits program after 60 daysWork in an office environment (we are NOT a call centre)50% product discount for friends and familyWork directly for the brand owners and not a 3rd partyBe involved in new product testingQualifications:1 year of sales experience with a high focus on sales targets and customer engagementStrong attention to detail and ability to multitaskExcellent organizational, time management and communication skillsFlexible/creative approach to problem solving with the ability to simplify/detangle issues to their core factorsEmotional Intelligence: self-awareness - have a strong desire to develop and improve yourself and know when to seek out expertise; self-regulation - knowing when to push and when to stop; motivation – remain motivated while creating a strong desire to achieve in others; empathy – understand and care about people’s current reality; social skills – understand people, develop trust and help themHigh School Diploma (OSSD)Our Core ValuesExcellence - We never settle for “good enough.Results - The path to success is paved with our dedication.Love - Challenges are no match for our hearts and minds.Learning - Experimentation and curiosity are part of our DNA.Simplicity - We strip away the non-essentials to get to what really matters.Job Types: Full-time, PermanentSalary: $23.00-$25.00 per hourBenefits:Casual dressDental careExtended health careOn-site parkingPaid time offStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededCOVID-19 considerations:COVID-19 vaccination is required. We have put measures in place, such as daily office sanitization, socially distant desk spaces, and providing masks.Ability to commute/relocate:Niagara-on-the-Lake, ON: reliably commute or plan to relocate before starting work (required)Experience:phone sales: 1 year (required)B2B sales: 1 year (required)Work Location: In person\",\n            \"location\": \"Niagara-on-the-Lake, ON\"\n        },\n        {\n            \"id\": \"3669C67731359298E4C96E04F3E202C7\",\n            \"cityName\": \"8488 Main St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2b189c90b59ef011\",\n            \"jobName\": \"Customer Service Representative - Order Fulfillment\",\n            \"companyName\": \"Coast Appliances\",\n            \"rowSalary\": \"$17–$20 an hour\",\n            \"date\": 1694290737656,\n            \"dateOfPosted\": 1693421108447,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2457108,\n                    \"lon\": -123.101237\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Main St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Main St, Vancouver, BC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Coast Appliances is a great place to work. We are an ambitious organization, investing in technology, process, and most importantly, dynamic PEOPLE! With an energized team that stretches across Canada, we are invested in growing our team members as we grow our business.Our Order Fulfillment Specialists are responsible for processing online orders, communicating with customers and supporting the sales cycle of the selling staff . This position will be responsible to order review invoices for completeness, order product, secure final payment, schedule deliveries and be the main contact with customers regarding delivery and post-delivery follow-up, ensuring customer satisfaction and reducing delivery issues/errors.ResponsibilitiesTo improve Customer Service while increasing Profitability by reducing company losses (non-deliveries, shipping costs, unnecessary clearance product, etc.) for Retail invoices:Answer incoming customer inquiriesCollaborate with key stakeholders and teams to stay updated on new products, services, and policiesRecord and modify customer information within the databaseEngage with clients in a friendly and professional manner while actively listening to their concernsOffer support and solutions to customers in accordance with the company's customer service policiesOther duties as requestedApply now and grow with us!We thank all applicants for their time. Pease note, only applicants under consideration will be contacted.Coast is an Equal Employment Opportunity Employer. We celebrate diversity and are committed to creating an inclusive environment.Employment decisions are based on merit and business needs, and not on race, color, creed, age, sex, gender, sexual orientation, national origin, religion, marital status, medical condition, physical or mental disability, military service, pregnancy, childbirth and related medical conditions or any other classification protected by federal, provincial and local laws and ordinances. Reasonable accommodation is available for qualified individuals with disabilities, upon request. This Equal Employment Opportunity policy applies to all practices.Location: 8488 Main Street, Vancouver, British Columbia V5X 3L8Job Type: Full-timeSalary: $17.00-$20.00 per hour\",\n            \"location\": \"Main St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"4952318BE5EF55FDAE6C59479CD3505A\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=405250e6ffe7a817\",\n            \"jobName\": \"Sales And Customer Service Associate - Remote (In Calgary)\",\n            \"companyName\": \"7x Powered Inc\",\n            \"rowSalary\": \"$35,000–$55,000 a year\",\n            \"date\": 1694290693887,\n            \"dateOfPosted\": 1671603032590,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Sales and Customer Service Associate – Work from Home / Fully Remote (Calgary) Location: Work from home (Must live in Calgary) Do you love the idea of being part of a team that will forever change the way Canadians interact with our favourite brands? Do you enjoy working in an entrepreneurial environment, where quick decision-making enables meaningful and measurable progress? Are you always striving to be a top performer in anything you put your mind to? Does the prospect of joining a disruptive (but proven) business, with tons of growth potential, excite you? We've already hired 200+ Calgarians, and we're just getting started! Grow with us! Actually build a career at 7x, and gain access to our world-class compensation package including: 100% Health and Dental Coverage package, on day 1 Total cash compensation of 20-40% higher than other similar roles in Calgary Predictable scheduling and office hours Disrupt an industry together, with our proven recipe! If you answered yes to the questions above, then we’d love to hear from you! About 7x 7x was founded on the basic premise that most contact centers suck, resulting in painful client interactions with some of the world’s most recognized consumer brands. We set out to reinvent the industry, shifting focus towards co-creating delightful experiences to drive brand affinity, loyalty and conversion, for our client brands. We’ve now proven, with one of Canada’s largest Telcos, that this approach drives exponential results! Our unique engagement model involves a more customized and collaborative approach to designing, building, and operating omnichannel contact centers for the world’s coolest customer-centric brands. We help our clients redefine industries – from top to bottom and inside out. Delivering a world-class experience requires that we look at the world in a whole new way. Using kick-ass technology, and insights gleaned from rich data, we create exceptional, fully customized, experiences that go well beyond what anyone thought possible. Key Responsibilities Demonstrated ability to effectively implement a consultative and solutions-based sales and/or methodology. Thrive in a fast-paced environment and meet established sales targets. Multi-task in various systems to ensure the customers transaction is completely quickly and accurately. Demonstrate ability to positively influence customers (propose options/solutions). Act as an ambassador for our clients and provide their customers with a superior experience. Required qualifications Only four real requirements: You're an Ace at navigating software systems: Exceptional multitasking skills with productivity tools such as MS Office and Microsoft Windows. You know how to be real: You have the patience to listen attentively, solve creatively and create strong human connections. You're an upbeat, self-motivated, tenacious team player who is a fast learner, and has the ability to work independently. You have stronger-than-average English language skills (verbal and written communication) that translate well across communication channels (i.e. Phone, Email, and SMS). A couple “nice to have” items: Telephone sales or service experience is nice, but not required. Telecommunications industry experience is nice, but not required. Job Types: Full-time, Permanent Salary: $35,000 - $55,000 per year Benefits: Casual dress Dental care Extended health care Paid time off Vision care Schedule: Monday to Friday\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"B54CF47CA083F2D58E970BCD096FD15D\",\n            \"cityName\": \"1801 Harwood Avenue North, Ajax, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=48a32f62a614188b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Insurance Brokerage (Ajax)\",\n            \"rowSalary\": \"$40,000–$45,000 a year\",\n            \"date\": 1694290629831,\n            \"dateOfPosted\": 1690310199978,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8794663,\n                    \"lon\": -79.0269648\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ajax\",\n                \"formattedAddress\": \"Harwood Ave N, Ajax, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ajax\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position OverviewOur Successful Brokerage is seeking a qualified professional to join our team for the role of Customer Service Representative. We seek an energetic professional interested in helping our business grow through value-based conversations and remarkable customer experience. If you are a motivated self starter who thrives in a fast-paced environment, then this is your opportunity for a rewarding career with excellent income and growth potential.ResponsibilitiesEstablish customer relationships and follow up with customers, as needed. Such as payments, pending requests or follow up on emails.Provide prompt, accurate, and friendly customer service. Preparing new business applications, ordering abstracts & scanning.RequirementsExcellent communication skills - written, verbal and listeningSelf-motivated. Prior customer service experience (2yrs). Insurance Experience preferred.Experience in a variety of computer applicationsJob Types: Full-time, PermanentSalary: $40,000.00-$45,000.00 per yearSchedule:8 hour shiftSupplemental pay types:Commission payCOVID-19 considerations:We have complied and have taken extra precautions with regards to Covid-19 pandemic. And currently operating by appointment only for all our customers.Work Location: In person\",\n            \"location\": \"Harwood Ave N, Ajax, ON\"\n        },\n        {\n            \"id\": \"9FED08FB61713376AC389B4624C19DDE\",\n            \"cityName\": \"114 Sydenham St, Flesherton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ac6a298f221d9151\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Country Style & Mr. Sub\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694290579254,\n            \"dateOfPosted\": 1692315096353,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2648914,\n                    \"lon\": -80.5533015\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Flesherton\",\n                \"formattedAddress\": \"Sydenham St, Flesherton, ON N0C 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Flesherton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"“ LOCAL CANDIDATES ONLY ”Customer Service Representative$16.50/HRNo experience necessary..All Training will be providedApplicants should be:-Mature-Responsible-Punctual-A Team PlayerApply ASAP online or drop resume in person at the store to be hired!Job Types: Full-time, Part-time, Permanent, CasualSalary: From $16.50 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftEvening shiftHolidaysMonday to FridayMorning shiftWeekends as neededWork Location: In person\",\n            \"location\": \"Sydenham St, Flesherton, ON\"\n        },\n        {\n            \"id\": \"1220D36AD1EC6E86AEF94C70696E7520\",\n            \"cityName\": \"245 West Hunt Club Road, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=800cef8f638b7991\",\n            \"jobName\": \"Customer Service Representative: Adoptions (Part Time)\",\n            \"companyName\": \"Ottawa Humane Society\",\n            \"rowSalary\": \"$20.32–$24.72 an hour\",\n            \"date\": 1694290571033,\n            \"dateOfPosted\": 1693408859624,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.3228772,\n                    \"lon\": -75.7673026\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"W Hunt Club Rd, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"West Hunt Club Rd, Ottawa, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Ottawa Humane Society is a non-profit, community-based organization and a registered charity. Since 1888, we have been the leading organization providing a safe haven for sick, injured and homeless animals in Ottawa. For more information on the Ottawa Humane Society, visit us at: http://www.ottawahumane.ca.The Customer Service Representative (CSR): Adoptions is responsible for assisting the public through the process of adopting Ottawa Humane Society (OHS) animals.Job Details:Position: CSR: Adoptions Hourly wage range: $20.32/hr - $24.72/hrWork schedule: given belowStart date: ASAPThis is a part time position with a 4 week repeating schedule with 34.5 hours biweekly:Week 1 - Friday 3:30pm to 8:30pmWeek 2 - Thursday & Friday 3:30pm to 8:30pm , Saturday & Sunday 9am to 6 pm,Week 3 - Saturday & Sunday 11am to 5 pmWeek 4 - Tuesday 11am to 8:30 pm, Saturday & Sunday 9 am to 6 pmWhat would you do?Provide consultation and support for OHS clients seeking to adopt an animalProvide information to OHS clients on good animal care practicesMonitor the health and safety of animals available for adoptionProvide adoption follow-up servicesSupport operations in the Buddy and Belle retail boutique by processing sales transactions, maintaining and organizing stock, and promoting OHS goods for saleMaintain the Adoption Centre and Buddy and Belle boutique area, facilities, and equipmentEnsure appropriate fees are collected and accounted forEnter data and maintain data integrity in ChameleonSupport the activities of coworkers, volunteers, students and work placements and provide orientation and training as requiredBe thoroughly familiar with pertinent legislation, regulations, guidelines, OHS policies, procedures, collective agreement, and good animal care practicesProduce and maintain accurate reports, records, and filesParticipate in supervision, evaluation, training and other meetings as requiredParticipate in the identification and evaluation of OHS program goals and objectivesParticipate in professional development opportunitiesRepresent the OHS in a professional mannerParticipate in public relations and promotional activities as requiredWill be required to assume some of the responsibilities of CSR: IntakeMay be required to assume some of the responsibilities of the Supervisor: Customer Service or Coordinator: PALQualifications:Secondary school diploma or equivalentMinimum of one year experience in customer serviceAnimal handling experience preferredProficiency in Microsoft Office SuiteProfessional working proficiency in spoken and written English is requiredEssential Duties and Working Conditions:Employee may be required to work evening, holiday and weekend shiftsEmployment is conditional upon the ability to provide services in a safe manner, including, but not limited to, lifts and transfers of large animals and interaction with potentially aggressive animalsEmployee will be required to wear a uniform designated by the employerEmployment is conditional upon maintaining confidentiality of OHS informationEmployment is conditional upon the ability to work around all species of animals safelyThe Ottawa Humane Society is an equal opportunity employer. The OHS offers accommodation for applicants with disabilities in its recruitment processes. If you are contacted by the OHS regarding a job opportunity, please advise prior to the interview if you require accommodation. We thank all applicants for applying, however, only candidates selected for interviews will be contacted.Job Type: Part-timeSalary: $20.32-$24.72 per hourEducation:Secondary School (required)Experience:Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"West Hunt Club Rd, Ottawa, ON\"\n        },\n        {\n            \"id\": \"57D94456A1C982E4FBA7F885E0778CED\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3f6aec862b2b65f6\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Good To Great Solutions\",\n            \"rowSalary\": \"$38,000–$43,000 a year\",\n            \"date\": 1694290540149,\n            \"dateOfPosted\": 1693410238083,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 38000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    38000.0\n                ],\n                \"range\": {\n                    \"gte\": 38000.0,\n                    \"gt\": null,\n                    \"lte\": 38000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Good to Great Solutions, We strive for excellence and are the leaders in consulting and customer acquisition across North York. We are looking for an entry-level Customer Service Representative who will play a valuable support role by providing a superior level of service to all customers to help them achieve their individual goals. As an entry-level Customer Service Representative, you'll be responsible for delivering effective direct communication with clients and consumers. You will execute this by using knowledge of our client's history, products, and services.Our mission is to create a distinctive culture and career development for our Customer Service Representative team. With the passion for driving excellence, never allowing our team to hit the ceiling but only the ability to surpass expectations is why we have become so successful. Collaborative success is our main priority for our Customer Service Representatives because culture and teamwork are at the heart of our work. We offer the ability to grow from entry-level on and the opportunity to advance your professional skill set.Customer Service Representative Responsibilities:Effectively solve customer inquiries and find the best solution possible to fir the customer's needsGenerate long-term customer satisfaction by building genuine relationshipsCross-selling and up-selling by assisting customers in finding a product that satisfies their needsThe ability to be successful independently as well as collaborating with internal Customer Service teams, clients, and partners on market strategyCollect accurate and updated customer information in our internal databaseIdentify market trends and key opportunities for innovation to enhance the customer experienceImpact client experience positively with knowledgeable information about our clientele.Advocate for customers by identifying trends in issues and suggesting improvements to processes, policies, and productsRequirements:High school diploma or equivalentExquisite communication and people skillsCreative thinking skills, good problem-solving skills, ability to think outside the boxExceptional self-management skillsExcellent planning and organizational skills with demonstrated multi-tasking abilitiesGoal-driven with the ability to work under pressureTeam playerPerks for you!Holiday closuresDiverse and open environment where your ideas are encouragedOpportunity for career advancement into a team lead or supervisor positionsBonuses and incentives will be provided for our top performersTeam building activities with a diverse cultureJob Type: Full-timeSalary: $38,000.00-$43,000.00 per yearSchedule:Monday to FridayWeekend availabilityApplication question(s):Do you have availability to commute to M2H 2N8 on a daily basis?Work Location: In person\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"400E84D8837DF7E7B4D47600B55BB9C4\",\n            \"cityName\": \"1600 32 St, Vernon, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2b1edf484dc3e945\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Jim’s Place\",\n            \"rowSalary\": \"$17–$22 an hour\",\n            \"date\": 1694289635446,\n            \"dateOfPosted\": 1694289635264,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.2670137,\n                    \"lon\": -119.2720107\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vernon\",\n                \"formattedAddress\": \"Vernon, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"North Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vernon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Jim's Place Pizza is a popular local pizzeria.We are searching for a new person to join our awesome family. The staff culture is great and we would love to have you be a part of it.Your position would be at the front helping customers and taking phone and online orders. Strong customer service skills are a must. It’s a fun & fast paced environment and we have an incredible staff.Hours are flexible, we have people that are both part time and full time.Job Types: Full-time, Part-timePart-time hours: 10-40 per weekSalary: $17.00-$22.00 per hourFlexible Language Requirement:French not requiredSupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Vernon, BC\"\n        },\n        {\n            \"id\": \"0622E10E16444B963B42B229584E1E74\",\n            \"cityName\": \"Abbotsford, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9331b08b625e24bd\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Meridian Farm Market\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694289447768,\n            \"dateOfPosted\": 1694289447549,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.0504377,\n                    \"lon\": -122.3044697\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Abbotsford\",\n                \"formattedAddress\": \"Abbotsford, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Fraser Valley\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Abbotsford\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service ACE (Ambassador of Customer Experience) Join our growing family business! Enjoy a 30% Employee Discount, Benefits, and Flexible Hours. Meridian ACEs give people the best possible experience through serving them well and personally connecting with friendly hospitality. You'll LOVE this job if you: Have the ability to connect with people in ways that help them feel welcomed, valued, and appreciated Enjoy being there for others, serving, and providing assistance. No previous experience required. This role is for you if you have: Strong interpersonal skills Ability to learn quickly Knowledge of the retail environment Effective communication skills Ability to work as part of a team Ability to lift up to 50 lbs continuously. Ability to work on your feet all day, bending, leaning, crouching, and walking. Ability to work for extended periods of time, in a refrigerated environment (cooler or freezer) Deli or kitchen experience is a plus. Weekday, daytime availability is a must! Job Type: Full & Part-time Positions available Schedule: 20-35 hours per week 4-8-hour shifts Day shifts and/or closing shifts Wage/Salary: starting at $16.75 per hour (dependent upon experience) Bi-annual wage increases Advancement opportunities Benefits: 30% Employee Discount on in-store purchases Health & Dental care Paid Sick Time Flexible Schedule _Meridian is an equal opportunity employer of all qualified individuals. Our workplace is welcoming to people of all backgrounds, orientations, and diversities, and we encourage all to apply._ Job Types: Full-time, Part-time, Permanent Part-time hours: 15 - 35 per week Salary: From $16.75 per hour Benefits: Extended health care On-site parking Store discount Flexible Language Requirement: French not required Schedule: 4 hour shift 8 hour shift Day shift Evening shift Monday to Friday Weekend availability Supplemental pay types: Overtime pay Ability to commute/relocate: Abbotsford, BC V2S 5A1: reliably commute or plan to relocate before starting work (required) Education: Secondary School (preferred) Experience: Customer service: 1 year (preferred) Shift availability: Day Shift (preferred) Work Location: In person\",\n            \"location\": \"Abbotsford, BC\"\n        },\n        {\n            \"id\": \"E4609080A808861B203E48CD77E038BB\",\n            \"cityName\": \"39 Martin Rd, Bowmanville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a51d85d7824f9f06\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Circle K\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694289185705,\n            \"dateOfPosted\": 1692207173086,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.9023127,\n                    \"lon\": -78.6982075\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bowmanville\",\n                \"formattedAddress\": \"Martin Rd, Bowmanville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Martin Rd, Bowmanville, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"You'll be working as a cashier. We are looking for 1 person to cover the night shift.- Monday to Thursday 11 pm - 7 amWe are looking for people aged 19 or older since you'll be dealing with cigarettes, smoking products, lottery, etc.If you are interested please bring in your resume we would be happy to have you on our team.Job Types: Full-time, PermanentSalary: $15.50 per hourDay range:HolidaysMonday to FridayShift:8 hour shiftNight shiftCOVID-19 considerations:All employees and customers must wear masks at all times while in the store.Application question(s):Do you have a form of transportation to the job?Work Location: In person\",\n            \"location\": \"Martin Rd, Bowmanville, ON\"\n        },\n        {\n            \"id\": \"5816F5CB4FF354DD78261A9AFF784885\",\n            \"cityName\": \"7667 County Rd 56, Utopia, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=da21dc1bb26e45db\",\n            \"jobName\": \"General Labour/Customer Service\",\n            \"companyName\": \"Country Meat Cuts\",\n            \"rowSalary\": \"$15.50–$19.00 an hour\",\n            \"date\": 1694289123219,\n            \"dateOfPosted\": 1692297909513,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.3378348,\n                    \"lon\": -79.81922279999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Utopia\",\n                \"formattedAddress\": \"8807 Simcoe County Rd 56, Utopia, ON L0M 1T0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Utopia\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"PLEASE READ the description of the job carefully, and ensure that ALL of the aspects are a fit for you, BEFORE you apply. We are an extremely busy place. Hard work and a high quality of work are essential to us.* Lifting 40 lbs many times each day.* Ability to multitask.* Standing for long periods and moving quickly in a fast paced environment.* Comfortable spending a lot of time in the freezer organizing and re-stocking.* Reliability and consistency is crucial to this job.* Able to work 8 ½ hour shifts, 5 days a week.* Comfortable conversing with customers and providing excellent customer service.* Do you cook? Have a good knowledge of meat? This is essential when serving our customers.* Willingness to participate in every aspect of running the shop, including cleaning, packaging, customer service, and so much more.* Food handling certificate is an asset.We are a small family run butcher store that has been in business for 50 years. We are a close knit group. Providing a happy, healthy work environment is extremely important to us. When our employees work hard for us, we take good care of them. Please note that we are located rurally, in Utopia and there is no public transportation. Hours and days of work will be various shifts Tuesdays - Saturdays, 8am - 6pm. Working every Saturday is guaranteed.The salary for this position will depend on experience, and ability to check all of the boxes that we are looking for. Competitive wages will be offered to the right candidate. Experience in the industry is an asset, but we are willing to train, if you are willing to work hard.If this position sounds like a good match to you, please email your resume to: brandyrafeekcmc@gmail.com. Please do not apply any other way.Country Meat Cuts7667 County Rd. 56 Utopia, ON L0M 1T0705-424-2447 - countrymeatcuts.comJob Type: Full-timeSalary: $15.50-$19.00 per hourAbility to commute/relocate:Utopia, ON L0M 1T0: reliably commute or plan to relocate before starting work (required)Application question(s):This job will require lifting 40+ lbs many, many times a day. Is this something that you are comfortable with?This job will require spending several hours each day inside a heavy duty freezer, re-stocking and re-organizing. Is this something that you are comfortable with?Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"County Rd, Utopia, ON\"\n        },\n        {\n            \"id\": \"3CA9AEB9EE8C7950CCCB90DCFE6C3E69\",\n            \"cityName\": \"252 Main St, Kentville, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=65127225c31d81f1\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Needs Convenience\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694288952139,\n            \"dateOfPosted\": 1692278995430,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.07587820000001,\n                    \"lon\": -64.4911615\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kentville\",\n                \"formattedAddress\": \"Main St, Kentville, NS B4N, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Kings County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kentville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate will be responsible to carry out full range of duties:Provide customer service to meet customer needs and process customer transactionsMaintain an accurate cash drawer while following company policies and proceduresStocking products and maintaining products displaysEnsure everything is clean and tidy in store and back storage roomOther duties as requiredRequirements :Ability to lift or move 5-25 lbsStanding long hoursAbility to work independently in fast paced environmentFlexibility to work a variety of hours on weekdays and weekendOpen availability - Seven days in weekPresently in CanadaJob Type: Full-timeSalary: $14.50 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftEvening shiftEvery WeekendMonday to FridayMorning shiftWeekends as neededWork Location: In person\",\n            \"location\": \"B- Main St, Kentville, NS\"\n        },\n        {\n            \"id\": \"9D572A1F9D545580FDD5DA2A21E6846B\",\n            \"cityName\": \"852 Ontario St, Stratford, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f5ef6a272d37e5be\",\n            \"jobName\": \"Customer Service Representative Meal Advisor\",\n            \"companyName\": \"M&M Food Market Stratford\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694287714818,\n            \"dateOfPosted\": 1694287714629,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.3711286,\n                    \"lon\": -80.96233149999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Stratford\",\n                \"formattedAddress\": \"Ontario St, Stratford, ON N5A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Perth County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Stratford\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title– Customer Service RepresentativeCompany– M&M Food Market StratfordLocation– Stratford, ONSalary– $15.50 per hourJob type– Part-timeJob DescriptionM&M Food Market is a food retailer unlike any other; we don’t just sell products, we offer meal solutions and a unique shopping experience that helps to make customer’s everyday lives a little easier. We’ve been helping customers make delicious meals and entertain with ease for over 40 years!Our Customer Service Associates – known as Meal Advisors in our stores – are truly the face of M&M Food Market. If you have passion for food, can deliver exceptional customer service, and are willing to learn about our incredible lineup of wholesome and delicious products, we'd love to hear from you! We offer competitive wages, a welcoming, \\\"small team\\\" environment and flexible hours that allow you to balance your personal and professional needs. To learn more about M&M Food Market, we invite you to visit www.mmfoodmarket.comTHE POSITIONReporting to the Store Manager, the Customer Service Associate/Meal Advisor exhibits positive energy, provides knowledgeable service, and ensures a welcoming environment is presented to customers at all times. They are responsible for learning about products and promotions, receiving and organizing inventory, preparing product for customer sampling and light cleaning duties within the store.THE PERSONIs a people-person and can create a friendly, professional rapport with everyone they meet.Takes a genuine interest in customers and creating a delightful in-store experience, always taking into consideration the brand promise to help customers.Is hard-working and has a positive, can-do attitude towards working as part of the store team.Knows about and enjoys eating and preparing food! Can speak intelligently about food and meal preparation.Understands the challenges that time-starved, busy consumers face and can provide great meal and entertaining ideas/advice.Can operate a Point of Sale system and use Windows-based computer programs.Can meet the physical demands of the job, including lifting/carrying boxes weighing up to 40 lbs, standing for extended periods of time, and working within a freezer environment.We thank all applicants for their interest in this opportunity, however only those selected for an interview will be contacted.Job Type: Part-time 14 - 20 hours per week ( evenings and weekends)Salary: $15.50 /hourApplicant Qualifications– High School, we provide trainingHires Needed: 1 hireApply method : Drop resume at the store 852 Ontario St.Work RemotelyNoJob Types: Part-time, PermanentPart-time hours: 14-20 per weekSalary: $15.50 per hourBenefits:Store discountSchedule:Monday to FridayWeekendsWork Location: In person\",\n            \"location\": \"Ontario St, Stratford, ON\"\n        },\n        {\n            \"id\": \"562E969426AB4B77E22401504021E97E\",\n            \"cityName\": \"970 Nelson Street, Oshawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9942f156b1553aa3\",\n            \"jobName\": \"Customer Service Representative - Automotive\",\n            \"companyName\": \"Fix Auto\",\n            \"rowSalary\": \"$20–$25 an hour\",\n            \"date\": 1694287692299,\n            \"dateOfPosted\": 1692207248013,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.875179,\n                    \"lon\": -78.83734799999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oshawa\",\n                \"formattedAddress\": \"Nelson St, Oshawa, ON L1H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oshawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Fix Auto is looking for a Customer Service Representative!If you are a people person and are looking to evolve in a fast-paced work environment, then this could be your ticket to a great career. As a Customer Service Representative, you will act as brand ambassador and provides positive brand experience to all customers.A day in the Life of a Customer Service Representative at Fix AutoEffectively manage front office operations to ensure efficient organization and support of the sales functionProvide service to customers by reviewing the services offered and cross-sell different programs by explaining the advantage of our multiple service offerings.Collaboration with production manager and sales managers to ensure vehicles are on track for timely and flawless deliveryCommunicate and interact with clients throughout the different technologies such as text messages, emails, online videocall, etc.As required, assign the work order to technicians.Our ideal candidate is someone with:Extensive experience in Customer Service.Experience working in an administration or data entry role preferredComputer literateStrong work ethic, quality oriented and a positive team attitudeWhy join Fix Auto ?You will join a dynamic and super motivatedteam in a fast-paced work environment. Fix Auto is part of the Fix Network, one of the world’s largest automotive aftermarket services providers. Celebrating more than 28 years of excellence, each of our over 900 Fix Auto Centre is owned and operated locally offering a wealth of opportunity for personal growth and development. Throughout your journey with us, you will sharpen your skills.If you want to be part of the fastest growing collision repair brands in North America, Apply now!Location: 970 Nelson Street, Oshawa, Ontario L1H 8L6Job Type: Full-timeSalary: $20.00-$25.00 per hourWork Location: In person\",\n            \"location\": \"Nelson Street, Oshawa, ON\"\n        },\n        {\n            \"id\": \"474DC389240C89679F2E734CFB669BFB\",\n            \"cityName\": \"2 Conception Bay Highway, Conception Bay, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bc7ddcd1fb8a2b42\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Marshall`s Cornerstop\",\n            \"rowSalary\": \"From $14 an hour\",\n            \"date\": 1694287379323,\n            \"dateOfPosted\": 1676745498800,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.5083178,\n                    \"lon\": -52.9940605\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Conception Bay South\",\n                \"formattedAddress\": \"Conception Bay South, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 1\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Conception Bay South, NL\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"General cashier duties including serving customers, answering calls and stocking shelves. Must have customer service experience!Job Types: Part-time, PermanentPart-time hours: 30 per weekSalary: From $14.00 per hourBenefits:Dental careOn-site parkingVision careDay range:HolidaysMonday to FridayWeekend availabilityFlexible Language Requirement:French not requiredShift:8 hour shiftDay shiftNight shiftWork setting:Convenience storeAbility to commute/relocate:South River, NL: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In personExpected start date: 2023-02-22\",\n            \"location\": \"Conception Bay South, NL\"\n        },\n        {\n            \"id\": \"62095A72976A21C24BE94A8434C31515\",\n            \"cityName\": \"Penticton, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=61704d53feffe4f0\",\n            \"jobName\": \"Customer Service Representative - Financial Services\",\n            \"companyName\": \"Speedy Cash Canada\",\n            \"rowSalary\": \"$18.75 an hour\",\n            \"date\": 1694287362888,\n            \"dateOfPosted\": 1693422585780,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.4991381,\n                    \"lon\": -119.5937077\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Penticton\",\n                \"formattedAddress\": \"Penticton, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Okanagan-Similkameen\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Penticton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsHealth benefits Dental plan Health care plan Paramedical services coverage Vision care benefits Financial benefits BonusWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Penticton, BC\"\n        },\n        {\n            \"id\": \"1BDF1372F2633A826F65D0876F75AD62\",\n            \"cityName\": \"39 King St E, Cobourg, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c8c94ebc67d8b46a\",\n            \"jobName\": \"Customer Service/Cashier\",\n            \"companyName\": \"The Market & Smør\",\n            \"rowSalary\": \"$15.50–$18.00 an hour\",\n            \"date\": 1694287334305,\n            \"dateOfPosted\": 1692199251522,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.9639213,\n                    \"lon\": -78.1483111\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cobourg\",\n                \"formattedAddress\": \"King St E, Cobourg, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Northumberland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cobourg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position title: Market CashierReports to: Front of House ManagerBrief Company SummaryWelcome, we are so happy to have you here!The Market & Smør is Cobourg’s downtown fresh market. We are a leader in customer experience and exceptional, quality foods and produce.The Market puts customer experience and exceptional foods at the heart of our brand. We operate in a zero food-waste capacity. We have proven that people can shop in a beautiful space with the best foods and that employees can work in a professional, career-driven atmosphere while being challenged and doing what they love. Opening in 2019 and serving hundreds of customers since, we are looking for someone to help us continue succeeding in what we do best.What a Customer Cashier doesAs the Customer Service Cashier for The Market & Smør, you’ll have an impact on hundreds of people in your community each week. Your goal is to make people feel better than when they came in as you help them purchase what will nourish them, their families, and their friends. You will use food to connect to people and you will be an integral part of a 7 department company that works in unison to provide the most exceptional services to all of our guests. Your success will have a direct impact on our customers and community.Working with The Market & Smør, you are provided with a host of benefits. These include full benefits for full-time employees, a supportive atmosphere that strives to reach goals and succeed as a team, multiple departments to work in, respect and value for open communication and learning opportunities that will enhance your career. Other bonuses include on-site parking, casual dress, store discount and more.To be considered for this role, here are the skills that we are looking for:At least one year in a similar role with similar responsibilitiesYou must be an excellent communicator and quick thinking, someone who understands the experience of a shopper and their connection to food and serviceYou must be able to understand the impact that food has on peopleYou must be able to cash people out properly and quickly and balance tils at the end of the nightYou must understand the importance of thorough product knowledgeCore Job ResponsibilitiesAs a Market & Smør Customer Service Cashier, you’ll be on your feet, meeting the needs of our guests and ensuring that they are being rung through and going home with the best quality foods. You will be responsible for:Provides a positive customer experience with fair, friendly, and courteous service.Memorizes top 40 PLUs and uses them properlyRegisters sales on a cash register by scanning items, itemizing and totaling customers’ purchases.Resolves customer issues and answers questions.Order Fresh FlowersProcesses return transactions.Follows through on Opening and Closing List with efficiency and completelyEnsures tags are in good shape and prices are correct.Works with other departments to ensure proper sale prices are communicated on a daily basis.Itemizes and totals purchases by recording prices, departments, taxable and nontaxable items; and operating a cash register.Thinks quickly on the spot to fix problemsCommunicates clearly with Inventory Manager about prices, scanned items and inventory changesDiscounts purchases by redeeming coupons.Collects payments from customers and makes change for cash.Verifies credit acceptance by reviewing the debit machine before the customer leaves.Balances the cash drawer by counting cash at opening and closing.Provides pricing information by answering questions.Maintains checkout operations by following policies and procedures and reporting needed changes.Maintains a safe and clean working environment by complying with procedures, rules, and regulations.Contributes to team effort by accomplishing related results as needed.Has a thorough understanding of fresh produce and what to do with it.Memorizes The Welcome and walks new customers through The Market with it.Utilizes First In, First Out (FIFO) systems.Stocks items efficiently and effectively minimizing wasteTakes pride in product knowledge, community partners that we work with and can communicate this with customers effectively.QualificationsQualifications include:Attention to detailExcellent communication skillsQuick thinkingAbility to work with minimal functional directionAbility to work quickly and efficientlyWorking conditionsThis is a retail environment. There are many hours standing on your feet while being customer-facing.There are many hours with the public coming in and out of the retail with many different interactions.Physical requirementsThe physical requirements of a Market Cashier include:Regularly required to walk or stand;Regularly lift and/or move up to 23kg (50lbs.);Will be required to perform tasks involving firm grasping;Occasionally be required to bend, twist or squat.Will be involved in frequent repetitive hand actions.Will be required to reach above shoulder height and below waist level.We look forward to hearing from you!Job Types: Full-time, Part-timePart-time hours: 28 per weekSalary: $15.50-$18.00 per hourBenefits:Dental careOn-site parkingStore discountVision careDay range:Monday to FridayWeekends as neededFlexible Language Requirement:French not requiredShift:8 hour shiftDay shiftWork setting:Grocery storeSpecialty storeAbility to commute/relocate:Cobourg, ON K9A 1K6: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"King St E, Cobourg, ON\"\n        },\n        {\n            \"id\": \"E0A68C1E751166F8B5F525F98D364CC0\",\n            \"cityName\": \"8069 River Way, Delta, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=07a26a645d6ad382\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Acumen Logistics Ltd\",\n            \"rowSalary\": \"$20–$21 an hour\",\n            \"date\": 1694287323040,\n            \"dateOfPosted\": 1693421121621,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.147112,\n                    \"lon\": -122.98955\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Delta\",\n                \"formattedAddress\": \"River Way, Delta, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"River Way, Delta, BC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Acumen Logistics is one of the respected names in the logistics and supply chain industry. We are a one-stop solution for Transportation, Warehousing and Fulfillment services. We have a very diverse customer portfolio, which makes us a unique service provider servicing all industry types!We are looking for a motivated, reliable, and experienced CSR to join our team! We are looking for someone who can work with transporters or carriers, customers, and third-party logistics companies. The candidate will communicate with both internal and external stakeholders, handles day-to-day pick-ups, deliveries, follows up until the delivery is done and monitors other daily operations.Responsibilities· Communicate with customers via phone, email and chat· Provide knowledgeable answers to questions about product, pricing and availability· Work with internal departments to meet customer's needs· Data entry in various platformsQualifications· High school diploma, secondary education level or equivalent· Legally entitled to work in Canada· At least 2 - 3 years' of relevant work experience - Sales force· Excellent phone etiquette and excellent verbal, written, and interpersonal skills· Ability to multi-task, organize, and prioritize work· Ability to use Microsoft Office and Outlook· Punctuality to work (Working hours 8.00 am to 4.00, unless notified otherwise)Job Type: Full-timeSalary: $20.00-$21.00 per hourSchedule:8 hour shiftAbility to commute/relocate:Delta, BC: reliably commute or plan to relocate before starting work (required)Experience:logistics: 1 year (preferred)Work Location: In personApplication deadline: 2023-09-10Expected start date: 2023-09-15\",\n            \"location\": \"River Way, Delta, BC\"\n        },\n        {\n            \"id\": \"7ED124DA8AF68EF45705ACE83F80689B\",\n            \"cityName\": \"5 Northtown Way, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8f6b221506007449\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Monga Fired Chicken\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694287245054,\n            \"dateOfPosted\": 1686876726290,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto, ON Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for more great people to join our teams in North York Toronto!Location:5 Northtown way Unit16&17, M2N7L4-Motivated and passionate individuals-Detail-oriented and attentive-Fast learner and be able to work under fast-paced environment that demands accuracy, speed and professionalism with every order-Quick learner-Co-operation and teamwork-Good time management-Hourly pay rateJob Types: Part-timeJob Type: Part-timePart-time hours: 20 per weekSalary: From $15.50 per hourBenefits:On-site parkingStore discountFlexible Language Requirement:French not requiredExperience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"6EF7F43984B270521191EDC4EB7739E8\",\n            \"cityName\": \"Manitoba\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fba5773d7dc89d40\",\n            \"jobName\": \"Full-Time Remote Customer Service Representative (Manitoba)\",\n            \"companyName\": \"Mci Careers\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694287125200,\n            \"dateOfPosted\": 1665853900987,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.7608608,\n                    \"lon\": -98.8138762\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Manitoba, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" LOCATION: Remote Work-at-Home JOB TYPE: Full-Time PAY TYPES: Hourly + Bonus SALARY: $14.50 / hour BENEFITS & PERKS: REMOTE REPRESENTATIVE: Work-From-Home, Paid Training, Paid Time Off, Medical, Dental, Vision, Life Insurance, Retirement, Flexible Schedules, Company Laptop, Daily Contests, Prizes, Casual Dress Code, Regular Raises APPLICATION DETAILS: No Resume Required, Phone Interview POSITION OVERVIEW:  FULL-TIME REMOTE CUSTOMER SERVICE REPRESENTATIVE (MANITOBA) We are looking for full-time customer service representatives to support inbound customer service, help desk, and back-office processing representatives for commercial and public sector support positions. In this role, you will handle inbound calls, troubleshoot basic technical issues, build strong relationships with customers while professionally representing some of the most recognizable brands in the world.  Schedules vary by site and project; however, we can usually find something that works for everyone. This is a wonderful opportunity for you to start your career with our growing team, and with our industry-leading training, you are sure to grow. We offer many advancement opportunities, including Supervisor, Trainer, Talent Acquisition, and Operations Management.  To be considered for this position, you must complete a full application on our company careers page, including screening questions and a brief pre-employment test. -:  POSITION RESPONSIBILITIES:  WHAT DOES A WORK AT HOME CONTACT CENTER REPRESENTATIVE DO? This position supports customer service, technical support, and customer sales interactions. This role requires you to interact with hundreds of customers each week across the country to resolve support issues, sell new products and services, and ensure best in class customer experience. In addition to being the best in the business when it comes to customer interactions, you will need to be confident, fully engaged, a team player, and dedicated to bringing a positive and enthusiastic outlook to work each day.  Our entry-level Contact Center Representatives are responsible for the following tasks: Listen to customers, understand their needs, and resolve customer issues Utilize systems and technology to complete account management tasks Recognize sales opportunity and apply sales skills to upgrade Explain and position the products and processes with customers Appropriately escalate customer dissatisfaction with managerial team Ensure first call resolution through problems solving and effective call handling CANDIDATE QUALIFICATIONS:  WONDER IF YOU ARE A GOOD FIT? MCI provides all new employees with world-class training, so all positive, driven, and confident applicants are encouraged to apply. Ideal candidates for this position are highly motivated, energetic, and dedicated.Qualifications Must be 18 years of age or older High school diploma or equivalent Excellent organizational, written, and oral communication skills The ability to type swiftly and accurately (20+ words a minute) Basic knowledge of Microsoft Office Suite (Excel, PowerPoint, Word, Outlook) Basic understanding of Windows operating system Highly reliable with the ability to maintain regular attendance and punctuality The ability to evaluate, troubleshoot, and follow-up on customer issues An aptitude for conflict resolution, problem solving and negotiation Must be customer service oriented (empathetic, responsive, patient, and conscientious) Ability to multi-task, stay focused and self manage Strong team orientation and customer focus The ability to thrive in a fast-paced environment where change and ambiguity prevalent Excellent interpersonal skills and the ability to build relationships with your team and customers CONDITIONS OF EMPLOYMENT: Must be authorized to work in their country of residence (The United States or Canada) Must be willing to submit up to a LEVEL II background and/or security investigation with a fingerprint. Job offers are contingent on background/security investigation results COMPENSATION DETAILS:  WANT AN EMPLOYER THAT VALUES YOUR CONTRIBUTION? We believe that hard work should pay off, so we make sure that our compensation and total rewards are competitive. Standard starting compensation is commensurate with experience. Regular reviews and raises are awarded based on tenure and performance, so our employees make more each year. Employees earn paid time off as well as paid holidays and paid training opportunities. Regular daily, weekly and monthly incentives are part of the overall compensation our team members enjoy and include monetary incentive and prizes such as computers, tablets, phones, TV’s, trips, tickets, and even cars. In addition to our standard group benefits offering for full-time employees following 90-days of employment, all employees are eligible to opt for our MEC medical plan after only 30-days of employment. Benefits options and plans vary slightly by location. JUST A FEW OF THE BENEFITS Medical, Dental, and Vision Coverage Options Paid Time-Off Advancement Opportunity Fun, Engaging Work Environment Casual Dress Code Cash and Prize Contests PHYSICAL REQUIREMENTS:  This job operates in a professional office environment. While performing the duties of this job, the employee will be largely sedentary and will be required to sit/stand for long periods while using a computer and telephone headset. The employee will be regularly required to operate a computer and other office equipment, including a phone, copier, and printer. The employee may occasionally be required to move about the office to accomplish tasks; reach in any direction; raise or lower objects, move objects from place to place, hold onto objects, and move or exert force up to forty (40) pounds.  REASONABLE ACCOMMODATION:  Consistent with the Americans with Disabilities Act (ADA) it is the policy of MCI and affiliates to provide reasonable accommodation when requested by a qualified applicant or employee with a disability unless such accommodation would cause undue hardship. The policy regarding requests for reasonable accommodation applies to all aspects of employment. If reasonable accommodation is needed, please contact Kate Murph, Vice President of Human Resources, kate.murph@mci.world.  DIVERSITY AND EQUALITY:  At MCI and its subsidiaries, we embrace differences and believe diversity is a benefit to our employees, our company, our customers, and our community. All aspects of employment at MCI are based solely on a person's merit and qualifications. MCI maintains a work environment free from discrimination, one where employees are treated with dignity and respect. All employees share in the responsibility for fulfilling MCI's commitment to a diverse and equal opportunity work environment. MCI does not discriminate against any employee or applicant on the basis of age, ancestry, color, family or medical care leave, gender identity or expression, genetic information, marital status, medical condition, national origin, physical or mental disability, political affiliation, protected veteran status, race, religion, sex (including pregnancy), sexual orientation, or any other characteristic protected by applicable laws, regulations, and ordinances. MCI will consider for employment qualified applicants with criminal histories in a manner consistent with local and federal requirements. MCI will not tolerate discrimination or harassment based on any of these characteristics. We adhere to these principles in all aspects of employment, including recruitment, hiring, training, compensation, promotion, benefits, social and recreational programs, and discipline. In addition, it is the policy of MCI to provide reasonable accommodation to qualified employees who have protected disabilities to the extent required by applicable laws, regulations, and ordinances where an employee works. ABOUT MCI (PARENT COMPANY):  In 2019 Marlowe Companies Inc. (MCI) was named by Inc. Magazine as Iowa’s Fastest Growing Company in the State of Iowa and was named the 452nd Fastest Growing Privately Company in the USA, making the coveted top 500 for the first time. MCI’s subsidiaries had previously made Inc. Magazine's List of Fastest-Growing Companies 15 times respectively. MCI is headquartered in Iowa City, IA, and has nine customer contact management centers, IT services, and business process outsourcing service delivery facilities in Iowa, Georgia, Florida, Massachusetts, New Hampshire, Nova Scotia, and South Dakota.  Driving modernization through digitalization, MCI ensures clients do more for less. MCI is the holding company for a diverse lineup of tech-enabled business services operating companies. MCI organically grows, acquires and operates companies that have a synergistic products and services portfolios, including but not limited to Automated Contact Center Solutions (ACCS), customer contact management, IT Services (IT Schedule 70), and Temporary and Administrative Professional Staffing (TAPS Schedule 736), Business Process Management (BPM), Business Process Outsourcing (BPO), Claims Processing, Collections, Customer Experience Provider (CXP), Customer Service, Digital Experience Provider (DXP), Account Receivables Management (ARM), Application Software Development, Managed Services, and Technology Services, to mid-market, Federal & enterprise partners.  MCI now employs 2,500+ talented individuals with 150+ diverse North American client partners across the following MCI brands: GravisApps, Mass Markets, MCI Federal Services (MFS), The Sydney Call Center, OnBrand24, and Valor Intelligent Processing (VIP).  MCI provides products and services under the following NAICS Codes: 511210 Software Publishers, 518210 Data Processing, Hosting, and Related Services, 519190 All Other Information Services, 524291 Claims Adjusting, 524292 Third Party Administration of Insurance and Pension Funds, 541511 Custom Computer Programming Services, 541512 Computer Systems Design Services, 541519 Other Computer Related Services, 541519 Information Technology, and Value Added Resellers, 541611 Administrative Management and General Management Consulting Services, 541613 Marketing Consulting Services, 541690 Other Scientific and Technical Consulting Services, 541990 All Other Professional, Scientific, and Technical Services, 561110 Office Administrative Services, 561320 Temporary Help Services, 561330 Professional Employer Organizations, 561421 Telephone Answering Services, 561422 Telemarketing Bureaus and Other Contact Centers, 561431 Private Mail Centers, 561440 Collection Agencies, 561499 All Other Business Support Services, 561990 All Other Support Services, 611430 Professional and Management Development Training.  DISCLAIMER:  The purpose of the above job description is to provide potential candidates with a general overview of the role. It's not an all-inclusive list of the duties, responsibilities, skills, and qualifications required for the job. You may be asked by your supervisors or managers to perform other duties. You will be evaluated in part based upon your performance of the tasks listed in this job description. The employer has the right to revise this job description at any time. This job description is not a contract for employment, and either you or the employer may terminate employment at any time, for any reason. REGARDING COVID-19:  As an employer supporting critical Federal, State, Provincial, and Commercial clients, we have taken steps to ensure that we remain operational while taking every precaution possible to prevent the spread of COVID-19 and keep our employees safe. Measures include social distancing for those working on-site, frequent deep cleaning and disinfecting of workstations and common areas, daily contactless temperature checks for those essential employees working on-site, travel policies limiting travel and mandatory quarantine, reporting and quarantine processes and policies for those exposed, and requesting masks to be worn when on-site employees are not at their workstation.REGARDING MASKS To help protect our candidates and employees, we are REQUESTING that all on-site candidates wear a mask to interviews and training. In locations where state or local government has mandated the use of masks, we will abide by the mandate, and REQUIRE masks be worn when on-location. For more information on MCI’s response to COVID-19 please visit www.mci.world/covid-19.\",\n            \"location\": \"Manitoba\"\n        },\n        {\n            \"id\": \"CAC7EDD49355EFBFCB23BA7169789A69\",\n            \"cityName\": \"BLENZ falsecreek in Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4772fca28007a97d\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Blenz Falsecreek\",\n            \"rowSalary\": \"$15.20–$16.00 an hour\",\n            \"date\": 1694287072006,\n            \"dateOfPosted\": 1622794285777,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"LOOKING FOR HARDWORKING, MULTITASKING BARISTAS.HOURS DAILY 6AM - 6PM.EXCELLENT COMMUNICATION SKILLS ARE A MUST.E- MAIL RESUME OR DROP BY.Part-time hours: 20-40 per weekJob Types: Full-time, Part-time, PermanentSalary: $15.20-$16.00 per hourBenefits:Discounted or free foodFlexible scheduleStore discountSchedule:Day shiftHolidaysMonday to FridayNight shiftWeekendsWork remotely:No\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"91A5A166E33344969E4C72D76E7DCC9C\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0d4d3ec7c678c00e\",\n            \"jobName\": \"Call Centre Advisor\",\n            \"companyName\": \"Banque Laurentienne\",\n            \"rowSalary\": \"From $21.22 an hour\",\n            \"date\": 1694285714543,\n            \"dateOfPosted\": 1693421107230,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Montreal  Call centre Full Time  26392  30 March 2023  Laurentian Bank. Seeing beyond numbers Building a better and different financial institution Financial Benefits Working Environment Commuting and Travelling Food and Drinks Nice to have Financial BenefitsPension planGroup InsuranceStock purchase programMortgage, Line of Credit, Personal Loan, ...at low interest ratesIncentive compensationSeeing beyond numbers.TM At Laurentian Bank, we believe we can change banking for the better. Founded in Montreal in 1846, Laurentian Bank helps families, businesses and communities thrive. Today, we have over 3, 000 employees working together as One Team, to provide a broad range of financial services and advice-based solutions for customers across Canada and the United States. We drive results by placing our customers first, making the better choice, acting courageously, and believing everyone belongs.  This role sits within Laurentian Bank.  When you wake up in the morning, you'll be excited to start the day because you and team are empowered to make a difference for a client.  This position is ideal for anyone looking to start their career in the banking industry! Responsibilities You will support our customers in their daily transactional needs. You will also work in collaboration with the Consultants, Personal Services working in branch. You would support your colleagues in their advisory and business development roles in order to provide clients with the opportunity to improve their overall financial health. As such, your mandate will be to serve customers calling their customer contact center and meet their needs. Working Hours: 37.5 / week teleworking. You should be available Monday to Friday between 7am and 9pm QualificationsSix months to one year of customer service and sales experienceExperience in a call center, an assetAny other combination of training and experience deemed relevantTalented in communication and interpersonal skillsGood knowledge of MS Office (Word, Excel, Outlook)Ability to work simultaneously with multiple software and IT tools while communicating effectively with the clientTeam spirit, sense of organization, courtesy, empathy and excellent customer serviceRequired Qualification - Professional working proficiency in French and English languages required as position involves frequent written and oral communication on complex matters with internal and external parties in both languagesKnowledge of another language an assetWhat Laurentian Bank offersHourly rate starting at $21.22 with eligibility for a bonusCurrently 100% teleworkingSocial benefits (health, dental and life insurance, retirement plan, vacations and floating holidays, free teleconsultation appointments)Opportunity to join a program of share purchasesPreferential rates on our banking services (reduction on the rate of your mortgage loan, reduction on the rate in effect for your Laurentian Bank Visa card, your banking transactions at reduced prices ... and more)Are you interested in the challenge? Please submit your application today!Inclusion and Accessibility At Laurentian Bank, we believe everyone belongs. We are committed to fostering an inclusive work environment that reflects the diversity of our customers and our communities and where everyone feels like they belong and can thrive. To this end, we encourage applications from individuals from equity-deserving groups, including Indigenous persons, racialized and persons with disabilities, marginalized genders and the 2SLGBTQIA+ community. We strive to offer a flexible and accessible work experience that is inclusive of everyone. If at any time you need an accommodation, please let us know. PIPEDAWe may collect, use or disclose your personal information for the purpose of establishing an employment relationship with you. #LI-Remote  #LI-MLP \",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"747BAE9FBF082A001FEF6CDA161F2EB8\",\n            \"cityName\": \"100 13571 Verdun Place, Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=156159faa71facd4\",\n            \"jobName\": \"Customer Service/Front Counter\",\n            \"companyName\": \"Fred Holmes Fuel Injection\",\n            \"rowSalary\": \"From $22 an hour\",\n            \"date\": 1694285371420,\n            \"dateOfPosted\": 1692228065640,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal, QC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service RepresentativeStart at 8am and end at 5pm, 2 coffee breaks and 1 lunch break. Need to have strong English skills and be able to fluently communicate. Must be able to lift boxes and parts weighing 60 pounds from time to time. Training will be provided. Looking for someone to work long-term in our company.Responsibilities:- Provide exceptional customer service and support to clients- Answer incoming calls and respond to customer inquiries- Assist customers with product information, pricing, and order status- Resolve customer complaints or issues in a professional and timely manner- Process orders, returns, and exchanges accurately- Maintain customer records and update information as needed- Collaborate with other team members to ensure customer satisfaction- Conduct outbound calls to follow up with customers or provide additional informationExperience:- Previous experience in a customer service role preferred- Excellent communication skills, both verbal and written- Strong problem-solving abilities and attention to detail- Ability to multitask and prioritize tasks effectively- Proficient in using computer systems and software applications- Knowledge of CRM software is a plusJoin our team as a Customer Service Representative and be part of a dynamic and supportive work environment. We offer competitive compensation, opportunities for growth, and a positive company culture. Apply today to start your career in customer service!Job Types: Full-time, PermanentSalary: From $22.00 per hourBenefits:Casual dressCompany eventsDental careOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payApplication question(s):Are you willing to work at our facility for long term?Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Licence/Certification:Forklift Licence (preferred)Shift availability:Day Shift (required)Ability to Commute:Richmond, BC (required)Ability to Relocate:Richmond, BC: Relocate before starting work (preferred)Work Location: In personExpected start date: 2023-08-21\",\n            \"location\": \"Montréal, QC\"\n        },\n    ],\n    \"count\": 2546\n}"}],"_postman_id":"0911659c-95d5-4c6f-a6d9-b4d2c05d11db"},{"name":"Paged List of Jobs","event":[{"listen":"test","script":{"id":"1e63626b-ef4e-418e-8e7d-889e39998078","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()).to.have.property('data');","pm.expect(pm.response.json()).to.have.property('count');","","//  data","pm.expect(pm.response.json()['data'][0]).to.have.property('id');","pm.expect(pm.response.json()['data'][0]).to.have.property('cityName');","pm.expect(pm.response.json()['data'][0]).to.have.property('jobUrl');","pm.expect(pm.response.json()['data'][0]).to.have.property('jobName');","pm.expect(pm.response.json()['data'][0]).to.have.property('companyName');","pm.expect(pm.response.json()['data'][0]).to.have.property('rowSalary');","pm.expect(pm.response.json()['data'][0]).to.have.property('date');","pm.expect(pm.response.json()['data'][0]).to.have.property('dateOfPosted');","pm.expect(pm.response.json()['data'][0]).to.have.property('loc');","","// loc","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('geo');","pm.expect(pm.response.json()['data'][0]['loc']['geo']).to.have.property('lat');","pm.expect(pm.response.json()['data'][0]['loc']['geo']).to.have.property('lon');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('country');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('locality');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('formattedAddress');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('mostlyMatchedLocation');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('country_code');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('state');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('state_code');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('postalTown');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('county');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('cbsa');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('allocated');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('location');","","// location","pm.expect(pm.response.json()['data'][0]['loc']['location']).to.have.property('name');","pm.expect(pm.response.json()['data'][0]['loc']['location']).to.have.property('type');","","pm.expect(pm.response.json()['data'][0]).to.have.property('salaryOriginal');","","// salary original","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('type');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('currency');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('period');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('salaryFrom');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('salaryTo');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('salaries');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('range');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']['range']).to.have.property('gte');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']['range']).to.have.property('gt');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']['range']).to.have.property('lte');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']['range']).to.have.property('lt');","pm.expect(pm.response.json()['data'][0]).to.have.property('description');","pm.expect(pm.response.json()['data'][0]).to.have.property('location');","});"],"type":"text/javascript"}}],"id":"b81f8c43-99ba-4e58-baa0-50b33f8eda0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"CA\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"20000\",\n                \"10000000\"\n            ],\n            \"parameterType\": \"range\",\n            \"parameterKey\": \"jobSalary\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n        {\n            \"parameterValue\": [\n                \"phone sales\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"call center\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"call centre\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"telephone sales\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"customer service\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}"},"url":"//demandData/listData/:page","description":"<p>This endpoint is an extension of the previous <a href=\"#list-of-jobs\">List of Jobs</a> endpoint. This endpoint returns the exact same information, divided into a maximum of 100 pages. Each page contains a maximum of 100 results; enter a whole number value 1-100 at the end of the path to return the 100 results associated with that page. </p>\n<p>This endpoint has 2 primary use cases. Firstly, if your visualization environment supports pages, you can make 100 individual requests (page 1-100) so your records are already broken up into pages of 100 results. Alternatively, you can choose a random page 1-100 to take a smaller sample of the total population for personalized research.</p>\n<p>Here is a description of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to use to create one.</p>\n<p><strong>Claro will show a maximum of 10k job postings per /listData/ query. Add a whole number value 1-100 in place of :page to see the 100 job postings on that page.</strong> </p>\n<p>Below is a sample query that will return telemarketing job postings in Canada:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"CA\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"50000\",\n                \"10000000\"\n            ],\n            \"parameterType\": \"range\",\n            \"parameterKey\": \"jobSalary\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n        {\n            \"parameterValue\": [\n                \"phone sales\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"call center\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"call centre\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"telephone sales\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"customer service\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["demandData","listData",":page"],"host":["/"],"query":[],"variable":[{"id":"39e05774-b1f2-41c3-9395-799d8a1e5644","description":{"content":"<p>Page number [min: 1, max: 100] (Required)</p>\n","type":"text/plain"},"type":"string","value":"1","key":"page"}]}},"response":[{"id":"fd0acdd7-0acf-4f9b-a9bd-ee531004e377","name":"Telemarketing Jobs Canada (page 1)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"CA\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"20000\",\n                \"10000000\"\n            ],\n            \"parameterType\": \"range\",\n            \"parameterKey\": \"jobSalary\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n        {\n            \"parameterValue\": [\n                \"phone sales\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"call center\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"call centre\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"telephone sales\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"customer service\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}"},"url":{"raw":"//demandData/listData/:page","host":["/"],"path":["demandData","listData",":page"],"variable":[{"key":"page","value":"1","description":"Page number (Required)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 21 May 2020 12:06:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"596e2bb96eb3ffdc-VNO"},{"key":"Content-Encoding","value":"br"},{"key":"cf-request-id","value":"02d8b9a7e40000ffdcc38c3200000001"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"9FF035E31C8171819269CF32F24E1B3F\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=82f248fc951641aa\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Applied Medical\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694548693829,\n            \"dateOfPosted\": 1688898891657,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" _________________________________________________________________________________:  Applied Medical is a new generation medical device company with a proven business model and commitment to innovation fueled by rapid business growth and expansion. Our company has been developing and manufacturing advanced surgical technologies for over 35 years and has earned a strong reputation for excellence in the healthcare field. Our unique business model, combined with our dedication to delivering the highest quality products, enables team members to contribute in a larger capacity than is possible in typical positions. Position Description:  As a Customer Service Representative, you will be responsible for working within the framework of a team and performing the following activities:  Deliver exceptional customer service by consistently providing high-quality assistance, resolving customer inquiries, and ensuring their satisfaction throughout the interaction Execute order processing tasks including accurately entering customer orders, comprehending Customer Service department procedures, and conducting inventory checks for efficient and smooth operations Handle customer communication through various channels such as phone and email, promptly addressing their concerns, and maintaining a record of interactions for future reference Keep customers informed about their orders by providing order confirmations and timely updates on the status of their requests Collaborate with both external customers and internal departments like Credit, Sales Operations, and Shipping to effectively resolve customer issues and streamline processes Support additional tasks and projects as required, demonstrating flexibility and adaptability in contributing to team objectives Adhere to company policies and safety regulations, ensuring full understanding and compliance for a safe and productive work environment Position Requirements:  This position requires the following skills and attributes:  Bachelor’s degree in a related field Demonstrated proficiency in customer service, with at least one year of experience in a call center setting, preferably within a manufacturing environment Proficiency in using Microsoft Excel and Outlook Preferred:  The following skills and attributes are preferred:  Experience with SAP software Minimum of one year of experience in a manufacturing environment call center setting Benefits:  The base compensation range for this role is $18 - $25 / hour CAD for the position in Mississauga, Ontario, Canada. Actual compensation packages are based on several factors that are unique to each candidate, including but not limited to skill set, depth of experience, certifications, and specific work location. The range displayed reflects the minimum and maximum target for new hire salaries in Mississauga, Ontario, Canada based on the date of this job posting. Your recruiter can share more about the specific salary range compensation package during your hiring process.  Please understand that the compensation range may be modified in the future. Each amount of pay is considered to be wages or compensation once such amount is earned and determinable. The amount and availability of any bonus, commission, benefit or any other form of compensation may be modified at the Company’s sole discretion, consistent with the law.  The total compensation package for this position may also include [bonuses and/or other applicable incentive compensation plans].  Our total reward package also includes the following:  Training and mentorship with ongoing learning and development courses Benefits Allowance for supplemental health insurance coverage, in the absence of a group plan or similar benefits Generous vacation accrual and paid holiday schedule Equal Opportunity Employer  Applied Medical is an Equal Opportunity Employer. All qualified applicants will receive consideration for employment without regard to age, ancestry, color, disability (mental and physical), exercising the right to family care and medical leave, gender, gender expression, gender identity, genetic information, marital status, medical condition, military or veteran status, national origin, political affiliation, race, religious creed, sex (including pregnancy, childbirth, breastfeeding and related medical conditions), or sexual orientation, or any other status protected by federal, state or local laws in the locations where Applied Medical operates. \",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"282E75157AFB05A15DD0CC2D7D0F977A\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3d8bf283d90258f2\",\n            \"jobName\": \"Customer Service Manager - Automobiles\",\n            \"companyName\": \"Carzone Motors Ltd\",\n            \"rowSalary\": \"$32.50 an hour\",\n            \"date\": 1694548660417,\n            \"dateOfPosted\": 1688059795365,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 33.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    33.0\n                ],\n                \"range\": {\n                    \"gte\": 33.0,\n                    \"gt\": null,\n                    \"lte\": 33.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Manage staff and assign duties Study market research and trends to determine consumer demand, potential sales volumes and effect of competitors' operations on sales Determine merchandise and services to be sold Implement price and credits policies Locate, select and procure merchandise for resale Develop and implement marketing strategies Plan budgets and monitor revenues and expenses Determine staffing requirements Resolve problems that arise, such as customer complaints and supply shortages Plan, organize, direct, control and evaluate daily operations Recruit, hire and supervise staff and/or volunteers Supervision 3-4 people 5-10 people Work conditions and physical capabilities Fast-paced environment Work under pressure Attention to detail Combination of sitting, standing, walking Personal suitability Hardworking Positive attitude Time management Client focus Efficient interpersonal skills Excellent oral communicationWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"E1B815E2898C21D060318E4C59FD6EB4\",\n            \"cityName\": \"Petawawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d08f7e899375acb8\",\n            \"jobName\": \"Customer Service Representative - Personal Lines\",\n            \"companyName\": \"Mcdougall Insurance And Financial\",\n            \"rowSalary\": \"$40,000–$48,000 a year\",\n            \"date\": 1694548362173,\n            \"dateOfPosted\": 1694548361981,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.8982631,\n                    \"lon\": -77.2828772\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Petawawa\",\n                \"formattedAddress\": \"Petawawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Renfrew County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Petawawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"_McDougall Insurance is now the largest insurance brokerage in Eastern Ontario. We represent over 50 insurance companies, giving us the ability to offer optimal selection and competitive rates. Here at McDougall we have created an Employee Promise. The leadership of McDougall Insurance promises to foster an environment of support, empowerment and inclusion, while investing in our employee's future with McDougall Insurance. In turn, our employees promise to treat others with dignity and respect and strive to approach each day with a positive attitude and willingness to learn. Together, we promise to deliver Legendary Service to our customers and apply the McDougall principals of Trust, Honesty and Integrity with a goal of building strong lasting relationships. The result is our staff is engaged, accountable and professional._ _At McDougall Insurance and Financial we offer our employees; a comprehensive benefits package, McDougall pension plan, staff appreciation days, social events, a branch-wide yearend bonus, a competitive salary and paid vacation time starting at 3 weeks._ Our growing team is looking for a Customer Service Representative in Personal Lines to join our team in Petawawa, Ontario! Are you looking to start a new career? Do you have strong customer service skills? If so, this might be the perfect opportunity for you. We provide you with all the tools, knowledge and training you need to be successful in this role. Responsibilities: To provide legendary service directly to the client, after the sale by the Sales Executive. Communicate with the client in person, by phone, email, text, etc. to answer all of their questions/inquiries, provide professional advice or recommendations regarding their coverage, and collect relevant information. Process additions, deletions or changes to their policy on the appropriate broker management system (EPIC) Ensure all transactions and renewals are accounted for and processed accurately and on a timely basis. Provide quotations or estimates to clients on premiums, update information, and confirm data and coverage and to record appropriate changes or adjustments. Communicate with insurance company personnel as required. As an independent broker working for your client, acts as liaison with the insurer and balances the interests of the client, McDougall Insurance and the insurance company in force. Function as part of a team responsible for assisting in the collection of accounts receivable and in any other area as required. Where appropriate, procure a sale, normally through upgrading and bundling coverage for personal lines clients Qualifications: Must have exceptional customer service and communication skills. Acts in a professional manner at all times and maintains a position of trust and confidentiality. Acts in an open, respectful, honest and helpful manner with all team members, clients and other staff. Ability to work effectively in a fast-paced environment Must be willing and eligible to obtain a RIBO license RIBO stands for the Registered Insurance Brokers of Ontario. RIBO regulates the licensing, professional competence, ethical conduct and insurance related financial obligations of all independent general insurance brokers in the province of Ontario. To learn more please visit What We Offer: Dedication to investing in our employees' future by offering RIBO, CAIB, and other designation education reimbursement A supportive and inclusive culture where diversity is valued A competitive employee health and dental benefits program including long term disability A competitive pension plan Paid vacation time Access to ongoing training and development through our McDougall training team McDougall Insurance and Financial is proud to be an equal opportunity employer. We aim to find individuals who are passionate about their work and treat others with dignity and respect. If you need assistance or an accommodation, you may reach out to our Human Resources Department through our website: Job Types: Full-time, Permanent Salary: $40,000.00-$48,000.00 per year Benefits: Company events Company pension Dental care Disability insurance Employee assistance program Extended health care Life insurance Paid time off Vision care Schedule: Day shift Monday to Friday Supplemental pay types: Bonus pay Work Location: In person\",\n            \"location\": \"Petawawa, ON\"\n        },\n        {\n            \"id\": \"81189E4A9C755893B156B70D6AE54218\",\n            \"cityName\": \"120 Lowson Cres, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4001639707a94203\",\n            \"jobName\": \"E-Store Customer Service Representative\",\n            \"companyName\": \"The Quark Group\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694548266185,\n            \"dateOfPosted\": 1694548266010,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8357439,\n                    \"lon\": -97.20617569999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Lowson Cres, Winnipeg, MB R3P, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"In Office Position:The E-Store Customer Service Representative performs the daily functions of the Quarks E-Store: Upload merchandise details to the website, generating picking information for the stores, and handle troubleshooting, complaints, returns, and phone orders with exceptional customer service skills.ResponsibilitiesE store Customer Service:· Respond to email and telephone queries.· Handle customer complaints, provide appropriate solutions and alternatives within the time limits; follow up to ensure resolution.· Process special orders, exchanges and returns.Website Updates:· Upload images and group merchandise for the E-Store.\\\\· Communicate with vendors to receive images in advance of upcoming season.- Various other website maintenance dutiesOrder Fulfillment:· Generate picking info to stores.· Supply shipping information to stores.Other:· Adhere to all applicable federal and provincial regulations and company policies.· Consistently look for operational improvements.· Other duties, relevant to the position, shall be assigned as required.Requirements· 1 Year of proven customer support experience or experience as a client service representative.· Strong phone contact handling skills and active listening.· Ability to multi-task, prioritize, and manage time effectively.· Excellent communication skills.· Proficient with Microsoft Excel, Word and Outlook. Knowledge of Imagine is an asset.· Team oriented, and able to manage stress.· Bilingual is an asset.Job Type: Full-timeSalary: $16.50 per hourBenefits:Dental careExtended health carePaid time offSchedule:8 hour shiftEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Lowson Cres, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"B36CDADB489AFEB981B4FB0262F8DEB2\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d1e2d29650fe80c1\",\n            \"jobName\": \"Call Centre Agent - Customer Service\",\n            \"companyName\": \"Silverberry Travels Inc.\",\n            \"rowSalary\": \"$24 an hour\",\n            \"date\": 1694548111279,\n            \"dateOfPosted\": 1690809440670,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Experience an assetTasks Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for refunds and credits Explain the type and cost of services offered Maintain records and statistics Perform general office duties Receive payments Act as spokesperson for an organization Train and supervise staffWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"01A8616636887E540E732ABE5ACD3CE9\",\n            \"cityName\": \"6227 2 St SE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b3d587b31006e569\",\n            \"jobName\": \"Entry-Level Customer Service Representative\",\n            \"companyName\": \"Affinity 1:1\",\n            \"rowSalary\": \"$700–$1,200 a week\",\n            \"date\": 1694547852396,\n            \"dateOfPosted\": 1694547852218,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.96843759999999,\n                    \"lon\": -113.9758168\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"40 St SE, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 700.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    700.0\n                ],\n                \"range\": {\n                    \"gte\": 700.0,\n                    \"gt\": null,\n                    \"lte\": 700.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"POSITION DESCRIPTION: Customer Service Representative with excellent communication skillsWe are looking for full time and part time self-motivated and dependable Customer Service Representatives to join our team!The Customer Service Representative will serve as the primary contact for local communities. They are responsible for not only maintaining strong relationships with potential customers but also serve as a conduit between the customer and the client.POSITION SUMMARY:Working alongside clients through team based community engagement programs on behalf of different client communication campaigns throughout the year. Technical input of data and processing customer transactions. Answer questions and provide high level customer service response to inquries.WHAT WE ARE LOOKING FOR:· Highly motivated individuals· A team player, willing to go out of your way to help, support and coach your team.· Integrity – Honesty – Drive – Reliability – Hard Working – Ambition – Professionalism· Excellent interpersonal and communication skills to effectively build relationships· Ability to effectively interact with people at all levels· A self-starter who can operate with minimal supervision and is motivated to find solutions to challenges as they occur.We value our team members and their right to medical privacy. Personal health information will not be a deciding factor for employment consideration. All applicants are welcome.The health and safety of our team members, candidates and communities is our top priority. We are committed to act responsibly and have numerous health and safety protocols and precautions in place to stop the spread of COVID-19Job Types: Full-time, PermanentSalary: $700.00-$1,200.00 per weekCOVID-19 considerations:Personal preferenceJob Type: Full-timeSalary: $700.00-$1,200.00 per weekBenefits:Company eventsFlexible scheduleOn-site parkingFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payRetention bonusWork Location: In person\",\n            \"location\": \"St SE, Calgary, AB\"\n        },\n        {\n            \"id\": \"80CF7CD3F9C9853A83DF782BC5FC2A94\",\n            \"cityName\": \"6150 Highway 7, Vaughan, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7c7ba1590be7b96c\",\n            \"jobName\": \"Financial Customer Service Representative\",\n            \"companyName\": \"Pay2day\",\n            \"rowSalary\": \"From $17.55 an hour\",\n            \"date\": 1694547820383,\n            \"dateOfPosted\": 1694547820201,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.800579,\n                    \"lon\": -79.499136\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Keele St at Highway 7, Vaughan, ON L4K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you interested in growth, development, and a great team environment? If you are, join our team because you are exactly who we’re looking for! Pay2Day is a rapidly growing company with endless opportunities for career advancement. We offer alternative financial solutions and are looking for people who are client-focused, highly skilled problem solvers, and dedicated to success.Candidates must have a broad availability as this is a 7 day a week operation. Must be available to work mornings, afternoons, evenings and weekends to meet our client’s business needs.Why work for Pay2Day?· You’ll be a part of a company our customers LOVE, and we love them! Check us out on Google and Trust Pilot. We focus on doing what’s right for our clients, not what is easy.· You’ll have opportunities for advancement and development. We love developing our team, and when positions become available, we ALWAYS look internally, first.· You’ll be part of a great team. We all succeed together and want the best for everyone. Check out our Indeed reviews! We’re happily rated 4.6 stars.· You’ll have a platform to share your ideas; your voice will impact internal changes. Team members at all levels have an open-door policy. Feedback makes us stronger as individuals and employees.· You’ll have flexible, varying shifts. Our Stores are open 7 days a week with varying hours. Our team members need to be available for varying shifts throughout the week.Essential duties & responsibilities:Cash handling/teller responsibilitiesOpening/closing the branchPerforming daily calls to remind clients of payment arrangements.Reviewing applicants/completing financial risk assessment to determine approvals.Responding to client inquiries/Information requests by both in store and virtual clientsCollaborate with various departments to maximize profit while focusing on exceptional customer service and sales.Focusing on client retentionMarketing/growing the business.Additional perks:Health, Vision & Dental BenefitsAccess to an external EAPCompany events and incentivesPositive and supportive teamOpportunity for career advancementPay2Day welcomes and encourages applications from people with disabilities. Accommodations are available upon request for candidates taking part in all aspects of the selection process.For more information about our company, visit www.pay2day.ca and check out our locationsJob Types: Full-time, PermanentSalary: From $17.55 per hourBenefits:Company eventsDental careEmployee assistance programExtended health careFlexible scheduleLife insuranceVision careWellness programSchedule:10 hour shift8 hour shiftDay shiftEvening shiftHolidaysWeekends as neededEducation:Secondary School (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Highway , Vaughan, ON\"\n        },\n        {\n            \"id\": \"7C9257E9CD6EDB275EA96A8F018380EB\",\n            \"cityName\": \"1 Bass Pro Mills Drive, Vaughan, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=13f73888b8d874bb\",\n            \"jobName\": \"Teller/Customer Service Representative\",\n            \"companyName\": \"Calforex Currency Exchange\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694547812362,\n            \"dateOfPosted\": 1694547812170,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.82184669999999,\n                    \"lon\": -79.5393173\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Bass Pro Mills Dr, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Location: Vaughan Mills MallCalforex is a Canadian leader in Foreign Exchange services operating 10 retail locations in Canada. At Calforex we take pride in offering our clients competitive personalized foreign exchange services and providing unmatched customer service. Calforex is seeking motivated, talented team members who are dedicated to providing a welcoming and professional environment for our clients and fellow employees.The position of teller is of a front-line ambassador to both our local clientele and tourists from across the globe. Success at Calforex relies on the following:· Providing a welcoming and cheerful environment for clients during their transactions in branch and while interacting with clients by phone and email.· Engaging with clients to accurately determine their needs and offer appropriate products and services.· An aptitude for problem solving and responding flexibly to new challenges.· Communicating effectively and professionally with clients regarding Calforex policy and Federal or Provincial regulations for Money Service Businesses.· Commitment to on-going training for Anti-Money Laundering and Anti-Terrorist Financing legislation and regulatory requirements.Required Qualifications:· High school diploma or equivalent.· Confident in use of computers, email programs, and basic internet usage skills.· Advanced verbal and written communication skills in the following languages: English/French· Minimum 2 years of professional customer service experience.· Minimum 2 years of professional cash handling experience.· Reliable transportation or ability to commute during Branch hours.· Ability to pass a Police Clearance Report.Calforex is committed to providing an inclusive and equitable workplace for all team members and clients. We seek applicants who are committed to upholding these values.Job Type: Part-timePart-time hours: 20-40 per weekSalary: From $17.00 per hourSchedule:8 hour shiftExperience:Cash handling: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Bass Pro Mills Dr, Vaughan, ON\"\n        },\n        {\n            \"id\": \"6EBDABB132C68B136FEB70215088E11C\",\n            \"cityName\": \"126 Bridge St, Bradford, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9fe92a7b87405258\",\n            \"jobName\": \"Financial Customer Service Representative\",\n            \"companyName\": \"Pay2day\",\n            \"rowSalary\": \"From $17.55 an hour\",\n            \"date\": 1694547806010,\n            \"dateOfPosted\": 1694547805843,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.114523,\n                    \"lon\": -79.5509839\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bradford West Gwillimbury\",\n                \"formattedAddress\": \"Bridge St, Bradford West Gwillimbury, ON L0G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bradford West Gwillimbury\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you interested in growth, development, and a great team environment? If you are, join our team because you are exactly who we’re looking for! Pay2Day is a rapidly growing company with endless opportunities for career advancement. We offer alternative financial solutions and are looking for people who are client-focused, highly skilled problem solvers, and dedicated to success.Candidates must have a broad availability as this is a 7 day a week operation. Must be available to work mornings, afternoons, evenings and weekends to meet our client’s business needs.Why work for Pay2Day?· You’ll be a part of a company our customers LOVE, and we love them! Check us out on Google and Trust Pilot. We focus on doing what’s right for our clients, not what is easy.· You’ll have opportunities for advancement and development. We love developing our team, and when positions become available, we ALWAYS look internally, first.· You’ll be part of a great team. We all succeed together and want the best for everyone. Check out our Indeed reviews! We’re happily rated 4.6 stars.· You’ll have a platform to share your ideas; your voice will impact internal changes. Team members at all levels have an open-door policy. Feedback makes us stronger as individuals and employees.· You’ll have flexible, varying shifts. Our Stores are open 7 days a week with varying hours. Our team members need to be available for varying shifts throughout the week.Essential duties & responsibilities:Cash handling/teller responsibilitiesOpening/closing the branchPerforming daily calls to remind clients of payment arrangements.Reviewing applicants/completing financial risk assessment to determine approvals.Responding to client inquiries/Information requests by both in store and virtual clientsCollaborate with various departments to maximize profit while focusing on exceptional customer service and sales.Focusing on client retentionMarketing/growing the business.Additional perks:Health, Vision & Dental BenefitsAccess to an external EAPCompany events and incentivesPositive and supportive teamOpportunity for career advancementPay2Day welcomes and encourages applications from people with disabilities. Accommodations are available upon request for candidates taking part in all aspects of the selection process.For more information about our company, visit www.pay2day.ca and check out our locationsJob Types: Full-time, PermanentSalary: From $17.55 per hourBenefits:Company eventsDental careEmployee assistance programExtended health careFlexible scheduleLife insuranceVision careWellness programSchedule:10 hour shift8 hour shiftDay shiftEvening shiftHolidaysWeekends as neededEducation:Secondary School (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Bridge Street, Bradford, ON\"\n        },\n        {\n            \"id\": \"A95762D4CEDD3D1F79EBC6E4C0D4A678\",\n            \"cityName\": \"Moncton Area, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=718bc24b4dc0cab8\",\n            \"jobName\": \"Mini-Split And Duct Cleaning Technician - Customer Service Focused\",\n            \"companyName\": \"Hydrokleen Atlantic\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694547578863,\n            \"dateOfPosted\": 1694547578689,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.0878165,\n                    \"lon\": -64.7782313\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"* No Experience Required *Are you a customer service superstar looking for a new career that's more than \\\"just a job\\\"?Operating since 2018, HydroKleen Atlantic is a growing service company offering the cleaning of mini-split heat pumps, air exchanger systems, dryer vent ducts, and other HVAC systems. Our primary goals are to deliver the most thorough cleaning and the best customer service our clients can get. We have hundreds of 5-star reviews across different platforms!Our unique and proven system allows our HydroKleen technicians to provide superior cleaning without taking any system apart. No experience necessary! We are offering full training to the right candidate.What makes this a great job?- Operate your own service vehicle- Excellent work-life balance- Work independently- Stay active- Consistent support from the admin staff and other service technicians- Work in different locations every day- Interact with clients- Provide meaningful services- Represent a trustworthy brand- Competitive wages- Bonuses- No trade certification is requiredSend us your resume if you- Have excellent customer service skills- Can provide a clean driving record and clean background check- Have a valid class 5 driver's license- Have an eye for small details- Find satisfaction in being thorough- Can work efficiently with little supervision- Are highly self-motivated- Enjoy interacting with people- Have a high level of professionalism- Can lift to 50 lbs.- Want a long-term career with great pay and a supportive environmentFrench is not required but is an asset.Some marketing will be required between jobs and during quieter times of the year, i.e. door hangers, putting up flyers, approaching nearby businesses.The main job area includes Moncton and the surrounding regions. However, parts of Nova Scotia and Prince Edward Island may be included occasionally.The hours will be full-time for the most of the year, but could be less if demand slows down during the winter months.Fuel and vehicle supplied.Job Types: Full-time, Part-time, Permanent, CasualPart-time hours: 15-40 per weekSalary: From $18.00 per hourBenefits:Company carStore discountSchedule:Day shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payExperience:Customer service: 1 year (preferred)Licence/Certification:Class 5 Driver's License (required)Work Location: In person\",\n            \"location\": \"Moncton, NB\"\n        },\n        {\n            \"id\": \"F2A69D4EC3D0832FBA9A326A249FEC45\",\n            \"cityName\": \"534 17 Av SW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e40b8b3c7e9c7b03\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Affinity One To One\",\n            \"rowSalary\": \"$700–$1,200 a week\",\n            \"date\": 1694547568055,\n            \"dateOfPosted\": 1691698097870,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0696021,\n                    \"lon\": -114.2048762\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Cougar Ridge Ave SW, Calgary, AB T3H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 700.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    700.0\n                ],\n                \"range\": {\n                    \"gte\": 700.0,\n                    \"gt\": null,\n                    \"lte\": 700.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"POSITION DESCRIPTION: Customer Service Representative with excellent communication skillsWe are looking for full time and part time self-motivated and dependable Customer Service Representatives to join our team!The Customer Service Representative will serve as the primary contact for local communities. They are responsible for not only maintaining strong relationships with potential customers but also serve as a conduit between the customer and the client.POSITION SUMMARY:Working alongside clients through team based community engagement programs on behalf of different client communication campaigns throughout the year. Technical input of data and processing customer transactions. Answer questions and provide high level customer service response to inquries.WHAT WE ARE LOOKING FOR:· Highly motivated individuals· A team player, willing to go out of your way to help, support and coach your team.· Integrity – Honesty – Drive – Reliability – Hard Working – Ambition – Professionalism· Excellent interpersonal and communication skills to effectively build relationships· Ability to effectively interact with people at all levels· A self-starter who can operate with minimal supervision and is motivated to find solutions to challenges as they occur.We value our team members and their right to medical privacy. Personal health information will not be a deciding factor for employment consideration. All applicants are welcome.The health and safety of our team members, candidates and communities is our top priority. We are committed to act responsibly and have numerous health and safety protocols and precautions in place to stop the spread of COVID-19Job Types: Full-time, PermanentSalary: $700.00-$1,200.00 per weekCOVID-19 considerations:Personal preferenceJob Type: Full-timeSalary: $700.00-$1,200.00 per weekBenefits:Company eventsFlexible scheduleOn-site parkingFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payRetention bonusWork Location: In person\",\n            \"location\": \"Av SW, Calgary, AB\"\n        },\n        {\n            \"id\": \"ED118D83C561FF4C7C2D9068E775B12C\",\n            \"cityName\": \"110 Copper Creek Drive, Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=572cbb005d81415f\",\n            \"jobName\": \"Receptionist And Customer Service Representative\",\n            \"companyName\": \"Oak Ridges Vision Centre\",\n            \"rowSalary\": \"$15.50–$26.04 an hour\",\n            \"date\": 1694547521619,\n            \"dateOfPosted\": 1694547521426,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.87072740000001,\n                    \"lon\": -79.2209562\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Markham\",\n                \"formattedAddress\": \"Copper Creek Dr, Markham, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Markham\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We have an opening for a Part Time . receptionist/customer service representative in our optical/optometrist's office. This position combines the responsibilities of managing the front desk, assisting with eyewear sales and administrative patient duties. We are seeking to grow our team by adding a dedicated and outgoing person who has a strong desire to learn and a great aptitude for fashion. Being computer savvy, having great interpersonal skills and a passion for providing superb patient care is an asset.Previous optical & administrative experience is preferred, but not necessary.Primary Responsibilities and Duties: *will include but not be limited to*· General reception duties including scheduling appointments, invoicing, insurance billing, answering phones calls/emails, taking payments, etc.· Assisting patients with frame selection and lens recommendations based on the prescription written by the Optometrist· Staying current on product knowledge and fashion trends in order to accurately guide the patient· Pretesting patients using automated equipment prior to seeing the Optometrist· Miscellaneous in-office duties as assignedIf you feel you would be an asset to our team, please forward your resume and a cover letter through the link below.Job Types: Full-time, Part-time, PermanentPart-time hours: 24 per weekSalary: $16.50-$21.56 per hourBenefits:Dental careExtended health careStore discountVision careSchedule:8 hour shiftDay shiftMonday to FridayWeekend availabilitySupplemental pay types:Bonus payCommission payOvertime payAbility to commute/relocate:Markham, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Front desk: 1 year (preferred)Administrative experience: 1 year (preferred)Work Location: In personJob Type: Part-timePart-time hours: 24-40 per weekSalary: $15.50-$26.04 per hourBenefits:Dental carePaid time offFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededSupplemental pay types:Overtime payAbility to commute/relocate:Markham, ON L6B 0P9: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Front desk: 1 year (preferred)Administrative experience: 1 year (preferred)Language:Mandarin (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Copper Creek Drive, Markham, ON\"\n        },\n        {\n            \"id\": \"2DFBBDD1CE858E453B4190DCE8E35262\",\n            \"cityName\": \"Oldcastle, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f0c07c998d1a2cfa\",\n            \"jobName\": \"Customer Service Representative/Inside Sales\",\n            \"companyName\": \"Morton Food Service\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694547437029,\n            \"dateOfPosted\": 1694547436867,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.226672,\n                    \"lon\": -82.95950200000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Tecumseh\",\n                \"formattedAddress\": \"Oldcastle, Tecumseh, ON N0R 1L0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Essex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Tecumseh\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"SUMMARYThe foundation of Morton Food Service lies in our strong relationships with our customers, driven by our ‘Customer First’ philosophy. The Customer Service Representative (CSR) is responsible for providing a high level of customer service to Morton Food Service customers while supporting the initiatives/goals of the Sales Team and the organization. The CSR will be responsible for handling general inquiries, placing accurate orders, communicating with customers, and facilitating communications though all levels of the organization.The CSR is an extension of the Morton Sales Team and is a point of contact for Morton Food Service customers both internal and external. This position plays a critical role in ensuring our customers experience the highest quality of customer service through our customer first focus. Integrity, vision, professionalism, and passion are key components to the success of a Morton Customer Service Representative.CORE COMPETENCIESDetail OrientedTime Management & MultitaskingCreative and Innovative ThinkingDevelopment and Continuous LearningProblem SolvingAccountability and DependabilityDecision Making and JudgementOperating Office EquipmentEthics and IntegrityPlanning and organizingAccuracyEnforcing Policy, Rules, RegulationsNegotiation SkillsExceptional CommunicationCustomer Focused (Internal & External)TeamworkJOB DUTIESRespond to customer service calls in a courteous and professional manner.Process client orders into the company ERP/Business system with accuracy and in a timely manner.Assist customers and the sales department with orders, inquiries, and issues/concerns in a timely manner.Refer customer calls to appropriate manager where necessary (Regional Sales and Business Development Manager or Director of Sales)Investigate and troubleshoot customer service issues.Appropriately communicate brand identity and corporate position.Assist customers with standard account-related inquiries.Provide information about company products and our service.Update the company ERP/Business system (i.e., CRM) with accurate messages regarding transactions.Coordinate and follow-up on customer orders and inquiries on behalf of the Territory Sales Manager when Sales team members are unavailable (i.e., vacation coverage).Conduct call-backs to ensure customer satisfaction, as necessary.Provide customer reports to Sales as needed, including velocity reports.Ensure that Territory Sales Managers are informed of customer interactions and to work as a team to provide our customers with the best service.CSR to generate various velocity reports for customers & vendors as needed with proper approvals.Produce order confirmations and follow-up on shortages by recommending substitutions.CSR to regularly attend General Sales Meetings, product sessions and stay up to date with product knowledge.CSR to ride with Territory Sales Managers to build effective relationships with customers.Embody the Morton Food Service, Customer First philosophy.Other responsibilities may be assigned as required.REQUIREMENTSSecondary School Diploma or General Equivalency Degree required.2-5 years' experience in Customer Service preferred.Administrative skills are an asset.Previous food service experience is an asset.Working knowledge Microsoft Office applications (Outlook, Excel, Word).Excellent communication skills both oral & written.WORKING CONDITIONSManual dexterity is required to operate telephone, computer, and peripherals.Interacts with employees, management, and the customers at large.Repetitive work environmentIrregular hours, various days of the week and overtime will be required as needed.Multi-tasking, detail orientated, sometimes stressful environment.Job Type: Full-timeSalary: $18.00-$20.00 per hourBenefits:Company eventsDental careDiscounted or free foodExtended health careLife insuranceOn-site parkingVision careSchedule:8 hour shiftDay shiftHolidaysMonday to FridayOvertimeWeekends as neededSupplemental pay types:Overtime payAbility to commute/relocate:Oldcastle, ON N9G 0B8: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:customer service : 2 years (required)food service: 2 years (preferred)Work Location: In personApplication deadline: 2023-09-22Expected start date: 2023-10-02\",\n            \"location\": \"Oldcastle, ON\"\n        },\n        {\n            \"id\": \"EE3210874C562EE3364D475D11B7A63D\",\n            \"cityName\": \"More Gate Digital Group in Oshawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0ea6daef1ee43c77\",\n            \"jobName\": \"Customer Service Assistant\",\n            \"companyName\": \"More Gate Digital Group\",\n            \"rowSalary\": \"$45,000–$55,000 a year\",\n            \"date\": 1694547369720,\n            \"dateOfPosted\": 1694547369531,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8970929,\n                    \"lon\": -78.86579119999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oshawa\",\n                \"formattedAddress\": \"Oshawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oshawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Here’s why you should apply:Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingPrimary Functions:Serve as the information center for all customers, community contacts, and other company representativesMust be aware of daily activities and administrative responsibilitiesInteract with customers to provide information in response to inquiries, concerns and requests about products and servicesMust professionally handle all phone calls and route callersAnswers questions in a timely and courteous mannerProduce reports, forms, correspondence, orders and other materials as neededPerform other duties as assigned.QualificationsSolid organization and active listening skillsRazor sharp attention to detail with fast and accurate data entryCustomer service focused with creative problem solving skillsAbility to anticipate and advocate for your customers needsAbility to multi-task, prioritize and adjust to changing needsJust like your resume, a job description never tells the full story. Apply today and if you've got what it takes, we'd love to discuss everything in further detail. We know there's a lot more you'd like to know, why wait? Apply today!Job Types: Full-time, PermanentSalary: $45,000.00-$55,000.00 per yearBenefits:Dental careEmployee assistance programExtended health careOn-site parkingPaid time offFlexible Language Requirement:English not requiredFrench not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payOvertime payTipsEducation:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Oshawa, ON\"\n        },\n        {\n            \"id\": \"6764E0077CCB61873C6B8D19A16AE439\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=20879eef2776156f\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"Heed Consturction Group Ltd\",\n            \"rowSalary\": \"$35 an hour\",\n            \"date\": 1694547250165,\n            \"dateOfPosted\": 1691672910659,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 35.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35.0\n                ],\n                \"range\": {\n                    \"gte\": 35.0,\n                    \"gt\": null,\n                    \"lte\": 35.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 2 years to less than 3 yearsTasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Train or arrange for training Ensure health and safety regulations are followed Recommend personnel actions Read blueprints and drawings Requisition or order materials, equipment and suppliesWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"9CAB91B26CE97972C6D0CC760904FE4A\",\n            \"cityName\": \"3003 Grandview Highway, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=11f0937e070e39db\",\n            \"jobName\": \"Customer Service/Sales Representative\",\n            \"companyName\": \"Weserve Marketing Inc.\",\n            \"rowSalary\": \"$800–$1,500 a week\",\n            \"date\": 1694547131931,\n            \"dateOfPosted\": 1694547131701,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2582225,\n                    \"lon\": -123.0348704\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Grandview Hwy, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 800.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    800.0\n                ],\n                \"range\": {\n                    \"gte\": 800.0,\n                    \"gt\": null,\n                    \"lte\": 800.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you experienced in the Customer Service and Sales field and looking to utilize your customer-centric approach to business development?Ace Management Group is one of Toronto’s leading firms in Customer Service, Sales, and Business Development. We are dedicated to providing our clients with the utmost care and have a history of delivering profitable results and exceeding expectations in a vastly growing consulting industry. Utilizing this customer-centric and consultative approach is a cornerstone in how our Customer Service and Sales Team works together to create a dynamic, diverse and collaborative workspace.We emphasize our employee’s goals, growth, and leadership development to foster this atmosphere. As part of our Customer Service Sales Representative team, you would become an expert in all areas of consulting, customer service, sales, and leadership development. The ideal candidate is undeniably dedicated to advancing our core mission of innovation and inclusiveness. The right candidate for our Customer Service Sales Representative role is also a communications expert, empathetic towards people, and is exceptional at delivering results on behalf of our renowned clientele. If you are confident and possess these traits, joining our Customer Service Sales Representative team would be ideal for you.Customer Service Sales Representative Responsibilities:· Articulate the features and benefits of our client’s products and services directly to our customers and possess the knowledge to answer any additional questions they may have· Build rapport and long-lasting relationships with our customers to help ensure repeat business and brand loyalty· Complete the sales process with any qualifying customer who meets the client’s parameters and maintains the ability to lead with the client brand, not discounts· Support the rest of our Entry Level Customer Service Representatives and Sales teams with remaining daily responsibilities including but not limited to, compliance, product delivery tracking, and quality assurance· Drive customer engagement and satisfaction from initial contact through the point of sale to delivery of products to further help scale acquisition growth and longevity· Effectively and efficiently communicate with customers to handle all inquiries, resolve issues, and overturn any objections while completing the sales processCustomer Service Sales Representative Qualifications:· 1 year of experience in an entry-level or introductory position within the field of customer service and/or sales is preferred· A self-motivated individual dedicated to utilizing their existing skills and have a student mentality to learn new skillsets· Strong leadership skills and capability to mentor other members of the Customer Service Sales Representative and sales teams· Exceptional communication skills, both written and verbal· Tenacious and dedicated to reinforcing the core values of unbelievable customer serviceJob Types: Full-time, Part-time, Permanent, FreelancePart-time hours: 40 per weekSalary: $800.00-$1,500.00 per weekBenefits:Dental carePaid time offSchedule:Monday to FridayWeekends as neededSupplemental pay types:Commission payEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Grandview Highway, Vancouver, BC\"\n        },\n        {\n            \"id\": \"F799A9839C01D61C9260E600624B00B6\",\n            \"cityName\": \"3405 Rue F. X. Tessier, Vaudreuil-Dorion, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=53455374cb858bb2\",\n            \"jobName\": \"Administrative Assistant -Customer Service - Nfh - Adjointe Administrative-\",\n            \"companyName\": \"New Roots Herbal Inc.\",\n            \"rowSalary\": \"$20.00–$23.50 an hour\",\n            \"date\": 1694547129939,\n            \"dateOfPosted\": 1694547129705,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4112764,\n                    \"lon\": -74.0547111\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaudreuil-Dorion\",\n                \"formattedAddress\": \"Rue F.-X.-Tessier, Vaudreuil-Dorion, QC J7V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montérégie\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaudreuil-Dorion\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Administrative Assistant and Customer ServiceAre you looking to kickstart your career in this dynamic environment, Join our team as a Administrative Assistant and customer service, to gain valuable experience and develop versatile skills within the administration realm. You'll be contributing to projects that make a real impact while learning from experienced professionals in a supportive environment.Main Responsibilities✔ Take phone orders/web orders/email orders✔ Enter sales orders in SAP✔ Processing client invoices✔ Process customers’ returns, damages, and pricing errors✔ Handle company invoicing (vendors)✔ Handle client accounts, and customer complaints, issues or questions✔ Handle simple accounting transactions✔ Assist in tasks related to marketing and promotion✔ Help organize and distribute marketing materials✔ Report to the general director and handle calendar, reminders, and ongoing tasks✔ Provide monthly sales reports✔ Assist in organizing events and trips✔ Translate different documents✔ Assist in various office tasksSkills & Qualifications✔ Excellent oral and written communication skills in English and French (90 % of the calls are in English)✔ Minimum of one (1) year of experience in customer service✔ Computer proficiency with MS Office✔ Experience with SAP✔ Excellent interpersonal and communication skills✔ Team-player✔ Be organized and detail oriented✔ Experience with natural health products (an asset)✔ Naturopathic practitioner (an asset)--------------------------------------------------------------------------------------------Adjointe administrative et service à la clientèleVous souhaitez démarrer votre carrière dans un environnement dynamique ? Rejoignez notre équipe en tant qu'assistant administratif et service à la clientèle, afin d'acquérir une expérience précieuse et de développer des compétences polyvalentes dans le domaine de l'administration. Vous contribuerez à des projets qui ont un impact réel tout en apprenant auprès de professionnels expérimentés dans un environnement favorable.Principales tâches et responsabilités✔ Prendre les commandes téléphoniques/en-ligne/courriel✔ Saisir les commandes dans SAP✔ Traiter les factures✔ Gérer les retours d’articles, les dommages et les erreurs de prix des clients✔ Gérer la facturation des fournisseurs✔ Gérer les dossiers des clients, les questions ou les plaintes✔ Gérer la facturation de la compagnie✔ Traiter des transactions comptables simples✔ Assister dans les tâches reliées au marketing et aux promotions✔ Aider à organiser et à distribuer le matériel promotionnel✔ Se rapporter au chef de l’exploitation et gérer le calendrier, les rappels et les tâches en cours✔ Fournir des rapports de ventes mensuels✔ Aider à l'organisation d'événements et de voyages d’affaires✔ Traduire différents documents✔ Aider avec autres tâches de bureauCompétences et qualifications✔ Excellente communication écrite et verbale en anglais et en français (90 % des appels sont en anglais)✔ Minimum d’un (1) an d’expérience au service à la clientèle✔ Maîtrise de la suite MS Office✔ Expérience avec le logiciel SAP✔ Être doué pour la communication et les relations interpersonnelles✔ Détenir un bon esprit d’équipe✔ Être organisé et avoir le souci du détail✔ Expérience dans le domaine des produits naturels (un atout)✔ Naturopathe (un atout)Job Type: Full-timeSalary: $20.00-$23.50 per hourBenefits:Dental carePaid time offVision careSchedule:8 hour shiftDay shiftMonday to FridayAbility to commute/relocate:Vaudreuil-Dorion, QC J7V 5V5: reliably commute or plan to relocate before starting work (required)Education:DCS / DEC (preferred)Experience:Front desk: 1 year (required)Administrative experience: 1 year (required)Language:English (required)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Rue F. X. Tessier, Vaudreuil-Dorion, QC\"\n        },\n        {\n            \"id\": \"FD29D714365D87F48DEE694DBD46F26A\",\n            \"cityName\": \"London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=18ec8f7acb66185d\",\n            \"jobName\": \"Customer Service Representative - Revenue (C0746)\",\n            \"companyName\": \"City Of London\",\n            \"rowSalary\": \"$40,064–$58,655 a year\",\n            \"date\": 1694547115785,\n            \"dateOfPosted\": 1694547115602,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9849233,\n                    \"lon\": -81.2452768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40064.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40064.0\n                ],\n                \"range\": {\n                    \"gte\": 40064.0,\n                    \"gt\": null,\n                    \"lte\": 40064.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Summary of DutiesReports through the Senior Customer Service Representative - Revenue or Senior Cashier to the Manager of Customer and Assessment Services or the Supervisor of Taxation and Revenue. Provides information to the public concerning property taxes and related legislation. Receives and processes payments.Work PerformedReceives and responds to public inquires relating to property taxes at the tax counter, by telephone, or in written form. Informs the public about legislation changes, rebate programs and appeal procedures. Receives, records and deposits all revenues due to the Corporation. Processes tax payment stubs and cheques through automated payment processor in order to generate batch summaries, tapes for mainframe update and related records. Ensures accuracy of data processed. Maintains daily record of revenues received and ensures that cash and cheques reconcile to documents. Controls and files receipts. Provides back-up to the Senior Cashier as required for regular daily duties such as petty cash reimbursements and daily deposits. Researches tax accounts requiring special attention, i.e. cheques do not match remittances, account paid twice. Provides clerical assistance in the issuing of tax bills and receipts for tax payments. Assists in the processing of tax payments received in person, by mail, or by agencies including postdated cheques during installment period. Completes standard form letters as required. Assists Data Entry Transfer Clerk and Tax Certificate Clerk as required. Performs related duties as assigned.Qualifications/ExperienceOne year of a two year Community College Business Administration Diploma. One to two years' related experience.Specialized Training & LicensesSkills and abilities in the following areas are necessary: Unit 1 of the Municipal Tax Administration ProgramCompensation and Other Information$40,064 - $58,655 (Level 7) This position is being filled on a temporary basis for up to 2 years. Current hours of Work: Monday - Friday from 8:30am - 4:30pm These hours of work are subject to change in accordance with the Collective Agreement and may include evening hours and Saturdays. NOTE: Applicants may be required to complete a job related test.As an inclusive employer, we are committed to providing a fully accessible recruitment process. Please contact us at any time during the recruitment process and let us know what accessible supports you may need. FILE NUMBER COL01652  SERVICE AREA Finance Supports  DIVISION Financial Services  CLOSE DATE 19-Sep-2023  POSITION TYPE Temporary - Full Time  EMPLOYEE GROUP CUPE Local 101\",\n            \"location\": \"London, ON\"\n        },\n        {\n            \"id\": \"3601907235DFE4D630ED679DA1E4EFE3\",\n            \"cityName\": \"105 Akerley Blvd, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6d2835c5166d7d95\",\n            \"jobName\": \"Customer Service Coordinator\",\n            \"companyName\": \"Mother Hubbard's Kitchens\",\n            \"rowSalary\": \"$42,549–$56,064 a year\",\n            \"date\": 1694547036251,\n            \"dateOfPosted\": 1694547036067,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.7218486,\n                    \"lon\": -63.58213800000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Akerley Blvd, Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42549.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42549.0\n                ],\n                \"range\": {\n                    \"gte\": 42549.0,\n                    \"gt\": null,\n                    \"lte\": 42549.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job DescriptionMother Hubbard's Kitchens is looking for a full-time Customer Service Manager to join our team. The Customer Service Manager will be responsible for the day-to-day operations of the customer service department. The ideal candidate will have a background in customer service and experience in a fast-paced environment. This position will also be responsible for ensuring that all customers are satisfied with their orders, and that the company is meeting its commitments to quality, customer service, and shipping deadlines.ResponsibilitiesManage incoming calls, emails, and chats from customersRespond to customer questions and requests via phone or emailRespond to customer concerns with appropriate solutions and solutions alternativesRespond to customer complaints in a timely mannerCommunicate with customers about product information, pricing, discounts, and other products as neededBuild long-term relationships with customers by taking the time to understand their specific needsCommunicate with customers about new products and special offersMaintain records of customer interactions and issues in our CRM systemManage the company’s commitments to quality, customer service, and shipping datesKeep up-to-date on changes in policies and procedures related to the day-to-day operations of the companyStay up to date on new products and services we offer through our website or through other marketing channels (ex. TV ads)Other duties as assigned by managementSkills & Qualifications Previous experience in a customer service role (preferred)Strong phone presence; must be able to take control of the phone while maintaining good etiquette with all parties involved (customers, sales reps, management)Ability to multi-task in a fast-paced environment while maintaining patience and professionalism (customers, sales reps, management)Ability to work well under pressure while also being able to prioritize tasks (customers, sales reps, management)Ability to prioritize tasks based on importance while maintaining flexibility (customers, sales reps, management)Job Type: Full-timeSalary: $42,549.42-$56,063.74 per yearBenefits:Casual dressExtended health careLife insuranceOn-site parkingStore discountSchedule:Monday to FridaySupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Dartmouth, NS B3B 1R7: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 3 years (required)Shift availability:Day Shift (required)Work Location: In personExpected start date: 2023-09-25\",\n            \"location\": \"Akerley Blvd, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"F8FF6F701831FD05244547A16A379BF5\",\n            \"cityName\": \"526 Regent Street, Niagara-on-the-Lake, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e98f0b495831a664\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Vintage Hotels\",\n            \"rowSalary\": \"$16.65–$17.53 an hour\",\n            \"date\": 1694547030831,\n            \"dateOfPosted\": 1694547030637,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2525129,\n                    \"lon\": -79.0753177\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara-on-the-Lake\",\n                \"formattedAddress\": \"Regent St, Niagara-on-the-Lake, ON L0S 1J0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Niagara-on-the-Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Vintage Hotels is currently seeking full time Luxury Spa and Travel Advisors to join our growing Reservations team!Situated in the heart of Niagara, this is your chance to gain valuable experience within a collection of Niagara's top hotels!What you'll be doing:Answers the telephone, takes reservations, referring calls to the appropriate person/departments as necessary.Responds to Guest concerns and makes reservations for accommodations, spa, dining and theatre tickets.Performs accounting duties related to credit card approvals for reservations and daily cash reports as needed.Performs sales functions, processes expectancy reports, in-house daily lists, group rooming lists and occupancy reports.Process spa bookings and packages as required.Process forms and assist in booking purchase gift letters and donations.Processes mass mail outs for brochures, promotions, confirmation letters and special occasions for Lais Hotel Properties Limited.Respond to Guest complaints, requests and referrals as necessary.Reserve services/ amenities in conjunction with other packages being purchased.What You'll bring to the team:Excellent computer skills.Pleasant and professional telephone manner.Excellent communication skills both written and oral.Proven ability to provide excellent Guest service.Previous up-selling and/or sales experience is considered an asset.What's in it for you:Benefits & RRSP MatchingProfit SharingCareer advancement opportunitiesA tenured team to support your learning and developmentFree mealsCompany wide discountsTuition reimbursementWhile we encourage all interested candidates to apply, please note that only those selected for an interview will be contacted.Accommodations can be provided throughout the recruitment process upon request.Job Types: Full-time, PermanentSalary: $16.65-$17.53 per hourBenefits:Company eventsDiscounted or free foodEmployee assistance programLife insuranceOn-site parkingProfit sharingRRSP matchStore discountSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayWeekends as neededAbility to commute/relocate:Niagara-on-the-Lake, ON: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Regent Street, Niagara-on-the-Lake, ON\"\n        },\n        {\n            \"id\": \"2E2F3E037A758EB1459BA4FC1B93394F\",\n            \"cityName\": \"Purewater in Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=be62e0e3c390f8ac\",\n            \"jobName\": \"Customer Service Advisor (Permanent Full-Time)\",\n            \"companyName\": \"Purewater\",\n            \"rowSalary\": \"$18–$23 an hour\",\n            \"date\": 1694546879371,\n            \"dateOfPosted\": 1694546879174,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Purewater is Ottawa’s leading specialist in the service and maintenance of pools, hot tubs, and billiard tables, providing years of expertise and quality customer service. Purewater offers one of the largest selections of games tables, darts, chemicals, and parts.As a Purewater employee, you are a partner in our company's success. You will be a part of a fast-paced environment that is collaborative, challenging, and exciting.To keep up with growing demand, our service department is looking to add to their team. We are seeking a Customer Service Advisor to assist clients with troubleshooting, service requirements, and parts for their hot tub, pool, or billiard table. Using our state-of-the-art software system, you will schedule service calls, review sales orders, process transactions, and manage inventory.With in-house training and support, you will develop industry product knowledge that will ensure you can confidently assist our customers.Customer Service Advisorresponsibilities;Greet customers with a friendly attitude as they contact the service department by phone, email, or in personProvide customers with information about parts and service optionsConduct clerical duties, including filing, answering phone calls, responding to emails, and preparing documentsReview technicians' sales orders, process transactions, and send invoicesContact customers to remind them of upcoming service appointmentsHelp customers troubleshoot their technical issuesCustomer Service Advisorskills;Sound organizational skills and attention to detailExcellent verbal and written communication skillsStrong listening and comprehension skillsAbility to lift boxes up to 40lbsAdaptive and flexible in a fast-paced environmentProficient with computers and comfortable with learning new softwareProfessional phone etiquetteExceptional time managementPositive attitudeFrench is an asset, but not requiredWork RemotelyNoJob Types: Full-time, PermanentSalary: $18.00-$23.00 per hourSchedule:8 hour shiftMonday to FridaySupplemental pay types:Commission payWork Location: In person\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"AA823011BD3915ABF8E06E49D733B4D3\",\n            \"cityName\": \"48 Heritage Gate SE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=138b2990cd6acd4b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Perfect Home\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694546811255,\n            \"dateOfPosted\": 1694546811030,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.98854739999999,\n                    \"lon\": -114.0441291\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Heritage Gate SE, Calgary, AB T2H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Perfect Home is now seeking the right candidate for a full-time position as an Customer Service Representative at our Calgary location 3 days a week and 2 days in our Airdrie location.Applicants must be:Comfortable working in an exciting, fast-paced retail environmentHighly skilled in customer service (both by phone and email)Extremely organizedSkilled in time management and staying up to date with in-process files and follow upPassionate about providing excellent customer serviceAble to work independently and as a part of a teamReliableExperience in Customer service in a similar retail field (Furniture, appliances, high-end electronics sales, etc...Job duties include:Answering phones and assisting customers in-store with inquiries or directing incoming calls to the appropriate personsUpdating customers with ETA's on the arrival of their ordersData Entry using QuickbooksFilingPrinting price tagsOrganizing fabric samplesGeneral upkeep of floor detailJob Type / CategoryAs a thriving retailer in the fast-paced furniture industry, the role of Customer Service Representative is critical in ensuring our operations run smoothly and efficiently. The person in this position should have a desire to be a part of a winning team who is willing to go above and beyond to help drive our company toward further success and customer satisfaction.Job Types: Full-time, PermanentSalary: $18.00-$20.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftSupplemental pay types:Overtime payWork Location: In personApplication deadline: 2023-09-16Expected start date: 2023-09-22\",\n            \"location\": \"Heritage Gate SE, Calgary, AB\"\n        },\n        {\n            \"id\": \"C7847D70A24591F4AD6875D295AE6B0F\",\n            \"cityName\": \"6016 Yonge Street, North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=beabcd5e17f3e0a6\",\n            \"jobName\": \"Bi-Lingual Customer Service Representative (Korean And English)\",\n            \"companyName\": \"Hans Lee Insurance Agency\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694546617744,\n            \"dateOfPosted\": 1688059901930,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7542766,\n                    \"lon\": -79.40866609999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Yonge St, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Insurance office is looking for a candidate to fill a full time position. Candidate must be fluent in English and Korean.Candidate will be responsible for assisting clients with their insurance matters. No prior experience required, however previous office experience will be an asset.Candidate must have excellent computer and phone skills.All training will be provided on the job.Job Types: Full-time, PermanentSalary: From $17.00 per hourBenefits:Dental careExtended health careOn-site parkingSchedule:Day shiftMonday to FridayNo weekendsWork Location: In person\",\n            \"location\": \"Yonge Street, North York, ON\"\n        },\n        {\n            \"id\": \"2A91FB5BE94FD6019D1FD47EDF7A98DD\",\n            \"cityName\": \"Antigonish, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1c1b56e5ed91d71a\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"St. Francis Xavier University\",\n            \"rowSalary\": \"$15.93–$19.47 an hour\",\n            \"date\": 1694546281761,\n            \"dateOfPosted\": 1694546281429,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.62266049999999,\n                    \"lon\": -61.9928026\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Antigonish\",\n                \"formattedAddress\": \"Antigonish, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Antigonish County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Antigonish\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Posted: August 28, 2023 Application Deadline (extended): September 18, 2023 Customer Service Representative StFX Store NSGEU Regular Full-TimeClassification: Band 2Salary Rate: $15.93-19.47 (Based on 35 hours per week) Overview StFX is a top ranking Canadian university and we are seeking a Customer Service Representative to be a part of the team at the STFX Store and Academic Services. This opening is for a permanent, full time position. Reporting to the Manager, StFXStore, and operating in conjunction with co-workers within the store, the Customer Service Representative will be responsible for serving various needs of customers and clients of the store. Occasional overtime and alternating weekend work is expected. Responsibilities: Assisting customers in locating desired textbooks, trade books and supplies and in selecting a wide variety retail merchandise, including X-Rings Processing the sale of items via our POS System (BookLog) with timeliness, professionalism, and accuracy Answering phone and email inquiries and / or directing inquiries to appropriate personnel Maintaining a clean and tidy work and display environment. Building retail displays, stocking shelves and packing books and other merchandise for shipment. Providing service support and backfilling for the various store divisions as requested. Providing feedback to management, and area supervisors, arising via customer interaction. Qualifications/Skills: Excellent customer service skills with a focus on professionalism and quality control Excellent time management and organizational skills. Knowledge of Windows XP and MS Office Suite; proficiency in Outlook and Internet Explorer Must be able to work extended hours without sitting and able to lift 25-50lb. Commitment to learn and comply with both University and StFX Store Policies. Ability to work well with others in a cooperative, and often fast-paced, environment. Successful completion of at least one (1) year of post-secondary education would be an asset and a minimum of one (1) year experience in a similar retail environment is required. Application Instructions Closing date for applications is September 18, 2023 at 5:00pm. To apply please submit a letter of application and a resume in confidence to Human Resources, StFX University at careers@stfx.ca. Only those selected for an interview will be contacted. St. Francis Xavier University is located in Mi'kma'ki, the ancestral and unceded territory of the Mi'kmaq People. Our institution is committed to upholding the values of equity, diversity, inclusion and accessibility. We encourage applications from members of groups that have been historically disadvantaged and marginalized, including Indigenous persons (especially Mi'kmaq), racialized persons (especially African Nova Scotians), persons with disabilities, those who identify as women and/or 2SLGBTQIA+ and any others who would contribute to the diversity of our community. Please note that all qualified candidates are encouraged to apply; however, applications from Canadians and permanent residents will be given priority. We are also committed to the elimination of barriers to participation for persons with disabilities. Should you require an accommodation during the recruitment process, please contact Human Resources at hr@stfx.ca or 902-867-5038. About the StFX Store The STFX Store is the principal location for purchasing textbooks for all courses offered by StFX University, including distance courses offered by Continuing Education and Distance Education. The StFX Store also proudly offers a large assortment of StFX crested gifts, books by local authors, and adult and children's clothing. About St. Francis Xavier University Established in 1853, St. Francis Xavier University (StFX) is consistently recognized as one of the best universities in Canada. StFX exceeds the needs of today's undergraduates through providing the very best academic experience - outstanding teaching, exceptional hands-on research opportunities, and global exchanges - all within Canada's most vibrant and inspiring residential campus. Here, the focus is on the academic and the personal development of every student, making community and social engagement a large part of the learning experience. Our students are academically strong and highly engaged in every aspect of life, determined to make a positive impact on the world. In 2022, Maclean's annual university rankings put StFX #1 in student satisfaction and #2 in reputation across Canada in the primarily undergraduate category. For more, visit www.stfx.ca About Antigonish, Nova Scotia The beautiful and historic town of Antigonish is located within the northeastern corner of Nova Scotia. Only a 15-minute drive from the ocean and a two-hour drive to major urban centres, Antigonish is a family-friendly community with a diverse and growing population and provides access to excellent education at all levels. The town is surrounded by rolling countryside and beautiful beaches and is a hotspot for outdoor recreation, sports and other active lifestyle activities. Antigonish supports a vibrant culture in the arts with music, performing arts, visual arts and crafts, and fabulous festivals happening throughout the year. For more information visit www.townofantigonish.ca or www.visitantigonish.ca.\",\n            \"location\": \"Antigonish, NS\"\n        },\n        {\n            \"id\": \"405B7BC35C6C0E12575C235005C28D26\",\n            \"cityName\": \"3019 66 St NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5d53755dbe59db01\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Sweet Castle Bakery\",\n            \"rowSalary\": \"$15–$18 an hour\",\n            \"date\": 1694545108431,\n            \"dateOfPosted\": 1692846934383,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.6065656,\n                    \"lon\": -113.3801256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"24a St NW, Edmonton, AB T5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usSweet Castle Bakery is a small business in Edmonton, AB T6L 4B2. We are social, demanding, fast-paced, and our goal is to Join the Sweet Castle Bakery family, where French-inspired delights meet Edmonton's finest flavors. As the pioneer bakery in the city, we're renowned for crafting exquisite pastries and confections that evoke both nostalgia and innovation. If you're passionate about delivering unparalleled quality and service, and want to contribute to our legacy of delighting loyal customers while enchanting new ones, come be a part of our team and share in the artistry of baking excellence..Our work environment includes:Modern office settingFood providedCustomer Service RepresentativeResponsibilities:- Provide exceptional customer service to clients via phone, email, and chat- Respond to customer inquiries and resolve issues in a timely and professional manner- Analyze customer needs and recommend appropriate products or services- Process orders, returns, and exchanges accurately and efficiently- Maintain customer records and update information as needed- Collaborate with other team members to ensure customer satisfaction- Perform outbound calling to follow up on customer inquiries or resolve any outstanding issuesExperience:- Previous experience in a customer service role preferred- Strong communication skills, both verbal and written- Excellent problem-solving abilities- Ability to multitask and prioritize tasks effectively- Proficient in using computer systems and software applicationsIf you are a motivated individual with a passion for providing exceptional customer service, we would love to hear from you. Join our team and be part of a company that values its employees and offers opportunities for growth.Please note that this position may require occasional evening or weekend availability.To apply, please submit your resume and cover letter detailing your relevant experience. Only qualified candidates will be contacted for an interview.Job Type: Part-timePart-time hours: 25-30 per weekSalary: $15.00-$18.00 per hourBenefits:Store discountDay range:Monday to FridayWeekends as neededFlexible Language Requirement:French not requiredShift:Day shiftAbility to commute/relocate:Edmonton, AB T6L 4B2: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Street NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"D7C45ADFE9CB30AB128870353A47DDEF\",\n            \"cityName\": \"20 Marriott Drive, Moncton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=35d231e84a5c00dd\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Iaa, Inc.\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694544510380,\n            \"dateOfPosted\": 1688061060321,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.0878165,\n                    \"lon\": -64.7782313\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton, NB\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Urgently Hiring, Bilingual French-English, Permanent Full-Time $17/hrIAA, Inc., a leading provider of loss recovery services to the insurance industry in Canada, has an opening for a Customer Service Representative I at our facility in Moncton, NB.IAA is Canada's leading live and live-online salvage vehicle auction company with auction facilities across British Columbia, Alberta, Ontario, Quebec, and Atlantic Canada. IAA's national service offering allows sellers to standardize processes across the country and provides buyers with Canada's most extensive selection of salvage vehicles. IAA (NYSE: IAA) has nearly 4,000 talented employees and more than 200 facilities throughout the US, Canada, and the United Kingdom.The Customer Service Representative addresses all customer inquiries under the direction of the Office Supervisor, including all clerical duties needed in the office.Responsibilities include (but are not limited to the following):Apply knowledge of organization, product services and policies to provide a variety of customer support through mail, telephone and direct personal contactProcess orders and assignmentsEnter data into computer systemReference pricing and delivery informationPerform word processing assignments, filing and related clerical dutiesRespond to customer questions, complaints and requestsSet up new records and maintain existing recordsPerform word processing assignments, filing and related clerical dutiesProcess all necessary paperwork in preparation for auction day, securing necessary approvalsPerforms other duties as assignedEducation & Experience:High School diploma or equivalent experience preferred0-2 years’ previous work experienceJob Requirements:Able to communicate effectively with customersBilingual in English/FrenchAbility to function well as part of a teamBasic computer skillsTime management skillsPositive attitudeAbility to work independentlyClear communication skillsProfessional and clean appearance18 years of age or olderIn return for your excellent skills and abilities, we offer a benefits package including: health insurance, RRSP Employer Matching Contributions, STD/LTD, Life Insurance/AD&D, Employee Stock Purchasing Options.IAA is committed to providing equal employment opportunities regardless of race, religion, creed, color, sex, age, national origin, disability, sexual orientation, gender identity, genetic information, veteran status, citizenship status, or marital status.IAA is a drug-free workplace. EEOE#LI-AS1Job Types: Full-time, PermanentPay: $17.00 per hourBenefits:Dental careEmployee assistance programExtended health careLife insuranceVision careSchedule:8 hour shiftMonday to FridayEducation:Secondary School (preferred)Experience:Customer Support & Client Services Occupations: 1 year (required)Language:French (required)Work Location: In person\",\n            \"location\": \"Moncton, NB\"\n        },\n        {\n            \"id\": \"A49332E29F2B0C8ADA0A672E0A1D7FD4\",\n            \"cityName\": \"1415 Alberni Highway, Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7188c1e6a97f8f54\",\n            \"jobName\": \"Customer Service Supervisor\",\n            \"companyName\": \"Mid Island Liquor\",\n            \"rowSalary\": \"From $19.25 an hour\",\n            \"date\": 1694544207636,\n            \"dateOfPosted\": 1694544207454,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3045941,\n                    \"lon\": -124.3349719\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Parksville\",\n                \"formattedAddress\": \"Alberni Hwy, Parksville, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Parksville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Liquor is looking for a full-time Customer Service Supervisor at our Parksville Liquor Store.Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you!The Customer Service Supervisor position is a developmental role whereby the aim is to move the successful candidate to an Assistant Store Manager (ASM) position within a 12-18 month timeframe (term will be extended in the event there are no ASM positions available within 12-18 months).Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in organizing and directing the activities and operations of the store including but not limited to ordering/receiving merchandise and supplies, organizing and conducting inventory, staff supervision and training, and acting as Health and Safety Committee Liaison.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Supervisor today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. You have a minimum of 1 year liquor retail experience and a valid Serving it Right Certificate (or be willing to get certified prior to your first day).Who we are:Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve.Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op).We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.Job Types: Full-time, Fixed term contractContract length: 12-18 monthsSalary: From $19.25 per hourBenefits:Company pensionDental careDisability insuranceEmployee assistance programExtended health careLife insuranceOn-site parkingPaid time offStore discountTuition reimbursementVision careSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Alberni Highway, Parksville, BC\"\n        },\n        {\n            \"id\": \"6B7A0768C0DCF0C88DB0F4CAA50D06B0\",\n            \"cityName\": \"95 Brown's Line, Etobicoke, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3006e073b47fca5a\",\n            \"jobName\": \"Part Time Call Center Agent\",\n            \"companyName\": \"Brink's Canada Limited\",\n            \"rowSalary\": \"$22–$23 an hour\",\n            \"date\": 1694544181573,\n            \"dateOfPosted\": 1694544181377,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.60122810000001,\n                    \"lon\": -79.54501859999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Brown's Line, Toronto, ON M8W, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Summary:The Brink’s National Client Services (BNCS) department is dedicated to putting the customer at the centre of everything we do while ensuring we deliver Best in Class customer experiences! We are looking for individuals to join our team who are passionate about customers, like to solve problems and offer effectivesolutions.Availability: Monday-Sunday - 10:00-18:00, 11:00-19:00 and 13:00-21:00 shifts and either a Saturday or Sunday shift each week.Location: Etobicoke OntarioKey Responsibilities:Handle inquiries from our internal and external customers relating to our products and services via phone and emailTrouble shoot technical issues with both customers and crew members on a wide range of issues critical to business continuanceEngage with a variety of internal partners to find timely resolution on customer requests and concernsWork within a specified framework and processes to diagnose and resolve issuesExecute the delivery of specific reports through the dayBe engaged to support adhoc projects and be the primary point of contact for customer outreachMust Have Qualifications:A passion for delivering exceptional serviceA positive attitude and a desire to seek ways to improve processes and offer suggestions on how to make things better for all2+ years' experience in a Call Centre, Customer Facing role or Help desk environmentCalm demeanor with the ability to work under pressure and deliver on tight timelinesThe ability to quickly pivot from a technical issue to a billing concern, a phone call to an emailYou are a team player who believes that we win as a team or not at allSome technical savvy and the ability to walk a customer through to a solution over the phoneEffective communication skills both verbal and written – can deliver a message in a concise and easily digestible manner for a wide audienceAbility to work in a 24/7/365 day operation where shifts are scheduled based on business needsExperience working with technologyNice to Have Qualifications:Experience working within the transportation/security industryJob Type: Part-timePart-time hours: 25 per weekSalary: $22.00-$23.00 per hourSchedule:Day shiftEvening shiftMonday to FridayMorning shiftNight shiftWeekends as neededAbility to commute/relocate:Etobicoke, ON M8W 3S2: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (required)Work Location: In person\",\n            \"location\": \"Brown's Line, Toronto, ON\"\n        },\n        {\n            \"id\": \"D74DF14A681AAEC18B0F5EC36405BD6D\",\n            \"cityName\": \"144 Charles St W, Kitchener, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=08aa0ed8b7aa3c4c\",\n            \"jobName\": \"Part-Time U-Haul Rental/Customer Service Representative\",\n            \"companyName\": \"U-Haul Moving & Storage Of Kitchener\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694544175462,\n            \"dateOfPosted\": 1648574413036,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4504563,\n                    \"lon\": -80.4941865\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kitchener\",\n                \"formattedAddress\": \"Charles St W, Kitchener, ON N2G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kitchener\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking a part time Customer Service Representative with flexible hoursMUST have a valid drivers license, minimum G2Primary responsibilities include:Support the site manager with facility operationsAnswer phone inquiries from active and prospective customersShow storage units and explain terms of rental agreementPrepare rental contracts for customersPerform general routine property clean up and minor repair workEnsure all vacant storage units are clean, dry, secure, and available for new customersClick on the link below to learn more about the job.https://www.youtube.com/embed/Z7bFOd9Y2ZUU-Haul offers:Very Competitive PayFlexible HoursUniforms ProvidedRequirements:2+ years of customer service experienceBasic computer skills and knowledgeWell-developed oral, written, and presentation skills, as well as the ability to interact with othersAbility to speak clearly and persuasively in positive or negative situations and responds well to questionsValid driver’s license and the ability to maintain a good driving record to operate commercial motor vehiclesAdhere to all local state and federal vehicular regulations while drivingEducation/Training:High School Diploma or equivalentWork Environment:The work involves moderate risks or discomforts which require special safety precautions, e.g., working around moving parts or machines, fumes or irritant chemicals. May be required to use protective clothing, or gear such as masks, goggles, gloves or shields.Physical Demands:The work requires some physical exertion such as long periods of standing, walking, recurring bending, crouching, stooping, stretching, reaching or similar activities, and lifting a minimum of 50 lbs assisted or unassisted.U-Haul is an equal opportunity employer. All applications for employment will be considered without regard to race, color, religion, sex, national origin, physical or mental disability, veteran status, or any other basis protected by applicable federal, provincial, state, or local law. Individual accommodations are available on requests for applicants taking part in all aspects of the selection process. Information obtained during this process will only be shared on a need to know basis.COVID-19 precaution(s):Personal protective equipment provided or requiredPlastic shield at work stationsSocial distancing guidelines in placeSanitizing, disinfecting, or cleaning procedures in placeJob Duties:Answer incoming customer inquiriesRecord and modify customer information within the databaseEngage with clients in a friendly and professional manner while actively listening to their concernsOffer support and solutions to customers in accordance with the company's customer service policiesOther duties as requestedWork RemotelyNoJob Types: Part-time, PermanentSalary: From $16.00 per hourSchedule:8 hour shiftMonday to FridayWeekend availabilityCOVID-19 considerations:All customer are required to wear a mask, sanitizer available for all customers and staffApplication question(s):Drivers license is requiredEducation:Secondary School (required)Experience:customer service: 1 year (preferred)Licence/Certification:drivers license (required)\",\n            \"location\": \"Charles St W, Kitchener, ON\"\n        },\n        {\n            \"id\": \"0036371CF53397DBA6F937B6DFC2A2BA\",\n            \"cityName\": \"6555 Ch De La Côte De Liesse, Saint-Laurent, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a97de4bbbaea51ff\",\n            \"jobName\": \"Sale/Purchasing And Customer Service Support\",\n            \"companyName\": \"Montreal Polymers\",\n            \"rowSalary\": \"$21–$25 an hour\",\n            \"date\": 1694544086729,\n            \"dateOfPosted\": 1693696247618,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4636212,\n                    \"lon\": -73.7202654\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Ch De La, 10592 De la Côte-de-Liesse Rd, Lachine, QC H8T 1A4, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:· Works under the direction of the CEO and Sales and Purchasing Manager· Assists CEO with sales and marketing efforts to ensure wider reach to clients and potential suppliers· Identifies new markets and potential customers/suppliers, finds new leads· Works in ERP system and ensures accurate data entering,· Manages CRM pipeline for sales and purchasing.· Attends plastic exhibitions, conferences and meetings under the direction of the CEO and Sales/Purchasing Managers. Goes on trips with CEO and Sales/Purchasing Managers to acquire new suppliers and customers· Develops positive relationship with clients and suppliers· Ensures the execution of sales and purchasing deals· Performs other duties as assigned by managementThis description reflects the general details and should not be considered as a detailed description of all work requirements that may inherent in the job nor shall be construed as giving exclusive title to every function described.Qualification & Experience Requirements:· Demonstrated ability to learn software applications and spreadsheet processes and performing maintenance of production data files required.· Intermediate to advances skills with Excel required· Good knowledge of the supply chain processes· Project management experience, experienced use of ERP systems· Must have strong math skills· Ability to work with little supervision while handling multiple prioritiesMust have well developed telephone skills and etiquette and present high level of professionalismRequired Competences:· Good coordination and organizational abilities· Excellent written and verbal communication in English and French· Decisive, assertive, detail oriented, accurate, analytical, deadline-oriented· Customer focused· Excellent problem solving skills· Project management skillsJob Type: Full-timeSalary: $21.00-$25.00 per hourExpected hours: 40 per weekSchedule:Monday to FridayAbility to commute/relocate:Saint-Laurent, QC: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:Sales: 1 year (preferred)Language:English, French (required)Willingness to travel:25% (preferred)Work Location: In person\",\n            \"location\": \"Ch De La Côte De Liesse, Saint-Laurent, QC\"\n        },\n        {\n            \"id\": \"5C21969AB4DD85A00D3D216C667B5064\",\n            \"cityName\": \"579 Kerr St, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a4c95fb3663676a7\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Popeyes Louisiana Kitchen\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694544063453,\n            \"dateOfPosted\": 1659656452705,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4453934,\n                    \"lon\": -79.6845634\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Kerr St, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*The Team member with Popeyes will have skills and behaviors to create memorable experiences for our Guests. A Team member is passionate about providing Guests with the best experience possible. Must be able to follow Cajun Hospitality: Smile, make eye contact, greet the Guest, repeat the order, and thank the Guest. Team members must enjoy working with people who take food seriously yet have fun preparing and serving it. Must be committed to contributing to the collaborative spirit of the team, be energized by the opportunity to learn, grow, and explore your career potential.Essential Duties and ResponsibilitiesGreets Guests with a smile while receiving orders and processing paymentsPrepares and packages food and drink productsResponsible for maintaining the cleanliness of the restaurant, including dining room, restroom & exteriorMaintains health and safety standards in work areasDemonstrate knowledge of the brand and menu itemsCheck food quality and food temperature throughout the day to ensure the food is fresh and safe to serveUnloads and stocks inventory items as neededPrompt and regular attendance on assigned shiftsActs with integrity and honesty, and promotes the culture of PopeyesQualifications and skillsMust be at least sixteen (16) years of ageComfortable working in a fast paced environmentAbility to interact in a positive and professional manner with Guests and coworkersWillingness to learn all areas of restaurant operations & work multiple stationsAvailable to work evenings, weekends and holidaysJob Types: Full-time, PermanentSalary: $15.00-$17.00 per hourAdditional pay:Bonus payTipsBenefits:Company eventsDental careDiscounted or free foodExtended health careFlexible scheduleLife insuranceOn-site parkingProfit sharingStore discountJob Types: Full-time, Part-timeSalary: $15.00-$16.00 per hourBenefits:Dental careDiscounted or free foodExtended health careOn-site parkingVision careFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftEvening shiftSupplemental pay types:TipsAbility to commute/relocate:Oakville, ON: reliably commute or plan to relocate before starting work (required)\",\n            \"location\": \"Kerr St, Oakville, ON\"\n        },\n        {\n            \"id\": \"A2ACA65D29CC0129E2F4F4A9887B1EC0\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cec8d4d48b17dc50\",\n            \"jobName\": \"Mandarin/English Bilingual Customer Service/Scheduler\",\n            \"companyName\": \"Growth Generation Academy\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694544057069,\n            \"dateOfPosted\": 1694544056897,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Requirements:* Chinese/English Bilingual fluently is a must* Experienced in educational organization as an administrator or scheduler at least one year* Familiar with wechat, classin, zoom, google classroom, whatsapp and other app or platform* Good at communication with teachers, tutors and students, parents* Good team player* Detail, specific and accurate* Good at quick respond to customer needs* Good at use of computer and relevant app.* A quick learnerJob requirements:* Communicate between teacher and students, parents for the students' homework, teaching plan, scheduling and specific teaching requirements.* other related tasks* Manage students' homework situation and communicate with parents* Working hour: Monday to Friday at 7am-10am, 6:30pm-9:30pm. Saturday: 7am-10am, 6:30pm-8:30pmJob Type: CasualSalary: $15.50-$16.50 per hourSchedule:Monday to FridayMorning shiftNight shiftWeekends as neededApplication question(s):Do you write and speak English and Mandarin fluently?Do you do job accurately?* Are you good at communication with people？Did you ever work as customer service in educational organization or scheduler, administrator before?Do you do job detail, specific and accurateCan you work: Monday to Friday at 7am-10am, 6:30pm-9:30pm. Saturday: 7am-10am, 6:30pm-8:30pmEducation:Bachelor's Degree (preferred)Experience:scheduler, administrator, customer service: 1 year (preferred)Work Location: Remote\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"BAD6C370AF56BB921FD00913FF4AC7C6\",\n            \"cityName\": \"771 Bedford Highway, Bedford, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e6bce8503cf641db\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Route 66 North\",\n            \"rowSalary\": \"$14.50–$15.00 an hour\",\n            \"date\": 1694543895947,\n            \"dateOfPosted\": 1690835398507,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.72157869999999,\n                    \"lon\": -63.6713822\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bedford\",\n                \"formattedAddress\": \"Bedford Hwy, Bedford, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bedford\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usRoute 66 North is a Veteran-owned and operated motorcycle clothing & accessories store in Bedford, NS. We are innovative, customer-centric, and fun.Our work environment includes:Regular social eventsCasual work attireRelaxed atmosphereOn-the-job trainingCompany perksFlexible working hoursSafe work environmentLively atmosphereOur organization is seeking a Customer Service Representative to join our friendly team. The ideal candidate will take ownership over their work and enjoy the challenge of working in a dynamic and busy office environment. The successful candidate will be responsible for answering customer questions regarding our products and services, helping solve challenges they may be experiencing and prioritizing support requests.Responsibilities:Handle all customer inquiries in a timely and effective manner.Assess and resolve customers' issues, complaints, and problems.Provide regular feedback to management regarding customer satisfaction levels.Gather data on customer satisfaction levels.Use and train on all applicable software packages used by the organization.Verify the facts in situations to ensure they are correct and verifiable.Must be at least 19 years of age (to serve alcohol on our waterfront patio)Other duties as required.Job Types: Part-time, Casual, SeasonalContract length: 2 monthsPart-time hours: 24-30 per weekSalary: $14.50-$15.00 per hourBenefits:Casual dressCompany eventsDiscounted or free foodOn-site parkingSchedule:Day shiftWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Bedford, NS B4A 1A4: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Bedford Highway, Bedford, NS\"\n        },\n        {\n            \"id\": \"C4DAEA62FA15ECCAE1EE18E6F0810808\",\n            \"cityName\": \"637 Berford St, South Bruce Peninsula, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e9d61b430d09d129\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"New Orleans Pizza\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694543721583,\n            \"dateOfPosted\": 1690812654279,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.7375266,\n                    \"lon\": -81.1405109\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Wiarton\",\n                \"formattedAddress\": \"Berford St, Wiarton, ON N0H 2T0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Bruce County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Wiarton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"I am seeking part time help for days, evenings and weekends. 4-5 shifts a week, more hours available if you are willing to work days and nights. 15-20+ hours available. Candidates will be required to work as a team. Previous experience handling money would be an asset.Job Type: Part-timePart-time hours: 15-20 per weekSalary: From $17.00 per hourWork Location: In person\",\n            \"location\": \"BERFORD ST, Wiarton, ON\"\n        },\n        {\n            \"id\": \"10D7F0E095AADE7C8C711330ED20A7E6\",\n            \"cityName\": \"6380 50 Avenue, Red Deer, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fe0683610fc653c5\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Sobeys\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694543679941,\n            \"dateOfPosted\": 1693697584497,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.2720364,\n                    \"lon\": -113.8025523\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Red Deer\",\n                \"formattedAddress\": \"5301 46 Ave, Red Deer, AB T4N 3N3, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Red Deer\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate / CashierWe offer competitive salary and opportunities for professional growth.The cashiers responsibility is mainly to help customers during the checkout process. As a cashier, your job will be serving customers, handling money, counting change, accepting coupons, bagging, collecting carts, and occasional courtesy tasks. We require all staff to maintain a clean and tidy workspace at all times.As a team we must stay professional at all times, calm down situations, and always make the customers feel welcome. Job Types: Casual, Part-timePart-time hours: 20-32 per weekSalary: From $15.00 per hourExpected hours: 20 – 32 per weekBenefits:On-site parkingDay range:HolidaysMonday to FridayWeekends as neededFlexible Language Requirement:French not requiredShift:4 hour shift8 hour shiftAfternoon shiftDay shiftEvening shiftMorning shiftWork setting:Grocery storeAbility to commute/relocate:Red Deer, AB T4N 4C6: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (required)Night Shift (required)Work Location: In person\",\n            \"location\": \"Avenue, Red Deer, AB\"\n        },\n        {\n            \"id\": \"396820766ED15A2C082ACD845CF1A1BA\",\n            \"cityName\": \"CHC Paint & Body Shop Supplies in Woodbridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a82e8ceb3da53454\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Chc Paint & Body Shop Supplies\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694543662244,\n            \"dateOfPosted\": 1694543662053,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7761753,\n                    \"lon\": -79.60924299999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Woodbridge, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usCHC Paint & Body Shop Supplies is a small business in Woodbridge, ON L4L 4Y4. We are professional, agile, innovative, and our goal is to Here we believe that you will grow with the company. We will provide you with the training and tools you need to become the best version of yourself as it fits with the CHC culture and mold. We’re only successful when you are. .In your role as Customer Sales Rep you will be answering incoming customer phone calls and taking orders. You’ll also be serving walk-in customers throughout the day. You’ll need to be able to answer a basic range of questions on products and their use. You will be responsible for utilizing the POS & inventory system to complete day-to-day tasks. You will be directing all incoming and outgoing activity in the branch. Overseeing drivers, managing inventory, and maintaining a positive attitude are all essential to this position.Job Type: Full-timeSalary: From $18.00 per hourBenefits:Company eventsDental careOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Woodbridge, ON L4L 4Y4: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Licence/Certification:Driving Licence (required)Work Location: In person\",\n            \"location\": \"Woodbridge, ON\"\n        },\n        {\n            \"id\": \"53B7DD2250EEFDCC7C79AC47C7682B8E\",\n            \"cityName\": \"1200 Speers Road, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b5e0956d9a11ec85\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Chc Paint & Body Shop Supplies\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694543659311,\n            \"dateOfPosted\": 1694543659105,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4274228,\n                    \"lon\": -79.70875029999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Speers Rd, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usCHC Paint & Body Shop Supplies is a small business in Woodbridge, ON L4L 4Y4. We are professional, agile, innovative, and our goal is to Here we believe that you will grow with the company. We will provide you with the training and tools you need to become the best version of yourself as it fits with the CHC culture and mold. We’re only successful when you are. .In your role as Customer Sales Rep you will be answering incoming customer phone calls and taking orders. You’ll also be serving walk-in customers throughout the day. You’ll need to be able to answer a basic range of questions on products and their use. You will be responsible for utilizing the POS & inventory system to complete day-to-day tasks. You will be directing all incoming and outgoing activity in the branch. Overseeing drivers, managing inventory, and maintaining a positive attitude are all essential to this position.Job Type: Full-timeSalary: From $18.00 per hourBenefits:Company eventsDental careOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Oakville, ON L6L 2X4: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Licence/Certification:Driving Licence (required)Work Location: In person\",\n            \"location\": \"Speers Rd, Oakville, ON\"\n        },\n        {\n            \"id\": \"89586E33CC45C0BF6FD7FD398CCD44A2\",\n            \"cityName\": \"50 Kennedy Rd S, Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bad28675e043a4ec\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"D Light Inc.\",\n            \"rowSalary\": \"$16.00–$20.99 an hour\",\n            \"date\": 1694543658623,\n            \"dateOfPosted\": 1694543658431,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6560885,\n                    \"lon\": -79.6955164\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Kennedy Rd S, Brampton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usD LIGHT INC. is a small business in Brampton, ON L6W 3R7. We are professional, agile and our goal is to D-LIGHT INC is located in Kennedy Square mall (Brampton), Toronto, Mississauga and CherryHill Village Mall (London) is happy to offer its expertise in providing the best quality of TV SERVICE. Our tried and true system is based on many years of cumulative experience. We pride ourselves on setting up our clients for success..Our work environment includes:Modern office settingFood providedJob Title: Customer Service RepresentativeResponsibilities:- Provide exceptional customer service by responding to customer inquiries and resolving issues in a timely and professional manner- Handle a high volume of incoming calls and emails from customers- Assist customers with product information, order status, and general inquiries- Process orders, returns, and exchanges accurately and efficiently- Maintain customer records and update information as needed- Collaborate with other departments to ensure customer satisfaction- Stay up-to-date on product knowledge and company policies to provide accurate information to customers- Identify opportunities for process improvements to enhance the customer experience- Can handle store and over the phone customer-FLEXIBLE TO WORK IN OTHER BRANCH OF THE COMPANY- TECH SAVY IS A PLUSQualifications:- High school diploma or equivalent required; associate's degree preferred- Previous experience in customer service or a related field is a plus- Excellent communication skills, both verbal and written- Strong problem-solving skills and the ability to think quickly on your feet- Ability to multitask and prioritize tasks in a fast-paced environment- Attention to detail and accuracy in data entry and order processingWe offer competitive pay, comprehensive training, and opportunities for career growth within our organization. If you are passionate about providing exceptional customer service and enjoy working in a dynamic team environment, we would love to hear from you.To apply, please submit your resume and cover letter highlighting your relevant experience and why you are interested in this position.Job Type: Part-timePart-time hours: 8-25 per weekPay: $16.00-$20.99 per hourBenefits:Store discountSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayMorning shiftNight shiftOn callOvertimeWeekends as neededSupplemental pay types:Bonus payCommission payOvertime paySigning bonusTipsExperience:Call center: 1 year (required)Customer service: 1 year (required)Work Location: In personExpected start date: 2023-09-18\",\n            \"location\": \"Kennedy Rd S, Brampton, ON\"\n        },\n        {\n            \"id\": \"149742B5A6F82AD3F2A34161E04C4BAF\",\n            \"cityName\": \"759 Yates St, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dc38e8ceb6bbd640\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Peninsula Co-Op\",\n            \"rowSalary\": \"$17.00–$20.44 an hour\",\n            \"date\": 1694543658153,\n            \"dateOfPosted\": 1694543657968,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4255171,\n                    \"lon\": -123.3574492\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Yates St, Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Join our Team! Peninsula Co-op, with a central support office in Victoria, British Columbia and locations throughout Vancouver Island, is a dynamic Co-operative with annual sales in excess of $260 million. As we’ve grown and evolved, our collective roots now date back nearly 60 years, yet we remain a locally-focused Co-op with more than 116,000 members and ambitious plans to continue growing the business. Today Peninsula Co-op encompasses 18 retail gas centres, 9 Liquor Stores, aFood Centre, Commercial Cardlocks and Home Heating services.Peninsula Co-op is inviting applications for the position of Customer Service Representative at our newly acquired Yates Liquor Store (formally Liquor Express) located at 759 Yates Street, Victoria. This is a permanent, part-time role, 8-24 hours each week, applicants must be available for evenings and weekends.Applicants must be at least 19 years of age. WHO WE’RE LOOKING FOR We are a customer first liquor store looking for an individual to join our committed and engaged environment. We have an open, team, and customer-oriented culture that offers career growth and professional development. We are looking for an enthusiastic customer service professionals who:Always look for ways to be helpful and go out of their way to assist others; consistently politeGood with numbers and can handle cash and other basic numerical calculations quickly and accuratelyScan items and process transactions in an accurate and efficient manner including cash, credit and debit transactions and gift card activationsLook out for their safety and the safety of othersValues integrity and honesty; someone to admire and emulateUse your product knowledge to assist customers and answer questionsMust be able to pass a criminal record check.Serving it right certificate required.WHAT YOU’LL BE DOING Besides working with the best group of team mates and serving fantastic customers, you will be cleaning, and stocking the store, and generally ensuring our customers are taken care of and the location is clean and safe. We’ll also train and develop you for Shift Supervisor, Assistant Manager, and Site Manager opportunities if you are looking for advancement! We love to promote from within & over 70% of our leaders started with our organization in roles just like this one!WHAT WE OFFER In addition to a starting wage between $17.00 – $20.44 per hour (experience-based), Peninsula Co-op provides a competitive total compensation package that includes:Great careers and long-term opportunity for personal and professional growthProfit sharing paid four times a year!D 100 - 2261 Keating X Road, Saanichton, BC, V8M 2A5Tel 250.652.5752 peninsulaco-op.comMoving ahead, by giving back EFAPHealth & Wellness reimbursements (gym membership, yoga class, art classes etc.)Educational assistance & tuition reimbursement (100% covered)Social events (Sporting events and concert tickets, company outings)Volunteer opportunities supporting our local community events and charities!Peninsula Co-op is an equal opportunity employer. We take great pride in being a safe and inclusive workplace; supporting and celebrating the diversity of our team. We are committed to every staff member enjoying their experience working with Peninsula Co-op. We reward hard work, commitment, and results.HOW TO APPLY Any way you like! On-line through Indeed, or at www.peninsulaco-op.com. or Jen in Human Resources, 778-426-8120 if you have any questions. Posted: September 12, 2023D 100 - 2261 Keating X Road, Saanichton, BC, V8M 2A5Tel 250.652.5752 peninsulaco-op.comMoving ahead, by giving back Job Types: Part-time, PermanentPart-time hours: 8-24 per weekSalary: $17.00-$20.44 per hourBenefits:Company eventsEmployee assistance programProfit sharingTuition reimbursementWellness programSchedule:Evening shiftEvery WeekendNight shiftAbility to commute/relocate:Victoria, BC V8W 0E2: reliably commute or plan to relocate before starting work (required)Application question(s):Do you have Serving it Right Certification?Are you legally entitled to work in Canada?Work Location: In person\",\n            \"location\": \"Yates St, Victoria, BC\"\n        },\n        {\n            \"id\": \"699996A6B9DF1E3D0A8D7723443ED515\",\n            \"cityName\": \"4700 Kingsway, Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=770c4757b88c183f\",\n            \"jobName\": \"Castella Cheesecake Hiring Cashiers/Customer Service\",\n            \"companyName\": \"Castella Cheesecake Inc.\",\n            \"rowSalary\": \"$17.50–$20.00 an hour\",\n            \"date\": 1694543628632,\n            \"dateOfPosted\": 1694543628439,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.22315889999999,\n                    \"lon\": -122.9831859\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Kingsway, Burnaby, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Locations for hiring:Castella Cheesecake Metrotown StoreWith the rapid expansion of the company.Our little bakery brand is hiring Front Cashier/Customer Service. We are looking for experienced people join in our team.Job Description: -Will be working as store front staff (cashier/customer service）Salary：Starting Hourly wage 17.50-20 /hr (tips included) based on experienceExtended health, dental and vision benefit available after 12 months.Responsibilities· Manage transactions with customers using card machine· Sell goods and ensure pricing is accurate· Collect payments whether credit or debit· Issue receipts, refunds or change· Cross-sell products and introduce new ones· Resolve customer complaints, guide them and provide relevant information· Greet customers when entering or leaving the store· Maintain clean and tidy checkout areas· Track the inventory daily· Bag, box or gift-wrap packagesRequirements:Holding work permit or PR or CitizenAble to work full day shifts ( 5 days full time 8hr/day). Available to work over-time when required.Able to work both weekend.Have access to a daily vehicle or can transit to work on timeObtained Food Safe Level 1 or plan to obtain one on your own within first one months of hiring.Speaking English fluently.Passion to pursue your career as an entrepreneur. Work conscientiously and responsibly.Willing to learn new skill sets and subjects constantly.Please apply by email. ( Include your resume + state your availability and length of time intended to work)Potential applicants will be contacted by text message/call to schedule for an interview. Thanks!Job Types: Permanent, Full-timeSalary: $17.50-$20.00 per hourBenefits:Store discountFlexible Language Requirement:French not requiredShift:8 hour shiftExperience:food and beverage customer service: 2 years (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In personExpected start date: 2023-09-20\",\n            \"location\": \"Kingsway, Burnaby, BC\"\n        },\n        {\n            \"id\": \"BF648A77D81727602AB57816C27FB4EA\",\n            \"cityName\": \"517 King St, Bridgewater, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=046430a0811bee71\",\n            \"jobName\": \"Customer Service Assistant\",\n            \"companyName\": \"Northwood Custom Jewelry\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694543052021,\n            \"dateOfPosted\": 1694543051845,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.3850772,\n                    \"lon\": -64.5265088\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bridgewater\",\n                \"formattedAddress\": \"King St, Bridgewater, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bridgewater\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Overview: We're searching for a dedicated and charismatic individual to join our team as a full-time Customer Service Representative. This role is the heart of our operation, ensuring that every customer feels the warmth and care that defines our brand. If you have a passion for helping customers, an interest in learning about our unique products, and can handle multiple tasks reliably, we want you to be part of our team.Key Responsibilities:Customer Care: Provide exceptional customer service in person, over the phone, and via email, creating a welcoming and inclusive atmosphere.Shipping and Receiving: Manage shipping and receiving processes with precision to ensure the safe arrival of our beautiful jewelry.Order Organization: Maintain order organization within the office to streamline daily operations.Showroom Care: Contribute to the presentation of our jewelry cases and showroom, creating a captivating experience for our customers.Miscellaneous Tasks: Be ready to assist with various duties, including inventory, pricing, and store setup/display creation.Online Tools: Utilize various online tools for shipping, communication, and organization, with a willingness to adapt to new platforms.Communication Skills: Demonstrate excellent verbal and written communication skills to engage effectively with customers and team members.Self-Sufficiency and Time Management: The ideal candidate should possess strong organizational skills and self-discipline to efficiently manage their daily tasks. You will be responsible for various aspects of customer service, office organization, and more. Being able to prioritize and manage your workload independently is a crucial skill to thrive in this role.Reliability: Commit to a full-time schedule, Monday to Friday, from 9:00 AM to 5:30 PM, ensuring consistent and dependable presence.Additional Considerations:We are a jewelry store that sells many custom wedding and engagement rings. We often work with same sex couples and any employee must be able to serve all couples with the same care and enthusiasm. Love is love.We have a 40lb dog that works with us at the location. She is hypo-allergenic and very friendly, and she will want to be part of your day.About Us: Since our founding in 2012, Northwood Custom Jewelry has been crafting fine jewelry with a focus on ethical materials. Located on the picturesque south shore of Nova Scotia in Bridgewater, we are a small, close-knit team dedicated to celebrating love in all its forms. From crafting custom wedding and engagement rings to serving diverse couples, we believe that love knows no bounds.If you're ready to be part of our authentic and passionate team, where each day brings opportunities to create something special, we invite you to apply. Join us in spreading love through the artistry of custom jewelry while enjoying a reliable full-time schedule.Please reply with your resume along with a short introduction on why you feel you'd be a good fit for this position.Job Type: Full-timeSalary: $17.00 per hourBenefits:Dental careExtended health careOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Bridgewater, NS: reliably commute or plan to relocate before starting work (required)Application question(s):Can you tell us why you're interested in this position and why you feel you'd be a good fit with our team?Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"King St, Bridgewater, NS\"\n        },\n        {\n            \"id\": \"F6384D67F9776B36921174FCB0F33862\",\n            \"cityName\": \"Happy Valley-Goose Bay, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=689e917569a63b1d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Enterprise Holdings\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694543042060,\n            \"dateOfPosted\": 1694543041881,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.3016826,\n                    \"lon\": -60.3260842\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Happy Valley-Goose Bay\",\n                \"formattedAddress\": \"Happy Valley-Goose Bay, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 10\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Happy Valley-Goose Bay\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" The Customer Service Representative will provide a high level of customer service by assisting both internal and external customers, primarily face-to-face, supporting their branch and rental needs. The CAR Sr will gain knowledge through local training and hands-on experience to provide administrative support, service customers, and act as a rental back-up in a large home city branch or airport location. This role is available as regular part time  Opening available at the following branch location: 6 Vulcan Rd, Happy Valley-Goose Bay, NL A0P 1C0 This is a part time position that pays $19.00 / hour We offer:  Employee discount Retirement savings plan Training and development Responsibilities: Take incoming calls- reservations, rate quotes, general questions and answers, provide information and resolution for customers, other branches, insurance companies, dealerships, repair shops and other vendors  Manage outgoing calls for callback management, A/Rs and miscellaneous calls as assigned  Provide a high level of customer service by assisting customers and assessing their rental needs in person and over the phone  Meet and greet customers in a friendly and timely manner  Provide directions and general assistance  Assist to assess condition of rental upon return  Process returns, check-ins and exit kiosk transactions  Effectively market the company while picking up customers up and/or dropping off customer in a safe and courteous manner and assisting customers as needed  Understand and communicate rental terms and conditions, vehicle features and other services  May sell optional protection products, upgrades, fuel options and other additional equipment  Responsible for notifying Management of any known vehicle problems and any required vehicle maintenance  Clean vehicle interior and exterior by hand or by operating washing equipment when needed  Perform various administrative and basic accounting functions such as: research and billing support tasks, accounts receivables, transfer and key logs, run miscellaneous reports, supply maintenance, process customer billing  Perform miscellaneous and backup duties job-related duties as assigned  Equal Opportunity Employer/Disability/Veterans Qualifications: Must be at least 18 years of age. High school diploma or above required; some college preferred Must have at least 1 year prior customer service, retail, or administrative support experience Must have a valid Class 5 drivers license with no more than 2 moving violations and/or at-fault accidents on driving record in the past 3 years No drug or alcohol related conviction on driving record in the past 5 years Must be authorized to work in Canada and not require work authorization sponsorship by our company for this position now or in the future. \",\n            \"location\": \"Happy Valley-Goose Bay, NL\"\n        },\n        {\n            \"id\": \"B8AB639B0C25DF8AC31894FED2F5F0FE\",\n            \"cityName\": \"2190 Boul Le Corbusier, Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bf46a31f2dcd3f77\",\n            \"jobName\": \"Customer Service Representative/Sales Associate\",\n            \"companyName\": \"Lierre Import & Export Inc.\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694543022376,\n            \"dateOfPosted\": 1694543022206,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.57645549999999,\n                    \"lon\": -73.7428297\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Boul le Corbusier, Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Lierre.ca is looking for a candidate who has experience in customer service or has held a position as sales in the retail industry. The ideal candidate must be detail oriented, a fast learner, collaborative and can work with least supervisionMain Responsibilities:You will be responsibility of overseeing customer service including answering customer’s questions by phone, email and through our online customer service system.Be responsible for company correspondence both incoming and outgoingManaging practitioner’s schedules: booking appointments, answering questions, and receiving paymentsAssist inventory management including stock inventory receiving, incoming orders from our manufacturers, and cross-checking information.Introduce our products and help with sales service in show roomEnsure the reception and show room is clean and organizedPerforming other miscellaneous office tasks as assigned.Knowledge and Skills Required:At least 3 years previous experience in a customer service/secretary /sale in retail stores, e-commerce business or medical clinic is an assetsStrong computer proficiency and knowledge with Windows 10, Word, Excel, and other office software.Must be a fast learner and have the capacity of working with minimal supervisionStrong communication and interpersonal skills are a mustMust be able to work under pressure and in fast pace environmentMust be able to multi-task as well as a collaborative work capacity is a mustMust be fully bilingual (English and French), writing skills are requiredBenefits:- Competitive salary- Health insurance options- Paid time off- Retirement savings plan- Opportunities for career growth and advancementIf you are a motivated individual with a passion for providing exceptional customer service, we would love to hear from you. Apply now to join our team as a Customer Service Representative!Représentant(e) du service client/ventesLierre.ca est à la recherche d'un(e) candidat(e) ayant de l'expérience en service à la clientèle ou ayant occupé un poste de vendeur dans le secteur du commerce de détail. Le(la) candidat(e ) idéal(e) doit être soucieux(se) du détail, apprendre vite, collaborer et pouvoir travailler avec un minimum de supervision.Principales responsabilités:Vous serez responsable de prendre en charge le service client, notamment en répondant aux questions des clients par téléphone, par courriel et via notre système de service client en ligne.Être responsable de la correspondance de l'entreprise, autant entrante que sortanteGestion des plannings des praticiens: prise de rendez-vous, réponse aux questions et réception des paiements.Aider à la gestion des stocks, y compris la réception des stocks, les commandes entrantes de nos fabricants et la vérification croisée des informations.Présenter nos produits et aider au service de vente dans la boutique.S'assurer que la réception et la boutique sont propres et organisées.Effectuer diverses autres tâches de bureau assignées.Connaissances et compétences requises:Au moins 3 ans d'expérience au service à la clientèle/secrétariat/vente dans un magasin de détail, une entreprise de commerce électronique ou une clinique médicale est un atout.Solide maîtrise de l'informatique et connaissance de Windows 10, Word, Excel et autres logiciels de bureau.Doit apprendre vite et avoir la capacité de travailler avec un minimum de supervision.De solides compétences en communication et en relations interpersonnelles sont indispensables.Doit être capable de travailler sous pression et dans un environnement à rythme rapide.Doit être capable d'effectuer plusieurs tâches à la fois et le fait d’avoir une capacité de travail collaboratif est indispensable.Doit être entièrement bilingue (anglais et français), des compétences rédactionnelles sont requises.Pour postuler:Si vous êtes intéressé, veuillez nous soumettre votre CV, une lettre de motivation et votre salaire attendu.Job Types: Permanent, Full-timeSalary: $16.00-$20.00 per hourBenefits:Casual dressCompany eventsOn-site parkingStore discountSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Laval, QC H7S 2C9: reliably commute or plan to relocate before starting work (required)Education:DCS / DEC (preferred)Shift availability:Day Shift (preferred)Work Location: In personExpected start date: 2023-10-02\",\n            \"location\": \"Boulevard Le Corbusier, Laval, QC\"\n        },\n        {\n            \"id\": \"DE809E25D101CE0B210915E433EED3D9\",\n            \"cityName\": \"Peace River, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3de4f616ea4f33c8\",\n            \"jobName\": \"Customer Service/Office Assistant\",\n            \"companyName\": \"Rendez Vous Rv Park\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694542739249,\n            \"dateOfPosted\": 1692846382916,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 56.2331099,\n                    \"lon\": -117.3340936\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Peace River\",\n                \"formattedAddress\": \"Peace River, AB T0H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 19\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Peace River\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Rendez Vous RV Park and East Side Storage is seeking a friendly, customer-service orientated individual to fill a full-time position for the rest of the Summer that progresses into a part-time position for the Winter. This position is the Customer Service Office Assistant position located at the RV Park in Northern Sunrise County.If you enjoy meeting people from all over the world, have a creative mind, are comfortable in a changing pace environment and can work independently, then this is the job for you.Position Overview:Completing reservations for campground, Uhaul and storage facilityTelephone/reception dutiesCampground AuditsWeekly Storage AuditsCollection callsPromoting and advertising park and storage facility social media sites (create posts)Welcoming guests and helping to optimize their vacation experienceResponsible for providing service to self-storage customers and processing of U-Haul rentals.Promote tourism in our areaHandling cash and doing a daily cash out reportInventory updates and auditsOur ideal candidate will have strong initiative, confidence and possess excellent written and verbal communication skills. They will demonstrate an active interest in the company’s well-being. Be friendly and committed to providing each guest with exceptional customer service. They will be organized, eager to learn, able to work well in a team environment and must be able to work with minimal supervision. Have experience with social media posts advertising. Exceptional time management and organizational skills, react well to challenges, and anticipate needs.All service functions are automated, so comfort with computers is essential to this role. Experience with a computer-based point of sale system, hospitality & tourism is an asset. Keep in mind thisposition also requires candidate to work evenings and weekends and has some hands on/physical tasks.Required Education:Grade 12 DiplomaPrevious office experienceCustomer Service ExperienceSalary: Based on experience starting at $17/hrWe thank all applicants for their interest in the position, however, only those selected for interview will be contacted. Position will remain opened until a qualified candidate is hired.Apply on indeed or Send resume to support@rvpeaceriver.com or drop resume off at the RV park 950 Woods Road – Behind Northern Sunrise County Administration BuildingJob Types: Full-time, Part-time, Permanent, CasualPart-time hours: 20-25 per weekPay: $17.00-$19.00 per hourBenefits:Casual dressCompany eventsFlexible scheduleOn-site parkingFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftEvening shiftHolidaysMorning shiftWeekends as neededAbility to commute/relocate:Peace River, AB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Peace River, AB\"\n        },\n        {\n            \"id\": \"84761174B270F488AAD13535F6525633\",\n            \"cityName\": \"13 Harbour View Dr, Shediac, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=52943ba21cc8e674\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Enterprise Holdings\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694542724961,\n            \"dateOfPosted\": 1688898817311,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.2056036,\n                    \"lon\": -64.5692511\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Shediac\",\n                \"formattedAddress\": \"Harbour View Drive, Shediac, NB E4P, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Shediac\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Harbour View Dr, Shediac, NB Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" The Customer Service Representative Sr (CAR Sr) will provide a high level of customer service by assisting both internal and external customers, primarily face-to-face, supporting their branch and rental needs. The CAR Sr will gain knowledge through local training and hands-on experience to provide administrative support, service customers, and act as a rental back-up in a large home city branch or airport location. This role is available as regular full time.  Opening available at the following branch location: 13 HARBOURVIEW DRIVE, SHEDIAC, NB E4P 8T8This is a full time position that pays $ 17.00 / hour We offer:  Paid time off Employee discount Retirement savings plan Extended Health Benefits (Medical, Prescription Drug, Dental and Vision) Life Insurance Training and development Schedule Monday - Friday: 7:30am - 5:00pm Responsibilities: Take incoming calls- reservations, rate quotes, general questions and answers, provide information and resolution for customers, other branches, insurance companies, dealerships, repair shops and other vendors  Manage outgoing calls for callback management, A/Rs and miscellaneous calls as assigned  Provide a high level of customer service by assisting customers and assessing their rental needs in person and over the phone  Meet and greet customers in a friendly and timely manner  Provide directions and general assistance  Assist to assess condition of rental upon return  Process returns, check-ins and exit kiosk transactions  Effectively market the company while picking up customers up and/or dropping off customer in a safe and courteous manner and assisting customers as needed  Understand and communicate rental terms and conditions, vehicle features and other services  May sell optional protection products, upgrades, fuel options and other additional equipment  Responsible for notifying Management of any known vehicle problems and any required vehicle maintenance  Clean vehicle interior and exterior by hand or by operating washing equipment when needed  Perform various administrative and basic accounting functions such as: research and billing support tasks, accounts receivables, transfer and key logs, run miscellaneous reports, supply maintenance, process customer billing  Perform miscellaneous and backup duties job-related duties as assigned  Equal Opportunity Employer/Disability/Veterans Qualifications: Must be at least 18 years of age. High school diploma or above required; some college preferred Must have at least 1 year prior customer service, retail, or administrative support experience Must have a valid Full Class 5 Canadian drivers license with no more than 2 moving violations and/or at-fault accidents on driving record in the past 3 years No drug or alcohol related conviction on driving record in the past 5 years Must be authorized to work in Canada and not require work authorization sponsorship by our company for this position now or in the future.  Apart from religious observation, must be able to work the following schedule: Monday - Friday: 7:30am - 5:00pm\",\n            \"location\": \"Harbour View Dr, Shediac, NB\"\n        },\n        {\n            \"id\": \"6C2C80DD3DC3B8CBC44F2834585FD3B8\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5e377b3e2dbcf641\",\n            \"jobName\": \"Représentant Bilingue Du Service à La Clientèle / Bilingual Customer Service Rep\",\n            \"companyName\": \"Voxdata\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694542662469,\n            \"dateOfPosted\": 1694542662274,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*English version to follow* *NB : Nous n'acceptons que les candidatures provenant de la grande région de Montréal car la formation se fait à partir du bureau.* *Nous exigeons que nos candidats parlent anglais car certains de nos clients sont à l'extérieur du Québec et ne parlent que l'anglais.* Prêt à vous joindre à l'un des plus importants centres d'appels de Montréal ! VOXDATA vous attend ! Nous cherchons à agrandir notre équipe avec de nouveaux membres qui sont prêts à devenir nos prochains experts en offrant la meilleure expérience client possible ! Pour avoir une meilleure idée de notre entreprise et de nos valeurs, vous pouvez consulter notre site web ici ! https://www.voxdata.com/ Voici quelques raisons pour lesquelles il fait bon travailler chez VOXDATA : Une variété de types de postes, allant du service à la clientèle aux ventes, en passant par le soutien technique, avec des rôles uniquement en anglais ou bilingues et des options d'horaire variées - nous voulons mettre en valeur vos compétences uniques dans un poste qui vous convient le mieux !Un bureau facilement accessible et convoité au cœur du centre-ville de Montréal, et la possibilité de travailler à domicile pour nos postes hybrides !Un environnement de travail diversifié, positif et encourageant, notre objectif étant d'aider nos agents à briller et à réussir au maximum de leur potentiel !Les avantages et les bénéfices pour les employés tels que les plans de primes inclus dans nos postes, les primes supplémentaires pour les personnes les plus performantes (comme des cartes cadeaux et de l'argent supplémentaire !), les couvertures d'assurance, et les primes de recommandation des employés qui peuvent aller jusqu'à 1000 $ par personne !La possibilité d'évoluer et de développer vos compétences par le biais de réunions d'équipe, de séances de coaching individuel et d'évaluations des performances, toutes conçues pour vous aider à renforcer vos capacités et à devenir un maître dans votre travail !Des opportunités de développement interne ouvertes à tous - avec des rôles tels que chef d'équipe, coach, formateur, mentor et même des postes administratifs, nous sommes fiers de toujours nous tourner vers le personnel que nous avons déjà avec nous pour le promouvoir lorsque l'occasion se présente !Pour ce poste, vous travaillerez avec une société d'aviation bien établie. Vos tâches spécifiques seront les suivantes : Fournir un service à la clientèle de premier ordre à chaque interaction avec les clients.Répondre aux appels entrants des clients pour les aider à effectuer des réservations une fois qu'elles ont été achetées.Résoudre les problèmes liés à l'accès aux billets et à la navigation sur le site web.Répondre aux questions concernant les informations sur les billets ou aux questions générales sur les réservations.Ready to join one of the leading call centers in Montreal?! VOXDATA is waiting for you! We're looking to expand our team with new members who are ready to become our next experts in delivering the best customer experience possible! To get a better idea of our company and values, you can check out our website here! https://www.voxdata.com/ Here's a few reasons why it's great to work at VOXDATA: A variety of position types, ranging from customer service, sales, and technical support, with English-only or bilingual roles and ranging scheduling options – we want to highlight your unique skillset in a position that is best suited to you!An easily accessible and coveted office location in the heart of Downtown Montreal, and the option to work from home with our hybrid roles!A diverse, supportive, and encouraging work environment, our goal is to help our agents shine and succeed to their fullest potential!Employee benefits and perks such as bonus plans included into our positions, additional bonuses for top performers (like gift cards and extra money!), insurance coverages, and employee referral bonuses that can go up to $1000 per person!The chance to grow and develop your skills through team meetings, individual coaching sessions, and performance reviews; all designed to help you further strengthen your abilities and become a master at your job!Internal growth opportunities that are open to everyone – with roles like team leader, coach, trainer, mentor, and even administrative positions; we pride ourselves on always looking to the staff we already have with us to promote when the occasion arises!For this role, you will be working with an established aviation company. Your specific tasks will include: Providing top-tier customer service to clients in every interaction.Answering inbound calls from customers to assist with bookings/reservations after they have been purchased.Resolving issues relating to ticket access and website navigation.Answering questions regarding ticket information, or general questions about bookings/reservations.Requirements Qu'est-ce qui fait de quelqu'un un excellent candidat ? Nous recherchons des personnes qui : Disponible pour travailler 40 heures par semaine, du lundi au dimanche, de 7h00 à minuit, de préférence le soir et le week-end.Ont déjà travaillé dans le service à la clientèle, les ventes ou les centres d'appels, ou ont une expérience traduisible dans d'autres secteurs.Sont bilingues en français et en anglais.Vous pouvez apprendre à utiliser et à faire fonctionner plusieurs programmes informatiques avec facilité.Être disponible pour travailler le soir et le week-end si la campagne est opérationnelle pendant ces périodes.Avoir obtenu un diplôme de fin d'études secondaires ou un diplôme équivalent.Se considèrent comme des personnes capables de résoudre des problèmes, de s'adapter à des situations changeantes et sont motivées pour être les meilleures des meilleures !What do we think makes someone a great candidate?! We're looking for people who:Are available to work 40 hours/week within the operational hours of Monday to Sunday, between 7:00 AM to 12:00 AM (midnight), evening and weekend availability is preferred.Have worked in customer service, sales, or call centers before; or have translatable experience from other industries.Are bilingual in French and English.Can learn how to use and operate multiple computer programs with ease.Have graduated high school or have an equivalent diploma.Consider themselves to be problem-solvers, adaptable to changing situations and are motivated to be the best of the best!Benefits Soumettez votre candidature dès maintenant pour lancer le processus d'embauche et voyez par vous-même pourquoi il est formidable d'être un agent VOXDATA !Ce poste est assorti d'un salaire de base de 17,00 $/heure. Submit an application now to get the hiring process started and see for yourself why its great to be a VOXDATA agent! *This position has a base salary of $17.00/hour.*\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"D31E0751E52C34628DDEC118A0DD5AE7\",\n            \"cityName\": \"Coquitlam, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d3708956fdd4fae6\",\n            \"jobName\": \"Customer Service/Inside Sales\",\n            \"companyName\": \"Waste Control Services\",\n            \"rowSalary\": \"$45,000–$50,000 a year\",\n            \"date\": 1694542590634,\n            \"dateOfPosted\": 1694542588403,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2837626,\n                    \"lon\": -122.7932065\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Coquitlam\",\n                \"formattedAddress\": \"Coquitlam, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Coquitlam\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Waste Control Services, we understand the responsibility in front of us and the torch we hold in our line of work. Calling Greater Vancouver, British Columbia our home is a privilege in that we are surrounded by sustainability changemakers – groups who understand the impact they have on the world around them, and are deeply passionate about being a part of that positive change and making waves. In that same vein, WCS is the most comprehensive recycling collection and post-collection company in the region, and we are a recognized industry leader in helping customers achieve their sustainability goals. Our Sales department is undergoing a rapid transformation, and we are currently seeking a dedicated, confident, and enthusiastic individual looking for an opportunity to learn our industry. The Customer Service/Inside Sales Role is a fast-paced, customer satisfaction-driven position within the department, and offers the potential for career growth and future opportunities within the Sales team. The successful candidate will be responsible for providing exceptional customer service and assisting new clients with services available. If your values align with ours and you enjoy a challenge, this is the role for you. Responsibilities:Answer incoming customer calls quickly and efficiently.Respond to questions and concerns about service via phone, email, fax.Consult with customers and evaluate needs to determine best options.Build sustainable relationships and trust with customers through open and interactive communication.Handle customer complaints, provide appropriate solutions and alternatives as quickly as possible.Keep records of customer interactions.Go the ‘extra mile’ to engage customers.Escalate issues as required, i.e., to Operations Manager/Sales Manager.Provide additional service options where appropriate.Assist with inputting and processing contracts and service change forms as needed.Respond to leads that come into the Sales office via online and phone inquiries – identifying customer needs, qualifying them into the proper services, preparing and providing rate quotations.Performing site checks for customers that have come in through leads.Preparing and signing contracts for leads that have agreed to start service with us and collecting keys/fobs as needed for site access prior to service commencement.Processing service changes for new accounts that the Inside Salesperson has onboarded.Obtaining and/or processing service increases for House and Property Management accounts handled by the Sales office in response to driver issues, overweight charges, etc.Assisting with RFP ('Request For Proposal') or tender response preparation for Property Management accounts handled by the Sales office.Other duties as assigned. To be Successful:Must possess a valid Class 5 BC driver’s license.Exceptional written and verbal communication skills.Ability to multi-task, prioritize and manage time effectively.Strong attention to detail and excellent organizational skills, while being adaptable to changing priorities.Customer orientation and ability to adapt/respond to different types of characters.Demonstrate empathy, sincerity and integrity when interacting with customers.Display a positive, ‘can do’ attitude towards your work.Self-motivated, goal oriented while having the ability to work independently and in a team environment with the desire to go above and beyond to contribute to the Team’s successes. What we offer:Great Company culture, employee of the month/year, monthly events, etc. This is a permanent, full-time position that works Monday through Friday.$45,000-$50,000 per yearCompetitive benefits package including premiums paid for by the CompanyDPSP/GRRSPWork in a dynamic, collaborative, progressive and high-performing teamWaste Control Services has been a reputable employer for 29 years - come join our team and work with positive people who love what they do! We thank all applicants who have shown an interest in this position. However, we will only be contacting those candidates who are under further consideration.\",\n            \"location\": \"Coquitlam, BC\"\n        },\n        {\n            \"id\": \"19415C20CB58FF5C8FDF38F87CA116C3\",\n            \"cityName\": \"1a-1881 Steeles Ave W, North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=09d21fee2ff7097a\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Ups Canada\",\n            \"rowSalary\": \"$15.50–$16.00 an hour\",\n            \"date\": 1694541392750,\n            \"dateOfPosted\": 1694416794581,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:Primary responsibility is to deliver world-class customer service to customers. This requires strong interpersonal skills, effective oral/written communication skills and the ability to work well with others.Computer application knowledge, including Microsoft Office (Word and Excel), is recommended and may be required.Knowledge of Internet applications is preferred.Job Types: Part-time, Full-timePart-time hours: 20 per weekSalary: $15.50-$16.00 per hourSchedule:4 hour shift8 hour shiftMonday to FridayWeekends as neededAbility to commute/relocate:North York, ON: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"031E1C81D5314EB506F7843709D839C9\",\n            \"cityName\": \"2020 Rte Transcanadienne, Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a35b68fa6cb59aaa\",\n            \"jobName\": \"Inside Phone Sales Associate\",\n            \"companyName\": \"Assante Wealth Management Ltd\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694541329437,\n            \"dateOfPosted\": 1660324508513,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4903742,\n                    \"lon\": -73.7495411\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Rte Transcanadienne, Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Assante Capital Management Ltd. is one of Canadas largest independent investment firms.This is a great opportunity to join our expanding inside sales team. We are looking for motivated sales reps to generate new prospective clients for our financial advisors.Qualifications:Experience in cold calling a must.Must be assertive and well-spoken.Bilingual preferred but English only accepted.Sales driven with a positive attitude.Ability to work independently.Lead list is provided.This is a permanent part time position that may lead to full time pending results.Start date is immediate.We offer excellent salary plus bonus for qualified candidates.Hours are Monday to Thursday 5:00 p.m. to 9:00 p.m.Serious candidates only please contact 514 832 5148 to arrange for interview.Work remotelyTemporarily due to COVID-19Job Types: Part-time, PermanentSalary: $18.00-$25.00 per hourBenefits:Casual dressOn-site parkingSchedule:No weekendsSupplemental pay types:Bonus pay\",\n            \"location\": \"Rte Transcanadienne, Dorval, QC\"\n        },\n        {\n            \"id\": \"E3E0620CAEAAF6214C6F10EDC5123B47\",\n            \"cityName\": \"Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f113ff2e4eadffa1\",\n            \"jobName\": \"Customer Service Agent Outbound (Remote) - Nova Scotia\",\n            \"companyName\": \"National Diabetes Trust\",\n            \"rowSalary\": \"$15.70 an hour\",\n            \"date\": 1694541110611,\n            \"dateOfPosted\": 1694239174331,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our Organization The National Diabetes Trust is Canada’s largest charitable clothing and small household good collection service. With more than 5,000 donations bins and an active home pick-up service in communities across Canada (excluding Quebec), we collect unwanted gently used clothing and household items, using them to raise much-needed funds for Diabetes Canada.  Each year, the program diverts more than 100 million pounds of clothing and household items from landfill sites across Canada. As an employee on the National Diabetes Trust team, you are part of our national coverage in 2,500 communities, with 28 operations and 100 trucks. Join a team that is making a difference raising money for life altering charitable programs, all while helping the environment. What We Offer:Work from the comfort of your own homeEmployee Assistance Program (EAP)Registered Pension Plan (100% Employer-paid) once eligibility criteria are metCorporate discounts through Perkopolis, Value Village and GoodLife FitnessHours of Work* This role will work up to 29 hours per week in 6-hour daily time blocks, including weekends. A consistent schedule will be developed in collaboration with operational needs.  About the Outbound Customer Service Agent Role Reporting to the Virtual Contact Centre Supervisor, this role is responsible for soliciting, scheduling and confirming donation pick ups of reusable clothing and small household goods from the public. While there is no sales component to this role – we are seeking outgoing individuals with a focus on providing a “best in class” customer experience. Highlights of the role include:To solicit, schedule and/or confirm donations of reusable clothing and miscellaneous itemsThis is accomplished by reading from a standardized script to verify donor informationTo meet or exceed KPI targets and/or productivity standards as outlined by the SupervisorTo understand and promote the mission of Diabetes Canada and the National Diabetes Trust to the general publicProvide potential donors with a high level of customer service by demonstrating a professional manner, discipline and strong organizational skillsInform the Supervisor of any system or process discrepanciesMaintain accurate and up to date recordsAttend all scheduled shifts, training, and meetings as determined by the SupervisorMaintain confidentiality of donor informationAdditional duties as required, ensuring the effective operation of the Virtual Contact Centre function About You The selected candidate for this role will meet the following minimum requirements: Minimum High School Diploma6+ months of experience in customer service and/or a call centre environmentMust have in working order at all times a PC home computer, direct connect (wired) high speed internet (no Wi-Fi/router), a USB noise cancelling headset, and either an All-in-One Printer (copier, scanner, printer) OR the ability to sign documents electronically.Must have full availability between the hours of Monday-Friday 3pm-9pm EST and Saturdays and Sundays 11am -5pm EST.Strong computer skills and experience with computer databases (mouse, keyboarding, opening/closing programs, locating files, installing/uninstalling programs, updating software, basic troubleshooting)Intermediate web and email skills (internet, downloading, logging on/off, clearing history, sending, and receiving email messages, (attaching/saving/opening files), message boards, instant messagingDisciplined and organized self-starter who can succeed in a fast-paced, high volume call environment, while being able to manage multiple tasksBasic competency in Microsoft Office and AdobeAdvanced Oral and Written communication -  Diversity, Equity and Inclusion Statement At National Diabetes Trust, we are guided by our values of Accountability, Teamwork, Integrity, and Respect. We believe in the importance of Diversity, Equity and Inclusion (DEI). We are committed to bringing people together in a respectful, inclusive and supportive environment, no matter their age, gender, identity, race, ethnicity, religion, income, sexual orientation, or where they live. In July of 2020, we signed the BlackNorth Initiative CEO pledge and will hold ourselves accountable in meeting those commitments.  How to Apply Must be legally eligible to work in Canada and, where applicable, must have a valid work permit or study permit that allows the candidate to fulfill the requirements of the role.NDT welcomes applications from all qualified candidates, including women, Indigenous peoples, persons with disabilities, and members of visible minorities. We value a diverse workforce that reflects the communities we serve.We are committed to accommodating people with disabilities as part of our hiring process. If you have special requirements, please advise us during the recruitment process.We thank all interested applicants; however, only those selected for an interview will be contacted. INDNDTL\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"375E6204B9804552C5AE4D5511E5C66B\",\n            \"cityName\": \"211 Carlton Street, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ac1e6f33afdc13b4\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Capital Dodge\",\n            \"rowSalary\": \"$16–$18 an hour\",\n            \"date\": 1694540110931,\n            \"dateOfPosted\": 1666513918762,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.66338409999999,\n                    \"lon\": -79.3721451\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Carlton St, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking to hire conscientious, detail-orientated and responsible individuals for the vacant position of a Customer Service Representative. The successful candidates will provide exceptional customer service to current and potential customers, assisting in customer connections and sales, account establishment, maintenance, etc.Job duties include, but are not limited to the following:Answering inbound phone calls and/or live chats to provide awesome customer serviceMaking outbound warm calls to our customers to help with their inquiriesProviding excellent customer service by guiding and helping others with a friendly attitudeEffectively utilizing and navigating internal resources to arrive at the right solution for the client (e.g. computer systems, online resources)Participating in training and certification coursesQualifications:Strong interpersonal skills, including the ability to communicate effectively, both verbally and in writingDemonstrated ability to set deadlines, manage, prioritize, and plan effectively.Must be articulate and have an excellent command of the English languageMust demonstrate a high level of professionalism with excellent typing, communication, and computer skillsAbility to communicate with co-workers and other departments with professionalism and respectJob Type: Full-timeSalary: $16.00-$18.00 per hourBenefits:Dental careLanguage training providedFlexible Language Requirement:French not requiredSchedule:8 hour shiftSupplemental pay types:Bonus payWork Location: Remote\",\n            \"location\": \"Carlton St, Toronto, ON\"\n        },\n        {\n            \"id\": \"74D48C5135CFE032F63864EC7BE12B8A\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1ebef99a9514943f\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Diamond Delivery\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694539379005,\n            \"dateOfPosted\": 1631254248732,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Diamond Delivery in Surrey, BC is seeking a Full-time or Part-time Customer Service Representative to join our team! Our rapidly growing business is looking for hardworking, motivated, friendly individuals who have a passion for delivering exceptional customer service.  An example of duties include; answering a high volume of inbound calls, order entry, customer service resolutions, driver paperwork maintenance, customer rate quotes.  Desired qualifications: Previous inbound call-centre experienceExcellent customer service skills and a positive attitudeAbility to multi-task and to thrive in a fast-paced environmentCapable of maintaining a calm & collected demeanor when under pressureMotivated to find solutions to challenges that occur, with a focus on follow-throughExceptional communication skillsStrong computer skills with a minimum keyboarding speed of 35 WPM Industry knowledge would be an asset, although training will be provided. We offer a competitive wage based upon experience with benefits after 3 months to full time employees.  Job Duties: Answer incoming customer inquiriesCollaborate with key stakeholders and teams to stay updated on new products, services, and policiesEngage with clients in a friendly and professional manner while actively listening to their concernsOffer support and solutions to customers in accordance with the company's customer service policiesOther duties as requested Please send resume to aholland@rdiamondgroup.com. \",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"E538D69041F8368298151953B0DD8E24\",\n            \"cityName\": \"London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=00e95391d5e07eec\",\n            \"jobName\": \"Customer Service Agent 3 - London - Full Time - Perm - Bilingual (French & English)\",\n            \"companyName\": \"Serco North America\",\n            \"rowSalary\": \"$21.86 an hour\",\n            \"date\": 1694538945534,\n            \"dateOfPosted\": 1691660607138,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9849233,\n                    \"lon\": -81.2452768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Position Description :  This role has a starting hourly rate of $21.86!  Serco Canada Inc. operates all the DriveTest Centres across Ontario on behalf of the Ministry of Transportation. As a customer service agent with Serco Canada Inc., you will be based out of one of our 56 Ontario DriveTest Centres. If you are a positive and professional team player who enjoys working with the public in a high energy environment, rewarding job opportunities await you at Serco Canada Inc.  Customer service agents are responsible for providing information and assisting members of the public at various stages of the driver’s licensing process. Some of the work includes responding to customer inquiries in person and on the telephone, providing information about licence rules and regulations, verifying driver records, taking applicant photos, scheduling road test appointments, collecting applicable fees, and preparing reports. Customer service agents must have excellent time management and organizational skills and exercise superior judgment skills. We require individuals who can work independently, meet deadlines, and strive to achieve customer satisfaction in all aspects of their work.  Purpose of the Job: Provides information and assistance related to driver examination services. Reviews information, determines test(s) requirements, and conducts/processes transactions and exams inside the DriveTest Centre. Assists in the smooth and efficient administration of examinations, including preparation of test takers entry, invigilating, the distribution of exam materials, and the collection of examinations. Ensures the fair and proper conduct of examinations. Creates a calm, professional, and supportive environment that enables applicants to perform to the best of their abilities. Provides Security Guard Testing (SGT) examination services support. Primary Duties and Responsibilities: Responds to inquiries related to driver licensing, determines applicant status, and provides information regarding test/re-test procedures and regulations relating to all classes of licences. Distributes and verifies application forms for accuracy and completeness. Investigates problems or errors in licence records and initiates corrections. Captures applicant photos, administers vision tests to ensure minimum requirements are met, and provides referrals to vision specialists. Collects applicable fees accurately. Conducts and processes knowledge tests, dispatches road test appointments, provides results, issues temporary driver’s licences, and processes licensing changes. Identifies licence exchange privileges and/or test requirements for driver’s licence applicants from other countries, provinces, and jurisdictions; assesses foreign licence eligibility, translations, and letters of authentication from other countries. Contacts members of the public to communicate information and correct errors. Administers commercial licence renewals, including accepting medical examination reports and criminal record checks. Escalates customer concerns and redirects customers to other government agencies, when required. Qualifications :  To be successful in this role, you must have:  Fluency level in French and English. Valid Ontario class “G” of licence is required. 1-4 years of customer service experience in a service environment is preferred to include, but not required:  Airline Industry Financial Industry Banking Industry Federal and Local Government Services Healthcare Industry Must have and maintain an acceptable driving record. Intermediate-level computer skills in Microsoft Office are required. Touch-typing and data entry. Must be able to perform physical duties of the position, this may include sitting or standing for extended periods of time and entering and existing vehicles up to 30 times per shift. Must pass Criminal Record Check (CPIC); Fingerprint Criminal Record Check. **Employee hours vary based on customer demand and location’s operating hours. **This position may require extended shift hours and possibly Saturday hours (depending on location) during certain periods of the year when Drive Test Centre volume is higher. **This position requires the attendance of a formal training session, which includes classroom instruction with experienced and qualified trainers and on-the-job shadowing at a Drive Test Centre facilitated by a coach. If you are unsuccessful at any stage of the training, your employment will end effective immediately. If you are interested in supporting and working with our Customer Service professionals and a passionate Serco team- then submit your application now for immediate consideration. It only takes a few minutes and could change your career! Company Overview :  Serco Inc. (Serco) is the Americas division of Serco Group, plc. In North America, Serco’s 9,000+ employees strive to make an impact every day across 100+ sites in the areas of Defense, Citizen Services, and Transportation. We help our clients deliver vital services more efficiently while increasing the satisfaction of their end customers. Serco serves every branch of the U.S. military, numerous U.S. Federal civilian agencies, the Intelligence Community, the Canadian government, state, provincial and local governments, and commercial clients. While your place may look a little different depending on your role, we know you will find yours here. Wherever you work and whatever you do, we invite you to discover your place in our world. Serco is a place you can count on and where you can make an impact because every contribution matters.  To review Serco benefits please visit: https://www.serco.com/na/careers/benefits-of-choosing-serco. If you require an accommodation with the application process please email: careers@serco-na.com or call the HR Service Desk at 800-628-6458, option 1. Please note, due to EEOC/OFCCP compliance, Serco is unable to accept resumes by email.  Candidates may be asked to present proof of identify during the selection process. If requested, this will require presentation of a government-issued I.D. (with photo) with name and address that match the information entered on the application. Serco will not take possession of or retain/store the information provided as proof of identity. For more information on how Serco uses your information, please see our Applicant Privacy Policy and Notice.  Serco does not accept unsolicited resumes through or from search firms or staffing agencies without being a contracted approved vendor. All unsolicited resumes will be considered the property of Serco and will not be obligated to pay a placement or contract fee. If you are interested in becoming an approved vendor at Serco, please email Agencies@serco-na.com.  Serco is an equal opportunity employer. We evaluate qualified applicants without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, disability, veteran status, and other legally protected characteristics. \",\n            \"location\": \"London, ON\"\n        },\n        {\n            \"id\": \"BCB9CB48F2BF84686F7E2F2799D10F84\",\n            \"cityName\": \"286 Rue Gladstone, Greenfield Park, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dd67454a09d37f2e\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Brossard Bagel Inc.\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694537677368,\n            \"dateOfPosted\": 1692841854417,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4925641,\n                    \"lon\": -73.4805987\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Longueuil\",\n                \"formattedAddress\": \"Rue Gladstone, Longueuil, QC J4V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montérégie\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Rue Gladstone, Greenfield Park, QC Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position: Customer Service RepresentativeLocation: Greenfield Park, QCJob Description:The Customer Service Representative will interact with customers to ensure a positive customer experience.Qualifications:High School Diploma or equivalent required.Must possess the ability to problem solve, multitask, and prioritize tasks.Must be able to work independently with little supervision.Make sandwiches , make orders for ubereats , skip & doordashShift: Mondays to Fridays 12pm -8pmResponsibilities:Provide a positive customer experience.Manage customer complaints in a polite and professional manner.Benefits:Job Type: Full-timeSalary: $15.50 per hourExpected hours: 40 per weekBenefits:Language training providedStore discountFlexible Language Requirement:English not requiredSchedule:Day shiftMonday to FridaySupplemental pay types:TipsAbility to commute/relocate:Greenfield Park, QC J4V 2P7: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Rue Gladstone, Greenfield Park, QC\"\n        },\n        {\n            \"id\": \"2E5814EB21D1DDEF6D4C46DD0F6D4DC9\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d260a0faa0373795\",\n            \"jobName\": \"Customer Service Supervisor - Retail\",\n            \"companyName\": \"Rms Enterprises Ltd.\",\n            \"rowSalary\": \"$28 an hour\",\n            \"date\": 1694537672048,\n            \"dateOfPosted\": 1690809426314,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 28.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    28.0\n                ],\n                \"range\": {\n                    \"gte\": 28.0,\n                    \"gt\": null,\n                    \"lte\": 28.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Order merchandise Establish work schedules Sell merchandise Organize and maintain inventory Supervise and co-ordinate activities of workers Supervise staff (apprentices, stages hands, design team, etc.) Supervision 1 to 2 people Transportation/travel information Public transportation is available Work conditions and physical capabilities Fast-paced environment Personal suitability Team playerWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"EC8CB5D2B61AD01BED424052FAEFD601\",\n            \"cityName\": \"7315 Avenue Mountain Sights, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=072a84f946b99c10\",\n            \"jobName\": \"Customer Service/Sales Advisor\",\n            \"companyName\": \"Canada Tire Inc.\",\n            \"rowSalary\": \"From $825 a week\",\n            \"date\": 1694537527978,\n            \"dateOfPosted\": 1693690070980,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4927947,\n                    \"lon\": -73.6457968\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Ave Mountain Sights, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 825.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    825.0\n                ],\n                \"range\": {\n                    \"gte\": 825.0,\n                    \"gt\": null,\n                    \"lte\": 825.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"La Cie Canada Tire is a leader in the Eastern Canada tire distriution businessThe applicant must be a customer-oriented individual who thrives on offering exceptional serviceMust have customer service experience in the automotive or related industry within Canada.Retail sales experience in a fast-paced tire and mechanical service center is an asset.Ability to adapt and cope with challenging and changing situationsAbility to multi-task and work in a fast-paced environmentMust be computer literateKnowledge of the Autoleap operating system is an assetBackground in managing people in the workplace is an assetExcellent potential to be promoted to a managerial positionJob Types: Permanent, Full-timeSalary: From $825.00 per weekBenefits:Casual dressExtended health careOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededSupplemental pay types:Commission payCOVID-19 considerations:We are a Covid conscience company and follow all protocols required.Experience:Automotive Customer Service: 3 years (required)Work Location: In personExpected start date: 2023-09-11\",\n            \"location\": \"Avenue Mountain Sights, Montréal, QC\"\n        },\n        {\n            \"id\": \"F3697ECF2B7FD4B01638E8D84BD5019F\",\n            \"cityName\": \"680 Progress Avenue, Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8b658464a970cdc3\",\n            \"jobName\": \"Sales And Customer Service Associate\",\n            \"companyName\": \"Salonbrandz.com\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694537288966,\n            \"dateOfPosted\": 1692846829460,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7789414,\n                    \"lon\": -79.2568878\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Progress Ave, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full Time: $17/hr StartingExcellent Hours: Monday - Friday From 9am -5pmClosed on the Weekends,Recently graduated International Students & Immigrants are welcome must be fluent in english and computer literateSalonbrandz.com. - Scarborough, ONSalonbrandz.comis an independent, privately-owned Canadian distributor of professional salon products. We are dedicated to offering a wide variety of high quality, value-added products for our clients. Through inspiration, education and leadership, our ultimate goal is to help the professional enhance their business by assisting them in making their clients feel good and look beautiful.We are currently looking to hire Sales & Order Entry Associates to join our team. We want you to bring your talents, experience, and enthusiasm to a team-oriented and dynamic environment. We believe that our success is based primarily on the quality and hard work of our valued team members to bring the Beauty world to our customers._______________________________________________________Responsibilities:Assist customers with knowledge, empathy and sincerity by directing them to products an explaining product features.Record all sales in the Point of Sale System and handle all monetary transactions accurately and effectively.Maintain excellent store appearance and assist with store merchandising to provide a positive shopping experience for our customers.Ability to explain intermediate computer tasks to non-technical usersExcellent English communication skills (verbal and written)Outstanding organizational skills and an ability to juggle multiple tasksQualifications:Strong and dependable work ethic, with a drive to uphold our Culture of Can DoPossess a passion for the beauty industry with the desire to teach our customers about our products.Self-starter with a drive to continuously learn and develop in their careerMust be 18 years of age of olderPrevious sales and/or cosmetology experience preferred but not required. Work where we treat you and our customers as a priority.Opportunities to grow your career within the companyOn-going product knowledge programs and customer experience coachingWork in an environment focused on and surrounded by beautyJob Type: Full-timeSalary: $17.00-$18.00 per hourExpected hours: 37.5 per weekSchedule:Monday to FridayWork Location: In personApplication deadline: 2023-08-30\",\n            \"location\": \"Progress Ave, Toronto, ON\"\n        },\n        {\n            \"id\": \"EBA43019CCBB47C47FCD583EFAB9AB40\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=62a977b1eedbb7e4\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Point Grey Veterinary Hospital\",\n            \"rowSalary\": \"From $21 an hour\",\n            \"date\": 1694537262705,\n            \"dateOfPosted\": 1692844949693,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Do you want to have fun and laugh with your team while utilizing the skills you have? We can help. We are always looking for rock stars to join our team.You must be problem solvers, outside-the-box thinkers, self-motivators, and all-around superstars to hit the ground running.We are looking for enthusiastic and dedicated individuals who thrive on providing excellent customer service, embracing change, and using their smarts to better our everyday work to deliver the best experience to our clients.Company:Point Grey Veterinary HospitalOur Purpose/Cause/PassionSupportive and Inspiring Environment of GrowthNiche:Providing Genuine Veterinary Care and Client EducationWhat makes us unique:Fear-Free CertifiedKnowledgeable StaffStandard of CareMust Haves:Fluent in English.Bubbly PersonalityDesire to learnAbility to Multitask and retain informationLocation: UBC areaSalary: $21 per hourSchedule: Mon, Tues, Thurs, Fri, SatKindly note that the schedule will be 5 days a week, 8 hours each day, up until January. Starting in January, it will switch back to 4 days: Monday, Tuesday, Friday, and Saturday.Job Type: Full-timeSalary: From $21.00 per hourBenefits:Dental careDisability insuranceExtended health careLife insurancePaid time offVision careSchedule:10 hour shift8 hour shiftApplication question(s):Please acknowledge: Kindly note that the schedule will be 5 days a week, 8 hours each day, up until January. Starting in January, it will switch back to 4 days: Monday, Tuesday, Friday, and Saturday.Work Location: In person\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"568F7A4D50AC48B8AA9F3EE5FBB9AB6E\",\n            \"cityName\": \"Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=06646db9ba820760\",\n            \"jobName\": \"Customer Service Sales Clerk\",\n            \"companyName\": \"Can-Tek Distribution Inc\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694536928678,\n            \"dateOfPosted\": 1690809441590,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsor equivalent experience Tasks Provide advice about merchandise Assist in display of merchandise Estimate or quote prices, credit or contract terms, warranties and delivery dates Greet customers and discuss type, quality and quantity of merchandise or services sought for purchase, rental or lease Prepare merchandise for purchase, rental or leaseWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"BBB2C06866D909D8B3106D6437EA818D\",\n            \"cityName\": \"1269 College St, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a91f120c90eb4c54\",\n            \"jobName\": \"Receptionist/Customer Service\",\n            \"companyName\": \"Papa John's\",\n            \"rowSalary\": \"Up to $15.50 an hour\",\n            \"date\": 1694536848859,\n            \"dateOfPosted\": 1669997754412,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6557161,\n                    \"lon\": -79.411386\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"College St, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"HideDo you like people? Do you like pizza? We are searching for just the right person to join our team at Papa John's Pizza in college and Landsdowne.To join our team, two things are vital; First, and most importantly, you must be friendly! Second, you must be willing to work hard, support your fellow team members, and learn quickly.CSRs must be able to work at least two of Friday, Saturday and Sunday shifts.Customer Service Representatives will take orders by phone-in customers, as well as customers at the store. They are expected to manage the cash drawer when accepting payment for orders and returning change. CSRs will also handle customer concerns using the approach taught during Papa John's onboarding and orientation.We expect the standard professionalism from our team members including arriving on time in complete uniform with a positive attitude. There are other duties a CSR may be asked to perform outside of the above description.In secondary roles, Customer Service Representatives will help make quality products, label boxes, cut pizzas and prepare orders for delivery or to be served to in-store customers. CSRs also help in maintaining the store's professional image by participating in the cleaning tasks assigned to all team members.Benefits of working with Papa John’s Pizza include:Flexible schedulesCompetitive wagesCareer growth opportunitiesREQUIREMENTSPrevious papa John's experience, or experience making pizzas is beneficial. Restaurant experience is required.Friendly and well spokenGood math skills to handle cash handling for in-store customer paymentsSpeak English fluently in order to serve customersFocus on cleanliness and personal hygieneMust live in Toronto, Etobicoke, ScarboroughMust speak EnglishMust be legally permitted to work in CanadaMust be able to work at weekends and holiday shiftsServing communities across Southern Ontario.please contact for more information 416-538-7272 or 647-274-1587 (AJ)Papa John's PizzaJob Types: Full-time, Part-time, PermanentSalary: Up to $15.50 per hourFlexible Language Requirement:English not requiredSchedule:10 hour shift12 hour shift8 hour shiftEveningsNight shiftAbility to commute/relocate:Toronto, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Front desk: 1 year (preferred)Administrative experience: 1 year (preferred)Work Location: In person\",\n            \"location\": \"College St, Toronto, ON\"\n        },\n        {\n            \"id\": \"B97B5786C308312D5B41A3AB0D680E17\",\n            \"cityName\": \"1600 Regent Ave W, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2895b9d34fd415ba\",\n            \"jobName\": \"Customer Service Specialist/Host\",\n            \"companyName\": \"Reality Drop\",\n            \"rowSalary\": \"$15.00–$18.50 an hour\",\n            \"date\": 1694536466674,\n            \"dateOfPosted\": 1690809238727,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.89536890000001,\n                    \"lon\": -97.03688799999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Regent Ave W, Winnipeg, MB R2C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usWelcome to REALITY DROP, where cutting-edge technology meets immersive entertainment! As Winnipeg’s first Virtual Reality Escape Room business, we take pride in providing unparalleled experiences that transport our customers into thrilling virtual worlds.At REALITY DROP, we are passionate about revolutionizing entertainment by merging the real and virtual dimensions. If you're ready to unleash your creativity and be part of something extraordinary, come \\\"Dive into the future\\\" with us at REALITY DROP, where the extraordinary awaits!Customer Service Representative (CRS) responsibilities are but not limited to:Respond to customer inquiries in a timely and professional mannerProblem-solving abilities to resolve issues and provide technical assistance to customers who might experience difficulties with the virtual reality equipment, software, or platformStrong organizational skills to manage scheduling and ensure smooth operationsManage bookings, appointments, and customer databases and perform administrative duties, such as record-keeping, updating customer databases, cash outRegularly clean and disinfect the virtual reality headsets, controllers, and other equipment between each customer use to maintain a hygienic environmentProvide feedback to management on customer service issuesDo you have these qualities?Fun & Motivated?Passionate &Enthusiastic?Multitasker & Detail orientated?Friendly & Charming?Good listener & Problem Solver?Tech Savvy & possess the ability to work in a fast passed environment?If yes, you might just be the right fitJob Types: Permanent, Part-time, Full-timePart-time hours: 24 per weekSalary: $15.00-$18.50 per hourBenefits:Casual dressDiscounted or free foodPaid time offFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftEvening shiftEvery WeekendHolidaysOn callOvertimeSupplemental pay types:Bonus payOvertime payEducation:Secondary School (preferred)Experience:Customer service: 2 years (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In personExpected start date: 2023-09-18\",\n            \"location\": \"Regent, MB\"\n        },\n        {\n            \"id\": \"FDD97B5430C09F21BFF6DA185A525D43\",\n            \"cityName\": \"303 Prince Albert Rd, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c96d8c4740d3566a\",\n            \"jobName\": \"Customer Service Associate / Cashier\",\n            \"companyName\": \"Needs Fast Fuel\",\n            \"rowSalary\": \"From $13.35 an hour\",\n            \"date\": 1694536188256,\n            \"dateOfPosted\": 1659577322288,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6760278,\n                    \"lon\": -63.55868719999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Prince Albert Rd, Dartmouth, NS B2Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cashier/Customer Service 303 Prince Albert RoadDartmouth NS.B2Y 1N1We are seeking a cashier customer service, mature and reliable individual to become integral part of our team. Must be able to work well in a fast paced environment and have your own transportation if possible. This position will include day/evening/weekend shifts. Serious inquiries only, unfortunately this position is not open to students returning to school in September. Please drop off resume in store FastFuel 303 Prince Albert road Dartmouth NSResponsibilities and AccountabilitiesProvide customer service to meet customer needs – solution selling and customer product awarenessProcess customer transactionsMaintain an accurate cash drawer while following company policies and proceduresMaintain store Merchandising and process inventoryAdhere to, and implement all applicable company standardsAdaptability/FlexibilityDependabilityProductivityMaintain a clean and safe work environment according to Health and Safety standards TeamworkEnthused SellingAll other duties as requiredWorking ConditionsRetail storeMay be required to lift up to 50lbsTwo person lift required for weights exceeding 50 lbsAbility to stand for long periods of timePhysical work including; but not limited to bending, lifting, and reachingExposure to varying temperatures over short periods of timecommunicating with one or more people at a time in an everyday and at time in occasionally unpredictable contexts using a wide variety of formats and styles, and dealing with minor conflictsPrioritize and multitask across various dutiesExposure to sanitation and cleaning chemicalsJob Type: Part Time to Full-timeWe offer the A.I.P. designation program.Salary: Starting at minimum wage $13.35 /hour with potential for increase depending on performance and tenure.Work RemotelyNoJob Types: Full-time, Part-time, PermanentPart-time hours: 20-40 per weekSalary: From $13.35 per hourCOVID-19 considerations:The health and wellbeing of our customers, teammates and partners is our top priority.We recommend our customers continue wearing a mask, physical distance and sanitize hands while in the store. we are as well following the government issued guidelines.Application deadline: 2022-08-31Expected start date: 2022-08-04\",\n            \"location\": \"Prince Albert Rd, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"6AB274AFBFA83C85DBE512CDA277B217\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=67cb88c5a22a2c6d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Virtualy Possible\",\n            \"rowSalary\": \"$56,613–$63,263 a year\",\n            \"date\": 1694535453340,\n            \"dateOfPosted\": 1694535451839,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 56613.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    56613.0\n                ],\n                \"range\": {\n                    \"gte\": 56613.0,\n                    \"gt\": null,\n                    \"lte\": 56613.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a motivated and well-spoken inside sales representative to join our sales team. The inside sales representative will be responsible for developing new leads, communicating with customers, understanding their needs, and ensuring a smooth sales process. You should be able to close sales and meet targets.To be successful as an inside sales representative you should be able to build instant rapport and achieve customer satisfaction. A top inside sales representative should also be very competitive and a good listener.Inside Sales Representative Responsibilities:Communicating with customers, making outbound calls to potential customers, and following up on leads.Understanding customers' needs and identifying sales opportunities.Answering potential customers' questions and sending additional information per email.Keeping up with product and service information and updates.Creating and maintaining a database of current and potential customers.Explaining and demonstrating features of products and services.Staying informed about competing products and services.Upselling products and services.Researching and qualifying new leads.Closing sales and achieving sales targets.Inside Sales Representative Requirements:High school diploma/GED.Previous experience in an outbound call center or a related sales position preferred.Proficiency in Microsoft Office and CRM software such as Salesforce.com.Excellent communication skills, both verbal and written.Good organizational skills and the ability to multitask.Excellent phone and cold calling skills.Exceptional customer service skills.Strong listening and sales skills.Ability to achieve targets.Job Type: Full-timePay: $56,613.00-$63,263.00 per yearBenefits:Flexible schedulePaid time offSchedule:Day shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payCommission payExperience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"151475AB1CB7036954F187B73F5DF8F3\",\n            \"cityName\": \"4914 48 Ave, Red Deer, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=016e63054c8efb27\",\n            \"jobName\": \"Customer Service - Licensing\",\n            \"companyName\": \"The City Of Red Deer\",\n            \"rowSalary\": \"$34.40–$36.22 an hour\",\n            \"date\": 1694534317190,\n            \"dateOfPosted\": 1692836225648,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.293905,\n                    \"lon\": -113.8163378\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Red Deer\",\n                \"formattedAddress\": \"6841 52 Ave bay 1, Red Deer, AB T4N 4L2, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Red Deer\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 35.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35.0\n                ],\n                \"range\": {\n                    \"gte\": 35.0,\n                    \"gt\": null,\n                    \"lte\": 35.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Opportunity: This position is the first level of contact for customer requests and complaints for City Bylaw infractions related to licensing and other related queries via telephone, e-mail or in person at the counter. This position would be expected to address all complaints and inquiries as per departmental guidelines/policy including the associated financial processing, administrative tasks and responding to the customers. Makes recommendations and decisions on Licensing Bylaw matters and prepares various responses and documentation related to those decisions. This position would also provide coverage on our main floor for Customer Service. As our preferred candidate, you will have: One (1) year certificate in a business or legal program with minimum 2 years related customer service or legal experience in bylaw review or equivalent. Knowledge of the licensing bylaws or bylaws in general. Ability to accurately type 30 wpm and input data into a computer working with various applications. Ability to understand and communicate various bylaws, acts, manuals, etc. as required. Ability to deal effectively face to face, over the phone and in writing with difficult customers. Resolving conflict in public situations. Ability to work as a team player and work independently with a high degree of accuracy, attention to detail and in accordance with policies and procedures. Demonstrate ability to manage time with a wide range of challenges and high volume of work with frequent interruptions and conflicting priorities. Experience with financial software and Microsoft Office applications. Ability to learn and apply various internal computer programs in day-to-day operations. Ability and creativity to take customer suggestions and provide internal feedback in order to enhance department and corporate procedures. Ability to be innovative and assist with the creation of efficiencies and process improvements for the department. Affiliation: Canadian Union of Public Employees, Local 417 Remuneration: $34.40 to $36.22 per hour. Hours of Work: 75 hours biweekly; Monday to Friday. Some evening and weekend work may be required. We thank you for your application. Only those selected for an interview will be contacted.\",\n            \"location\": \"Ave, Red Deer, AB\"\n        },\n        {\n            \"id\": \"502E6DBB7904219BB3446CE2C37E6325\",\n            \"cityName\": \"Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e742197f45e193b0\",\n            \"jobName\": \"Customer Service RepresentAtive - Work At Home\",\n            \"companyName\": \"Inspire Direct Marketing\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694533699722,\n            \"dateOfPosted\": 1690812675150,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.64876350000001,\n                    \"lon\": -63.5752387\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax Regional Municipality\",\n                \"formattedAddress\": \"Halifax Regional Municipality, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halifax Regional Municipality\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative - Work at Home$20.00-$24.00/hour + Benefits.Quit your day job, come help us save the world!If you are a mature sales or call centre representative, come join our team of professional fundraising agents to elevate your career and use your skills to help make our world a better place.We are a Canadian agency on a mission to inspire fundraising. We provide a warm and friendly voice to the largest and most respected charities in Canada. Our team is passionate, engaged and extremely effective. We call existing supporters to raise funds for important causes around the globe. So while there are no cold calls or high-pressure tactics, we are a performance team and results matter. We hope they motivate you as well.This is a full-time, outbound, work-from-home position.Job Description:Inspire fundraisers connect with, laugh with and uplift the lives of our client's donors - even if just for a few moments. Their work goes beyond raising funds for some of the world's most worthwhile causes; it's about creating a human connection with every donor. They enjoy being able to deliver world-class results autonomously, while representing great causes and being part of a passionate team.Each day and each call can be different. We find new child sponsors, welcome new donors, renew event participants, and invite donors to give monthly. We thank, connect, engage and inspire. We look for creative new ways to delight on every call. We are all about teamwork, customer connections and most importantly, having fun while we do it.Some of the Benefits:Permanent, full-time employment with consistent hours and growth opportunities Premium wages, $20.00 - $24.00 hourly w bonuses Engagement with world-class charitable organizations 100% paid training and health benefits (at 3 months) Trip incentives (to visit child sponsor communities), bonuses and rewards Training opportunities, lunch-and-learns, workshops Team culture and activities, ice breakers, community eventsTo be an Inspire Fundraiser:You should bring:A minimum of 2 years' customer service and call centre experience You love talking to people and are a great communicator You are looking for full-time hours, 40 hours a week Availability to work evenings (1:00PM - 10:00PM EST Mon -Thu, 10:00AM - 7:00PM EST Fri) Availability to work occasional Saturday shifts (10:00AM to 5:00PM) You are technically savvy and self-reliantYou should have:A professional work from home office space newer-version Windows PC or laptop computer (Apple or Mac are not supported) High-speed cabled internet connection (min 25 mbps down/5 mbps up) A USB headset and webcamIf you are looking to be part of something bigger than yourself and to join a mature call centre team with opportunities to grow and support your peers; we would love to hear from you.Inspire is committed to Employment Equity and Diversity. We do not discriminate against any employee or applicant for employment because of national origin, race, religion, ethnicity, age, disability, sex, sexual orientation, gender identity, veteran status or any other federal, provincial, or local protected class. We welcome and encourage applications from persons with disabilities. Accommodations are available upon request for candidates who participate in all aspects of the selection process.Please note: We thank everyone for their interest however only the best qualified candidates may be contacted.\",\n            \"location\": \"Halifax, NS\"\n        },\n        {\n            \"id\": \"9E5D2ED1588D4EC82F79A63296F8F3B2\",\n            \"cityName\": \"Sainte-Anne-des-Monts, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c0ca291c9080c296\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Pâtisserie-Boulangerie Marie 4 Poches s.a.\",\n            \"rowSalary\": \"$15.25–$17.00 an hour\",\n            \"date\": 1694533430204,\n            \"dateOfPosted\": 1690809427136,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.12229199999999,\n                    \"lon\": -66.4924319\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sainte-Anne-des-Monts\",\n                \"formattedAddress\": \"Sainte-Anne-des-Monts, QC G4V 2L4, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"La Haute-Gaspésie Regional County Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sainte-Anne-des-Monts\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Experience an assetor equivalent experience Work setting Rural area Tourism Business Staff accommodation available Tasks Receive payments Sell merchandise Take customers' orders Stock refrigerators and salad bars Serve food and beverages Describe menu items including daily specials for customers Transportation/travel information Own transportation Own vehicle Work conditions and physical capabilities Attention to detail Fast-paced environment Physically demanding Repetitive tasks Standing for extended periods Personal suitability Client focus Efficient interpersonal skills Excellent oral communication Reliability Team player Judgement Ability to multitask Screening questions Are you available for the advertised start date? Are you currently a student? Are you currently legally able to work in Canada? Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Green job Involves duties and responsibilities that lead to positive environmental outcomes Long term benefits Other benefits Registered Retirement Savings Plan (RRSP) Other benefits Free parking available Learning/training paid by employer On-site amenities On-site housing options Team building opportunitiesWork Term: PermanentWork Language: FrenchHours: 20 to 40 hours per week\",\n            \"location\": \"Sainte-Anne-des-Monts, QC\"\n        },\n        {\n            \"id\": \"89F93998066B43553A583F4FF7C4375B\",\n            \"cityName\": \"688 Richmond Street West, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=632bc9c05889c691\",\n            \"jobName\": \"Junior Customer Service And Fulfillment Associate\",\n            \"companyName\": \"Tonic Blooms\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694533307108,\n            \"dateOfPosted\": 1694533306915,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6478501,\n                    \"lon\": -79.3958828\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Richmond St W, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About Us:Tonic Blooms is on a mission to bring the joy back to sending flowers across Canada. We’re an on-demand service delivering petal-packed perfection on your schedule! We focus all our energy to ensure that our customers and their lucky recipients are delighted from the moment they land on the website until they get that coveted \\\"thank you!\\\" phone call. We're here to assist in making someone's day, every step of the way. Happiness guaranteed!Why work with us? You'll get to be in a fast-paced and very fun environment (never a dull moment!), learn the ins and outs of the flower industry and gain valuable insight into a dynamic, exciting young company. Plus, you'll be surrounded by beautiful flowers while making peoples' days - what could be better?!What you’ll do:Customer Service:Be knowledgeable in and confident speaking to the brand and productsAcknowledge and assist every customer (via phone, email, text or in person) promptly with exceptional care; answer questions, recommend products and ensure the entire customer experience is engaging, empathetic and efficient.Notify customers of potential order changes or delivery delays and resolve them promptlyCommunicate with delivery drivers via driver phone line, text and Onfleet messaging, monitoring their progress at all times to ensure deliveries are being made efficiently, troubleshooting problems and working quickly to resolve themFulfill and print order tickets via Shopify, sorting them according to delivery window and driverCollaborate with the customer service manager to ensure seamless operations and efficient workflow.Fulfillment:Thoroughly conduct quality control checks for each bouquetNeatly wrap bouquets according to standard and aesthetic, ensuring correct note card and address label is applied to each packageAssist with packaging prep, i.e. constructing flower cartons, cutting denim squares and ribbon for bouquet wrapping, preparing vases with flower food, etc.Studio Maintenance:Ensure studio, packing area and fridge is neat, tidy and sanitizedUnpack packaging supplies and organize hard goods, ensuring they are clean before going into inventoryParticipate in monthly hardgoods inventoryRequired Skills:Highly organized, meticulous, and detail-orientedStrong verbal and written communication skillsStrong computer skills required, able to operate via several web-based applicationsAdaptable to fast-paced environments with the ability to work collaboratively with a teamPunctual and reliable for time-sensitive servicesStrong problem-solving and critical thinking skillsShopify experience preferred though not requiredBasic knowledge of Excel / Google Sheets requiredFamiliarity of GTA and surrounding areas requiredPassionate about flowers and interacting with customersPrior customer service experience is preferred though not required; what’s more important is someone with a positive attitude, a can-do mindset and eager to learn!Additional Info:This is a part-time position. Although our operating hours vary, the hours for this position are planned to operate Monday - Friday between 3:30 p.m. and 8:00 p.m. Availability during holiday weekends and company blackout periods (i.e. the lead-up to and including Valentine’s Day, International Women’s Day, Mother’s Day, Thanksgiving, etc.) is mandatory.This position requires frequent lifting of buckets and boxes that weigh up to 40 lbs, standing for extended periods (up to 12 hours per day), constantly working with your hands and frequent exposure to cold temperatures from our cooler of 3-6 degreesThis position is in downtown Toronto; proximity to our studio or a manageable commute is preferredJob Types: Full-time, PermanentSalary: $20.00-$22.00 per hourBenefits:Casual dressCompany eventsDental careExtended health careOn-site parkingPaid time offStore discountVision careSchedule:Monday to FridaySupplemental pay types:Bonus payCOVID-19 considerations:Mandatory full Covid-19 vaccination (including booster). Mask to be worn inside the studio at all times.Ability to commute/relocate:Toronto, ON M6J 1C5: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:customer service: 2 years (required)Language:English (required)Work Location: In person\",\n            \"location\": \"Richmond St W, Toronto, ON\"\n        },\n        {\n            \"id\": \"F2CE776B37A6E30E5886A363389B5A31\",\n            \"cityName\": \"150 New Huntington Rd, Woodbridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7de32b34be91c119\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Hls Linen Services\",\n            \"rowSalary\": \"$60,000–$70,000 a year\",\n            \"date\": 1694533290081,\n            \"dateOfPosted\": 1694533289901,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.77436669999999,\n                    \"lon\": -79.6438821\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"New Huntington Rd, Vaughan, ON L0J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 60000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    60000.0\n                ],\n                \"range\": {\n                    \"gte\": 60000.0,\n                    \"gt\": null,\n                    \"lte\": 60000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*HLST Linen Services is looking to fill a role of Customer Service Representative (CSR)/Quality Control Administrator , the primary responsibility is maintaining positive relationships with our valued customers by providing exceptional, over the phone and in person customer service. The CSR must thrive in an extremely fast paced work environment with high deliverables. Must assist with Administrative task as needed.Some of your responsibilities will include but not limited tooBe proactive in following up with customers to discuss the status and progress of service if there is a delay in delivery.Maintain strong working relationships within our valuable customers and productionAct as the primary contact for conflict resolution by demonstrating strong listening and negotiation skills while speaking with irate customers to reduce escalation and increase customer satisfactionMust have vehicleMust be willing to travel to Customer’s sitesYou will also be responsible for Quality Control and assures product quality by monitoring and auditing the quality of processed linen as well as all operational procedures in processing the linen and delivering the linen to the customer. Assures product quality by monitoring and auditing the quality of product as well as all operational procedures in processing linen.Ensures that quality assurance activities are directed towards process improvement, continuous quality improvement, cost effectiveness of processes, systems and procedures, and positive preventative corrective action. Oversees development and implementation of standards, methods and procedures for inspecting, testing and evaluating for precision, accuracy and reliability of company products and services.Conducts random quality checks on product and/or procedures to ensure proper standards are maintained.We offer an excellent benefit package. Must have a minimum of (2) covid vaccines.Job Type: Full-timeSalary: $60,000.00-$70,000.00 per yearBenefits:Dental careExtended health careLife insuranceOn-site parkingPaid time offRRSP matchFlexible Language Requirement:French not requiredSchedule:Monday to FridayAbility to commute/relocate:Woodbridge, ON L4H 4N4: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:customer service in person: 3 years (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"New Huntington Road, Vaughan, ON\"\n        },\n        {\n            \"id\": \"BACC4316A52E8D6EB971A40C77AC5F29\",\n            \"cityName\": \"65 Bessemer Road, London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=816f6c9d8637e482\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Partify\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694533289896,\n            \"dateOfPosted\": 1694533289692,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9302214,\n                    \"lon\": -81.2121738\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"Bessemer Rd, London, ON N6E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a family-owned automotive parts company based in London, Ontario (headquarters), and Michigan, USA. Our company specializes in custom-painted car parts for consumers. Additionally, we sell unpainted auto parts, such as headlights and grilles. The company currently has a combined total of over 50 employees and is looking to grow even further. The company website is https://partify.ca/.Position SummaryThe role of a Customer Service Representative is to help customers with all inquiries before and after placing their orders through calls, emails, chats, texts, social media, or in person. A Customer Service Representative also handles concerns, complaints, and other issues. Their goal is to ensure customer satisfaction throughout their entire interaction with the company.OverviewCollaborate well with team members in a fast-paced environment.Interact with employees in both locations.Learn to use platforms like Shopify, Ring Central, and Gorgias to complete tasks and answer calls.Learn to identify customer needs or desires to recommend the appropriate product or service.Develop a good understanding of the products we supply to answer customers' questions accurately.Provide written communication to customers that is free of spelling and grammatical errors.Work with colleagues when necessary to resolve customer complaints by providing solutions promptly to ensure customer satisfaction.Strong organizational skills.Provide answers to all customer inquiries and requests and conduct follow-ups on time.Roles & ResponsibilitiesRespond to customer inquiries and assist them with placing their orders.Provide information regarding parts and give quotations.Update customers regarding order statuses.Assist customers with tracking their shipments.Resolve order issues and reach out to customers regarding their orders.Updating orders and sending customer invoices.Issuing refunds and following up with customer concerns.Contacting dealerships and shipping companies to facilitate the order process for customers.Responding to reviews and questions.Keeping track of orders to ensure the orders are fulfilled on time.Fulfilling local orders.Maintain files, documentation, and databases.Other Duties as assigned.RequirementsBachelor’s DegreeStrong communication and interpersonal skills.Strong verbal and written skills.A minimum of 55 words per minute.Proficient with Microsoft Office, and other Office applications.Works and communicates well individually and in a team environment.Excellent organization and prioritization skills.Time management skills to multitask in a high volume, rapidly changing work environment.Job Types: Full-time, PermanentSalary: $20.00 per hourBenefits:Casual dressCompany eventsDental careDiscounted or free foodLife insuranceOn-site parkingStore discountVision careSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsAbility to commute/relocate:London, ON N6E 2G1: reliably commute or plan to relocate before starting work (required)Application question(s):Can you type 55 words per minute? This is a requirement.How would you describe customer service?Work Location: In person\",\n            \"location\": \"Bessemer Road, London, ON\"\n        },\n        {\n            \"id\": \"B2158E32FB5AA90051966DFAD946E100\",\n            \"cityName\": \"1400 Weber St E, Kitchener, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=950dbca2d58286ae\",\n            \"jobName\": \"Cannabis Customer Service Representative\",\n            \"companyName\": \"Cannabis Supply Company\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694533274784,\n            \"dateOfPosted\": 1694533274576,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4401555,\n                    \"lon\": -80.4629593\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kitchener\",\n                \"formattedAddress\": \"Weber St E, Kitchener, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kitchener\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Basic Function:Under the direction of the Store Manager, the main role of this position is to provide a superior customer service experience to every person that enters the store. You will be responsible for greeting each customer, inquiring about their needs, providing the education they require to make a well-informed purchase. The expectation is that every customer will be 100% satisfied, guaranteed to return. This position may rotate from floor to checkout, therefore accurate entry of orders into the POS system, dispensing change and receipts and balancing the till at the end of the shift is required.Responsibilities & Tasks:1. Develop and maintain strong customer service skills.2. Maintain up to date knowledge of all products being sold in the store so that you can educate customers on cannabis products and accurately relay information.3. Maintain confidentiality and privacy of company business and customer information.4. Double check every order for accuracy with the customer.5. Navigate the POS system, provide accurate change and receipts and balance till.6. Sign in and out of shift to ensure proper reconciliation of hours.7. Comply with all company policies and procedures, code of conduct and government legislations.8. Promote the safe use of cannabis.9. Contribute to the cleanliness of store by assisting with shift cleaning tasks.10. Maintain a healthy and safe workplace at all times or take corrective action.11. Work co-operatively with others in a team orientated approach.12. Participates in training and professional development as required.13. Represent the company in a professional manner at all times.14. Participates in team meetings.15. Participates in monthly meeting with supervisor.16. Communicate in a professional manner at all times.17. Utilize the problem solving model to address any conflicts that may arise.18. Remain abreast on all internal communication forums.**VALID CANNSELL AND CRIMINAL BACKGROUND CHECK REQUIRED BEFORE START DATE.Job Types: Part-time, PermanentPart-time hours: 10-30 per weekSalary: $17.00 per hourBenefits:Company eventsOn-site parkingStore discountFlexible Language Requirement:French not requiredSchedule:10 hour shift4 hour shift8 hour shiftMonday to FridayWeekend availabilitySupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Weber St E, Kitchener, ON\"\n        },\n        {\n            \"id\": \"1B7A4F2C0025F8F8D6FB13FB4E6B1345\",\n            \"cityName\": \"Goderich, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9e8abc2d2b1cf649\",\n            \"jobName\": \"Customer Service Rep\",\n            \"companyName\": \"Novalink Marketing Inc\",\n            \"rowSalary\": \"$50,000–$75,000 a year\",\n            \"date\": 1694533270414,\n            \"dateOfPosted\": 1694533270219,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7428345,\n                    \"lon\": -81.7138942\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Goderich\",\n                \"formattedAddress\": \"Goderich, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Huron County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Goderich\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you looking for a new career? Do you like helping people? Do you feel like you are a great communicator? Trying to do something more in your life in a competitive, fast - paced, customer focused environment?Novalink Marketing is looking for full-time Customer Service and Sales Reps for our new customer service and sales team. These are IN-PERSON positions, not remote.We are looking for associates with great communication skills who can add to our team. We are located in Goderich, Ontario and are looking for people that are fun and outgoing that want to excel.We work with large companies looking to expand into the Canadian market. English is required as is Canadian work authorization. Additional languages is a plus.*Daily duties include:-Sales presentations-Customer service and retention-Face to face marketing-Training presentations and development programsCandidates who excel in this position are:- competitive spirit, team oriented-have a high school education-Motivated by growth-Written and oral communication skills-Available full timeWe are looking for someone who can start within the next 1-2 weeks.We have been tasked with adding a minimum of 2 new customer service and sales agents by the end of the month and are looking for people that would be the right fit for our team.Job Type: Full-timeSalary: $50,000.00-$75,000.00 per yearBenefits:Flexible scheduleFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftDay shiftSupplemental pay types:Bonus payCommission payAbility to commute/relocate:Goderich, ON: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Licence/Certification:Driving Licence (preferred)Work Location: In person\",\n            \"location\": \"Goderich, ON\"\n        },\n        {\n            \"id\": \"0FFDDE17C482D25DF3B0E0EA405B0439\",\n            \"cityName\": \"420 Richards St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=82447b06f50dfae6\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"The Poke Guy\",\n            \"rowSalary\": \"$17–$20 an hour\",\n            \"date\": 1694532839558,\n            \"dateOfPosted\": 1693686479134,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2788687,\n                    \"lon\": -123.1197521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Richards St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"JOB TITLE: CUSTOMER SERVICE:Provides exceptional customer service and accurately assists in the assembly of menu items.Cleans and maintains dining area in accordance with restaurant policiesKEY RESPONSIBILITIES • Greet all guests in a polite and courteous mannerProvides exceptional customer service and assists customers in the preparation of their poke bowls in accordance with restaurant plating standards and portionsMaintain accurate knowledge of menu items, potential allergens and working knowledge of the history and origins of PokeAccurately enter all orders into the Point of Sale (POS) and take payment from customersAssist with the opening and closing of the till as needed • Assists with food preparation as needed under direct supervision of the cooks or managerKnows and complies with Vancouver Coastal Health food safe practices to ensure safe food handling and sanitizingStocks and maintains sufficient levels of paper products and cutlery at all condiment stations and dining tablesReport any inventory shortages to kitchen managerMaintain a clean and sanitary dining area which includes but is not limited to:-Floors swept on a regular basis and mopped daily,-Windows and all glass are wiped and cleaned,-Bathroom is serviced daily .REQUIREMENTSWillingness to learn, experience not necessaryStrong communication skillsBe able to work in a standing position for long periods of timeMaintain exceptional hygiene and presentationHigh School or equivalent educationFood safe certification is an asset but not a requirement.Job Types: Full-time, Part-time, Permanent, Casual, SeasonalPart-time hours: 20-40 per weekSalary: $17.00-$20.00 per hourSchedule:8 hour shiftDay shiftHolidaysMonday to FridayNight shiftWeekends as neededSupplemental pay types:Bonus payTipsCOVID-19 considerations:To keep all members safe, we have set barriers to keep customers and members 6 ft apart. Masks, gloves, and sanitizer are provided.Ability to commute/relocate:Vancouver, BC V6B 2Z3: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Richards Street, Vancouver, BC\"\n        },\n        {\n            \"id\": \"2AA36E9833A8A6601CBF829D1798E89E\",\n            \"cityName\": \"2121 Carling Avenue, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=df39726578590cfc\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Lifemark Health Group\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694532325067,\n            \"dateOfPosted\": 1691653777951,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.35917600000001,\n                    \"lon\": -75.79599209999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Carling Ave, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative – Lifemark Physiotherapy Carlingwood Mall Location: 2121 Carling Avenue  Ottawa, Ontario  Employment status: Permanent Part-Time  Rate compensation: $17.00 per hour  Do you thrive on having the satisfaction of being on a driven team of industry experts and building a reputation for being one of the best in the industry with exceptional standards of work and quality? If so, join us at Lifemark Physiotherapy Carlingwood Mall, a Lifemark Health Group company, Canada’s premier, largest, and most comprehensive healthcare management organization. We believe when you move better, you feel better. This is at the heart of everything we do, and we are seeking a Customer Service Representative who shares this same philosophy. At Lifemark, we walk the talk of our company's Core Values: \\\"We have fun,\\\" We strive for simplicity,\\\" We trust each other to do the right thing,\\\" We go the extra kilometre,\\\" and \\\"We belong here.\\\" Why Lifemark? Opportunity to work with a multi-disciplinary team of clinicians and the satisfaction of being on a driven team. Flexibility in building your perfect schedule with our understanding Clinic Director. Competitive compensation with an excellent benefits package for permanent employees. Shoppers Drug Mart 30% Employee discount. Employee Stock Purchase Plan. Paid Vacation days. Employee Referral Bonus Program. Pathways for leadership opportunities. Opportunities for mentorship as well as a positive and comforting work environment. Nationally recognized brand with a strong digital presence. Qualifications & Core Competencies: High School Diploma, G.E.D. or equivalent. Excellent customer service skills and telephone etiquette. A high degree of organizational and multi-tasking skills in a busy and fast-paced work environment, preferably with 1-3 years of work experience in a private rehabilitation clinic. Excellent communication and interpersonal skills. Knowledgeable in the LPS system is a definite advantage. Computer savvy and data entry skills in a physiotherapy clinic setting will be an asset but not required. Flexible and adaptable to change. New Graduates are welcome to apply. Key Functions and Responsibilities: Answer telephone calls, greet patients and visitors upon arrival, and provide excellent customer service for all questions or concerns. Coordinate a detailed and accurate intake of information on the patient's first visit to the clinic and throughout their treatment plan. Assist patients with completing paperwork at the clinic to avoid errors and inaccurate information. Coordinate scheduling of patient appointments and maintain the patient's medical record. Collect payment at the time of service. Track coverage for all funding streams to ensure approval Complete data entry and billing Coordinate courier packages (in or outgoing) and process incoming and outgoing emails, mail and faxes. Provide administrative support to the Care Coordinator Manager and Clinic Director. We have gone above and beyond to ensure the safety of our patients and employees with PPE provided, the spacing of patients, screening, and more. Extensive safety protocols and procedures have been put into place and are mandatory. Lifemark welcomes and encourages applications from people with disabilities. Accommodations are available on request for candidates taking part in all aspects of the selection process. Lifemark promotes equal employment opportunities for all job applicants, including that self-identifying as a member of the following groups: Indigenous peoples, Newcomers to Canada, and Visible minorities. Apply today! Visit www.lifemark.ca/careers\",\n            \"location\": \"Carling Avenue, Ottawa, ON\"\n        },\n        {\n            \"id\": \"EB14F7C5A3FD7A6A8F00F1CFDB4D81B6\",\n            \"cityName\": \"1801 Lakeshore Road West, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=05ab2d46042ab44e\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Turtle Creek Cards And Gifts\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694532315042,\n            \"dateOfPosted\": 1674161961338,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5308514,\n                    \"lon\": -79.6082911\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Lakeshore Rd W, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Shipping parcels within Canada,USA and internationally.selling canadapost authorized products,stamps.selling gift itemsTaking passport photosJob Type: Fixed term contractContract length: 12 monthsSalary: From $15.50 per hourSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsCOVID-19 considerations:Wear a maskKeep distance Use sanitizer Ability to commute/relocate:Mississauga, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In personApplication deadline: 2023-01-31\",\n            \"location\": \"Lakeshore Rd W, Mississauga, ON\"\n        },\n        {\n            \"id\": \"76CBFAE213E483AB0EC0C99602A00F5B\",\n            \"cityName\": \"Quebec City, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=264eb584bec13257\",\n            \"jobName\": \"Bilingual Customer Service Representative (Remote)\",\n            \"companyName\": \"Medavie Blue Cross\",\n            \"rowSalary\": \"$21.45 an hour\",\n            \"date\": 1694532216311,\n            \"dateOfPosted\": 1691653738580,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.8138783,\n                    \"lon\": -71.2079809\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Quebec City\",\n                \"formattedAddress\": \"Quebec City, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Québec\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Quebec City\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title: Bilingual Customer Service Representative Department: Member Experience Competition: 86272Internal/External: Internal/External Employment Type: Full Time Permanent Location: Remote Québec Salary: 21,45$ per hour/ comprehensive benefits/ bonus Reports To: Team Leader Starting date : Classes starting: September 11th 2023 and October 16th 2023Referral Bonus Eligible Amount: $1000The opportunity before you We are hiring monthly classes in August, September and October – let us know when you’d like to start!  We are looking for Customer Service Representatives who are critical thinkers, who want to help our members on a daily basis, who have the ability to work in a fast-paced environment, and who are enthusiastic about acting as our company's first point of contact. Our award-winning company culture, caring managers, training and unparalleled support are all ways to ensure your success. Here's what we offer:No weekends or overnights – your shift will end at 8pm!We offer a variety of work options: Remote, Onsite or a combination of Hybrid – let us know what works for you!A stable schedule, established according to shifts from Monday to Friday from 8 a.m. to 8p.m.;A comprehensive health and dental plan, fully paid by the employer, in effect one month after your first day on the job;A comprehensive virtual training program that prepares you for work and call taking;Opportunities for career advancement and development;Work-life balance, wellness benefits, health resources and discounts for select fitness centres;A great work environment, exceptional colleagues and supportive leaders to help you succeed!Our team's star employees:Answer questions about health benefits and plan eligibility, payment inquiries and other general questions;Quickly assess and resolve problematic situations and provide effective strategies for resolution on first call;Are dedicated to customer service excellence and demonstrate a high level of commitment in all areas.Skills needed to succeed:Previous call centre experience is not required, however, candidates who have demonstrated excellent skills in serving clients over the telephone, have the ability to multi-task while providing excellent customer service, and demonstrate an eye for detail are highly successful in this position;Loving helping people is a non-negotiable requirement;Be fluently bilingual (English-French); In order to meet the needs of the English-speaking clientele, this position requires bilingualismBe a good communicator both on the phone and by email. Speaks in a clear, concise and friendly manner;Have the desire to go to the end of things and enjoy new challenges;Relevant training, education or work experience in the areas of customer service or health;Excellent technical skills, ability to manage multiple tasks at once and switch between software without difficulty, while simultaneously continuing to assist the caller;Be able to answer both difficult and easy calls;Be an expert in problem solving, understand the needs of members and quickly learn how to achieve the best results in all settings;A little information about Medavie Blue Cross: For more than 75 years, Medavie Blue Cross has been a recognized health and wellness partner for individuals, employers and governments across Canada. As a not-for-profit organization, we are proud to give back to the communities in which we operate and to build on a collaborative culture to help our employees thrive. Medavie Blue Cross was recognized as having one of Canada's most admired corporate cultures and was named a Caring Company, a title given to national leaders in community investment and social responsibility.  Our team of 2,100 professionals is spread across six provinces. We excel through our shared values: compassion, responsibility, adaptability, innovation and community. We value the health and well-being of our employees and their families, as well as personal and professional development, which is why we offer a wide range of programs and resources at all levels of the company.  Together with Medavie Health Services, Medavie Blue Cross is part of Medavie, a national healthcare company with more than 6,400 employees. Together, our mission is to improve the well-being of Canadians. #CBM1Medavie Blue Cross is an equal opportunity employer. Medavie Blue Cross strives to foster a culture where everyone is enabled to achieve their full potential — a culture of diversity, equity and inclusion (DEI) where we live our values every day in the way we treat each other, our members and the communities we serve. Accessibility is a top priority.  For applicants with disabilities, we provide accommodations throughout the recruitment, selection and/or assessment process. If selected to participate in the recruitment, selection and/or assessment process, please inform Medavie Blue Cross Human Resources staff of the nature of any accommodation(s) that you may require in respect of any materials or processes used to ensure your equal participation. All personal information is collected under the authority of the Municipal Freedom of Information and Protection of Privacy Act.  We would like to thank all candidates for expressing interest. Please note only those selected for interviews will be contacted. Job Segment: Customer Service Representative, Call Center, Equity, Customer Service, Finance\",\n            \"location\": \"Quebec City, QC\"\n        },\n        {\n            \"id\": \"57677F11364896B72987E8B6BA89DFBE\",\n            \"cityName\": \"6133 University Blvd, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2e261f6998dfec68\",\n            \"jobName\": \"Customer Service Representative - Grand Noodle Emporium\",\n            \"companyName\": \"Alma Mater Society Of Ubc Vancouver\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694531962738,\n            \"dateOfPosted\": 1692840343205,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2637763,\n                    \"lon\": -123.2182635\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"University Blvd, Vancouver, BC V6T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Alma Mater Society (AMS) is the University of British Columbia’s (UBC) student society, and works to improve the academic, social and personal lives of the 56,000 UBC students at its Vancouver campus. The AMS also runs nine food and beverage outlets, a catering and conference operation, and the AMS Student Nest, providing on-campus employment opportunities and generating revenue that goes directly back into supporting the students at UBC. Position title: Customer Service Representative Department: Food & Beverage Reports to: Outlet Manager Employee status: Part Time Hours per week: As available (must have morning availability) Compensation: $17.00 per hour  The Customer Service Representative is the first point of contact in all our venues and gives the first impression to our guests. They greet our guests and achieve sales goals through recommendation and suggestive sales techniques, resulting in superior guest service. They handle cash transactions while staying focused and levelheaded even under pressure. We are looking for outgoing, friendly candidates who enjoy dealing with people while being hands on.  Duties & Responsibilities Provide excellent guest serviceMeet and exceed sales goals through suggestive sales techniquesDemonstrate and apply exceptional product knowledge resulting in sales increasesWork in a fast paced environment to complete POS transactions correctly according to AMS proceduresProduce products to AMS standards applying AMS proceduresMaintain a clean and safe work environmentFollow the AMS food safety procedures at all timesWork with the AMS mission statement and values to operate a successful departmentOther duties as required Qualifications & Experience Ability to stand for extended periods of timeAbility to lift up to 20kgs (44 lbs)Ability to do shift work (daytime, evenings, weekends and holidays)Ability to complete small monetary calculation for POS transactionAbility to learn quickly and work as part of a teamPrevious experience in a food service environment an assetFood Safe certification an assetTO APPLY: Please submit your resume (include term 1 availability).  The Alma Mater Society of UBC is an equal opportunity employer and all qualified applicants will receive consideration for employment without regard to race, national or ethnic origin, colour, religion, age, sex, sexual orientation, gender identity or expression, marital status, family status or any other characteristic protected by law. We invite all qualified candidates to apply online with their resume and cover letter. Due to the large volume of resumes we receive at the AMS, we are only able to contact those we are interested in interviewing and cannot reply to email/phone/walk-in inquiries regarding application status.\",\n            \"location\": \"University Blvd, Vancouver, BC\"\n        },\n        {\n            \"id\": \"AE0045996AF2BE5C88CEB9A4AE480923\",\n            \"cityName\": \"UW Calgary in Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=458cec2864f0d999\",\n            \"jobName\": \"Customer Service Assistant\",\n            \"companyName\": \"Uw Calgary\",\n            \"rowSalary\": \"$15–$18 an hour\",\n            \"date\": 1694531937737,\n            \"dateOfPosted\": 1688059934709,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"UW Calgary specializes in client acquisition and business development with a passion for providing exceptional customer service. The UW Calgary team shares a passion for giving back; both to our fellow teammates and to our community. Our team enjoys problem-solving and to continue our efforts in the local area and keep up with client demand, we are hiring a Customer Service Assistant immediately.The Customer Service Assistant will act as the first point of contact with existing customers. They will assist with organizing our sales team and reporting back to the Executive Sales Manager. The Customer Service Assistant will receive hands-on training on all sales and marketing techniques, brand management strategies, territory management, and compliance standards as well as coaching, mentoring, and career development. The ideal candidate will have exceptional communication skills and be genuinely excited to grow with a company.Customer Service Assistant Responsibilities:Meeting planned sales goalsSetting individual sales targets with the sales team.Tracking sales goals and reporting results as necessaryOverseeing the activities and performance of the sales team.Develop and deliver informative sales presentations based on individual customer needs to maximize market shareParticipate in continuous training opportunities with the intent to increase qualified customer contacts, enhance relationships and advance the sales process.Customer Service Assistant Qualifications:Previous experience in marketing, promotions, sales, or account management preferredComfortable taking on a leadership role and support role within a team (must work well with others)Strong interpersonal skillsExperience in customer relationship management (preferred, not required)Experience in a management or leadership roleExcellent written and verbal communication skills.Dedication to providing great customer serviceJob Type: Full-timeSalary: $15.00-$18.00 per hourSchedule:8 hour shiftMonday to FridayWeekend availabilityAbility to commute/relocate:Calgary, AB T2B 1K7: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"8F94546B9F4D1C892895F16F1C60BF00\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a08e53d26950f35d\",\n            \"jobName\": \"Customer Service Supervisor - Retail\",\n            \"companyName\": \"Hns Hannam Supermarket Robson\",\n            \"rowSalary\": \"$22–$25 an hour\",\n            \"date\": 1694531767026,\n            \"dateOfPosted\": 1691653703604,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Assign sales workers to duties Hire and train or arrange for training of staff Authorize payments by cheque Authorize return of merchandise Establish work schedules Resolve problems that arise, such as customer complaints and supply shortages Supervise and co-ordinate activities of workers Health benefits Health care planWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"F7FE05C9C3164C62FEF34B5804BAA032\",\n            \"cityName\": \"10017 Main St N, Winfield, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=af5ea2ecb262c38d\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Iga\",\n            \"rowSalary\": \"$16.75–$18.00 an hour\",\n            \"date\": 1694530504777,\n            \"dateOfPosted\": 1692830611712,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.0221636,\n                    \"lon\": -119.4040817\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lake Country\",\n                \"formattedAddress\": \"Main St, Lake Country, BC V4V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lake Country\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Locally owned and operated IGA in Lake Country is looking for outgoing, customer focused individuals to join the team. If you want to be a part of one of the best Grocery stores within the Okanagan this is the job for you. Duties include, but not limited to: providing exceptional customer service, knowing all produce codes, weighing items to determine price, scanning prices of marked items, resolving pricing issues by requesting price checks, redeeming coupons, gift certificates, receiving cash, making correct change, processing debit and credit cards and bagging products appropriately. Flexible availability required.Drop off resume at store, ask for LauraJob Type: Part-timeSalary: $16.75-$18.00 per hourBenefits:On-site parkingStore discountDay range:Weekends as neededShift:4 hour shift8 hour shiftDay shiftEvening shiftWork setting:Grocery storeWork Location: In person\",\n            \"location\": \"Main St N, Winfield, BC\"\n        },\n        {\n            \"id\": \"0774BD8DEC87E8D9F63116A05F624F18\",\n            \"cityName\": \"50 Church Street, St. Catharines, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1e78e0af642918f7\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"City Of St. Catharines\",\n            \"rowSalary\": \"$29.64 an hour\",\n            \"date\": 1694530300576,\n            \"dateOfPosted\": 1690799639000,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1628678,\n                    \"lon\": -79.2432424\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St. Catharines\",\n                \"formattedAddress\": \"Church St, St. Catharines, ON L2R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"St. Catharines\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 30.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    30.0\n                ],\n                \"range\": {\n                    \"gte\": 30.0,\n                    \"gt\": null,\n                    \"lte\": 30.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"THIS IS A TEMPORARY PART TIME POSITION FOR APPROXIMATELY SIX (6) MONTHSSummary:As a key member of the City of St. Catharines’ Citizens First Program, you are responsible for receiving, answering and referring all calls associated with the City’s Customer Service Division. Additionally, you provide a variety of City transactional services on behalf of all City Departments at the Customer Service Counter.Duties and Responsibilities:(These set out the principal functions of the position, and shall not be considered as a detailed description of all the work requirements).Act as primary contact for the City with the public from a variety of channels; telephone, email and counter.Process a variety of financial transactions for City services and programs including cash, debit and credit cards following department designated collection procedures and payment options.Receive, assess, refer and answer inquiries related to all departments of the City such as tax, water, parking, forestry, roads maintenance, traffic operations, culture and recreation.Prepare daily, weekly and monthly financial reporting, inventory reporting and prepare the required general ledger journal entries.Triage requests, determining information needs and entering information in a variety of computer-based software applications.Enter and maintain online requests, paper files and logs related to service requests.Self-monitor and measure performance against written guidelines to ensure the desired level of customer satisfaction and service using tools available.Recognize trends or changes in types of calls or questions that callers have.React to situational changes by ensuring that appropriate persons are notified.Participate in on-going monitoring of telephone calls to ensure standards are being met.Report regularly on the status of results and performance.Research, prepare, apply and submit adjustments for various departments regarding parking fines, tax accounts, recreation programs, and facility booking and revenue distribution journals.Position Requirements:Minimum of a Grade 12 Diploma plus additional courses in Customer Service and Administration.Experience in a customer service related position is essential.Experience with cash-handling or related functions is an asset.Dynamic customer service skills including well-developed empathy and intuitive skills to be able to assess customer's sometimes unspoken needs and quickly match up those needs with available resources.Established written and verbal communication skills including effective use of grammar and spelling.Proven ability to work within a fast-paced, multi-tasking team environment while maintaining a positive demeanour.Expert awareness of current events related to public health and safety, public programs, flyer distribution, snow removal, cultural events such as festivals, parades, and street fests; public meetings such as Council and public information sessions.Excellent interpersonal and conflict resolution skills.Creativity and flexibility in order to persuade and educate customers.Excellent telephone etiquette; good voice quality, diction and articulation.Ability to work with figures and an understanding of business accounting concepts.Ability to conduct internet searches.Proven experience in Microsoft Word, Excel, and Outlook.Proven completion of Ministry of Labour Worker Health and Safety Awareness training.A demonstrated commitment to enhancing a safety culture.Hourly Rate: $29.64Expected Work Location: City HallHours of Work: Various shifts Monday - Friday, up to 24 hours per weekTHIS IS A TEMPORARY PART TIME POSITION FOR APPROXIMATELY SIX (6) MONTHSApplications will be accepted online at www.stcatharines.ca/jobs. Applications received any other way will not be accepted.The City of St. Catharines is an equal opportunity employer committed to inclusive, barrier-free recruitment and selection processes and work environments. We will accommodate the needs of applicants under the Ontario Human Rights Code and the Accessibility for Ontarians with Disabilities Act (AODA) throughout all stages of the recruitment and selection process. Please advise the Human Resources Division to ensure your accessibility needs are accommodated throughout this processJob Types: Part-time, Fixed term contractContract length: 6 monthsPart-time hours: 24 per weekSalary: $29.64 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftWork Location: In person\",\n            \"location\": \"Church Street, St. Catharines, ON\"\n        },\n        {\n            \"id\": \"9CC8B81C44F59ADF9ABB5C418C46D978\",\n            \"cityName\": \"Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=840645bd8312e2cb\",\n            \"jobName\": \"Testing Centre Invigilator - Casual Part Time/On Call\",\n            \"companyName\": \"Mohawk College\",\n            \"rowSalary\": \"$17.60 an hour\",\n            \"date\": 1694530014068,\n            \"dateOfPosted\": 1693682578540,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2557206,\n                    \"lon\": -79.8711024\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Testing Centre Invigilator - Casual Part Time/On Call Status: Casual Part Time/ On CallHours: Up to 24 hours/weekHome Campus: Fennell, Stoney Creek, IAHSRate of Pay: $17.60Posting Date: August 23rd, 2023Closing Date: Posted until filledWe support and encourage the contributions of our diverse employees. We are committed to nurturing an equitable, diverse and inclusive (EDI) environment for everyone who learns and works at Mohawk College. We believe the rich diversity among our students and the communities we serve should be reflected within our workforce. As educators we believe it is important to act and show leadership in advancing the principles of equity, diversity and inclusion in our community. Mohawk College is currently recruiting for our nextTesting Centre InvigilatorUnder the direction of the Manager, Testing Centres, as a professional staff member, the Invigilator oversees the organization and management of the testing. They are also responsible for proctoring and administering tests to groups, learners, applicants and students while maintaining a quiet atmosphere for testing. The Invigilator is also responsible for following Mohawk Testing Centre’s testing protocol as required by faculty or staff.As the majority of testing will be administered in-person, this position will be on campus. Evening and weekend work required. Candidate must be willing to work or travel to satellite Mohawk College campuses to deliver testing as needed.Responsibilities:This position works with students, faculty and staff on a regular basis and requires the incumbent to use tact and diplomacy in carrying out his or her day-to-day activities. The duties associated with this position will involve considerable exposure to confidential records and student information. Specific responsibilities include: Maintaining an ongoing knowledge of tests administered to ensure efficiencies in testing processes; Ensure the fair and proper conduct in the testing environment that enables a student to perform at their best; Proctoring assessments and tests to ensure academic honesty; Relaying testing instructions to a student as provided by the instructor; Reviewing all accommodations with the student in a discrete and confidential manner; Maintain a quiet and secure atmosphere for testing; Maintain confidentiality and security of all test materials and other test documents; Troubleshooting various minor technical problems that occur with software programs and computers in the Testing Centre and in a remote environment; Reading testing material or scribing answers for students that require this function as a part of their testing accommodation; Office duties such as preparing paperwork, setting up computers, maintaining testing area; Is punctual for duty and reliable; Performs other duties and tasks as required.Invigilator availability must be open for exam periods as outlined in the Mohawk College academic calendar: https://www.mohawkcollege.ca/academic-and-important-datesQualifications:The successful candidate will have:Have a secondary school diploma, or equivalent and more than one year and up to three years of practical experience in a related area.Possess excellent interpersonal, oral and written communications skills; be self-directed; have the ability to work with minimal supervision.Have a positive and friendly attitude and project self-confidence.Be able to work in a team environment with others.Maintain attention to detail, organized work environment and show respect and sensitivity.Knowledge of standard office practices and procedure, and standardized testing tools.Experience with virtual meeting platforms, such as Zoom and Microsoft Teams.Ability to problem solve in a fast-paced environment and access assistance from staff as required.Demonstrate his or her understanding and ability to adhere to the College policies, procedures and/or associated legislation related to privacy and confidentiality of information.Flexibility in scheduling is required (evening and weekend work is required).Be available to work at any of the three Mohawk College campuses (Fennell, Stoney Creek and McMaster) therefore, applicant must have access to a vehicle and a valid driver’s license.Demonstrated commitment and understanding of human rights, equity, diversity and inclusion with the ability to communicate and work effectively with diverse groups of students, employees and the community.Mohawk College prioritizes recruiting and retaining diverse employees. With this in mind, the College is committed to fostering inclusive and barrier-free recruitment and selection processes.Should you require accommodation through any stage of the recruitment process, please contact the Human Resources Department at (905) 575 - 2047.Mohawk College is strongly committed to diversity within its community and especially welcomes applications from racialized persons, women, Indigenous people, persons with disabilities, S2LGBTQIA+ persons, and others who may contribute to the further diversification of ideas.For more information concerning the Mohawk College strategic plan, please see: strategicplan.mohawkcollege.ca/\",\n            \"location\": \"Hamilton, ON\"\n        },\n        {\n            \"id\": \"C2C62907B6AE2109ADB05731641133FE\",\n            \"cityName\": \"1645 Queensway East, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1a5d66e1b9b3d0c0\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Prismaflex Inc\",\n            \"rowSalary\": \"$35,000–$45,000 a year\",\n            \"date\": 1694529706412,\n            \"dateOfPosted\": 1694529706245,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5917384,\n                    \"lon\": -79.5883487\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Queensway E, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job descriptionPrismaflex Inc. is a large format print company that is looking for an energetic and detailed oriented person to work in our CSR department. They will report to Operations and will work closely with Production. This is a very fast paced company where being able to multitask is a prerequisite.Candidate is required to have 2 years progressive customer service experience. Must work well under pressure, be able to juggle many projects simultaneously, and have excellent interpersonal and communication skills. Must also have an excellent sense of priorities.Experience in the print industry would be a plus but not mandatorySkills Required:Good communication skills – verbal and written, with exceptional computer skillsMust be able to work with clients at all levelsFocused and results orientedMust work well with others and independentlyAttention to detail and accuracy, and able to multi task and meet deadlinesOverview of Duties:Receives, processes, and verifies the accuracy of orders from customers utilizing the organization’s internal systems and customer purchase orders and update any changes in customer orders to appropriate departments.Answer calls for the Company and forward to appropriate personnel; attend to customer inquiries as requiredResponsible for notifying administration of any required updates of customer records on the organization’s internal database.Tracking your customer's jobs through production, from order entry to shippingProvide back-up support to other group members in the performance of job duties as required.Performs other related duties as assigned by managementJob Type: Full-timeSalary: $35,000.00-$45,000.00 per yearBenefits:Dental careExtended health careLife insuranceVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayEducation:Secondary School (preferred)Experience:customer service: 2 years (preferred)Work Location: In person\",\n            \"location\": \"Queensway E, Mississauga, ON\"\n        },\n        {\n            \"id\": \"F027325AFCA09F9C684872666F11B7B9\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a0d3d931d6e81b54\",\n            \"jobName\": \"Inbound Customer Service Representative\",\n            \"companyName\": \"Contactpoint 360\",\n            \"rowSalary\": \"$15.25 an hour\",\n            \"date\": 1694529705599,\n            \"dateOfPosted\": 1694529705422,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Inbound Customer Service RepresentativeOperations · Montreal, QuebecJoin our CP360 Family, today!Who We Are:Welcome to ContactPoint 360, the world’s fastest-growing global BPO. At our roots, we are a Canadian privately-owned family company where entrepreneurial spirit and cherished family values come together. With 8 years of remarkable growth, our team has expanded to over 3500+ passionate and successful individuals across Canada, the US, Colombia, Mexico, Jamaica, India, Greece and the Philippines. Our achievements are grounded in an award-winning culture that fosters innovation and empowers every team member, earning us global recognition as a certified Great Place to Work.At ContactPoint 360 Inc., we deeply understand the meaning of family and values. As a family-owned company, we cherish a sense of unity and support that extends beyond the workplace. Our commitment to hiring the best talent is driven by our belief in the importance of family-like bonds within the organization.We empower forward-thinkers and value our team. Together, we enhance interactions, build strong connections, and constantly innovate to deliver exceptional people and customer experiences, putting the human experience first.Our Purpose:Is to create the best human experience, ensuring the highest client satisfaction, and transforming clients’ customers into loyal advocates for life.Check out our YouTube video: https://youtu.be/AsPjX-5uyQQContactPoint 360 provides a career opportunity in Customer Service and Sales with stable shifts and full-time hours. We are seeking motivated self-starters, who thrive on a fast-paced environment and have excellent customer service skills and sales abilities. It is a Remote position while we have isolation measures in place and then it will be completed at our Montreal office.What we offer:A paid learning and development training program.We offer competitive insurance coverage, incentives, and two weeks’ vacation time off after 90 days! Plus surprise perks you'll love.Medical and Dental Insurance after 3 months (Family Plans available)Paid Vacation TimeReferral Bonuses (Earn up to $250 per referral)Opportunities for growth! (You can graduate into a Tier 2 program with a wage increase as quickly at 2 weeks of production!)You MUST have reliable high-speed internet and able to connect directly to the Modem.Equipment can be provided (excluding headset) if located in Montreal QC Area.Responsibilities:Providing outstanding customer service by helping clients with their needs.Upselling/Cross Selling on all inbound customer service calls.Use critical thinking to remain solution focused.Retain and De-escalate customers to ensure an overall positive experience.This is a transitional campaign, with extensive training moments to build a foundational knowledge of systems, processes and customer service expectations. Once a strong foundation has been built the next step to your career begins to a tier two program!Who we are looking for:Candidates must be above the age of 18.Fluent in English and excellent communication and listening skills.High school education or equivalentAbility to pass a background check with a Government Valid IDSolid computer skills and an aptitude for learning new software.Minimum of 1 year working in the Customer Service industryMinimum of 1 year Sales experienceExtras:We are looking for a strong team-player, bringing in a high level of enthusiasm and energy. With a motivation to learn and provide exceptional customer service by using skills such as Empathy and Kindness.Weekly Hours:40 hours, with opportunities for over-timeStart your amazing career with CP360 today!Follow us on:LinkedIn: ContactPoint 360Facebook: ContactPoint 360Instagram: ContactPoint 360Twitter: ContactPoint 360Représentant du service à la clientèleOpérations - Montréal, QuébecJoignez-vous à la famille CP360 dès aujourd'hui !Qui nous sommes:Bienvenue à ContactPoint 360, le BPO mondial à la croissance la plus rapide au monde. À nos racines, nous sommes une entreprise familiale privée canadienne où l'esprit d'entreprise et les valeurs familiales chères se rejoignent. Avec 8 ans de croissance remarquable, notre équipe s'est élargie à plus de 3500 personnes passionnées et prospères à travers le Canada, les États-Unis, la Colombie, le Mexique, la Jamaïque, l'Inde, la Grèce et les Philippines. Nos réalisations sont fondées sur une culture primée qui encourage l'innovation et responsabilise chaque membre de l'équipe, ce qui nous vaut une reconnaissance mondiale en tant que Great Place to Work certifié.Chez ContactPoint 360 Inc., nous comprenons profondément la signification de la famille et des valeurs. En tant qu'entreprise familiale, nous chérissons un sentiment d'unité et de soutien qui s'étend au-delà du lieu de travail. Notre engagement à embaucher les meilleurs talents est motivé par notre conviction en l'importance des liens familiaux au sein de l'organisation.Nous responsabilisons les avant-gardistes et apprécions notre équipe. Ensemble, nous améliorons les interactions, créons des liens solides et innovons constamment pour offrir aux personnes et aux clients des expériences exceptionnelles, en accordant la priorité à l'expérience humaine.Notre but:Est de créer la meilleure expérience humaine, d'assurer la plus grande satisfaction des clients et de transformer les clients des clients en fidèles défenseurs de la vie.Découvrez notre vidéo YouTube: https://youtu.be/AsPjX-5uyQQContactPoint 360 offre une opportunité de carrière dans le service à la clientèle et les ventes avec des horaires stables et à temps plein. Nous recherchons des personnes motivées et autonomes, qui s'épanouissent dans un environnement en constante évolution et qui possèdent d'excellentes compétences en matière de service à la clientèle et de vente. Il s'agit d'un poste à distance pendant que nous mettons en place des mesures d'isolation, puis il sera complété à notre bureau de Montréal.Ce que nous offrons :Un programme de formation et de développement rémunéré.Nous offrons une couverture d'assurance concurrentielle, des incitatifs et deux semaines de vacances après 90 jours ! De plus, nous offrons des avantages surprenants que vous aimerez.Assurance médicale et dentaire après 3 mois (régimes familiaux disponibles)Vacances payéesPrimes de recommandation (gagnez jusqu'à 250 $ par recommandation)Possibilités de croissance ! (Vous pouvez passer à un programme de niveau 2 avec une augmentation de salaire dès 2 semaines de production !)Vous DEVEZ disposer d'une connexion Internet haute vitesse fiable et être en mesure de vous connecter directement au modem.L'équipement peut être fourni (à l'exception du casque d'écoute) si vous êtes situé dans la région de Montréal QC.Responsabilités :Fournir un service à la clientèle exceptionnel en aidant les clients à répondre à leurs besoins.Vous êtes en charge de l'organisation et de la mise en œuvre de l'ensemble des activités de l'entreprise.Faire preuve d'esprit critique pour rester centré sur les solutions.Vous devez être capable de conserver et de désamorcer les clients afin d'assurer une expérience positive globale.Il s'agit d'une campagne de transition, avec des moments de formation intensive pour acquérir une connaissance fondamentale des systèmes, des processus et des attentes en matière de service à la clientèle. Une fois que vous aurez acquis des bases solides, la prochaine étape de votre carrière consistera à passer à un programme de niveau 2 !Qui recherchons-nous ?Les candidats doivent être âgés de plus de 18 ans.Parler couramment l'anglais et avoir d'excellentes capacités de communication et d'écoute.Diplôme d'études secondaires ou équivalent.Capacité à passer un contrôle d'antécédents avec une pièce d'identité valide du gouvernement.Solides compétences en informatique et aptitude à apprendre de nouveaux logiciels.Au moins un an d'expérience dans le secteur du service à la clientèle.Minimum d'un an d'expérience dans la venteExtras :Nous recherchons une personne ayant un fort esprit d'équipe, apportant un haut niveau d'enthousiasme et d'énergie. Avec une motivation pour apprendre et fournir un service client exceptionnel en utilisant des compétences telles que l'empathie et la gentillesse.Heures hebdomadaires :40 heures, avec possibilité de temps supplémentaireCommencez votre carrière avec CP360 dès aujourd'hui !Suivez-nous sur :LinkedIn : ContactPoint 360Facebook : ContactPoint 360Instagram : ContactPoint 360Twitter : ContactPoint 360Job Types: Full-time, PermanentSalary: $15.25 per hourBenefits:Dental careExtended health careTuition reimbursementApplication question(s):Are you comfortable working within the Hours of Operation Mon-Sun 6am EST - 10pm EST?Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Work Location: In personExpected start date: 2023-10-09\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"5336CF1931D9ABB2D364F4D30AA618A4\",\n            \"cityName\": \"916 Windsor Back Rd, Three Mile Plains, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3966228590a213af\",\n            \"jobName\": \"Telephone Sales / Business Development\",\n            \"companyName\": \"Pure Paint Laboratories\",\n            \"rowSalary\": \"$15–$17 an hour\",\n            \"date\": 1694529068974,\n            \"dateOfPosted\": 1667626088630,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.96926999999999,\n                    \"lon\": -64.106021\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Three Mile Plains\",\n                \"formattedAddress\": \"Three Mile Plains, NS B0N 2T0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"West Hants\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Three Mile Plains, NS\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a positive, self motivated sales person to be a part of our dynamic team with endless possibilities for growth. Come on board with our group of hardworking, goal orientated go-getters and work for one of the most sustainable manufacturers in North America, based out of Windsor, NS.We are a high quality luxurious paint manufacturer looking for part-time sales professionals leading to full time.DescriptionService customers by selling product and meeting customer needsService existing accountsObtain ordersEstablish new accountsOrganize daily work load/ schedule to call on existing or potential salesBuild high quality customer relationshipsMeet/exceed sales goalsSelf motivatedResponsible for knowledge of companyEnsure CRM tool is up to dateQualificationsCall centre or direct sales experienceFluent in Word/ Excel/ AdobeComputer and internet connectionQuiet/ private workspaceConfident and outgoing personalityGoal and deadline motivatedReliableJob Type: Part-timePart-time hours: 15 per weekSalary: $15.00-$17.00 per hourSchedule:4 hour shiftMorning shiftNo weekendsSupplemental pay types:Commission payAbility to commute/relocate:Three Mile Plains, NS: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Three Mile Plains, NS\"\n        },\n        {\n            \"id\": \"56457A9C7BB421DF4612855441490125\",\n            \"cityName\": \"3330 Gaetz Avenue, Red Deer, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=771cc233f26143ce\",\n            \"jobName\": \"Cashier/Customer Service/Gas Station Attendant\",\n            \"companyName\": \"Petro Canada\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694528947063,\n            \"dateOfPosted\": 1670453682149,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.257636,\n                    \"lon\": -113.8141506\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Red Deer\",\n                \"formattedAddress\": \"Gaetz Ave, Red Deer, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Red Deer\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Petro Canada (3330 Gaetz Ave, Red Deer)*Hiring for 2 Positions*- Overnight Shifts- Day ShiftsLooking for individuals with superb customer service and excellent work ethics. Work experience in Retail would be an asset.Job duties include processing sales transactions while providing great service to our customers, cleaning and stocking the interior and exterior of the store and capable to work in a fast paced environment.Medical Benefits are provided to full time employees after completion of 6 months.Drop off your resume at 3330 Gaetz Ave or email your resume.Job Types: Full-time, PermanentSalary: $15.00 per hourBenefits:Dental careVision careShift:8 hour shiftWork Location: In person\",\n            \"location\": \"Gaetz Ave, Red Deer, AB\"\n        },\n        {\n            \"id\": \"81D4A2E42CEA50A98EFF3065B045BDEC\",\n            \"cityName\": \"Barriefield Market in Kingston, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=403c29223a8c92e3\",\n            \"jobName\": \"Meat Cutter Customer Service\",\n            \"companyName\": \"Barriefield Market\",\n            \"rowSalary\": \"$18–$21 an hour\",\n            \"date\": 1694528553566,\n            \"dateOfPosted\": 1694528552198,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2311717,\n                    \"lon\": -76.4859544\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kingston\",\n                \"formattedAddress\": \"Kingston, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Frontenac County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kingston\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Barriefield Market currently has an opening for a full and part time meat customer service applicants . We are looking for someone with a positive and outgoing attitude who would love to educate our customers about all the fresh and delicious meats we offer. We are committed to engaging each customer, understanding their needs, and offering information and suggestions that will help them make great choices. And nowhere is this more important than in the meat dept where there is so much good stuff to choose from! In this role you will spend about 60% of your time at the meat counter, which is all about fulfilling orders, product preparation, display, maintenance of product quality, answering questions, and most important of all - getting to know our repeat customers. The other 40% of your time will be spent cleaning up, stocking the area, or prepping food in the back – the behind the scenes work to make sure our meat department is setup for success. There is lots to do in this job – so you’ll find that time flies - and there’s lots to learn too. Thefull-time position will provide approximately 35-40 hours per week,and part time 24 to 30 consisting of days, and weekend shifts.Our ideal candidate will have these qualifications: High School Diploma  Good verbal communication skills Strong organization and planning skills  Strong initiative ability, excellent work ethic and sense of urgency Ability to work in a fast-paced environment  Flexibility – Ability to adapt quickly to new situations, as well as new and changing processes, programs, and services Strong customer service skills.Job Type: Full-timeSalary: $18.00-$21.00 per hourBenefits:Store discountSchedule:8 hour shiftDay shiftMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Kingston, ON\"\n        },\n        {\n            \"id\": \"3A6C690A6A9F2347093E98324BA8D7DC\",\n            \"cityName\": \"209 4 Av SE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=685d47a07178d612\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Brwd Yyc\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694528539554,\n            \"dateOfPosted\": 1693679417259,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0377538,\n                    \"lon\": -113.9657643\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"17 Ave SE, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a locally owned and operated coffee shop from Regina, Saskatchewan (Brewed Awakening) and have opened up our very first location in Calgary, Alberta! We are located downtown inside the Delta.We are currently looking for a couple more baristas to join our growing team!- Candidates must provide outstanding customer service with enthusiasm, kindness, and a big smile!- Candidates must be able to consistently serve up premium quality food and beverages.- Candidates must have passion to learn and grow in a fun and collaborative team environment.- Candidates must be able to also well work independently.- Candidates MUST be available weekends.Previous barista training is an asset. Training will be provided.We're looking forward to meeting you!Job Types: Full-time, PermanentSalary: From $15.00 per hourBenefits:Casual dressSchedule:Day shiftMorning shiftWeekends as neededSupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Av SE, Calgary, AB\"\n        },\n        {\n            \"id\": \"200FF99CE6043C4152250F58B53C1A64\",\n            \"cityName\": \"Saskatoon, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=656470152351c8ab\",\n            \"jobName\": \"Dispatcher/Customer Service\",\n            \"companyName\": \"Quick Apex Trucking Ltd.\",\n            \"rowSalary\": \"$15–$25 an hour\",\n            \"date\": 1694528308241,\n            \"dateOfPosted\": 1623842505386,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.157902,\n                    \"lon\": -106.6701577\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saskatoon\",\n                \"formattedAddress\": \"Saskatoon, SK, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saskatoon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Quick Apex Trucking is looking for a Dispatcher to support the drivers and meet customer scheduling needs.The successful candidate for this position needs to be able to adjust to last minute changes and work withdrivers to schedule pick-up or delivery for new or established clients. A good fit for this role will becustomer service focused, have a strong understanding of heavy equipment and able to work understressful conditions. This role will require someone to be on call based on a schedule that will able you tohave a work life balance.Daily duties:➢ Answer the phones to receive, schedule and enter loads.➢ Dispatch drivers shipment pick-ups and deliveries.➢ Update shipment tracking system in timely fashion.➢ Manage 15 plus drivers.➢ Manage Phone calls and will be able to get the load when required➢ Market and route intelligence is must to receives and coordinates emergency responsecustomer callsExperience and Skills required:➢ Strong understanding of heavy equipment.➢ Has previous 1A Driving experience and equipment hauling experience is an asset.➢ 2 plus years in a Dispatcher or similar role.➢ Leadership capabilities, ability to manage people.➢ High attention to detail, extremely organized, problem solver.➢ Adaptable, ability to adjust based on the immediate needs.➢ Clear, professional verbal and written communication.➢ Approachable, customer serviced orientated.➢ Marketing skills to get new business.Expected start date: 2021-07-01Job Type: PermanentSalary: $15.00-$25.00 per hourBenefits:Extended health careSchedule:8 hour shiftExperience:dispatch: 1 year (preferred)dispatching: 1 year (preferred)\",\n            \"location\": \"Saskatoon, SK\"\n        },\n        {\n            \"id\": \"E247717050EF05CB708F722627B7BC13\",\n            \"cityName\": \"Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6de96bd2aaac5250\",\n            \"jobName\": \"Customer Service Assistant\",\n            \"companyName\": \"Ocean Star Ltd\",\n            \"rowSalary\": \"$19.50 an hour\",\n            \"date\": 1694526277607,\n            \"dateOfPosted\": 1692830747300,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Bachelor's degreeExperience: 3 years to less than 5 yearsWork setting Private sector Tasks Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Explain the type and cost of services offered Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Sell merchandise Advise clients on advertising or sales promotion strategies Answer written and oral inquiries Supervision 1 to 2 people Computer and technology knowledge Internet MS Excel MS Outlook MS Word MS PowerPoint Social Media Area of work experience Marketing Transportation/travel information Own transportation Work conditions and physical capabilities Attention to detail Fast-paced environment Tight deadlines Work under pressure Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Judgement Ability to multitask Green job Involves duties and responsibilities that lead to positive environmental outcomes Involves supporting green economy sectors Other benefits Parking availableWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"A468858FC2DDFA795460115997973A62\",\n            \"cityName\": \"Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c6c8d8728ffc0557\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Fix Auto Scarborough Village\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694524711865,\n            \"dateOfPosted\": 1652789245689,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service Representative (CSR) is responsible for serving customers in person and via the telephone. The CSR is accountable for dealing with customer service, selling of services and processing transactions. CSR follows all procedures and policies when providing customer service. The CSR understands his/her role as brand ambassador and provides positive brand experience to all customers.Core Competencies· Customer Focus· Communication· Energy & Stress Management· Teamwork· Quality Orientation· Problem Solving· Accountability and Dependability· Operating Equipment· Ethics and Integrity· Results Oriented· NegotiationJob Duties· Ensure excellence in the delivery of the customer experience as outlined in Fix Auto best practices and measured by CSI results· Effectively manage front office operations to ensure efficient organization and support of the sales function· Collaboration with production manager and sales manager to ensure vehicles are on track for timely and flawless delivery· Provide regular and standard reporting to production and sales managers to ensure awareness on key performance metrics· Provide service to customers by reviewing the services offered and cross-sell different programs by explaining the advantage of our multiple service offerings.· Sell the Fix Auto Services and provide an outstanding customer service, in order to build strong and long-lasting relationships with clients.· Communicate and interact with clients throughout the different technologies such as text messages, emails, online videocall, etc.· As required, assign the work order to technicians.· Set convenient appointments with the customers, based on the shop availability.· Keep the customer data base up to date to ensure efficiency.· Other related tasks as required.Requirements· High school diploma or GED required· Strong customer service and troubleshooting skills· Experience working as a customer service representative for a body shop preferred· Exceptional conflict resolution, negotiation, and objection handling skills· Highly flexible, with solid interpersonal skills that allow one to work effectively in a diverse working environment· Able to effectively communicate both verbally and in writing· Able to deal with people sensitively, tactfully, diplomatically, and professionally at all times· Computer literate, including effective working skills of MS Word, Excel and e-mail· Professional appearance and manners· Strong work ethic and positive team attitudeWorking Conditions· Manual dexterity required to use desktop computer and peripherals· Overtime as required· Lifting or moving up to 50 lbs may be requiredJob Type: Full-timeSalary: $19.00-$22.00 per hourBenefits:Company eventsOn-site parkingStore discountSchedule:8 hour shiftDay shiftAbility to commute/relocate:Scarborough, ON M1J 2E5: reliably commute or plan to relocate before starting work (preferred)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"0079BE957619E7F33C7F0E8E5EC7AA62\",\n            \"cityName\": \"10828 Hurontario St, Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=755146a8a00df86c\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Brampton Brick\",\n            \"rowSalary\": \"$37,838–$45,000 a year\",\n            \"date\": 1694524518616,\n            \"dateOfPosted\": 1692830606319,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7056942,\n                    \"lon\": -79.7868214\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Hurontario St, Brampton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 37838.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    37838.0\n                ],\n                \"range\": {\n                    \"gte\": 37838.0,\n                    \"gt\": null,\n                    \"lte\": 37838.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service RepresentativeJob PurposeThe Customer Service Representative will work cooperatively with customers, sales representatives, as well as the logistics and technical teams, to ensure that Brampton Brick’s customers receive quality product and service in a timely and professional manner.Primary Duties & ResponsibilitiesProviding product and technical information to customers and sales team in a timely mannerCommunicate with customers and co-workers via phone/email/salesforce/faxAccurately process customer transactions such as orders, picks, packs, and returnsObtain accurate information from clients relating to their orders and projectsManage orders to ensure accurate and timely delivery of productIdentify, research, and resolve customer inquiry and order statusCoordinate the transfer of products from other locations as neededWork closely with other locationsMonitoring inventory and allocationsInter-company billing, inter-branch billing, track customer owned inventoryReporting, analyzing, and performing other duties as assigned.Some travel may be required from time to timeQualifications / ExperienceMinimum high school graduate, post secondary training is an assetExperience in customer service environmentsProficient in the use of Microsoft Office, and capable to quickly gain working knowledge of software applicationsExcellent interpersonal, listening and communication skillsExcellent organizational and time-management skillsStrong problem solving skills; ability to make timely but sound decisionsStrong numerical and analytical skillsManage changing priorities, demands and constant interruptionsAbility to work under pressure, multi-task and meet deadlinesTeam player, but is able to work independentlyFluency in French (written and oral) an assetWork flexible hoursJob Types: Full-time, PermanentSalary: $37,838.00-$45,000.00 per yearBenefits:Dental careVision careSchedule:8 hour shiftMonday to FridayEducation:Secondary School (preferred)Experience:customer service: 3 years (required)Work Location: In person\",\n            \"location\": \"Hurontario St, Brampton, ON\"\n        },\n        {\n            \"id\": \"ABFC4AA81C34D14B871C8B690FDE893D\",\n            \"cityName\": \"5014 49 St, Leduc, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4b812d151fbc7dfe\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Jukebox Diner\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694523362855,\n            \"dateOfPosted\": 1691631177563,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.2646889,\n                    \"lon\": -113.5527442\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Leduc\",\n                \"formattedAddress\": \"Leduc, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Leduc County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Leduc\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate / CashierResponsibilities:- Provide exceptional customer service by greeting and assisting customers in a friendly and professional manner- Process customer transactions accurately and efficiently using the cash register- Handle cash, credit, and debit card transactions with precision- Maintain a clean and organized checkout/kitchen- Answer customer inquiries and resolve any issues or complaints in a timely manner- Collaborate with team members to ensure a positive shopping experience for customersExperience:- Excellent communication skills in English, both verbal and written- Strong organizational skills to manage multiple tasks effectively- Previous experience in customer service or retail is preferred but not required- Technical sales knowledge is a plus- Ability to handle cash transactions accurately and efficiently- Time management skills to prioritize tasks and meet deadlinesWe offer competitive pay, flexible scheduling. Join our team if you are committed to providing exceptional customer service.To apply, please submit your resume highlighting your relevant experience and qualifications. Only qualified candidates will be contacted for an interview.Job Type: Part-timePart-time hours: 20-25 per weekSalary: From $15.00 per hourBenefits:Store discountDay range:Monday to FridayFlexible Language Requirement:English not requiredShift:4 hour shiftAfternoon shiftDay shiftEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Licence/Certification:FoodSafe (preferred)Shift availability:Day Shift (preferred)Ability to Commute:Leduc, AB T9E 6W8 (required)Ability to Relocate:Leduc, AB T9E 6W8: Relocate before starting work (preferred)Work Location: In person\",\n            \"location\": \"Leduc, AB\"\n        },\n        {\n            \"id\": \"4BE88141E5527CC72E2D3A72FFC3A12B\",\n            \"cityName\": \"22740 Dewdney Trunk Rd, Maple Ridge, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1087e5d4d5fe4281\",\n            \"jobName\": \"Service Counter - Lumber / Customer Service\",\n            \"companyName\": \"Haney Builders Supplies (1971) Ltd.\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694521422786,\n            \"dateOfPosted\": 1692825116849,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2202754,\n                    \"lon\": -122.5360144\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Maple Ridge\",\n                \"formattedAddress\": \"Dewdney Trunk Rd, Maple Ridge, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Maple Ridge\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"SUMMARY : Sales Counter Representative is responsible for assisting customers to determine their needs, answer their questions about our products and recommend the right solutions. You should also be able to promptly resolve customer complaints and ensure maximum client satisfaction. Other companies may refer to this job as Customer Service, Inside Sales, Service Advisor, Sales Associate or Store Associate.ESSENTIAL DUTIES AND RESPONSIBILITIES : Responsibilities include but are not limited to:Greet customers and ensure a good customer experienceAssess customer needs and provide expert advice on store productsPresent and demonstrate the product highlighting its positive features and suggest complementary productsProcess Invoices, credits and special orders for customersActively participate in achieving store sales objectivesKeep up to date with new products and their functionsDevelop a basic knowledge of all the departments in the storeBe aware of current promotions and flyersComply with policies and procedures regarding loss prevention, breakage of goods and health and safetyPerform other duties as requested by the supervisor.QUALIFICATIONSKnowledge of lumber, building supply and construction industrySolid communication and interpersonal skillsSpecific area knowledge in plumbing, paint, electrical, and general DIY is a plusA friendly and energetic personality with customer service focusBe able to work well as part of a teamBENEFITS (including but not limited to):Competitive wages based on experienceHealth, Dental, Group Life Insurance (once 3-month probation has been completed)Deferred Profit Sharing Plan and RRSP Deduction Plan (after 12 months FT employment)Job Types: Full-time, PermanentSalary: From $17.00 per hourBenefits:Employee assistance programProfit sharingStore discountSchedule:8 hour shiftWeekends as neededSupplemental pay types:Bonus payOvertime payCOVID-19 considerations:Cleaning staff thoroughly clean our premise each day, plastic barriers between customers and service counter, PPE available to all staff, and more.Experience:customer service: 2 years (preferred)Work Location: In person\",\n            \"location\": \"Dewdney Trunk Road, Maple Ridge, BC\"\n        },\n        {\n            \"id\": \"BF300050E638372ACAB0B142DED53C05\",\n            \"cityName\": \"4412 14th Avenue, Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=14f87b6bf6b62a7d\",\n            \"jobName\": \"Customer Service & Quoting Specialist\",\n            \"companyName\": \"Microart Services Inc.\",\n            \"rowSalary\": \"From $80,000 a year\",\n            \"date\": 1694521326552,\n            \"dateOfPosted\": 1692828546838,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8511546,\n                    \"lon\": -79.27180589999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Markham\",\n                \"formattedAddress\": \"14th Ave, Markham, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Markham\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 80000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    80000.0\n                ],\n                \"range\": {\n                    \"gte\": 80000.0,\n                    \"gt\": null,\n                    \"lte\": 80000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer satisfaction. Everything we do is focused on building and sustaining our customers’ trust, confidence and loyalty.ABOUT MICROART:We are an electronic manufacturing company with a focus in producing PCBS (Printed Circuit Boards). Microart Services Inc. is an ISO9001, ISO13485 & AS9100 registered corporation servicing markets worldwide. Our continued commitment to servicing the prototype to mid-volume clientele has awarded us with strong, stable growth over 40 successful years and many valued long-term partnerships.Job Title: Customer Service and Quoting SpecialistReports To: Supply Chain DirectorDepartment: Supply ChainShift: 8:30 AM – 5:00 PMKey Responsibilities:1. Client Requisition Processingo Ensure customer files are saved and organized in compliance with Microart document control standards.o Ensure customer’s requests for quotes are processed as follows:o Create templates same day quote request is receivedo Replies to “Consigned customers” within 24 hourso Replies for “Boards only” within 48 hourso “New Customers” response within 3 dayso “Turnkey orders” within 5 dayso Track obsolescence and NCNR (Non-returnable, non-cancellable) components; convey reports to customers, and provide solution.o Ensure customer’s purchase orders are processed daily, and delivery confirmed within 24 hours.o Update and ensure the accuracy of Dynamic datao Client information – Address, contact names, products sold, special requests.o Sales Order, Production Order, Finished Good Item Card is complete and updated.o Respond to all client enquiries in a timely manner.o Identify large volume customers, and bring to the attention of your manager.o Proactively solicit and action customer feedback.2. Procurement and Quoting of Materialso Verify customer’s most up-to-date information on file, and import BOMs.o Ensure material orders are placed in a timely manner, committing to your LPIH (Last Part in House) date.o Update MSI BOM on the fileserver to reflect spending.o Apply JIT inventory methodology, and reduce stocked inventory.o Perform MRO (Maintenance, repair and operations) purchasing on an ongoing basis.3. Other duties as assigned by management team.Qualifications:1-2 years customer service work experience, ideally in electronics manufacturing environmentAble to work in a high changed / fast-paced environment under tight deadlinesExperience with MRP systems (ideally Dynamics)Knowledge of MS Office (Excel skills)Effective communication skills to interact effectively with all levels of the organizationEffective organizational, time management and interpersonal skillsExcellent analytical skills and attention to detailDedicated, professional attitude; enthusiastic and willing to learnBonus if completed or aiming to complete PMAC/CGP or other related supply chain/logistics coursesMicroart Services is committed to providing accommodation in its recruitment processes to applicants with disabilities, upon request, taking into account the applicant's accessibility needs. If you require accommodation at any time during the recruitment process please email us at aoda@microartservices.com.To bend over backwards for our customers and to grow our family of people, customers and supply partners treating all with care & attention.Job Type: Full-timeWork Location: In person\",\n            \"location\": \"th Avenue, Markham, ON\"\n        },\n        {\n            \"id\": \"FD8A5D2DA66E447868D625AE5FE66B98\",\n            \"cityName\": \"680 Progress Avenue, Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e018d2fda91a03cb\",\n            \"jobName\": \"Picker Packer And Customer Service Associate\",\n            \"companyName\": \"Salonbrandz.com\",\n            \"rowSalary\": \"$15.75–$16.50 an hour\",\n            \"date\": 1694521307489,\n            \"dateOfPosted\": 1694521306076,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7789414,\n                    \"lon\": -79.2568878\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Progress Ave, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full Time: $15.75-16.50/hr StartingExcellent Hours: Monday - Friday From 9am -5pmClosed on the Weekends,Recently graduated International Students & Immigrants are welcome must be fluent in english and computer literateSalonbrandz.com. - Scarborough, ONSalonbrandz.comis an independent, privately-owned Canadian distributor of professional salon products. We are dedicated to offering a wide variety of high quality, value-added products for our clients. Through inspiration, education and leadership, our ultimate goal is to help the professional enhance their business by assisting them in making their clients feel good and look beautiful.We are currently looking to hire Picker Packer & Sales Entry Associates to join our team. We want you to bring your talents, experience, and enthusiasm to a team-oriented and dynamic environment. We believe that our success is based primarily on the quality and hard work of our valued team members to bring the Beauty world to our customers._______________________________________________________Responsibilities:Pick and pack orders for customers and for online orders.Face to face sales for walk-in customers by directing them to products an explaining product features.Maintain excellent store appearance and assist with store merchandising to provide a positive shopping experience for our customers.Ability to explain intermediate computer tasks to non-technical usersExcellent English communication skills (verbal and written)Outstanding organizational skills and an ability to juggle multiple tasksQualifications:Strong and dependable work ethic, with a drive to uphold our Culture of Can DoPossess a passion for the beauty industry with the desire to teach our customers about our products.Self-starter with a drive to continuously learn and develop in their careerMust be 18 years of age of olderPrevious sales and/or cosmetology experience preferred but not required. Work where we treat you and our customers as a priority.Opportunities to grow your career within the companyOn-going product knowledge programs and customer experience coachingWork in an environment focused on and surrounded by beautyJob Type: Full-timeSalary: $15.75-$16.50 per hourExpected hours: 37.5 per weekSchedule:Monday to FridayWork Location: In personApplication deadline: 2023-09-15\",\n            \"location\": \"Progress Ave, Toronto, ON\"\n        },\n        {\n            \"id\": \"8F74665808ED19216FEF3A039C1C567A\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e658388367b3870e\",\n            \"jobName\": \"Customer Service And Rentals CoordinAtor At Place Dorchester\",\n            \"companyName\": \"Cogir\",\n            \"rowSalary\": \"$40,000 a year\",\n            \"date\": 1694521145016,\n            \"dateOfPosted\": 1668220829241,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Every day, our team of enthusiasts makes a difference to residents. The “human for human” relationship is at the heart of our approach and corporate philosophy. Moreover, the success of COGIR Immobilier is based on the good teamwork between the various departments and on all the people who have joined the company for more than 25 years. POSITION DESCRIPTION: The Place Dorchester building located downtown is currently looking for a Customer Service and Rentals Coordinator. Are you a sales ace? Proactive, with innovative sales-marketing ideas? We have the opportunity for you waiting for you! ROLE AND GENERAL RESPONSIBILITIES:Coordinate with the property manager the interventions requiring a specific action plan.Ensure the provision of high level customer serviceFollow-up of rental filesFulfill leasesManage the collection of rents and the making of deposits according to the standards in forcePlan the arrivals and departures of tenants and ensure the optimal progress of these activities, while maintaining the security of the building and its occupantsPreparation and follow-up of movesRespond to customer inquiries, email follow-upsRespond to rental requests (email follow-ups, Facebook, ILS, etc.)See to the management of the repair work according to the requests of the tenants with the members of the maintenanceUpdate the various administrative reportsUpdate the various rental reportsWork with the property manager for rent collectionEXPERIENCE AND QUALIFICATIONS:Availability as soon as possibleBENEFITS:Rental bonusesCellular providedPossibility of advancementGroup insuranceFloating days offSocial leaveEmployee Assistance ProgramVacationWelcome and integration ProgramA welcoming and tight-knit team!Salary of $40,000 rental commissionsJOB STATUS: Permanent: Full Time JOB SCHEDULE: Day time \",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"2ADB5AB37690962CAB51A5247115BF27\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=80dc7e2936fd85bf\",\n            \"jobName\": \"Customer Service Supervisor - Retail\",\n            \"companyName\": \"Ontario Impex Of Canada Inc.\",\n            \"rowSalary\": \"$21.50 an hour\",\n            \"date\": 1694521063849,\n            \"dateOfPosted\": 1692824922012,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsWork setting Manufacture Tasks Assign sales workers to duties Hire and train or arrange for training of staff Authorize return of merchandise Establish work schedules Prepare reports on sales volumes, merchandising and personnel matters Organize and maintain inventory Resolve problems that arise, such as customer complaints and supply shortages Supervise and co-ordinate activities of workers Supervise staff (apprentices, stages hands, design team, etc.) Supervision 3-4 people Work conditions and physical capabilities Fast-paced environment Work under pressure Tight deadlines Attention to detail Manual dexterity Personal suitability Accurate Client focus Efficient interpersonal skills Excellent oral communication Flexibility Organized Team player Excellent written communication Dependability JudgementWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"38B635CFC446218C72E6D415AD5E7C8D\",\n            \"cityName\": \"Salonbrandz.com in Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b9974f56949a57cb\",\n            \"jobName\": \"Customer Service Sales & Packer\",\n            \"companyName\": \"Salonbrandz.com\",\n            \"rowSalary\": \"$16–$17 an hour\",\n            \"date\": 1694520995549,\n            \"dateOfPosted\": 1694520994366,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We’re an independent, family-owned business, located in Scarborough, Ontario, with an ambitious growth plan. A rapidly expanding company within the Professional Beauty space, with distribution across Canada, the USA and Europe. Extremely social media savy and connected to all major hairstylists around the world.Responsibilities: This individual will be working in a beauty supply store, with customer service, picking/ packing as well as computer orientied in making invoices and bills . The successful candidate must be reliable and detail oriented. We are looking for someone who works well under pressure and who is willing to make positive contributions which will enable our team to work with optimum efficiency.Responsibilities and DutiesDuties: * Pick, Pack and Process orders * Moving and lifting of product, not heavy * General invoicing * Other warehouse duties as needed * Qualifications and SkillsTechnical Skills: * Ability to lift and carry product up to 20-40 lbs. * Attention to detail and a high level of accuracy * Ability to work in a fast paced environment * Ability to work independently or in a team environment * Some computer skills required * Required to stand and walk for long periods of time * Education & Experience: * Warehouse picking/shipping experience is an asset * G.E.D or equivalentBenefitsExcellent work/life balance with a Mon-Fri, 37½ hour work week * Staff discountsMaintains excellent writing and language skills.Ability to work independently while following the overall management strategy.Tech-savvy.Ability to adapt and respond to multiple incoming requests and shifting priorities.Own day-to-day Seller Central account managementSubmit cases and investigate issues with AmazonWeekly reportingCoordinating inventoryInterested, qualified candidates should submit their resume in confidence - Please no phone calls.We thank all candidates for their interest, but only those selected for interview will be contacted3 month probationary period.Masks are to be worn at all time. Daily screening. Not open to public.Job Type: PermanentSchedule:8 hour shift (Mornings)Monday to FridayNo weekendsOvertimeExperience:warehouse: 1 year (preferred)warehouse worker: 1 year (preferred)Work remotely:NoJob Types: Full-time, PermanentSalary: $16.00-$17.00 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In personApplication deadline: 2023-09-15Expected start date: 2023-09-15\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"B7B5202A40D33DE6239AFB55DB54F1FC\",\n            \"cityName\": \"360 Old Airport Road, Yellowknife, NT\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8955d2195fef9307\",\n            \"jobName\": \"Automotive Customer Service Advisor\",\n            \"companyName\": \"Yellowknife Motors\",\n            \"rowSalary\": \"$60,000–$70,000 a year\",\n            \"date\": 1694519518625,\n            \"dateOfPosted\": 1689747458469,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 62.45464380000001,\n                    \"lon\": -114.4074368\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Yellowknife\",\n                \"formattedAddress\": \"Old Airport Rd, Yellowknife, NT X0E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Northwest Territories\",\n                \"state_code\": \"NT\",\n                \"postalTown\": null,\n                \"county\": \"Fort Smith Region\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Yellowknife\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 60000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    60000.0\n                ],\n                \"range\": {\n                    \"gte\": 60000.0,\n                    \"gt\": null,\n                    \"lte\": 60000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"SummaryThe Service Advisor is responsible for creating great first impressions and guides the customers through the maintenance scheduling process and repair of their vehicles.The Service Advisor is a great listener and is a master at executing all the service processes with due diligence and customer service and safety in mind. The Service Advisor has a keen eye for \\\"the details\\\" and strives to be a product knowledge expert ensuring the dealership provides each customer with a personalized service experience.The Service Advisor builds strong relationships with customers in an effort to achieve service targets and utilizes the tools provided to ensure all customers keep coming back to the dealership.The Service Advisor upholds the dealerships’ standards and values so that the customer is completely satisfied through every interaction with the service department. As a team player, Service Advisors foster excellent relationships with personnel in all areas of the dealership.The DetailsDevelop Strong Relationships with Customer and continue to develop the Relationship:· Greet customers on the phone or in the Dealership promptly and in a courteous manner.· Address customer questions/needs promptly and professionally.· Schedule appointments based on service calls.· Provide customers with personalized service.· Ensure comprehensive re-delivery check of customer vehicle, ensuring cleanliness and that all items identified for service/repair have been carried out appropriately on time.· Assist customers in scheduling appointments for routine maintenance and needed repairs.· Handle customer complaints and ensures high customer satisfaction standards.Service Experience· Identify service needs of customer vehicle based upon historical service data.· Asks appropriate questions to ensure the vehicle to be serviced is diagnosed correctly.· Provide repair and maintenance recommendations to the customer.· Advise customers of estimated service and repair costs and review details of service/repair invoice with customer to gain their understanding of all services provided.· Explain the nature of all repairs.· Determine progress of repair/service orders and inform customer accordingly.· Handle phone inquiries regarding work-in-progress, appointments and return phone messages promptly.· Advise customers on the care of their cars and value of maintaining their vehicle in accordance with manufacturer’s specifications and warranty maintenance.Be detailed oriented· Actively maintain the cleanliness of personal and team workspaces.· Maintain a high level of grooming, hygiene and professional appearance.· Ensure all documentation/paperwork is completed in an accurate and timely manner.· Keep service department forms, menus and pricing guides up to date.· Ensure vehicles are parked in assigned areas, make sure they are locked and all key are marked and put away correctly.· Document customer’s routine maintenance or vehicle problems accurately and clearly on repair orders.Commit to the Dealership Brand· Stay up-to-date on all dealership training requirements.· Understand and sell in-dealership manufacturer service promotions.· Be knowledgeable about new features, specials and updates.· Be a champion for delivering excellent service at all times.· Actively promote and develop new business.Develop and maintain full knowledge about the Industry· Keep up to date with products, accessories, prices, and key features of major competitors.Specific Skills· Excellent interpersonal skills with an upbeat and engaging attitude.· Customer relationship skills including listening and the ability to communicate effectively.· Excellent verbal communication and writing skills.· Problem solving and critical thinking skills.· Basic computer skills.· Good math skills.· Organized and pays attention to detail.· Flexible and open to change; take on special tasks as needed.· Conscientious.· Ability to negotiate win-win scenario’s for the customer.· Results oriented and accountable.· Ability to work independently or within a team.· Able to operate manual and automatic transmissions.· Adaptable to work evening and weekend shifts as scheduled.Education & Experience· Minimum Grade 12 High School Diploma.· A fundamental understanding of automotive mechanical fundamentals.· Adaptable to work evening and weekend shifts as scheduled.Background check requiredJob Type: Full-timeSalary: $60,000.00-$70,000.00 per yearBenefits:Extended health careSchedule:Monday to FridayWeekends as neededAbility to commute/relocate:Yellowknife, NT X1A 3T4: reliably commute or plan to relocate before starting work (required)Experience:service advisor: 1 year (required)Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Old Airport Road, Yellowknife, NT\"\n        },\n        {\n            \"id\": \"EB1D7ED7D18151E9DBAB57D781EC3EF3\",\n            \"cityName\": \"90 Admiral Blvd, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b091f652a4198bd8\",\n            \"jobName\": \"Warehouse/Customer Service Team Lead\",\n            \"companyName\": \"Bolloré Logistics Canada\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694519399919,\n            \"dateOfPosted\": 1692825785566,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6477712,\n                    \"lon\": -79.6963243\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Admiral Blvd, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:Handle customer complaints by providing solutions, often within a time limit to ensure the customers is satisfied.· Learn to identify customer needs or desires in order to provide the appropriate service.Responsible for the operational stock balance between the WMS and Customer System.·Will act as WMS key-user and learn the software systems used by the customer to be able to communicate effectively with the customer or staff issues/inquiries.·Be able to process orders, or requests sent by the customer.·Work with colleagues when necessary to resolve customer complaints.Learn about the products inside and out to be able to answer any questions and processes.Would need to step in at times to cover / perform the job al his/her respective staff .Will be the liaison with the customers’ team with matters of inbound, inventory, and outbound.Will take part in the daily customer operational calls to identify any obstacle that may not allow Bolloré to meet the set operational deadlines.Manage, with his/her team, all administrative aspects of the operations / activities.Assists in training, evaluation of staff, and provides end users performance reviews to manager.Maintains professional and technical knowledge of department staff by consulting with workers, and managers to ensure the procedures are maintained; staff are trained on internal process, and in compliance with safety and occupational guidelines regarding material handling, shipping and receiving of inventory.Updates job knowledge by participating in educational opportunities; reading technical publications.Accomplishes warehouse and organization mission by completing related results as neededMay compile worksheets per customer specifications.Ensures all Company QHSE rules and regulations are followed and abided by all, including oneself.Experience:- Five to then years experience in a customer service role is required- Proven leadership skills with the ability to motivate and inspire a team- Strong communication and interpersonal skills- Excellent problem-solving abilities- Familiarity with order picking, loading/unloading, RF scanners, shipping/receiving, picking/packing, pallet jacks, package building, and mechanical knowledge is preferredWe offer competitive pay and benefits package. Join our team today and make a difference in our customers' experience!Job Type: Full-timeSalary: $20.00-$22.00 per hourBenefits:Company pensionDental careExtended health careOn-site parkingPaid time offRRSP matchTuition reimbursementFlexible Language Requirement:French not requiredSupplemental pay types:Overtime payAbility to commute/relocate:Mississauga, ON L5T 2W1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:warehouse: 1 year (preferred)Licence/Certification:Class 5 Licence (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Admiral Blvd, Mississauga, ON\"\n        },\n        {\n            \"id\": \"6E45FC511F992B4313D66F2988A92859\",\n            \"cityName\": \"9936 109 Street NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=48481aafd114557e\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Petro Canada/ 846840 Alberta Ltd\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694518421682,\n            \"dateOfPosted\": 1692824096470,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.6065656,\n                    \"lon\": -113.3801256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"24a St NW, Edmonton, AB T5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are hiring Cashier(s) at the following Petro-Canada locations:9936 109 Street, EdmontonAfternoon shift, schedule is posted 1 week in advance. Days vary, weekends and holidays required.Working alone and as part of the team required. Must be mature, and expected follow all safety and service policies. Part time and full time required.We require a confident, outgoing and smart person to join our team, all training and uniforms are provided. Advancement opportunities available for fast learners. We strive to deliver exceptional Guest service through:SERVICE-ORIENTATIONPutting the Guest first by providing fast, friendly and responsive service.Responding to Guest complaints by Listening with empathy, taking action and wrapping up.COMPOSUREThe ability to maintain composure and objectivity in difficult situationsSELLING SKILLSSuggest products that will meet the needs of the Guest.Can explain the benefits for these add on items.INITIATIVEActive attempts to achieve set goals over and above what is required and expected.ADAPTABILITYThe ability to adjust to changing situations (ie: tasks, responsibilities and groups.)WORK STANDARDSSetting high goals or standards of performance for self and others.CO-OPERATION AND TEAMWORKWorking with others to achieve a common goal.Maintaining a positive attitude.JOB MOTIVATIONWork-related tasks are similar to tasks that the person enjoys doing or takes pride in doing in their personal life. *Follow the site housekeeping standards to ensure the Guest has a best experience.COMMUNICATIONEffectively interacts with individuals or in group situations.Listens, ensures understanding.ENERGYMaintaining a high activity level.Qualifications : Neatly groomed, Dependable, Ability to build proficiency on the POS equipment of the site including Bulloch, lotto, car wash (if applicable).Maturity in dealing with a large variety of Guests—different ages and personalities.Able to embrace the Service Hero Mindset and Culture Passionate about the job.Fast Friendly Responsive Fun Informed and Empowered.DUTIES : Serve needs of Guests at PaypointCleaning and stocking.Maintenance and general upkeep.Suggestive selling.Other locations:174 St. Albert Trail; St Albert143 St Albert Trail; St albert770 St Albert Trail; St Albert9936-109 St; Edmonton810 Webber Greens Drive; Edmonton16951 109 Ave; Edmonton100 Kings Link, Spruce Grove;4205 SouthPark Drive, Stony PlainJob Types: Part-time, Full-timeSalary: From $15.00 per hourDay range:HolidaysWeekends as neededShift:8 hour shiftWork setting:Convenience storeWork Location: In person\",\n            \"location\": \"Street NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"5AD38815634EDDC3618F68B067B4B841\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6036a7720e760c5a\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Abstract Management Group\",\n            \"rowSalary\": \"$40,000–$50,000 a year\",\n            \"date\": 1694518301128,\n            \"dateOfPosted\": 1692830229776,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Abstract Management Group is a well-renowned customer acquisition, customer support, and business development service provider across the North York area. We firmly believe that personalized client and customer interactions bring a world of possibilities, brand loyalty, increased sales revenue, and customer retention. Our Customer Service Representative is the heart of what we do for our clients!The main goal of our Entry Level Customer Service Representative is to ensure excellent customer service standards, appropriately and accurately answer inquiries, and complete sales / contract transactions to those inquiring customers. Our Entry Level Customer Service Representative thinks fast on their feet, possesses contagious energy, and maintains a high level of confidence in their knowledge and expertise with people.Entry Level Customer Service Representative Core Responsibilities:Identify our customer's needs and recommend appropriate products and services that are individualized to their preferencesSustain and maintain relationships with all customer accounts based on trust and loyaltyBe an expert in all product and service offerings, to better ensure appropriate customer support in handling questions and concernsKeep a spotless record of client and customer interactions and maintain records in accordance with company policy using our CRM softwareWork cohesively with other Entry Level Customer Service Representatives and other internal team members to ensure all goals are metCharacter Traits of our Next Entry Level Customer Service Representative:Initiative: ethical, optimistic, adaptable, self-starterOrganization Skills: attention to detail, time management, self-managementLearning: student mentality, learning attitude, learns from other Customer Service RepresentativesPeople Skills: professional, exemplary written and verbal, customer focusedExperience and Education Requirements We ask our Entry Level Customer Service Representative to have:A High School Diploma or GED equivalent is a must1+ years of experience is highly recommended, but not requiredConfident in an entry-level position and a learning environment with mentorship from other Entry Level Client Service Trainees and upper-level managementExperience in a hospitality, warehouse, or team-focused environment is highly desirableComfortability in a fast-paced environmentJob Type: Full-timeSalary: $40,000.00-$50,000.00 per yearFlexible Language Requirement:French not requiredSchedule:Monday to FridayWeekend availabilityWork Location: In person\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"B6CA12B7B351EF9F214A6673C96C3868\",\n            \"cityName\": \"Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8e4223e7a0a0bcc4\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"Acd Electric & Plumbing Ltd.\",\n            \"rowSalary\": \"$38.50 an hour\",\n            \"date\": 1694518260956,\n            \"dateOfPosted\": 1692828418864,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8561002,\n                    \"lon\": -79.3370188\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Markham\",\n                \"formattedAddress\": \"Markham, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Markham\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 39.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    39.0\n                ],\n                \"range\": {\n                    \"gte\": 39.0,\n                    \"gt\": null,\n                    \"lte\": 39.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: EnglishHours: 30 hours per weekEducation: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsor equivalent experience Work site environment Outdoors Noisy At heights Work setting Construction Maintenance Residential Tasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Recruit and hire workers and carry out related staffing actions Train or arrange for training Set up machines and equipment Estimate costs and materials Recommend personnel actions Read blueprints and drawings Requisition or order materials, equipment and supplies Leading/instructing individuals Supervision Floor covering installers Working groups Plasterers Roofers Kitchen cupboard and vanity installers Trades helpers Labourers Transportation/travel information Valid driver's licence Own vehicle Own transportation Work conditions and physical capabilities Work under pressure Own tools/equipment Steel-toed safety boots Hard hat Safety glasses/goggles Tools Personal suitability Excellent oral communication Organized Reliability Team player Screening questions Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Workplace information On the road job Other benefits Parking available\",\n            \"location\": \"Markham, ON\"\n        },\n        {\n            \"id\": \"A76FF3DA5FF6CC0AFFF10969BD58A13D\",\n            \"cityName\": \"St. Catharines, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5c87f9a372604244\",\n            \"jobName\": \"Wfh Customer Service Representative/Collector\",\n            \"companyName\": \"Ncri Inc.\",\n            \"rowSalary\": \"$18–$19 an hour\",\n            \"date\": 1694518189640,\n            \"dateOfPosted\": 1688065090928,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1593745,\n                    \"lon\": -79.2468626\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St. Catharines\",\n                \"formattedAddress\": \"St. Catharines, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"St. Catharines\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"NCRI is growing stronger and is seeking a WFH Customer Service Representative/Collector to join our motivated and growing family. Our future colleagues will be team-oriented, performance-driven, and outside-the-box thinkers. Home Office Equipment Requirements:Equipment will be provided by the companySuccessful candidates will be pre-screened by our Tech Support team to ensure they meet all requirements to proceed, prior to being invited to the training.High-speed internet with hardwired connection from the computer to the modem. Speed should be 50 MPBS download and 20 MPBS Upload. Requirements:Communicate with customers for all outstanding amountsEstablish a solid professional relationship with customers and educate them on best practicesNegotiate the best payment arrangement to help resolve customers’ billsMaintains a high level of professionalismA background and credit check will be required. Bring it! You're qualified if you: Call center experienceCollections experience is an assetAttention to detailExceptional verbal & written communication skills in EnglishProfessional phone etiquetteProven ability to achieve targetsDedication to maintaining a superior customer experienceEnthusiastic and a positive \\\"can do\\\" attitudeAbility to pass a background check What we offer:Competitive base pay, plus uncapped performance-based commission!Competitive insurance coverage, incentives, paid training, and breaksOutstanding referral bonus programFun perks: Holiday events, food days, giveaways, prizes, themed events, and more! As our Call Center expands, we will need to grow our leadership team! We'll show you a clear career path and provide the tools you need to earn more responsibilities and promotions. Nothing more satisfying than seeing your career grow within a caring organization. We are committed to providing the best work environment you’ve ever experienced!! Start your amazing career with NCRI today!\",\n            \"location\": \"St. Catharines, ON\"\n        },\n        {\n            \"id\": \"74F0E0F16B0D7F9AB87ED9AEBE7C262C\",\n            \"cityName\": \"Quebec City, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ca2054c00f60e51a\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"Québec Loisirs\",\n            \"rowSalary\": \"$15.25 an hour\",\n            \"date\": 1694518174652,\n            \"dateOfPosted\": 1694518174420,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.8138783,\n                    \"lon\": -71.2079809\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Quebec City\",\n                \"formattedAddress\": \"Quebec City, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Québec\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Quebec City\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsScreening questions Are you available for the advertised start date? Are you currently a student? Are you currently legally able to work in Canada? Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Health benefits Dental plan Disability benefits Health care plan Paramedical services coverage Vision care benefits Financial benefits Bonus Other benefits Parking availableWork Term: PermanentWork Language: FrenchHours: 20 to 30 hours per week\",\n            \"location\": \"Quebec City, QC\"\n        },\n        {\n            \"id\": \"DADBB3FB2EF9534FD75A8C476DCFB4A3\",\n            \"cityName\": \"791 Highway 6, Caledonia, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=aef1cbbe1730b87d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Wally Parr Sausage\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694517954977,\n            \"dateOfPosted\": 1694215053213,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Wally Parr Sausages takes the next step in the specialty food retail industry by getting back to the basics within a \\\"Sizzle Style\\\" customer service environment. We recognize that every Team Member is part of our family and brings something special and unique to Wally Parr Sausage.We are currently looking for full-time, high energy, experienced people who see themselves in an Customer Service Representative role at our Caledonia, ON location.Why Join us? The perks!Competitive Wages!! Starting at $17 per hour!Bonus Opportunities!Grocery Discounts!Comprehensive Paid training programClean, safe environmentFun, worry free atmosphereA company built on family values with a great reputation!What You Bring to the team:Sizzle Service: Build and maintain positive relationships with customers by exercising our Sizzle Service to its fullest. Proactively engage customers on the sales floor, offering assistance and initiating conversations. Seek opportunities to enhance the customer experience and exceed their expectations.Product Knowledge: Develop a comprehensive understanding of our product offerings, including features, ingredients, and pricing.Cashing out and returns: Process customer orders efficiently and accurately using our cashier point-of-sale (POS) system. Handle returns, exchanges, and refunds professionally, adhering to established guidelines.Product Knowledge: Develop a comprehensive understanding of our product offerings, including features, ingredients, and pricing.Store Maintenance: Maintain a clean and organized store environment, including restocking shelves, arranging displays, and monitoring inventory levels.Teamwork: Teamwork with colleagues is essential in our culture which affects our operations and provides Sizzle customer service.Must be legally eligible to work In CanadaWe value a good atmosphere, an above and beyond guest experience, and a strongly interconnected team. Apply today and join the Wally Parr family!About Wally Parr Sausage:Wally Parr Sausage has been family operated for over fifty-years and two generations; handing down carefully guarded recipes, as well as innovating new recipes bursting with irresistible flavour throughout the years. Our signature sausages, home meal kits, and wide-range of premium ingredient choices and flavours will bring your taste-buds to nirvana. We will forever honour our Team for their dedication and passion in Wally Parr’s growth in the community.Job Types: Permanent, Full-timeSalary: From $17.00 per hourBenefits:Flexible scheduleOn-site parkingStore discountSchedule:Day shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payApplication question(s):How many kilometres do you live from Caledonia, ONExperience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"1C52AEF7D50A606EC23D91F04B0ACC4C\",\n            \"cityName\": \"Tec Vanlife LTD. in Delta, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=761ce118068d5d38\",\n            \"jobName\": \"Customer Service/Sales Representative\",\n            \"companyName\": \"Tec Vanlife Ltd.\",\n            \"rowSalary\": \"$19.50–$22.00 an hour\",\n            \"date\": 1694517705446,\n            \"dateOfPosted\": 1692826092858,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.09521549999999,\n                    \"lon\": -123.0264758\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Delta\",\n                \"formattedAddress\": \"Delta, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Delta\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service/Sales RepresentativeAre you passionate about the recreational vehicle industry and providing exceptional customer service? Tec Vanlife is seeking a dynamic and motivated individual to join our team as a Customer Service/Sales Representative. In this role, you will play a pivotal role in assisting customers with their inquiries, providing expert answers, and driving sales through excellent service.Responsibilities:Manage inbound calls, emails, and chats with efficiency and professionalism.Understand customer needs and address inquiries regarding our products and services.Collaborate with the sales team to drive revenue growth by identifying upselling and cross-selling opportunities.Maintain accurate records of customer interactions and sales transactions.Qualifications:Minimum of two years of proven customer service experience.Strong communication skills and ability to handle challenging customer interactions.Knowledge of the automotive industry and a passion for vehicles is preferred.Join our team and be a part of a company that values customer satisfaction and expertise in the automotive realm. If you are dedicated, customer-focused, and ready to contribute to our success, apply now!To apply, please submit your resume and a cover letter detailing your relevant experience to email@example.com.Job Type: Full-timeSalary: $19.50-$22.00 per hourExpected hours: 40 per weekBenefits:Dental careExtended health careLife insuranceOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Commission payAbility to commute/relocate:Delta, BC V4K 5B8: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (required)Shift availability:Day Shift (preferred)Work Location: In personApplication deadline: 2023-09-15\",\n            \"location\": \"Delta, BC\"\n        },\n        {\n            \"id\": \"ABAC0778183941A76C1EA83377EA2EA5\",\n            \"cityName\": \"3245 Harvester Road, Burlington, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b67b2428b11aeecd\",\n            \"jobName\": \"Auction House Customer Service Representative & Data Coordinator\",\n            \"companyName\": \"Emedals Inc.\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694517660740,\n            \"dateOfPosted\": 1693672364458,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.3703112,\n                    \"lon\": -79.7752874\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burlington\",\n                \"formattedAddress\": \"Harvester Rd, Burlington, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burlington\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"eMedals INC is the largest online auction house of its kind in North America. With a growing global web-based presence, we are in search of a point customer service representative who will also assist in creating our online auctions on our new, upcoming platform.Responsibilities:As our Customer Service Representative, you will be an integral part of our team and responsible for the following:Answering Phones: Handle incoming calls from clients, potential buyers, and sellers in a friendly and professional manner. Provide accurate information about our auctions, services, and products.Call Direction: Ensure that calls are directed to the appropriate department or team member to address specific inquiries or concerns promptly.Assisting with Order Processing: Collaborate with our sales and operations team to facilitate the seamless processing of orders, bids, and purchases made during auctions. Ensure that all transactions are accurately recorded and processed in a timely manner.Customer Support: Offer personalized assistance and support to clients throughout their auction journey. Address questions, concerns, and requests with tact and efficiency, leaving a positive impression on each interaction.Problem Resolution: Take ownership of customer issues and follow through to resolution. This may involve coordinating with various internal departments to address any challenges or discrepancies that arise.Client Relations: Build and maintain strong relationships with our esteemed clientele, fostering loyalty and satisfaction.Auction Creation: In addition to customer service responsibilities, our newest team member will also be responsible for creating digital online auctions and populating our website with new product. This will be carried out on a new customized platform, due to launch August 21st of this year.This process will include amalgamating research and photography completed by our inhouse team, and producing an online auction listing.Requirements:Previous experience in a customer service role is preferred.Excellent verbal and written communication skills.Strong interpersonal skills and the ability to handle diverse customer personalities.Organized, detail-oriented, and capable of multitasking in a fast-paced environment.Proficiency in using computer systems and various software applications.A passion for providing exceptional customer service and a genuine interest in the auction industry.A passion for history is an asset.The positions offered by eMedals INC. are unique. We offer a rare workplace environment where history is a pillar of everyday workflow and overall success. Team work is an essential element to our office and we look forward to meeting our newest partner.Thank you to all interested candidates. Please note that only those candidates selected for further discussion will be contacted. Please apply via email and include a CV.Job Type: Full-timeSalary: From $20.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceOn-site parkingPaid time offVision careFlexible Language Requirement:French not requiredSchedule:Monday to FridayAbility to commute/relocate:Burlington, ON L7N 3T7: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Work Location: In personExpected start date: 2023-09-01\",\n            \"location\": \"Harvester Rd., Burlington, ON\"\n        },\n        {\n            \"id\": \"FB4078A8ACEC0B9645C7603128F69D1A\",\n            \"cityName\": \"101 Main St, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2bd19a4c5383d78b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Aabel Fuels Ltd\",\n            \"rowSalary\": \"$15–$17 an hour\",\n            \"date\": 1694517594425,\n            \"dateOfPosted\": 1692825251491,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6863286,\n                    \"lon\": -63.5210113\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Main St, Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative Responsibilities include, but are not limited to: Answering phones & assisting walk in customers. Taking and inputting walk-in, call-in and website orders & payments. Dispatch & communication with drivers. Use of Excel and other Microsoft Office programs. Strong customer service, communication & multi-tasking skills in a fast paced environment required.Job Type: Full-timeSalary: $15.00-$17.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceOn-site parkingVision careSchedule:Day shiftExperience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Main St, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"73DD2CD230A74CC6E0C4A15BB86F7A16\",\n            \"cityName\": \"1888 West Broadway, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5c2f5bbcff5aaeb2\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Le Coq Frit\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694517389643,\n            \"dateOfPosted\": 1673963273417,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.26376459999999,\n                    \"lon\": -123.14866\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Broadway, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"-serving-bussing-phone orders for take-out-POS system, 3rd party delivery tablet, payment processing-take-out prep for packaging orders-cleaning duties-various other related dutiesMust be able to work during weekday(Monday - Friday between 11-9pm)Job Types: Permanent, Part-timePart-time hours: 25 per weekSalary: From $16.00 per hourSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayMorning shiftSupplemental pay types:TipsCOVID-19 considerations:Required to wear a mask. Sanitize surfaces after use.Work Location: In person\",\n            \"location\": \"Broadway WR\"\n        },\n        {\n            \"id\": \"8F6A14017EFD704972153CD304D6C3B1\",\n            \"cityName\": \"12366 Coleraine Dr, Bolton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=54a9162ca268411a\",\n            \"jobName\": \"Customer Service Agent (1 Year Contract) Mid-Day Shift 11:00 Am - 7:00 Pm\",\n            \"companyName\": \"Dsv Global Transport And Logistics\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694516427171,\n            \"dateOfPosted\": 1692826417092,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8559705,\n                    \"lon\": -79.7292586\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bolton\",\n                \"formattedAddress\": \"Coleraine Dr, Bolton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bolton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"JOB SUMMARY:Core Purpose and Essence of the Position:The Customer Service Agent is responsible for carrying out all customer service activities such as responding to inquiries, processing orders, and handling complaints, in a prompt courteous and effective manner.ESSENTIAL DUTIES AND RESPONSIBILITIES: Respond to Customer inquiries, complaints, inventory status, status of orders, etc., in a prompt, courteous and effective manner. Generate all related paperwork and necessary information required for customer work orders and checking all orders for special requests. Oversee all paperwork associated with orders and maintain the corresponding files. Prepare any reports concerning customer service activates as required by manager. Report customer feedback to management, including any signs of customer dissatisfaction. Maintain damage records and back-order logs. Initiate and maintain a good working relationship with the customer(s). Track on-time shipping other performance measures. Assure the integrity of the inventory and assist in conducting physical inventories.  Ensure the optimal utilization of space through warehouse consolidation. Assist in the physical operations as needed. Adhere to all company policies, procedures, and guidelines, such as Code of Conduct, assigned work schedules, and attendance requirements. Provide input into the performance evaluation system Perform other duties as assigned. Collaborate closely with other departmental staff to coordinate account activities. Maintain a clean, neat, and orderly work area Performs other duties as requiredPRIMARY INTERACTIONS:The primary exchange will be working with the Operations Manager, Supervisor, Team Lead, and Warehouse Operators.COMPETENCIES, SKILLS, ATTRIBUTES REQUIRED: Direct warehouse-related experience in customer service Excellent judgment and initiative Excellent communication skills to establish working relationships Excellent verbal and written communication skills Excellent relationship building skills Excellent listener Demonstrated ability to work in a complex matrix environment -- must work well across multiple units across the company Both a team builder and a team player Must work well under pressure as a self-starter, handling multiple tasks -- ability to work across many accounts, projects, and/or issues and prioritize effectively Internally motivated, self-starter with ability to plan, organize and establish priorities to meet goals and achieve results.MINIMUM EDUCATION and/or EXPERIENCE: High School diploma. A minimum of 3 years’ experience in manufacturing environment. Possess basic computer skillsWORK ENVIRONMENT:Work is generally sedentary in nature, but may require standing and walking for up to 10% of the time.The physical demands and work environment characteristics described above are representative of those an employee encounters while performing the essential functions of this job. Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions.COMPENSATION:Competitive base salary for the position in the Greater Toronto Area with a very generous benefit package.DISCLAIMER:The preceding job description has been designed to indicate the general nature and level of work performed by employees within this classification. It is not designed to contain nor be interpreted as a comprehensive inventory of all duties, responsibilities, and qualifications required of employees assigned to this jobJob Type: Full-timeSalary: $19.00 per hourBenefits:Casual dressDental careExtended health careRRSP matchVision careSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Bolton, ON L7E 3A9: reliably commute or plan to relocate before starting work (required)Education:Secondary School (required)Experience:Customer service: 3 years (required)Work Location: In person\",\n            \"location\": \"Coleraine Dr, Bolton, ON\"\n        },\n        {\n            \"id\": \"72749001C8F800851BA9C8F1F47DAFA3\",\n            \"cityName\": \"Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=162834edc5057418\",\n            \"jobName\": \"Clerk, Customer Service\",\n            \"companyName\": \"Centre Dianostic Et Performance\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694516216278,\n            \"dateOfPosted\": 1692819867402,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4503213,\n                    \"lon\": -73.7500486\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: No degree, certificate or diplomaExperience: 1 year to less than 2 yearsGreen job Involves duties and responsibilities that lead to positive environmental outcomes Involves supporting green economy sectors Other benefits Free parking available Parking availableWork Term: PermanentWork Language: BilingualHours: 30 to 40 hours per week\",\n            \"location\": \"Dorval, QC\"\n        },\n        {\n            \"id\": \"25CF93D48847CC2E3EAE41B173AE6801\",\n            \"cityName\": \"2555 Port Alberni Highway, Port Alberni, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=eda3d1f85d61617a\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Alberni Toyota\",\n            \"rowSalary\": \"$17–$25 an hour\",\n            \"date\": 1694516183588,\n            \"dateOfPosted\": 1692824265997,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2558825,\n                    \"lon\": -124.7776082\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Port Alberni\",\n                \"formattedAddress\": \"Port Alberni Hwy, Port Alberni, BC V9Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Alberni-Clayoquot\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Port Alberni Highway, Port Alberni, BC Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"You will be Alberni Toyota’s online and phone representative handling a variety of contact points with our customers including but not limited to:· Service customers for booking appointments and follow-up.· Sales customers that need to be informed on their current vehicleThis is a great opportunity for you if;· Are confident and have professional verbal and written skills· Have good computer skills and organizational abilities· Excel in a team environment· Have been successful in a previous customer relations position.This is a position where you will have the opportunity to help us shape and develop our plan for ultimate success and growth.This is a full-time position and we can offer you;· A positive and supportive workplace that provides opportunities for internal growth.· Comprehensive Health Care and Benefits package.· Very competitive wages and bonuses.Job Type: Full-timeSalary: $17.00-$25.00 per hourBenefits:Dental careExtended health careOn-site parkingSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payAbility to commute/relocate:Port Alberni, BC: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Port Alberni Highway, Port Alberni, BC\"\n        },\n        {\n            \"id\": \"1AF7E7F4870A5E18ED5C9F1D20EE0C1C\",\n            \"cityName\": \"Penticton, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f113eb21347d9f5b\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Executive Aviation\",\n            \"rowSalary\": \"$17–$20 an hour\",\n            \"date\": 1694515660315,\n            \"dateOfPosted\": 1691600912535,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.4991381,\n                    \"lon\": -119.5937077\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Penticton\",\n                \"formattedAddress\": \"Penticton, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Okanagan-Similkameen\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Penticton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Here we grow again! Do you want to be part of an amazing team of customer service specialists who work together to provide exemplary service? Is going above and beyond in your DNA? Does the opportunity to provide exemplary service to passengers on some of Canada’s best airlines appeal to you? Are you someone who is known for reliability and flexibility? Come join us! Executive Aviation is hiring a part time Customer Service agent at the Penticton Airport (YYF) who love working in the tourism industry. This role reports directly to an amazing Customer Service Coordinator who is there to support you. What do we offer? Executive Aviation is proud to have very progressive wage ranges with lots of earning potential. The range of salary for this position is $17.00-$20.00/hour. We offer comprehensive Health benefits for all part- and full-time team members. We also have fantastic flight benefits with the airlines that we support. We want to see you grow and reach your goals! The sky's the limit with Executive Aviation. Responsibilities Our customer service agents are responsible for creating a safe and stress-free experience for travelers as they begin and end their journeys: Helping passengers check-in Supporting self-serve kiosks Preparing aircraft for on-time departures Facilitating deplaning and boarding of passengers Greeting passengers who are arriving from flights Following airline specific check-in policies and procedures Positively work airline crew Light grooming duties Kindly enforce airline and airport policies and procedures to passengers And more! Qualifications You are a true customer service champion with a minimum of two years’ in a customer-facing role You bring a proven track record of punctuality and reliability and understand that performing on time is a cornerstone of airline service You love to multi-task and are comfortable in a fast-paced where time pressures are a way of life You are a great communicator in both individual and group settings and have a demonstrated proficiency with computers and software. Completion or working towards completion of Travel and Tourism Diploma, Marketing or Business Diploma Previous airport experience would be considered an asset Flexible availability to work shift work which includes early mornings, days, late evenings, weekends and/or holidays An ability to meet all conditions of employment:  Restricted Area pass issued by Transport Canada A criminal background check Hold a valid driver’s licenseYcmjDoEF2c\",\n            \"location\": \"Penticton, BC\"\n        },\n        {\n            \"id\": \"0F25CD7188159785A97650CF766D0C39\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=eabc407fc4ea67ff\",\n            \"jobName\": \"Customer Service Associate - 28455\",\n            \"companyName\": \"Exela Technologies\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694515408627,\n            \"dateOfPosted\": 1692820356550,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Run Company Store - Maintain inventory ordering supplies and stocking shelves.· Small cash and card sales.· Reception backfill - Answering the phone, checking in customers and employees. Create and issue ID badge access as required.· Performs an acceptable volume of work in timely, efficient, and accurate manner and in order of scheduled priorities to meet or exceed client expectations.· Performs verification duties as required.· Demonstrates high levels of safety awareness and notifies supervisor of potential hazards· Follows the security and privacy policies, standards and guidelines in order to protect the informational assets of both the company and their customers· Performs other duties as required· Repetitive motion is required: may require twisting/bending/climbing.· Required to stand, walk, reach with hands and arms.· Required to lift up to 55lbs unassisted.“The pay range for this position starts at $18; however, base pay offered may vary depending on job-related knowledge, skills, and experience. Bonus opportunities may be provided as part of the compensation package, in addition to a full range of medical, financial, and/or other benefits, dependent on the position offered.”Job Types: Full-time, Fixed term contractPay: $18.00 per hourShift:8 hour shiftExperience:Customer service: 1 year (preferred)\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"B0C6320FEC7DFBB6FAF51F0166B5EFEE\",\n            \"cityName\": \"Best Burners Ltd. in Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=aab17a7fb9df9d39\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Best Burners Ltd.\",\n            \"rowSalary\": \"$15–$17 an hour\",\n            \"date\": 1694515204603,\n            \"dateOfPosted\": 1692826333678,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6660885,\n                    \"lon\": -63.56756309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Company descriptionOur family owned & operated company, Best Burners, is looking for an energetic & positive individual with strong multi-tasking abilities in a fast paced environment. Phone etiquette & communication skills are also a must.Job descriptionCustomer Service Representative Responsibilities include, but are not limited to: Answering phones & assisting walk in customers. Taking and inputting walk-in customer appointments & payments. Dispatch & communication with technicians. Use of Excel and other Microsoft Office programs. Strong customer service, communication & multi-tasking skills in a fast paced environment required.Job Types: Full-time, PermanentSalary: $15.00-$17.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceVision careSchedule:Day shiftMonday to FridayExperience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Dartmouth, NS\"\n        },\n        {\n            \"id\": \"9CBE8003233A5F863FF63593CBCD894A\",\n            \"cityName\": \"1644 Hillside Ave, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=284b604dbe2a149e\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Tim Hortons\",\n            \"rowSalary\": \"From $16.78 an hour\",\n            \"date\": 1694515142958,\n            \"dateOfPosted\": 1691632166082,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.440015,\n                    \"lon\": -123.3545002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Hillside Ave, Victoria, BC V8T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Hillside Mall Tim Horton's is NOW HIRING for Full time and Part Time shifts. All training is done in restaurant so no experience is necessary. Hiring position requires guest service, light cleaning, cash handling, food prep and team work. We have great benefits and competitive wages to offer, apply today and start tomorrowJob Types: Full-time, Part-time, PermanentPart-time hours: 20 - 40 per weekSalary: From $16.78 per hourBenefits:Dental careOn-site parkingStore discountVision careDay range:Monday to FridayNo weekendsWeekends as neededWeekends onlyFlexible Language Requirement:French not requiredShift:4 hour shift8 hour shiftAbility to commute/relocate:Victoria, BC V8T 4Y3: reliably commute or plan to relocate before starting work (preferred)Work Location: In person\",\n            \"location\": \"Hillside Ave, Victoria, BC\"\n        },\n        {\n            \"id\": \"A873C159B2B0C79E4BD811B99E98D6D4\",\n            \"cityName\": \"46 Warne Cres, Kingston, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7805a06079fa6cb0\",\n            \"jobName\": \"Customer Service Technician\",\n            \"companyName\": \"Mr. Lube\",\n            \"rowSalary\": \"$16.50–$17.50 an hour\",\n            \"date\": 1694514950011,\n            \"dateOfPosted\": 1673980696401,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2668755,\n                    \"lon\": -76.50108589999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kingston\",\n                \"formattedAddress\": \"Warne Crescent, Kingston, ON K7K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Frontenac County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kingston\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*NEW LOCATION OPENING SOON*Hiring for our current location and new location opening soon. All discussed in the sit down interview.We're not looking for someone who \\\"needs a job.\\\" We're looking for someone who can make a difference in our customers' experience, learn some skills and earn an income. Sales experience is preferred.Job Overview: Ready for a Change?Named one of Canada's Best Managed Companies & 10 Most Admired Corporate Cultures, Mr. Lube offers a fun work environment, competitive wages, and the best paid training and advancement program in the industry for our employees.Customer Service RepresentativeIn this role, you'll get to take full ownership over the complete customer experience. We will provide full training so you can confidently work directly on a customer's car and be in control of the entire customer service and sales cycle; from walking a customer through the services on a car to completing the tasks and sale.A Customer Service Representative at Mr. Lube spends:70% of their time providing Customer Service:Greeting customersDiscussing products and services with customersProviding recommendations based on vehicle assessmentsSuggesting new products and servicesWorking with a close knit team and communicating with Lower Technicians30% of their time completing Mechanical Duties:Oil and filter changesReplacement of vital car fluids (e.g. coolant, transmission, and transfer case fluid)Replacement of parts under the hood (e.g. air filters, headlights, taillights and wiper blade replacements)Refilling performance enhancers to ensure the car runs smoothly (e.g. engine stop leak, oil treatment, and valve cleaner)Performing courtesy checks on all vehicles (e.g. topping up fluid levels, cleaning windows and checking tire pressure)Performing tire changes and rotationsWhat else can you expect from a career at Mr. Lube?A fun environment with the best paid training in the industry Excellent employee incentives and recognition. With constant learning and growth opportunities. A company, management and team that cares. If you have a positive attitude, flexible availability, are driven to succeed, have a willingness to learn, and genuinely like interacting with people, put yourself in the driver's seat at Mr. Lube!Job Type: Full-timeSalary: $16.50-$17.50 per hourBenefits:Dental careExtended health careOn-site parkingPaid time offSchedule:10 hour shift8 hour shiftSupplemental pay types:Bonus payCommission payOvertime payTipsExperience:Customer Service Sales: 1 year (required)Work Location: In person\",\n            \"location\": \"Warne Cres, Kingston, ON\"\n        },\n        {\n            \"id\": \"B11F4E1BAA45ACDA93BB01EEFB24E14E\",\n            \"cityName\": \"106 9th St W, Meadow Lake, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1cb39406a22fe6b4\",\n            \"jobName\": \"Kfc Team Members, Cashier/Customer Service\",\n            \"companyName\": \"Kfc Canada - Blco - Store 1k076-001\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694514947183,\n            \"dateOfPosted\": 1648193395075,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.1248957,\n                    \"lon\": -108.4431272\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Meadow Lake\",\n                \"formattedAddress\": \"5 St W, Meadow Lake, SK S9X, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Meadow Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Location: 106 9th Street W, Meadow Lake, SK THE COLONEL NEEDS YOU!Great culture, join our team!Our busy KFC locations are looking for full time or part time Team Members to join our growing team! Rate starts at $15 for full-time employees!About the company:BLCO is a large KFC and Taco Bell franchise operator in Western Canada. We currently own and operate 23 KFC and Taco Bell restaurants across British Columbia, Alberta and Saskatchewan. BLCO is a division of the C21 Development Group and proud to employ more than 700 team members.What’s in it for you:Health and dental benefits (for full-time team members)Award winning training for new employeesA great working culture, team environment, tenured staffOpportunity for quarterly bonuses based on performanceOpportunity for advancement in business operations - we’re constantly growing!What we’re looking for:Someone with a friendly, enthusiastic attitudeSomeone that loves to help and serve others (both customers and team members)Able to work in a fast-paced, dynamic environmentDuties include:Make and prepare guest orders with accuracy and efficiency.Provide a top-notch guest experience that includes friendly interactions, hot & fresh meals and a commitment to cleanliness.Contribute to the overall positive and collaborative family environment.Make our world-famous chicken at the highest quality standard.Partner with other Team Member to manage the products needed to fulfill guest orders.We look forward to hearing from you!\",\n            \"location\": \"th St W, Meadow Lake, SK\"\n        },\n        {\n            \"id\": \"A3445F3B2E27B940F23198D971CC2FA8\",\n            \"cityName\": \"732 Bank Street, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=37acb168b51bf9b4\",\n            \"jobName\": \"Pet Salon- Experienced Admin / Receptionist / Customer Service\",\n            \"companyName\": \"Purrdy Paws Pet Grooming Spa\",\n            \"rowSalary\": \"$16.00–$19.60 an hour\",\n            \"date\": 1694514663957,\n            \"dateOfPosted\": 1692819878549,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4209477,\n                    \"lon\": -75.70115419999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Bank St, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Purrdy Paws Pet Grooming Spa is hiring an experienced Receptionist at both our Bank St and Beechwood Location in Ottawa, ON!Do you love animals, have some experience with them and wish to contribute meaningfully to a team while working in one of the best parts of the city, the Glebe?! and equally so Beechwood?! Keep reading if so!The ideal candidate will have:5+ years customer service & reception experience with a diverse community1 year min dog/cat experience (unfortunately, having your own furry friend doesn't count!)Some experience with client managementAbility to multi task in a fast paced environmentDemonstrates high level of professionalismCan work independently and part of a teamBe extremely organized and have excellent time management skillsProficient in decision-making and team managementPossess excellent communication skills both verbal and writtenBe able to go up and down stairs and lift up to 50 lbsHas attention to detailBonus: has some social media and/or marketing experience!Duties include but not limited to:Answering multiple phone lines booking appointmentsHandling client inquiries in-person and over the phone re: their pets and appointmentsEducating clients about pet care as it pertains to coat maintenance, and various services Purrdy Paws offersSelling retail product and assisting walk in clients as neededAssisting groomers with checking in and out their dogsOrganizing paperwork, sending invoices, and taking messages effectivelyPosting on company social media pagesCleaning of the front retail/reception area of the salon and more....Our ideal candidate is a permanent full time employment with room for growth. We are looking for a person who has a passion for a career in the pet care industry and a strong interest in animal health and well-being, as well as strong administrative/reception skills to bring our team together! This position can lead to a management role for the right candidate.This candidate will be creative and have new and fresh ideas to bring to the table and have a desire to help grow and expand the business with our fantastic management team.This candidate will enjoy working with a diverse sector of pets and their human companions and enjoy a leadership type of role within the company.TO APPLY:*Please submit all of the information below via Indeed1> updated resume2> cover letter explaining why you feel you would be an ideal candidate for the position (please be specific in your cover letter about your experience with animals as it pertains to their care) (should Indeed not allow you to send a cover letter, please email it- head to our website to get our email!)3> three valid referencesJob Types: Full-time, Part-time, PermanentSalary: From $16.00 - $19.60 per hour commiserate upon experienceJob Type: Full-timeSalary: $16.00-$19.60 per hourBenefits:Dental careDisability insuranceExtended health careFlexible scheduleLife insuranceStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Ottawa, ON k1s 3v4: reliably commute or plan to relocate before starting work (required)Education:Secondary School (required)Experience:Customer service: 5 years (required)work: 3 years (required)professional pet: 1 year (preferred)fast-paced work: 2 years (required)Work Location: In person\",\n            \"location\": \"Bank Street, Ottawa, ON\"\n        },\n        {\n            \"id\": \"8838429C1AB55D465ACDD72E29D7500B\",\n            \"cityName\": \"8555 Keele St, Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=84d0e7fc808385be\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Esso/ Circle K\",\n            \"rowSalary\": \"$15.50–$15.51 an hour\",\n            \"date\": 1694514563108,\n            \"dateOfPosted\": 1692826437844,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8086703,\n                    \"lon\": -79.50147179999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Keele St, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"looking for experience candidates for Esso CircleK gas station.Job Types: Full-time, Part-timeSalary: $15.50-$15.51 per hourFlexible Language Requirement:French not requiredAbility to commute/relocate:Concord, ON L4K 2N1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Keele St, Concord, ON\"\n        },\n        {\n            \"id\": \"F6B35270EDED963628FB7A04176C2861\",\n            \"cityName\": \"Orangeville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=168507b479463675\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Jiggin Jodys Seafood\",\n            \"rowSalary\": \"$600 a week\",\n            \"date\": 1694514177570,\n            \"dateOfPosted\": 1623789670913,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.9199788,\n                    \"lon\": -80.0943113\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Orangeville\",\n                \"formattedAddress\": \"Orangeville, ON L9W, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Dufferin County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Orangeville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 600.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    600.0\n                ],\n                \"range\": {\n                    \"gte\": 600.0,\n                    \"gt\": null,\n                    \"lte\": 600.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"$600/week. Full-time preferred. Wednesday to Sunday 11am-7pm. Must be able to work weekends/evenings and lift up to 40lbs. Retail experience and knowledge of seafood is a plus. Two locations, 92 Trafalgar road in Hillsburgh and 634041 Hwy10 in Orangeville.Telephone: 709-746-8069Job Types: Full-time, PermanentSalary: $600.00 per weekBenefits:Casual dressSchedule:8 hour shiftExperience:sales: 1 year (preferred)customer service: 1 year (preferred)Work remotely:No\",\n            \"location\": \"Orangeville, ON\"\n        },\n        {\n            \"id\": \"B96598C3487677C12CDB8981073E43FF\",\n            \"cityName\": \"Fort McMurray, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7dcf8500c64da168\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Fort Mckay A&W\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694514168959,\n            \"dateOfPosted\": 1691622513715,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 56.7266598,\n                    \"lon\": -111.3790441\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fort McMurray\",\n                \"formattedAddress\": \"Fort McMurray, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 16\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fort McMurray\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job descriptionCashier & Customer Service RepresentativeJob location: Fort McKay, ABShift: VariesWe Provide transportation for employees but are also looking for people with class 5 drivers license and own transportation as wellCompany Summary:Based out of Fort McKay, AB, we are a high traffic fast food restaurant providing services to our customers. When you join our team, you join a family of employees dedicated to a safe, enjoyable, and positive work environment. We offer competitive wages and seek candidates that are seeking secure, long-term employment.Job Summary:Reporting to the Manager and operating from the Fort McKay Industrial Park, the cashier and customer service representative is responsible for providing customers with professional, efficient and friendly service. The individual in this position must be able to multi-task efficiently in a fast-paced environment.Duties and Responsibilities:All general duties that are required of a Cashier/Customer Service Representative specifications follow but are not limited to:· Provide fast accurate orders using POS ordering software· Maintain a clean, safe, and well stocked environment· Willingness to learn· Assemble food items for packaging or serving.· Willing to work all required shifts (morning, evenings and weekends)Follow all procedures, policies, and practices· Multi-task efficiently in a Fast-paced environment· Must have basic math & English communication skills as well as basic physical ability.· Must be legally able to work in Canada.Qualifications:· Excellent communication and organization skills· Excellent Interpersonal and customer service skills· Team player and Punctual· Ability to work well without supervisionAdditional Incentives:· Company Health Benefits (eligible after 90 days)We thank you for your interest in A&W Fort McKay and remind all candidates that only successful applicants will be contacted. Based on equal qualifications, preference will be given to local candidates.A&W Fort McKay follows all Covid 19 Public Health Measures, advice and restrictions.Job Types: Permanent, Full-timeSalary: $19.00 per hourBenefits:Dental careDisability insuranceDiscounted or free foodExtended health careLife insuranceVision careSchedule:8 hour shiftDay shiftEvening shiftSupplemental pay types:Overtime payExperience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Fort McMurray, AB\"\n        },\n        {\n            \"id\": \"498FE1C6038A6EBDB9E2428A18B9C6C1\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=93f8fe906c1c191f\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"Redline Trucking\",\n            \"rowSalary\": \"$23.18 an hour\",\n            \"date\": 1694514066157,\n            \"dateOfPosted\": 1686989004224,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Experience an assetTasks Access and process information Answer inquiries and provide information to customers Explain the type and cost of services offered Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Receive credit and employment applications Computer and technology knowledge MS Excel MS Word Work conditions and physical capabilities Attention to detail Fast-paced environment Repetitive tasks Personal suitability Flexibility Organized Reliability Team player AccurateWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"C19C069F478434A6E396AB6FBC714D07\",\n            \"cityName\": \"3065 Palladium Dr, Kanata, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=701ec548a82ee163\",\n            \"jobName\": \"Cashier & Customer Service Outfitter\",\n            \"companyName\": \"Cabelas Canada\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694514017179,\n            \"dateOfPosted\": 1693666418627,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.2959318,\n                    \"lon\": -75.92584579999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Palladium Dr, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Summary:Reporting to the Group Sales Manager – Front End-Receiving, Cashiers will greet and engage customers during the checkout process, process customer funds accurately and appropriately, while explaining additional Cabela’s services and processes.Responsibilities:Greet and engage customers in a friendly and enthusiastic mannerProvide a legendary experience for every customer and promoting Bass Pro Shops & Cabela’s programsUse Point-Of-Sale and Inventory (SAP) computer systems to accurately and quickly complete customer transactions following all policies, including those requiring identification and age checksProcess customer payment using debit, credit card, gift cards, and cashRespond and resolve customer issues by using good judgment and logic in solving problems and making decisions within the job scopeAssist asset protection in following all procedures and policies, including checking inside products, checking for price switches, remove and retain security devicesSave customers who are not happy or did not have a good experience by correcting the problem, or notify a Manager on Duty of the issueOpening and closing duties when necessary: empty trash, stock bags, supplies, cash wraps, dust and wipe counter, organization of drawer suppliesAssist in other areas of the store when business needs dictateQualifications:One or more years’ experience in a sales or service environment is preferredHigh school diploma or equivalent is preferredAbility to provide superior customer service and exceed customer’s expectationsAbility to use good judgment and logicExperience in a related field or outdoor lifestyleKnowledge of Bass Pro Shops & Cabela’s specific products is an assetBass Pro Shops & Cabela’s welcomes applications from people with disabilities.Accommodations are available upon request during the assessment and selection process.Job Type: Part-timeSalary: From $16.75 per hourExpected hours: No more than 29 per weekBenefits:On-site parkingStore discountDay range:Weekends as neededFlexible Language Requirement:French not requiredShift:Afternoon shiftEvening shiftWork setting:Department storeApplication question(s):Do you have the ability to reliably commute to 3065 Palladium Drive; Kanata, ON?Please list any days/times that you would be unavailable throughout the week.Work Location: In person\",\n            \"location\": \"Palladium Dr, Kanata, ON\"\n        },\n        {\n            \"id\": \"688A6580094DFA5B5C87A13498D45652\",\n            \"cityName\": \"Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f4e8d9828b18e3a9\",\n            \"jobName\": \"Construction Customer Service Administrator\",\n            \"companyName\": \"Reliance Impact\",\n            \"rowSalary\": \"$50,000–$55,000 a year\",\n            \"date\": 1694513908378,\n            \"dateOfPosted\": 1691622522403,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2557206,\n                    \"lon\": -79.8711024\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job DescriptionReliance Impact is seeking a full-time Customer Service Administrator with construction industry experience in Hamilton. The ideal candidate will have experience in the construction industry and be able to work independently as well as within a team.Duties & Responsibilities:Receive, document, and communicate new home purchasers’ inquiries to appropriate trades and departmental associates to provide timely responses to new home customerCoordinate follow up activities with customers, the construction team, and the service/warranty team for service warranty issuesEngage managers for escalations and schedule touchpoints accordinglyEnter and complete work orders in NewStar programsQualifications:2+ years of customer service and/or administrative experienceStrong customer service skills, problem solving and organizational time management skillsTarion Warranty knowledge an assetJob Type: Full-timeSalary: $50,000.00-$55,000.00 per yearSchedule:Monday to FridayAbility to commute/relocate:Hamilton, ON: reliably commute or plan to relocate before starting work (preferred)Experience:Construction: 1 year (required)Work Location: In person\",\n            \"location\": \"Hamilton, ON\"\n        },\n        {\n            \"id\": \"44D6205008BC7F47988AFAD87EC7AF07\",\n            \"cityName\": \"123 Hespeler Rd, Cambridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8b73da2fa6637cbe\",\n            \"jobName\": \"Customer Service Rep\",\n            \"companyName\": \"H2o4life\",\n            \"rowSalary\": \"$65,000–$75,000 a year\",\n            \"date\": 1694513844284,\n            \"dateOfPosted\": 1693670794201,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4199052,\n                    \"lon\": -80.32845449999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cambridge\",\n                \"formattedAddress\": \"Hespeler Rd, Cambridge, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cambridge\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 65000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    65000.0\n                ],\n                \"range\": {\n                    \"gte\": 65000.0,\n                    \"gt\": null,\n                    \"lte\": 65000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Details: H2O4Life is pleased to be expanding our team in the Cambridge/Kitchener/Waterloo region and we are looking for great individuals to join our team! We are looking for motivated and enthusiastic people to fill positions within our growing company. This position will involve going to pre-arranged customer appointments and conducting an inspection and presenting cost effective solutions. All appointments are PRE-ARRANGED through the office for our team members. There is no door knocking involved. We work MONDAY to FRIDAY and there are NO QUOTAS. So don't worry you won't be under the gun to reach targets. We are looking for great people who love to represent a great company and are willing to help our customers with their needs and help the environment too. About Us: H2O4Life is a Canadian owned and operated company that specializes in water purification for both home and business. We provide premium water treatment systems manufactured by Canadians for Canadians. We genuinely care about each other, and we’re committed to fostering an inclusive and diverse workplace, so all of our team members can take part and have pride in their work. We all bring something different, and we know what makes you different makes us great. We invest in our people, to unleash their potential so we can win as a team! As part of the team, you will have access to a ton of amazing resources. We like fun and we involve all of our team members in company sponsored team building events. We go paintballing, go karting, Raptor and Leaf games in the corporate box, movie premieres, dinner events and much more! As part of our team, you will get the benefit of these events as all of our team members are part of our team building events. Although we like to have fun, we like making money too and we award our team, so we all benefit from our success! Compensation Package: Great salary plus Bonus pay.Comprehensive Employee Benefits Package.Promotions are being offered based on performance and ability, not tenure.We motivate you daily with tremendous growth opportunities within our company to elevate your income and your career. Full Company Training for All Individuals: No Experience NecessaryWe provide Full Sales TrainingWe have an extensive Training and Mentorship program conducted by individuals with years of experience We have an amazing mentorship program and management team to help provide training for rapid advancements with our company. Every environmental analysis has its own one-of-a-kind qualities and presents its own challenges. Our team can adapt to any challenges and anticipate giving our customers the most ideal arrangement at a focused cost. It's unlikely that you will have an issue that we haven't needed to manage before. So not to worry, with our mentorship program you will be fully trained to handle any issues that may arise. Summary: Job Type: Full-timeSchedule: Monday to Friday.Salary $65,000 - $75,000 per year plus bonusesBenefits: Full company benefits.Experience: NO EXPERIENCE NECESSARYTraining: FULL TRAINING OFFEREDRequirements: Must have your own vehicle.Location: Modern and bright office atmosphere located in Cambridge, Ontario.THIS IS NOT A REMOTE JOB POSITION If this position interests you, please apply today as positions are limited and we are looking to hire immediately.\",\n            \"location\": \"Hespeler Rd, Cambridge, ON\"\n        },\n        {\n            \"id\": \"D8EC8E09A193FCD3272E09A899203EDC\",\n            \"cityName\": \"Kitimat, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=23a496ef59a42219\",\n            \"jobName\": \"Clk 12r - Customer Service Representative\",\n            \"companyName\": \"Bc Public Service\",\n            \"rowSalary\": \"$52,803–$59,608 a year\",\n            \"date\": 1694513792928,\n            \"dateOfPosted\": 1694513791011,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.049366,\n                    \"lon\": -128.6283529\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Terrace\",\n                \"formattedAddress\": \"Kitimat, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kitimat-Stikine\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Terrace\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 52803.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    52803.0\n                ],\n                \"range\": {\n                    \"gte\": 52803.0,\n                    \"gt\": null,\n                    \"lte\": 52803.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Posting Title  CLK 12R - Customer Service Representative  Position Classification  CLBC Clerk R12  Union  GEU  Work Options  On-Site  Location  Kitimat, BC V8C 2N1 CA (Primary)  Salary Range  $52,803.18 - $59,607.79 annually  Close Date  9/25/2023  Job Type  Regular Full Time  Temporary End Date  Ministry/Organization  BC Public Service -> Citizens' Services  Ministry Branch / Division  Service Delivery/Service BC  Job Summary Apply your expertise and passion for innovation to this rewarding career opportunityMINISTRY OVERVIEWDedicated to making life better for British Columbians, the Ministry of Citizens’ Services (CITZ) delivers key services that people rely on. CITZ delivers accessible, multi-channel services, through a single-point-of-contact service approach to people in urban and rural communities through Service BC, and delivers the digital face of government at www.gov.bc.ca. CITZ also provides support for the expansion of high-speed internet connectivity throughout the province, leadership across government to modernize information management and technology resources, trusted data services to government agencies, prompt, and relevant responses to freedom of information requests, and statistical and economic research, information and analysis to businesses and the public sector. In addition, the ministry manages the Province’s real estate assets, technology systems and equipment, and leverages procurement to increase business opportunities and create rewarding jobs that contribute to local economies and benefit individuals, families, and communities.A service-focused organization, CITZ strives to be a great place to work, where all employees feel both engaged and motivated to do their best.DIVISIONAL OVERVIEWService BC is government’s chief provider of services to B.C. residents and businesses. The work of the division enables the design and delivery of accessible, responsive, and cost-effective services, making it easier for British Columbians and businesses to interact with government. Through a provincial network of 65 in-person offices and the Provincial Contact Center, Service BC provides approximately 300 government services for more than 40 partner ministries and agencies. Our team member’s unwavering commitment to an ethic of service has driven consistently high people and business satisfaction rates. In support of the division’s overarching goal of providing residents and businesses with seamless, multi-service access to government programs, the Division’s service offerings are marketed to partner ministries and the broader public sector to expand our continuum of services and leverage common platforms.Within Service BC, our vision is to deliver innovation, value, and service excellence to the people of British Columbia, with the aspirational goal of becoming a best-in-class public service delivery organization. Our people and our culture are important to us. As a team, we are motivated to deliver an excellent service experience to British Columbians, businesses, colleagues, peers, clients, and partners. We believe in being kind and helpful, and are committed to delivering “Service with Heart”.JOB OVERVIEWThe Service BC Customer Service Representative (CSR) maintains a positive, empathetic, and professional attitude when providing service and answering enquires. It requires the ability to identify and assess peoples’ needs to effectively and efficiently deliver an excellent customer service experience.The CSR provides services in-person, by phone, and through digital channels. The ability to provide clerical and administrative support such as data entry, reviewing applications for completeness, handling payments, and providing appropriate solutions, within government guidelines to a diverse population of people is essential to this role.Job Requirements:Minimum Grade 12 graduation or equivalent (GED).Experience providing inclusive customer service to diverse clienteles. Experience using digital applications to search for and record information. Preference may be given to applicants with one (1) or more of the following:Multiple years of experience in any of the above requirements.Experience providing in-person customer service.Experience providing customer service though phone or digital channels.Experience delivering customer service in a high volume, fast-paced, rapidly changing environment.Experience with conflict resolution and de-escalating situations.Experience providing services to a diverse population some of whom may be experiencing poverty issues, substance use, or mental health concerns.Experience maintaining administrative files and record keeping.Experience delivering service in a regulated or legislated environment following processes and procedures.Customer Service training and/or education.Experience handling financial transactions.Willingness Statements:Willingness to travel occasionally to provide relief coverage to other work sites (Service BC Centres, exam locations, etc.) Successful completion of security screening requirements of the BC Public Service, which may include a criminal records check, and/or Criminal Records Review Act (CRRA) check, and/or enhanced security screening checks as required by the ministry (Note: It is important that you read the job posting carefully to understand the specific security screening requirements pertaining to the position). For questions regarding this position, please contact melody.olsen@gov.bc.ca.About this Position: An eligibility list may be established to fill future temporary and permanent vacancies across the Ministry of Citizens' ServicesThis position has full time on-site requirements.Employees of the BC Public Service must be located in BC at the time of employment.Kitimat is by the Kitimat River, resulting in a wide range of water activities, such as kayaking, canoeing, boating, and visiting hot springs. Surrounded by beautiful forests and mountains, it is perfect for hiking, rock climbing, snowmobiling, and cross country skiing. Kitimat regularly hosts community events, such as fishing derbies and Winterfest celebrations.Working for the BC Public Service:The BC Public Service is committed to creating a diverse workplace to represent the population we serve and to better meet the needs of our citizens. Consider joining our team and being part of an innovative, inclusive and rewarding workplace.The Indigenous Applicant Advisory Service is available to applicants that self-identify as Indigenous (First Nations, status or non-status, Métis, or Inuit) seeking work or already employed in the BC Public Service. For guidance on applying and interviewing, please contact IndigenousApplicants@gov.bc.ca or 778-405-3452.The BC Public Service is an award-winning employer and offers employees competitive benefits, amazing learning opportunities and a chance to engage in rewarding work with exciting career development opportunities. For more information, please see What We Offer.How to Apply: Your application must clearly demonstrate how you meet the job requirements listed above.Cover Letter: NO - Please do not submit a cover letter as it will not be reviewed.Resume: YES - A resume is required as part of your application, however, it may not be used for initial shortlisting purposes.Questionnaire: YES - You will need to complete a comprehensive questionnaire to demonstrate how you meet the job requirements. Include all relevant information about your educational accomplishments and employment history including job titles, start and end dates (month and year) of your employment, and how you obtained your relevant experience. The questionnaire will take approximately 60 minutes to complete.Helpful tips, videos and more regarding the application process can be found on the Your Job Application page of MyHR. If you are experiencing technical difficulty applying, e-mail BCPSA.Hiring.Centre@gov.bc.ca, before the stated closing time, and we will respond as soon as possible.Additional Information: A Criminal Record Check (CRC) will be required.Applicants selected to move forward in the hiring process may be assessed on the Knowledge, Skills, Abilities and Competencies as outlined in the attached Job Profile located at the bottom of the posting.Applications will be accepted until 11:00 pm Pacific Standard Time on the closing date of the competition. Job Category  Administrative Services \",\n            \"location\": \"Kitimat, BC\"\n        },\n        {\n            \"id\": \"9FEEB2C01E3AC24E46AB6924B9669C29\",\n            \"cityName\": \"11528 Eburne Way, Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c5fd57f5666083c8\",\n            \"jobName\": \"Csr (Customer Service Representative-Mandarin Or Cantonese Speaker)\",\n            \"companyName\": \"Donald's Fine Foods\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694513774327,\n            \"dateOfPosted\": 1692823051458,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2014566,\n                    \"lon\": -123.0962888\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Eburne Way, Richmond, BC V6V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full Job DescriptionDuties and Responsibilities· Provide exceptional customer service to all customers in a professional and courteous manner· Provide support to the Sales Team in fulfilling orders· Work with other Customer Service Representatives to ensure correct orders are communicated to the logistics team for order picking and delivery.· Collaborate with cross-functional teams on inventory, customer complaints, and promotional salesAn Ideal CandidateMust speak Cantonese or MandarinMinimum 1-year experience working in a busy office environment and high school graduateExcellent customer service, detailed-orientation, and problem-solving skillsGood understanding of the English and Cantonese and/or Mandarin language, both oral and writtenIntermediate levels working with Microsoft Office (Word, Excel, Outlook)Can work on Tues-Sat 9am-6pm or 8am-5pmWhat we offer:Full-time employment (40 hours per week)Shift flexibility – Monday to Friday or Tuesday to Saturday work weeksMedical, Dental, AD&D, and Life Insurance benefits upon completion of probationEmployer matching RRSPAnnual incentive planEmployee discount purchase programTraining and developmentOpportunity for growthAnnual Family Days and Christmas PartyJob Types: Full-time, PermanentSalary: From $18.00 per hourBenefits:Casual dressCompany eventsDental careDisability insuranceDiscounted or free foodExtended health careLife insuranceOn-site parkingPaid time offRRSP matchVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMorning shiftOvertimeSupplemental pay types:Overtime payCOVID-19 considerations:All external applicants applying are required to be fully vaccinated as a condition of hire and subject to this policy as a condition of ongoing employment.Ability to commute/relocate:Richmond, BC: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Eburne Way, Richmond, BC\"\n        },\n        {\n            \"id\": \"04AC6A792A811A7CC4448F0887FA7CE5\",\n            \"cityName\": \"Moncton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c0392a40e0c83d94\",\n            \"jobName\": \"Customer Service Representative Supervisor\",\n            \"companyName\": \"Troy Soontiens & Associates Inc.\",\n            \"rowSalary\": \"$23.50 an hour\",\n            \"date\": 1694513698533,\n            \"dateOfPosted\": 1694513697956,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.0878165,\n                    \"lon\": -64.7782313\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Conduct performance reviews Recruit and hire staff Co-ordinate, assign and review work Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Examine and verify accuracy of work and authorize routine deposits and withdrawals Identify training needs and train workers in job duties and company policies Resolve work-related problems and prepare and submit progress and other reports Supervision 3-4 people Computer and technology knowledge MS Office Work conditions and physical capabilities Attention to detail Fast-paced environment Tight deadlines Work under pressure Personal suitability Accurate Client focus Dependability Efficient interpersonal skills Excellent oral communication Excellent written communication Initiative Interpersonal awareness Judgement Organized Reliability Team player Health benefits Health care plan Long term benefits Life insurance Other benefits Free parking availableWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Moncton, NB\"\n        },\n        {\n            \"id\": \"7342B5843C181691CCAD6DDD3482FA6F\",\n            \"cityName\": \"Saint John, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f09f9a2e93717e2d\",\n            \"jobName\": \"Monitoring Station Call Centre Operator - Bilingual (English/French)\",\n            \"companyName\": \"Firetronics 2000 Inc.\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694512103293,\n            \"dateOfPosted\": 1693665548352,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.2733153,\n                    \"lon\": -66.06330799999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saint John\",\n                \"formattedAddress\": \"Saint John, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Saint John County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saint John\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OverviewAt Firetronics 2000 Inc. safety is our number one concern. We specialize in installing, maintaining and monitoring ULC fire alarm systems. We stand by our services and products, ensuring adherence to all applicable regulations, industry standards and guidelines. One of our principal goals is to be a dependable and trusted partner to our clients, authorities and associations.Find out more information about Firetronics 2000 Inc. by visiting our website at www.firetronics.ca.Duties and ResponsibilitiesMonitor fire and security alarm systems utilizing specialized monitoring software and equipmentHandle all telephone calls efficiently and in a professional mannerNotify appropriate contacts or emergency authorities such as Fire Department, Police, Emergency Medical Services in a prompt and efficient manner following strict proceduresDiligently keep required records and filesPrepare and distribute reports internally and to external parties as requiredFollow all established procedures, regulations and guidelinesOther related duties as may be assignedPlease note that this is not a remote positionQualificationsVerbal and written fluency in both English and FrenchEducation: secondary school diploma minimumPreferred a minimum of 1 year experience in the same or similar role such as 911 Operator/Dispatcher, Customer Service Representative (CSR), Telephone Operator/Agent, Call Centre Operator/Agent, Answering Service Operator/Agent, etc.Excellent telephone and communication skillsFlexibility to work 12-hour rotating shifts (days and nights required)Advanced computer proficiency with strong data entry/keyboarding skillsAbility to work under pressureAttention to detail is requiredAbility to stay focused at all times during working hours.Passing criminal record checkWorking ConditionsFriendly team environmentCareer growth opportunitiesContinuous operations (24/7)12-hour rotating shifts (4 on- 4 off Schedule)Participation in On Call Schedule is requiredOffice environment with semi-open workstationsLocated close to major highways and public transitJob Types: Full-time, PermanentSalary: $20.00-$22.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offVision careSchedule:12 hour shiftSupplemental pay types:Overtime payAbility to commute/relocate:Saint John, NB E2L 4L1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer Service: 1 year (preferred)Language:English fluently (required)French fluently (required)Work Location: In personView public job pageJob Types: Full-time, PermanentSalary: From $20.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offVision careSchedule:12 hour shiftOn callSupplemental pay types:Overtime payAbility to commute/relocate:Saint John, NB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Language:French (required)Work Location: In person\",\n            \"location\": \"Saint John, NB\"\n        },\n        {\n            \"id\": \"EBEC08F9A55D38DCC9B2DA9730CEBB4B\",\n            \"cityName\": \"Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ff878545338167d8\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Mhm Direct\",\n            \"rowSalary\": \"$800–$1,200 a week\",\n            \"date\": 1694511550542,\n            \"dateOfPosted\": 1675891522656,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.64876350000001,\n                    \"lon\": -63.5752387\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax Regional Municipality\",\n                \"formattedAddress\": \"Halifax Regional Municipality, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halifax Regional Municipality\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 800.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    800.0\n                ],\n                \"range\": {\n                    \"gte\": 800.0,\n                    \"gt\": null,\n                    \"lte\": 800.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full Job DescriptionMHM Direct is hiring for outside sales and customer service in Halifax, NS. Bonus compensation is completely based on performance.The average wage of our representatives in this role is $38,400+ and top performers earn $57,600+ per year in this entry level position.OTHER BENEFITS:Paid 1 week of in house training on our sales process, and ride-along with successful sales and technical team membersRESPONSIBILITIES:Present/sell company products and services to new and existing customersResolve customer inquiries and complaintsAccess and process payment informationQUALIFICATIONS:Self-motivated, results-driven with excellent time management skillsCommit to skill development through weekly practice/coaching sessions that are customized to improve their current skill setPossess a positive and professional presence, exceptional communication skillsWork well in a team environmentJob Types: Full-time, Part-time, Seasonal, PermanentSchedule:Fixed hours of 12:30pm - 8:30pm, Monday-FridayAbility to commute:Halifax, NS: reliably commute, no remote options(required)Experience:Previous experience in retail, sales, serving or bartending is preferred, but we are willing to train the right candidate who has no experience.Job Types: Seasonal, Permanent, Part-time, Full-timePart-time hours: 20-40 per weekSalary: $800.00-$1,200.00 per weekBenefits:Profit sharingSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Halifax, NS\"\n        },\n        {\n            \"id\": \"15332E04751BE195CCCD53C503F6A4D8\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7dcb528bd623cffc\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"Trigrand Inc.\",\n            \"rowSalary\": \"$34–$36 an hour\",\n            \"date\": 1694510311361,\n            \"dateOfPosted\": 1688899109497,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 34.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    34.0\n                ],\n                \"range\": {\n                    \"gte\": 34.0,\n                    \"gt\": null,\n                    \"lte\": 34.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 1 year to 2 yearsExperience: 1 year to less than 2 yearsTasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Recruit and hire workers and carry out related staffing actions Train or arrange for training Estimate costs and materials Ensure health and safety regulations are followed Read blueprints and drawings Requisition or order materials, equipment and suppliesWork Term: PermanentWork Language: EnglishHours: 30 hours per week\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"3051120983A4A8B1518AC0F496C04C41\",\n            \"cityName\": \"Newmarket, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c3e8a6058748a477\",\n            \"jobName\": \"Real Estate Customer Service Administrator\",\n            \"companyName\": \"Kw Realty Centres\",\n            \"rowSalary\": \"$35,000–$40,000 a year\",\n            \"date\": 1694509141368,\n            \"dateOfPosted\": 1658504218961,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.05918700000001,\n                    \"lon\": -79.46125599999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Newmarket\",\n                \"formattedAddress\": \"Newmarket, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Newmarket\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a dynamic individual who will maintain a positive, empathetic, and professional attitude toward customers at all times; creating an experience when attending to clients' and associates’ needs in such a way that they walk away with a great impression. This individual will be responsible for the appearance of the Market Centre common areas. They will ensure the office is neat and prepared for business at all times. They will greet everyone with a smile and warmth as they enter the office. They will be as helpful as possible without neglecting the phones. Telephone calls are answered as promptly and politely as possible. They will assist in the management of the office by providing support and feedback to the Executive Assistant to the Team Leader, and the Market Centre Administrator. Compensation: $35,000 - $40,000 yearly Responsibilities: Answering the phone courteously, correctly, and ensuring that all calls are properly routed Promptly and accurately page agent messages as required Greeting everyone in a positive and professional manner Maintain appearance of the reception area and common areas of the Market Centre Provide detailed and timely responses to all associates, clients, brokerage, and staff questions and concerns Responsible for the front desk aspects of the listing process from new listing until the firm offer is received Book and confirm showing appointments with sellers, and other brokerages in a timely, accurate, and professional manner All required front desk TRREB reporting and updates in a timely and accurate manner Accurate receipt preparation, and distribution of deposit cheques Posting on private and public KWRC facebook Qualifications: People-oriented, positive, high energy Strong work ethic Dependable Team Player Experience with Broker Bay an asset Understanding of real estate administrative practices an asset Ability to be efficient and effective in a very fast-paced environment Ability to work at KWRC locations (Keswick, Newmarket, Aurora) Excellent computer skills Great communication skills Excellent administrative skills Neat, clean, professional appearance About Company Frequently recognized as the most innovative and agent-friendly brokerage in Canada, KW Realty Centres Aurora/Newmarket is a busy well-established office with over 230 agents. We are #1 in market share in our area. KW Realty Centres is a positive environment that will push you to great potential. Here you can make an impact; help people create wealth and make a difference in the community!\",\n            \"location\": \"Newmarket, ON\"\n        },\n        {\n            \"id\": \"5778A3714AF7DED58CCB5F8EDD52E236\",\n            \"cityName\": \"Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1514568d8d5162a5\",\n            \"jobName\": \"Customer Service - Parts Advisor (Automotive Retail)\",\n            \"companyName\": \"Alpha Auto Group\",\n            \"rowSalary\": \"$18–$21 an hour\",\n            \"date\": 1694508947787,\n            \"dateOfPosted\": 1692794012046,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Alpha Auto Group (\\\"AAG\\\") is a growing and nationally focused auto dealer group based in Toronto, with various locations across Canada and the USA. AAG’s mission is deeply rooted in delivering best in class service for our valued customers by putting our customers first through world class service.In order to meet this mission, it’s important that the successful candidate bring a high level of service, skill, willingness to grow and collaborate and drive, set and meet goals, both personally and collaboratively.With the ever increasing demand for support and service in the auto industry, some of our Ottawa locations are looking for Parts Advisors to join our team.ResponsibilitiesWorking directly with customers, suppliers and technicians to ensure that there is ongoing communication and effective operations within the parts department.Always working towards improving operational efficiencies.Order parts for customers' repair needs.Maintain and nurture ongoing rapport and relationships with business partners.Oversee and maintain parts inventory.QualificationsPrevious parts advisor experience. (min 1 yr)Deep passion and interest in human centered customer experiences.High attention to detail and able to work with minimal supervision.Comfort working with all levels of staff and customers.Strong verbal and written skills and proficiency in English.Proficient in Microsoft Office Applications. (Excel, Word, Outlook)Strong interpersonal skills.Job Types: Permanent, Full-timeSalary: $18.00-$21.00 per hourBenefits:Extended health careSchedule:Day shiftMonday to FridayWeekends as neededAbility to commute/relocate:Ottawa, ON: reliably commute or plan to relocate before starting work (required)Experience:Automotive Parts: 1 year (required)Customer Service: 3 years (required)Language:English (required)Licence/Certification:Drivers License (required)Work Location: In person\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"4466DC61418CBBEEF053F3297F53E688\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8047ec214dd9941b\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Dynadot Llc\",\n            \"rowSalary\": \"$16.50–$19.50 an hour\",\n            \"date\": 1694507899523,\n            \"dateOfPosted\": 1693658482618,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Dynadot is a top-rated web host and domain name registrar founded in 2002. We are growing rapidly, and provide our employees with ample opportunity to learn new skills and develop their careers. Our head office is located in the heart of Silicon Valley, California.Our team is expanding and we are looking for top-notch representatives to give our customers the exceptional service that we are known for. We offer competitive pay, medical benefits, generous paid time off, and a fun team-based work environment. We are looking for several full-time customer service representatives.This position is in our Toronto, Ontario office. The shift time is from 9am - 6pm PST (12pm - 9pm EST) either Sunday to Thursday or Tuesday to Saturday (one weekend day is required).Responsibilities:Respond to customer emails, online chats, and message board postings.Write knowledge-base articles for our help site and our FAQs.Work with our engineering team to troubleshoot bugs in our system.Answer technical support questions regarding DNS, Web Hosting, SSL certificates, and any other issues as they arise.Keep up-to-date with the changing policies and procedures of the domain name industry.Required Qualifications:A passion for providing excellent support.Strong written and verbal communication skills.Strong problem-solving skills.Hardworking, motivated, reliable, detail-oriented.Ability to work independently as well as with a team.Must be available to work weekends and some holidays.Benefits:Full-time positionCompetitive salaryDental careVision care4 weeks paid time off per year.Fun team-based work environment.Team-bonding activities.Job Type: Full-timeSalary: $16.50-$19.50 per hourBenefits:Casual dressDental careVision careFlexible Language Requirement:French not requiredWork Location: In personApplication deadline: 2023-09-15Expected start date: 2023-10-01\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"1571FF23404ADF7541EC30EB5285E2CC\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fa7c65cede5f9c9d\",\n            \"jobName\": \"Dental Administrator / Call Center Agent\",\n            \"companyName\": \"Dmd Family Dental & Orthodontics\",\n            \"rowSalary\": \"$20–$25 an hour\",\n            \"date\": 1694507055971,\n            \"dateOfPosted\": 1693653749772,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a positive, enthusiastic Customer Service Representative / Call Center Agent to join our growing team! A few of the many benefits of working with us!We are located in Guildford, very centralPositive and supportive office cultureExceptional team of professionalsConsistent schedule of hoursMedical & Dental Benefits The ideal candidate must have:A minimum of 1 year experience in the dental industry (either as dental receptionist or a dental assistant)Customer Service Skills – must be able to provide excellent patient service to ensure their dental needs are being met.Multi-Tasking Skills – ability to prioritize and address multiple demands concurrently.General passion for Dentistry and preventive careOrganized and computer proficientExcellent verbal and written communication skillsConfidentiality – Maintain patient, team member and employer confidentialityMust be available to work weekends (Saturdays and Sundays) #HRIC\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"BB1566B4CEB139B210E1853ADAA91656\",\n            \"cityName\": \"Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=86e4cfa8d6c2471f\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Wetrentals Inc.\",\n            \"rowSalary\": \"$15–$20 an hour\",\n            \"date\": 1694506927568,\n            \"dateOfPosted\": 1623804686446,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Boat Delivery & Customer Service Company descriptionWetRentals is a local Seadoo and other boat rental company. We offer rentals at a reasonable rate and they are delivered to our customers docks or doors.Job descriptionJob Title: Boat Delivery and Customer ServiceReports To: Sales ManagerJob Overview:As a Boat Delivery & Customer Service Representative, you will be required to deliver our boats to our customers dock or door. Once delivered, the boats must be unloaded and the customers must be briefed on the safety and operations of the boat. Customer service is key. Once the boats are fully delivered, the job duties are finished until the boats are required to be picked up. On pickup the boats must be inspected and returned to our location. Deliveries take place all over Ottawa, Kingston and Perth.A TRUCK IS REQUIRED (you will be paid $.58c/ km)Responsibilities and Duties- Rent Seadoo's to customers- Upsell our boats and accessories- Complete transactions- Collect deposits and signed contracts- Give safety briefings- Deliver Boats- Clean down boats, check for damage.- Answer questions as needed.Qualifications- Minimum of 18 Years of age- Sales experience is an asset- Boat knowledge is an asset- Local knowledge is an asset- Boaters licence is a must.- Truck or large vehicle is a must.HoursHours vary based on rentals. Our rentals are 9am-5pm. Deliveries and pickups happen at 9am and 5pm.The Perfect HireOur perfect hire is an energetic, outgoing individual who is looking to help grow our small business. The hire will have to be able to back up a trailer with boats and unload them proficiently. Customer service is a must as the hire must be able to fully explain how our boats work.Contract length: 2 monthsApplication deadline: 2021-06-20Expected start date: 2021-07-01Job Types: Full-time, TemporarySalary: $15-$20 per hourCOVID-19 considerations:All employees are required to wear a face covering while the government regulations are in place. Hand sanitizer and cleaning supplies are available 24/7Contract length: 2 monthsPart-time hours: 20 per weekExpected start date: 2021-07-01WetRentals Inc. provided the following inclusive hiring information:We are an equal opportunity employer and considers all qualified applicants equally without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, veteran status, or disability status.Job Types: Part-time, TemporarySalary: $15.00-$20.00 per hourBenefits:Company eventsWork from homeSchedule:HolidaysMonday to FridayOn callWeekendsSupplemental pay types:Commission payTipsApplication question(s):Do You Own A Large SUV or Truck?Education:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work remotely:No\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"7DD20A9A6D0BF5AAD6D244FC2332268C\",\n            \"cityName\": \"245 West Hunt Club Road, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0e498d869e7add93\",\n            \"jobName\": \"Customer Service Representative: Intake\",\n            \"companyName\": \"Ottawa Humane Society\",\n            \"rowSalary\": \"$20.32–$24.72 an hour\",\n            \"date\": 1694506712598,\n            \"dateOfPosted\": 1689722653284,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.3228772,\n                    \"lon\": -75.7673026\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"W Hunt Club Rd, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative: IntakeThe Ottawa Humane Society is a non-profit, community-based organization and a registered charity. Since 1888, we have been the leading organization providing a safe haven for sick, injured and homeless animals in Ottawa. For more information on the Ottawa Humane Society, visit us at: http://www.ottawahumane.ca.Under the direction of the Supervisor: Customer Service, the Customer Service Representative: Intake is responsible providing consultation and support for OHS clients seeking OHS lost and found services and services of the Municipal Animal Shelter (MAS).The hourly wage range is $20.32 - $24.72 as per our collective agreement.What would you do?Ensure professional intake and discharge of animalsAssess and document the health and behavior of incoming animalsExamine all in-coming animals are thoroughly for identificationResearch all possible avenues to match an animal to its ownerBe aware , and make use, of relevant online and community resourcesMaintain the MAS area, facilities and equipmentAccept and manage OHS payments and donations as requiredEnter and maintain data integrity in Raiser’s Edge and ChameleonSupport the activities of coworkers, volunteers , students and work placements a provide orientation and training as requiredBe thoroughly familiar with pertinent legislation, regulations, guidelines, OHS policies and good animal care practicesProduce and maintain accurate reports, records and filesParticipate in supervision, evaluation, training and other meetings as requiredParticipate in the identification and evaluation of OHS program goals and objectivesParticipate in professional development opportunitiesRepresent OHS in a professional mannerParticipate in public relations and promotional activities as requiredWill be required to assume some of the responsibilities of Customer Service Representative: AdoptionsMay be required to assume some of the responsibilities of the Supervisor: Customer Service or Coordinator: PALWhat are we looking for?Secondary school diploma or equivalentMinimum of one year experience in customer serviceAnimal handling experience preferredProficiency in Microsoft Office SuiteProfessional proficiency in spoken and written English and French is preferredWorking Conditions/Physical Requirements:Employee may be required to work evening, holiday and weekend shiftsEmployment is conditional upon the ability to provide services in a safe manner, including , but not limited to, lifts and transfers of large animals and interaction with potentially aggressive animalsEmployee will be required to wear a uniform designated by the employerEmployment is conditional upon maintaining confidentiality of OHS informationEmployment is conditional upon the ability to work around all species of animals safelyJob Type: Full-timeSalary: $20.32-$24.72 per hourAbility to commute/relocate:Ottawa, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (required)Work Location: In person\",\n            \"location\": \"West Hunt Club Rd, Ottawa, ON\"\n        },\n        {\n            \"id\": \"86285C1389AB4B9B99C7623AF58A9029\",\n            \"cityName\": \"Woodstock, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bff5092d0bd643a5\",\n            \"jobName\": \"Customer Service Supervisor (Except Financial Services)\",\n            \"companyName\": \"Holiday Inn Express & Suites Woodstock South\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694506575786,\n            \"dateOfPosted\": 1688038453554,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1314966,\n                    \"lon\": -80.74716509999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Woodstock\",\n                \"formattedAddress\": \"Woodstock, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Oxford County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Woodstock\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 3 months to less than 1 yearExperience: 7 months to less than 1 yearTasks Perform same duties as workers supervised Recruit and hire staff Co-ordinate, assign and review work Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Identify training needs and train workers in job duties and company policies Resolve work-related problems and prepare and submit progress and other reports Work conditions and physical capabilities Attention to detail Work under pressure Personal suitability Client focus Interpersonal awareness Organized Reliability Team playerWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Woodstock, ON\"\n        },\n        {\n            \"id\": \"4250FB91C01BAEBF8AC27ABC2E01C7B8\",\n            \"cityName\": \"5565 Ch De La Côte De Liesse, Saint-Laurent, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5e8976f78ff37ef8\",\n            \"jobName\": \"Customer Care Specialist/ Spécialiste Service Clientèle\",\n            \"companyName\": \"Crownring™ (La Bague Couronnée)\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694505246072,\n            \"dateOfPosted\": 1691617451872,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4636212,\n                    \"lon\": -73.7202654\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Ch De La, 10592 De la Côte-de-Liesse Rd, Lachine, QC H8T 1A4, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"SummaryAre you looking for a new challenge? We'd like to hear from you! CrownRing Bridal House is a fast-growing Canadian wholesale company looking for motivated, trustworthy, dedicated employees to join our team. As Canada’s leading bridal jewelry designer and manufacturer, we strive to maintain a professional work environment, both in our image and quality of work. We are looking for passionate, driven employees that are true believers in our immense potential.The PositionThe Customer Experience Specialist will be a detail-oriented, positive, hardworking individual. This person enjoys talking on the phone, administrative work and being in an office environment. This position requires a team player that has experience multi-tasking, working under stress and problem solving. They enjoy working in a fast-paced environment and love challenges.- Taskso Deliver the ultimate customer service experience to our retail partnerso Provide helpful and professional service by phone/e-mail. Requests will include:o Placing orderso Giving price quotes on regular and customized productso Providing status on pending orderso Assisting customers with orders under a tight deadlineo Issuing Return Authorization numbers- Requirementso Strong verbal and written communication skills in English to be part of our North American Team.o Career oriented individualo 2-3 years experience working in a similar position in an office settingo Professional E-mail communication experienceo High attention to detail with ability to catch errorso Strong computer skills (Microsoft Office Suite)Working at CrownRingWe aspire to empower our employees through multiple paths for growth within our modern company. We also offer health, dental, and vision benefits for you and your family.Availability: Monday – Thursday 9am – 6pm & Friday 9am – 3:30pmJobType: Full time (40h/week)Compensation: Based on experienceEmployee health benefit program will take effect after probation period.We are an equal-opportunity employer and value diversity at our company. We do not discriminate based on race, ethnicity, religion, gender, sexual orientation, age, or disability status.________________________________________________________________________________________________RésuméVous cherchez un nouveau défi ? Nous aimerions avoir de vos nouvelles ! CrownRing Bridal House est une entreprise canadienne de gros en pleine croissance à la recherche d'employés motivés, dignes de confiance et dévoués pour rejoindre notre équipe. En tant que principal concepteur et fabricant de bijoux de mariée au Canada, nous nous efforçons de maintenir un environnement de travail professionnel, tant dans notre image que dans la qualité de notre travail. Nous recherchons des employés passionnés et motivés qui croient fermement en notre immense potentiel.Le PosteLe Spécialiste du service à la Clientèle sera une personne attentive aux détails, positive et travailleuse. Cette personne apprécie les conversations téléphoniques, le travail administratif et l'environnement de bureau. Ce poste requiert un esprit d'équipe ayant de l'expérience dans la gestion de plusieurs tâches, travaillant sous pression et résolvant des problèmes. Ils aiment travailler dans un environnement rapide et sont friands de défis.Tâcheso Offrir l'expérience ultime de service à la clientèle à nos partenaires de vente au détailo Fournir un service utile et professionnel par téléphone/courriel. Les demandes incluront :o Passer des commandeso Donner des devis de prix sur des produits réguliers et personnaliséso Fournir l'état des commandes en attenteo Aider les clients avec des commandes sous contrainte de délaio Émettre des numéros d'autorisation de retourExigenceso Solides compétences en communication verbale et écrite en anglais afin de faire parti de notre équipe Nord Américaineo Individu axé sur la carrièreo 2 à 3 ans d'expérience dans un poste similaire en milieu de bureauo Expérience professionnelle en communication par courrielo Grande attention aux détails avec la capacité de repérer les erreurso Solides compétences en informatique (suite Microsoft Office)Travailler chez CrownRingNous aspirons à autonomiser nos employés grâce à plusieurs voies de croissance au sein de notre entreprise moderne. Nous offrons également des avantages en matière de santé, de soins dentaires et de vision pour vous et votre famille.Disponibilité : du lundi au jeudi de 9h00 à 18h00 et le vendredi de 9h00 à 15h30.Type de poste : Temps plein (40 heures/semaine)Rémunération : Basée sur l'expérienceLe programme d'avantages sociaux pour les employés entrera en vigueur après la période de probation.Nous sommes un employeur qui valorise la diversité et sommes attachés à l'égalité des chances. Nous ne discriminons pas sur la base de la race, de l'origine ethnique, de la religion, du genre, de l'orientation sexuelle, de l'âge ou du statut de handicap.Type de poste : Temps pleinSalaire : À partir de 18,00 $ de l'heureAvantages :Tenue décontractée Soins dentaires Soins de santé étendus Soins de la vueHoraire :Quart de 8 heuresLieu de travail : En personneJob Type: Full-timeSalary: From $18.00 per hourBenefits:Casual dressDental careExtended health careVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftSupplemental pay types:Overtime payWork Location: In person\",\n            \"location\": \"Ch De La Côte De Liesse, Saint-Laurent, QC\"\n        },\n        {\n            \"id\": \"C2139FA136F12A16CE544DB1EC0A43E4\",\n            \"cityName\": \"4500 Oak Street, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f399277e84d58a22\",\n            \"jobName\": \"Manager, Call Centre, Housekeeping Services, Inter-Campus Operations\",\n            \"companyName\": \"Phsa\",\n            \"rowSalary\": \"$86,398–$124,197 a year\",\n            \"date\": 1694505011872,\n            \"dateOfPosted\": 1692811036312,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.232599,\n                    \"lon\": -123.1280661\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Oak St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 86398.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    86398.0\n                ],\n                \"range\": {\n                    \"gte\": 86398.0,\n                    \"gt\": null,\n                    \"lte\": 86398.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Manager, Call Centre, Housekeeping Services, Inter-Campus Operations Children's & Women's Health Center  Vancouver, BC  In accordance with the Mission, Vision, Values and strategic direction of PHSA, safety, including both patient and employee safety, is a priority and a responsibility shared by everyone at PHSA. As such, the requirement to continuously improve quality and safety is inherent in all aspects of this position.  Reporting to the Director, Housekeeping Services, the Manager oversees the provision of quality Housekeeping Services call centre operations supporting the delivery of housekeeping services to Inter-Campus Operations (ICO) within British Columbia Children’s Hospital (BCCH), British Columbia Women’s Hospital and Health Centre (BCW) and the British Columbia Cancer Agency (BCCA). Provides leadership and direction to staff to ensure department service levels are maintained and customer service targets are achieved while identifying areas for improvement and/or development. Develops department policies and procedures including the development of an ICO wide Housekeeping call centre strategy incorporating current and new technology, by liaising with internal stakeholders to identify service requirements, and external providers with development and/or implementation of new technology. What you’ll do Contributes to the development of ICO’s long term human resources planning goals, policies, mission, and vision by reviewing the operational objectives for a Housekeeping Call Centre including the development of recommendations to meet current operational requirements, and reflect future operational and strategic needs of the department.Develops and implements department goals, objectives, policies and procedures to ensure the effective and efficient delivery of an ICO wide Housekeeping call centre service to internal/external users; oversees the reporting and documentation of call centre reports, metrics and service levels and works with staff to develop and implement standard processes/procedures for responding to user requests.Monitors workload and call volumes to ensure that response times and other performance targets are met in an effective and efficient manner.Develops, monitors, evaluates, and maintains work procedures and processes, by analyzing call centre data and reports, reviewing existing processes, drafting new processes, documenting and reviewing changes and advising call centre staff on new/changed procedures and processes to support improved housekeeping service delivery within ICO.Prepares and maintains a variety of call centre/department statistics used to monitor and maintain call volumes, staffing levels and workload volume. Analyzes service statistics to identify service improvement opportunities and trends to provide related recommendations.Recruits and manages assigned staff in accordance with professional standards, performance expectations and legislative/contractual obligations; directs, supervises and evaluates staff to ensure effective performance of dutiesPlans, assigns and/or provides work direction to staff by setting goals and standards and assigning responsibilities; coordinates the development, implementation and evaluation of staff training/orientation programs; promotes, disciplines and initiates employee disciplinary action and/or terminations, as required.Develops the annual operating and capital budgets for the assigned portfolio; monitors expenditures and performs variance analysis and reporting; takes corrective action as required to address budget and/or expenditure anomalies.Oversees and/or develops a quality improvement program to identify and resolve quality assurance issues; develops recommendations based on review of metrics to address gaps in service, quality of data collected and service provided, staff and human resource issues; implements recommendations as required.Manages, maintains and coordinates the maintenance and support of the call centre and participates in the development of a broader application of existing and/or new and related technology. Contributes to the development of long range housekeeping service delivery optimization through the identification and use of appropriate technological tools and systems.Identifies and promotes the development of research opportunities and utilization of research findings in refinement of call centre(s) service and best practices.Prepares operational and statistical reports, presentations and marketing materials for managing operations, reporting out on performance and marketing services to stakeholder groups. Other additional leadership responsibilities as assigned.Represents Housekeeping Services on various internal and external committees regarding call centre best practices and related issues. What you bring Qualifications Baccalaureate degree in Business Administration or related discipline, plus a minimum five years recent related experience including two (2) years in a supervisory/leadership role in Housekeeping Services and/or Housekeeping Call Centre, or an equivalent combination of education, training and experience.Sound knowledge of contemporary and best practices in call centre operations and incident reporting, including call centre/phone system technology. Demonstrated conflict management skills including ability to facilitate consensus with internal and external users. Ability to supervise and provide work direction to others. Working knowledge of applicable collective agreements and related legislation, labour standards and/or statutory requirements. Ability to implement service/organizational change and transition internal and external to the organization. Ability to organize and prioritize in a dynamic environment with changing priorities. Ability to develop and maintain rapport with internal and external stakeholders. Demonstrated conceptual, analytical and reasoning skills. Ability to operate related equipment including applicable software applications. Physical ability to perform the duties of the position. Proven ability to build a shared sense of purpose with clear priorities and expectations. Invests in team growth and development, and makes an honest effort to see, hear, and value all perspectives. Takes smart risks to find new solutions and has the ability to make tough decisions when needed for meaningful impact. Skills & Knowledge Awareness of and commitment to learning and understanding the Truth & Reconciliation Commission’s 94 Calls to Action (2015), In Plain Sight Report (2020), BC's Declaration on the Rights of Indigenous Peoples Act (2019), and Reclaiming Power and Place Missing and Murdered Indigenous Women & Girls calls for justice, and how they intersect across the health care system.Supports team members on their learning journey, ensuring education strategy for team/department to implement Indigenous Cultural Safety at a practical level.Works collaboratively with appropriate Indigenous teams/departments to ensure ICS lens applied holistically.Commitment to upholding the shared responsibility of creating lasting and meaningful reconciliation in Canada as per TRC (2015) and BC's Declaration on the Rights of Indigenous Peoples Act (2019).As a strong asset for consideration, we are looking for our successful candidate to have: Knowledge of social, economic, political and historical realities impacting indigenous communities and familiarity with Indigenous Cultural Safety and anti-racism and accompanying reports (BC DRIPA, TRC, etc.). What we bring Every PHSA employee enables the best possible patient care for our patients and their families. Whether you are providing direct care, conducting research, or making it possible for others to do their work, you impact the lives of British Columbians today and in the future. That’s why we’re focused on your care too – offering health, wellness, development programs to support you – at work and at home. Join one of BC’s largest employers with province-wide programs, services and operations – offering vast opportunities for growth, development, and recognition programs that honour the commitment and contribution of all employees.Access to professional development opportunities through our in-house training programs, including +2,000 courses, such as our San’yas Indigenous Cultural Safety Training course, or Core Linx for Leadership roles.Enjoy a comprehensive benefits package, including municipal pension plan, and psychological health & safety programs and holistic wellness resources.Annual statutory holidays (13) with generous vacation entitlement and accruement.PHSA is a remote work friendly employer, welcoming flexible work options to support our people (eligibility may vary, depending on position).Access to WorkPerks, a premium discount program offering a wide range of local and national discounts on electronics, entertainment, dining, travel, wellness, apparel, and more. Job Type: Regular, Full-time  Salary Range: $86,398 - $124,197 /year. The starting salary for this position would be determined with consideration of the successful candidate’s relevant education and experience, and would be in alignment with the provincial compensation reference plan. Salary will be prorated accordingly for part time roles. Location: 4500 Oak St, Vancouver, BC V6H 3N1 Closing date: Applications accepted until position is filled Hours of Work: 0900-1700 (Monday to Friday) Requisition # 150964E  As per the current Public Health Order, full vaccination against COVID-19 is a condition of employment with PHSA as of October 26, 2021. What we do  The Provincial Health Services Authority (PHSA) plans, manages and evaluates specialized health services with the BC health authorities to provide equitable and cost-effective health care for people throughout the province. Our values reflect our commitment to excellence and include: Respect people – Be compassionate – Dare to innovate – Cultivate partnerships – Serve with purpose.  Learn more about PHSA and our programs: jobs.phsa.ca/programs-and-services  PHSA is committed to employment equity, encouraging all qualified individuals to apply. We recognize that our ability to provide the best care for our diverse patient populations relies on a rich diversity of skills, knowledge, background and experience, and value a safe, inclusive and welcoming environment.  Reconciliation is an ongoing process and a shared responsibility for all of us. The BC Governments’ unanimous passage of the Declaration on the Rights of Indigenous Peoples Act was a significant step forward in this journey—one that all health authorities are expected to support as we work in cooperation with Indigenous Peoples to establish a clear and sustainable path to lasting reconciliation. True reconciliation will take time and ongoing commitment to work with Indigenous Peoples as they move toward self-determination. Guiding these efforts Crown agencies must remain focused on creating opportunities that implement the Truth and Reconciliation Commission Mandate.  ATTN: PHSA Employees: To be considered as a PHSA employee (internal applicant) for this position, you must apply online via your internal profile at http://internaljobs.phsa.ca  Please note the internal job posting will no longer be accessible after the expiry date of August 29, 2023. If the internal job posting has expired, please contact the Internal Jobs Help Desk and advise that you would like to be considered as a late internal applicant for this position. Please do not apply for the external job posting.  If you have not registered your internal profile, a password is required to log in for the first time. To obtain your password, please contact the Internal Jobs Help Desk at 604-875-7264 or 1-855-875-7264. Please note regular business hours are Monday – Friday (excluding stats), 8:30am to 4:30pm. For inquiries outside of regular business hours, please email the Internal Jobs Help Desk at internaljobshelpu@phsa.ca and a Help Desk Representative will contact you the next business day. \",\n            \"location\": \"Oak St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"10E9C0851053C8ECCE98839E565C87E2\",\n            \"cityName\": \"27 Queen St E, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d73574867340db88\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Shiny\",\n            \"rowSalary\": \"$15–$23 an hour\",\n            \"date\": 1694504961439,\n            \"dateOfPosted\": 1623853205727,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6637879,\n                    \"lon\": -79.3278595\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Queen St E, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Description:Answer phone calls and assist walk-in customersDaily showroom Set-up and pack upPrepare orders and follow-up with customers on phone or emailHandle customer concerns and inquiriesInvoice orders and obtain necessary payments when requiredRequirements:Fluent in French and EnglishRelatable job experience preferredOrganized and punctualKnowledge of Microsoft outlook, word, and excel is mandatoryAble to multitask and meet deadlinesMust be a team player and be able to work independentlyQuick and efficient learnerJewellery knowledge is an asset but not required, training provided.Job Type: Full-timeSalary: $15.00-$23.00 per hourSchedule:8 hour shiftNo weekendsEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work remotely:No\",\n            \"location\": \"Queen Street East, Toronto, ON\"\n        },\n        {\n            \"id\": \"5499848CA4544DE9A192A1D894F38132\",\n            \"cityName\": \"Windsor Station Currency Exchange in Windsor, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8c51c20aa8e7a70c\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Windsor Station Currency Exchange\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694504880259,\n            \"dateOfPosted\": 1682669668585,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.3149367,\n                    \"lon\": -83.03636329999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Windsor\",\n                \"formattedAddress\": \"Windsor, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Essex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Windsor\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CPosition: Customer Service Representative/AssistantA customer service representative is the face of the company, and is incredibly important in developing lasting relationships between WSCE and our clients. You will be expected to complete transactions, respond to telephone inquiries, open new accounts, identify client needs, recommend suitable products, and resolve client problems.Essential Functions and Basic Duties- Provide prompt, courteous service to clients in person and by phone- Perform a variety of cash and cheque transcations.- Effectively use multiple administrative systems to resolve inquiries- Assist with opening and closing the branch- Manage large amounts of incoming phone calls- Keep current with company policies, procedures and processesQualifications and Skills- Cash handling experience- Customer service experience- Strong interpersonal and communication skills- Working knowledge of excel- Proficiency with numerical calculationsJob Types: Full-time, Fixed term contractContract length: 12 monthsSalary: $18.00-$25.00 per hourSchedule:8 hour shiftEducation:Secondary School (preferred)Experience:Cash handling: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Windsor, ON\"\n        },\n        {\n            \"id\": \"0C7FC89DA59900848800C343605136AB\",\n            \"cityName\": \"Fort McMurray, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3a9238147d37a3cc\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Tumblweed General Store\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694504630659,\n            \"dateOfPosted\": 1691622508349,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 56.7266598,\n                    \"lon\": -111.3790441\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fort McMurray\",\n                \"formattedAddress\": \"Fort McMurray, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 16\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fort McMurray\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cashier & Customer Service RepresentativeTumbleweed General Store/Fort McKay Petro CanadaJob location: Fort McKay, ABShift: VariesLocated in the Fort McKay Industrial Park in Fort McKay, 35 minute drive from Fort McMurray!!Must have own transportation, we provide free gasCome and join our team today!!Company Summary:Based out of Fort McKay, AB, we are a high traffic gas and convenience store providing services to our costumers. When you join our team, you join a family of employees dedicated to a safe, enjoyable, and positive work environment. We offer competitive wages and seek candidates that are seeking secure, long-term employment.Job Summary:Reporting to the store manager and operating from the Fort McKay Industrial Park, the cashier and customer service representative is responsible for providing customer with professional, efficient and friendly service. The individual in this position must be able to multi-task efficiently in a fast-paced environment.Duties and Responsibilities:All general duties that are required of a Cashier/Customer Service Representative specifications follow but are not limited to:· Provide fast, friendly and a responsive guest experience· Maintain a clean, safe, and well stocked environment· Manage electronic cash register and the applicable retail transactions efficiently· Willingness to learnFollow all procedures, policies, and practices· Ability to complete all required daily paperwork· Multi-task efficiently in a Fast-paced environment· Must have basic math & English communication skills as well as basic physical ability.· Must be legally able to work in Canada.Qualifications:Possess valid driver's licenseExcellent communication and organization skillsExcellent Interpersonal and customer service skillsTeam player and PunctualAbility to work well without supervisionEager and willing to learnMust have reliable transportation (Fuel is provided)Additional Incentives:Company Health Benefits (eligible after 90 days)We thank you for your interest in Tumbleweed General Store and remind all candidates that only successful applicants will be contacted. Based on equal qualifications, preference will be given to local candidates.Tumbleweed General Store follows all Covid 19 Public Health Measures, advice and restrictions.Job Types: Permanent, Full-timeSalary: $19.00 per hourBenefits:Dental careVision careShift:8 hour shiftDay shiftEvening shiftExperience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Fort McMurray, AB\"\n        },\n        {\n            \"id\": \"3544B1BC7CABA29FBC01F2701C4D6186\",\n            \"cityName\": \"72838 Bluewater Highway, Zurich, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3fe28f0fb30ad9db\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Mobil Gas Bar\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694504434292,\n            \"dateOfPosted\": 1687946765825,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4214787,\n                    \"lon\": -81.6256659\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Zurich\",\n                \"formattedAddress\": \"Zurich, ON N0M 2T0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Huron County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Zurich, ON Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"1. Opening or closing Gas station2. accounts3. Cleaning4. Loading unloading inventories5. ReportingJob Types: Permanent, Part-time, Full-timePart-time hours: 20-40 per weekSalary: From $15.50 per hourBenefits:On-site parkingDay range:HolidaysMonday to FridayWeekend availabilityFlexible Language Requirement:English not requiredShift:4 hour shift8 hour shiftAfternoon shiftDay shiftMorning shiftWork setting:Convenience storeCOVID-19 considerations:yes Ability to commute/relocate:ZURICH, ON: reliably commute or plan to relocate before starting work (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Zurich, ON\"\n        },\n        {\n            \"id\": \"94FFBF60C0BC18BB50FDF3B59C1F72C5\",\n            \"cityName\": \"8 Highland Dr, St. John's, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=12b0d2d1836b39de\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Ches's Fish And Chips\",\n            \"rowSalary\": \"From $14.75 an hour\",\n            \"date\": 1694503613577,\n            \"dateOfPosted\": 1692800026545,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.6068279,\n                    \"lon\": -52.7121564\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St. John's\",\n                \"formattedAddress\": \"Highland Dr, St. John's, NL A1A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Highland Dr, St. John's, NL\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full Job Descriptionwe are looking for someone energetic, have a flexible schedule, like a fast-paced environment, and can learn quickly, we want to hear from you!We are currently hiring a cashier with daytime and evening time availability (weekdays and weekends).Greet guests and advise on store's ordering products and services, handle transactions on POS terminal and process payments, maintain a clean environment for the guests (restock, clearing and cleaning of dining room area), perform all opening and closing duties.Job Type: Part-timePart-time hours: 20-40 per weekSalary: From $14.75 per hourBenefits:Dental careVision careDay range:Monday to FridayWeekends as neededShift:4 hour shift8 hour shiftAbility to commute/relocate:St. John'S, NL A1A 3C4: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Highland Dr, St. John's, NL\"\n        },\n        {\n            \"id\": \"0150587BAE669692F1FA0EB8F9D06DBD\",\n            \"cityName\": \"Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=319c557623f9a83a\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Budget Car & Truck Rental\",\n            \"rowSalary\": \"$18–$19 an hour\",\n            \"date\": 1694503147259,\n            \"dateOfPosted\": 1692777378138,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3193375,\n                    \"lon\": -124.3136411\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Parksville\",\n                \"formattedAddress\": \"Parksville, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Parksville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Quality Long Term Position AvailableBudget Car & Truck Rentals is now seeking a candidate to fill a Customer Service role in Parksville, BC. Shifts will involve working weekendsThis position offers:-A competitive salary with an excellent incentive program.-Stability and flexibility with a BC owned company that has been successful in business for over 50 years.-A comprehensive benefits program including extended health, dental, and life insurance.-A fast-paced, exciting role within a team of dedicated professionals who love to have fun at work.What we are looking for from you:-A high energy, positive attitude.-A team player who respects their coworkers and is driven by healthy competition.-Someone who is motivated to give the best customer service experience possible.-Strong computer skills and the ability to multitask.-Effective communication skills with both customers and colleagues alike.-Accountability and integrity paired with strong work ethic.-A valid BC Class 5 driver’s license or better with a clean driving record.-Previous experience in sales and customer service.If you’re interested in starting a long term career in this growing industry please email to this posting a copy of your cover letter and resume outlining your ability to meet or exceed the requirements above.Job Type: Full-timeSalary: $18.00-$19.00 per hourExpected hours: 40 – 45 per weekBenefits:Dental careDisability insuranceExtended health careLife insuranceRRSP matchFlexible Language Requirement:French not requiredSchedule:Monday to FridayWeekends as neededSupplemental pay types:Commission payAbility to commute/relocate:Parksville, BC: reliably commute or plan to relocate before starting work (required)Licence/Certification:BC Class 5 Drivers License or Better (preferred)Work Location: In person\",\n            \"location\": \"Parksville, BC\"\n        },\n        {\n            \"id\": \"2127E247E7E47B5EB8EAC037A415282E\",\n            \"cityName\": \"Revelstoke, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=15255c931f169340\",\n            \"jobName\": \"Clk 12r - Customer Service Representative\",\n            \"companyName\": \"Bc Public Service\",\n            \"rowSalary\": \"$52,803–$59,608 a year\",\n            \"date\": 1694503078100,\n            \"dateOfPosted\": 1694503077866,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.998115,\n                    \"lon\": -118.195672\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Revelstoke\",\n                \"formattedAddress\": \"Revelstoke, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Columbia-Shuswap\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Revelstoke\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 52803.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    52803.0\n                ],\n                \"range\": {\n                    \"gte\": 52803.0,\n                    \"gt\": null,\n                    \"lte\": 52803.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Posting Title  CLK 12R - Customer Service Representative  Position Classification  CLBC Clerk R12  Union  GEU  Work Options  On-Site  Location  Revelstoke, BC V0E 3K0 CA (Primary)  Salary Range  $52,803.18 - $59,607.79 annually  Close Date  9/25/2023  Job Type  Regular Full Time  Temporary End Date  Ministry/Organization  BC Public Service -> Citizens' Services  Ministry Branch / Division  Service Delivery/Service BC  Job Summary Apply your expertise and passion for innovation to this rewarding career opportunityMINISTRY OVERVIEWDedicated to making life better for British Columbians, the Ministry of Citizens’ Services (CITZ) delivers key services that people rely on. CITZ delivers accessible, multi-channel services, through a single-point-of-contact service approach to people in urban and rural communities through Service BC, and delivers the digital face of government at www.gov.bc.ca. CITZ also provides support for the expansion of high-speed internet connectivity throughout the province, leadership across government to modernize information management and technology resources, trusted data services to government agencies, prompt, and relevant responses to freedom of information requests, and statistical and economic research, information and analysis to businesses and the public sector. In addition, the ministry manages the Province’s real estate assets, technology systems and equipment, and leverages procurement to increase business opportunities and create rewarding jobs that contribute to local economies and benefit individuals, families, and communities.A service-focused organization, CITZ strives to be a great place to work, where all employees feel both engaged and motivated to do their best.DIVISIONAL OVERVIEWService BC is government’s chief provider of services to B.C. residents and businesses. The work of the division enables the design and delivery of accessible, responsive, and cost-effective services, making it easier for British Columbians and businesses to interact with government. Through a provincial network of 65 in-person offices and the Provincial Contact Center, Service BC provides approximately 300 government services for more than 40 partner ministries and agencies. Our team member’s unwavering commitment to an ethic of service has driven consistently high people and business satisfaction rates. In support of the division’s overarching goal of providing residents and businesses with seamless, multi-service access to government programs, the Division’s service offerings are marketed to partner ministries and the broader public sector to expand our continuum of services and leverage common platforms.Within Service BC, our vision is to deliver innovation, value, and service excellence to the people of British Columbia, with the aspirational goal of becoming a best-in-class public service delivery organization. Our people and our culture are important to us. As a team, we are motivated to deliver an excellent service experience to British Columbians, businesses, colleagues, peers, clients, and partners. We believe in being kind and helpful, and are committed to delivering “Service with Heart”.JOB OVERVIEWThe Service BC Customer Service Representative (CSR) maintains a positive, empathetic, and professional attitude when providing service and answering enquires. It requires the ability to identify and assess peoples’ needs to effectively and efficiently deliver an excellent customer service experience.The CSR provides services in-person, by phone, and through digital channels. The ability to provide clerical and administrative support such as data entry, reviewing applications for completeness, handling payments, and providing appropriate solutions, within government guidelines to a diverse population of people is essential to this role.Job Requirements:Minimum Grade 12 graduation or equivalent (GED).Experience providing inclusive customer service to diverse clienteles. Experience using digital applications to search for and record information. Preference may be given to applicants with one (1) or more of the following:Multiple years of experience in any of the above requirements.Experience providing in-person customer service.Experience providing customer service though phone or digital channels.Experience delivering customer service in a high volume, fast-paced, rapidly changing environment.Experience with conflict resolution and de-escalating situations.Experience providing services to a diverse population some of whom may be experiencing poverty issues, substance use, or mental health concerns.Experience maintaining administrative files and record keeping.Experience delivering service in a regulated or legislated environment following processes and procedures.Customer Service training and/or education.Experience handling financial transactions.Willingness Statements:Willingness to travel occasionally to provide relief coverage to other work sites (Service BC Centres, exam locations, etc.) Successful completion of security screening requirements of the BC Public Service, which may include a criminal records check, and/or Criminal Records Review Act (CRRA) check, and/or enhanced security screening checks as required by the ministry (Note: It is important that you read the job posting carefully to understand the specific security screening requirements pertaining to the position). For questions regarding this position, please contact melody.olsen@gov.bc.ca.About this Position: An eligibility list may be established to fill future temporary and permanent vacancies across the Ministry of Citizens' ServicesThis position has full time on-site requirements.Working for the BC Public Service:The BC Public Service is committed to creating a diverse workplace to represent the population we serve and to better meet the needs of our citizens. Consider joining our team and being part of an innovative, inclusive and rewarding workplace.The Indigenous Applicant Advisory Service is available to applicants that self-identify as Indigenous (First Nations, status or non-status, Métis, or Inuit) seeking work or already employed in the BC Public Service. For guidance on applying and interviewing, please contact IndigenousApplicants@gov.bc.ca or 778-405-3452.The BC Public Service is an award-winning employer and offers employees competitive benefits, amazing learning opportunities and a chance to engage in rewarding work with exciting career development opportunities. For more information, please see What We Offer.How to Apply: Your application must clearly demonstrate how you meet the job requirements listed above.Cover Letter: NO - Please do not submit a cover letter as it will not be reviewed.Resume: YES - A resume is required as part of your application, however, it may not be used for initial shortlisting purposes.Questionnaire: YES - You will need to complete a comprehensive questionnaire to demonstrate how you meet the job requirements. Include all relevant information about your educational accomplishments and employment history including job titles, start and end dates (month and year) of your employment, and how you obtained your relevant experience. The questionnaire will take approximately 60 minutes to complete.Helpful tips, videos and more regarding the application process can be found on the Your Job Application page of MyHR. If you are experiencing technical difficulty applying, e-mail BCPSA.Hiring.Centre@gov.bc.ca, before the stated closing time, and we will respond as soon as possible.Additional Information: A Criminal Record Check (CRC) will be required.Applicants selected to move forward in the hiring process may be assessed on the Knowledge, Skills, Abilities and Competencies as outlined in the attached Job Profile located at the bottom of the posting.Applications will be accepted until 11:00 pm Pacific Standard Time on the closing date of the competition. Job Category  Administrative Services \",\n            \"location\": \"Revelstoke, BC\"\n        },\n        {\n            \"id\": \"B11EB8D2B2D5FD117030BFEEEDACCE86\",\n            \"cityName\": \"128-998 Harbourside Dr, North Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b45ecffc545bdee9\",\n            \"jobName\": \"Customer Service/Barista\",\n            \"companyName\": \"Thomas Haas Chocolates & Patisserie\",\n            \"rowSalary\": \"$18–$19 an hour\",\n            \"date\": 1694501289710,\n            \"dateOfPosted\": 1694309885584,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"THOMAS HAAS Chocolates and Patisserie is looking for a FOODIE & COFFEE loving person to join our team!- Full-time: Tuesday to Saturday (40hrs/wk)Sundays & Mondays Closed (always have 2 set days off)Opening shift starts at 7:15amClosing shift ends around 7pm (giving you time for dinner with family & friends! :)- we are looking for someone who is hardworking, possess good multi-tasking skills, has attention to detail, enjoys engaging with people and is self-motivated- a good part of this job is talking with our customers & your co-workers - good listening skills & English comprehension are key!- we offer a competitive wage & shared tips- free beverages & meal while at work- extended health benefits (after one year full-time with us)- we hire people on work/travel visas (12 months)Your past customer service experience would reflect in your starting wage.*barista experience is an asset, but not necessary*Do you have a willingness to learn and expand your skill set?Do you enjoy working in a team?We would love to meet you if this sounds like an opportunity you would like to pursue!We will reach out to the candidates that are suitable.Job Types: Full-time, PermanentSalary: $18.00-$19.00 per hourJob Types: Full-time, PermanentSalary: $18.00-$19.00 per hourBenefits:Dental careDiscounted or free foodExtended health careStore discountVision careSchedule:8 hour shiftDay shiftSupplemental pay types:TipsAbility to commute/relocate:North Vancouver, BC: reliably commute or plan to relocate before starting work (required)Application question(s):How do you handle a stressful situation?Education:Secondary School (required)Experience:Customer service: 1 year (required)Language:and comprehend English really well (required)Licence/Certification:FoodSafe certification (required)Shift availability:Day Shift (required)Work Location: In personApplication deadline: 2023-09-23Expected start date: 2023-09-15\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"C0F42B93DCA53CCD20D6A2F9BBF6B612\",\n            \"cityName\": \"161 Conception Bay Highway, Bay Roberts, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ef7a3870aafbbb7b\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"A&W\",\n            \"rowSalary\": \"$13.70–$15.00 an hour\",\n            \"date\": 1694500763787,\n            \"dateOfPosted\": 1668042720848,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.6070238,\n                    \"lon\": -53.2868564\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bay Roberts\",\n                \"formattedAddress\": \"Conception Bay Hwy, Bay Roberts, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bay Roberts\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"BASIC FUNCTIONThe Cashier ensures an excellent experience for their guests by exceeding expectations and taking, assembling, and serving orders accurately. The Cashier cares for their guests first before anything else, delighting them with friendly and caring service that creates loyalty. The Cashier also ensures the dining room is kept clean and presentable, and contributes to achieving A&W operating standards for the restaurant.REQUIREMENTSYou will excel and find happiness in this job if you: Appreciate exceptional customer service – and knows what it takes to deliver this to every guest on every visit;Love learning – you’ll use online learning and hands on training to know how to prepare perfect food to standard recipes or customized for guests;Embrace change - and get excited to implement new innovation from A&W;Value flexibility – this includes availability to work flexible hours like early mornings, evenings, weekends, nights and/or holidays;Love working in a team – and together as partners to get the job done in a dynamic fast food environment.Education:Education is an asset, but no minimum requirementExperience:Experience is an asset, but no minimum requirementAbilities:Excellent guest serviceWorking as a teamMulti-taskingBasic mathematical skillsEffective communication skillsJob Types: Permanent, Part-time, Full-timeSalary: $13.70-$15.00 per hourBenefits:Discounted or free foodFlexible scheduleStore discountDay range:HolidaysMonday to FridayWeekend availabilityFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayNight shiftOvertimeWeekend availabilityShift:10 hour shift4 hour shift8 hour shiftDay shiftEveningsEvening shiftMorning shiftNight shiftSupplemental pay types:Bonus payOvertime payTipsCOVID-19 considerations:All staff are currently required to wear masks and additional cleaning and screening processes are in place.Work Location: In person\",\n            \"location\": \"Conception Bay Highway, Bay Roberts, NL\"\n        },\n        {\n            \"id\": \"D02AFE359B18009C31E2456E8E8A3FBA\",\n            \"cityName\": \"340 Ewen Ave., New Westminster, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1129b902c84cc991\",\n            \"jobName\": \"Customer Service And Shop Saw Operator\",\n            \"companyName\": \"Griff Building Supplies Ltd.\",\n            \"rowSalary\": \"$25 an hour\",\n            \"date\": 1694500441235,\n            \"dateOfPosted\": 1694239278617,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 25.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    25.0\n                ],\n                \"range\": {\n                    \"gte\": 25.0,\n                    \"gt\": null,\n                    \"lte\": 25.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Yard Customer Service / Shop Saw OperatorDuties and responsibilities Maintaining equipment necessary for your job. Cut lumber to specified lengths with efficiency in mind. Help customers and do yard clean up when there are no orders to be cut. Daily forklift check sheet to be filled out and given to yard lead.Follow established work policies and procedures and make suggestions for improvements to the yard lead.Participate in staff meetings and training as needed.Understand and follow WCB safety requirements and inform anyone in shipping of any safety issues.Assist with the training of new staff and promote a team mentality.Maintain and secure assigned tools and other equipment necessary to complete your job. Clean as you go. All weather sensitive products must be wrapped before shipment regardless of weather conditions.All other related duties.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"A14C6FFA7D2FFB4FE0A81D57F3B0AFC4\",\n            \"cityName\": \"2595 Main St, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=80112884d20796c4\",\n            \"jobName\": \"Customer Service And Sales Associate\",\n            \"companyName\": \"Fabutan And Hush Lash Studios\",\n            \"rowSalary\": \"$13.50–$18.00 an hour\",\n            \"date\": 1694499861762,\n            \"dateOfPosted\": 1673175770256,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.94461099999999,\n                    \"lon\": -97.111592\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Main St, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are proud to be Canada’s Largest Sunshine and Lifestyle Brand with 130 Locations!We are currently recruiting a sales and service associate for our Winnipeg Riverbend studio who is outgoing, self-motivated, has great sales ability, able to multi-task, quick to learn, consistent and passionate! We are also looking for someone who enjoys tanning, skin care, all the benefits of UV exposure and Vitamin D.APPLY NOW FOR OUR CUSTOMER SERVICE ASSOCIATE | LIFESTYLE EXPERT POSITION – PERSONAL AND WORKING INTERVIEWS WILL BE SCHEDULEDWhat we offer:Free Access to Services like Sunshine, Spray, Red Light Skin Rejuvenation, 40% Off Products for Personal Use, Staff pricing for Hush Lash Extensions, Fabutan and Smart Tan Cooperative Online and In-Studio Training, Ongoing Coaching to help ensure your success, Coaching on Personal Development and Relationship Building, Service Opportunity for Hush Lash Extension Training and Careers with Hush, Flexible hours to fit your busy schedule, full and part time opportunities, A positive, fun, and rewarding work environment with a growing company. For more information on opportunities visit www.fabutan.comIn addition:We offer Competitive Commissions on Products and Membership sales, paid monthly. Part-Time Hourly Rate starts at $13.50 per hour and you have the opportunity to earn $2-$5 more per hour in bonuses. Opportunities for raises and advancement based on performance.What you offer:No experience is necessary but sales experience is an asset. Fantastic customer service, an amazing work ethic and the passion to give our guests the best experience on each and every one of their visits. Positivity, enthusiasm to learn and desire to help educate our guests on products and services. Ability to multitask and maintain a clean, attractive and comfortable studio at all times.About us:Fabutan established in 1979 and currently offers 130 locations Canada Wide to serve our guests. We offer a proprietary blend of UVA and UVB in our lamps to imitate natural sunlight as closely as possible. It is our principle to change our lamps every 500 hours to give our guests the best results, we guarantee a tan in 300 minutes or less! We offer Sunshine, Spray Tanning, Red Light Skin Rejuvenation and have an Exclusive Partnership with Hush Lash Studio. Our Lifestyle Experts are fully trained, certified and strive to provide the most immaculate sunshine beds you've ever experienced. All in an atmosphere that is fun and relaxed.If you are a fun-loving, happy person and you think this all sounds good, then please send us your resume with a cover letter, and we would love to meet you!Job Types: Full-time, Part-timeSalary: $13.50-$18.00 per hourJob Types: Full-time, Part-timePart-time hours: 10-15 per weekSalary: $13.50-$18.00 per hourBenefits:On-site parkingStore discountDay range:Weekend availabilityFlexible Language Requirement:French not requiredShift:Day shiftEvening shiftExperience:sales: 1 year (preferred)customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In personExpected start date: 2023-01-14\",\n            \"location\": \"Main St, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"1971C3C4BC5155B9F1D65EB21CDC748D\",\n            \"cityName\": \"1538 Rue Sherbrooke O, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1d6a12ecbc593993\",\n            \"jobName\": \"Call Center Agent\",\n            \"companyName\": \"Vm-Med\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694499615268,\n            \"dateOfPosted\": 1668689593252,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4815979,\n                    \"lon\": -73.6004244\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Sherbrooke O, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CALL CENTER AGENTDEPARTMENT Breast Center – Appointment CenterEMPLOYMENT STATUS Permanent, Full-time – 40 hours per weekBENEFITS Vacation, Flex Days, Group InsuranceSUPERVISOR Supervisor, Call CenterWe are looking for a dynamic individual, with an interest in helping our patients understand the service offering of our clinic, and ultimately helping to schedule appointments with our physicians.The primary responsibilities of the Call Center Agent will be the following:Aid patients in gaining a complete understanding of our clinic service offering, including information regarding pre-appointment procedures and fee structureAnswer to patient inquiries (telephone, email or web chat)Create and update patient files in the electronic medical record, MedeSyncSchedule patient appointments with our physiciansAdditional responsibilities include:Uploading (scanning) medical results and/or referrals into respective patient’s electronic medical recordPeriodic re-booking or re-organization of physician schedulesConducting outbound calls to follow-up on various advertising campaignsRequirements:Bilingual with a Bachelor’s DegreeProficiency in MS Outlook, MS Word and MS ExcelKnowledge of MedeSync is an assetStrong interpersonal and communication skills, and exceptional organizational skillsAbility to take initiative, work independently and with minimal supervision and demonstrated ability to work in a small team settings-------------------------------------------------------AGENT DU CENTRE D’APPELSDÉPARTEMENT Centre du sein – Centre de rendez-vousSTATUT D’EMPLOIS Permanent, temps plein – 40 heures par semaineAVANTAGES Vacances, jours flexibles, assurance collectiveSUPERVISEUR Superviseur, Centre de rendez-vousNous recherchons une personne dynamique, intéressée à aider nos patients à comprendre l'offre de services de notre clinique, et à les aider à prendre rendez-vous avec nos médecins.Les principales responsabilités de l’agent du centre d’appels seront les suivantes:Aider les patients à acquérir une compréhension complète de l'offre de services de notre clinique, y compris des informations concernant les procédures préalables au rendez-vous et la tarification;Répondre aux demandes de renseignements des patients (téléphone, courriel ou chat en ligne);Créer et mettre à jour les dossiers des patients dans le dossier médical électronique, MedeSync;Planifier les rendez-vous des patients avec nos médecins;Les responsabilités supplémentaires comprennent:Téléchargement (numérisation) des résultats médicaux et/ou des références dans le dossier médical électronique du patient;Réorganisation périodique de la journée des médecins;Effectuer des appels sortants pour assurer le suivi de diverses campagnes publicitaires;ExigencesBilingue avec un baccalauréat est préférableMaîtrise de MS Outlook, MS Word et MS Excel.Connaissance de MedeSync serait un atoutFortes compétences interpersonnelles en communication et en organisationApte à prendre des initiatives et à travailler de manière autonome avec un minimum de supervision; aptitude démontrée à travailler au sein d’une petite équipeType d'emploi : Temps plein, PermanentSalaire : à partir de 18,00$ par heureAvantages :Assurance Maladie ComplémentaireÉvénements d'EntrepriseHoraires flexiblesHoraires de travail :8 HeuresEducation:DCS / DEC (preferred)Language:French (required)English (required)Lieu du poste : En présentielDate de début prévue : 2022-11-14\",\n            \"location\": \"Sherbrooke Street West, Montréal, QC\"\n        },\n        {\n            \"id\": \"77EF1B511BF1F3063FFED30E3CF8AE8A\",\n            \"cityName\": \"228 12c St N, Lethbridge, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b1d8f734d4475037\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Group Maxvizer\",\n            \"rowSalary\": \"$55,000–$60,000 a year\",\n            \"date\": 1694498259746,\n            \"dateOfPosted\": 1694207946604,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 55000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    55000.0\n                ],\n                \"range\": {\n                    \"gte\": 55000.0,\n                    \"gt\": null,\n                    \"lte\": 55000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service role handles calls from new and existing business clients regarding a variety of requests in an efficient and effective manner. A successful rep uses knowledge of products and services and excellent customer service skills to address issues, provide support, offer information, and place orders to keep customers satisfied and retain business. We are looking to hire immediately and we hope to see all 1st year employees receive a promotion between 6 months and 1 year of tenure.The Perks:Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingRequirements:An upbeat, positive attitudeWillingness to go that extra mile for your team and our customersMath/Accounting skills are a plus!Must have experience with Microsoft/ExcelPrior customer service/sales experience is a plusEssential Functions:Book zoom meetings and educate/troubleshoot questions with clienteleWork cooperatively between customers, service providers and other departmentsCommunicate with customers and vendors in a clear, effective, and professional mannerReceive customer inquiries, issues, or challenges and follow-through to resolutionBasic filing and data entryJob Types: Full-time, PermanentSalary: $55,000.00-$60,000.00 per yearBenefits:Automobile allowanceCommuter benefitsDental careEmployee assistance programExtended health careHousing allowanceOn-site parkingProfit sharingWellness programFlexible Language Requirement:French not requiredSchedule:Day shiftSupplemental pay types:Bonus payCommission payOvertime payRetention bonusSigning bonusTipsEducation:Secondary School (preferred)Work Location: Hybrid remote in Lethbridge, AB T1H 2M7\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"CEC02E4D6D0EA8A85DB9D97667801F12\",\n            \"cityName\": \"12 Dominion Cres, Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0e1734e291c111d3\",\n            \"jobName\": \"Tire Wholesale Customer Service Representative\",\n            \"companyName\": \"Andy's Tire | Scotia Tire\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694496805213,\n            \"dateOfPosted\": 1691541130021,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6421211,\n                    \"lon\": -63.6878682\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Beechville\",\n                \"formattedAddress\": \"Dominion Crescent, Beechville, NS B3T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dominion Cres, Halifax, NS\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ENJOY A PERMANENT, FULL TIME POSITION WITH ALL BENEFITS IN ATLANTIC CANADA'S FASTEST GROWING TIRE WHOLESALE BUSINESSAPPLICANTS MUST CURRENTLY RESIDE IN THE HRM AREA OF NOVA SCOTIAThe Wholesale Customer Service Representative is responsible for managing 3 tire distribution centers, customer complaint resolutions, processing orders to the distribution center.Key Accountabilities· Provide a high level of customer service in line with our company goals· Support and communicate sales prospect to our wholesale division.· Resolve customer complaint and inquiries.· Maintain a sales call calendar and attend monthly sales meetings.· Follow the training provided and mentor fellow teammates to foster a learning environment.· Maintain a high level of professionalism to represent a positive company image.Requirements· Experience in customer service or sales.· Experience in the automotive industry.· Strong knowledge of Microsoft Office products, including Excel, MS Word, office 365, and Outlook.· Excellent verbal, written communication and influencing skills.· High level of accuracy and attention to detail.· Ability to work in a fast-paced working environment.· Experience with ERP, CRM, or data management systems.· Team player attitude.· Prompt and courteous.· Enthusiastic personality.Job Types: Permanent, Full-timeSalary: From $18.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingStore discountVision careSchedule:8 hour shiftMonday to FridayWeekends as neededCOVID-19 considerations:All Covid-19 precautions are being adhered toExperience:customer service: 5 years (required)Tire/Auto Industry: 2 years (required)Language:French (preferred)Licence/Certification:Halifax area home address (required)Work Location: In person\",\n            \"location\": \"Dominion Cres, Halifax, NS\"\n        },\n        {\n            \"id\": \"01E378DB6801BA288F0C9B00EED88000\",\n            \"cityName\": \"7715 Cumberland St, Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=70fa76f12c973870\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Samimi Enterprise\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694496250638,\n            \"dateOfPosted\": 1694294695772,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Need a honest, reliable male person for job of a cashier at the convenience storeHigh school educationNo experience needed. Training will be givenJob Type: Part-timePart-time hours: 17 per weekSalary: $16.75 per hourFlexible Language Requirement:French not requiredShift:4 hour shiftAfternoon shiftEvening shiftWork setting:Convenience storeWork Location: In personExpected start date: 2023-09-15\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"ED9F0A321C34A02F9B75223C60159940\",\n            \"cityName\": \"ALLEN'S ONE STOP in Grand Bay East, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=49e28ad4c84c5bb6\",\n            \"jobName\": \"Cashier Customer Service Representative\",\n            \"companyName\": \"Allen'S One Stop\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694496222913,\n            \"dateOfPosted\": 1689721636502,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.5853063,\n                    \"lon\": -59.16756650000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Channel-Port aux Basques\",\n                \"formattedAddress\": \"Grand Bay East, Channel-Port aux Basques, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grand Bay East, NL Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usALLEN'S ONE STOP is a small business in Grand Bay East, NL A0N 0C2. We are professional, agile, and our goal is to PROVIDE THE BEST CUSTOMER SERVICE IN A CLEAN WORKING ENVIRONMENT.Our work environment includes:Flexible working hoursOn-the-job trainingWe are looking for a friendly and reliable Customer Service Associate / Cashier to join our team. The successful candidate will be responsible for greeting customers, providing assistance with product selection, processing payments, and ensuring that the store is clean and organized. The ideal candidate will have excellent customer service skills, a positive attitude, and an ability to work in a fast-paced environment.Responsibilities:Greet customers in a friendly and professional manner.Assist customers with inquiries and purchases.Process payments and refunds accurately and efficiently.Maintain a clean and organized work area.Follow store policies and procedures regarding customer service, cash handling, and safety.Provide excellent customer service to ensure customer satisfaction.Job Type: Full-timeSalary: From $15.50 per hourBenefits:Dental careVision careFlexible Language Requirement:French not requiredShift:8 hour shiftWork setting:Convenience storeAbility to commute/relocate:Grand Bay East, NL A0N 0C2: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Grand Bay East, NL\"\n        },\n        {\n            \"id\": \"4080E730EE37FB1B3E23DD13BBA84CD2\",\n            \"cityName\": \"218 Industrial Park Crescent, Sault Ste. Marie, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=52a3ce7ea83e2ec0\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Superior Tile & Floor\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694495624252,\n            \"dateOfPosted\": 1668799819872,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.5136494,\n                    \"lon\": -84.33575259999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sault Ste. Marie\",\n                \"formattedAddress\": \"Sault Ste. Marie, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Algoma District\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sault Ste. Marie, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Duties of the successful candidate-providing exceptional customer service and sales to customers in choosing flooring for their homes, some flooring knowledge would be an asset, great communication skills, some Sage knowledge, organize show room, purchasing, receiving orders, other duties assigned. Must be organized, have time management skills, and be able to multi-task.Job Type: Full-timeSalary: $16.00-$20.00 per hourBenefits:Dental careVision careSchedule:8 hour shiftAbility to commute/relocate:Sault Ste. Marie, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Sault Ste. Marie, ON\"\n        },\n        {\n            \"id\": \"D96C710CEB1BF5F7C271B9EFB06D5791\",\n            \"cityName\": \"2000 Boul Saint-Régis, Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a4ebcaa3d0fa6d7f\",\n            \"jobName\": \"Customer Service Representative/Inside Sales\",\n            \"companyName\": \"Amacor\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694494766841,\n            \"dateOfPosted\": 1691600918313,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.488025,\n                    \"lon\": -73.7817139\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Boul Saint Régis, Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer service representative / Inside Sales:Amacor is seeking a dynamic, detailed orientated CSR/Inside sales Representative.Located in the West Island close to Highway 40 and Blvd Des Sources.Amacor provides its clients with full-service garment embellishment that includes Silk-screening, Embroidery, Patches and a host of Digital technologies.Responsibilities:Responding promptly to customer inquiriesCollaborate with several departments to address client’s needsEnsure to have all required information to process ordersPrepare quotes, input information and process ordersOrder entry into CRM databaseKeeping records of customer interactions, transactions and commentsAssist sales team with administrative dutiesFollow-up on order statusAnswer customer inquiries about orders via phone or emailSkills:High school diploma or equivalent2 years related work experience preferredBilingual (fluent French and English both written and verbal)Great communicator in person and via telephone and emailProblem solver-ConfidentTeam player as it is a collaborative open environmentMust work well under pressure in a fast-paced environmentAbility to prioritize many tasksComputer skills: Excel-Outlook-WordReprésentant du service à la clientèle / Ventes internes :Amacor est à la recherche d'un représentant RSE/ventes internes dynamique et détaillé.Situé dans le West Island près de l'autoroute 40 et du boulevard Des Sources.Amacor fournit à ses clients un service complet d'embellissement de vêtements qui comprend la sérigraphie, la broderie, les écussons et une multitude de technologies numériques.-------------------------------------------------------------------------------Représentant du service à la clientèle / Ventes internes :Amacor est à la recherche d'un représentant RSE/ventes internes dynamique et détaillé.Situé dans le West Island près de l'autoroute 40 et du boulevard Des Sources.Amacor fournit à ses clients un service complet d'embellissement de vêtements qui comprend la sérigraphie, la broderie, les écussons et une multitude de technologies numériques.Responsabilités:- Répondre rapidement aux demandes des clients- Collaborer avec plusieurs départements pour répondre aux besoins des clients- S'assurer d'avoir toutes les informations nécessaires pour traiter les commandes- Préparer les soumissions, saisir les informations et traiter les commandes- Saisie des commandes dans la base de données CRM- Tenir des registres des interactions, des transactions et des commentaires des clients- Assister l'équipe de vente dans les tâches administratives- Suivi de l'état des commandes- Répondre aux demandes des clients sur les commandes par téléphone ou par courrielCompétences:- Diplôme d'études secondaires ou équivalent- 2 ans d'expérience de travail connexe préférable- Bilingue (français et anglais courants tant à l'écrit qu'à l'oral)- Excellent communicateur en personne et par téléphone et courriel- Résolveur de problèmes - Confiant- Avoir un esprit d'équipe car il s'agit d'un environnement collaboratif ouvert- Doit bien travailler sous pression dans un environnement en évolution rapide- Capacité à prioriser de nombreuses tâches- Compétences informatiques: Excel-Outlook-WordBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingSchedule:8 hour shiftMonday to FridayEdit jobOpenView public job pageJob Types: Permanent, Full-timeSalary: $18.00-$22.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Boul Saint-Régis, Dorval, QC\"\n        },\n        {\n            \"id\": \"0D2F6D720E596778BB6FF8EAD51B6745\",\n            \"cityName\": \"130-144 Martin Ross Ave, North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8aaa172cf93cd7de\",\n            \"jobName\": \"Customer Service/Order Fulfillment\",\n            \"companyName\": \"Tinlids Inc.\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694494753333,\n            \"dateOfPosted\": 1694494753148,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7739731,\n                    \"lon\": -79.474792\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Martin Ross Ave, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"If you are interested in the world of Children’s Literature, this is the place to work! Tinlids is a Canadian children’s and young adult bookseller dedicated to providing exceptional selection and acquisition expertise to Canadian schools, public libraries and parents. We have a large warehouse in North Toronto. Visit our website for more details, tinlids.caThe successful candidate will be part of a team involved in picking, packing, and shipping book orders for schools and libraries, for the largest reading program in Canada. Training is provided. This position is a 3-month contract, with the possibility of being hired full time permanent.Requirements:Fluency in verbal/written EnglishPhysically fit, able to lift boxes of up to 45 lbs.Ability to work some weekends and evenings on short-noticeOther skills that would be an asset:Exceptional customer service skillsProfessional telephone mannersStrong computer skillsAvailability to attend out-of-town events (1-2 days, some overnight)Drivers licence/own carStart date: October 10, 2023Inclusion & DiversityTinlids is an equal opportunity employer with a commitment to hiring and retaining a diverse workforce. We encourage and welcome applications from all intersectional walks of life.Job Types: Full-time, ContractContract length: 3 monthsSalary: $19.00 per hourBenefits:On-site parkingSchedule:Monday to FridayWeekends as neededWork Location: In personExpected start date: 2023-10-10\",\n            \"location\": \"Martin Ross Ave, Toronto, ON\"\n        },\n        {\n            \"id\": \"0654250F400EF169CEE032C80AAB0C76\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8163ed4f70b86285\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"Helping Hands Family Movers Inc\",\n            \"rowSalary\": \"$23.50 an hour\",\n            \"date\": 1694494572319,\n            \"dateOfPosted\": 1693648335072,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Arrange for refunds and credits Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Receive and log complaints Receive credit and employment applications Receive payments Sell merchandise Advise clients on advertising or sales promotion strategies Answer written and oral inquiries Assist in the preparation of brochures, reports, newsletters and other material Computer and technology knowledge MS Excel MS Outlook MS Windows MS Word MS PowerPoint Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Judgement Screening questions Are you currently legally able to work in Canada?Work Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"85E543801555750EBF86ACC2E5C5CED0\",\n            \"cityName\": \"MedicVan Patient Transfer Services Inc. in Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=31ff2d1c51bc1198\",\n            \"jobName\": \"Dispatcher/Customer Service\",\n            \"companyName\": \"Medicvan Patient Transfer Services Inc.\",\n            \"rowSalary\": \"$23–$24 an hour\",\n            \"date\": 1694494504223,\n            \"dateOfPosted\": 1670374159886,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.798329,\n                    \"lon\": -79.5079073\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Concord, Vaughan, ON L4K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"MedicVan Patient Transfer Services Inc. is a privately owned and operated Canadian company with over 19 years of experience in non-emergency patient transportation. We operate in Toronto and theGTA and specialized in bed to bed stretcher or wheelchair transportation services.Position: Weekend Dispatcher Qualifications and skills required: - High school graduation- Excellent verbal and written English- Kind, friendly, accommodating, willing to help personality- Excellent customer service experience and communication skills- Professional telephone manner- Ability to multitask- Good organization and time management skill- Stress management skill and ability to work under pressure- Knowledge of Mc Office, Excel and Outlook- Knowledge of the city of Toronto and the GTA- Knowledge of internet use, Google Map use- Dispatching experience in trucking, taxi or similar industry would be preferred- Experience in Logistics would be preferredDuties and Responsibilities:- Answering multiple phone calls- Schedule bookings and forward information to crew members- Respond to costumer’s inquiries, by email or over the phone- Ensure crews are on scheduled time- Communicate with clients, hospitals and other health care facilities in a timely and professional manner- Follow up calls with existing client- Prepare paperwork for crews- Scheduling crews- Faxing, mailing, emailing- Other office and clerical duties as neededIf you think you are right for our team, send your application to us by email.Job Types: Part-time, PermanentPart-time hours: 15-20 per weekSalary: $23.00-$24.00 per hourBenefits:On-site parkingFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftDay shiftHolidaysMorning shiftWeekends onlyAbility to commute/relocate:Concord, ON: reliably commute or plan to relocate before starting work (required)Experience:dispatching: 3 years (required)Work Location: In person\",\n            \"location\": \"Concord, ON\"\n        },\n        {\n            \"id\": \"36306495A5798D96EAE479D3AE09914E\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e2a9d8f9465f4fab\",\n            \"jobName\": \"Telus Customer Service Representative - Entry Level Field Marketing\",\n            \"companyName\": \"Alarm Guard Security Services Inc.\",\n            \"rowSalary\": \"$50,000–$60,000 a year\",\n            \"date\": 1694494168155,\n            \"dateOfPosted\": 1694494167959,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Alarm Guard has been helping protect thousands of families since 2003. We are a well-respected company with the support of the most trusted name in North America – ADT Security and now a TELUS trusted provider. Our goal is to provide customers, with a premiere service experience from start to finish. From our honest and friendly representatives to our licensed and trained technicians we commit to doing our best to make sure customers are taken care of – above and beyond.Join Alarm Guard Security, the largest TELUS trusted provider in North York, Toronto. We offer promotional Telus Smart Home protection systems and Telus Telecommunication solutions at no cost to selected clients. We are seeking highly motivated and passionate individuals to join our dynamic Sales & Marketing team.What you will do:Travel across different locations in Toronto and Ontario with a company-provided vehicle. Communicate the value of safety and security to customers. Review customer requirements and provide consultative solutions. Advise and recommend home automation and protection needs. Stay knowledgeable about products and services. Identify customer needs and execute effective strategies. Build positive relationships with colleagues.CompensationInitially compensation will be based on performance in the Field and determined by the number of sales closed by your Team Leader. After your first 8 sales within a 30 - 45 days time period, you will be eligible for BONUSES and the positions of Field Manager (no driver's license needed) or Manager (G2/G driver's license preferred): Yearly package ranging between $50k-$60k /year (base pay + commissions) once you are promoted to these rolesRequirements during training:Available Monday to Friday from 1:00 PM-9:00 PM. (Full-Time Position) An individual with a strong passion for sales. (Future Entrepreneur) A natural ability to communicate confidently. Highly skilled in utilizing company-issued iPhones, iPads, and CRM systems to effectively manage and record daily sales activities. Possesses outstanding interpersonal abilities and excels in providing exceptional customer service.Benefits:Extensive training and career growth opportunities. Travel opportunities. Tools for success: iPad, Business cards, Telus Branded clothing, ID badge, Salesforce CRM. Uncapped bonuses and incentives. Fun and lively work culture with office facilities.Join us and achieve your goals! Apply now.\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"1DA29D21E89276726A0508240B2FF9A0\",\n            \"cityName\": \"1129 Wentworth Street West, Oshawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7be2227addadedbe\",\n            \"jobName\": \"Inside Sales/Customer Service\",\n            \"companyName\": \"Aartech Canada Inc\",\n            \"rowSalary\": \"$35,000 a year\",\n            \"date\": 1694493604734,\n            \"dateOfPosted\": 1694493604546,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.869777,\n                    \"lon\": -78.8525106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oshawa\",\n                \"formattedAddress\": \"Wentworth St W, Oshawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oshawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Aartech Canada is looking for a confident, outgoing, tenacious and professional personality to join our team as an inside sales representative! This is a B2B position making warm and cold calls to existing clients, developing new leads, providing stellar customer service, providing quotations, processing customer orders and aiding in product selection.Based in Oshawa, and in business since 2002, Aartech Canada distributes smart home & security products across Canada. We sell a wide range of smart home automation equipment, security systems, security cameras, audio/video equipment as well as electrical products and lighting controls.The ideal candidate will have existing B2B sales experience and a proven track record of sales success with a technical aptitude. You must be a fast learner, self starter, technically inclined, and be motivated to learn everything you can about our customers and products lines. Bilingual (French/English) is an asset.We offer a competitive salary and benefits with a no-cap commission incentive.SALARY + COMMISSIONJob Type: Full-timeSalary: $35,000.00 per yearBenefits:Casual dressDental careLife insuranceOn-site parkingPaid time offStore discountVision careSchedule:8 hour shiftDay shiftMonday to FridaySupplemental pay types:Commission payAbility to commute/relocate:Oshawa, ON L1J 8P7: reliably commute or plan to relocate before starting work (required)Application question(s):Why are you the ideal candidate for this position?Experience:Sales: 1 year (preferred)Customer Service: 1 year (preferred)Work Location: Hybrid remote in Oshawa, ON L1J 8P7Expected start date: 2023-09-25\",\n            \"location\": \"Wentworth Street West, Oshawa, ON\"\n        },\n        {\n            \"id\": \"34A0F493E1DDAD84D3EE3EC1F8628EED\",\n            \"cityName\": \"1000 Alexander Ave, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=219b09472ef66b8a\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Bakemark\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694493578230,\n            \"dateOfPosted\": 1694493578059,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.911896,\n                    \"lon\": -97.1687074\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Alexander Ave, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"PURPOSE OF THE JOBProvides Customer Service to all customers or to a specific customer base/territory. In a hands on fashion, assists the outside sales force with sales-related issues and/or inquiries and follows BakeMark’s guiding principals of Best Practice process improvements and cultural attitude to meet or exceed objectives.This is accomplished by performing the following principle/essential accountabilities:PRINCIPAL/ESSENTIAL ACCOUNTABILITIES1. INSIDE SALES- Provide exceptional Customer Service in accordance with policies, guidelines, and procedures established by Executive Management.- Takes customer orders via phone and fax, and enter orders into company software.- Invoices orders throughout the day, as required.- Works with the Customer Service/Office Supervisor to respond to customer issues, e.g. short shipments, rush deliveries, etc.- Consistently increases personal knowledge of new and existing items, customers, pricing, routing, specials and sales techniques.- Participates in call-out programs, as required.- Upsells to all customers in an effort to increase sales.- Communicates in an efficient manner with the operations department / warehouse staff regarding truck routing, delivery schedules and order preparation.- Assists in coordinating key customer accounts on a daily basis to ensure service levels are maintained at the highest levels.2. CUSTOMER FOCUS- Maintains personal relationships with key accounts. Maintains a proactive, visible relationship with entire customer base.- Follows up on all customer requests and questions to ensure appropriate response is made and customer is satisfied.- Treats all customers (both internal and external) with dignity, respect, courtesy and kindness.- Accepts responsibility to consider how actions affect our customers and our company.3. PERFORMS OTHER DUTIES AS ASSIGNEDQUALIFICATIONSThe individual must be able to perform each principle and essential accountability satisfactorily. Customer Service experience and a proven track record in delivering results is expected, and a thorough knowledge and ability to read, interpret, and understand product information is desirable. The ability to transfer oral information to a written form accurately is an absolute requirement. A positive attitude is a must. Needs ability to be a part of an effective team.Prior experience should be in bakery ingredients or food-related business. Beverage industry experience may apply. Previous customer service roles are beneficial. Ability to interact effectively at all organization levels is required. Computer skills are required. A well-rounded lifestyle and sense of humor, with an appreciation for diversity can be advantageous. Unquestionable ethical conduct in both business leadership and personnel dealings are an absolute requirement.Ability to define and resolve problems, collect data, establish facts, and draw valid conclusions.EDUCATION and/or EXPERIENCEHigh School degree required, with five to seven years of related experience and/or training.COMMUNICATION SKILLSAbility to read and understand product information and use this knowledge to provide information to customers. Ability to effectively present information and respond to questions from groups of executives, managers, clients, customers, and the general public.PHYSICAL DEMANDS/ENVIRONMENTThe physical demands described herein are representative of those that must be met by an employee to successfully perform the essential functions of this job. Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions. While performing the duties of this job, the employee is regularly required to sit, talk, and hear. The employee is occasionally required to stand; walk; use hands to write and use a computer keyboard. Specific vision abilities required by this job include close vision, distance vision, and ability to adjust focus. The noise level in the work environment is usually moderate.Job Types: Full-time, PermanentSalary: From $18.00 per hourBenefits:Dental careExtended health careOn-site parkingPaid time offVision careSchedule:8 hour shiftDay shiftMonday to FridayEducation:Secondary School (preferred)Experience:Customer service: 2 years (preferred)Shift availability:Day Shift (required)Ability to Commute:Winnipeg, MB R3E 3M1 (required)Work Location: In person\",\n            \"location\": \"Alexander Ave, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"BD835D0F151CD0750F9FE6C0B0D96D33\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ee1f3f3404f07e1e\",\n            \"jobName\": \"Customer Service/Admin Support\",\n            \"companyName\": \"Allstyle Retrofit\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694493492686,\n            \"dateOfPosted\": 1694493492496,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service / Administrative Support:Allstyle Retrofit is a Canadian leader in the kitchen cabinet door retrofit business and is looking to add a Customer Service / Admin Support associate to our growing team.The ideal candidate will focus on supporting the team with great customer service, assisting with office administration duties, providing after sales support to our valued customers and applying strong communication skills throughout every task.Responsibilities include:Providing help and assistance to customers using Allstyle’s products or servicesCommunicating courteously with customers by telephone, email and in-personProviding assistance and support to resolve customers' challengesKeeping accurate records of discussions or correspondence with customers; entering records into the CRMImproving customer service procedures, policies and standards and working with management to discuss possible improvements to customer serviceProcessing invoices and receiving payments from customersPerforming general administrative tasks as requiredQualifications:A strong command of the English language with effective communication skills and professionalismSales and customer service orientedProven track record of meeting and exceeding customers' expectationsSense of urgency with diligent follow up skillsAbility to thrive under pressure and in a fast-paced environmentProblem solving and time management skillsExcellent computer skills in MS ExcelInterest and experience in the kitchen and cabinet industry an assetMinimum 3 years of experience is required; experience in kitchen, cabinetry and design an assetWork Hours: M-F 9-5Compensation: Hourly compensation / team bonusJob Types: Full-time, PermanentJob Type: Full-timeSalary: $20.00-$24.00 per hourSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payExperience:customer service: 3 years (preferred)Language:Fluent English (required)Work Location: In person\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"271AF5B73F13BEC6FEA76BE59D17362B\",\n            \"cityName\": \"Ajax, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6d8f56be293c41ab\",\n            \"jobName\": \"Customer Service And Fulfillment Coordinator\",\n            \"companyName\": \"Tiabhuva.com\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694493473174,\n            \"dateOfPosted\": 1694493472992,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8508553,\n                    \"lon\": -79.0203732\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ajax\",\n                \"formattedAddress\": \"Ajax, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ajax\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ResponsibilitiesAssist with customer service ticketsAccurately prepare and complete orders for delivery or pickup according to schedule (load, pack, wrap, label, ship)Organize stocks and maintain inventoryTrain additional support staff that are needed during peak periodsContribute ideas on ways to improve or optimize proceduresRequirements * Good organisational and time management skillsExcellent communication skillsTeam playerBasic computer skills ie Word, Excel, Web BrowserHigh school diploma or equivalentThis is an entry level (all training will be provided) Full time position paid hourly ($15-$20/hr depending on experience) based in Ajax, ON.Job Types: Full-time, PermanentSalary: $18.00-$20.00 per hourSchedule:8 hour shiftDay shiftMonday to FridayEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In personApplication deadline: 2023-09-22Expected start date: 2023-10-02\",\n            \"location\": \"Ajax, ON\"\n        },\n        {\n            \"id\": \"E7DB7D0786CD1721210B3BD4C67DBAE8\",\n            \"cityName\": \"3006 Boul St Charles, Kirkland, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a8c37dcf1a095e99\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Poke Monster\",\n            \"rowSalary\": \"From $14 an hour\",\n            \"date\": 1694493127205,\n            \"dateOfPosted\": 1633262844269,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4542258,\n                    \"lon\": -73.8606454\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kirkland\",\n                \"formattedAddress\": \"Bd Saint-Charles, Kirkland, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kirkland\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"HIRING FULL TIME OR PART TIMEWe are looking for Kitchen Helper/Counter Attendants, who are hard-working, dedicated, and willing to learn in the kitchen!Take customer orders, accept payment and serve customers at food counters. They may also prepare, heat, and finish cooking simple food items.- Use a cash register to take customer orders- Answer customer questions about menu items and serve customers at counters- Ensure excellent packaging- Maintain the store cleanJob Types: Full-time, Part-time, PermanentSalary: From $14.00 per hourBenefits:Discounted or free foodSchedule:10 hour shift12 hour shift8 hour shiftDay shiftMonday to FridayNight shiftWeekend availabilitySupplemental pay types:TipsWork remotely:No\",\n            \"location\": \"Boul Saint-Charles, Kirkland, QC\"\n        },\n        {\n            \"id\": \"741F3472EA79FC2221D5871A36312F83\",\n            \"cityName\": \"Riverview, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6016e8f399808b03\",\n            \"jobName\": \"Call Center Agent\",\n            \"companyName\": \"Epsilon Solutions\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694492129977,\n            \"dateOfPosted\": 1656368391861,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.06125369999999,\n                    \"lon\": -64.80521829999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Riverview\",\n                \"formattedAddress\": \"Riverview, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Albert County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Riverview\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Title: English- Customer Care RepresentativeLocation: Riverview, NBJob Type: FulltimeJob Description:No of Week Off (Fixed or Rotational) - 2 (Rotational)WFO / WFH / Hybrid – WFH & WFOShift Timings (Fixed or Rotational) - 8,5 hour shiftHours of operation 7 AM EST to 12 AM EST ( rotational)Customer Service Associate required to answer incoming calls from customers who need assistance placing orders, seeking information or who have service related inquiries.Daily tasks and responsibilities:Customer service oriented mindsetAbility to work with multiple computer programs operating simultaneously, including Microsoft Word and Excel.Able to type a minimum of 30 words per minute.Understands the needs of the luxury goods consumer and be able to implement Company’s customer service policy in a personalized manner.Utilize appropriate sales techniques to build good customer relationships and enhance the buying experience for the customer.Provide assistance when clients are ordering furniture or appliances.Set appropriate expectations for the customer and exceed customer commitments.Follow-up on issues for customers until resolution is reached.Follow the scripts provided by the CompanyRespond in an unscripted manner, thus allowing individuals to successfully resolve all customer issues, which necessitates that each such Agent demonstrate patience, empathy, sound judgment, negotiation and balanced decision making skills. Supplier shall ensure that Agents contribute a positive, energetic and organized approach to performing the Services.Requirements/experience: Previous call center experience in a contact center is an assetFluent (reading, writing, speaking) in English and French as required by the positionAbilities and talents recommended for job success:Excellent organizational skillsExcellent communication skills, including written and verbal.Demonstrated analytical skills; proven problem solving abilities.Strong interpersonal skills with a focus on teamwork and ability to foster/manage relationshipsJob Types: Full-time, PermanentPay: $15.50 per hourBenefits:Dental careExtended health careVision careSchedule:8 hour shiftAbility to commute/relocate:Riverview, NB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call Center: 1 year (required)\",\n            \"location\": \"Riverview, NB\"\n        },\n        {\n            \"id\": \"2E5727171C025277DD75D8C4A404102F\",\n            \"cityName\": \"1888 West Broadway, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=308b4f99e99584d0\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Le Coq Frit\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694490982491,\n            \"dateOfPosted\": 1666664114990,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.26376459999999,\n                    \"lon\": -123.14866\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Broadway, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"-serving-bussing-phone orders for take-out-POS system, 3rd party delivery tablet, payment processing-take-out prep for packaging orders-cleaning duties-various other related dutiesMust be able to work during weekday(Monday - Friday between 11-9pm)Job Types: Permanent, Part-timeSalary: From $16.00 per hourSchedule:HolidaysMonday to FridayMorning shiftSupplemental pay types:TipsCOVID-19 considerations:Required to wear a mask. Sanitize surfaces after use.\",\n            \"location\": \"Broadway WR\"\n        },\n        {\n            \"id\": \"58AABE8C5686594A2C8EDFA8DA90B059\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fdd2efb69d71bb80\",\n            \"jobName\": \"Customer Service Representative - Entry Level Field Marketing\",\n            \"companyName\": \"Alarm Guard Security Services Inc.\",\n            \"rowSalary\": \"$50,000–$60,000 a year\",\n            \"date\": 1694490100770,\n            \"dateOfPosted\": 1694490100595,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Alarm Guard has been helping protect thousands of families since 2003. We are a well-respected company with the support of the most trusted name in North America – ADT Security and now a TELUS trusted provider. Our goal is to provide customers, with a premiere service experience from start to finish. From our honest and friendly representatives to our licensed and trained technicians we commit to doing our best to make sure customers are taken care of – above and beyond.Join Alarm Guard Security, the largest TELUS trusted provider in North York, Toronto. We offer promotional Telus Smart Home protection systems and Telus Telecommunication solutions at no cost to selected clients. We are seeking highly motivated and passionate individuals to join our dynamic Sales & Marketing team.What you will do:Travel across different locations in Toronto and Ontario with a company-provided vehicle. Communicate the value of safety and security to customers. Review customer requirements and provide consultative solutions. Advise and recommend home automation and protection needs. Stay knowledgeable about products and services. Identify customer needs and execute effective strategies. Build positive relationships with colleagues.CompensationInitially compensation will be based on performance in the Field and determined by the number of sales closed by your Team Leader. After your first 8 sales within a 30 - 45 days time period, you will be eligible for BONUSES and the positions of Field Manager (no driver's license needed) or Manager (G2/G driver's license preferred): Yearly package ranging between $50k-$60k /year (base pay + commissions) once you are promoted to these rolesRequirements during training:Available Monday to Friday from 1:00 PM-9:00 PM. (Full-Time Position) An individual with a strong passion for sales. (Future Entrepreneur) A natural ability to communicate confidently. Highly skilled in utilizing company-issued iPhones, iPads, and CRM systems to effectively manage and record daily sales activities. Possesses outstanding interpersonal abilities and excels in providing exceptional customer service.Benefits:Extensive training and career growth opportunities. Travel opportunities. Tools for success: iPad, Business cards, Telus Branded clothing, ID badge, Salesforce CRM. Uncapped bonuses and incentives. Fun and lively work culture with office facilities.Join us and achieve your goals! Apply now.(https://alarm-guard-security-services-inc.breezy.hr/p/b7a9cb80bb19-customer-service-representative-entry-level-in-field?state=published)\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"BBA3A9FB608190E9B4328F36F06183F3\",\n            \"cityName\": \"26 Colston Court, Richmond Hill, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=076ca75ed380f754\",\n            \"jobName\": \"Customer Service Advisor Richmond Hill\",\n            \"companyName\": \"Car House Auto Centre\",\n            \"rowSalary\": \"$18–$26 an hour\",\n            \"date\": 1694489924187,\n            \"dateOfPosted\": 1694489924011,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8523077,\n                    \"lon\": -79.4265607\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond Hill\",\n                \"formattedAddress\": \"Colston Ct, Richmond Hill, ON L4C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond Hill\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for energized, motivated and driven individuals to contribute.Responsibilities: Tire Sales, Mechanical Sales Collaborating with management and team to achieve sales in products/services as well as follow new instructions from team leader Maintaining a good store environment according to company’s standard Processing payments and handling all other cashier duties Providing excellent customer serviceQualifications: Must be fluent in English Flexible work hours and times in Canada Quick learnerSkills & Experience Required: Sale Leadership Skills Merchandising skills Exceptional customer service skills Responsible, organized Excellent communications and interpersonal skillsJob Types: Full-time, PermanentSalary: $18 to $26 (Depend on Experience)Experience: sales: 2-3 years (Preferred)Education: Minimum of High School Graduate and university degree (preferred)Please apply by email to helenJob Types: Full-time, PermanentSalary: $18.00-$26.00 per hourBenefits:Dental careExtended health careFlexible Language Requirement:French not requiredSchedule:8 hour shiftWork Location: In personExpected start date: 2023-09-30\",\n            \"location\": \"Colston Court, Richmond Hill, ON\"\n        },\n        {\n            \"id\": \"095423A6ADD7AF8107E59FA81C576562\",\n            \"cityName\": \"Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2cb9abc7444d62e7\",\n            \"jobName\": \"Customer Service And Office Administrator\",\n            \"companyName\": \"Craftsman Collision\",\n            \"rowSalary\": \"$42,000–$55,000 a year\",\n            \"date\": 1694488753796,\n            \"dateOfPosted\": 1694488753510,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1665898,\n                    \"lon\": -123.133569\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Richmond, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We're currently seeking a full-time, temporary Customer Service and Office Administrator at our Richmond location. We offer competitive wages ranging from $42,000 to $55,000 annually, and extended health and dental. The Customer Service and Office Administrator will provide exceptional customer service and support the Shop with operations initiatives and administrative duties. Craftsman Collision is the largest independently owned and operated auto body repair chain in Canada – but we’re also a family that cares about the people we work with. Are you ready to reach your full potential and build a fulfilling career- while having fun along the way? Then consider joining our team of more than 500 ambitious people who share our commitment to excellence. Customer ServiceInteracts with customers in a caring, friendly and professional manner and assists in clearly identifying the customers’ needs to relay to the rest of the team. Gathers all required information to pass along to estimator;Takes ownership of a customers’ concerns and issues until they are satisfied or until they are able to pass them on to the appropriate person;Answers phones, handles telephone enquiries, books appointments, makes appointment reminder calls and notifies customers of repair completion as directed;Greets customers as they walk in the door and helps ensure their wait time is agreeable;Signs customers in and out and collects all necessary payments;Helps customers to understand our processes and procedures by explaining in a clear, simple and respectful manner;Deals with all customer interactions promptly including monitoring of Production Dashboard in the Craftsman Management System (CMS) for alerts/correspondence as well as voicemail and email;Office AdministrationDownloads and prints assignments from insurance companies using Audatex and Mitchell and prepares new files for estimators;Manages the shop’s email inbox and forwards, distributes or files emails accordingly;Prepares monthly promotional and printing inventories and organizes replenishing as necessary;Orders all office supplies and printer toner cartridges;Input documents and new hourly employees into Dayforce.Arranges courier services when necessary;Supports in-shop training of new staff;Daily Bookkeeping DutiesUpdates CMS for arrived and delivered vehicles as changes occur;Closes POS machine, prints and posts the Deposit Journal. Prepares a bank deposit slip daily for any cash/cheques;Finalizes all work orders from previous day and bill insurance companies accordingly;Invoices parts/sublet/rental invoices relating to work orders via Purchase Orders and reviews any discrepancies;Posts any A/R cheques into Traverse A/R and reconciles any over/short payments;Enters invoices for non-trade payables (overhead) into Traverse A/P;Banking as required (at least weekly);Posts PO Journals and Non-Trade Transaction Journals as required;Monthly Bookkeeping DutiesPrepares all payable cheque runs (mid & month end). Prepares monthly log for Head Office for any aging A/P amounts;Reconciles Flat-Rate and Straight-Time hours with employees (with the help of Shop Manager) and posts the Flat-Rate Journal in CMS on a semi-monthly basis. Prepares manual cheques and ROE’s for any terminated hourly employees or for those on leave;A/R Collections on unpaid balances including sending statements to customers and preparation of monthly log for Head Office;Follows month-end procedures on the first day of every month and reviews monthly reports with Shop Manager;Reviews monthly ARA and MSP benefits statements for accuracy;Reconciles GL accounts 4920 (Other Income/Over-Shorts), 1130 (Employee A/R) and 1999 (Suspense);Performs year-end requirements as directed by Head Office.Other related duties as assigned.RequirementsMinimum of 3 years related experience in a fast-paced, team-oriented environmentPost-secondary courses in a related field an assetStrong interpersonal skills with customer service-oriented attitudeExperience with accounts receivable, accounts payable, and payroll preferredDemonstrated ability to multi-task and prioritize, effectively managing time with minimal supervisionDetail oriented and able to complete tasks with a high degree of accuracyStrong verbal, written and listening skillsProficient in Outlook, Word and Excel with the ability and willingness to learn new applicationsDemonstrated desire and aptitude for learning and developmentPrevious experience with payroll or HRIS systems preferred; Dayforce experience an assetA valid driver's license preferredMust be legally entitled to work in Canada with no restrictions Benefits When you’re part of the Craftsman Collision team, you get valuable perks like extended health, professional development, certified training and more. Your cover letter and resume should clearly outline how your qualifications & experience fit this position. We appreciate the time that all applicants have taken when applying for this position, however, only the candidates that are chosen for an interview will be notified by phone or email. No phone calls please.\",\n            \"location\": \"Richmond, BC\"\n        },\n        {\n            \"id\": \"A56D2EF53B3FAD148634712F198B9A1E\",\n            \"cityName\": \"Wipro in Moncton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b762c17b2a4552f9\",\n            \"jobName\": \"Customer Service (English, English And French, English And Spanish)\",\n            \"companyName\": \"Wipro\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694488605969,\n            \"dateOfPosted\": 1653412856917,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.0878165,\n                    \"lon\": -64.7782313\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"3 Roles available1. Loyalty Customer Support Analysts - Phone Support, 2 Shifts between 10am-8pm, Monday-Friday. Salary based on experience, up to 22$/hr2. Technical support roles for retail locations (Also phone support), on rotating 24/7 shift schedule, where alternating weekends are guaranteed. Salary based on experience, up to 22$/hr3. Customer Complaints - 10-8 Monday to Friday - Phone Support, 2 Shifts between 10am-8pm, Monday-Friday. Salary based on experience, up to 22$/hr. (Must be bilingual English and french)Full Benefits, competitive salary with opportunities to develop professionally.3 weeks vacation, paid sick leave. Flexible work/life balance.If you have any more questions, please apply and we'll be happy to answer them.Job Types: Full-time, PermanentSalary: $19.00-$22.00 per hourBenefits:Dental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offRRSP matchVision careSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayNight shiftWeekends as neededCOVID-19 considerations:Site operator has excellent cleaning practices in place. Ability to commute/relocate:Moncton, NB E1C 0J4: reliably commute or plan to relocate before starting work (preferred)Work Location: In person\",\n            \"location\": \"Moncton, NB\"\n        },\n        {\n            \"id\": \"B5886B4EAFF1B56F55FF849568EEF6D8\",\n            \"cityName\": \"Bella Coola, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4b1aeee4655057a6\",\n            \"jobName\": \"Clk 12r - Customer Service Representative\",\n            \"companyName\": \"Bc Public Service\",\n            \"rowSalary\": \"$52,803–$59,608 a year\",\n            \"date\": 1694487527323,\n            \"dateOfPosted\": 1694487527141,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.3721277,\n                    \"lon\": -126.7539346\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bella Coola\",\n                \"formattedAddress\": \"Bella Coola, BC V0T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Coast\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bella Coola\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 52803.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    52803.0\n                ],\n                \"range\": {\n                    \"gte\": 52803.0,\n                    \"gt\": null,\n                    \"lte\": 52803.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Posting Title  CLK 12R - Customer Service Representative  Position Classification  Clerk R12  Union  GEU  Work Options  On-Site  Location  Bella Coola, BC V0T 1C0 CA (Primary)  Salary Range  $52,803.18 - $59,607.79 annually  Close Date  9/25/2023  Job Type  Regular Full Time  Temporary End Date  Ministry/Organization  BC Public Service -> Citizens' Services  Ministry Branch / Division  Service Delivery/Service BC  Job Summary Apply your expertise and passion for innovation to this rewarding career opportunityMINISTRY OVERVIEWDedicated to making life better for British Columbians, the Ministry of Citizens’ Services (CITZ) delivers key services that people rely on. CITZ delivers accessible, multi-channel services, through a single-point-of-contact service approach to people in urban and rural communities through Service BC, and delivers the digital face of government at www.gov.bc.ca. CITZ also provides support for the expansion of high-speed internet connectivity throughout the province, leadership across government to modernize information management and technology resources, trusted data services to government agencies, prompt, and relevant responses to freedom of information requests, and statistical and economic research, information and analysis to businesses and the public sector. In addition, the ministry manages the Province’s real estate assets, technology systems and equipment, and leverages procurement to increase business opportunities and create rewarding jobs that contribute to local economies and benefit individuals, families, and communities.A service-focused organization, CITZ strives to be a great place to work, where all employees feel both engaged and motivated to do their best.DIVISIONAL OVERVIEWService BC is government’s chief provider of services to B.C. residents and businesses. The work of the division enables the design and delivery of accessible, responsive, and cost-effective services, making it easier for British Columbians and businesses to interact with government. Through a provincial network of 65 in-person offices and the Provincial Contact Center, Service BC provides approximately 300 government services for more than 40 partner ministries and agencies. Our team member’s unwavering commitment to an ethic of service has driven consistently high people and business satisfaction rates. In support of the division’s overarching goal of providing residents and businesses with seamless, multi-service access to government programs, the Division’s service offerings are marketed to partner ministries and the broader public sector to expand our continuum of services and leverage common platforms.Within Service BC, our vision is to deliver innovation, value, and service excellence to the people of British Columbia, with the aspirational goal of becoming a best-in-class public service delivery organization. Our people and our culture are important to us. As a team, we are motivated to deliver an excellent service experience to British Columbians, businesses, colleagues, peers, clients, and partners. We believe in being kind and helpful, and are committed to delivering “Service with Heart”.JOB OVERVIEWThe Service BC Customer Service Representative (CSR) maintains a positive, empathetic, and professional attitude when providing service and answering enquires. It requires the ability to identify and assess peoples’ needs to effectively and efficiently deliver an excellent customer service experience.The CSR provides services in-person, by phone, and through digital channels. The ability to provide clerical and administrative support such as data entry, reviewing applications for completeness, handling payments, and providing appropriate solutions, within government guidelines to a diverse population of people is essential to this role.Job Requirements:Minimum Grade 12 graduation or equivalent (GED).Experience providing inclusive customer service to diverse clienteles. Experience using digital applications to search for and record information. Preference may be given to applicants with one (1) or more of the following:Multiple years of experience in any of the above requirements.Experience providing in-person customer service.Experience providing customer service though phone or digital channels.Experience delivering customer service in a high volume, fast-paced, rapidly changing environment.Experience with conflict resolution and de-escalating situations.Experience providing services to a diverse population some of whom may be experiencing poverty issues, substance use, or mental health concerns.Experience maintaining administrative files and record keeping.Experience delivering service in a regulated or legislated environment following processes and procedures.Customer Service training and/or education.Experience handling financial transactions. Willingness Statements:Willingness to travel occasionally to provide relief coverage to other work sites (Service BC Centres, exam locations, etc.)Successful completion of security screening requirements of the BC Public Service, which may include a criminal records check, and/or Criminal Records Review Act (CRRA) check, and/or enhanced security screening checks as required by the ministry (Note: It is important that you read the job posting carefully to understand the specific security screening requirements pertaining to the position). For questions regarding this position, please contact melody.olsen@gov.bc.ca.About this Position: An eligibility list may be established to fill future temporary and permanent vacancies across the Ministry of Citizens' Services. This position has full time on-site requirements. Employees of the BC Public Service must be located in BC at the time of employment. Close to Tweedsmuir Park, Bella Coola sits in the Bella Coola valley and is a gateway to the Great Bear Rainforest, serving as a centre for the more remote communities in the area. Perfect for fishing, hiking and wildlife watching, Bella Coola is very close with its First Nations heritage, and communities such as the Nuxalkmc people live within the town.Working for the BC Public Service: The BC Public Service is committed to creating a diverse workplace to represent the population we serve and to better meet the needs of our citizens. Consider joining our team and being part of an innovative, inclusive and rewarding workplace. The Indigenous Applicant Advisory Service is available to applicants that self-identify as Indigenous (First Nations, status or non-status, Métis, or Inuit) seeking work or already employed in the BC Public Service. For guidance on applying and interviewing, please contact IndigenousApplicants@gov.bc.ca or 778-405-3452. The BC Public Service is an award-winning employer and offers employees competitive benefits, amazing learning opportunities and a chance to engage in rewarding work with exciting career development opportunities. For more information, please see What We Offer.How to Apply: Your application must clearly demonstrate how you meet the job requirements listed above.Cover Letter: NO - Please do not submit a cover letter as it will not be reviewed.Resume: YES - A resume is required as part of your application, however, it may not be used for initial shortlisting purposes.Questionnaire: YES - You will need to complete a comprehensive questionnaire to demonstrate how you meet the job requirements. Include all relevant information about your educational accomplishments and employment history including job titles, start and end dates (month and year) of your employment, and how you obtained your relevant experience. The questionnaire will take approximately 60 minutes to complete.Helpful tips, videos and more regarding the application process can be found on the Your Job Application page of MyHR. If you are experiencing technical difficulty applying, e-mail BCPSA.Hiring.Centre@gov.bc.ca, before the stated closing time, and we will respond as soon as possible.Additional Information: A Criminal Record Check (CRC) will be required. Applicants selected to move forward in the hiring process may be assessed on the Knowledge, Skills, Abilities and Competencies as outlined in the attached Job Profile located at the bottom of the posting. Applications will be accepted until 11:00 pm Pacific Standard Time on the closing date of the competition. Job Category  Administrative Services \",\n            \"location\": \"Bella Coola, BC\"\n        },\n        {\n            \"id\": \"8EB4F8FCA16ABB21F80ABEB21D976AC0\",\n            \"cityName\": \"Les entreprises Zouki's in Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2c47565b1eacb9e3\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Les Entreprises Zouki's\",\n            \"rowSalary\": \"From $14 an hour\",\n            \"date\": 1694487294462,\n            \"dateOfPosted\": 1632951651245,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6066487,\n                    \"lon\": -73.712409\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laval\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Provides a positive customer experience with fair, friendly, and courteous service. Registers sales on a cash register by scanning items, itemizing and totaling customers' purchases.Job Types: Full-time, Part-timeSalary: From $14.00 per hourSchedule:8 hour shiftDay shiftMonday to FridayWeekend availabilitySupplemental pay types:TipsWork remotely:No\",\n            \"location\": \"Laval, QC\"\n        },\n        {\n            \"id\": \"A3488F3408CDDF64C535BA8B5583D6AB\",\n            \"cityName\": \"3340 Mannheim Way, Windsor, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2c8bcc853414dd1d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Curry Reprographics Ltd.\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694487240482,\n            \"dateOfPosted\": 1694487240297,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.2819176,\n                    \"lon\": -82.9700313\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Windsor\",\n                \"formattedAddress\": \"Mannheim Way, Windsor, ON N8W, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Essex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Windsor\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative - Immediate Opening!Curry Reprographics is a specialty printing company offering high quality products with superior customer service. We are looking for a customer service representative to take orders by phone, email, or in-person, print documents to large printers and have hands-on throughout the process. Must be able to use a computer, Microsoft Office (including Excel) and have strong math skills. Graphic design software experience is an asset (e.g., Adobe Creative Suite).Full time, permanent position5 days a week - Monday to FridayValid Ontario G driver's license with a clean driver's abstractAbility to use personal vehicle for work is an assetMust be able to lift 50 lbs.Must be fluent (speak and write) in EnglishMust be a Canadian citizen with the ability to work in CanadaJob Type: Full-timeSalary: $19.00 per hourBenefits:Dental careLife insuranceOn-site parkingFlexible Language Requirement:French not requiredSchedule:Monday to FridayEducation:Secondary School (required)Language:English (required)Licence/Certification:Driving Licence (required)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Mannheim Way Unit A, Windsor, ON\"\n        },\n        {\n            \"id\": \"BDDC0001E94D64CE3D0622D64C48A09A\",\n            \"cityName\": \"1024 Victoria St, Petawawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=96b4fca33d4d8483\",\n            \"jobName\": \"Customer Service Representative - Personal Lines\",\n            \"companyName\": \"Mcdougall Insurance And Financial\",\n            \"rowSalary\": \"$40,000–$48,000 a year\",\n            \"date\": 1694486895341,\n            \"dateOfPosted\": 1694486895180,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.9017038,\n                    \"lon\": -77.2687347\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Petawawa\",\n                \"formattedAddress\": \"Victoria St, Petawawa, ON K8H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Renfrew County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Petawawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"McDougall Insurance is now the largest insurance brokerage in Eastern Ontario. We represent over 50 insurance companies, giving us the ability to offer optimal selection and competitive rates. Here at McDougall we have created an Employee Promise. The leadership of McDougall Insurance promises to foster an environment of support, empowerment and inclusion, while investing in our employee’s future with McDougall Insurance. In turn, our employees promise to treat others with dignity and respect and strive to approach each day with a positive attitude and willingness to learn. Together, we promise to deliver Legendary Service to our customers and apply the McDougall principals of Trust, Honesty and Integrity with a goal of building strong lasting relationships. The result is our staff is engaged, accountable and professional.At McDougall Insurance and Financial we offer our employees; a comprehensive benefits package, McDougall pension plan, staff appreciation days, social events, a branch-wide yearend bonus, a competitive salary and paid vacation time starting at 3 weeks.Our growing team is looking for a Customer Service Representative in Personal Lines to join our team in Petawawa, Ontario!Are you looking to start a new career? Do you have strong customer service skills? If so, this might be the perfect opportunity for you. We provide you with all the tools, knowledge and training you need to be successful in this role.Responsibilities:· To provide legendary service directly to the client, after the sale by the Sales Executive.· Communicate with the client in person, by phone, email, text, etc. to answer all of their questions/inquiries, provide professional advice or recommendations regarding their coverage, and collect relevant information.· Process additions, deletions or changes to their policy on the appropriate broker management system (EPIC)· Ensure all transactions and renewals are accounted for and processed accurately and on a timely basis.· Provide quotations or estimates to clients on premiums, update information, and confirm data and coverage and to record appropriate changes or adjustments.· Communicate with insurance company personnel as required.· As an independent broker working for your client, acts as liaison with the insurer and balances the interests of the client, McDougall Insurance and the insurance company in force.· Function as part of a team responsible for assisting in the collection of accounts receivable and in any other area as required.· Where appropriate, procure a sale, normally through upgrading and bundling coverage for personal lines clientsQualifications:· Must have exceptional customer service and communication skills.· Acts in a professional manner at all times and maintains a position of trust and confidentiality.· Acts in an open, respectful, honest and helpful manner with all team members, clients and other staff.· Ability to work effectively in a fast-paced environment· Must be willing and eligible to obtain a RIBO licenseRIBO stands for the Registered Insurance Brokers of Ontario. RIBO regulates the licensing, professional competence, ethical conduct and insurance related financial obligations of all independent general insurance brokers in the province of Ontario. To learn more please visit https://www.ribo.com/What We Offer:Dedication to investing in our employees’ future by offering RIBO, CAIB, and other designation education reimbursementA supportive and inclusive culture where diversity is valuedA competitive employee health and dental benefits program including long term disabilityA competitive pension planPaid vacation timeAccess to ongoing training and development through our McDougall training teamMcDougall Insurance and Financial is proud to be an equal opportunity employer. We aim to find individuals who are passionate about their work and treat others with dignity and respect.If you need assistance or an accommodation, you may reach out to our Human Resources Department through our website:https://www.mcdougallinsurance.com/contact/Job Types: Full-time, PermanentSalary: $40,000.00-$48,000.00 per yearBenefits:Company eventsCompany pensionDental careDisability insuranceEmployee assistance programExtended health careLife insurancePaid time offVision careSchedule:Day shiftMonday to FridaySupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Victoria Street, Petawawa, ON\"\n        },\n        {\n            \"id\": \"27391B117018B475ECC314E7E6284BFB\",\n            \"cityName\": \"CouchHaus in Langley, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=529f9d190ff748da\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Couchhaus\",\n            \"rowSalary\": \"$17–$22 an hour\",\n            \"date\": 1694486618367,\n            \"dateOfPosted\": 1694486618175,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1041779,\n                    \"lon\": -122.6603519\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Langley City\",\n                \"formattedAddress\": \"Langley City, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Langley City\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Company DescriptionCouchHaus is a direct-to-consumer custom modular sofa brand based in Vancouver, Canada. The couches are made-to-order exclusively with our own manufacturer. We sell our products directly to consumers through our online platform and our boutique showroom in Langley, BC in order to offer competitive prices to our customers.Our business model is designed to offer customers high-quality, customizable furniture at an affordable price point, while also minimizing waste and supporting sustainability.Founded by the duo that made the 2023 BC Business 30 Under 3 List , Harrison and Paige, the company started with their passion for design when it came to building furniture for our own home.On the quest for new furniture for their home, they rethought every component of their dream couch including the size, depth, fabric grade, storage and other features! They offer removable and washable covers, re-stuffable cushions and modular furniture to re-arrange and grow onto!CouchHaus was created to make custom modular furniture shopping easier and more affordable, while supporting sustainability. The best part, we plant 100 trees for every couch we build!Job DescriptionTHE DEPARTMENTThe mission of the Concierge Department is to delight clients by going above and beyond to resolve their inquiries within reason and deliver exceptional sales expertise.Everyone in our Concierge Team has a common goal: to successfully manage customer relations by being a liaison between the company and the customer.THE OPPORTUNITYOur Concierge Department is an integral for the operation of the company. You’ll provide daily support to keep our boutique store running smoothly.As a member of the Concierge Division, you will be part of the team responsible for providing exceptional experiences for clients who contact Concierge by resolving their inquiries and delivering selling and solving expertise. As the Concierge Advisor, you will deliver world-class sales, solution and service excellence to exceed client expectations and maximize value in every interaction. And, with the skills you gain in this role, the opportunities are endless – from a rewarding career in Concierge to continued growth and development with CouchHaus.CouchHaus is an online store with the a boutique showroom. This opportunity is remote and also has the opportunity to grow in the company.THE JOBWe are seeking a team player that conveys the brand philosophy and values. The ConciergeAdvisor is a solution and detail-oriented person. The right individual will interact with customers on a daily basis, being knowledgeable and conversational and educational.The Concierge Advisor job is about problem solving. You will:● Develop and manage strong customer relationships through outstanding and consistent customer experiences● Solve problems to ensure our customers are happy● Become an expert in CouchHaus’ products and servicesThe Advisor reports to the Team Leader and participates in all the essential duties which contribute to the efficient and profitable operation of the store while maintaining the brand and visual presentation standards.QUALIFICATIONSYou don’t need experience to be a Concierge Advisor — we can teach you what you need to know. We care more about your hustle, passion for problem solving and ability to think on your feet. You have:● A commitment to learn and apply CouchHaus Values, Business and PeopleLeadership principles● The skills that are an asset to perform in the role and the appetite to continuously learn and develop oneself● A commitment to quality and investing in results that add value to the business● A sense of urgency and ability to prioritize important work● An understanding of CouchHaus brand vision● Feel strongly about long-term customer relationships and building brand loyaltyTHE PERKS● Set Your Schedule - Provide your availability and indicate your preferred working hours (some restrictions apply)● Aspirational Workspace - Every detail is considered to connect to the energy of the culture● Product Discount - Our famous product discount, online and in storeHead to our Our Story (https://www.couchhaus.com/pages/story) for the scoop on who we are and what we do.Job Types: Part-time, FreelancePart-time hours: 10-20 per weekSalary: $17.00-$22.00 per hourBenefits:Casual dressFlexible scheduleStore discountWork from homeSchedule:Day shiftMonday to FridayWork Location: Hybrid remote in Langley, BC V2Y 4J1Application deadline: 2023-09-30Expected start date: 2023-10-01\",\n            \"location\": \"Langley, BC\"\n        },\n        {\n            \"id\": \"6B4D68A06A3F998F0CAA9BA662DDA53C\",\n            \"cityName\": \"34 Magnum Dr, Schomberg, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e1a668e71198b38d\",\n            \"jobName\": \"Customer Service/Account Representative\",\n            \"companyName\": \"Alpine Graphic Productions Limited\",\n            \"rowSalary\": \"$45,000–$65,000 a year\",\n            \"date\": 1694486557387,\n            \"dateOfPosted\": 1694486557216,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.0106936,\n                    \"lon\": -79.6739194\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Schomberg\",\n                \"formattedAddress\": \"Magnum Dr, Schomberg, ON L0G 1T0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Schomberg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Alpine Graphics has an immediate Full-Time opening for a Customer Service Representative.Alpine Graphic Productions Limited is an established, award-winning screen and digital print manufacturer supplying North American clients with fleet graphics, architectural graphics, anti-graffiti products, safety signage and decals.We offer a competitive salary and benefits, negotiable based on experience.To be successful you will be required to:- Build Strong Client Relationships- Have Excellent Organization Skills- Work Well in a Team Environment- Have Excellent Communication Skills, both Verbal and Written- Project Manage Installation ProjectsYou will benefit from Alpine Graphics' supportive, consultative small business environment and capable production team.We are looking for the following experience and/or skills:Ability to develop and maintain client relationshipsEnergy and enthusiasmSelf-motivationExcellent communication and presentation skillsResponsivenessAttention to detail Strong proposal writing skillsAbility to prioritize and manage projects to a successful conclusionMinimum Undergraduate degreeJob Types: Full-time, PermanentSalary: $45,000.00-$65,000.00 per yearBenefits:Dental careExtended health careLife insuranceVision careSchedule:Monday to FridayAbility to commute/relocate:Schomberg, ON L0G 1T0: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (required)Experience:Customer service: 1 year (preferred)Work Location: In personApplication deadline: 2023-09-24\",\n            \"location\": \"Magnum Dr, Schomberg, ON\"\n        },\n        {\n            \"id\": \"CC8ACC96F602B76FEFF71D914C0DE916\",\n            \"cityName\": \"Kingston, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5601d7bb49b0fe31\",\n            \"jobName\": \"Personal Lines Customer Service Representative\",\n            \"companyName\": \"Mcdougall Insurance And Financial\",\n            \"rowSalary\": \"$40,000–$45,000 a year\",\n            \"date\": 1694486557214,\n            \"dateOfPosted\": 1694486557014,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2311717,\n                    \"lon\": -76.4859544\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kingston\",\n                \"formattedAddress\": \"Kingston, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Frontenac County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kingston\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"_McDougall Insurance is now the largest insurance brokerage in Eastern Ontario. We represent over 50 insurance companies, giving us the ability to offer optimal selection and competitive rates. Here at McDougall we have created an Employee Promise. The leadership of McDougall Insurance promises to foster an environment of support, empowerment and inclusion, while investing in our employee's future with McDougall Insurance. In turn, our employees promise to treat others with dignity and respect and strive to approach each day with a positive attitude and willingness to learn. Together, we promise to deliver Legendary Service to our customers and apply the McDougall principals of Trust, Honesty and Integrity with a goal of building strong lasting relationships. The result is our staff is engaged, accountable and professional._ _At McDougall Insurance and Financial we offer our employees; a comprehensive benefits package, McDougall pension plan, staff appreciation days, social events, a branch-wide yearend bonus, a competitive salary and paid vacation time starting at 3 weeks._ Our growing team is looking for a Customer Service Representative in Personal Lines to join our team in Kingston, Ontario! Are you looking to start a new career? Do you have strong customer service skills? If so, this might be the perfect opportunity for you. We provide you with all the tools, knowledge and training you need to be successful in this role. Responsibilities: To provide legendary service directly to the client, after the sale by the Sales Executive. Communicate with the client in person, by phone, email, text, etc. to answer all of their questions/inquiries, provide professional advice or recommendations regarding their coverage, and collect relevant information. Process additions, deletions or changes to their policy on the appropriate broker management system (EPIC) Ensure all transactions and renewals are accounted for and processed accurately and on a timely basis. Provide quotations or estimates to clients on premiums, update information, and confirm data and coverage and to record appropriate changes or adjustments. Communicate with insurance company personnel as required. As an independent broker working for your client, acts as liaison with the insurer and balances the interests of the client, McDougall Insurance and the insurance company in force. Function as part of a team responsible for assisting in the collection of accounts receivable and in any other area as required. Where appropriate, procure a sale, normally through upgrading and bundling coverage for personal lines clients Qualifications: Must have exceptional customer service and communication skills. Acts in a professional manner at all times and maintains a position of trust and confidentiality. Acts in an open, respectful, honest and helpful manner with all team members, clients and other staff. Ability to work effectively in a fast-paced environment Must be willing and eligible to obtain a RIBO license RIBO stands for the Registered Insurance Brokers of Ontario. RIBO regulates the licensing, professional competence, ethical conduct and insurance related financial obligations of all independent general insurance brokers in the province of Ontario. To learn more please visit What We Offer: Dedication to investing in our employees' future by offering RIBO, CAIB, and other designation education reimbursement A supportive and inclusive culture where diversity is valued A competitive employee health and dental benefits program including long term disability A competitive pension plan Paid vacation time Access to ongoing training and development through our McDougall training team On-site parking McDougall Insurance and Financial is proud to be an equal opportunity employer. We aim to find individuals who are passionate about their work and treat others with dignity and respect. If you need assistance or an accommodation, you may reach out to our Human Resources Department through our website: Job Types: Full-time, Permanent Salary: $40,000.00-$45,000.00 per year Benefits: Company events Company pension Dental care Disability insurance Employee assistance program Extended health care Life insurance On-site parking Paid time off Vision care Schedule: Day shift Monday to Friday Supplemental pay types: Bonus pay Work Location: In person\",\n            \"location\": \"Kingston, ON\"\n        },\n        {\n            \"id\": \"11AB1161CF1099E3F84495B2AEAA837E\",\n            \"cityName\": \"Maple, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8fa9e8dd426238bf\",\n            \"jobName\": \"Customer Service Representative Supervisor\",\n            \"companyName\": \"Planta Greenhouses\",\n            \"rowSalary\": \"$60,000 a year\",\n            \"date\": 1694486514495,\n            \"dateOfPosted\": 1694486514308,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8517618,\n                    \"lon\": -79.52728359999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Maple, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 60000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    60000.0\n                ],\n                \"range\": {\n                    \"gte\": 60000.0,\n                    \"gt\": null,\n                    \"lte\": 60000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 2 years to less than 3 yearsTasks Conduct performance reviews Perform same duties as workers supervised Co-ordinate, assign and review work Establish work schedules and procedures and co-ordinate activities with other work units or departments Identify training needs and train workers in job duties and company policies Resolve work-related problems and prepare and submit progress and other reportsWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Maple, ON\"\n        },\n        {\n            \"id\": \"DC492AD30D7AFCDFEB3339B01048F71A\",\n            \"cityName\": \"9260 Boul Du Golf, Anjou, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=460fb11605e09382\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Multi-Glass Insulation Ltd\",\n            \"rowSalary\": \"$20–$23 an hour\",\n            \"date\": 1694486454757,\n            \"dateOfPosted\": 1694486454560,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6248894,\n                    \"lon\": -73.56511259999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Bd du Golf, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Aperçu de l'entrepriseFondée en 1975, Multi-Glass Insulation Ltd. est un chef de file dans la distribution et la fabrication de systèmes d'isolation. Notre objectif est d'optimiser la conservation de l'énergie dans les grands projets de construction commerciale, industrielle et résidentielle dans l'Est et le Canada atlantique.Description du poste : Responsable de la gestion des transactions quotidiennes entre les clients d'MGI et la chaîne d'approvisionnement.Répondre aux demandes des clients par téléphone, fax ou courriel dans des délais acceptables en maintenant un excellent service.Procéder au traitement de commandes incluant toutes les étapes du bon de commande à la facturation finale.Interagir avec les équipes de production et d'expédition pour coordonner le planning de production.Vérifier la disponibilité des produits par leur code ou description.Renseigner les clients sur les délais de livraison prévus, le suivi du bon de commande et répondre à des questions générales sur leur facturation.Résoudre les problèmes survenus sur un produit ou un service en travaillant en grande proximité avec les équipes de ventes pour déterminer les causes et proposer la meilleure solution tout en effectuant un suivi des résolutions d'amélioration.Respecter les directives et procédures établies par la CompagnieEffectuer d'autres tâches au besoin par la direction.Job Type: Full-timeSalary: $20.00-$23.00 per hourBenefits:Dental careVision careSchedule:Monday to FridaySupplemental pay types:Overtime payAbility to commute/relocate:Anjou, QC H1J 3A1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In personExpected start date: 2023-09-12\",\n            \"location\": \"Boul Du Golf, Montréal, QC\"\n        },\n        {\n            \"id\": \"47CD176D1D3492A5736C91E99A808E46\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fd4e88ae982ad9e3\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Easypark\",\n            \"rowSalary\": \"From $21 an hour\",\n            \"date\": 1694486140215,\n            \"dateOfPosted\": 1641252397160,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"EasyPark’s mission is to make parking easy, safe and secure. We work with our clients and community groups in the areas where we provide parking services to help improve these areas and make them safer. For the past 70 years, EasyPark has been providing safe, clean, friendly, convenient, and affordable parking to the Greater Vancouver community. This position is responsible for ensuring a high level of service to the public and other Corporation staff through the efficient management of all customer service duties associated with serving the internal and external customers. KEY RESPONSIBILITIES Customer Service:Responds to customer inquiries by email, live chat, and through our online appeals processRaises refund requests for the Customer Service SupervisorsReports meter/ app malfunctions to the meter collections teamsReviews and request refund requests for customers for double paying on the meterResponds to live chat inquires and assists customers at our parking facilitatesIssues out receipts to customers as required upon confirming transactionAnswer general monthly parking emailsActively works with the Assistant Customer Service Manager, Customer Service Coordinator, and other EasyPark departments on flagging meter or app deficienciesFacilitates Tow Requests for reserved monthly parkers as requiredAddress problems and requests by transmitting information or providing solutionsPrioritize calls according to urgency and importanceEnters data in computer system and maintain logs and records of calls, activities and other informationMonitors Zendesk Backlog and organizes tickets for the customer service teamClose up to 80 appeals/ Zendesk tickets per shift SKILLSPossess exceptional organizational skillsExcellent verbal and written communication skillsAbility to work in a fast-paced and multi-task environmentHigh level of personal integrity and strong work ethicAbility to work independently on assigned tasks as well as to accept direction on given assignmentsEffective attention to detail and a high degree of data entry accuracyAbility to operate standard office equipment (phone, fax, photocopier, printer, etc.)Computer proficiency, including effective working skills of MS Word, PowerPoint, Excel and e-mailProven data entry and typing skills – 70 wpm (alphabetic and numeric characters) EDUCATION & EXPERIENCECall Centre experience is an asset. Dispute/conflict resolution trainingValid Drivers License & 1 year experience of driving1 – 3 years of relevant Customer Service or a Collections experience is requiredMinimum 1 year proven success within customer service role with high volume of incoming callsExperience in dispute and conflict resolution WORKING CONDITIONSOffice setting with shift work during peak seasons. Regular evening/weekend scheduling will be required.Ability to attend professional development opportunities after hours as requiredOvertime as required. POSITION REQUIREMENTS The CSR position is initiative driven and requires exceptional organizational and interpersonal skills, excellent verbal Continue and written communication skills, and is comfortable using various computer software. Ensures a high level of service to the public and other Corporation staff and is responsible for the delivery of effective and superior customer service management services for the Corporation. Part-time hours: 20 per week Job Types: Full-time, Part-time Salary: From $21.00 per hour\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"575D7CEE7A998E24DE5E3C9A85C5F4C3\",\n            \"cityName\": \"222 East Island Highway, Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a36909cd8a140f8d\",\n            \"jobName\": \"Customer Service Supervisor\",\n            \"companyName\": \"Mid Island Co-Op\",\n            \"rowSalary\": \"From $19.25 an hour\",\n            \"date\": 1694485866335,\n            \"dateOfPosted\": 1694485866154,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3154404,\n                    \"lon\": -124.2803958\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Parksville\",\n                \"formattedAddress\": \"Island Hwy E, Parksville, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Parksville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Co-op is hiring a full-time Customer Service Supervisor for our Oceanside Gas Bar in Parksville, British Columbia.Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you!The Customer Service Supervisor position is a developmental role whereby the aim is to move the successful candidate to an Assistant Store Manager (ASM) position within a 12-18 month timeframe (term will be extended in the event there are no ASM positions available within 12-18 months).Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in organizing and directing the activities and operations of the store including but not limited to ordering/receiving merchandise and supplies, organizing and conducting inventory, staff supervision and training, and acting as Health and Safety Committee Liaison.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Supervisor today if you're a team player with strong communication skills, you can lift, push, and pull up to 50 lbs, and you have a minimum of 1 year gas bar/retail experience. Propane and/or FoodSafe certification would be an asset.Who we are:Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve.Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op).We thank all candidates for their interest; however, only those selectedto continue in the recruitment process will be contacted.Job Types: Full-time, Fixed term contractContract length: 12-18 monthsSalary: From $19.25 per hourBenefits:Company eventsDental careEmployee assistance programExtended health careOn-site parkingStore discountVision careSchedule:8 hour shiftHolidaysMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"East Island Highway, Parksville, BC\"\n        },\n        {\n            \"id\": \"29467A59F885424770945BA4EF02EE06\",\n            \"cityName\": \"Click Esports in Nepean, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=35e303f2a8d93960\",\n            \"jobName\": \"Customer Service And Cleaning\",\n            \"companyName\": \"Click Esports\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694485549020,\n            \"dateOfPosted\": 1694485548837,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.33490459999999,\n                    \"lon\": -75.7241006\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Nepean, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Click Esports is now hiring for part-time shift:We are looking for reliable, hardworking and trustworthy individual to join our team.Duties include:· Cleaning of computer area, computer equipment, and peripherals· Cleaning of service premises, kitchen, service floor, etc.· Operate cashier duty· Assist with making food & drinks in the kitchen· Assist with stocking fridgeRequirements:Basic computer skills are mandatoryMust be able to work late night hours. 10 hours shift per week.Click Esports Address: 1665 Merivale Rd, Nepean K2G 3K2Interested applicants please submit your resume online (we do NOT take resume in person)Job Type: Part-timePart-time hours: 10 per weekSalary: $15.50 per hourFlexible Language Requirement:French not requiredWork Location: In person\",\n            \"location\": \"Nepean, ON\"\n        },\n        {\n            \"id\": \"461C6149F0E941403409DF0C0475B18F\",\n            \"cityName\": \"4310 Spallumcheen Dr, Armstrong, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=36a15fb37a11f963\",\n            \"jobName\": \"Dispatcher/Customer Service\",\n            \"companyName\": \"Fox'S Transport\",\n            \"rowSalary\": \"$60,000–$65,000 a year\",\n            \"date\": 1694485438349,\n            \"dateOfPosted\": 1694485438165,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.40158779999999,\n                    \"lon\": -119.2197206\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vernon\",\n                \"formattedAddress\": \"Spallumcheen Dr, Spallumcheen, BC V0E 1B6, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"North Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vernon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 60000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    60000.0\n                ],\n                \"range\": {\n                    \"gte\": 60000.0,\n                    \"gt\": null,\n                    \"lte\": 60000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Foxs Transport is looking to Hire a Full Time Dispatcher at our Armstrong location. The ideal candidate will have strong time management, multitasking, and customer communication skills.Foxs Transport has a proven history of project management combined with a modern fleet and experienced professional drivers making Foxs an industry leader.We have an excellent employee safety program and are COR Certified through the AMTA. We also boast a management team of 6 with over 150 years of combined experience in the heavy transportation industry and a team of highly trained employees ready to provide measurable excellence to our clients.We provide career advancement within our group of companies for all roles. Family owned and operated to ensure each employee is taken care of and has work life balance.Candidate Requirements,- Knowledge of working with Microsoft office (Excel, Word, ETC).- Must be willing to work rotational on call weekends.- Reliable transportation to and from work.- Knowledge in permitting for heavy haul.- Must have knowledge in various trailer configurations.What’s in it for you?- Benefits after a 90-DAY Probation- Permanent Full-Time work.- Opportunities for advancement.- Competitive Wages – Based on experience.Job Types: Full-time, PermanentSalary: $60,000.00-$65,000.00 per yearBenefits:Casual dressDental careExtended health careOn-site parkingPaid time offVision careSchedule:Monday to FridayOn callWeekend availabilityAbility to commute/relocate:Armstrong, BC V0E 1B6: reliably commute or plan to relocate before starting work (required)Application question(s):When are you available to start?Work Location: In person\",\n            \"location\": \"Spallumcheen Dr, Armstrong, BC\"\n        },\n        {\n            \"id\": \"EDC47D1E9F0028E7F330B18549E2FC80\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8015a75f1e9443a8\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Arg Wholesale\",\n            \"rowSalary\": \"$18–$23 an hour\",\n            \"date\": 1694485276106,\n            \"dateOfPosted\": 1692784210276,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service RepresentativeARG Wholesale- Edmonton, ABStarting Wage: $19.00 - $23.00/ HourTuesday – SaturdayHours vary depending on season.Job Type: Full-Time/ PermanentAbout ARG Wholesale:ARG Wholesale, the supply chain division of GlassMasters Autoglass, is looking for energetic and hardworking CSR for a full-time, permanent position. This is a fast-expanding company that offers uncapped room for growth and development. We currently have four warehouse locations in Calgary, Edmonton, Saskatoon, and Regina. We also have 10 retail locations across Alberta and Saskatchewan and will be opening two new locations in Western Canada in the next two years.***Please note: While this position does require customer service, it also consists of manual labour, carrying and loading/unloading 20-50lb windshields, and driving. ***Position:ARG is looking for an individual to fill the role as a Customer Service Representative for our Edmonton location. In this role, you will be responsible for customer service, sales, and operations as well as backend duties in the warehouse (loading/ unloading product, the occasional delivery, etc.).Responsibilities· Maintain exceptional customer service· Assist management with increasing sales and profitability, meeting location KPIs· Develop and maintain retail and account customer relationships· Assist branch manager with sales, cost of sales and labour targets· Help management with accounts receivable.· Assist management with store inventory and supply levels.· Assist warehouse staff with shop duties and operations.· Warehouse Labour:o Moving producto Loading truckso Warehouse cleanliness· Deliveries within Edmonton area· Driving ¼ ton truck· Driving ½ ton pick-up truck· Driving extended cargo van· Ability to adapt and compete tasks/duties as assigned.Requirements:· Valid Class 5 Driver’s License with good driving record· Criminal record check· Availability to work weekends· Solid work ethic and ability to deliver exceptional customer service.· Ability to manage multiple priorities simultaneously· Displays a can-do attitude· Provides a positive role model for all staff· Ability to work in a fast-paced environment· Excellent communication skills· Promotes a high-performance culture by helping manager set clear expectations, and creating a strong team environment· Knowledge of business systems (e.g., POS, web-portals, inventory management, excel, word)· Professional Appearance· Ability to work long hours· Post-secondary education is an asset.Benefits:· Growth potential to move into more senior management positions.· Company events· Comprehensive benefits package· On-site free parkingSchedule:· Day shift – Tuesday to Saturday· Weekend availability· Will vary depending on seasonIf you feel like you have what it takes to be part of a fun and energetic team in a fast-paced and rewarding industry, please reply to this posting with your resume.We thank all candidates for applying. Only those selected for an interview will be contacted. ARG Wholesale is an equal opportunity employer. Starting wages will be dependent on experience.***All Candidates must be legally entitled to work in Canada***Job Types: Full-time, PermanentSalary: $18.00-$23.00 per hourBenefits:Company eventsDental careExtended health careOn-site parkingFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftDay shiftEvery WeekendOvertimeSupplemental pay types:Overtime payWork Location: In person\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"F0F79132CC9C34C45EABEA14921D7778\",\n            \"cityName\": \"750 West Broadway, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=db11e2998b20527b\",\n            \"jobName\": \"Bilingual/Mandarin Patient Coordinator (Call Centre)\",\n            \"companyName\": \"Vancouver Laser & Skin Care Centre\",\n            \"rowSalary\": \"$22–$25 an hour\",\n            \"date\": 1694485001479,\n            \"dateOfPosted\": 1694485001005,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.26376459999999,\n                    \"lon\": -123.14866\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Broadway, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a passionate individual to join our Patient Coordinator team at the Call Centre @ Vancouver Laser and Skincare Clinic !Are you a dynamic and hardworking individual with a passion for the beauty and medical industry? Do you have experience in the customer service field and a desire to take on a rewarding and exciting role as a Patient Coordinator (Call Center)?If so, we want you to be a part of our amazing team at Vancouver Laser and Skincare Clinic.Vancouver Laser and Skincare Clinic is committed to continuous improvements and setting benchmarks for excellence of treatments and services. At Vancouver Laser and Skincare Clinic, our Patient Coordinator plays an integral role in providing Five-starCustomer Service to our patients. We are seeking a Bilingual (English and Mandarin) representative for a full-time (up to 40 hours) position in our call Centre. You will serve as the first point of contact for our patients, ensuring the highest level of patient satisfaction.Main Duties and ResponsibilitiesCustomer Service:Answer phone calls and reply to customer emails with a keen understanding of aesthetic procedures.Create a file for each new customer and update existing customer files.Book customer appointments and manage the appointment calendar.Collecting customer information for future follow-ups.Answering general inquiries on the phone about the treatment and products available.Staying informed about product and service information updates. Identifying sales opportunities, making product/service recommendations.Reply customer's message in a timely manner on different platforms, Wechat, Facebook, Instagram , live chat etc.Ideal candidate should have:Excellent customer service, people-oriented and experienced in rapport building.Ability to process information well with excellent communication and active listening skills.Excellent time management, ability to multitask, prioritize, and manage time effectively.Responding to customer complaints and inquiries quickly and efficiently.Ability to upsell and promote the services and products.High school diploma is mandatory, training in secretarial/office systems would be an asset.Proficiency in Microsoft Office Suite.At least 1 year of experience in a similar role or customer service industry would be an asset.Knowledge of MINDBODY or similar software would be an asset.Join Our Team at Vancouver Laser and Skincare Clinic in Vancouver ,BC.Vancouver Laser & Skin Care Centre is a physician directed cosmetic clinic that was founded by Dr. Martin Braun in 1996. With state of the art technology and a wealth of experience and knowledge, Vancouver Laser is THE non-surgical solution to all things cosmetic. We know that you have choices! In our 25+ year history we have treated thousands of patients with a diverse range of conditions. We have honed and perfected our anti-aging strategies to provide our patients with their ideal outcomes.Job Type: Full-timeSalary: $22.00-$25.00 per hourBenefits:Commuter benefitsExtended health careSchedule:8 hour shiftAbility to commute/relocate:Vancouver, BC V5Z 1H2: reliably commute or plan to relocate before starting work (preferred)Experience:Customer Service & Patient Registrars: 1 year (preferred)Language:Mandarin/Chinese (preferred)Work Location: In person\",\n            \"location\": \"Broadway WR\"\n        },\n        {\n            \"id\": \"EF817133034FD97772A0502E58707545\",\n            \"cityName\": \"Gormley, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b7ad24a9660b6906\",\n            \"jobName\": \"Customer Service/Sales Rep (Ft)\",\n            \"companyName\": \"Nutri-Lawn - Gormley, On\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694484918549,\n            \"dateOfPosted\": 1694484918219,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.9418049,\n                    \"lon\": -79.3791856\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Gormley\",\n                \"formattedAddress\": \"Gormley, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Gormley\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" We are seeking a highly qualified person to fill the role of Customer Service/Sales Representative in our fast-paced environment. The ideal candidate will have a strong customer service background and experience handling high volumes of incoming calls and/or email communications. This is a great opportunity for an individual who thrives in a competitive environment, and we are looking for motivated people who are able to quickly learn our products and services Responsibilities: Manage large amounts of incoming calls. Follow communication procedures, guidelines and policies. Not be afraid to pick up phone and contact clients. Call and collect outstanding balances. Sell prospective clients our programs and services. Input data, send emails. Go the extra mile to engage customers. Work availability Monday - Friday 9am to 5pm. As an Employee of Nutri-Lawn you will enjoy: A competitive compensation program. Industry and Company training. Growth and advancement opportunities within the Company. Requirements: Familiarity with CRM systems and practices. Proficient in Microsoft Office especially in Excel or Google Sheets. Must be well versed in Hub Spot Previous email marketing knowledge. Proven customer support experience or experience as a client service representative. Strong phone contact handling skills and active listening. Customer orientation and ability to adapt/respond to different types of characters. Excellent communication and presentation skills. Excellent command of the English Language. Previous Landscape experience an asset. Previous experience in the service industry. Ability to multi-task, prioritize and manage time effectively. We are not on a bus line so you must have a reliable vehicle. Job Type: Full-time.  Salary: $18.00-$23.00 per hour.  Benefits: Casual dress. Company events. Flexible schedule. On-site parking. Schedule: 8 hour shift. Monday to Friday. Supplemental pay types: Bonus pay. Commission pay. Job Type: Full-time.  Salary: $18.00-$25.00 per hour.  Benefits: Casual dress. Company events. On-site parking. Schedule: Monday to Friday. Supplemental pay types: Bonus pay. Commission pay. Overtime pay. Signing bonus. Tips. View public job page\",\n            \"location\": \"Gormley, ON\"\n        },\n        {\n            \"id\": \"9FFAEF90CF657BE78136B0B6617FE016\",\n            \"cityName\": \"4230 50th Ave, Rimbey, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3f840cc051443321\",\n            \"jobName\": \"Front Counter Customer Service\",\n            \"companyName\": \"Allen B. Olson Auction Service Ltd.\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694484909567,\n            \"dateOfPosted\": 1694484909319,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.6395756,\n                    \"lon\": -114.2356675\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Rimbey\",\n                \"formattedAddress\": \"Rimbey, AB T0C 2J0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Ponoka County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Rimbey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Front Counter Customer Service RepresentativeThis a seasonal job from March 15 till December 31st each year.Responsibilities:- Receptionist Duties including answering phones, messages, forwarding of phone calls and excellent communication skills- Exception customer service to our clients.- Excellent and Accurate Data Entry Skills- Accepting Consignments from Customers & Collection of Payments for Items Sold at the Auctions- Knowledge of Farm Equipment, Construction Equipment and Vehicles is an asset but not necessary. Training is available.Experience:- Previous experience in a customer service role preferred- Excellent communication skills, both verbal and written- Strong problem-solving abilities and attention to detail- Ability to multitask in a very fast-paced environment- Proficient in using computer systems and navigating various software applications- Ability to remain calm and composed when dealing with difficult customersTo apply for this position, please submit your resume along with a cover letter detailing your relevant experience.Job Types: Full-time, SeasonalContract length: 3.5 monthsSalary: From $20.00 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayOvertimeWeekends as neededAbility to commute/relocate:Rimbey, AB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Receptionist: 2 years (preferred)Customer service: 2 years (preferred)Shift availability:Day Shift (preferred)Work Location: In personApplication deadline: 2023-09-18\",\n            \"location\": \"Rimbey, AB\"\n        },\n        {\n            \"id\": \"00355E508F5E52A9AF550EC3AF2B6796\",\n            \"cityName\": \"20 Burnside Rd W Suite 201, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8c67bb57381cd117\",\n            \"jobName\": \"Customer Service Representative (Ft)\",\n            \"companyName\": \"Proline Management\",\n            \"rowSalary\": \"$37,000–$45,000 a year\",\n            \"date\": 1694484068007,\n            \"dateOfPosted\": 1694484067796,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4502687,\n                    \"lon\": -123.3861989\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Burnside Rd W, Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 37000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    37000.0\n                ],\n                \"range\": {\n                    \"gte\": 37000.0,\n                    \"gt\": null,\n                    \"lte\": 37000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" We are looking for a motivated individual who has a passion for helping people live and grow together to join our closely-knit team.  If you have experience in the hospitality or retail industry, a passion for working with people, and want to join an amazing team, this could be the position for you. You’ll bring a desire to learn, grow, and to help others and we’ll train you on the world of property management. Whether you’re looking to make a change from working as a server, running a store, or wanting to explore a new career, we want to hear from you! A little about us: We are friendly, hardworking, and a little weird. Our purpose is to help people live and grow together in every way possible. The paradigms we strive for are Rebellious Optimism, Wholehearted Togetherness, Insidious Joy, Radical Transparency, and Relentless Incrementalism. Do you want to know more? Visit our website https://www.prolinemanagement.com. This is YOU to a ‘T’: You are confident, kind, patient, and a great listener. You defuse situations and handle conflict and negative emotions effectively. You enthusiastically support positive changes and see opportunities rather than challenges. You have a sense of humor and have fun. You create systems to keep organized and stay on top of lots and lots of emails and tasks. You bring JOY to every interaction. You love fixing problems for people and helping your whole team succeed. You thrive in a fast-paced environment. You are constantly striving to improve, learn and grow both personally and professionally. The role day-to-day: Provide primary coverage for the front desk. Receiving and placing a high volume of customer service telephone calls. Maintaining great customer relationships by handling questions and concerns with speed and professionalism. Manage emergencies with a decisive and calm demeanor, able to troubleshoot the situation and find positive solutions. Data entry and research as required to troubleshoot customer challenges. Spearhead the organization of the property managers, with everyone working towards the common goal of providing the best possible care for the portfolio of buildings. Liaise with strata council members, building owners, and residents by telephone and email. Manage checklists, processes, databases, spreadsheets, and websites. Assist Property Manager with obtaining quotes, scheduling maintenance, and confirming jobs with tradespeople at the direction of the Property Manager. This position requires travel between offices, as you may be required to work from other offices from time to time. For those interested, this position offers the opportunity to train for and grow into our Property Manager Trainee position. Experience & Qualifications: Enthusiasm for working with people and systems. Experience in the customer service field including call centers, collections, hospitality, restaurant and retail industries is considered an asset Excellent typing and knowledge of computer systems including Microsoft Suite is required. Ability to handle multiple things going on at once including multitasking, meeting deadlines, and maintaining clear communication with the team and clients. 1 - 2 years of experience in an administration or service-based role Excellent command of the English language along with above standard verbal and written communication skills Clean criminal record check. Position Details: Full-time position. $37-45,000 annually to start Office hours are Monday through Friday, 8:30 am - 5 pm, with a 1-hour lunch break. Please note that this is a fully in office position. Weekends and statutory holidays off.  Other Details: Vacation policy based on length of service. Paid volunteer days. RRSP contributions. Paid days off on your birthday and job anniversary. Health Benefits Trust and Life Insurance. Seasonal staff parties. Wellness and Social Committees. Employee referral program. Education reimbursement program. Opportunities for growth. We are looking for someone who will fit in well with our values and the team. To apply for this position, please submit your resume and cover letter outlining why you will be a great fit for the Customer Service Representative role with us. We are looking forward to reviewing your application!  Please note that only candidates selected for the interview process will be contacted. About Proline Management:With 55+ employees, 4 offices, and over 37 years in the business of property management, we are a friendly, interactive and hardworking group of people focused on developing and improving our organization and contributing to our community. We offer fun and professional working environment, maintaining an inclusive, small business feel while constantly striving to improve and develop as a company. We welcome team members who approach each day with positivity and enjoy working to help others live and grow together.\",\n            \"location\": \"Burnside Rd W, Victoria, BC\"\n        },\n        {\n            \"id\": \"F85EB1DC156F6031C2C3822450C86E0B\",\n            \"cityName\": \"888 Burrard St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d42c0c6df18439b4\",\n            \"jobName\": \"Part Time Customer Service Associate\",\n            \"companyName\": \"Spence Diamonds\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694484035052,\n            \"dateOfPosted\": 1694484034873,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2764614,\n                    \"lon\": -123.133986\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Burrard St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"How would you like to work with the happiest customers on earth? People in love are the happiest people on earth, and they’re also our everyday customers! Are you looking to add some sparkle to your career? If so, look no further! We are currently looking for our next superstar to join our customer service team and the Spence family! Who we are… Founded over 40 years ago, Spence Diamonds is a proudly Canadian Company. We have grown and evolved over the years with a unique approach to becoming an industry leader in cut quality and the customer experience. We take shopping for an engagement ring to the next level - with open show cases, displaying top of the line designer prototypes, accompanied by an unparalleled diamond education. Since introducing Spence Artisan Created Diamonds, we are now blazing the way for reasonably priced, ethical and sustainable diamond choices! With unparalleled access to these diamonds, we truly are the best choice for our customers. Our people are the center stone of our business. Our mission is to deliver an exceptional customer experience in a fun and inclusive work environment while giving our people room to grow their careers and live the life they love. What we offer…Attractive compensation packagesAmazing employee, friends & family discounts on our productsA variety of Learning and Development resourcesSpecial gifts to celebrate employee work anniversaries, birthdays, and personal milestonesRegular celebrations & employee incentive programsTeam building events and activitiesOpportunity to grow within the companyContinuous on the job training, support and mentorshipThe role As a member of customer service team at Spence, you embody our culture and values by providing an exceptional customer experience. You have a passion for our products and are comfortable assisting with presenting valuable products and representing products with confidence.You are the backbone of our store. You promote accuracy within the store through exceptional process handling which includes data management, finances, task management. You professionally act as the first and last point of contact for our clients on the phone, through email and in person within the store. On any given day you’re handling all payments & transactions, answering incoming phone calls and emails, managing inventory counts, shipping & receiving, assisting in store maintenance and cleanliness, showroom upkeep, and supporting the Sales Consultants and Management. Most importantly you ensure our customers are top priority and are all given the full Spence experience.Greet every customer in a friendly manner and provide extraordinary customer service Offer sales support to our sales teams during busy periods and take customers through our showroom experience. Ability build rapport with clients and identify client needs through a sales approach.Inspect and process incoming jewelry repairs. Follow up with customers via phone or email regarding their repair orders. Complete quality checks and provide completed orders to customers at pickup, ensure that customers have a great experience.Answer all phone and email correspondences Cash handling and end of day processingAssist in coordinating the showroom appearance, merchandising and store tidiness.A few things we hope you have…You’re detailed oriented, have excellent time management skills and are willing to embrace a structured processYou have excellent time management skills and make great decisions about which work to prioritizeYou have strong problem solving, and conflict resolution abilitiesYou are energetic, outgoing and have strong customer relationship skillsYou have excellent verbal and written communication and are comfortable professionally communicating face to face, over the phone and in writing.You have at least a years’ experience working in a customer service environmentYou’re used to working with a computer and are willing to learn new technology and softwareYou have minimum availability of 3 days a week, and of those 3 days at least 1 weekend day. Flexible day time/ evening availability preferred.Bonus points if you have previous administrative or reception experienceCompensation $16.75/Hour\",\n            \"location\": \"Burrard St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"CFF2AB96B1AC4BAF657BAA54EB331C82\",\n            \"cityName\": \"Langley, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1710d16ec58bf2b2\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Kirmac Collision And Autoglass\",\n            \"rowSalary\": \"$21–$24 an hour\",\n            \"date\": 1694484028526,\n            \"dateOfPosted\": 1694484028338,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1041779,\n                    \"lon\": -122.6603519\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Langley City\",\n                \"formattedAddress\": \"Langley City, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Langley City\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We’re looking for someone with an ear for service Customer Service Representative We're seeking a skilled customer centric expert to join our world-class team. Would you love the chance to have your customers raving about you with anyone who’ll listen? We want to hear from you! Benefits & Perks Excellent Wages Extended Health, Dental and Vision Coverage Plenty of Paid Time Off RRSP Options Team Working Environment Support for Volunteering and Community Involvement Learning and Development Program Training and Education Fund Corporate Discounts Program Regular Social Events Responsibilities Build lasting customer connections in store Submitting ICBC rental forms Scheduling Appointments Generating repair orders Interacting with vendors Providing repair updates to customers via phone, text and/or email Managing/Posting invoicing and parts returns Reconciling repair orders Requirements Excellent verbal and written communication skills. Organized and efficient with brilliant people skills. Dazzling work references. Passion for cars Valid Driver's license We want people who want to have an impact. Kirmac Collision and Autoglass is building an inclusive company culture where anyone, regardless of age, race, gender, sexual orientation, or disability, is recognized and rewarded for their contributions. Our Learning & Development Program allows every team member to learn new skills and expand their expertise. If you want to work someplace where you can grow, and your ideas can have an impact, we want to hear from you! Kirmac is a family-owned Collision Repair Shop with 17 locations across the lower mainland and 50 years of experience getting people back on the road.  Are you looking for a fun, well-paid career with excellent benefits, in-demand skills training, and job security? Did you know Collision Repair professionals earn an average of 6 figures per year? There are more cars on the road than ever before. More cars mean more accidents. And that means the demand for skilled collision repair people is at an all-time high. Ready to get started? We want to hear from you!Pay: $21 - $24 / hour Benefits: Paid time off Health insurance Dental insurance Vision insurance Life insurance Disability insurance Job Type: fulltime, parttime Schedule: 8 hour shift Monday to Friday Education: No education required Work location: On-site\",\n            \"location\": \"Langley, BC\"\n        },\n        {\n            \"id\": \"3443431A7139150FF94EED707D5DEE44\",\n            \"cityName\": \"260 Exeter Station Rd, 100 Mile House, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2d95e553da79d9cf\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Napa 100 Mile House\",\n            \"rowSalary\": \"$16–$25 an hour\",\n            \"date\": 1694484027125,\n            \"dateOfPosted\": 1664540856330,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.64972179999999,\n                    \"lon\": -121.3177484\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"100 Mile House\",\n                \"formattedAddress\": \"Exeter Station Rd, 100 Mile House, BC V0K 2E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Cariboo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"100 Mile House\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"NAPA Auto Parts is seeking a Full Time Counter Clerk / Sales Associate for the NAPA 100 Mile House , BC Location.•This position requires someone who can work flexible hours.You will support overall store operations in order to meet NAPA’s exacting Customer Service and Operational Standards by preparing customer orders and processing returns.You will play a key role in achieving the store’s sales and Customer Service objectives. We are looking for someone interested in growing to other positions within the store.Under the supervision of the Store Manager you will be responsible for establishing and maintaining good relations with our Customers by providing courteous, efficient, and professional service.Qualifications:•Able to lift up to 50lbs.•Communication skills•Priority management•Comfortable using technology•Action oriented•Listening skills•Teamwork and excellent Customer Service SkillsIf you are interested in this unique opportunity and meet the requirements of this job, you are invited to send your resume and drivers abstractOur employees are our greatest advocates. That’s why we whole-heartedly support maintaining a healthy and stimulating workplace where employees can achieve their full potential. With a positive attitude and a rigorous approach, the result is satisfied customers and a workplace that’s right for youMust provide resume and drivers abstractWe are willing to train ! If you are motivated to learn we can help youJob Types: Full-time, PermanentSalary: $16.00-$25.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceStore discountVision careSchedule:8 hour shift\",\n            \"location\": \"Exeter Station Rd, One Hundred Mile House, BC\"\n        },\n        {\n            \"id\": \"440E8B1D75DBF54295E2DAA06008FA9F\",\n            \"cityName\": \"610 Upper James Street, Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4b1d8574fc464f50\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Rtc Appliances\",\n            \"rowSalary\": \"$16–$24 an hour\",\n            \"date\": 1694483974181,\n            \"dateOfPosted\": 1694483973964,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1926133,\n                    \"lon\": -79.8980193\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Upper James St, Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Description: Customer Service RepresentativeDuties:- Provide exceptional customer service by promptly and courteously responding to customer inquiries and resolving issues- Handle a high volume of incoming calls, emails, and live chats from customers- Assist customers with product information, order status, billing inquiries, and general account support- Process orders, returns, and exchanges accurately and efficiently- Maintain accurate customer records and update information as needed- Collaborate with other departments to resolve customer issues and escalate complex cases when necessary- Stay up-to-date with product knowledge and company policies to provide accurate information to customersRequirements:- High school diploma or equivalent required; college degree preferred- Previous customer service experience in a fast-paced environment is highly desirable- Excellent verbal and written communication skills- Strong problem-solving and decision-making abilities- Ability to multitask and prioritize tasks effectively- Proficient in using computer systems and navigating various software applications- Ability to work independently as well as part of a teamWe offer competitive pay, comprehensive benefits package including medical and dental. Join our team of dedicated professionals who are passionate about providing exceptional customer service.To apply for this position, please submit your resume along with a cover letter highlighting your relevant experience.Job Type: Full-timeSalary: $16.00-$24.00 per hourBenefits:Company eventsDental careDisability insuranceExtended health careOn-site parkingFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridaySupplemental pay types:Bonus payAbility to commute/relocate:Hamilton, ON L9C 2Y8: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 2 years (required)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Upper James Street, Hamilton, ON\"\n        },\n        {\n            \"id\": \"9DD848A987E0B01397E8224E5D589537\",\n            \"cityName\": \"St. John's, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ed476ee49ac891ab\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Executive Aviation\",\n            \"rowSalary\": \"$17.00–$20.90 an hour\",\n            \"date\": 1694483930205,\n            \"dateOfPosted\": 1694483930022,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.5615096,\n                    \"lon\": -52.7125768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St. John's\",\n                \"formattedAddress\": \"St. John's, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 1\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"St. John's\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Here we grow again! Do you want to be part of an amazing team of customer service specialists who work together to provide exemplary service? Is going above and beyond in your DNA? Does the opportunity to provide exemplary service to passengers on some of Canada’s best airlines appeal to you? Are you someone who is known for reliability and flexibility? Come join us! Executive Aviation is hiring part time Customer Service agents at the St. John's Newfoundland Airport (YYT) who love working in the tourism industry. This role reports directly to an amazing Station Manager who is there to support you. What do we offer? Executive Aviation is proud to have very progressive wage ranges with lots of earning potential. The range of salary for this position is $17.00-$20.90/hour. We offer comprehensive Health benefits for all part- and full-time team members. We also have fantastic flight benefits with the airlines that we support. We want to see you grow and reach your goals! The sky's the limit with Executive Aviation. Responsibilities Our customer service agents are responsible for creating a safe and stress-free experience for travelers as they begin and end their journeys: Helping passengers check-in Supporting self-serve kiosks Preparing aircraft for on-time departures Facilitating deplaning and boarding of passengers Greeting passengers who are arriving from flights Following airline specific check-in policies and procedures Positively work airline crew Light grooming duties Kindly enforce airline and airport policies and procedures to passengers And more! Qualifications You are a true customer service champion with a minimum of two years’ in a customer-facing role You bring a proven track record of punctuality and reliability and understand that performing on time is a cornerstone of airline service You love to multi-task and are comfortable in a fast-paced where time pressures are a way of life You are a great communicator in both individual and group settings and have a demonstrated proficiency with computers and software. Completion or working towards completion of Travel and Tourism Diploma, Marketing or Business Diploma Previous airport experience would be considered an asset Flexible availability to work shift work which includes early mornings, days, late evenings, weekends and/or holidays An ability to meet all conditions of employment:  Restricted Area pass issued by Transport Canada A criminal background check Hold a valid driver’s licenseiDBwmTPWyb\",\n            \"location\": \"St. John's, NL\"\n        },\n        {\n            \"id\": \"BA1CE4247B20B14BFCFB2EEF3F27ACC1\",\n            \"cityName\": \"135 Rainbow Creek Dr, Woodbridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1e29ccb676125033\",\n            \"jobName\": \"Customer Service Representative/Invoicing\",\n            \"companyName\": \"Fotiou Frames Ltd.\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694483929229,\n            \"dateOfPosted\": 1694483928938,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.778904,\n                    \"lon\": -79.632958\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Rainbow Creek Dr, Vaughan, ON L0J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title: Customer Service Representative/InvoicingDuties:Provide exceptional customer service by responding to customer inquiries and resolving issues in a timely and professional mannerHandle a high volume of incoming calls and emails from customersAssist customers with product information, order status, and returns/exchangesProcess customer orders accurately and efficientlyMaintain customer records and update information as neededCollaborate with other team members to ensure customer satisfactionIdentify opportunities to upsell or cross-sell products and servicesFollow company policies and procedures to ensure consistent service deliveryPrepare and invoice orders in Sage Business Vision including weekly Skid Transfer to US warehouses.Prepare, organize and schedule daily truck run for drivers.Schedule pickups with various carriers and freight brokers.Skills:Excellent communication skills, both verbal and writtenStrong problem-solving abilities to address customer concerns effectivelyAbility to multitask and prioritize tasks in a fast-paced environmentAttention to detail to ensure accuracy in order processing and data entryProficient computer skills, including experience with Sage Business Vision CRM software and Microsoft Office SuiteEmpathy and patience when dealing with customer complaints or difficult situationsAbility to work well in a team-oriented environmentIf you are passionate about providing exceptional customer service and have the skills required for this role, we would love to hear from you. Please submit your resume and cover letter detailing your relevant experience.Job Types: Full-time, PermanentSalary: $18.00-$20.00 per hourSchedule:Monday to FridaySupplemental pay types:Overtime payWork Location: In personExpected start date: 2023-10-02\",\n            \"location\": \"Rainbow Creek Dr, Woodbridge, ON\"\n        },\n        {\n            \"id\": \"E2AB5C209EF102D308DF21AC76CDF41D\",\n            \"cityName\": \"Jonview in Etobicoke, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e4a34add396eac3d\",\n            \"jobName\": \"Bilingual Reservations And Customer Service Agent (German Or French)\",\n            \"companyName\": \"Jonview\",\n            \"rowSalary\": \"From $40,000 a year\",\n            \"date\": 1694483915007,\n            \"dateOfPosted\": 1694483914811,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6204946,\n                    \"lon\": -79.5131983\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Etobicoke, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"VALUES:WE WORK AS A TEAM with openness to the ideas and expectations of our colleagues, our customers and our client and supplier partners with a commitment to each other.WE ARE PROFESSIONALS on a constant quest for excellence, tackling challenges methodically, efficiently, and with integrity.WE GO BEYOND our responsibilities to our customers, our colleagues, society, and the environment.Title: Reservations & Customer Service Agent (Bilingual)Remote work availableDescription:This hybrid position is for those who like variation in job responsibilities, switching between two departments on a seasonal basis. This dual opportunity requires and develops a variety of skills while engaging in reservation activities during fall and winter then moving to customer service duties in spring and summer. The successful candidate will be responsible of FIT reservation requests for our customers, requests for information on products, passenger support, and treatment of some complaints.ResponsibilitiesProcess new reservations, cancellations, and amendments to existing reservationsRespond to queries regarding itineraries, products, and services from clients, and suppliersBuild relationships with key clientsProvide passenger assistanceMaintain a high level of Canadian Tourism product and geographical knowledge of CanadaProof reservations to ensure the accuracy and smooth running of booked itinerariesRespond to complaints post-travelAssist in the completion of any projects, as assignedPosition Requirements:Effective oral & written communication in English and French or German a mustEffective oral & written communication Portuguese and Spanish is an assetPost-Secondary School EducationTourism experience is an assetMust be able to work evenings and weekendsAbility to work under pressure and multitaskStrong attention to detail and autonomyTeam spiritDedicated to a high level of customer serviceAble to plan, organize and set priorities & manage processesJonview values diversity in the workplace and is committed to fostering employment equity by encouraging applications from the following designated groups: women, Aboriginal people, people with disabilities, and members of visible minorities. Jonview will work to accommodate people with disabilities throughout the recruitment and selection process. If you require a special arrangement, please contact us so that we can work together to adequately meet your needs. The use of the masculine in this document is for the sole purpose of simplifying the text.Only successful candidates will be contacted.Job Types: Full-time, PermanentSalary: From $40,000.00 per yearBenefits:Casual dressCompany eventsDental careDisability insuranceExtended health careLife insuranceOn-site parkingRRSP matchTuition reimbursementVision careWork from homeSchedule:8 hour shiftEvening shiftMonday to FridayWeekends as neededApplication question(s):Are you available to work evenings and weekends?What are your salary expectations? The starting salary for this role is $40,000.Do you speak Spanish or Portuguese? If so, how would you rate your proficiency level from Beginner to Expert?How would you rate your knowledge of Canadian Geography? Beginner, Intermediate, or Advanced?Are you legally entitled to work in Canada for the duration of your employment?Where are you currently located? This position is hybrid but includes working from our Toronto or Montreal office 1 day a week (if you are located in Toronto or Montreal).Experience:tourism/hospitality: 2 years (preferred)Reservations: 2 years (preferred)Customer service: 2 years (preferred)Language:French (required)German (required)Work Location: Hybrid remote in Etobicoke, ON M9B 6K5\",\n            \"location\": \"Etobicoke, ON\"\n        },\n        {\n            \"id\": \"2BC91EFF0E3D99AA1381CDDC77D9FED0\",\n            \"cityName\": \"Saanichton, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0875fa88c9fb3d26\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Windsor Plywood Keating\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694483908589,\n            \"dateOfPosted\": 1694483908409,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.5962689,\n                    \"lon\": -123.4169023\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saanichton\",\n                \"formattedAddress\": \"Saanichton, BC V8M, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saanichton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Windsor Plywood Keating is a growing Finishing Supply store on Keating Cross Road in Saanichton.We are looking for a Customer service representative to join our team.Customer service is imperative with us, and preference will be given to candidates with a friendly and personable approach.Customer service at our store includes:Greeting customersRunning their purchases through our POS systemCutting plywood or mouldings to sizeLoading the customers purchase in their vehicleKeeping the store in a presentable appearanceStocking shelves and ordering product to maintain stock levelsExperience:Must be physically fit and capable of lifting up to 50 lbs. of weight.Good verbal and written communication skills.Able to work independently (without supervision).We are looking for someone full time 9am to 5pm shift (Sunday and Wednesday off ).Job Type: Full-timeSalary: $18.00-$22.00 per hourBenefits:Dental careExtended health careOn-site parkingFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftAbility to commute/relocate:Saanichton, BC: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Saanichton, BC\"\n        },\n        {\n            \"id\": \"1B81F1C87C40DA51BA487688DA950A68\",\n            \"cityName\": \"Lower Sackville, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4571df9c213abc31\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Money Direct\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694483829785,\n            \"dateOfPosted\": 1694483829368,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.7763767,\n                    \"lon\": -63.6775544\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lower Sackville\",\n                \"formattedAddress\": \"Lower Sackville, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lower Sackville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Would you like to be part of a fun, friendly, management team? Money Direct is a Canadian owned and operated company with 9 Canadian branches, so we are a very close knit accessible team!Job Description What do you do?In the Customer Service Representative role you will do it all, sales, customer service, local area marketing, collections, security of your store, and the list goes on. Your primary function in the CSR role is to provide excellent customer service through the provision of Money Direct Financial Services.Duties/Responsibilities· Provide and ensure quality Customer Service is consistently delivered .· Complete all product and service transactions in the Point of Sale system.· Enter customer information completely and accurately into the Point of Sale system.· Issue Loans quickly and efficiently ensuring risk assessment strategies are utilized· Cross-selling additional products and services to all customers.· Respond to customer complaints and provide resolution.· Ensure store appearance is maintained in adherence to company standards.· Adhere to and ensure proper operational policy/procedures are followed.· Adhere to and ensure proper Security and cash management policy/procedures are followed.· Maintain all audit/compliance policy/procedures· Carry out chargeback/collection activity and complete all collection related tasks assigned.· Ensure financial goals/targets are met for the store.· Maintain proper accounting procedures and ensure all reporting is completed in a timely fashion.· Successfully, open and close the store and complete all paperwork accurately.· Maintain cash and inventory accuracy/controls and effectively control cash variances.· Drive revenue through the implementation of company-wide marketing plans and execution of promotions as well as through other local area marketing efforts.· All other job related duties as directed by Management.Qualifications/Skills:· High School Diploma· 1-2 years customer service and cash handling· Experience in the financial services industry highly desirable.· Friendly, outgoing, confident / problem solver, flexible, self-motivated, team player.· Customer Service Orientation· Accountability· OrganizationWe invest in our employees, and offer extensive training, and development programs to set you up for future success. If we sound like a fit and you’re ready to start an exciting career with an organization that encourages employee growth, apply today! We look for bright, energetic, motivated individuals who are interested in learning and developing their careerJob Types: Full-time, PermanentJob Type: Full-timeSalary: From $15.50 per hourBenefits:Dental careExtended health careFlexible scheduleLife insuranceOn-site parkingPaid time offSchedule:Day shiftEvening shiftWeekend availabilitySupplemental pay types:Bonus payCOVID-19 considerations:Consistent sanitizing of all high touch surfaces.Education:DCS / DEC (required)Experience:Customer service: 2 years (required)Work Location: In person\",\n            \"location\": \"Lower Sackville, NS\"\n        },\n        {\n            \"id\": \"039722011DE363B1CCE67CD072D73280\",\n            \"cityName\": \"Sidney, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b134b3b6069d1fd2\",\n            \"jobName\": \"Cashier, Customer Service\",\n            \"companyName\": \"Sidney Chevron\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694483787747,\n            \"dateOfPosted\": 1694483787565,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.6502411,\n                    \"lon\": -123.399005\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sidney\",\n                \"formattedAddress\": \"Sidney, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sidney\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Will trainWork setting Gas bar Tasks Operate cash register Scan items Receive payment for goods or services Suggestive selling Stock shelves and clean counter area Greet customers Wrap or place merchandise in bags Provide customer service Assist customers with self-checkout Participate in promotional activities Verify the age of customers when selling lottery tickets, alcohol or tobacco products Computer and technology knowledge Electronic cash register Interac machine Price scanner Computerized inventory record keeping and re-ordering system Transportation/travel information Public transportation is available Work conditions and physical capabilities Fast-paced environment Work under pressure Handling heavy loads Physically demanding Attention to detail Combination of sitting, standing, walking Standing for extended periods Bending, crouching, kneeling Personal suitability Accurate Excellent oral communication Flexibility Team player Screening questions Are you currently legally able to work in Canada?Work Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Sidney, BC\"\n        },\n        {\n            \"id\": \"114139884D6EEEF8A4DAF89EC475A505\",\n            \"cityName\": \"Saint-Bruno-de-Montarville, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=da2af0011af67af7\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"Québec Loisirs\",\n            \"rowSalary\": \"$15.25 an hour\",\n            \"date\": 1694483749826,\n            \"dateOfPosted\": 1694483749635,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.52597400000001,\n                    \"lon\": -73.3406679\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St-Bruno-de-Montarville\",\n                \"formattedAddress\": \"St-Bruno-de-Montarville, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"La Vallée-du-Richelieu Regional County Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"St-Bruno-de-Montarville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsScreening questions Are you available for the advertised start date? Are you currently a student? Are you currently legally able to work in Canada? Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Health benefits Dental plan Disability benefits Health care plan Paramedical services coverage Vision care benefits Financial benefits Bonus Long term benefits Life insurance Other benefits Parking availableWork Term: PermanentWork Language: BilingualHours: 20 to 30 hours per week\",\n            \"location\": \"Saint-Bruno-de-Montarville, QC\"\n        },\n        {\n            \"id\": \"B84ED55C8BD0457A8C3882E2E5F7E9AA\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f73770006871cd52\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Korean Catholic Church Credit Union\",\n            \"rowSalary\": \"$39,500–$65,000 a year\",\n            \"date\": 1694483718011,\n            \"dateOfPosted\": 1694483717799,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 39500.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    39500.0\n                ],\n                \"range\": {\n                    \"gte\": 39500.0,\n                    \"gt\": null,\n                    \"lte\": 39500.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service Representative (CSR) provides professional and efficient service to members/clients utilizing sound knowledge of Korean Catholic Church Credit Union products and services to fulfill their transactional needs and provide an excellent member/client experience.This role quickly develops a rapport with members/clients and proactively identifies their needs, promotes Korean Catholic Church Credit Union products and services, and refers members/clients to the appropriate internal partner based on the complexity of their requirements, while ensuring compliance and adherence to operational policies and procedures.As part of ongoing development, this role will require that you be flexible to assist in other areas of the branch, as required, with greeting and directing members as well as opening new accounts and dealing with general inquiries regarding our products and services.---------------------------------------------------------------------------------------------------------------------------Major Responsibilities:- Responds to member/client needs by delivering friendly, efficient service and accurately processing various financial transactions including deposits, withdrawals, cheque cashing/ordering, bill payments, money orders, transfers, or wire transfers.- Resolves member/client issues at the first point of contact where possible and refers to senior internal officers based on the complexity of the situation.- Strives to create a positive member/client experience through each interaction and looks for ways to continuously improve the overall member/client branch experience.- Maintains a strong level of knowledge with respect to Korean Catholic Church Credit Union Savings’ products, services, sales disciplines, and current marketing campaign programs/strategies.- Actively participates in all sales disciplines (i.e., high five goals, side-by-side coaching, quarterly sales cycle training) and participates in branch campaign initiatives.- Utilizes quarterly learning to adapt strategies and increase results.- Ensures ongoing compliance and adherence to operational policies, procedures, objectives, and Code of Business Conduct.- Actively collects applicable fees and revenues, contributing to branch financial goals.- Finds solutions to enhance the member/client experience and minimize factors that may negatively impact the member/client experience.---------------------------------------------------------------------------------------------------------------------------Require qualifications:- College diploma or equivalent.- Bilingual (English/ Korean) must be fluent.- Studied/Major in accounting field.- Solid communication skills (including verbal and written)- Proficient in MS Office (Word, Excel, and PowerPoint).- Time Management skills.- Proven multi-tasking and troubleshooting skills.---------------------------------------------------------------------------------------------------------------------------천주교신협 (Korean Catholic Church Credit Union)에서 함께 일할 직원을 아래와 같이 모집합니다. ·모집 부문: Full Time CSR (Teller)모집 인원: 1 명지원 자격: 캐나다에서 합법적으로 일할 수 있는 신분, 영어와 컴퓨터 사용능력 필수제출 서류: 한글, 영어 이력서 및 자기 소개서* 제출된 서류는 반환하지 않고 서류 심사 합격자에 한하여 인터뷰를 위해 개별 연락 드립니다.금융업무에 관심있으신 분의 많은 지원 바랍니다. 감사합니다.Job Type: Full-timeSalary: $39,500.00-$65,000.00 per yearBenefits:Dental careExtended health careOn-site parkingPaid time offRRSP matchVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payOvertime payApplication question(s):Did you study/major in accounting?Education:DCS / DEC (preferred)Experience:Customer service: 2 years (preferred)Language:Korean (preferred)Work Location: In personExpected start date: 2023-09-25\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"C5C060F40E4F3B69E4D636270277A969\",\n            \"cityName\": \"Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3c937a8cd39c06c2\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"J'Adore Body Sugaring\",\n            \"rowSalary\": \"$15–$17 an hour\",\n            \"date\": 1694483696897,\n            \"dateOfPosted\": 1694483696688,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.895136,\n                    \"lon\": -97.13837439999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: No degree, certificate or diplomaExperience: 2 years to less than 3 yearsWork setting Beauty shop or aesthetic service Tasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Explain the type and cost of services offered Issue receipts and other forms Order office supplies and maintain inventory Perform general office duties Receive and log complaints Receive payments Sell merchandise Advise clients on advertising or sales promotion strategies Consult with clients after sale to provide ongoing support Answer clients' inquiries and provide information Explain procedures, risks and benefits to clients Supervision Customer service clerk Computer and technology knowledge MS Word Security and safety Basic security clearance Transportation/travel information Own transportation Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Judgement Ability to multitask Screening questions Are you currently a student? Are you currently legally able to work in Canada? Do you have previous experience in this field of employment? Health benefits Vision care benefits Financial benefits GratuitiesWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Winnipeg, MB\"\n        },\n        {\n            \"id\": \"FD6CD254B2F46F48E0698AB28C2F3825\",\n            \"cityName\": \"328 Speedvale Avenue East, Guelph, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fa9229a0ede42929\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Cornell Animal Hospital\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694483694215,\n            \"dateOfPosted\": 1694483693940,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5781857,\n                    \"lon\": -80.2419376\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Guelph\",\n                \"formattedAddress\": \"Speedvale Ave E, Guelph, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Wellington County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Guelph\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title: Customer Service RepresentativeDuties:- Respond to customer inquiries via phone, email, and chat in a timely and professional manner- Provide accurate information about products, services, and company policies- Assist customers with placing orders, tracking shipments, and resolving any issues or complaints- Maintain customer records and update information as necessary- Collaborate with other departments to ensure customer satisfaction- Follow up with customers to ensure their needs have been metRequirements:- Excellent communication skills, both verbal and written- Strong problem-solving abilities and attention to detail- Ability to multitask and prioritize tasks effectively- Proficient in using computer systems and software applications- Previous customer service experience is preferred but not required- High school diploma or equivalentWe offer competitive pay, a positive work environment, and opportunities for growth within the company. If you are a motivated individual with a passion for providing exceptional customer service, we would love to hear from you.To apply, please submit your resume and cover letter detailing your relevant experience and why you are interested in this position.Job Type: Full-timeSalary: $18.00-$20.00 per hourBenefits:Employee assistance programExtended health carePaid time offRRSP matchSchedule:Monday to FridayWeekends as neededAbility to commute/relocate:Guelph, ON N1E 1N5: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Speedvale Avenue East, Guelph, ON\"\n        },\n        {\n            \"id\": \"4EFCF1E5F8DA307E46930C693E067BF3\",\n            \"cityName\": \"805 Crowley Ave, Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=259356db1af2025b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Makr\",\n            \"rowSalary\": \"From $50,000 a year\",\n            \"date\": 1694483661973,\n            \"dateOfPosted\": 1694483661795,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8981956,\n                    \"lon\": -119.4834218\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Crowley Ave, Kelowna, BC V1Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our common goal, our passion, is to create global communities connected through play and social experiences. We believe the world needs more places where coming together, connecting and having fun are inevitable. What makes us jump out of bed every morning is knowing we’re integral to create these meaningful places, and we need people like you to help us build them.Our Customer Service Team, within our global Commercial Group, needs the next, great, Customer Service Representative (CSR) to deliver outstanding support to our sales professionals and our customers. This is a position suited for customer-focused, self-directed, solution-seekers.Our CSRs are a critical piece of the design and sales and process. Astute listeners, knowing how to elicit information from customers to help design and quote the spray park or playground of their dreams. Effective communicators, able to convey the design and technical details of our features, bringing the catalogue pictures to life. Techies, confidently navigating our systems and CRM (Creatio) to create detailed and accurate orders. Part administrator, part advisor and part account manager, you’re 100% problem solver.Although no two days are the same, here are the activities you’ll focus on:· Create documents and reports for internal and external use (sales funnel reports, quotes, contracts)· Support our sales team with administration, trouble shooting and research· Manage the order release process· Participate in training and professional development to learn new and current product solutions, processes and design philosophies· Delve into technical details of processes and systems, curious to find better ways and better methods· Apply your knowledge, maturity and common sense for what is non-negotiable while also knowing where you have autonomy to make adjustmentsJob Types: Full-time, PermanentSalary: From $50,000.00 per yearBenefits:Casual dressCompany eventsDental careDisability insuranceEmployee assistance programExtended health careFlexible scheduleLife insuranceOn-site parkingPaid time offRRSP matchTuition reimbursementVision careWork from homeFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payExperience:Customer service: 1 year (preferred)Work Location: Hybrid remote in Kelowna, BC V1Y 7G6\",\n            \"location\": \"Crowley Ave, Kelowna, BC\"\n        },\n        {\n            \"id\": \"EB65918C48B288106875CA0B595A9A6B\",\n            \"cityName\": \"11474 Winterburn Rd NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=38e5e64addcd300f\",\n            \"jobName\": \"Office Assistant/Customer Service\",\n            \"companyName\": \"Window Mart Inc.\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694483660836,\n            \"dateOfPosted\": 1694483660667,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5517793,\n                    \"lon\": -113.6890038\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Winterburn Rd NW, Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Office AssistantWindow Mart Inc. is the leading provider of windows and doors in Alberta, Saskatchewan, and Ontario. We specialize in supplying and installing beautiful, high-quality, and energy-efficient, windows and doors. As an industry leader in Canada, we are proud to provide our customers with exceptional serviceWindow Mart company is looking for a full time office assistant, we are looking for an enthusiastic, dedicated, and customer oriented person.Please note the interview will be held at our head office in EDMONTON. Related travel expenses will be covered.Responsibilities:Perform various administrative tasks such as filing documents, organizing mail and tracking e-mails.Receiving and tracking phone calls, checking the voicemail and returning the phone calls in a timely manner.Scheduling appointments, keep track of the appointment’s schedule.Communicate with clients, suppliers and work associates as required.Other office activities as determined by the supervisor.Qualifications:Grade 12 Diploma or General Equivalency Diploma (GED).Minimum of 1 year of office experienceProficient in Office 365Good oral and written communication skills, learning ability, initiative, mature judgment and responsible work habits.Job Type: Full-timeSalary: From $20.00 per hourBenefits:Company eventsOn-site parkingPaid time offFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayAbility to commute/relocate:Edmonton, AB T5S 2Y3: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Administrative experience: 1 year (preferred)Front desk: 1 year (required)Work Location: In person\",\n            \"location\": \"Winterburn, AB\"\n        },\n        {\n            \"id\": \"09A90B856C4530A08F7E953AB2D5D8B4\",\n            \"cityName\": \"Atlin, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4b995cc38d3ef797\",\n            \"jobName\": \"Clk 12r - Customer Service Representative\",\n            \"companyName\": \"Bc Public Service\",\n            \"rowSalary\": \"$52,803–$59,608 a year\",\n            \"date\": 1694483646221,\n            \"dateOfPosted\": 1694483646036,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 59.578028,\n                    \"lon\": -133.689524\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Atlin\",\n                \"formattedAddress\": \"Atlin, BC V0W, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Stikine Region\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Atlin\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 52803.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    52803.0\n                ],\n                \"range\": {\n                    \"gte\": 52803.0,\n                    \"gt\": null,\n                    \"lte\": 52803.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Posting Title  CLK 12R - Customer Service Representative  Position Classification  Clerk R12  Union  GEU  Work Options  On-Site  Location  Atlin, BC V0W 1A0 CA (Primary)  Salary Range  $52,803.18 - $59,607.79 annually  Close Date  9/25/2023  Job Type  Regular Full Time  Temporary End Date  Ministry/Organization  BC Public Service -> Citizens' Services  Ministry Branch / Division  Service Delivery/Service BC  Job Summary Apply your expertise and passion for innovation to this rewarding career opportunityMINISTRY OVERVIEWDedicated to making life better for British Columbians, the Ministry of Citizens’ Services (CITZ) delivers key services that people rely on. CITZ delivers accessible, multi-channel services, through a single-point-of-contact service approach to people in urban and rural communities through Service BC, and delivers the digital face of government at www.gov.bc.ca. CITZ also provides support for the expansion of high-speed internet connectivity throughout the province, leadership across government to modernize information management and technology resources, trusted data services to government agencies, prompt, and relevant responses to freedom of information requests, and statistical and economic research, information and analysis to businesses and the public sector. In addition, the ministry manages the Province’s real estate assets, technology systems and equipment, and leverages procurement to increase business opportunities and create rewarding jobs that contribute to local economies and benefit individuals, families, and communities.A service-focused organization, CITZ strives to be a great place to work, where all employees feel both engaged and motivated to do their best.DIVISIONAL OVERVIEWService BC is government’s chief provider of services to B.C. residents and businesses. The work of the division enables the design and delivery of accessible, responsive, and cost-effective services, making it easier for British Columbians and businesses to interact with government. Through a provincial network of 65 in-person offices and the Provincial Contact Center, Service BC provides approximately 300 government services for more than 40 partner ministries and agencies. Our team member’s unwavering commitment to an ethic of service has driven consistently high people and business satisfaction rates. In support of the division’s overarching goal of providing residents and businesses with seamless, multi-service access to government programs, the Division’s service offerings are marketed to partner ministries and the broader public sector to expand our continuum of services and leverage common platforms.Within Service BC, our vision is to deliver innovation, value, and service excellence to the people of British Columbia, with the aspirational goal of becoming a best-in-class public service delivery organization. Our people and our culture are important to us. As a team, we are motivated to deliver an excellent service experience to British Columbians, businesses, colleagues, peers, clients, and partners. We believe in being kind and helpful, and are committed to delivering “Service with Heart”.JOB OVERVIEWThe Service BC Customer Service Representative (CSR) maintains a positive, empathetic, and professional attitude when providing service and answering enquires. It requires the ability to identify and assess peoples’ needs to effectively and efficiently deliver an excellent customer service experience.The CSR provides services in-person, by phone, and through digital channels. The ability to provide clerical and administrative support such as data entry, reviewing applications for completeness, handling payments, and providing appropriate solutions, within government guidelines to a diverse population of people is essential to this role.JOB REQUIREMENTSMinimum Grade 12 graduation or equivalent (GED).Experience providing inclusive customer service to diverse clienteles. Experience using digital applications to search for and record information. Preference may be given to applicants with the following:Multiple years of experience in any of the above requirements.Experience providing in-person customer service.Experience providing customer service though phone or digital channels.Experience delivering customer service in a high volume, fast-paced, rapidly changing environment.Experience with conflict resolution and de-escalating situations.Experience providing services to a diverse population some of whom may be experiencing poverty issues, substance use, or mental health concerns.Experience maintaining administrative files and record keeping.Experience delivering service in a regulated or legislated environment following processes and procedures.Customer Service training and/or education. Experience handling financial transactions. WILLINGNESS Willingness to travel occasionally to provide relief coverage to other work sites (Service BC Centres, exam locations, etc.). For questions regarding this position, please contact melody.olsen@gov.bc.caAbout this Position:An eligibility list may be established to fill future temporary and permanent vacancies across the Ministry of Citizens' Services This position has full time on-site requirements.Employees of the BC Public Service must be located in BC at the time of employment.Frequently referred to as the Switzerland of the North, Atlin resides on the province's largest natural lake, Atlin Lake. Atlin is also home to massive ice fields and popular activities include boating, fishing, and skiing. Some unique activities distinct to Atlin are glacier hiking and snowshoeing, and mountain biking is also popular.Working for the BC Public Service:The BC Public Service is committed to creating a diverse workplace to represent the population we serve and to better meet the needs of our citizens. Consider joining our team and being part of an innovative, inclusive and rewarding workplace.The Indigenous Applicant Advisory Service is available to applicants that self-identify as Indigenous (First Nations, status or non-status, Métis, or Inuit) seeking work or already employed in the BC Public Service. For guidance on applying and interviewing, please contact IndigenousApplicants@gov.bc.ca or 778-405-3452.The BC Public Service is an award-winning employer and offers employees competitive benefits, amazing learning opportunities and a chance to engage in rewarding work with exciting career development opportunities. For more information, please see What We Offer.How to Apply:Your application must clearly demonstrate how you meet the job requirements listed above.Cover Letter: NO - Please do not submit a cover letter as it will not be reviewed.Cover Letter: YES - A cover letter is required as part of your application. The content and/or format of your cover letter may be evaluated as part of the assessment process.Questionnaire: YES - You will need to complete a comprehensive questionnaire to demonstrate how you meet the job requirements. Include all relevant information about your educational accomplishments and employment history including job titles, start and end dates (month and year) of your employment, and how you obtained your relevant experience. The questionnaire will take approximately 60 minutes to complete.Helpful tips, videos and more regarding the application process can be found on the Your Job Application page of MyHR. If you are experiencing technical difficulty applying, e-mail BCPSA.Hiring.Centre@gov.bc.ca, before the stated closing time, and we will respond as soon as possible.Additional Information:A Criminal Record Check (CRC) will be required.Applicants selected to move forward in the hiring process may be assessed on the Knowledge, Skills, Abilities and Competencies as outlined in the attached Job Profile located at the bottom of the posting.Applications will be accepted until 11:00 pm Pacific Standard Time on the closing date of the competition. Job Category  Administrative Services \",\n            \"location\": \"Atlin, BC\"\n        },\n        {\n            \"id\": \"68B957ADE4A915DCCBF714F7638157AB\",\n            \"cityName\": \"Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f0645a438b3fbaaa\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Cloverdale Paint Inc\",\n            \"rowSalary\": \"$17.50–$18.50 an hour\",\n            \"date\": 1694483460401,\n            \"dateOfPosted\": 1694483459997,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4284207,\n                    \"lon\": -123.3656444\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cloverdale Paint is the largest family owned and operated paint company in North America. With over 70 Company stores and 150 Authorized Dealers across Canada, Cloverdale Paint has had a special relationship with its customers ever since the company was founded in 1933.Cloverdale Paint has an immediate opening for a full-time position at our store in Victoria, BC The successful candidate should have previous customer service experience and a positive attitude.This individual should be available to work for 4-5 shifts per week.We are located at 1616 Cedar Hill X Road, Victoria, BCCloverdale offers a very competitive compensation package and strives to be The Place to Be not only for customers but employees as well.WHAT WE OFFERCompany paid benefits – Medical, Dental and VisionAnnual cost of living salary increasesProfit-sharing ProgramFamily Assistance ProgramStaff DiscountsComprehensive trainingA supportive and growth-oriented management teamA great work environment with collaborative and caring colleagueRESPONSIBILITIESAnswering basic customer inquiries in person and by phoneDetermining and recommending products to customers ensuring the customer is supplied with all items required for their projectTinting & shaking paint accuratelyKeying in sales and operating basic functions of the POS systemREQUIREMENTSAt least 1-year of Retail Sales and/or Paint Industry experienceAbility to lift up to 50lb regularlyAbility to stand for long periods of timeAbility to work in a fast-paced environmentExcellent customer service skillsAttention to detailGood communication skillsStrong problem solving skillsTeam playerStrong work ethic, with a can-do attitudeWe are accepting resumes in store from candidates at 1616 Cedar Hill X Road, Victoria, BCOur employees enjoy excellent work environments, respectful workplaces with credible leadership and receive fair remuneration and annual profit sharing. Be part of a Canadian family owned business and be valued, appreciated and respected!Job Types: Full-time, PermanentSalary: $17.50-$18.50 per hourBenefits:Casual dressDental careEmployee assistance programExtended health careFlexible scheduleOn-site parkingPaid time offProfit sharingStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftWeekends as neededAbility to commute/relocate:Victoria, BC: reliably commute or plan to relocate before starting work (required)Application question(s):Are you capable of standing for long periods of time?Are you capable of lifting up to 50 lb regularly?Are you available to work 4-5 shifts per week?Are you available to work weekends?Experience:Customer Service: 1 year (required)Paint/Coatings: 1 year (required)Work Location: In person\",\n            \"location\": \"Victoria, BC\"\n        },\n        {\n            \"id\": \"AC816F08EE5005062CC04BB8DC9426B1\",\n            \"cityName\": \"4848 Victoria Avenue, Niagara Falls, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8b442bd5ea76027f\",\n            \"jobName\": \"Customer Service And Programming Manager\",\n            \"companyName\": \"Niagara Falls Public Library\",\n            \"rowSalary\": \"$52.92 an hour\",\n            \"date\": 1694483413958,\n            \"dateOfPosted\": 1694483413535,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1046199,\n                    \"lon\": -79.07322769999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara Falls\",\n                \"formattedAddress\": \"Victoria Ave, Niagara Falls, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Niagara Falls\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 53.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    53.0\n                ],\n                \"range\": {\n                    \"gte\": 53.0,\n                    \"gt\": null,\n                    \"lte\": 53.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Manager, Customer Service and ProgrammingNiagara Falls Public LibraryFull-Time, PermanentNiagara Falls Public Library is seeking an individual for the role of Customer Service and Programming Manager to lead and manage library staff in creating an outstanding library experience and ensuring that services satisfy the communities’ diverse needs.This encompasses developing a deep understanding of the community; working with others to plan, design, deliver, and assess frontline public services and programs including circulation and information services, collections, and the maintenance of loans delivered through all Library locations; and working with the Management Team to identify and assess current services for improvement or redesign.The successful candidate will have a demonstrated commitment to organizing and managing a strong team, strong attention to detail, and enthusiasm for delivering exceptional services that meet community needs. The successful candidate will also demonstrate responsibility and a strong work ethic.Key Responsibilities:Leadership:· Directs the development, delivery and evaluation of all loans, collection and information services, and programmes to all ages and to all customers, ensuring system-wide coordination.· Implements services that complement each other at NFPL's physical and virtual branches.· Develops short and long-term customer service plans to implement the Library's strategic objectives.· Implements and sustains customer-centred services, both in person and in virtual space.· Ensures that service offerings throughout the system meet the Library's short and long-term objectives, and are consistent and fully supported.· Guides a frontline team that engages with vulnerable populations requiring connections to community supports.Management:· Collaborates with management and staff teams to ensure the effective and efficient delivery of system-wide library services, in order to fulfill the Library's strategic objectives.· Ensures that service offerings throughout the system meet the Library's short and long-term objectives, and are consistent and fully supported.· Ensures the consistent, effective and customer-friendly delivery of all public services.· Operationalizes service changes and innovations.· Monitors and interprets operational and service trends, including those from other organizations, and ensures relevant adaptations.· Evaluates service performance to ensure consistency and relevance to the communities served.· Manages public relations, including customer feedback and complaints.· Applies change management strategies to assure effective implementation of change and acceptance by all.· Makes presentations and represents the Library at public meetings and in the community as required.· Manages the effective performance of all staff directly or indirectly supervised.· Prepares statistics and reports as required.· Stays abreast of professional and community knowledge, in order to enhance services and the· Library's community role.· Attends and participates in Board and Board Committee meetings as required.· Participates in the budget process to ensure adequacy of resources to execute objectives and monitors assigned budgets.· Ensures effective operation of physical plant and equipment.· Manages major projects.· In the absence of the CEO and Director of Customer Experience, acts as senior leader of the corporation of NFPL with delegated powers of authority in all areas including but not limited to: Human Resources; Emergency Management; and Communications.· Shares accountability for ensuring a safe and respectful workplace.· Other duties consistent with job responsibilities.Skills, Knowledge, Training:· Master's Degree in Library and Information Science or equivalent qualification. Master’s in Public Administration, or Masters in Business Administration, or Masters in Social Work considered an asset.· Minimum of seven (7) years related library experience in progressively responsible positions, including five (5) years in a managerial capacity.· Valid G-class License and access to a vehicle.· Demonstrated familiarity with data from various sources and in various formats.· Demonstrated familiarity with current technology.· Key Competencies:· Superior communications· Commitment to outstanding customer service· Data analysis· Planning and organization· Problem-solving/decision-making· Continuous learning· Innovativeness/Change management· Superior interpersonal skills· Leadership focus· Supervisory effectiveness· Engagement and Outreach· Technology - Level Three· Reader’s Advisory & Reference· Programming and OutreachWorkplace Environment:The NFPL strives to be a workplace which fosters respect for all customers and co-workers, and requires employee commitment to the following;· Adherence to the legal requirements of all levels of government, e.g. Health and Safety, Human Rights, Harassment, Freedom of Information and Privacy.· Adherence to the policies and procedures of the Library which implement these requirements.· Building and nurturing positive relationships among and with customers and colleagues.· Culture of teamwork, collaboration and respectful feedback.Position Type:Full-Time, permanentWage:$52.92Work Hours:This position requires day availability in order to support library operations.How to Apply:Email your cover letter and resume detailing your qualifications to hr@nflibrary.caApplications deadline is 4:30 PM Friday September 22nd.Applicants must be eligible to work in Canada. Police/Vulnerable Sector Check required.While we appreciate all applicants, only those selected for an interview will be contacted.The Niagara Falls Public Library is committed to providing accommodations in all aspects of the recruitment and hiring process under the Ontario Human Rights Code and the Accessibility for Ontarians with Disabilities Act (AODA).Job Types: Full-time, PermanentSalary: $52.92 per hourBenefits:Employee assistance programOn-site parkingPaid time offSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Niagara Falls, ON L2E 4C5: reliably commute or plan to relocate before starting work (required)Education:Master's Degree (preferred)Experience:Library: 7 years (preferred)managerial: 5 years (preferred)Work Location: In personApplication deadline: 2023-09-22\",\n            \"location\": \"Victoria Avenue, Niagara Falls, ON\"\n        },\n        {\n            \"id\": \"6A89C7C99D81F72A0362E293665D0739\",\n            \"cityName\": \"55 Ontario Street South, Milton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8a4ae7e763afdd51\",\n            \"jobName\": \"Receptionist/ Customer Service Representative/ Party Host\",\n            \"companyName\": \"Funvilla\",\n            \"rowSalary\": \"$15.50–$16.00 an hour\",\n            \"date\": 1694483311347,\n            \"dateOfPosted\": 1694483311164,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5127272,\n                    \"lon\": -79.86986399999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Milton\",\n                \"formattedAddress\": \"Ontario St S, Milton, ON L9T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Milton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Funvilla® is a fast paced and demanding working environment providing a service to the public Monday to Sunday. Therefore enthusiasm, good communication and flexibility are all important aspects of the job. The role of the Customer Service/Receptionist is to deliver high quality customer service in all areas of the park to ensure that all customers and participants have an enjoyable and safe experience. The Customer Service/Receptionist will take direction from management in carrying out delegated tasks and adopt a leadership role in areas assigned to him/her as required.DUTIES & RESPONSIBILITIES: FRONT DESK/RECEPTION/PARTY HOST1. Ensure that all customers feel welcome and are given responsive, friendly and courteous service always.2. Efficiently check in customers ensuring that waivers have been completed fully (online or paper), allocate relevant color-coded wristbands and compulsory grip socks.3. Provide necessary park information at customer’s request e.g. opening times, prices, safety information, information on services we offer i.e. Birthday Parties etc.4. Ensure the reception area is always kept clean & tidy .5. Conduct regular grip sock replenishment.6. Answer phone calls promptly.7. Host birthday parties as per Funvilla guidelines.8. Provide best party experience during party hosting by providing exceptional customer service during the party and clean up room once party is over.Need someone who can work Weekends Saturday-Sunday and during the week!Job Types: Permanent, Part-time, Full-timeSalary: $15.50-$16.00 per hourFlexible Language Requirement:French not requiredSchedule:Every WeekendHolidaysMonday to FridayExperience:Customer Service: 1 year (preferred)Licence/Certification:Food Handler Certification (preferred)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Ontario Street South, Milton, ON\"\n        },\n        {\n            \"id\": \"86501F5C266D8F498CFEA6384768F73F\",\n            \"cityName\": \"SBO Distributors Ltd. in North Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=13a5d01ddb44d12d\",\n            \"jobName\": \"Customer Service And Data Entry\",\n            \"companyName\": \"Sbo Distributors Ltd.\",\n            \"rowSalary\": \"$40,000–$45,000 a year\",\n            \"date\": 1694483306664,\n            \"dateOfPosted\": 1694483306471,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3199816,\n                    \"lon\": -123.0724139\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"North Vancouver\",\n                \"formattedAddress\": \"North Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"North Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"SBO Distributors Ltd. is a fast growing, fast paced sales and marketing agency working in the mid to high-end gift, jewellery, fashion and accessories/life style market. We work with leading department stores and independent retailers across Canada. We are looking for a strong candidate for a Customer Service and Data Entry position.The Opportunity:A key member of the SBO Distributors Ltd team, the Customer Service and Data Entry personnel will be responsible for a wide variety of administrative support and will also work closely with our customers to ensure high customer satisfaction.The candidate must be able to:Work independently in a small office of 1-4 peopleEnter data and sales orders proficiently and accurately in various forms from excel to online submission (training will be provided)See through order processes including order entering, confirmation, courier tracking and invoicingHandle inbound/outbound calls, providing all customers with exceptional positive customer serviceAssist with Marketing and Sales projectsPerform day-to-day office tasks such as pack and ship small parcels, letters, and photocopy, scan documents, receive delivery (generally small deliveries).We expect the candidate to be efficient, honest, respectful, creative, independent, modest, growth oriented and possessing an excellent customer service mentalityEducation and skills:Post Secondary degree or diplomaExcellent command in Microsoft Office applications (Word, Excel, Powerpoint, Outlook)Tech-Friendly preferred – able to adapt to new softwareHave experience in SAP/Netsuite would be an assetFluency in English is required. Knowledge and/or competency in French is an assetSelf motivated, analytical and very detailed orientedHighly organized and the ability to prioritize and multitaskStrong interpersonal and communication skills on the phone and in personPassionate about helping customers and being the ambassador of the brands we representCandidate must be reliable, responsive and good at relationship buildingWhat we have to offer:A tight-knit team working closely togetherAn open minded and flat management style with plenty of opportunities to offerCompetitive compensation and benefit packageThis position is a full time, permanent position. Following successful completion of probationary period, the position is eligible for health benefits.Very convenient office location close to bus stops and Sea BusExcellent working environmentVacation pay aligns with BC Labour StandardsSalary is commensurate with experienceSBO Distributors Ltd. provided the following inclusive hiring information:We are an equal opportunity employer and consider all qualified applicants equally without regard to race, colour, religion, sex, sexual orientation, gender identity, national origin, veteran status, or disability status.Job Type: Full-timeSalary: $40,000.00-$45,000.00 per yearBenefits:Casual dressDental careExtended health careStore discountVision careSchedule:Monday to FridaySupplemental pay types:Bonus payEducation:Bachelor's Degree (preferred)Experience:Administrative: 1 year (preferred)Customer Service: 1 year (preferred)Language:English (required)Work Location: In personExpected start date: 2023-10-16\",\n            \"location\": \"North Vancouver, BC\"\n        },\n        {\n            \"id\": \"A116DB6C33325A5B5C1CBE05649A8474\",\n            \"cityName\": \"Halton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=333bd7be3c641686\",\n            \"jobName\": \"Customer Service Representative - Long-Term Care\",\n            \"companyName\": \"Halton Region\",\n            \"rowSalary\": \"$19.56–$20.72 an hour\",\n            \"date\": 1694483039952,\n            \"dateOfPosted\": 1694483039760,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.53253720000001,\n                    \"lon\": -79.87448359999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Regional Municipality of Halton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative - Long-term Care At Halton Region, we treat everyone with respect, honesty, fairness and trust. As an equal opportunity employer, we are committed to establishing a qualified workforce that is reflective of the diverse population we serve. Halton Region is committed to providing accommodation to individuals with disabilities throughout the recruitment process.We are proud to operate three non-profit long-term care homes where our employees make a meaningful contribution on the lives of the residents by providing quality care in a family-like atmosphere. As an employee, you will be part of a progressive, service-focused and award winning employer with a diverse and inclusive work environment. We are also recognized as a Registered Nurses' Association of Ontario (RNAO) Best Practice Spotlight organization.You make a positive difference in people’s lives because you provide high quality customer centered services. You operate within a highly ethical environment and will be accountable for going the extra mile, listening to your customers, creatively meeting needs and always being respectful to those you serve. As a result, you will be part of a qualified and strategic team recognized widely for caring, excellence, integrity, inclusiveness and flexibility.Posting ID: 2304Department: Social & Community ServicesDivision: Services for SeniorsPay Range: $19.56 - $20.72Job Type: PermanentHours of Work: 14 hours per weekWork Location: Creek Way Village Long Term Care Facility - 5200 Corporate Drive, BurlingtonEmployee Group: OPSEU LTCPosting Date: September 11, 2023Application Deadline: September 18, 2023 Job Summary This role is the first point of contact for visitors to the Home. This role will provide customer service and clerical support for the Home.Duties & ResponsibilitiesProvide coverage of the reception desk and telephone systems.Greet visitors, respond to and or direct family/residents/visitors’ inquiries.Ensure that the front entry is secure, entry cards are monitored.Monitor the Wander Guard alarms and liaise with the Nurse in Charge as appropriate.Actively screen all staff and visitors entering the home and ensures all protocols for entering the home are adhered to.General office administration including room bookings, ordering and set up of refreshments, posting of materials, office supply inventory, ordering, unpacking and storing, maintaining tour packages and other forms, receipt and distribution of pay stubs.Work with the managers to assist with job postings, performance review and training schedules, immunization databases, credential validation, etc.Provide administrative and clerical support for all departments, including meal ticket administration and receipt of new resident’s clothing, supply delivery as required, and support with minute taking.Assist with updating emergency evacuation kits and any required documentation including photographs.Assist with communication to internal and external stakeholders.Coordinate the scheduling of various clinics in the home including optometry, dental, foot care in collaboration with the service provider.Assist in the admission process through chart assembly, bringing up resident belongings and other related duties.Assist with conducting tours of the home with potential customers.Provide back up support as necessary for the Administrative Assistant to the Administrator and the Resident Care Clerk.Participate in the annual filing and archiving of home documents.Other duties as assigned.Skills & Qualifications EssentialPost-secondary diploma in business administration or related field.Minimum of 2 years’ experience in a customer focused position.Excellent interpersonal skills with the ability to maintain a professional, empathetic and positive environment for all customers.Highly adaptable with the ability to work in a fast-paced environment.Ability to work as part of a team and independently.Excellent problem/complaint resolution skills with the ability to maintain professionalism and composure when responding to customer demands.Demonstrated experience in Microsoft Office software is essential with intermediate to advanced skills in Word, Excel, PowerPoint, and Outlook.Working/ Employment Conditions Employment ConditionsCurrent (obtained within the past six (6) months), original and acceptable Criminal Records Check, including Vulnerable Sector Screening.Current two-step tuberculosis test (obtained within the past six (6) months.Important information about your application:In accordance with requirements in Ontario Regulation 191/11 – Integrated Accessibility Standards and the Ontario Human Rights Code, Halton Region will accommodate the needs of individuals with disabilities throughout the recruitment process. If you require accommodation at any stage of the recruitment process, please inform the Talent Acquisition representative of the nature of the accommodation(s) you require.Please submit your application online. We will accommodate individual needs for applicants with disabilities and others who are not able to apply online. If you experience any issues with submitting your application, please contact HR Access at 905-825-6000 extension 7700.Applications will be accepted until 11:59 p.m. on the deadline date specified on the posting.We encourage applications from all qualified individuals; however, only those under consideration will be contacted.Personal information collected through the job application process will only be used for the purpose of determining qualifications for employment.If selected for an interview, you will be contacted by email and/or phone. Please ensure the contact information provided on your resume is up to date and that you check your email and voicemail regularly.Halton Region serves more than 624,000 residents throughout Burlington, Halton Hills, Milton and Oakville. We are committed to the delivery of high quality programs and services that make Halton a great place to live and work. We engage great people who contribute to meaningful work that makes a positive difference in our community. At Halton, you are encouraged to grow and succeed in your career and are recognized for your accomplishments and contributions.\",\n            \"location\": \"Halton, ON\"\n        },\n        {\n            \"id\": \"8FDEDE52278E57E7AE484547E57728DF\",\n            \"cityName\": \"grt genesis in Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1d3295610d288688\",\n            \"jobName\": \"Technical Customer Service Representative\",\n            \"companyName\": \"Grt Genesis\",\n            \"rowSalary\": \"From $40,000 a year\",\n            \"date\": 1694483013897,\n            \"dateOfPosted\": 1694483013617,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Establish long- term relationships with clients through proactive communication and regular follow -ups to ensure superior client satisfactionManage accounts by checking customers purchasing history, suggest related and new products.Mechanical Engineering experience an assetDevelop and implement strategies that effectively offer customers products or services that best satisfy their needs in terms of quality, price and deliveryEstimating and Expediting an assetmust read write EnglishOutgoing personalityStrong work ethic, with attention to client needs and projectsAbility to work successfully both autonomously and within a teamKey values include a positive attitude ,and team player.Ability to build strong relationships quickly and effectively.computer skillsJob Types: Full-time, PermanentSalary: From $40,000.00 per yearBenefits:Casual dressCompany eventsExtended health careLife insuranceOn-site parkingVision careSchedule:8 hour shiftDay shiftMonday to FridayEducation:AEC / DEP or Skilled Trade Certificate (required)Experience:Technical support: 2 years (required)Work Location: In personExpected start date: 2023-09-18\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"CB0FCCB6D8952DEEDA75135C505A9D49\",\n            \"cityName\": \"94 Dunkirk Road, St. Catharines, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d9aaa28713c4d613\",\n            \"jobName\": \"Front Office Customer Service Representative\",\n            \"companyName\": \"Niagara Rubber Supply\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694483011400,\n            \"dateOfPosted\": 1694483011199,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.16893109999999,\n                    \"lon\": -79.21492409999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St. Catharines\",\n                \"formattedAddress\": \"Dunkirk Rd, St. Catharines, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"St. Catharines\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title: Customer Service RepresentativeDuties:- Provide exceptional customer service by responding to customer inquiries and resolving issues in a timely and professional manner- Handle a high volume of incoming calls, emails, and live chats from customers- Accurately enter customer information and update account details in the system- Assist customers with product information, pricing, and order status inquiries- Process customer orders, returns, and exchanges- Collaborate with other departments to ensure customer satisfaction- Maintain a thorough understanding of company products, policies, and procedures- Identify and escalate priority issues to appropriate team members- Follow up with customers to ensure their needs are met and provide additional assistance as neededQualifications:- High school diploma or equivalent required; college degree preferred- Hands on experience required - on the job training- Excellent communication skills, both verbal and written- Strong problem-solving and decision-making abilities- Ability to work well under pressure in a fast-paced environment- Proficient computer skills, including experience with CRM software and Microsoft Office Suite- Ability to multitask and prioritize tasks effectively- Positive attitude and willingness to go above and beyond for customersWe offer competitive pay and opportunities for career growth within our organization.If you are a motivated individual with a passion for delivering exceptional customer service, we would love to hear from you. Please submit your resume and cover letter detailing your relevant experience.Job Type: Full-timeSalary: $18.00-$20.00 per hourFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Bonus payAbility to commute/relocate:St. Catharines, ON L2P 3H4: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Hand tools: 1 year (preferred)Customer service: 1 year (preferred)Licence/Certification:Driving Licence (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Dunkirk Road, St. Catharines, ON\"\n        },\n        {\n            \"id\": \"F2625E0AF9A4B05CC77EE74C795B39A2\",\n            \"cityName\": \"1550 Carling Ave, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a1257800985815a8\",\n            \"jobName\": \"Customer Service Receptionist\",\n            \"companyName\": \"Young Drivers Of Canada\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694482891642,\n            \"dateOfPosted\": 1694482891442,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.35917600000001,\n                    \"lon\": -75.79599209999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Carling Ave, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About UsWe are a locally-owned family business operating all Young Drivers locations in Ottawa. We run the daily operations for all 5 locations out of our office located next to our Carling classroom. YD Ottawa, we're more than just a driving school—we're a community. Our team thrives on collaboration, inclusivity, and a genuine love for our work. We're LGBTQ+ friendly and committed to supporting each other at every turn. If you're a team player who doesn't take life too seriously but values hard work, you'll fit right in.ResponsibilitiesPrioritize tasks effectivelyAnswer phones and emails and efficiently address customer queries and manage bookingsHandle administrative tasks: paperwork, emails, scheduling and date entryUse conflict resolution skills to find solutions for customers that are not pleasedBuild and maintain a positive rapport with customersQualificationsHighschool diplomaCustomer service experienceOffice admin experience is preferred, not mandatorySkillsSelf-starter with attention to detailComfortable on the phone and customer relationsWillingness receive feedback and make improvements to their customer resolution and inbound sales skillsTeam player, loyal, empathetic, and reliableStrong written and verbal communication skillsA sense of humour and a positive attitudeKey Performance IndicatorsCustomer satisfactionTask completionFeedback from colleaguesOpportunities for Professional DevelopmentBased on performance, there are opportunities to take on additional responsibilities and grow within the business. We are committed to helping our team grow by sharing our range of skills and experiences. We're always open to hosting or signing up for workshops to help us all thrive. Collaboration is key here—your ideas are always welcome.Flexible Work ArrangementsOnce you're fully trained and capable of working independently, we offer a modified workweek: you'll work 9 hours for four days a week, and 8 hours on the fifth day. This fifth day alternates with a day off the following week.How to Apply:Complete the assessments within this job posting to be considered for an interview. Initial interviews may be followed up with a second round for suitable candidates. While we'll cover the usual interview questions, we also make room for open conversation. We're interested in more than just your qualifications; we want to get to know you and see your unique personality come through.Job Types: Full-time, PermanentSalary: $20.00-$22.00 per hourBenefits:Casual dressDental careExtended health careOn-site parkingPaid time offVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftAbility to commute/relocate:Ottawa, ON K1Z 8S8: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:customer service experience in an office setting: 2 years (preferred)Language:English (required)Work Location: In person\",\n            \"location\": \"Carling Avenue, Ottawa, ON\"\n        },\n        {\n            \"id\": \"094396118CED4C84CFA4653F5AF2FDF8\",\n            \"cityName\": \"517 Pandora Ave E, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9979e9de227f9bbf\",\n            \"jobName\": \"Customer Service - Transcona East End Community Club\",\n            \"companyName\": \"Transcona East End Community Club\",\n            \"rowSalary\": \"$14 an hour\",\n            \"date\": 1694482887847,\n            \"dateOfPosted\": 1694482887674,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8934199,\n                    \"lon\": -96.9859699\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Pandora Ave E, Winnipeg, MB R2C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Front Desk Staff - Must be 18About usTranscona East End Community Club - Front Desk StaffGreeting players, coaching staff and visitors as they enter the facility.Collect payment for ice and hall rentals.Greeting players, coaching staff and visitors as they enter the facility.Directing visitors to follow health and safety protocol. Some experience working with the pubic is preferable.Job Type: Part-timePart-time hours: 10-15 per weekSalary: $14.00 per hourSchedule:Evening shiftWeekends as neededCOVID-19 considerations:We provide all PPE.Experience:Customer Service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Pandora Ave E, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"AAD8134F2A12D668EC03E7202D5F3E8F\",\n            \"cityName\": \"407-8 Speers Rd, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=aa8408bbe410a944\",\n            \"jobName\": \"Front Desk Customer Service Representative\",\n            \"companyName\": \"Oakville Swim Academy\",\n            \"rowSalary\": \"$16.50–$19.00 an hour\",\n            \"date\": 1694482880889,\n            \"dateOfPosted\": 1694482880700,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4274228,\n                    \"lon\": -79.70875029999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Speers Rd, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Duties and Responsibilities:Answers telephones, responds to inquiries, takes messages and screens and directs phone calls in a professional manner.Create and update social media accounts under the supervision of communication & external relations director.Processes student registrations using effective sales/customer service techniques.Resolves customer concerns/complaints using a professional approach.Assists members with purchases of merchandise and vending.Greets parents and students as they report to the front desk.Checks in students on the attendance tracking system.Maintains cleanliness of the front desk area, changing areas, restrooms and observation area.Checks voicemail and email correspondence and responds in a timely manner.Updates informational displays with accurate and timely promotions and literature.Provides occasional administrative support for management personnel, including the General Manager.Makes collection calls to resolve open account problems.Prepares daily student lesson schedules for use by deck supervisor and/or instructors.Enforces safety rules and regulations to prevent accidents.Fulfills other duties and responsibilities as assigned by the Employer.Education/Experience:High school diploma or GED required.Some college preferred.One to two years previous customer service and/or administrative office experience preferred but not required.Intermediate level computer skills required using Word, Excel and other software systems.Experienced in JackRabbit software preferred but not required.Certifications and licenses:CPR, First Aid and AED certification preferred but not required.NLS + Instructors certification preferred but not required.Work Remotely:NoFirst 3 months start at $16.50/hr. Once probation period has been successfully completed, move up to agreed rate of pay.Training for new CSR hires will be conducted during the beginning of August, specifically during morning shifts between 7:00 am and 1:30 pm. We understand the importance of a flexible schedule, especially during the initial weeks of transitioning into the role. As such, we offer flexible shifts for the first 2-3 weeks of September to accommodate individual availability.Following the initial training period, starting from the end of September, regular evening and weekend shifts will commence. This will provide a more stable schedule for our Customer Service Representatives.We aim to create a work environment that supports a healthy work-life balance, and we appreciate your understanding and willingness to adapt to the evolving shift requirements.Job Types: Part-time, PermanentPart-time hours: 10-20 per weekSalary: $16.50-$19.00 per hourBenefits:Casual dressCompany eventsFlexible scheduleOn-site parkingStore discountTuition reimbursementWellness programFlexible Language Requirement:French not requiredSchedule:10 hour shift4 hour shift8 hour shiftDay shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Oakville, ON: reliably commute or plan to relocate before starting work (required)Application question(s):Are you available to work between the hours of 2pm-10 pm on weeknights and / or 7 am -5:30 pm on weekends?Are you available to work on Monday's and or Tuesday's 2-9:30 and Saturday's 7:00-1:30 pm?Education:Secondary School (preferred)Experience:Customer service: 1 year (required)Work Location: In personApplication deadline: 2023-09-18Expected start date: 2023-09-23\",\n            \"location\": \"Speers Rd, Oakville, ON\"\n        },\n        {\n            \"id\": \"9C7DFBAB31BBC06A52286F9E9905185C\",\n            \"cityName\": \"1-6503 67 St, Red Deer, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e778326775e946a3\",\n            \"jobName\": \"Technical Support & Customer Service Agent (Bilingual English/French)\",\n            \"companyName\": \"Visual-Eyes Software (Soth Inc.)\",\n            \"rowSalary\": \"$18.52–$20.23 an hour\",\n            \"date\": 1694482231258,\n            \"dateOfPosted\": 1694482231012,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.268975,\n                    \"lon\": -113.8115599\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Red Deer\",\n                \"formattedAddress\": \"Red Deer, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Red Deer County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Red Deer\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Visual-Eyes is a leading practice management software for the eye care industry in Canada. We have been in business for over 25 years and are looking for a new Technical Support & Customer Service Agent (Bilingual in French/English) to join our Red Deer team. Our Core Purpose is to be \\\"Partners in the journey to success\\\" with our clients and what we do best is to \\\"Streamline Business Processes\\\".The Technical Support Agent’s primary focus is to provide premium remote customer service to our clients related to their Visual-Eyes software. This position must be able to quickly resolve basic issues in order to maintain a manageable queue level, and also manage customer call backs / follow ups appropriately.This position, once fully trained, is required to carry the emergency support phone after hours in a weekly rotation with the other 8 agents. As well, occasional evening/weekend work is required to update our clients’ software version while they are closed for business. Extra compensation is provided for both the on-call emergency phone and updates after hours.What do we offer? An exciting career opportunity, full health benefits, Group RRSP's, monthly staff events, a relaxed corporate atmosphere (you can wear jeans to work), and the chance to work with a group of crazy talented people who are driven to do what's best for our clients.Requirements:- Bilingual in French and English- Good Attitude and Solid Work Ethic- High Attention to Detail- Customer Service experience- Technical aptitudeTo learn more about us, please visit us at: www.visual-eyes.ca*We thank all candidates who apply, however, only those considered for an interview will be contacted.**We have a scent free office.Job Types: Full-time, PermanentSalary: $18.52-$20.23 per hourBenefits:Casual dressCompany eventsDental careDisability insuranceEmployee assistance programExtended health careLife insuranceOn-site parkingPaid time offRRSP matchSchedule:8 hour shiftMonday to FridayOn callAbility to commute/relocate:Red Deer, AB T4P 1A3: reliably commute or plan to relocate before starting work (required)Language:French (required)Work Location: In person\",\n            \"location\": \"Red Deer, AB\"\n        },\n        {\n            \"id\": \"9E4C2B2D218FDD9B1B29F96480B44F3B\",\n            \"cityName\": \"2106 Truscott Dr, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2a599f6f78663aa4\",\n            \"jobName\": \"Customer Service Representative And Animal Care Assistant\",\n            \"companyName\": \"Southdown Animal Clinic\",\n            \"rowSalary\": \"$16–$23 an hour\",\n            \"date\": 1694482155737,\n            \"dateOfPosted\": 1694482155546,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5191697,\n                    \"lon\": -79.6409623\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Truscott Dr, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Southdown Animal Clinic is dedicated to providing excellent quality care with compassion and high standards of medicine & surgery. We are looking for a positive individual who is passionate about animals and works well with people. The individual must have good people skills and organizational skills. The individuals core focus will be as a part of the front desk team, as a client care specialist/receptionist. The team member will also be cross-trained on all aspects of patient handling & restraint, providing treatment, surgical prep and hospital sanitation. Previous animal experience and customer service experience is an asset. Strong communication skills required. A passion for all animals is required. Must work well as part of a team at the clinic. This is a full time, permanent position. PLEASE PROVIDE A COVER LETTER ALONG WITH YOUR RESUME.Job Type: Full-timeSalary: $16.00-$23.00 per hourBenefits:On-site parkingSchedule:10 hour shiftHolidaysMonday to FridayWeekends as neededCOVID-19 considerations:Masks are optional to clients and staff.Ability to commute/relocate:Mississauga, ON: reliably commute or plan to relocate before starting work (preferred)Education:Secondary School (preferred)Work Location: In personExpected start date: 2023-10-01\",\n            \"location\": \"Truscott Dr, Mississauga, ON\"\n        },\n        {\n            \"id\": \"41B094D082774A1011BB9523515300CC\",\n            \"cityName\": \"Levelup Reality in Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=86642eec3e63ab7c\",\n            \"jobName\": \"Vr Arcade Customer Service Representative Or StOre Associate\",\n            \"companyName\": \"Levelup Reality\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694479048146,\n            \"dateOfPosted\": 1694479047958,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"PLEASE DO NOT CONTACT OR EMAIL ARCADE DIRECTLY ABOUT JOB OPPORTUNITIES. ALL COMMUNICATIONS WILL BE VIA INDEED.Job SummaryAre you tech-savvy and great at games? A friendly game master who enjoys teaching others?We are looking for VR Customer Service Representatives or Associates to help customers have fun in the exciting world of VR! Bonus: You'll get to learn about virtual reality and play lots of games!RequirementsThe role requires weekday and weekend availability (minimum Thursday, Friday, Saturday, Sunday, and Holidays).Benefits and CompensationIncludes Performance Bonuses and Tips!Skills That We're Looking For:You love teaching new things: You enjoy showing customers how to learn something new for the first time.You’re great with teamwork: You work well with others in a team-based environment.You have strong customer service support: You are patient with the customer or client regardless of technological affinity, gaming background, and/or disabilities. You can take the time to listen and understand their concerns and can diffuse tense moments if they arise.You’re tech-savvy: You are well informed about and proficient in the use of modern technology and computers (knowledge with VR is an asset).What you’ll learn:You’ll join us as a customer service representative or associate, whose main objective is to ensure the customer has a great time here at the arcade.You’ll be trained by our store supervisor, coordinator, or manager on new technologies and develop stronger technology skills, computer skills, and virtual reality fundamentals.And of course, you’ll get to experience a huge variety of virtual reality games and experiences that you’ve not played before!Tags:Customer service representativeCustomer service associateSales associateCustomer supportSales representativeSales coordinatorStore supervisorStore keeperCustomer successJob Types: Seasonal, Casual, Permanent, Part-time, Full-timeSalary: From $15.50 per hourBenefits:Casual dressSchedule:Every WeekendHolidaysOn callWeekends as neededSupplemental pay types:Bonus payCommission payTipsCOVID-19 considerations:All equipment is sprayed down with isopropyl alcohol and cleaned with antibacterial wipes. We main physical distancing and require use of mask in common areas.Application question(s):Are you able to work on Thursdays to Sundays?By public transit only, how many minutes does it take you to travel to 124 Church St?Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"F694490040B814E1E52798700CAFC471\",\n            \"cityName\": \"argo greek cuisine in Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ea93072fe5f12e7e\",\n            \"jobName\": \"Customer Service- Front Of The House With a Drivers License\",\n            \"companyName\": \"Argo Greek Cuisine\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694479036170,\n            \"dateOfPosted\": 1692776784072,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2488091,\n                    \"lon\": -122.9805104\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Burnaby, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a take out delivery and catering place and we are currently looking for a customers service representative to add to our team Must have a friendly enthusiastic personality , some experience in a similar position is a must delivery apps previous experience an asset Also this position requires a valid drivers license as some deliveries are required for catering and other orders for customers some flexibilty for week days we can discussduties aretaking orders over the phone , taking orders through our on line apps , giving out the orders to customers , handling payments and drive the company car for deliveries .Closing duties require some cleaning for the space and tidying upshifts available10.30 to 3 everyday (part time)except sundays4 to 9.30 everyday (part time )except sundays10.30 to 7.30(one hour break) tuesday wednesday thursday friday saturday (full time)Looking for mature and responsible individuals for long term employment! After 6 months of continuous employment extended medical benefits are offeredJob Types: Full-time, Part-time, PermanentPart-time hours: 30 - 36 per weekSalary: From $20.00 per hourBenefits:Casual dressDiscounted or free foodStore discountFlexible Language Requirement:French not requiredSchedule:Evening shiftSupplemental pay types:Overtime payCOVID-19 considerations:covid -19 safety plan is in place for the establismentEducation:Secondary School (preferred)Experience:customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Burnaby, BC\"\n        },\n        {\n            \"id\": \"370A62E8BA6D53F9BC09ED95F9B40FF8\",\n            \"cityName\": \"Hummingbird Medical Tech Inc in Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=acf3d5d159c9ca7b\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Hummingbird Medical Tech Inc\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694478725996,\n            \"dateOfPosted\": 1694478725820,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"A Medical Supplier company requires a permanent receptionist on a full time basis.We are looking for a Receptionist that has good communication and interpersonal skills, proficient in computers (Microsoft Word, Excel, Powerpoint and Outlook) and a sense of humor would be helpful. Also the selected individual should be well organized and capable of working independently as well as part of a small tight knit office team.Duties:- Answering incoming phone calls and emails ...- Order entry and customer service related duties- Office management (ordering supplies, filing, etc.)- Collecting overdue accounts- Contact customer and negotiation- English and Mandarin- Website management experienceAdvantages:- Easily accessible with public transportation- On site parking- Pleasant working environmentJob Types: Full-time, PermanentSalary: $17.00-$18.00 per hourBenefits:Dental careVision careSchedule:Day shiftEducation:Bachelor's Degree (preferred)Experience:Customer service: 2 years (preferred)Language:English (preferred)Mandarin (preferred)Work Location: In personApplication deadline: 2023-09-23Expected start date: 2023-09-26\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"B7F71B6AD14E16F499576B587E9EC037\",\n            \"cityName\": \"Ajax, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=82330f223d6e9e57\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Tiabhuva.com\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694478722005,\n            \"dateOfPosted\": 1694478721835,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8508553,\n                    \"lon\": -79.0203732\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ajax\",\n                \"formattedAddress\": \"Ajax, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ajax\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ResponsibilitiesAssist with customer service tickets via zendeskAccurately prepare and complete orders for delivery or pickup according to schedule (load, pack, wrap, label, ship)Organize stocks and maintain inventoryTrain additional support staff that are needed during peak periodsContribute ideas on ways to improve or optimize proceduresRequirementsGood organisational and time management skillsMust be able to lift 50lbsExcellent communication skillsTeam playerBasic computer skills ie Word, Excel, Web BrowserHigh school diploma or equivalentExperience with Zendesk and Shopify is an assetThis is an entry level (all training will be provided)Full time position paid hourly ($18-$20/hr depending on experience) based in Ajax, ON.Job Types: Full-time, PermanentSalary: $18.00-$20.00 per hourSchedule:8 hour shiftDay shiftMonday to FridaySupplemental pay types:Overtime payApplication question(s):Are you available to work Monday - Friday, 9am -5pm?Do you have experience with Shopify?Do you have experience with zendesk or other customer service platform?Work Location: In personApplication deadline: 2023-09-27Expected start date: 2023-09-22\",\n            \"location\": \"Ajax, ON\"\n        },\n        {\n            \"id\": \"B2FC59A6BEAD92BAD716693C78290172\",\n            \"cityName\": \"Circle K in Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=632b1a89023391aa\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Circle K\",\n            \"rowSalary\": \"From $15.60 an hour\",\n            \"date\": 1694478589922,\n            \"dateOfPosted\": 1667888924320,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Night shift Cashier at Circle K Convenience Store.Help customers with purchasesOperate cash registerLotto machineStock productsCleaningSignage placementJob Types: Permanent, Full-timeSalary: From $15.60 per hourBenefits:On-site parkingDay range:Weekend availabilityShift:10 hour shift8 hour shiftNight shiftShift availability:Night Shift (required)\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"9E0ED90D72C2EE4BF93F8D48E56B0C13\",\n            \"cityName\": \"1610 Rosser Ave, Brandon, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=abada7a337bc0a0c\",\n            \"jobName\": \"Sales/Customer Service Representative\",\n            \"companyName\": \"Midwest Teleservices International (Mti)\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694478501133,\n            \"dateOfPosted\": 1694478500942,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8484815,\n                    \"lon\": -99.971689\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brandon\",\n                \"formattedAddress\": \"Rosser Ave, Brandon, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brandon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About us\\\"MTI is committed to the old-fashioned business values of hard work, integrity and honesty that cemented our 25 years of trusted partnerships with our clients.\\\" .Our work environment includes:Modern office settingFood providedOn-the-job trainingLively atmosphereOVERVIEWAs a Sales and Customer Service Representative, you'll be conducting sales calls, building connections with both new and existing customers. By embodying our company voice, you'll navigate our offerings and ensure each interaction leads to lasting relationships. Your attention to detail ensures accuracy from start to finish. Join us in turning every call into a rewarding customer experience.KEY RESPONSIBILITIESSalesPresent products/services to potential customers.Upsell and cross-sell our range of services.Ensure customer needs are met.Schedule appointments for service installations.Record customer details accurately.Customer Service and Relationship ManagementResolve customer issues constructively.Document customer interactions using client software.Follow company guidelines for customer satisfaction.Continuous DevelopmentEngage in ongoing training.Stay updated on product offerings.Set and review personal performance goals.QUALIFICATIONSEssentialStrong communication skills.Proficiency in English.Multitasking ability.Seamless transition between sales and service.Proactive and committed to improvement.DesirablePrior experience in customer serviceIndustry-specific knowledgeTrack record of excellence in sales or serviceWHY CHOOSE MTI?Work-Life Balance: We understand the importance of a balanced life. Our work schedule offers some flexibility to help you manage your personal commitments.Team Culture: We prioritize a supportive and inclusive team culture. Engage in team-building activities and company events to foster camaraderie.Stability: MTI has a long-standing history in the industry, offering job stability and peace of mind.Full benefits package, including Dental Care, Extended Health, Life Insurance, Vision Care, and Disability Insurance.Competitive compensation package.WORK SCHEDULE8-hour shiftsIn-person work environmentWeekend availability as needed.HOW TO APPLYREADY TO JOIN MTI?Send your resume and a cover letter to jose@midwestteleservices.com or apply through our website. Use \\\"Application for Sales and Customer Service Representative\\\" as your email subject.DIVERSITY & INCLUSIONDiversity, Equity, and Inclusion (DEI) at MTI is about embracing and valuing the diversity of our team. It's about coming together regardless of our different backgrounds, experiences, and perspectives. We believe our communalities are greater than our differences and that our uniqueness is what makes us a stronger and more effective organization. We are committed to fostering an environment where every employee is treated fairly, feels valued, and can fully participate. We strive to create a workplace where everyone is included.Job Types: Full-time, PermanentSalary: $15.00 per hourBenefits:Casual dressCompany eventsDental careDisability insuranceExtended health careLife insuranceOn-site parkingVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftWeekends as neededCOVID-19 considerations:Midwest Teleservices International has implemented the recommended practices of safety, stringent daily cleaning, and no public access.Application question(s):Given the nature of the role, this position may involve working on Saturdays. Are you able to accommodate this in your schedule?Language:English (required)Work Location: In personApplication deadline: 2023-10-16\",\n            \"location\": \"Rosser Ave, Brandon, MB\"\n        },\n        {\n            \"id\": \"3A08A4FE4A4890D74FA42A263A1158DE\",\n            \"cityName\": \"9701 Menzies St, Chilliwack, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3842648b7a4737df\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Padmore's Quick Shop\",\n            \"rowSalary\": \"$16.65–$18.00 an hour\",\n            \"date\": 1694478476305,\n            \"dateOfPosted\": 1694478476139,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1782108,\n                    \"lon\": -121.9334225\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Chilliwack\",\n                \"formattedAddress\": \"Menzies St, Chilliwack, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Fraser Valley\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Chilliwack\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for candidates for opening of Cashier/Customer Service Representatives.Candidates with working experience at a Gas station or any Convenience Store will be preferred. Wage according to experience.Job descriptionWe require the candidate to have the following abilities:Greet customers and provide excellent customer service at all timesScan merchandise accuratelyDescribe current promotions and advertisements to customersHandle payments by cash, cheque, credit card or automatic debitUse electronic scanners, cash register, or computersGive receipts, refunds, credits and assist customersMust be very detail orientedOpen and close till at the beginning and end of each shiftEnsure that safe work practices are followed including using proper lifting techniques and keeping the store cleanLifting involved as well for putting away product ordersThe candidate for this position must have the following skills and requirements:Basic math skillsDetail oriented with a positive attitudeExcellent command of the English language, both oral and writtenMust be punctual, dependable and hard workingSelf-confident, personable, energetic personalityAbility to work within a fast-paced environmentProfessional appearance and demeanourJob Types: Full-time, Part-time, Permanent, CasualSalary: $16.65-$18.00 per hourDay range:Monday to FridayWeekends as neededShift:8 hour shiftDay shiftEvening shiftMorning shiftAbility to commute/relocate:Chilliwack, BC V2P 5Z6: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Menzies St, Chilliwack, BC\"\n        },\n        {\n            \"id\": \"E8622B5E1F063A5F32B2F4B83FF9E140\",\n            \"cityName\": \"Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e6af587e1707905e\",\n            \"jobName\": \"Dispatcher / Customer Service Rep (Ft)\",\n            \"companyName\": \"John The Plumber Ottawa\",\n            \"rowSalary\": \"$16–$35 an hour\",\n            \"date\": 1694478463494,\n            \"dateOfPosted\": 1694478463323,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"John The Plumber is hiring three full-time employees for customer service and dispatch.  Candidates should have weekend and/or evening availability.  Pay structure includes an hourly rate + booking bonus for every job successfully booked into our schedule. We offer: Health, dental, life insurance. Hourly + generous bonus structure. Work from home upon completing training and strong conversion rate. ETC. This role has a lot of opportunity to make money. We want to find people who are friendly and eager to help our customers, and book them into the schedule. Each booking results in a generous bonus paid out monthly. There are many inbound calls each day, most of which are potential clients seeking a plumber. All we have to do is find a slot in the schedule and book them.  Training will be in person, in Nepean. Work will be in the office until a strong conversion % is reached and maintained.  Remote work is offered to those who Attain and maintain their conversion rates.  The incentive is to ensure world-class service, eagerness, and positive energy with our clients.  The schedule will be fixed. There are two shifts available.  Please only apply if you are able to work in Ottawa.  Thank you. \",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"0F76E6CA4A4AC5844D6C6F31981D5779\",\n            \"cityName\": \"Kitchener-Waterloo, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e48fa4da12cfae55\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Allianz Global Assistance Canada\",\n            \"rowSalary\": \"$20.51 an hour\",\n            \"date\": 1694478430407,\n            \"dateOfPosted\": 1694478430234,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4534718,\n                    \"lon\": -80.5001242\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kitchener\",\n                \"formattedAddress\": \"Kitchener-Waterloo, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kitchener\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Who we are:People are at the heart of the Allianz brand. At Allianz, helping people is in our DNA. We believe in being a part of the solution for a better tomorrow and know that we have a positive impact on people’s lives across the globe. If you are looking to be part of something big, then come join our local family - we want to hear from you!Our teams in our Operations centre are the heartbeat of the organization. We are looking for customer-centric individuals to fill a number of Customer Service Associate positions. In this role, the focus is on helping others, providing exceptional customer service, and going above and beyond for our customers when they’re in need.About the role:In a 24/7 operation, provide timely, accurate, and efficient information and respond to customer service inquiries for clients from numerous programs, ensuring that our clients receive accurate and timely information. Required to attain performance objectives on a monthly basis.Working hours: 8-hour shifts, 5 days a week. Shifts include: Monday - Sunday, working holidays, mornings, afternoons, and evenings on a rotational basis. Schedules are given 6 weeks in advance.Hourly wage: $20.51 per hour (+ $1.50 per hour French language premium, if applicable)You are great at:Opening non-medical cases to guide/assist clients throughout their service needs.Initiating and sending claim forms.Providing pre-trip assistance and answering pre-trip questions relating to emergency procedures and policy inquiries.Interpreting policies and fully explaining benefit coverage and limitations to avoid client confusion.Guiding clients through the navigation of pertinent websites for online content and claim submission.Administering and enforcing client confidentiality in regards to Canada’s Personal Information Protection and Electronic Document Act.Providing assistance with translation using an interpreter if necessary.Creating and send various types of professional correspondence.What it takes:Post-secondary education and a minimum of 6-12 months experience in a customer service related function.Ability to pay close attention to detail and multi-task.Superb verbal/written communication skills, specifically the ability to communicate professionally and articulately via phone with clients and colleagues.Demonstrated ability to use initiative and independent judgment in solving customer problems.Fluency in French is preferred.What we offer you:A competitive total rewards package, including benefits coverage as of your first day of employment, participation in the company’s annual incentive bonus plan, an employer matched retirement plan, tuition reimbursement support, generous paid time off, and much more!A Referral Program that rewards you for referring your qualified friends and familyEmployee discounts at a wide variety of retailers and servicesThe opportunity to grow with a large, global organizationAll successful candidates must be able to pass an Enhanced Reliability Check performed by the Government of Canada.At Allianz, we understand and value diversity in our employees and are proud to be an Equal Opportunity Employer. If you require accommodation at any time during the recruitment process, please call our toll free number at 1-800-461-1079 and ask to speak to a member of the Talent Acquisition team.Job Types: Full-time, PermanentBenefits:Dental careExtended health careLife insurancePaid time offRRSP matchVision careWork from homeSupplemental pay types:Bonus payOvertime payEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Language:French (preferred)Job Type: Full-timeSalary: $20.51 per hourBenefits:Dental carePaid time offVision careShift:8 hour shiftAbility to commute/relocate:Kitchener-Waterloo, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Licence/Certification:Serving It Right (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Kitchener-Waterloo, ON\"\n        },\n        {\n            \"id\": \"FD2D9C8C3CFD662CB309757BF5CBF56C\",\n            \"cityName\": \"Laurent, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=27a78d14a6008042\",\n            \"jobName\": \"Call Center Agent\",\n            \"companyName\": \"Flagship Courier Solutions Inc\",\n            \"rowSalary\": \"$18.60–$23.50 an hour\",\n            \"date\": 1694478424912,\n            \"dateOfPosted\": 1694478424724,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.15,\n                    \"lon\": -72.28333300000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laurent\",\n                \"formattedAddress\": \"Laurent, QC G0A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Portneuf\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laurent\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:Handle many inbound and outbound calls to customers.Management and resolve customer complaints.Maintain good customer relations.Identify and escalate issues to supervisors.Document all call information according to standard operating procedures.Follow up customer calls where necessary.Requirements:High school diploma or equivalent.Excellent verbal communication skills.Excellent verbal and written communication skills.Basic knowledge of Microsoft Office and basic PC literacy.Ability to multitask and maintain a high-level of organization.Ability to read, understand, and follow oral and written instructions.Ability to handle stressful situation appropriately.Job Types: Full-time, Part-timePart-time hours: 20-40 per weekSalary: $18.60-$23.50 per hourBenefits:Company pensionDental careFlexible scheduleLife insuranceVision careWellness programFlexible Language Requirement:English not requiredSchedule:4 hour shift8 hour shiftMonday to FridaySupplemental pay types:Commission payWork Location: On the road\",\n            \"location\": \"Laurent, QC\"\n        },\n        {\n            \"id\": \"1A6F77346F86AC84F160688F0C43AECA\",\n            \"cityName\": \"Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f2cb959527bc1915\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"Eagle Disposal Inc.\",\n            \"rowSalary\": \"$34 an hour\",\n            \"date\": 1694478154831,\n            \"dateOfPosted\": 1688039301920,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1665898,\n                    \"lon\": -123.133569\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Richmond, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 34.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    34.0\n                ],\n                \"range\": {\n                    \"gte\": 34.0,\n                    \"gt\": null,\n                    \"lte\": 34.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Oversee apprenticeship training Recruit and hire workers and carry out related staffing actions Train or arrange for training Estimate costs and materials Ensure health and safety regulations are followed Recommend personnel actions Requisition or order materials, equipment and supplies Supervision Staff in various areas of responsibility Work conditions and physical capabilities Work under pressure Personal suitability Excellent oral communication Organized Reliability Team player Health benefits Dental plan Health care plan Long term benefits Life insuranceWork Term: PermanentWork Language: EnglishHours: 30 hours per week\",\n            \"location\": \"Richmond, BC\"\n        },\n        {\n            \"id\": \"FC8D8D1D17D45E1194C76272BDA48984\",\n            \"cityName\": \"7100 Rue Jean Talon E, Anjou, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=21f23cf68d7adf01\",\n            \"jobName\": \"Call Center Sales Manager\",\n            \"companyName\": \"Hydro Solution\",\n            \"rowSalary\": \"From $80,000 a year\",\n            \"date\": 1694478100791,\n            \"dateOfPosted\": 1693607137011,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5947628,\n                    \"lon\": -73.5727617\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Jean-Talon E, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 80000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    80000.0\n                ],\n                \"range\": {\n                    \"gte\": 80000.0,\n                    \"gt\": null,\n                    \"lte\": 80000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Do you what it takes to join our big family of everyday heroes?In order to continue its growth and maintain its high standards of customer service, HydroSolution is looking for a manager, customer contact center. In an environment in full digital transformation, the manager will aim to ensure the proper functioning of all operational activities, to ensure the quality of the customer experience while promoting the development of human resources.Reporting to the Director of Customer Service Operations, the candidate will join a dynamic team and will be supported by team leaders for the management of about thirty employees. The customer contact center is also composed of an outsourcer and the manager will ensure the proper functioning of the two sites.Responsabilites· Meet and exceed the various KPI’s of the CCC· Suggest and implement management and communications bests practices based on teamwork· Lead initiatives with change management skills and continual improvement notions to improve customer experience· Manage and coach the team leaders who supervise the agents· Ensure operational efficiency and customer service by maintaining a positive, mobilizing, and pleasant work environment· Ensure follow-ups with various business partners in order to solve complex problems and optimize operations.· Analyze and measure various indicators to ensure consistent performance and customer experience, while maintaining operational excellence and profitabilityPromote the development of talent and encourage the best communication practices to help provide a mobilizing work environment.Ideal requirements · Meet and exceed the various KPI’s of the CCC· Suggest and implement management and communications bests practices based on teamwork· Lead initiatives with change management skills and continual improvement notions to improve customer experience· Manage and coach the team leaders who supervise the agents· Ensure operational efficiency and customer service by maintaining a positive, mobilizing, and pleasant work environment· Ensure follow-ups with various business partners in order to solve complex problems and optimize operations.· Analyze and measure various indicators to ensure consistent performance and customer experience, while maintaining operational excellence and profitability· Promote the development of talent and encourage the best communication practices to help provide a mobilizing work environment.· 5 years call center experience in a supervisory role· Post-secondary diploma/degree in a related field· Passionate about sales and customer service and known as an inspiring leader who coaches and develops team members, cultivating a highly engaged, high-performance team· Be result driven· Demonstrates a natural and strong leadership· Excellent interpersonal and communication skills (verbal/written) to promote positive relationships· Experience in Workforce management or in change management will be considered an asset· Bilingualism (French-speaking work environment)At HydroSolution, we take care of our heroes by providing· a competitive salary· a group insurance program (complementary health, medication, dental, life and vision, etc.)· Work Remote (2 or 3 days at the office as a manager)· a group RRSP· free covered parking· a corporate discount on annual gym membership· vacation and compensatory leave· a telemedicine program· an employee referral program· team activities· casual dress codeAt HydroSolution, everyone's work is a source of inspiration and pride. The sum of our efforts makes it possible to offer peace of mind to Quebecers and to participate in their well-being. We might not be saving lives, but we can save the day! This is why we consider our employees to be the everyday heroes of thousands of Quebecers who are looking for a turnkey solution for their water heater. Together, we are the leaders in sales and rentals of water heaters.Type d'emploi : Temps plein, PermanentSalaire : à partir de 80 000,00$ par anAvantages :Assurance DentaireAssurance InvaliditéAssurance Maladie ComplémentaireAssurance VieAssurance VisionCongés payésÉvénements d'EntrepriseProgramme d'Aide aux EmployésProgrammes de Bien-êtreREER CollectifStationnement sur placeTenue DécontractéeTravail à domicileHoraires de travail :Quart de jourTypes de paie supplémentaire :PrimesExpérience:Ventes internes: 3 ans (Souhaité)Gestion d'équipe: 3 ans (Obligatoire)Langue:Français (Obligatoire)Lieu du poste : Télétravail hybride à Anjou, QC\",\n            \"location\": \"Rue Jean Talon Est, Anjou, QC\"\n        },\n        {\n            \"id\": \"9B0B6657E746BEE111FCABB56A06A5A1\",\n            \"cityName\": \"1105 Centre St N, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=556336d1344b2350\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Avalon Cleaners\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694478048884,\n            \"dateOfPosted\": 1693625801711,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0919201,\n                    \"lon\": -114.0625125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Centre St N, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a dry cleaning company requiring a customer service associate.Friday and Saturday 9 am to 5 pmDuties include serving walking clients. Contact clients with any discrepancies and follow up on any of their concerns. Full training supplied with our procedures and policies.Starting wage is $16/hrJob Type: Full-timeSalary: From $16.00 per hourWork Location: In personExpected start date: 2023-09-07\",\n            \"location\": \"Centre St N, Calgary, AB\"\n        },\n        {\n            \"id\": \"92DF0E7A6C6871CF1B89F3BB9BA969A3\",\n            \"cityName\": \"156 Jozo Weider Blvd, Blue Mountains, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=035afb1e7e7d0c0a\",\n            \"jobName\": \"Customer Service Associate (Full-Time Available)\",\n            \"companyName\": \"Village Market\",\n            \"rowSalary\": \"$16.50–$18.00 an hour\",\n            \"date\": 1694477975181,\n            \"dateOfPosted\": 1693624733374,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.50561769999999,\n                    \"lon\": -80.30985369999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Owen Sound\",\n                \"formattedAddress\": \"Jozo Weider Blvd, The Blue Mountains, ON L9Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Owen Sound\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Village Market Customer Service Associate - Full Time and Part Time positionsThe Village Market is located at the heart of the Blue Mountain Village. It is a grocery and convenience store serving thousands of locals and tourists year round.We are searching for a hard working, personable, individual to join our team. We offer a competitive wage, a well-rounded benefits package and on-site training.Responsibilities:GENERAL/CUSTOMER SERVICEGreet, welcome and provide customers with excellent customer service skillsOperate cash register and process credit/debit paymentsVerify the age of customers when selling age restricted productsPull daily sales reportsComplete daily cash outsPerform other duties as assignedHOUSEKEEPINGMaintain a clean and orderly checkout areaEnsure store stays clean and organizedFollow all Health and Safety ProceduresMERCHANDISINGStock shelves when items are low and new inventory arrivesComplete merchandising tasks as directed and maintain efficient flow of merchandise from backroom to sales floorAdvise appropriate person regarding stock outs/shortagesPerform stock counts and orders for designated areasLOSS PREVENTIONEnsure loss prevention Standards are followedControl cash and lottery in accordance with prescribed cash handling policies and proceduresMaintain proper security of cash and merchandiseJob Requirements:GENERALGood communication skills and ability to read and write in EnglishCustomer Service orientatedAble to work under minimal supervision and have attention to detailAble to work individually and be a team playerEffective problem solverAble to work in a fast-paced environmentExperience in cash handling is not a requirement but an assetExperience working in a grocery store is not a requirement but an assetJob Type: Full-timeSalary: $16.50-$18.00 per hourBenefits:Dental careVision careDay range:HolidaysWeekends as neededFlexible Language Requirement:French not requiredShift:8 hour shiftWork setting:Convenience storeGrocery storeAbility to commute/relocate:Blue Mountains, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Jozo Weider Blvd, Blue Mountains, ON\"\n        },\n        {\n            \"id\": \"B3EF5702DB1A65511B3BD9237754EEDA\",\n            \"cityName\": \"Grande Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=32a51eea39b61f61\",\n            \"jobName\": \"Customer Service Sales Clerk\",\n            \"companyName\": \"Saihaj Enterprises Ltd\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694477957766,\n            \"dateOfPosted\": 1690421555734,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.17071259999999,\n                    \"lon\": -118.7884464\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grande Prairie\",\n                \"formattedAddress\": \"Grande Prairie, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 19\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grande Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Will trainTasks Operate cash register Operate computerized inventory record keeping and re-ordering systems Provide advice about merchandise Assist in display of merchandise Conduct sales transactions through Internet-based electronic commerce Estimate or quote prices, credit or contract terms, warranties and delivery dates Greet customers and discuss type, quality and quantity of merchandise or services sought for purchase, rental or lease Maintain sales records for inventory control Prepare sales, rental or leasing contracts and accept cash, cheque, credit card or automatic debit payment Work conditions and physical capabilities Fast-paced environment Repetitive tasks Attention to detailWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Grande Prairie, AB\"\n        },\n        {\n            \"id\": \"91C51EFD3A3EDBD67F007F6CF16FC3BA\",\n            \"cityName\": \"argo greek cuisine in Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f82dca4789764ae4\",\n            \"jobName\": \"Customer Service- Front Of The House With a Drivers License\",\n            \"companyName\": \"Argo Greek Cuisine\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694477939217,\n            \"dateOfPosted\": 1692774873018,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2488091,\n                    \"lon\": -122.9805104\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Burnaby, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a take out delivery and catering place and we are currently looking for a customers service representative to add to our team Must have a friendly enthusiastic personality , some experience in a similar position is a must delivery apps previous experience an asset Also this position requires a valid drivers license as some deliveries are required for catering and other orders for customers some flexibilty for week days we can discussduties aretaking orders over the phone , taking orders through our on line apps , giving out the orders to customers , handling payments and drive the company car for deliveries .Closing duties require some cleaning for the space and tidying upshifts available10.30 to 3 everyday (part time)except sundays4 to 9.30 everyday (part time )except sundays10.30 to 7.30(one hour break) tuesday wednesday thursday friday saturday (full time)Looking for mature and responsible individuals for long term employment! After 6 months of continuous employment extended medical benefits are offeredJob Types: Full-time, Part-time, PermanentPart-time hours: 30 - 36 per weekSalary: From $20.00 per hourBenefits:Casual dressDiscounted or free foodStore discountFlexible Language Requirement:French not requiredSchedule:Evening shiftSupplemental pay types:Overtime payCOVID-19 considerations:covid -19 safety plan is in place for the establismentEducation:Secondary School (preferred)Experience:customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Burnaby, BC\"\n        },\n        {\n            \"id\": \"2636BC9BE5A3BD713646ED7F0E6D1F19\",\n            \"cityName\": \"Terrace, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=58952f8667bb8021\",\n            \"jobName\": \"Customer Service Technician Ii\",\n            \"companyName\": \"Pacific Northern Gas Ltd.\",\n            \"rowSalary\": \"$43.07 an hour\",\n            \"date\": 1694477899582,\n            \"dateOfPosted\": 1694477898123,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.5181925,\n                    \"lon\": -128.6031539\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Terrace\",\n                \"formattedAddress\": \"Terrace, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kitimat-Stikine\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Terrace\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 44.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    44.0\n                ],\n                \"range\": {\n                    \"gte\": 44.0,\n                    \"gt\": null,\n                    \"lte\": 44.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Pacific Northern Gas Ltd. (PNG), a subsidiary of TriSummit Utilities Inc., owns and operates natural gas transmission and distribution systems in British Columbia’s lower Peace River, west central, and north coast regions. PNG’s western transmission line extends from the Enbridge gas transmission system north of Prince George along the Highway 16 and Highway 37 south corridors to Terrace and then onto the port communities of Kitimat and Prince Rupert, providing transportation and gas services to twelve communities and a number of industrial facilities. In the Province’s northeast, Pacific Northern Gas (N.E.) Ltd. provides gas transmission and distribution service in the Dawson Creek, Fort St. John and Tumbler Ridge areas. PNG’s Operations department in the Northwest has an immediate opening for a qualified Customer Service Technician in Terrace, BC. DUTIES & RESPONSIBILITIES:Repair and make adjustments to residential and commercial equipment on customer premises, install and maintain gas measurement and pressure regulations equipment on customer premises and monitor and assist in the installation and maintenance of gas pressure regulation equipment at Company Regulating stations. Operate and maintain a stand-by station for emergency or peak shaving (Prince Rupert area).Promote the sale of gas, complete sign-ups of new customers, read meters, investigate reports of gas leaks, perform routine safety inspections on customer premises and take action to protect the public from any unsafe act or condition pertaining to the distribution of natural gas within his/her authority.Assist other Company personnel as directed and prepare all required documents and paperwork relative to sales and service duties.Provide training and direction to subordinate Customer Service Technicians.Perform stand-by duties and carry a pager or cell phone.Assist and temporarily perform Customer Service Representative duties.Respond to emergencies on the distribution system and direct and carry out appropriate actions involving damage to the system or the escape of gas.QUALIFICATIONS:Grade 12 education.Valid B.C. Class 5 Driver’s License.Hold a valid Class GBEE B.C. Gas Fitters License and have successfully completed the two-year Gas Fitters Apprenticeship Program or other Company recognized training program.Be competent in technical aspects related to public safety, customer relations and the welfare of the Company’s property.Electrical endorsement required for Class GBEE ticket holders.Experience in electronics, appliance repairs and trouble shooting.Must demonstrate safe work habits and adherence to safety regulations and practice on sustained basis.Must be able to carry out duties with minimum supervisions.Ability to communicate effectively verbally and written.Good physical condition.Ability to work long hours in adverse weather and terrain conditions.Duties will include meter reading, chart changing, assisting with the installation and removal of meters, painting and minor maintenance of equipment and facilities servicing the distribution system.Some travel may be required within the PNG system.This position is within our bargaining unit (IBEW) Pacific Northern Gas and TSU strives to cultivate a workplace in which everyone feels welcomed and encouraged to bring their whole selves to work. Everyone wants to work where they feel a sense of belonging, where they are valued for their differences and are encouraged to participate and contribute openly. We recognize the importance of both inclusion and diversity, and we are committed to advance our culture to ensure diversity of thought. While we appreciate all applications, we advise that only the candidates selected to participate in the recruitment process will be contacted. If you are a candidate with a disability and need an accommodation to complete the application process, please email us at careers@png.ca. Include your full name, the best way to reach you, and the accommodation needed to assist you with the application process. We thank all applicants for their interest in our organization, but only those candidates selected for interviews will be contacted.\",\n            \"location\": \"Terrace, BC\"\n        },\n        {\n            \"id\": \"0F01BB1CF246631498C0CC78EA3E4F7B\",\n            \"cityName\": \"Yellowknife, NT\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f64b6608f9c7bdd9\",\n            \"jobName\": \"Customer Service Agent (Pt)\",\n            \"companyName\": \"Gat Ground Support Canada\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694477866570,\n            \"dateOfPosted\": 1694477865074,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 62.4539717,\n                    \"lon\": -114.3717887\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Yellowknife\",\n                \"formattedAddress\": \"Yellowknife, NT X0E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Northwest Territories\",\n                \"state_code\": \"NT\",\n                \"postalTown\": null,\n                \"county\": \"Fort Smith Region\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Yellowknife\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Summary: The Customer Service Agent (CSA) provides all passenger/customer services as contracted by the customer including reservations, ticketing, baggage processing, terminal/gate check-in, greeting arriving passengers, handling of VIPs, provide special passenger assistance, handle customer complaints and other duties as assigned.  Job Duties:Checks passengers in at ticket counter and gate and hands out boarding passes for outgoing flightsActively participates in the Safety Management System (SMS)Inspect and verify passenger documentationChecks passenger baggage and places bag tags on them at the ticket counter for appropriate destinationCoordinates ticket counter activities with those on the ramp regarding baggage handling to assure that all bags get on the outgoing flightHandles customer complaints regarding ticketing and baggage handling when problems arise. (i.e. lost baggage, lost/misplaced tickets, canceled flights or delayed flights)Makes announcements regarding flight activity at gate or over airport’s general PA systemAnswers passenger inquiries regarding flight schedules, fares, space availability for a particular flight and other questions that may ariseAssist passengers as needed through arrival and check in processes including support for passengers with special needs such as unaccompanied minors (UM), VIP passengers and passengers needing wheelchair assistanceAssist Ramp Service Agents to ensure that wheelchairs, strollers and gate checked bags (cleared through security) are made available for loading upon departure and delivery to passengers upon arrivalCommunicates with flight crew on ground and via ground to air radioMaintains the level of service expectations of both the passenger and the airline customer at all timesComply with all federal, provincial, municipal, airport authority and carrier security requirements and SA’s SOPs and policiesParticipate in training to comprehend, implement, and maintain all quality objectives as stated in our Quality Management System to ensure delivery of desired levels of operational safety and security.All employees are responsible for ensuring quality control in their own activities.Cooperate fully with Inspectors to achieve quality inspection commitmentsPerforms other duties as required RequirementsMust be at least 18 years of ageHigh School diploma at a minimumPassionate about customer serviceExcellent communication skills (written and verbal)Commitment to continuous improvementSelf-motivated and able to work independentlyAttentive to detail and numerateAbility to follow processes and procedures and apply flexible approach when requiredMust be able to type and learn airline specific computer reservation/ ticketing softwareWillingness to work in inclement weatherMust be able to undergo a Criminal Record Check and obtain a Clear result, and be able to obtain airport security clearanceAble to deal with people sensitively, tactfully, diplomatically, and professionally at all timesStrong work ethic and positive team attitude Physical RequirementsMust be able to lift up to 50lbs (23kg)Must be able to stand, lift, bend, push and pull for an extended timeMust be willing to work in all types of elevated noise levels within the airport environment Background QualificationsMust be willing to work various shifts, weekends, or irregular shiftsComputer skills required RequirementsMust be at least 18 years of ageHigh School diploma at a minimumPassionate about customer serviceExcellent communication skills (written and verbal)Commitment to continuous improvementSelf-motivated and able to work independentlyAttentive to detail and numerateAbility to follow processes and procedures and apply flexible approach when requiredMust be able to type and learn airline specific computer reservation/ ticketing softwareWillingness to work in inclement weatherMust be able to undergo a Criminal Record Check and obtain a Clear result, and be able to obtain airport security clearanceAble to deal with people sensitively, tactfully, diplomatically, and professionally at all timesStrong work ethic and positive team attitude Physical RequirementsMust be able to lift up to 50 poundsMust be able to stand, lift, bend, push and pull for an extended timeMust be willing to work in all types of elevated noise levels within the airport environment Background QualificationsMust be willing to work various shifts, weekends, or irregular shiftsComputer skills required Flight passes!  Career advancement opportunities!! About GAT Ground Support Canada:GAT is a leading Ground Service provider to the airlines. Our additional line of business is Sky Cafe, Airline Catering. We are a growing company with opportunities for growth and career advancement!\",\n            \"location\": \"Yellowknife, NT\"\n        },\n        {\n            \"id\": \"1C04BCE2DAE644F595ABC6CC7C360429\",\n            \"cityName\": \"Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7feb82e3a3b25902\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Ph Vitres d'Autos\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694477862863,\n            \"dateOfPosted\": 1694477861158,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2557206,\n                    \"lon\": -79.8711024\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Company:Take 5 Oil Change  We invite you to join us at Take 5!  Take 5 Oil Change is your neighborhood go-to oil change spot. We've been doing this for over 35 years now and we pride ourselves in our friendly technicians, our oil change expertise, and our efficient process that gets you on your way safely and swiftly. All while letting you stay in the comfort of your car or truck while we change your oil.  We're always looking for friendly and energetic team members to join our family. Technicians, managers, and more positions are available across the country. With our Pit Tech to President growth path, Take 5 is where you can invest in yourself while we invest in you. In fact, over 90% of our field leaders are internal promotions!  JOB DESCRIPTION:  Driven Brands is looking for part-time and full-time customer service representatives to join our growing team! The ideal candidate can commit to a minimum of 30 hours/week and can provide open availability. The starting wage for this position is $15.50/hour plus incentives.  Responsibilities Function as an expediter of all incoming callsAnswer customer inquiriesWork closely with the Contact Centre Team to implement project initiativesEnsure the proper processes are being following and task deadlines are being metProperly manage customer information utilizing internal data systemsFlexible/adaptable to constant changeAccurately communicate customer details to Franchisees Qualifications and Competencies: Bilingualism (English/French) and/or Spanish is an assetStrong communication skills (reading, writing, speaking, listening)Minimum 2 years of call centre experienceSales experiences is an assetShows predominate skills in computer literacyGood organization and time management skillsWorks well in a fast paced environmentWorks well under pressureExperience in the automotive industry and asset (but not required) Hours of Operation are: Monday-Friday: 7am-7pmSaturday: 9am- 5pmSunday: 10am- 5pm\",\n            \"location\": \"Hamilton, ON\"\n        },\n        {\n            \"id\": \"5EC7B0808F7F58CD5EE6CBF2DDB7ACDB\",\n            \"cityName\": \"Okotoks, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ecf8d6e60ca56ff5\",\n            \"jobName\": \"Customer Service/Office Assistant\",\n            \"companyName\": \"Okotoks Home Hardware Building Centre\",\n            \"rowSalary\": \"$16.50–$18.50 an hour\",\n            \"date\": 1694477859646,\n            \"dateOfPosted\": 1694289230778,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cashier/Sales Associate Position/Office AssistantFull time position for Cashier/Sales Associate/Office Assitant. Provide customer service at frontend cash desks, completing customer transactions through point of sale system. Other duties include answering phones, cutting keys, fedex shipping, e-comerce processing, filing and data entry, and some cleaning tasks and stocking. Also Office Assistant duties once trained at Cash, approximately 2 days per week office duties; will include daily balancing and audits, accounts receivable and payables work, and filing. Experience an asset, but will train. The hours will be some weekdays and every second weekend. Staff discount and benefits. Applicant should be have good communication skills, want to work in a team environment and enjoy interacting with the public. Looking for someone wanting to gain responsibilities through experience. Applicant should understand that customer service is our priority every day.Apply with resumeJob Type: Full-timeSalary: $16.50-$18.50 per hourBenefits:Dental careStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededAbility to commute/relocate:Okotoks, AB: reliably commute or plan to relocate before starting work (required)Experience:Retail sales: 3 years (preferred)Customer service: 3 years (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"EB69CFBD2096AA300485E12ABD1913FC\",\n            \"cityName\": \"Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8ba586fa0811e201\",\n            \"jobName\": \"Clk 12r - Customer Service Representative\",\n            \"companyName\": \"Bc Public Service\",\n            \"rowSalary\": \"$52,803–$59,608 a year\",\n            \"date\": 1694477852787,\n            \"dateOfPosted\": 1694477851658,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8879519,\n                    \"lon\": -119.4960106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Kelowna, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 52803.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    52803.0\n                ],\n                \"range\": {\n                    \"gte\": 52803.0,\n                    \"gt\": null,\n                    \"lte\": 52803.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Posting Title  CLK 12R - Customer Service Representative  Position Classification  CLBC Clerk R12  Union  GEU  Work Options  On-Site  Location  Kelowna, BC V1Z 2S9 CA (Primary)  Salary Range  $52,803.18 - $59,607.79 annually  Close Date  9/25/2023  Job Type  Regular Full Time  Temporary End Date  Ministry/Organization  BC Public Service -> Citizens' Services  Ministry Branch / Division  Service Delivery/Service BC  Job Summary Apply your expertise and passion for innovation to this rewarding career opportunityMINISTRY OVERVIEWDedicated to making life better for British Columbians, the Ministry of Citizens’ Services (CITZ) delivers key services that people rely on. CITZ delivers accessible, multi-channel services, through a single-point-of-contact service approach to people in urban and rural communities through Service BC, and delivers the digital face of government at www.gov.bc.ca. CITZ also provides support for the expansion of high-speed internet connectivity throughout the province, leadership across government to modernize information management and technology resources, trusted data services to government agencies, prompt, and relevant responses to freedom of information requests, and statistical and economic research, information and analysis to businesses and the public sector. In addition, the ministry manages the Province’s real estate assets, technology systems and equipment, and leverages procurement to increase business opportunities and create rewarding jobs that contribute to local economies and benefit individuals, families, and communities.A service-focused organization, CITZ strives to be a great place to work, where all employees feel both engaged and motivated to do their best.DIVISIONAL OVERVIEWService BC is government’s chief provider of services to B.C. residents and businesses. The work of the division enables the design and delivery of accessible, responsive, and cost-effective services, making it easier for British Columbians and businesses to interact with government. Through a provincial network of 65 in-person offices and the Provincial Contact Center, Service BC provides approximately 300 government services for more than 40 partner ministries and agencies. Our team member’s unwavering commitment to an ethic of service has driven consistently high people and business satisfaction rates. In support of the division’s overarching goal of providing residents and businesses with seamless, multi-service access to government programs, the Division’s service offerings are marketed to partner ministries and the broader public sector to expand our continuum of services and leverage common platforms.Within Service BC, our vision is to deliver innovation, value, and service excellence to the people of British Columbia, with the aspirational goal of becoming a best-in-class public service delivery organization. Our people and our culture are important to us. As a team, we are motivated to deliver an excellent service experience to British Columbians, businesses, colleagues, peers, clients, and partners. We believe in being kind and helpful, and are committed to delivering “Service with Heart”.JOB OVERVIEWThe Service BC Customer Service Representative (CSR) maintains a positive, empathetic, and professional attitude when providing service and answering enquires. It requires the ability to identify and assess peoples’ needs to effectively and efficiently deliver an excellent customer service experience.The CSR provides services in-person, by phone, and through digital channels. The ability to provide clerical and administrative support such as data entry, reviewing applications for completeness, handling payments, and providing appropriate solutions, within government guidelines to a diverse population of people is essential to this role.JOB REQUIREMENTSMinimum Grade 12 graduation or equivalent (GED).Experience providing inclusive customer service to diverse clienteles. Experience using digital applications to search for and record information. Preference may be given to applicants with the following:Multiple years of experience in any of the above requirements.Experience providing in-person customer service.Experience providing customer service though phone or digital channels.Experience delivering customer service in a high volume, fast-paced, rapidly changing environment.Experience with conflict resolution and de-escalating situations.Experience providing services to a diverse population some of whom may be experiencing poverty issues, substance use, or mental health concerns.Experience maintaining administrative files and record keeping.Experience delivering service in a regulated or legislated environment following processes and procedures.Customer Service training and/or education. Experience handling financial transactions. WILLINGNESS Willingness to travel occasionally to provide relief coverage to other work sites (Service BC Centres, exam locations, etc.). For questions regarding this position, please contact melody.olsen@gov.bc.caAbout this Position:An eligibility list may be established to fill future temporary and permanent vacancies across the Ministry of Citizens' Services This position has full time on-site requirements.Employees of the BC Public Service must be located in BC at the time of employment.Kelowna is known for its spectacular selection of wineries, and it is set on the shores of Okanagan Lake, providing water activities like swimming, paddling, windsurfing and fishing. Big White, the ski mountain in Kelowna, allows for skiing and snowboarding.Working for the BC Public Service:The BC Public Service is committed to creating a diverse workplace to represent the population we serve and to better meet the needs of our citizens. Consider joining our team and being part of an innovative, inclusive and rewarding workplace.The Indigenous Applicant Advisory Service is available to applicants that self-identify as Indigenous (First Nations, status or non-status, Métis, or Inuit) seeking work or already employed in the BC Public Service. For guidance on applying and interviewing, please contact IndigenousApplicants@gov.bc.ca or 778-405-3452.The BC Public Service is an award-winning employer and offers employees competitive benefits, amazing learning opportunities and a chance to engage in rewarding work with exciting career development opportunities. For more information, please see What We Offer.How to Apply:Your application must clearly demonstrate how you meet the job requirements listed above.Cover Letter: NO - Please do not submit a cover letter as it will not be reviewed.Cover Letter: YES - A cover letter is required as part of your application. The content and/or format of your cover letter may be evaluated as part of the assessment process.Questionnaire: YES - You will need to complete a comprehensive questionnaire to demonstrate how you meet the job requirements. Include all relevant information about your educational accomplishments and employment history including job titles, start and end dates (month and year) of your employment, and how you obtained your relevant experience. The questionnaire will take approximately 60 minutes to complete.Helpful tips, videos and more regarding the application process can be found on the Your Job Application page of MyHR. If you are experiencing technical difficulty applying, e-mail BCPSA.Hiring.Centre@gov.bc.ca, before the stated closing time, and we will respond as soon as possible.Additional Information:A Criminal Record Check (CRC) will be required.Applicants selected to move forward in the hiring process may be assessed on the Knowledge, Skills, Abilities and Competencies as outlined in the attached Job Profile located at the bottom of the posting.Applications will be accepted until 11:00 pm Pacific Standard Time on the closing date of the competition. Job Category  Administrative Services \",\n            \"location\": \"Kelowna, BC\"\n        },\n        {\n            \"id\": \"88979A7A33FEEBDECC47576AE4F8A3B1\",\n            \"cityName\": \"Merritt, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6a9b323aff1fc630\",\n            \"jobName\": \"Clk 12r - Customer Service Representative\",\n            \"companyName\": \"Bc Public Service\",\n            \"rowSalary\": \"$52,803–$59,608 a year\",\n            \"date\": 1694477849619,\n            \"dateOfPosted\": 1694477847581,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.1113079,\n                    \"lon\": -120.7862222\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Merritt\",\n                \"formattedAddress\": \"Merritt, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Thompson-Nicola\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Merritt\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 52803.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    52803.0\n                ],\n                \"range\": {\n                    \"gte\": 52803.0,\n                    \"gt\": null,\n                    \"lte\": 52803.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Posting Title  CLK 12R - Customer Service Representative  Position Classification  CLBC Clerk R12  Union  GEU  Work Options  On-Site  Location  Merritt, BC V1K 1B8 CA (Primary)  Salary Range  $52,803.18 - $59,607.79 annually  Close Date  9/25/2023  Job Type  Regular Full Time  Temporary End Date  Ministry/Organization  BC Public Service -> Citizens' Services  Ministry Branch / Division  Service Delivery/Service BC  Job Summary Apply your expertise and passion for innovation to this rewarding career opportunityMINISTRY OVERVIEWDedicated to making life better for British Columbians, the Ministry of Citizens’ Services (CITZ) delivers key services that people rely on. CITZ delivers accessible, multi-channel services, through a single-point-of-contact service approach to people in urban and rural communities through Service BC, and delivers the digital face of government at www.gov.bc.ca. CITZ also provides support for the expansion of high-speed internet connectivity throughout the province, leadership across government to modernize information management and technology resources, trusted data services to government agencies, prompt, and relevant responses to freedom of information requests, and statistical and economic research, information and analysis to businesses and the public sector. In addition, the ministry manages the Province’s real estate assets, technology systems and equipment, and leverages procurement to increase business opportunities and create rewarding jobs that contribute to local economies and benefit individuals, families, and communities.A service-focused organization, CITZ strives to be a great place to work, where all employees feel both engaged and motivated to do their best.DIVISIONAL OVERVIEWService BC is government’s chief provider of services to B.C. residents and businesses. The work of the division enables the design and delivery of accessible, responsive, and cost-effective services, making it easier for British Columbians and businesses to interact with government. Through a provincial network of 65 in-person offices and the Provincial Contact Center, Service BC provides approximately 300 government services for more than 40 partner ministries and agencies. Our team member’s unwavering commitment to an ethic of service has driven consistently high people and business satisfaction rates. In support of the division’s overarching goal of providing residents and businesses with seamless, multi-service access to government programs, the Division’s service offerings are marketed to partner ministries and the broader public sector to expand our continuum of services and leverage common platforms.Within Service BC, our vision is to deliver innovation, value, and service excellence to the people of British Columbia, with the aspirational goal of becoming a best-in-class public service delivery organization. Our people and our culture are important to us. As a team, we are motivated to deliver an excellent service experience to British Columbians, businesses, colleagues, peers, clients, and partners. We believe in being kind and helpful, and are committed to delivering “Service with Heart”.JOB OVERVIEWThe Service BC Customer Service Representative (CSR) maintains a positive, empathetic, and professional attitude when providing service and answering enquires. It requires the ability to identify and assess peoples’ needs to effectively and efficiently deliver an excellent customer service experience.The CSR provides services in-person, by phone, and through digital channels. The ability to provide clerical and administrative support such as data entry, reviewing applications for completeness, handling payments, and providing appropriate solutions, within government guidelines to a diverse population of people is essential to this role.Job Requirements:Minimum Grade 12 graduation or equivalent (GED).Experience providing inclusive customer service to diverse clienteles. Experience using digital applications to search for and record information. Preference may be given to applicants with one (1) or more of the following:Multiple years of experience in any of the above requirements.Experience providing in-person customer service.Experience providing customer service though phone or digital channels.Experience delivering customer service in a high volume, fast-paced, rapidly changing environment.Experience with conflict resolution and de-escalating situations.Experience providing services to a diverse population some of whom may be experiencing poverty issues, substance use, or mental health concerns.Experience maintaining administrative files and record keeping.Experience delivering service in a regulated or legislated environment following processes and procedures.Customer Service training and/or education.Experience handling financial transactions. Willingness Statements:Willingness to travel occasionally to provide relief coverage to other work sites (Service BC Centres, exam locations, etc.)Successful completion of security screening requirements of the BC Public Service, which may include a criminal records check, and/or Criminal Records Review Act (CRRA) check, and/or enhanced security screening checks as required by the ministry (Note: It is important that you read the job posting carefully to understand the specific security screening requirements pertaining to the position). For questions regarding this position, please contact melody.olsen@gov.bc.ca.About this Position: An eligibility list may be established to fill future temporary and permanent vacancies across the Ministry of Citizens' Services This position has full time on-site requirements.Working for the BC Public Service: The BC Public Service is committed to creating a diverse workplace to represent the population we serve and to better meet the needs of our citizens. Consider joining our team and being part of an innovative, inclusive and rewarding workplace. The Indigenous Applicant Advisory Service is available to applicants that self-identify as Indigenous (First Nations, status or non-status, Métis, or Inuit) seeking work or already employed in the BC Public Service. For guidance on applying and interviewing, please contact IndigenousApplicants@gov.bc.ca or 778-405-3452. The BC Public Service is an award-winning employer and offers employees competitive benefits, amazing learning opportunities and a chance to engage in rewarding work with exciting career development opportunities. For more information, please see What We Offer.How to Apply: Your application must clearly demonstrate how you meet the job requirements listed above.Cover Letter: NO - Please do not submit a cover letter as it will not be reviewed.Resume: YES - A resume is required as part of your application, however, it may not be used for initial shortlisting purposes.Questionnaire: YES - You will need to complete a comprehensive questionnaire to demonstrate how you meet the job requirements. Include all relevant information about your educational accomplishments and employment history including job titles, start and end dates (month and year) of your employment, and how you obtained your relevant experience. The questionnaire will take approximately 60 minutes to complete.Helpful tips, videos and more regarding the application process can be found on the Your Job Application page of MyHR. If you are experiencing technical difficulty applying, e-mail BCPSA.Hiring.Centre@gov.bc.ca, before the stated closing time, and we will respond as soon as possible.Additional Information: A Criminal Record Check (CRC) will be required. Applicants selected to move forward in the hiring process may be assessed on the Knowledge, Skills, Abilities and Competencies as outlined in the attached Job Profile located at the bottom of the posting. Applications will be accepted until 11:00 pm Pacific Standard Time on the closing date of the competition. Job Category  Administrative Services \",\n            \"location\": \"Merritt, BC\"\n        },\n        {\n            \"id\": \"A67FDFC2F7510451F7755EAC7FEB27CC\",\n            \"cityName\": \"Niagara Falls, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=00648ee9c6ffb540\",\n            \"jobName\": \"Customer Service & Retail Front Desk Associate\",\n            \"companyName\": \"Ph Vitres d'Autos\",\n            \"rowSalary\": \"Up to $18 an hour\",\n            \"date\": 1694477829277,\n            \"dateOfPosted\": 1694477828601,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.0895577,\n                    \"lon\": -79.0849436\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara Falls\",\n                \"formattedAddress\": \"Niagara Falls, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Niagara Falls\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Company:Driven Brands  We invite you to join us at Driven Brands!  Headquartered in Charlotte, NC, Driven Brands (NASDAQ: DRVN) is the largest automotive services company in North America, providing a range of consumer and commercial automotive needs, including paint, collision, glass, vehicle repair, oil change, maintenance and car wash.  With over 4,500 centers in 15 countries, Driven Brands is the parent company of some of North America’s leading automotive service brands including Take 5 Oil Change, Take 5 Car Wash, Driven Glass, Meineke, Maaco, CARSTAR, and more. Our network services over 50 million vehicles annually and generates more than $5 billion in system-wide sales each year.  Our culture inspires high performance and innovation, enabling our employees to go further, faster in their careers. With amazing people and great brands, we confidently look forward to exciting growth ahead, and believe in following the values that support this vision.  JOB DESCRIPTION:  Customer Service & Retail Front Desk Associate – Experienced & Entry Level Positions Available!  Are you a people person? Do you love helping others? Motivated by results?  If so, here is good news for you! Carstar, (a division of Driven Brands) is offering an opportunity to showcase your skills and join our growing team of Customer Service Representatives and Front Desk Associates!  Experience is VALUED…  Experienced customer service professionals with automotive industry experience can join our team right away making up to $18 per hour.*  …but no experience REQUIRED!  Some of our most successful customer service reps joined our team as trainees with no experience at all, but were once servers, restaurant workers, retail employees, call center employees, auto dealer account reps, or other customer-facing professionals!  What our Customer Service Reps love about Carstar:  Full-time & part-time schedules are available Competitive base pay rates PAID TIME OFF for full-time employees Health, Vision, & Dental Insurance As a Carstar Customer Service Rep, your job will be to:  Intake and assist walk-ins, appointments, and returning customers Create estimates, price quotes, and invoices for auto work Answer phones and return customer calls Provide excellent customer service Assist Manager with daily parts returns Ensure accuracy when ordering parts Input documentation on all calls and follow-up with callers as needed Confirm all mobile jobs parts and materials before dispatching drivers Open new accounts and service existing accounts Maintain a professional appearance and positive attitude All our CSR’s need to meet the following requirements:  Must have a positive attitude and customer service mindset Must have basic computer skills Must have strong communication skills Bilingual (Spanish) proficiency is a plus! Prior phone or call center experience is a plus!or more in markets with a higher cost of living #LI-DNI  #DBHVOL \",\n            \"location\": \"Niagara Falls, ON\"\n        },\n        {\n            \"id\": \"82BAE102ADA8087AB5C40B035FF1AB91\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4647545caede9581\",\n            \"jobName\": \"Customer Service Sales Representative\",\n            \"companyName\": \"United West Mississauga\",\n            \"rowSalary\": \"$620–$1,050 a week\",\n            \"date\": 1694477817729,\n            \"dateOfPosted\": 1694477816230,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 620.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    620.0\n                ],\n                \"range\": {\n                    \"gte\": 620.0,\n                    \"gt\": null,\n                    \"lte\": 620.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you looking for a supportive, collaborative workplace with great teams and inspiring leaders? You’ve come to the right place. We’re looking for ambitious people who share our values and want to make every day better for people around the world. If this sounds like you, and the career below sounds exciting, we’d like to hear from you. As a Customer Service Sales Representative , you will be the face of our clients. You will interact with customers to bring our clients products and services to life! You will create effective sales opportunities with each customer using the skills provided in our intensive training model. You will establish sales objectives which will contribute towards the overall success of the business. We have relationships with numerous high-profile associations and external businesses; therefore, you can directly impact the Company’s reputation, profitability and image.Key Accountability:Meet sales, service, quality and productivity objectivesResponsible for interacting with new and existing customers and clientsConduct needs analysis and provide advice to customers by effectively communicating the value and benefits of the products and services offered by our clientsProvide a high level of service, build relationships and provide accurate information and the appropriate solutions to new and existing customersRaise issues, concerns and trends to the leadership teamMaintain a high level of product knowledge, operational process and servicesAs our ideal candidate, you make valuable contributions in your ability to communicate effectively with people. You have a high-energy level and a desire to become part of a globally dynamic organization offering long-term career opportunities.Qualifications:Experience in a retail, customer service or sales rolePost-secondary degree or equivalent work/business experienceDemonstrated ability to persuade and negotiate and must possess active listening skillsEffective client record management, with attention to detailAbility to work in a fast-paced environment and manage multiple day-to-day tasksStrong computer skills, and a general knowledge level of the MS Office suite of productsJob Type: Full-timeSalary: $620.00-$1,050.00 per weekSchedule:8 hour shiftDay shiftMonday to FridayWeekends as neededAbility to commute/relocate:Mississauga, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"825DF626C8068368EE8325F32196BFAD\",\n            \"cityName\": \"Barrie, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=305f26b98b0fc1fe\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Employment Options, Barrie\",\n            \"rowSalary\": \"$56,000 a year\",\n            \"date\": 1694477777086,\n            \"dateOfPosted\": 1682531906800,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.38935559999999,\n                    \"lon\": -79.6903316\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Barrie\",\n                \"formattedAddress\": \"Barrie, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Barrie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 56000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    56000.0\n                ],\n                \"range\": {\n                    \"gte\": 56000.0,\n                    \"gt\": null,\n                    \"lte\": 56000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Bilingual Customer Service RepresentativeFillip is a Calgary-based fintech company leading the digital transformation of fleet payments. Fillip empowers hundreds of businesses with its universally accepted digital fleet card that solves the challenges of distributed payments for busy teams on the road.The Customer Success Representative (CSR) supports clients as they transition from sales prospects to active users. Focus is client relationships using proactive engagement strategies to maintain positive experiences.Customer Success RepresentativeThe CSR reports to the Head of Growth & Customer Success.ResponsibilitiesAssist new users/current clients with set-up, training, navigation, user supportPromote value through client experienceAssist with training material, onboarding support, account managementDocument and share user feedbackExecute proactive account management techniques that drive customer outcomes, product adoption and customer experienceReduce churn and drive new business growth through greater advocacy and reference abilityDelivering on fillip standards for customer support/compliance and timelinesInitiate engagement with internal team members and clients to support a culture of continuous improvementCollaborate with a world-class team:Communicating within the fillip team and across customersTrack client interactions in CRMWork closely with the Head of Growth to align on customer expectations, trends additional service opportunitiesAddress escalated client issues with speed and urgency, orchestrating resources across the company as appropriateWork cross-functionally orchestrating results with customer success, sales, marketing, product & development, people operations and finance.Requirements and SkillsBilingualProven work experience as a Customer Success Representative or similar roleExperience working with brand image and promoting value through customer experienceExceptional ability to communicate and foster positive business relationshipsTechnical skills required, as they relate to the use of fillip fleet and CRM toolsAccountability and personal organization are essentialExperience working with a diverse group of clients and team membersA communications or business diploma is preferredCompensation$56,000/yearAttractive bonus based on client retention targetsBenefit planJob Types: Full-time, PermanentSalary: $56,000.00 per yearBenefits:Dental careDisability insuranceEmployee assistance programLife insurancePaid time offVision careSchedule:Monday to FridayAbility to commute/relocate:Barrie, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Barrie, ON\"\n        },\n        {\n            \"id\": \"7EF3655F8136E349872DE46EF8B612A3\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=08a5d6bcbb4bf158\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Answerplus Inc\",\n            \"rowSalary\": \"$18.25 an hour\",\n            \"date\": 1694477776864,\n            \"dateOfPosted\": 1692777288096,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" At AnswerPlus, we are proud to say we’ve been in the answering service business for 60 years! With 4 locations across Canada and over 1500 clients, AnswerPlus has built an incredibly strong brand and reputation in the industry. Our niche is urgent call response 24/7/365. We seek to answer 80% of calls within 20 seconds or less.  As a Bilingual Customer Service Receptionist (BCSR), you have the privilege and opportunity to provide comfort and help in times of need. Bilingual CSR's answer  inbound calls and act as the  first point of contact for a wide range of situations. It could be processing a donation, providing comfort to someone stuck in an elevator, providing relief to someone experiencing pain, or aiding people in emergencies such as fires, floods, or power loss. To us, our clients, and our customers, a CSR is an \\\"invisible hero!\\\"  As a fulltime CSR we require open availability between 6 am and 12 am Monday to Sunday to work scheduled 30-40 hours per week. CSR's will be scheduled to  work a minimum of two weekends per month. We've created an award-winning culture that is backed by three generations and a true \\\"work family\\\" environment. Our employee average tenure is 9 years which also highlights how we support both personal and professional growth.  If this interests you, apply to join our team and partake in: Celebrations and Company EventsCoaching and MentoringDental, health, and EAP BenefitsPaid BreaksSocial Responsibility InitiativesPaid Training Role and Responsibilities: Provide thoughtful and professional customer supportAccurately collect details in an organized and timely mannerResolve customer issues and answer questions via phone, email, and live chatTake messages, enter orders, process and dispatch service callsMaintain a commitment to continuously improve the quality, efficiency, and effectiveness of service Qualifications and Skills:  This position requires individuals who are fluently bilingual in English and French and both written and verbally.Technically savvy and proficient keyboard skills (ie: 50+ WPM)Capable of utilizing Microsoft Office Suite, Microsoft Teams, Zoom and Go To MeetingStrong communication skills - interpersonal, listening, verbal, and writtenAbility to smile through the phone and connect with callers positivelyAbility to multitask and prioritize tasksEmpatheticGoal-orientedTeam player Work from Home Requirements: Quiet, dedicated room free of background noiseAbility to connect the computer from a router - not wirelessWindows PC - No Apple or Chrome BooksOperating System: Windows 10Full, standard-sized keyboard with Function Keys (F1-F12) and a number padTwo monitorsWebcam - for training and coaching purposesWired head set with microphone that connects to your cell phone or landlineUnlimited high-speed internetUnlimited Canada wide long-distance calling/cellphone calling planAbility to provide your own ethernet cable Start date: to be determined Training will be completed via Zoom/Go-to-Meetings/Microsoft Teams for 1-2 weeks Monday to Friday. Applicants should be available Monday to Friday between 8am-10pm for training. Daily hours will change and are scheduled between 4-8 hours per day. Camera's are mandatory to be on during all training. Compensation: $18.25 per hour plus $1.00 per hour performance bonus if targets are met when eligible. Our commitment to being an equal opportunity employer goes beyond acceptance. We celebrate and support all the amazing things that make you unique. All of our team members take pride in upholding an environment of mutual respect. We welcome and encourage applications from people with disabilities. If you require accommodation through the selection process, please call our office at 905-522-4737. \",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"89920C37FA73F24081D3DC3BF04DE07E\",\n            \"cityName\": \"Fort McMurray, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2d5ea9d3c8e68216\",\n            \"jobName\": \"Clerk, Customer Service\",\n            \"companyName\": \"Daadir Transportation Ltd\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694477713991,\n            \"dateOfPosted\": 1694477713607,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 56.7266598,\n                    \"lon\": -111.3790441\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fort McMurray\",\n                \"formattedAddress\": \"Fort McMurray, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 16\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fort McMurray\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: EnglishHours: 35 hours per weekEducation: No degree, certificate or diplomaExperience: 1 to less than 7 monthsWork setting Business sector Private sector Transportation Tasks Access and process information Address customers' complaints or concerns Arrange for billing for services Arrange for refunds and credits Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Receive and log complaints Receive payments Answer clients' inquiries and provide information Computer and technology knowledge Internet MS Excel MS Outlook MS Windows MS Word MS PowerPoint Transportation/travel information Own transportation Work conditions and physical capabilities Attention to detail Fast-paced environment Hand-eye co-ordination Repetitive tasks Tight deadlines Work under pressure Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Judgement Ability to multitask Health benefits Dental plan Health care plan Long term benefits Life insurance Other benefits Free parking available Paid time off (volunteering or personal days)\",\n            \"location\": \"Fort McMurray, AB\"\n        },\n        {\n            \"id\": \"C9FE37052E9D316BB176B9140E7109DF\",\n            \"cityName\": \"Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9bb840d392251131\",\n            \"jobName\": \"Customer Service Representative (Technical)\",\n            \"companyName\": \"City Wide Communications\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694476687036,\n            \"dateOfPosted\": 1691541132981,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6660885,\n                    \"lon\": -63.56756309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Dartmouth, NS $17 an hour, 6 positions available City Wide Communications is a local telecommunications company based in Dartmouth, NS. We’ve been around for 26 years and we’re not your average telco. We offer High Speed Internet, TV and home telephone service, and strive to give Atlantic Canadians affordable options and amazing customer service. We don’t want to be the big call center – we want to know your name and be a great place for you to excel and grow. Come join us! Main Responsibilities: The Technical Representative plays a pivotal role in providing exceptional technical support and assistance to customers, ensuring a positive and satisfying experience with our products and services. This position requires a strong understanding of various technologies, excellent problem-solving skills, and exceptional communication abilities. Act as the primary point of contact for customers seeking technical assistance via phone, email, or chat, and provide prompt and effective solutions to their queries and concerns. Troubleshoot hardware and software issues related to our products, identify root causes, and deliver comprehensive resolutions to ensure customer satisfaction. Guide customers through the installation, configuration, and setup process, ensuring they have a seamless experience with our products. Keep accurate records of customer interactions, technical issues, and solutions provided to build a knowledge base for future reference. Provide technical training and documentation to customers and internal teams to enhance their understanding of our products and improve troubleshooting skills. Identify opportunities for product improvement based on customer feedback. Strive to achieve key performance indicators (KPIs) related to customer satisfaction, response time, and issue resolution. What we offer: Competitive Pay – Starting at $16 an hour with automatic raises at 6 months and 2 years Flexible shift work between 8AM and 11PM A Comprehensive Medical, Vision & Dental Benefit Plan Opportunity to work from home or within our vibrant in office call center (paid training is done in the office as a group – working from home is an option once your full training has been successfully completed after 3 months)Casual dress code Free home telephone and internet service ( after completing probation successfully) Paid vacation, Free Parking Great teammates and team building events/contests (lately we have been doing BBQ lunches)Requirements: Call center experience - minimum 3 months Minimum High School DiplomaDemonstrates excellence in verbal communication skillsComfortable with using computer systems for data entryPunctual and committed to work schedulePass a criminal record check Demonstrates the ability to listen, understand and respond appropriately Great sense of humor\",\n            \"location\": \"Dartmouth, NS\"\n        },\n        {\n            \"id\": \"5CC75A92D7FCCC9866A8BFD545CFDE4E\",\n            \"cityName\": \"Watson Lake, YT\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bc60f13cf176f49e\",\n            \"jobName\": \"Customer Service Sales Clerk\",\n            \"companyName\": \"Shopping Unlimited Inc.\",\n            \"rowSalary\": \"$21 an hour\",\n            \"date\": 1694476649922,\n            \"dateOfPosted\": 1694420618658,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: EnglishHours: 15 to 20 hours per weekEducation: College/CEGEPExperience: 2 years to less than 3 yearsor equivalent experience Work site environment Non-smoking Work setting Rural area Relocation costs not covered by employer Mobile phone store Retail business Tasks Operate cash register Operate computerized inventory record keeping and re-ordering systems Provide advice about merchandise Assist in display of merchandise Greet customers and discuss type, quality and quantity of merchandise or services sought for purchase, rental or lease Maintain sales records for inventory control Prepare merchandise for purchase, rental or lease Prepare sales, rental or leasing contracts and accept cash, cheque, credit card or automatic debit payment Type of product Home electronics Office supplies Telephone or cellular phone Product or manufacturing design Toys Sporting goods and recreational items Personal care items Novelty items Home care items Car care items Security and safety Criminal record check Work conditions and physical capabilities Bending, crouching, kneeling Handling heavy loads Repetitive tasks Standing for extended periods Attention to detail Combination of sitting, standing, walking Weight handling More than 45 kg (100 lbs) Personal suitability Adaptability Collaborative Creativity Efficiency Hardworking Outgoing Positive attitude Proactive Quick learner Time management Dependability Efficient interpersonal skills Flexibility Organized Reliability Team player Excellent oral communication Initiative Accurate Excellent written communication Client focus Judgement Screening questions Do you have previous experience in this field of employment?\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"F1E95CF0A267D793E876FA0F1063DA45\",\n            \"cityName\": \"4960 13 St SE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=aeb5022a9b5e0a39\",\n            \"jobName\": \"Customer Service/Inside Sales Position\",\n            \"companyName\": \"All Blades Canada\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694476558625,\n            \"dateOfPosted\": 1694215050109,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"All Blades Canada Inc. is seeking an individual for a full time Customer service/Inside Sales position.Looking for someone who is hardworking, reliable, upbeat, and friendly with a positive team attitude. Should have good organization skills and the ability to prioritize. Preferably with inside sales and office experience with computers and programs (word, excel, POS programs)Responsibilities include but are not limited to:- Industrial sales and service counter duties- Maintaining and building customer relationships- Performing basic admin tasks (ie. Data entry, invoicing, digital filing)- Responding to incoming sales calls and customer inquiries- Shipping and receivingJob Types: Permanent, Full-timeSalary: $20.00-$24.00 per hourBenefits:Casual dressCompany eventsDental careExtended health careOn-site parkingPaid time offStore discountSchedule:8 hour shiftMonday to FridayWork Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"65B2390D0F506088FFD4F7C2EC597202\",\n            \"cityName\": \"2100 Steeles Ave W, Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8f1c6ea16c6876bf\",\n            \"jobName\": \"Receptionist/Customer Service Representative\",\n            \"companyName\": \"Canada Trust Driving School Inc.\",\n            \"rowSalary\": \"$19–$23 an hour\",\n            \"date\": 1694476276270,\n            \"dateOfPosted\": 1694380499791,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Canada Trust Driving School Inc, is a commercial vehicle driving school with an extra drive for quality and growth.At Canada Trust Driving School Inc, we value integrity, kindness and professionalism, and believe that with a team that shares our values, we can create an environment of constant growth and support.We are currently looking for a friendly and welcoming, communicative, and experienced person to join our team. As the full-time Information Desk Representative, you will be the point of contact and your duties will include greeting students and visitors to the school and determining the reason for their visit, answering phone calls, responding to inquiries by email and social media, and providing detailed information to all.Working closely with the School Administrator, you will be responsible for certain administrative duties, but primarily your role will be one of impeccable customer service and sales. As a liaison for the school, the information you provide and the way you provide it, should encourage visits to the school and in the end enrollment in one of our programs.If this sounds like an exciting position, if you can see the potential growth in the role and believe you can be an asset to the productivity and success of Canada Trust Driving School, please send your resume and tell us why you are the perfect fit for us.Candidates who have some experience in customer service and administrative roles are preferred.Duties and Responsibilities· Greet and welcome guests as they arrive at the office.· Direct visitors to the appropriate team member· Answer phone inquiries and provide accurate information about the school and our programs.· Respond to emails and social media messages in a prompt and professional manner.· Communicate with students regarding absences, availability, late arrivals for lessons, reminders of due dates and upcoming courses.· Communicate and coordinate with instructors, administrators and scheduling regarding student absences, availability, and late arrivals for lessons.· Perform clerical duties such as making copies and maintaining a steady inventory of applications and forms.· Update student cards and information· Ensure reception area is tidy and presentable, with all necessary stationery and materials (e.g. pens, forms and brochures)· Receive, sort, and distribute mail and deliveries.Requirements and Skills· Must be able to speak both Russian and English languages fluently, with solid written and verbal communication skills. Speaking Persian as well is an asset.· Highly organized multitasker who works well in a fast-paced environment, with the ability to prioritize tasks.· Proven work experience as a Receptionist, Front Office Representative, or similar role· Proficiency in Microsoft Office and a variety of Social Media platforms· Adept and experienced with office equipment (e.g., computers, printers, and telephones)· Professional and pleasant attitude and appearance· Ability to be resourceful and proactive when issues arise.· Excellent time management and communication skills· Customer service and sales attitude· An adaptive nature with a strong willingness to learn and grow with the company· High school diploma or equivalent; additional certification in administration is a plus.Job Types: Permanent, Full-timeSalary: $19.00-$23.00 per hourSchedule:Monday to FridayExperience:Administrative: 1 year (required)Sales: 1 year (preferred)Language:Russian (required)Persian (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"9A97EDB9FF4352A0D18F3C60B6823F04\",\n            \"cityName\": \"Storehouse Canada in Belleville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=807bce6932b35c4b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Storehouse Canada\",\n            \"rowSalary\": \"$15.50–$17.00 an hour\",\n            \"date\": 1694475822600,\n            \"dateOfPosted\": 1668682950007,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.1627589,\n                    \"lon\": -77.3832315\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Belleville\",\n                \"formattedAddress\": \"Belleville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hastings County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Belleville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The career and opportunity is challenging and requires determination, perseverance, and a strong sense of loyalty. This takes hard work, intelligence, and time. We are giving self-driven, energetic, and hardworking individuals a chance to get involved with one of the fastest-growing industries in Canada. Candidates will learn all aspects of running a business including marketing, advertising, customer service sales and business development and property management. We will develop your current skills and challenge you to learn new ones. Candidates who expect a lot from themselves and want to grow and learn new skills will find a home with our company.Below is a list of duties and responsibilities for this position:Showing Self-Storage unitsMaking Collection CallsRenting Self-Storage UnitsSelling merchandise (upsell moving and packing suppliesResponding to inquiries via emails and onlineAnswering phone callsAssisting the facility manager with daily, weekly and monthly operations.Receiving and processing paymentsMaintaining a clean officePerforming a facility and locker checkOpening and closing the facilityStocking merchandise areaMaintaining a clean and safe facilityEnsuring all rentable storage units are clean and ready to show to potential clientsProvide exceptional customer serviceWe emphasize Merit over seniority and offer competitive compensation. No experience is necessary to join our team; however, a degree or related experience is preferred. We thank all applicants for their interest, however only those selected for an interview will be contacted.Secondary School (preferred)Experience:customer service/sales: 2 yearsJob Types: Permanent, Part-timeSalary: $15.50-$17.00 per hourBenefits:Casual dressSchedule:Day shiftSupplemental pay types:Bonus payAbility to commute/relocate:Belleville, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)\",\n            \"location\": \"Belleville, ON\"\n        },\n        {\n            \"id\": \"4DB655B90D23FD686C4D0A71C2D76AF3\",\n            \"cityName\": \"Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d4caa4fd9f4c8a3d\",\n            \"jobName\": \"Customer Service/Ticket Agent\",\n            \"companyName\": \"Gray Line Sightseeing Victoria\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694475818880,\n            \"dateOfPosted\": 1693610464103,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4284207,\n                    \"lon\": -123.3656444\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job titleGray Line Sightseeing Victoria Customer Service/Ticket AgentReports toGray Line Manager/SupervisorJob OutlineDo you enjoy the outdoors? Do you like talking to and introducing people to our exciting and beautiful city? If so, Gray Line Sightseeing Victoria is the place for you!Our Customer Service/Ticket Agents are situated at Gray Line kiosks around Victoria’s picturesque Inner Harbour, engaging visitors and locals alike as ambassadors for our beautiful city and Gray Line’s multiple tour services. We provide a variety of memorable sightseeing experiences and serve as an important conduit for visitors who want to explore all that Victoria has to offer. An ideal candidate will have exceptional communication skills and possess a can-do attitude.At The Wilson’s Group of Companies, we believe in providing a positive and safe work environment for our staff members. If you’re looking to gain valuable experience in the tourism industry, this is a perfect start!We are looking for part time staff to start as soon as possible.Duties and responsibilitiesTicket sales for various products within Wilson’s Group and Sightseeing VictoriaPreparing guests for various tours and providing a memorable lasting experienceProvide guests with information and suggestions for touring VictoriaOpening and closing dutiesAssisting with projects as neededQualifications & ExperienceClass 5 Drivers licenseFriendly, outgoing, and energetic personalityAbility to work independently and as part of a teamAbility to take initiative, multi-task and be adaptable to different aspects of the jobWilling and able to work outside in various Victoria weather conditionsStrong sales capabilitiesProven problem-solving skillsExperience handling cash, maintaining a cash float and reconciling daily salesKnowledge of Victoria and its local attractions is an asset, additional training will be providedTourism experience and other languages is an asset but not requiredCompensationA competitive hourly wageUnique company and industry perksA supportive management teamRaises/promotions based on performanceIf you are interested in joining our Gray Line Sightseeing Victoria team, please submit your resume. While we welcome all applicants, only those selected for an interview will be contacted.Job Type: Part-timePart-time hours: 15-25 per weekSalary: From $18.00 per hourBenefits:Company eventsFlexible scheduleFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftExperience:Customer service: 1 year (preferred)Licence/Certification:Class 5 Licence (preferred)Work Location: In person\",\n            \"location\": \"Victoria, BC\"\n        },\n        {\n            \"id\": \"7133DD48F7D8BA896070DD2742F635CC\",\n            \"cityName\": \"17600 Yonge Street, Newmarket, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f3782cb5b5f6fa7f\",\n            \"jobName\": \"Customer Service And Food hAndling\",\n            \"companyName\": \"Subway\",\n            \"rowSalary\": \"$15.50–$17.50 an hour\",\n            \"date\": 1694475131775,\n            \"dateOfPosted\": 1670099707246,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.0493831,\n                    \"lon\": -79.47891640000002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Newmarket\",\n                \"formattedAddress\": \"Yonge St, Newmarket, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Newmarket\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Subway located in upper Canada mall is hiring!we are currently hiring full time & part time positions. We have day shifts, evening and weekend shifts available.We are looking for friendly and outgoing candidates, who have the ability to work well with others and in a fast paced environment.Please reply to this ad with your resume, or during a resume to subway.Thank you!Job Types: Part-time, Full-timePart-time hours: 40 per weekSalary: $15.50-$17.50 per hourSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayWeekend availabilityWork Location: In person\",\n            \"location\": \"Yonge St, Newmarket, ON\"\n        },\n        {\n            \"id\": \"5DF07F024CC86389628D7606D8902301\",\n            \"cityName\": \"2539 Broadway W, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b66f1e76373827cd\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Thomas Haas Chocolates & Patisserie\",\n            \"rowSalary\": \"$18–$19 an hour\",\n            \"date\": 1694474715487,\n            \"dateOfPosted\": 1694310574467,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"THOMAS HAAS Chocolates and Patisserie is looking for a FOODIE & COFFEE loving person to join our team!- Full-time: Tuesday to Saturday (40hrs/wk)Sundays & Mondays Closed (always have 2 set days off)Opening shift starts at 7:15amClosing shift ends around 7pm (giving you time for dinner with family & friends! :)- we are looking for someone who is hardworking, possess good multi-tasking skills, has attention to detail, enjoys engaging with people and is self-motivated- a good part of this job is talking with our customers & your co-workers - good listening skills & English comprehension are key!- we offer a competitive wage & shared tips- free beverages & meal while at work- extended health benefits (after one year full-time with us)- we hire people on work/travel visas (12 months)Your past customer service experience would reflect in your starting wage.*barista experience is an asset, but not necessary*Do you have a willingness to learn and expand your skill set?Do you enjoy working in a team in a fast paced environment?We would love to meet you if this sounds like an opportunity you would like to pursue!Job Type: Full-timeSalary: $18.00-$19.00 per hourBenefits:Dental careFlexible schedulePaid time offVision careSchedule:8 hour shiftDay shiftSupplemental pay types:TipsAbility to commute/relocate:Vancouver, BC V6K 2E9: reliably commute or plan to relocate before starting work (required)Application question(s):How do you handle a stressful situation?Education:Secondary School (required)Experience:customer service: 1 year (required)Language:and comprehend English very well (required)Licence/Certification:FoodSafe (required)Shift availability:Day Shift (required)Work Location: In personApplication deadline: 2023-09-23Expected start date: 2023-09-15\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"89CD00BA8A6DD6B8938659F44A10AC3B\",\n            \"cityName\": \"12038 248 St, Maple Ridge, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=63c6cbc58a164bed\",\n            \"jobName\": \"Customer Service Expert / Pizza Cook\",\n            \"companyName\": \"Domino’s | Silver Valley Pizza Inc.\",\n            \"rowSalary\": \"$16.75–$17.75 an hour\",\n            \"date\": 1694474676996,\n            \"dateOfPosted\": 1694298894251,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service Expert’s role is crucial within the Domino’s system. We pride ourselves on offering fast and friendly service with a smile, and our CSEs lead the way in doing so. Within our fast paced environment, the role is primarily to offer top quality customer service by phone and in person at the counter. Customer Service Experts are expected to know Domino’s products and the current offers in order to provide customers with the correct order and best value based on their needs. A uniform is provided. Customer Service Experts are expected to be presentable by following Domino’s personal image and grooming standards. Functions: Customer Service Experts will take orders by phone-in customers, as well as customers at the store. They are expected to manage the cash drawer when accepting payment for orders and returning change. CSEs will also handle customer concerns using the approach taught during Domino’s on-boarding and orientation. Customer Service Experts will also help make quality products, label boxes, cut pizzas and prepare orders for delivery or to be served to in-store customers. CSEs also help in maintaining the store’s professional image by participating in the cleaning tasks assigned to all team members. Qualifications: All Customer Service Experts must have the following:Friendly and well spokenGood math skills to handle cash handling for in-store customer paymentsSpeak English fluently in order to serve customers Benefits:Flexible schedulesCompetitive wagesStaff discountsCareer growth opportunitiesHealth & Dental available for full-time staff REQUIREMENTS Must be 16 years or older At Domino's Pizza, Our Most Important Ingredient is Our People! We offer employment opportunities within our franchise stores. Take the first step in joining our team, and you'll find opportunities you won't find anywhere else in the industry!\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"2437324B20A1A3B6D8723926D3D3C539\",\n            \"cityName\": \"Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=085ea399009bf944\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Roshni Wellness\",\n            \"rowSalary\": \"$19–$20 an hour\",\n            \"date\": 1694474668768,\n            \"dateOfPosted\": 1694298894850,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative- MarketsWe're looking for someone to run our Central Okanagan markets for the Fall/Winter Season. Markets are booked on weekends from Sept- early Dec in the Kelowna/West Kelowna area. Must be available to work weekends. Perfect for university students or those looking for additional income on weekends.Duties:- Provide exceptional customer service and support to customers- Coordinate setting up and taking down displays at market locations across the Centeral Okanagan- Interact with customers and be ready to share product info, pricing, and any others questions- Communicate with team about stock, sales, trends, etc.- Maintain sales and product inventory stats using our systems-Requirements:- Excellent verbal and written communication skills- Interest in the local makers scene and appreciation for handmade local goods- Strong problem-solving and decision-making abilities- Ability to analyze customer needs and provide appropriate solutions- Previous experience in a customer service role is preferred- Proficient in using computer systems and software applications- Ability to work mostly independently as well as part of a team- High school diploma or equivalent-Able to lift 50 lbs for market sets ups-Must have a reliable vehicle that can fit market equipment and can transport to market locationsWe offer competitive pay, a positive work environment, and opportunities for growth within the company. If you are a motivated individual with a passion for providing excellent customer service, we would love to hear from you.To apply, please submit your resume and cover letter detailing your relevant experience and why you are interested in this position.This posting is only open to individuals who are permitted to work in Canada.Job Types: Part-time, SeasonalContract length: 3 monthsPart-time hours: 12 per weekSalary: $19.00-$20.00 per hourSchedule:Weekends as neededWeekends onlyApplication question(s):Do you have a reliable vehicle that you can use to commute and transport market equipment in?Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Ability to Commute:Kelowna, BC (preferred)Work Location: In personExpected start date: 2023-09-17\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"8A1166D4A57C3D2F93D73AB6D5FEEEE4\",\n            \"cityName\": \"194 Chain Lake Dr, Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=344bfb716ddb9c59\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Spirit Halloween, Bayers Lake\",\n            \"rowSalary\": \"$15–$17 an hour\",\n            \"date\": 1694473063331,\n            \"dateOfPosted\": 1693625548626,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.645894,\n                    \"lon\": -63.66951599999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax\",\n                \"formattedAddress\": \"Chain Lake Dr, Halifax, NS B3S, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halifax\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Company descriptionSpirit Halloween is Canada's number 1 store for costumes, decore and more.This is a seasonal position we build in August, and tear down in November, then repeat next year. If you enjoy scary movies, pop culture and all things halloween, then this is a great place to work.Job descriptionIf you like all things Halloween, then this is a great opportunity to be in your element.Spirit halloween is Canada's number 1 halloween retailer, with the best prices and best customer service policies in the nation. We work with all things spooky, macabre and pop culture to deliver a unique experience to our customers and staff a like.This is a seasonal position, which ends in early-mid November.So this is not at all permanent. However you are invited to stay with us each season.Great opportunity to earn extra cash for the holidays.Great customers. Lots of fun.Job Types: Full-time, Part-time, TemporaryContract length: 2-3 monthsPart-time hours: 16-48 per weekSalary: $15.00-$17.00 per hourBenefits:On-site parkingStore discountDay range:Monday to FridayWeekends as neededShift:10 hour shift12 hour shift4 hour shift8 hour shiftDay shiftWork setting:Apparel storeCOVID-19 considerations:Plastic barriers and masks are required on premisesWork Location: In person\",\n            \"location\": \"Chain Lake Dr, Halifax, NS\"\n        },\n        {\n            \"id\": \"2E0BF48A5644343BEFE88390FCEE6C12\",\n            \"cityName\": \"Prince Albert, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=88870141dbaaadba\",\n            \"jobName\": \"Customer Service Representative - Financial Services\",\n            \"companyName\": \"Speedy Cash Canada\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694473047241,\n            \"dateOfPosted\": 1693624919462,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.2033494,\n                    \"lon\": -105.7530705\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Prince Albert\",\n                \"formattedAddress\": \"Prince Albert, SK, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 15\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Prince Albert\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsHealth benefits Dental plan Health care plan Paramedical services coverage Vision care benefits Financial benefits Bonus Long term benefits Pension planWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Prince Albert, SK\"\n        },\n        {\n            \"id\": \"3E092857EDAFEF1E7278C84358A4465A\",\n            \"cityName\": \"Arum Lily Edmonton in Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0fed82cb45d9582b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Arum Lily Edmonton\",\n            \"rowSalary\": \"$17–$20 an hour\",\n            \"date\": 1694473025405,\n            \"dateOfPosted\": 1693625003262,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Serves customers by helping them select products.Drives sales through engagement of customers, suggestive selling, and sharing product knowledge.Responds to customers’ questions.Documents sales by creating or updating customer profile records.Processes payments by totaling purchases, processing checks, cash, and store or other credit and debit cards.keeps the front shop clean and organized.helps other team members when busy.Maintaining a positive, empathetic, and professional attitude toward customers at all times.Communicating with customers through various channels.Acknowledging and resolving customer complaints.Communicating and coordinating with colleagues as necessary.Ensure customer satisfaction and provide professional customer support.Knowledge in Marketing and social media is a BONUS.Job Type: Full-timeSalary: $17.00-$20.00 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftEducation:Secondary School (preferred)Experience:customer service: 3 years (required)Work Location: In personExpected start date: 2023-09-25\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"6665D9114E17BE5F7302F2F4B28B1DC0\",\n            \"cityName\": \"Breslau, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=438d22dff0f3bb27\",\n            \"jobName\": \"Customer Service Scheduler\",\n            \"companyName\": \"Community Support Connections\",\n            \"rowSalary\": \"$18.65 an hour\",\n            \"date\": 1694472893225,\n            \"dateOfPosted\": 1693624893957,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4691726,\n                    \"lon\": -80.4094164\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Breslau\",\n                \"formattedAddress\": \"Breslau, ON N0B 1M0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Breslau\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CUSTOMER SERVICE SCHEDULER Permanent, Full-Time Estimated Start Date: September 25, 2023 35 hours per week, $18.65/hour (Monday - Friday, weekend availability) At Community Support Connections, we wake up each morning energized about the difference we make in the lives of our clients; people who could be your parents, grandparents, friends, or neighbours. Working with hundreds of amazing volunteers, donors, and community partners, we provide a wide range of community supports for older adults and people with different abilities to help them live at home with independence and dignity – something we all deserve. We are truly caring and client-centered, and are constantly innovating; looking for new and better ways to provide the best care and supports possible. Passion and commitment permeate everything we do. Driven by our values, we treat our clients, volunteers, donors, and each other, with dignity and respect. We recognize that diversity is the foundation for understanding the needs of our stakeholders. We believe the best way to serve our clients and volunteers is to create an environment and culture that empowers our staff to be as productive and happy as possible. That includes: Versatile work options including flexible hours or work from home hybrid Generous benefit days and group RRSPs Competitive health and dental benefits Access to our Employee and Family Assistance Plan (EFAP) On-site hot lunch options from our own kitchen Free parking If what we do resonates with your core values, then we want to hear from you! The Role: Working closely with the Scheduling Team, the Customer Service Scheduler provides customer service in a professional and friendly manner. This includes answering telephone calls, greeting visitors, answering and redirecting inquiries, processing mail, and maintaining database information. They respond to client needs and demands for internal services, identify client needs, and communicate with staff, clients and volunteers regarding various agency programs. You: Successfully balance technical and logistical duties with patience and professionalism to respond to clients, caregivers, volunteers and visitors Thrive in a fast-paced, dynamic, responsive and ever-changing environment Are able to prioritize workloads and handle multiple projects simultaneously Are a natural problem-solver with demonstrated ability to use good judgement in decision-making Are an excellent communicator with a keen sense of timeliness Responsibilities Answer multi-line phone; greet clients, volunteers and other visitors; answer client inquiries and redirect calls and inquires to appropriate agency staff members Receive client requests for services Coordinate service with our day program partners Prepares and updates Transportation, Meals on Wheels, and Assisted Grocery Shopping schedules to ensure agency resources are maximized and adjustments are addressed Match transportation and shopping clients’ needs with drivers Coordinate the Assisted Grocery Shopping Program Communicate schedules with clients, volunteers and staff and communicate any changes to the schedule Conduct follow-ups on client and volunteer inquiries, requests or complaints in a professional and friendly manner Ensure all scheduling and program information is entered accurately in the AlayaCare database Update and maintain client information in AlayaCare Conduct weekly audit of AlayaCare to ensure scheduling entries and associated billings are accurate Drive agency vehicles (including for program delivery) if required Assists with special projects and other tasks, as needed Education/Qualifications Two-year community college diploma in a related field or equivalent work experience Minimum 1-year customer service experience Valid Driver’s License and daily access to a reliable vehicle for business-related travel Clean Drivers Abstract Current Emergency First Aid/CPR A Certificate Experience working with older adults and/or people with diverse abilities Working Hours & Environment Willing and able to work occasional evenings and weekends Extensive computer and telephone use Willing and able to work in a hybrid work setting (home and office) Please submit a resume and cover letter, clearly identifying the unique attributes you bring to the position by September 15, 2023. We are happy to accommodate the needs of qualified candidates in all parts of the recruitment and assessment process in accordance with the Accessibility for Ontarians with Disabilities Act (AODA). If you are contacted for an interview and anticipate needing accommodations for any part of the recruitment process, please do not hesitate to let us know how to best meet your needs. Only those candidates selected for an interview will be contacted. Check out communitysupportconnections.org to learn more about our programs and services! You can also find us on Facebook, Twitter and LinkedIn!7SGhlTOsrE\",\n            \"location\": \"Breslau, ON\"\n        },\n        {\n            \"id\": \"CABF2B08B3E64BC652D95189D5CA4BF5\",\n            \"cityName\": \"Westmount, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4cfdabab544adcf7\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Answerplus Inc\",\n            \"rowSalary\": \"$18.25 an hour\",\n            \"date\": 1694472768165,\n            \"dateOfPosted\": 1692777290993,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.48571889999999,\n                    \"lon\": -73.59569929999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Westmount\",\n                \"formattedAddress\": \"Westmount, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Westmount\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" At AnswerPlus, we are proud to say we’ve been in the answering service business for 60 years! With 4 locations across Canada and over 1500 clients, AnswerPlus has built an incredibly strong brand and reputation in the industry. Our niche is urgent call response 24/7/365. We seek to answer 80% of calls within 20 seconds or less.  As a Bilingual Customer Service Receptionist (BCSR), you have the privilege and opportunity to provide comfort and help in times of need. Bilingual CSR's answer  inbound calls and act as the  first point of contact for a wide range of situations. It could be processing a donation, providing comfort to someone stuck in an elevator, providing relief to someone experiencing pain, or aiding people in emergencies such as fires, floods, or power loss. To us, our clients, and our customers, a CSR is an \\\"invisible hero!\\\"  As a fulltime CSR we require open availability between 6 am and 12 am Monday to Sunday to work scheduled 30-40 hours per week. CSR's will be scheduled to  work a minimum of two weekends per month. We've created an award-winning culture that is backed by three generations and a true \\\"work family\\\" environment. Our employee average tenure is 9 years which also highlights how we support both personal and professional growth.  If this interests you, apply to join our team and partake in: Celebrations and Company EventsCoaching and MentoringDental, health, and EAP BenefitsPaid BreaksSocial Responsibility InitiativesPaid Training Role and Responsibilities: Provide thoughtful and professional customer supportAccurately collect details in an organized and timely mannerResolve customer issues and answer questions via phone, email, and live chatTake messages, enter orders, process and dispatch service callsMaintain a commitment to continuously improve the quality, efficiency, and effectiveness of service Qualifications and Skills:  This position requires individuals who are fluently bilingual in English and French and both written and verbally.Technically savvy and proficient keyboard skills (ie: 50+ WPM)Capable of utilizing Microsoft Office Suite, Microsoft Teams, Zoom and Go To MeetingStrong communication skills - interpersonal, listening, verbal, and writtenAbility to smile through the phone and connect with callers positivelyAbility to multitask and prioritize tasksEmpatheticGoal-orientedTeam player Work from Home Requirements: Quiet, dedicated room free of background noiseAbility to connect the computer from a router - not wirelessWindows PC - No Apple or Chrome BooksOperating System: Windows 10Full, standard-sized keyboard with Function Keys (F1-F12) and a number padTwo monitorsWebcam - for training and coaching purposesWired head set with microphone that connects to your cell phone or landlineUnlimited high-speed internetUnlimited Canada wide long-distance calling/cellphone calling planAbility to provide your own ethernet cable Start date: to be determined Training will be completed via Zoom/Go-to-Meetings/Microsoft Teams for 1-2 weeks Monday to Friday. Applicants should be available Monday to Friday between 8am-10pm for training. Daily hours will change and are scheduled between 4-8 hours per day. Camera's are mandatory to be on during all training. Compensation: $18.25 per hour plus $1.00 per hour performance bonus if targets are met when eligible. Our commitment to being an equal opportunity employer goes beyond acceptance. We celebrate and support all the amazing things that make you unique. All of our team members take pride in upholding an environment of mutual respect. We welcome and encourage applications from people with disabilities. If you require accommodation through the selection process, please call our office at 905-522-4737. \",\n            \"location\": \"Westmount, QC\"\n        },\n        {\n            \"id\": \"65C4E810877510EB264AF600FDFCFA26\",\n            \"cityName\": \"Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=086b2d17abe5de8d\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Answerplus Inc\",\n            \"rowSalary\": \"$18.25 an hour\",\n            \"date\": 1694472735266,\n            \"dateOfPosted\": 1692777338340,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2557206,\n                    \"lon\": -79.8711024\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" At AnswerPlus, we are proud to say we’ve been in the answering service business for 60 years! With 4 locations across Canada and over 1500 clients, AnswerPlus has built an incredibly strong brand and reputation in the industry. Our niche is urgent call response 24/7/365. We seek to answer 80% of calls within 20 seconds or less.  As a Bilingual Customer Service Receptionist (BCSR), you have the privilege and opportunity to provide comfort and help in times of need. Bilingual CSR's answer  inbound calls and act as the  first point of contact for a wide range of situations. It could be processing a donation, providing comfort to someone stuck in an elevator, providing relief to someone experiencing pain, or aiding people in emergencies such as fires, floods, or power loss. To us, our clients, and our customers, a CSR is an \\\"invisible hero!\\\"  As a fulltime CSR we require open availability between 6 am and 12 am Monday to Sunday to work scheduled 30-40 hours per week. CSR's will be scheduled to  work a minimum of two weekends per month. We've created an award-winning culture that is backed by three generations and a true \\\"work family\\\" environment. Our employee average tenure is 9 years which also highlights how we support both personal and professional growth.  If this interests you, apply to join our team and partake in: Celebrations and Company EventsCoaching and MentoringDental, health, and EAP BenefitsPaid BreaksSocial Responsibility InitiativesPaid Training Role and Responsibilities: Provide thoughtful and professional customer supportAccurately collect details in an organized and timely mannerResolve customer issues and answer questions via phone, email, and live chatTake messages, enter orders, process and dispatch service callsMaintain a commitment to continuously improve the quality, efficiency, and effectiveness of service Qualifications and Skills:  This position requires individuals who are fluently bilingual in English and French and both written and verbally.Technically savvy and proficient keyboard skills (ie: 50+ WPM)Capable of utilizing Microsoft Office Suite, Microsoft Teams, Zoom and Go To MeetingStrong communication skills - interpersonal, listening, verbal, and writtenAbility to smile through the phone and connect with callers positivelyAbility to multitask and prioritize tasksEmpatheticGoal-orientedTeam player Work from Home Requirements: Quiet, dedicated room free of background noiseAbility to connect the computer from a router - not wirelessWindows PC - No Apple or Chrome BooksOperating System: Windows 10Full, standard-sized keyboard with Function Keys (F1-F12) and a number padTwo monitorsWebcam - for training and coaching purposesWired head set with microphone that connects to your cell phone or landlineUnlimited high-speed internetUnlimited Canada wide long-distance calling/cellphone calling planAbility to provide your own ethernet cable Start date: to be determined Training will be completed via Zoom/Go-to-Meetings/Microsoft Teams for 1-2 weeks Monday to Friday. Applicants should be available Monday to Friday between 8am-10pm for training. Daily hours will change and are scheduled between 4-8 hours per day. Camera's are mandatory to be on during all training. Compensation: $18.25 per hour plus $1.00 per hour performance bonus if targets are met when eligible. Our commitment to being an equal opportunity employer goes beyond acceptance. We celebrate and support all the amazing things that make you unique. All of our team members take pride in upholding an environment of mutual respect. We welcome and encourage applications from people with disabilities. If you require accommodation through the selection process, please call our office at 905-522-4737. \",\n            \"location\": \"Hamilton, ON\"\n        },\n        {\n            \"id\": \"E6E2524949155875B6744B9E6CA27049\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dc5887f05a02b0b9\",\n            \"jobName\": \"Customer Service Support Representative\",\n            \"companyName\": \"Nugget.Ai\",\n            \"rowSalary\": \"$21.65 an hour\",\n            \"date\": 1694472634355,\n            \"dateOfPosted\": 1692777284638,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"nugget.ai is posting this job on behalf of our client, Garden River First Nation Educational Unit . nugget.ai is responsible solely for the posting of this job. Garden River First Nation Educational Unit will be responsible for the application, screening and hiring process. Employment Type : Full-time Salary: $21.65/hr Position Summary: Garden River First Nation Education Unit is seeking a Customer Service Support Representative to join our team. This position will work with customers to ensure that all our customers’ needs are addressed accurately and efficiently. The Customer Service Support Representative will provide education and handle a wide variety of questions while ensuring a world-class customer experience. The ideal candidate will be passionate about Customer Service and motivated to work with a customer-centric team. Requirements: High School Diploma or GED equivalent Previous experience in a customer service role Knowledge of Microsoft Office suite Strong verbal and written communication skills and excellent ability to listen and respond Must be courteous with strong customer service orientation Excellent multitasking abilities Strong flexibility and the ability to manage and adapt to changing priorities quickly Nice to Haves: Associate’s or Bachelor’s degree Experience working in a contact center/call center environment Job Duties/Responsibilities: Resolve routine customer requests with services via inbound, outbound calls, or the Internet. Speak with customers in a courteous, friendly, and professional manner using protocol procedures. Inquire, clarify, and confirm customer requirements and understanding of the solution. Provide additional customer education and information as needed. Notify clients of any results in a timely and accurate manner Participate in activities designed to improve customer satisfaction and business performance. Perform administrative support for school record management, CRM data maintenance, and internal records to assure HIPAA compliance. This position requires a current satisfactory Criminal Records Check (including Vulnerable Sector Search), Child Abuse Registry Check and Adult Abuse Registry Check as conditions of employment. The successful candidate will be responsible for any service charges incurred. A security check is considered current if it was obtained no more than six (6) months prior to the start of employment.\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"60B0133E9ED78BE1F76FA0D29B4E0AA5\",\n            \"cityName\": \"801 Royal Oak Dr, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1e085dcc714ff3eb\",\n            \"jobName\": \"Cashier/Customer Service - Victoria (Broadmead Village)\",\n            \"companyName\": \"Canadian Tire\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694472263857,\n            \"dateOfPosted\": 1694472263612,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.49763189999999,\n                    \"lon\": -123.3742387\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Royal Oak Dr, Saanich, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you ready to join Canada's most-shopped general merchandise retailer, with over 500 stores from coast to coast? Canadian Tire offers customers a unique mix of products and services through three specialty categories in which the organization is the market leader - automotive parts, accessories and service; sports and leisure products; and home products. Canadian Tire offers competitive compensation packages including; benefits, potential for profit sharing, extensive training, and career opportunities from within and across the country at the Canadian Tire Retail stores. Summary The Cashier team member works in a fast-paced environment that involves constant interaction with customers. This position requires delivering friendly and courteous service while processing customer purchases efficiently and correctly. This role involves the operation of a computerized cash register. Main Responsibilities and Tasks: Operates cash register and all point of sales functions.Processes customer purchases efficiently, following standardized procedures.Accurately verifies merchandise quantities, descriptions and prices when processing customer purchases.Balances cash and is aware of amount of cash on hand.Maintains merchandise around the cash area and ensures that retail basics are executed efficiently.Handles multiple customers in an effective and efficient manner.Deals with challenging situations and conflict resolution in a professional manner. Requirements Highly approachable, customer-oriented individual who thrives in offering exceptional service to customers.Strong belief in the Canadian Tire values of honesty, integrity, and respect.Effective written and oral communication skills and the ability to maintain professional communication, even in challenging situations.Attention to detail and organizational skills.Ability to resolve retail and/or customer issues.Ability to multitask, adapt and cope with challenging and changing situations.Positive attitude, punctuality and solid work ethic.Strong mathematical ability and typing skills.Ability to work with computerized systems and with minimum supervision. More about the position: Potential Career OpportunitiesNext levels: Merchandiser, Cashier Supervisor, and Department Manager.Physical Demands and Working ConditionsStanding/walking for 8 hours.Lifting and/or carrying of merchandise items, as required, on a regular, frequent and unassisted basis. Merchandise item may vary in weight from \\\"light\\\" to \\\"heavy\\\".Our offering includesCompetitive compensation and benefit packagePotential for Profit SharingEmployee Shopping DiscountsFlexible work hoursLearning and Development opportunitiesScholarshipsReward and Recognition ProgramA culture of performance & accountabilityA supportive and positive team environment Background Check Requirements As a condition of employment, this position may be subject to the successful completion of the following pre-employment conditions:Reference CheckEmployment VerificationsCriminal Background CheckCredit Check\",\n            \"location\": \"Royal Oak Dr, Victoria, BC\"\n        },\n        {\n            \"id\": \"756EE852AA76D233FCBFAA54EFF5BD4A\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4257ef8aff5a1cf2\",\n            \"jobName\": \"Customer Service Support Representative\",\n            \"companyName\": \"Nugget.Ai\",\n            \"rowSalary\": \"$21.65 an hour\",\n            \"date\": 1694472067991,\n            \"dateOfPosted\": 1692774988465,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"nugget.ai is posting this job on behalf of our client, Garden River First Nation Educational Unit . nugget.ai is responsible solely for the posting of this job. Garden River First Nation Educational Unit will be responsible for the application, screening and hiring process. Employment Type : Full-time Salary: $21.65/hr Position Summary: Garden River First Nation Education Unit is seeking a Customer Service Support Representative to join our team. This position will work with customers to ensure that all our customers’ needs are addressed accurately and efficiently. The Customer Service Support Representative will provide education and handle a wide variety of questions while ensuring a world-class customer experience. The ideal candidate will be passionate about Customer Service and motivated to work with a customer-centric team. Requirements: High School Diploma or GED equivalent Previous experience in a customer service role Knowledge of Microsoft Office suite Strong verbal and written communication skills and excellent ability to listen and respond Must be courteous with strong customer service orientation Excellent multitasking abilities Strong flexibility and the ability to manage and adapt to changing priorities quickly Nice to Haves: Associate’s or Bachelor’s degree Experience working in a contact center/call center environment Job Duties/Responsibilities: Resolve routine customer requests with services via inbound, outbound calls, or the Internet. Speak with customers in a courteous, friendly, and professional manner using protocol procedures. Inquire, clarify, and confirm customer requirements and understanding of the solution. Provide additional customer education and information as needed. Notify clients of any results in a timely and accurate manner Participate in activities designed to improve customer satisfaction and business performance. Perform administrative support for school record management, CRM data maintenance, and internal records to assure HIPAA compliance. This position requires a current satisfactory Criminal Records Check (including Vulnerable Sector Search), Child Abuse Registry Check and Adult Abuse Registry Check as conditions of employment. The successful candidate will be responsible for any service charges incurred. A security check is considered current if it was obtained no more than six (6) months prior to the start of employment.\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"9B5E12DD264998F0455D7E6867FCC8AB\",\n            \"cityName\": \"St.Urbain Bagel in Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a8d7f4855c6a5e96\",\n            \"jobName\": \"Customer Service, Cleaning\",\n            \"companyName\": \"St.Urbain Bagel\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694471888256,\n            \"dateOfPosted\": 1693625840453,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Looking for someone from 8 AM to 4 PM on Saturdays and perhaps Thursdays from 10-4 at the moment. Someone who is responsible and motivated, willing to work in a busy but fun environment with friendly staff.Job Types: Full-time, Part-timePart-time hours: 50 per weekSalary: From $17.00 per hourBenefits:Dental careExtended health careStore discountSchedule:8 hour shiftWeekends as neededSupplemental pay types:TipsExperience:cleaning: 1 year (preferred)cleaner: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"ADCC1F9253B6EB663E4D7625C6E021E9\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2755d24258ee1d41\",\n            \"jobName\": \"Customer Service & Retention Specialist (Mandarin Speaker Only)\",\n            \"companyName\": \"Connex Global Communications Inc. O/A Phonebox\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694471595543,\n            \"dateOfPosted\": 1693625013796,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Connex Global Communications Inc. o/a PhoneBox is looking for a Full-Time and Permanent Customer Support Representative located in our Toronto branch office. PhoneBox provides affordable wireless plans in Canada and the United States to students and visitors to Canada since 2011. We are looking forward a responsible and energetic individual to join our team.JOB DESCRIPTIONReceiving and processing inquiries for account changes and customer care topics over phone, livechat, email, and SMS textsFollow and respond to inquiries based on guidelines provided by customer care managerWork as a store-front customer support representativeProcess payment related duties and assist in managing inventory of devices and SIM cardsInteracting closely with Customers and share any questions or concerns to the teamAssisting walk-in clients at the retain store location on their requests including but are not limited to Activations, Bill payments, Account terminationsWorking on Operations duties which in relations to Clients and Partners supportLeading and Supervising Retention teamCreate deals/promotions that can retain the clients and match with the market offersRequirementsGeneral office/administrative skills, with above-average writing skillsGood English proficiency, written and verbal. Fluent in Mandarin is required.Good communication and relationship-building skills in multicultural workplaceHandle customer inquiries, complaints, billing questions and payment issues/servicesDetail oriented, organized, computer savvy and a multitaskerAbility to function well in a busy and high volume environment.Ability to work effectively, both independently and as part of a team.Ability to consistently offer professional and engaging customer service.Job Types: Full-time, PermanentJob Types: Full-time, PermanentSalary: $17.00-$19.00 per hourBenefits:Casual dressCompany eventsDental careDiscounted or free foodExtended health careFlexible schedulePaid time offStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payWork Location: In personExpected start date: 2023-09-18\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"114D1402A71331EA84B1FB2B7C021719\",\n            \"cityName\": \"1006 103A St SW Ste 301, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=962a09b3f07042f0\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Fountain Tire\",\n            \"rowSalary\": \"$55,000–$58,000 a year\",\n            \"date\": 1694471494880,\n            \"dateOfPosted\": 1693624940737,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.454021,\n                    \"lon\": -113.5655165\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Southwest Edmonton, Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Leduc County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 55000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    55000.0\n                ],\n                \"range\": {\n                    \"gte\": 55000.0,\n                    \"gt\": null,\n                    \"lte\": 55000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Overview:  Fountain Tire, an industry leader with a strong presence and reputation across Canada, is looking for aCustomer Service Representative's to professionally support our network of distribution centers, stores and customers across Canada from our South Edmonton Corporate Office. Salary: $55,000 - $58,000 annually Why work for Fountain Tire? We are a Platinum Member of Canada’s Best Managed Companies and one of Alberta's Top 70 Employers We are one of the 10 largest independent tire dealers in North America, and recipient of many Customer Service and Best Business Awards We continually strive to expand our operations in existing markets, as well as new markets and currently, we have over 160 stores from BC through Ontario Our Customer Service Representatives (CSR’s) are a highly integrated, high performance team that provides consistent customer service to both internal and external customers in order to drive sales and customer satisfaction. Duties and responsibilities include: Maximize sales potential by ensuring calls and online chats are handled in a timely and effective manner Deliver CSR managed program elements – including warranty, booking orders, national account web orders, northern Ontario direct ship Optimize customer satisfaction by assisting with inventory management duties Provide operational excellence in daily order management processes Identify issues and opportunities for improvement in personnel, process or technology; take action and escalate roadblocks as required to drive constant improvement.What you need: At least 5 years of experience in a call center environment At least 5 years of customer service experience A high school diploma or equivalent Experience in the tire industry is an asset Proficiency with Microsoft Office software, Microsoft Dynamics AX a definite asset Proven ability to work with patience and courtesy in customer relations Excellent organizational and time management skills in order to manage independent work Proven ability to work within a team environment; this includes coaching and team building skills Excellent verbal communication skills, especially by phone The successful candidate will have the opportunity to: Collaborate within a team of highly motivated and dedicated individuals Develop personally and professionally in a supportive working environment Utilize our impressive health, dental and vision benefits for you and your family Invest in a retirement savings plan with company matching to help you achieve your financial goals Enjoy discounts on personal vehicle services at your local Fountain Tire location Interested candidates are encouraged to apply online and this position will remain posted until filled. In office applications will be accepted by reception only but are preferred online.\",\n            \"location\": \"A St SW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"C606FE5A7107A64C09E9396482801DF5\",\n            \"cityName\": \"17600 Yonge Street, Newmarket, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d56ded800183fe75\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Kibo Sushi House - Upper Canada Mall\",\n            \"rowSalary\": \"$15.50–$18.00 an hour\",\n            \"date\": 1694471281801,\n            \"dateOfPosted\": 1693625202750,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.0493831,\n                    \"lon\": -79.47891640000002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Newmarket\",\n                \"formattedAddress\": \"Yonge St, Newmarket, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Newmarket\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for person to join as our team who has great customer services.Job Types: Full-time, Part-timePart-time hours: 20-40 per weekSalary: $15.50-$18.00 per hourBenefits:Store discountDay range:Monday to FridayShift:8 hour shiftAfternoon shiftEvening shiftAbility to commute/relocate:Newmarket, ON L3Y 4Z1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Licence/Certification:Serving It Right (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Yonge St, Newmarket, ON\"\n        },\n        {\n            \"id\": \"76E4936E95FCDA4AAE992443C9888523\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cd819c2f402a8806\",\n            \"jobName\": \"Agent Du Service Clientèle / Customer Service Agent\",\n            \"companyName\": \"Voxdata\",\n            \"rowSalary\": \"$15.50–$17.00 an hour\",\n            \"date\": 1694471192779,\n            \"dateOfPosted\": 1693624935871,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*English version to follow* *NB : Nous n'acceptons que les candidatures provenant de la grande région de Montréal car la formation se fait à partir du bureau.* *Nous exigeons que nos candidats parlent anglais car certains de nos clients sont à l'extérieur du Québec et ne parlent que l'anglais.* Prêt à vous joindre à l'un des plus importants centres d'appels de Montréal ! VOXDATA vous attend ! Nous cherchons à agrandir notre équipe avec de nouveaux membres qui sont prêts à devenir nos prochains experts en offrant la meilleure expérience client possible ! Pour avoir une meilleure idée de notre entreprise et de nos valeurs, vous pouvez consulter notre site web ici ! https://www.voxdata.com/ Voici quelques raisons pour lesquelles il fait bon travailler chez VOXDATA :Une variété de types de postes, allant du service à la clientèle aux ventes, en passant par le soutien technique, avec des rôles uniquement en anglais ou bilingues et des options d'horaire variées - nous voulons mettre en valeur vos compétences uniques dans un poste qui vous convient le mieux !Un bureau facilement accessible et convoité au cœur du centre-ville de Montréal, et la possibilité de travailler à domicile pour nos postes hybrides !Un environnement de travail diversifié, positif et encourageant, notre objectif étant d'aider nos agents à briller et à réussir au maximum de leur potentiel !Des avantages sociaux tels que des plans de primes inclus dans nos postes, des primes supplémentaires pour les agents les plus performants (comme des cartes-cadeaux et de l'argent supplémentaire !), et des primes de recommandation des employés allant jusqu'à 1000 $ par personne !La possibilité d'évoluer et de développer vos compétences par le biais de réunions d'équipe, de séances de coaching individuel et d'évaluations des performances, toutes conçues pour vous aider à renforcer vos capacités et à devenir un maître dans votre travail !Des opportunités de développement interne ouvertes à tous - avec des rôles tels que chef d'équipe, coach, formateur, mentor et même des postes administratifs, nous sommes fiers de toujours nous tourner vers le personnel que nous avons déjà avec nous pour le promouvoir lorsque l'occasion se présente !Pour ce poste, vous travaillerez avec des clients qui utilisent un service de luxe à bord de leur véhicule. Vos tâches spécifiques seront les suivantes :Répondre aux appels entrants avec un haut niveau de professionnalisme et de précision.Envoyer et assister les services d'urgence pour les véhicules impliqués dans des accidents.Guider les clients dans l'installation et l'utilisation des applications incluses.Soutenir d'autres fonctions diverses incluses dans le service.Ready to join one of the leading call centers in Montreal?! VOXDATA is waiting for you! We’re looking to expand our team with new members who are ready to become our next experts in delivering the best customer experience possible! To get a better idea of our company and values, you can check out our website here! https://www.voxdata.com/ Here’s a few reasons why it’s great to work at VOXDATA:A variety of position types, ranging from customer service, sales, and technical support, with English-only or bilingual roles and ranging scheduling options – we want to highlight your unique skillset in a position that is best suited to you!An easily accessible and coveted office location in the heart of Downtown Montreal, and the option to work from home with our hybrid roles!A diverse, supportive, and encouraging work environment, our goal is to help our agents shine and succeed to their fullest potential!Employee benefits and perks such as bonus plans included into our positions, additional bonuses for top performers (like gift cards and extra money!), insurance coverages, and employee referral bonuses up to $1000 per person!The chance to grow and develop your skills through team meetings, individual coaching sessions, and performance reviews; all designed to help you further strengthen your abilities and become a master at your job!Internal growth opportunities that are open to everyone – with roles like team leader, coach, trainer, mentor, and even administrative positions; we pride ourselves on always looking to the staff we already have with us to promote when the occasion arises!For this position, you will be working with customers who are the using a luxury in-vehicle service. Your specific tasks will include:Answering inbound calls with a high level of professionalism and accuracy.Dispatching and assisting emergency services to vehicles involved in accidents.Guiding clients through the set-up and use of included applications.Supporting other various features included in service.Requirements Qu'est-ce qui fait de quelqu'un un excellent candidat ? Nous recherchons des personnes qui :Parlent couramment l'anglais ou sont bilingues en français et en anglais, ou en espagnol et en anglais.Avoir la disponibilité nécessaire pour travailler 40 heures par semaine à tout moment pendant les jours et heures d'ouverture du lundi au dimanche, entre 7 heures et minuit; la disponibilité le soir et le week-end est préférable. Ont déjà travaillé dans le service à la clientèle, les ventes ou les centres d'appels, ou ont une expérience traduisible dans d'autres secteurs.Vous pouvez apprendre à utiliser et à faire fonctionner plusieurs programmes informatiques avec facilité.Être disponible pour travailler le soir et le week-end si la campagne est opérationnelle pendant ces périodes.Avoir obtenu un diplôme de fin d'études secondaires ou un diplôme équivalent.Se considèrent comme des personnes capables de résoudre des problèmes, de s'adapter à des situations changeantes et sont motivées pour être les meilleures des meilleures !What do we think makes someone a great candidate?! We’re looking for people who:Speak English fluently, or are bilingual in French and English, or Spanish and English.Have the availability to work 40 hours/week anytime throughout the operational days and hours of Monday to Sunday, between 7:00 AM to 12:00 AM (midnight); evening and weekend availability is preferred. Have worked in customer service, sales, or call centers before; or have translatable experience from other industries.Can learn how to use and operate multiple computer programs with ease.Are available to work evenings and weekends if the campaign is operational during these times.Have graduated high school or have an equivalent diploma.Consider themselves to be problem-solvers, adaptable to changing situations and are motivated to be the best of the best!Benefits Soumettez votre candidature dès maintenant pour lancer le processus d'embauche et voyez par vous-même pourquoi il est formidable d'être un agent VOXDATA ! *Le salaire de base pour ce poste varie de 15,50 à 17 dollars par heure en fonction des compétences linguistiques.* Submit an application now to get the hiring process started and see for yourself why its great to be a VOXDATA agent! *The base salary for this position ranges from $15.50/hr to $17/hr depending on language skills*\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"FAC68FDA9917EF5E3213466E1E1BD634\",\n            \"cityName\": \"1006 103A St SW Ste 301, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=937cfd86e10b9f2f\",\n            \"jobName\": \"Temporary Customer Service Representative (Edmonton Corporate)\",\n            \"companyName\": \"Fountain Tire\",\n            \"rowSalary\": \"$26 an hour\",\n            \"date\": 1694471092171,\n            \"dateOfPosted\": 1693624941721,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.454021,\n                    \"lon\": -113.5655165\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Southwest Edmonton, Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Leduc County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 26.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    26.0\n                ],\n                \"range\": {\n                    \"gte\": 26.0,\n                    \"gt\": null,\n                    \"lte\": 26.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Overview:  Fountain Tire, an industry leader with a strong presence and reputation across Canada, is looking for a TemporaryCustomer Service Representative (3-4 month contract length that will turn permanent November 2023) to professionally support our network of distribution centers, stores and customers across Canada from our South Edmonton Corporate Office. Salary: $26/hour (32-40 hours per week) Why work for Fountain Tire? We are a Platinum Member of Canada’s Best Managed Companies We are one of the 10 largest independent tire dealers in North America, and recipient of many Customer Service and Best Business Awards We continually strive to expand our operations in existing markets, as well as new markets and currently, we have over 170 stores from BC through Ontario Our Customer Service Representatives (CSR’s) are a highly integrated, high performance team that provides consistent customer service to both internal and external customers in order to drive sales and customer satisfaction. Duties and responsibilities include: Maximize sales potential by ensuring calls and online chats are handled in a timely and effective manner Deliver CSR managed program elements – including warranty, booking orders, national account web orders, northern Ontario direct ship Optimize customer satisfaction by assisting with inventory management duties Provide operational excellence in daily order management processes Identify issues and opportunities for improvement in personnel, process or technology; take action and escalate roadblocks as required to drive constant improvement.What you need: At least 5 years of experience in a call center environment At least 5 years of customer service experience A high school diploma or equivalent Experience in the tire industry is an asset Proficiency with Microsoft Office software, Microsoft Dynamics AX a definite asset Proven ability to work with patience and courtesy in customer relations Excellent organizational and time management skills in order to manage independent work Proven ability to work within a team environment; this includes coaching and team building skills Excellent verbal communication skills, especially by phone The successful candidate will have the opportunity to: Collaborate within a team of highly motivated and dedicated individuals Develop personally and professionally in a supportive working environment Enjoy discounts on personal vehicle services at your local Fountain Tire location Interested candidates are encouraged to apply online and this position will remain posted until filled. In office applications will be accepted by reception only but are preferred online.\",\n            \"location\": \"A St SW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"53AB6FE73CEB6B8E0C23F19D1E23CE09\",\n            \"cityName\": \"Speedy Cash in Prince Albert, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bf012403996d94b3\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Speedy Cash\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694470997759,\n            \"dateOfPosted\": 1693624739537,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.2033494,\n                    \"lon\": -105.7530705\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Prince Albert\",\n                \"formattedAddress\": \"Prince Albert, SK, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 15\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Prince Albert\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Canadian-operated, Speedy Cash is a strong leader in the financial services industry. Founded in 1998, Speedy Cash currently operates over twenty branch locations across Canada. We are building a dynamic team of business professionals and can provide the right candidate with significant opportunities for career growth and job satisfaction.If you’re looking for a fun, energized environment where we support each other, as a team, to create a rewarding workplace and deliver amazing customer service, then look no further, Speedy Cash is the place for you!Perks and BenefitsWelcome BonusCompetitive wages, bonuses, and benefitsHands-on and continual training in transferable skillsBirthdays off, annual fun day for each storeIncredible support systemA team environment that makes work satisfying and funRRSP matchingOpportunities for growth. We promote from within!You are a Champion of Change; you will help motivate the team to increase sales, minimize bad debt and adapt to the ever-changing regulatory environment. You have a strong sense of curiosity and have a passion for learning; you are proactive and look for ways to be more efficient in your day-to-day work. You inspire your teammates with your innovative and resourceful way of thinking. Your attention to detail and exceptional organizational skills will ensure that the day-to-day operations of the store run smoothly. You can work independently as you pursue excellence while taking pride in your achievements, supporting company initiatives, and accomplishing the work that needs to be done in the store. An interest in travel would be considered an asset as from time to time support in other stores in the network is needed.Job ResponsibilitiesBuilding customer relationships while providing exceptional customer serviceIdentifying and meeting the customer’s financial needs in order to process loan applicationsCollecting on delinquent accounts in the interest of minimizing bad debtConveying information through in-person, telephone, and email communicationsAiding in loan sales, cheque cashing, and in-store promotionsHandling and balancing daily cash and debit transactionsPerforming all daily operations of the storeRequirementsValid Government Issued Photo IDClean Criminal RecordHigh School Diploma or EquivalentWageSalary commensurate with experienceFor more information about Speedy Cash check out our website at www.speedycash.ca/careersJob Type: Full-timeSalary: $16.00 per hourBenefits:Dental careExtended health carePaid time offRRSP matchVision careSchedule:Monday to FridayWeekend availabilityEducation:Secondary School (preferred)Work Location: In personApplication deadline: 2023-09-30\",\n            \"location\": \"Prince Albert, SK\"\n        },\n        {\n            \"id\": \"AD084B8522589E201B1477A9D30DBB59\",\n            \"cityName\": \"Kitchener, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3084de02ee180fae\",\n            \"jobName\": \"Insurance Customer Service And Sales Representative\",\n            \"companyName\": \"Angie Degroot Desjardins Insurance & Financial Services Agency\",\n            \"rowSalary\": \"$40,000–$60,000 a year\",\n            \"date\": 1694470824064,\n            \"dateOfPosted\": 1692744735945,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4516395,\n                    \"lon\": -80.4925337\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kitchener\",\n                \"formattedAddress\": \"Kitchener, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kitchener\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" ***** Are you Looking for a Career Change or a Fresh Start?**** Are you positive thinking, friendly, bubbly, have an outgoing personality and customer-focused? Would you be excited to help customers reach their Insurance Needs and goals? If you answered yes to these questions, working for Angie DeGroot Desjardins Insurance Agency may be the career for you! We’re looking for a motivated, sales and service-oriented Insurance Licensed individual who has a passion for the insurance industry. Our goal is to build up strong relationships and increase our professional reputation. Looking for a full-time Career that provides meaningful work and competitive compensation? Consider a position in our office. Compensation:Salary plusCommission and Bonus (P&C + LIFE - % of premium sold)40,000+ Base ( negotiable depending on experience) plus Bonus and Commission- Earning Potential has no CapAnnual Bonus (subject to office qualification, etc.)Monthly and or quarterly team and Personal Production promotions and bonus3 weeks vacation after 1 yearHealth Benefits AvailableRRSP match program availablePotential for total compensation over 6 figuresResponsibilitiesEstablishes personalized telephone contact with the client. Creates a climate of trust conducive to the sales and service of a Home, Auto and or Life insurance policy. Educates and advises our clients on our products, while adhering to the company's underwriting policies.Greet and answer incoming calls from clients and offer 5* customer ServicePassionate, Friendly and Bubbly Positive PersonalitySeizes all sales opportunities, solicitation and product offers.Work with the agent to establish and meet marketing goals.Use a customer-focused, needs-based review process to educate customers about insurance options.Upon receiving a call, assists the client by applying changes, cancellations and updates to the contract, taking care to meet the client's needs effectively, while advising and educating in order to ensure the client's complete satisfaction and retention.Establish customer relationships and follow up with customers, as needed.Use a customer-focused, needs-based review process to educate customers about insurance options.Requirements:Good Personal Credit Score( necessary for the Government Insurance Licensing Sponsorship)Insurance Sales and Customer Service experience and Licensed in Personal Lines Insurance either OTL or RIBOExcellent interpersonal skillsExcellent communication skills - written, verbal and listeningProactive in problem solvingDedicated to customer serviceAbility to multi-taskAbility to make presentations to potential customersProfessionalism and attention to detail.Ability to multitask.Strong communication and verbal skills.Ability to work in a fast paced environment.Active and responsible team member.Ability to take orders.Strong organizational and prioritization abilities.Ability to communicate with co-workers and Agent.Property & Casualty license (OTL or RIBO license) or LLQPLLQP to be obtained within 3 months of start in order to service existing customers (all licensing fees to be paid by Agent on successful completionThese positions are with an independent contractor agent that is part of the Desjardins exclusive agent network, not with Desjardins Group or its subsidiaries. This agents’ employees are not employees of Desjardins. Independent contractor agents are responsible for and make all employment decisions regarding their employees.\",\n            \"location\": \"Kitchener, ON\"\n        },\n        {\n            \"id\": \"E9D30376B48D2602077F825FD99F87A8\",\n            \"cityName\": \"Red Deer, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9af23111688f9560\",\n            \"jobName\": \"Food Truck Staff // Customer Service\",\n            \"companyName\": \"Red Deer Food Bank\",\n            \"rowSalary\": \"$15–$18 an hour\",\n            \"date\": 1694470753521,\n            \"dateOfPosted\": 1687946643583,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.268975,\n                    \"lon\": -113.8115599\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Red Deer\",\n                \"formattedAddress\": \"Red Deer, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 8\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Red Deer\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The food truck cooks // customer service employees will be working along side our food truck manager, to deliver and staff food trucks to any events in the Red Deer area and promote our brand!Duties Include:Delivering or meeting food trucks to any/all eventsImpeccable customer serviceCooking on the lineWorking cash stationSet up - tear down dutiesOperating kitchen equipmentRecord required cooler temperatures, food waste, and food temperaturesWhat we Offer:Work/life balanceCompetitive salaryValues oriented and positive workplace environmentSupport from upper managementYou Have:A passion for customer service and hospitalityA sense for adventureExperience in the food prepping industryRetail or previous restaurant experienceTeam based mentalityClass 5 drivers licenseAt the Red Deer Food Bank we believe our people are what make us great! If you are a positive person with strong work ethic that is looking to join a fun work place culture, then we invite you to apply for this role by submitting a resumeJob Types: Full-time, Part-time, SeasonalContract length: 5 monthsPart-time hours: 35 per weekSalary: $15.00-$18.00 per hourSchedule:10 hour shift8 hour shiftDay shiftNight shiftOvertimeWeekend availabilitySupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Red Deer, AB\"\n        },\n        {\n            \"id\": \"F0F624110EC63ADA72AB3EC49719E1E1\",\n            \"cityName\": \"Nanaimo, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=11693ff6e81c6688\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Executive Aviation\",\n            \"rowSalary\": \"$17–$20 an hour\",\n            \"date\": 1694470662484,\n            \"dateOfPosted\": 1693615755610,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1658836,\n                    \"lon\": -123.9400648\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Nanaimo\",\n                \"formattedAddress\": \"Nanaimo, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Nanaimo\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you ready to take off and start a new and exciting career in the aviation industry? If so, we want to chat with you! Are you ready to take off and start a new and exciting career in the aviation industry? If so, we want to chat with you! Our operation in Nanaimo provides our team members with an amazing opportunity to work with one of our airline partners! In Nanaimo you will be a part of an amazing team of customer service specialists who work together to provide exemplary service. So, would you say that going above and beyond is in your DNA? Do you love to travel and want to travel even more at discounted rates? Does the opportunity to provide exemplary service to passengers on some of Canada’s best airlines appeal to you? Are you someone who is known for reliability and flexibility? Come join us! Executive Aviation is hiring Customer Service agents at the Nanaimo Airport (YCD) who love working in the tourism industry. This role reports directly to an amazing Operations Manager who is there to support you. What do we offer? Executive Aviation is proud to have very progressive wage ranges with lots of earning potential. The range of salary for this position is $17.00-$20.00/hour. We offer comprehensive Health benefits for all part- and full-time team members. We also have fantastic flight benefits with the airlines that we support. We want to see you grow and reach your goals! The sky's the limit with Executive Aviation. Responsibilities Our customer service agents are responsible for creating a safe and stress-free experience for travelers as they begin and end their journeys: Helping passengers check-in Supporting self-serve kiosks Preparing aircraft for on-time departures Facilitating deplaning and boarding of passengers Greeting passengers who are arriving from flights Following airline specific check-in policies and procedures Positively work airline crew Light grooming duties Kindly enforce airline and airport policies and procedures to passengers And more! Qualifications You are a true customer service champion with a minimum of two years’ in a customer-facing role You bring a proven track record of punctuality and reliability and understand that performing on time is a cornerstone of airline service You love to multi-task and are comfortable in a fast-paced where time pressures are a way of life You are a great communicator in both individual and group settings and have a demonstrated proficiency with computers and software. Completion or working towards completion of Travel and Tourism Diploma, Marketing or Business Diploma Previous airport experience would be considered an asset Flexible availability to work shift work which includes early mornings, days, late evenings, weekends and/or holidays An ability to meet all conditions of employment:  Restricted Area pass issued by Transport Canada A criminal background check Hold a valid driver’s licensesMYI0hRUVs\",\n            \"location\": \"Nanaimo, BC\"\n        },\n        {\n            \"id\": \"6249A1DE90039F454E47FBB81E57BCC2\",\n            \"cityName\": \"1415 Alberni Highway, Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a8fc962c723288c7\",\n            \"jobName\": \"Customer Service Supervisor\",\n            \"companyName\": \"Mid Island Liquor\",\n            \"rowSalary\": \"$19.25 an hour\",\n            \"date\": 1694470627014,\n            \"dateOfPosted\": 1689721698416,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3045941,\n                    \"lon\": -124.3349719\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Parksville\",\n                \"formattedAddress\": \"Alberni Hwy, Parksville, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Parksville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Liquor is looking for a full-time Customer Service Supervisor at our Parksville Liquor Store. Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you! The Customer Service Supervisor position is a developmental role whereby the aim is to move the successful candidate to an Assistant Store Manager (ASM) position within a 12-18 month timeframe (term will be extended in the event there are no ASM positions available within 12-18 months). Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in organizing and directing the activities and operations of the store including but not limited to ordering/receiving merchandise and supplies, organizing and conducting inventory, staff supervision and training, and acting as Health and Safety Committee Liaison.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Supervisor today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. You have a minimum of 1 year liquor retail experience and a valid Serving it Right Certificate (or be willing to get certified prior to your first day). Who we are: Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve. Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op). We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.\",\n            \"location\": \"Alberni Highway, Parksville, BC\"\n        },\n        {\n            \"id\": \"D4EC6F86061C65E07583BC0E97731C41\",\n            \"cityName\": \"1105 Centre St N, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9af57fab88280682\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Avalon Cleaners\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694470621723,\n            \"dateOfPosted\": 1693625800432,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0919201,\n                    \"lon\": -114.0625125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Centre St N, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a dry cleaning company requiring a customer service associate.Monday 10 am to 6 pmTues, Wed and Thursday Noon til 5pmFriday and Saturday 9 am to 5 pmDuties include serving walking clients. Contact clients with any discrepancies and follow up on any of their concerns. Full training supplied with our procedures and policies.Starting wage is $16/hrJob Type: Full-timeSalary: From $16.00 per hourWork Location: In personExpected start date: 2023-09-07\",\n            \"location\": \"Centre St N, Calgary, AB\"\n        },\n        {\n            \"id\": \"DF6B64430EA0080384F86354F7944E6D\",\n            \"cityName\": \"Châteauguay, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5937e97d5e66f633\",\n            \"jobName\": \"Customer Service Representative - Call Centre\",\n            \"companyName\": \"Centre D'Appel Iris Et Services Aux Entreprises\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694470597239,\n            \"dateOfPosted\": 1693624934748,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.36015889999999,\n                    \"lon\": -73.74940330000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Châteauguay\",\n                \"formattedAddress\": \"Châteauguay, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Roussillon Regional County Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Châteauguay\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 7 months to less than 1 yearGreen job Involves duties and responsibilities that lead to positive environmental outcomes Long term benefits Deferred Profit Sharing Plan (DPSP) Other benefits Free parking availableWork Term: PermanentWork Language: English or FrenchHours: 30 to 40 hours per week\",\n            \"location\": \"Châteauguay, QC\"\n        },\n        {\n            \"id\": \"4F88CD986A6E43F5395462DB00C2A0CD\",\n            \"cityName\": \"Central Mountain Air in Terrace, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=232e9fb3d8300ca1\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Central Mountain Air\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694470592533,\n            \"dateOfPosted\": 1693615765021,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.5181925,\n                    \"lon\": -128.6031539\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Terrace\",\n                \"formattedAddress\": \"Terrace, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kitimat-Stikine\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Terrace\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Central Mountain Air, we pride ourselves in providing vital air connectivity to remote communities nestled within the stunning landscapes of Alberta and British Columbia. Our commitment to safety, reliability, and exceptional customer service is at the core of everything we do. Join our dedicated team and become an integral part of bringing people together and fostering economic growth in these unique regions. We are currently seeking a Part-Time Customer Service Agent to join our team at our Terrace, BC base.Customer Service Agents are part of a team that works in conjunction with crew members and ground agents to escort and board passengers, take reservations, and maintain baggage accuracy and safety. Customer Service Agents report to the Customer Service Supervisor.Job ResponsibilitiesCheck-in and greeting passengers, taking reservations and handling payments (when necessary)Responding to passenger inquiriesAssisting passengers with disabilities during deplaning and enplaningProcessing baggage and cargoGate operations and flight closure, communicating load counts to flight crewsAbility to lift up to 50 lbsOther duties as assignedJob RequirementsSuperior customer service skillsGood communication and interpersonal skillsAbility to work independently as well as in a team environmentAbility to work flexible hours, including split shifts and weekend coverageWillingness to work outside in adverse weather conditionsGood computer skillsA positive attitude with the ability to be flexibleMust be able to obtain and retain an Airport RAICBenefits of Working at Central Mountain Air (part-time employees)Standby travel within Central Mountain Air network for employees, their eligible family members, and their buddies (not including fees and taxes)Free cargo shipping for employees on CMA flightsCentral Mountain Air is an equal opportunity employer and values diversity in our workplace. Our requirement is that you have the skills and abilities to do the job and the attitude of a team player. We encourage applications from all qualified individuals regardless of race, nationality, ethnic origin, color, religion, age, sex, sexual orientation, marital status, family status, and disability.Central Mountain Air thanks all applicants, however, only those selected for an interview will be contacted.Job Type: Part-timePart-time hours: 2 - 3 per weekSalary: $17.00-$18.00 per hourAbility to commute/relocate:Terrace, BC V8G 0E9: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Terrace, BC\"\n        },\n        {\n            \"id\": \"C483A1863148BB61B69B4B0655500573\",\n            \"cityName\": \"10330 117 Avenue, Grande Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2444eee6ed1ad963\",\n            \"jobName\": \"Customer Service/Order Desk\",\n            \"companyName\": \"Ingo Floor\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694470576452,\n            \"dateOfPosted\": 1693615773248,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.178886,\n                    \"lon\": -118.7976819\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grande Prairie\",\n                \"formattedAddress\": \"109 Ave, Grande Prairie, AB T8V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grande Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"INGOFLOOR, a local family-owned flooring store, is looking to fill the position of a Customer Service/Order Desk Person for our Wholesale department.This is a permanent, full time position (40 hrs/wk).Hours are Monday – Friday, 8:30 am to 5:00 pm (excluding statutory holidays)Normal activities would include:- entering orders taken over to phone- entering orders from walk-in traffic- providing stock checks- making order estimates- getting freight quotes- preparing shipping documents- answering phone calls- occasionally pulling small orders if the warehouse is busyThis position is also responsible for overseeing our Flooring Sample Program. Duties would include:- creating new sample boards for new & existing product- maintaining sample racks that are distributed to wholesale customersThe ideal candidate will:- have prior customer service experience- have flooring and/or construction knowledge- be detail oriented- enjoy working on computer & being on the phone- be able to do simple math- be able to work in a sometimes fast, sometimes slow work environmentWe take care of our staff with a Benefits Package that includes Health Spending Account, Deferred Profit-Sharing Plan, & Group RRSPs.We are located at 10330-117 Avenue, Grande Prairie (behind the Nissan Dealership on the bypass.)** INGO FLOOR is a division of Rudiger Group Inc. When contacting prospective candidates, phone calls/emails may come from INGO FLOOR or RUDIGER GROUP INC.Job Type: Full-timeSalary: From $20.00 per hourBenefits:Dental careExtended health careVision careSchedule:8 hour shiftWork Location: In person\",\n            \"location\": \"Avenue, Grande Prairie, AB\"\n        },\n        {\n            \"id\": \"54F8D65ECF5C4E3B29A1A95EBF4FC73D\",\n            \"cityName\": \"Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ccaec7aacf1a7119\",\n            \"jobName\": \"Customer Service Associate - Budtender Part Time Dt\",\n            \"companyName\": \"The Original Farm\",\n            \"rowSalary\": \"$19.57 an hour\",\n            \"date\": 1694468704448,\n            \"dateOfPosted\": 1692773094154,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4284207,\n                    \"lon\": -123.3656444\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Original FARM is a leading cannabis retailer that empowers the customer to take the best-informed decision by delivering a thoughtful and innovative customer experience. We are cannabis educators, sharing our passion and acquired knowledge with every customer. We are looking for a Customer Service Associate / Budtender PT (Part Time) to join our team at the Downtown location. Main Duties/Responsibilities: Ensure an excellent customer experience; Update one’s product knowledge and successfully complete the required training courses Provide customer education on FARM’s range of products; Maintain the store standards at all times Strict compliance to all policies and procedures; Other duties as required.Qualifications and Skills: Strong customer service skills Working knowledge of POS systems, Word, and Excel Strong communication skills, time management, and problem-solving skills Works well in a high-volume retail environment Able to perform independently as well as a team member Strong cannabis knowledge and passion required BC Selling it Right CertificateTerms of Employment: Must be able to work a variety of night, evenings, weekend, and split shifts when required Must be willing to cover shifts on short notice Reports to: Store Manager Starting salary: $19.57 hr ($19.07 for first 90 days)\",\n            \"location\": \"Victoria, BC\"\n        },\n        {\n            \"id\": \"77C69EC7671F7329F37672D16D010B50\",\n            \"cityName\": \"Kamloops, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=31c743959e110afc\",\n            \"jobName\": \"Customer Service Representative - Financial Services\",\n            \"companyName\": \"Speedy Cash Canada\",\n            \"rowSalary\": \"$18.75 an hour\",\n            \"date\": 1694468237172,\n            \"dateOfPosted\": 1693605589227,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.674522,\n                    \"lon\": -120.3272675\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kamloops\",\n                \"formattedAddress\": \"Kamloops, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Thompson-Nicola\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kamloops\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 7 months to less than 1 yearScreening questions Are you currently legally able to work in Canada? Do you have previous experience in this field of employment? Health benefits Dental plan Health care plan Paramedical services coverage Vision care benefits Financial benefits Bonus Long term benefits Registered Retirement Savings Plan (RRSP)Work Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Kamloops, BC\"\n        },\n        {\n            \"id\": \"229D265008D25B308D87C45345703975\",\n            \"cityName\": \"8465 Harvard Pl, Chilliwack, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=20ce5cffaca0a367\",\n            \"jobName\": \"Customer Service Representative-French\",\n            \"companyName\": \"Allworld Logistic Solutions Inc\",\n            \"rowSalary\": \"$16–$18 an hour\",\n            \"date\": 1694467963259,\n            \"dateOfPosted\": 1692773152320,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.155259,\n                    \"lon\": -121.9574306\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Chilliwack\",\n                \"formattedAddress\": \"Harvard Pl, Chilliwack, BC V2P 7Z5, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Fraser Valley\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Chilliwack\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service-French SpeakingTransport Industry -Contact Customer, Serving Existing Customer, emailing , Follow upsJob Type: Part-timeSalary: $16.00-$18.00 per hourSchedule:Monday to FridayAbility to commute/relocate:Chilliwack, BC V2P 7Z5: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: Hybrid remote in Chilliwack, BC V2P 7Z5\",\n            \"location\": \"Harvard Pl, Chilliwack, BC\"\n        },\n        {\n            \"id\": \"BE112E49A746338BD76597D667FD0F69\",\n            \"cityName\": \"128-6061 No 3 Rd, Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d05731206489dcf8\",\n            \"jobName\": \"General Insurance Customer Service Rep\",\n            \"companyName\": \"New Diamond Insurance Services Ltd.\",\n            \"rowSalary\": \"From $19 an hour\",\n            \"date\": 1694467926607,\n            \"dateOfPosted\": 1686183935820,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1532687,\n                    \"lon\": -123.1366635\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Number 3 Rd, Richmond, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"QualificationSelf motivated and inter-personal skill with customers and other staffProficient in computer skills (eg. Microsoft office etc) as well as social media (eg WeChat, Facebook etc)Experience in customer services / minimum 3 years office experience (clerical & administrative duties)Language: Fluent in both written and spoken English, Mandarin and CantoneseGeneral Insurance License (Level 1 minimum) requiredResponsibilityCustomer Service Rep1. Will manage a book of assigned customer business2. Listen and respond to customers’ needs and concerns3. Provide information about products and services4. Take and process transactions for autoplan and home owners, determine charges, and oversee billing or payments5. Review or make changes to customer accounts6. Handle returns or complaints7. Record details of customer contacts and actions taken8. Take initiative to gain additional customersThe position may require work on Saturdays.Job Type: Full-timeSalary: From $19.00 per hourBenefits:Extended health careFlexible Language Requirement:French not requiredSchedule:8 hour shiftSupplemental pay types:Commission payCOVID-19 considerations:All staff and customers are required to wear masks once they enter our office. Staff are required to sanitize their work areas on arrival and departure. Plexi glass installed between each work station and customer seats. Staff practise social distancingExperience:Customer service: 3 years (required)Language:Mandarin (required)Cantonese (preferred)English (required)Work Location: In person\",\n            \"location\": \"No  Rd, Richmond, BC\"\n        },\n        {\n            \"id\": \"5811E6AA238363610C05E11B50314F0E\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=978532d6001ae05e\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Answerplus Inc\",\n            \"rowSalary\": \"$18.25 an hour\",\n            \"date\": 1694467386733,\n            \"dateOfPosted\": 1692775305948,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" At AnswerPlus, we are proud to say we’ve been in the answering service business for 60 years! With 4 locations across Canada and over 1500 clients, AnswerPlus has built an incredibly strong brand and reputation in the industry. Our niche is urgent call response 24/7/365. We seek to answer 80% of calls within 20 seconds or less.  As a Bilingual Customer Service Receptionist (BCSR), you have the privilege and opportunity to provide comfort and help in times of need. Bilingual CSR's answer  inbound calls and act as the  first point of contact for a wide range of situations. It could be processing a donation, providing comfort to someone stuck in an elevator, providing relief to someone experiencing pain, or aiding people in emergencies such as fires, floods, or power loss. To us, our clients, and our customers, a CSR is an \\\"invisible hero!\\\"  As a fulltime CSR we require open availability between 6 am and 12 am Monday to Sunday to work scheduled 30-40 hours per week. CSR's will be scheduled to  work a minimum of two weekends per month. We've created an award-winning culture that is backed by three generations and a true \\\"work family\\\" environment. Our employee average tenure is 9 years which also highlights how we support both personal and professional growth.  If this interests you, apply to join our team and partake in: Celebrations and Company EventsCoaching and MentoringDental, health, and EAP BenefitsPaid BreaksSocial Responsibility InitiativesPaid Training Role and Responsibilities: Provide thoughtful and professional customer supportAccurately collect details in an organized and timely mannerResolve customer issues and answer questions via phone, email, and live chatTake messages, enter orders, process and dispatch service callsMaintain a commitment to continuously improve the quality, efficiency, and effectiveness of service Qualifications and Skills:  This position requires individuals who are fluently bilingual in English and French and both written and verbally.Technically savvy and proficient keyboard skills (ie: 50+ WPM)Capable of utilizing Microsoft Office Suite, Microsoft Teams, Zoom and Go To MeetingStrong communication skills - interpersonal, listening, verbal, and writtenAbility to smile through the phone and connect with callers positivelyAbility to multitask and prioritize tasksEmpatheticGoal-orientedTeam player Work from Home Requirements: Quiet, dedicated room free of background noiseAbility to connect the computer from a router - not wirelessWindows PC - No Apple or Chrome BooksOperating System: Windows 10Full, standard-sized keyboard with Function Keys (F1-F12) and a number padTwo monitorsWebcam - for training and coaching purposesWired head set with microphone that connects to your cell phone or landlineUnlimited high-speed internetUnlimited Canada wide long-distance calling/cellphone calling planAbility to provide your own ethernet cable Start date: to be determined Training will be completed via Zoom/Go-to-Meetings/Microsoft Teams for 1-2 weeks Monday to Friday. Applicants should be available Monday to Friday between 8am-10pm for training. Daily hours will change and are scheduled between 4-8 hours per day. Camera's are mandatory to be on during all training. Compensation: $18.25 per hour plus $1.00 per hour performance bonus if targets are met when eligible. Our commitment to being an equal opportunity employer goes beyond acceptance. We celebrate and support all the amazing things that make you unique. All of our team members take pride in upholding an environment of mutual respect. We welcome and encourage applications from people with disabilities. If you require accommodation through the selection process, please call our office at 905-522-4737. \",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"3A275D53235C80AD72874643D18A30DB\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=58037611cb12e3c2\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Couchhaus\",\n            \"rowSalary\": \"$19–$24 an hour\",\n            \"date\": 1694465922676,\n            \"dateOfPosted\": 1693605546647,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Company DescriptionCouchHaus is a direct-to-consumer custom modular sofa brand based in Vancouver, Canada. The couches are made-to-order exclusively with our own manufacturer. We sell our products directly to consumers through our online platform and our boutique showroom in Langley, BC in order to offer competitive prices to our customers.Our business model is designed to offer customers high-quality, customizable furniture at an affordable price point, while also minimizing waste and supporting sustainability.Founded by the duo that made the 2023 BC Business 30 Under 3 List , Harrison and Paige, the company started with their passion for design when it came to building furniture for our own home.On the quest for new furniture for their home, they rethought every component of their dream couch including the size, depth, fabric grade, storage and other features! They offer removable and washable covers, re-stuffable cushions and modular furniture to re-arrange and grow onto!CouchHaus was created to make custom modular furniture shopping easier and more affordable, while supporting sustainability. The best part, we plant 100 trees for every couch we build!Job DescriptionTHE DEPARTMENTThe mission of the Concierge Department is to delight clients by going above and beyond to resolve their inquiries within reason and deliver exceptional sales expertise.Everyone in our Concierge Team has a common goal: to successfully manage customer relations by being a liaison between the company and the customer.THE OPPORTUNITYOur Concierge Department is an integral for the operation of the company. You’ll provide daily support to keep our boutique store running smoothly.As a member of the Concierge Division, you will be part of the team responsible for providing exceptional experiences for clients who contact Concierge by resolving their inquiries and delivering selling and solving expertise. As the Concierge Advisor, you will deliver world-class sales, solution and service excellence to exceed client expectations and maximize value in every interaction. And, with the skills you gain in this role, the opportunities are endless – from a rewarding career in Concierge to continued growth and development with CouchHaus.CouchHaus is an online store with the a boutique showroom. This opportunity is remote and also has the opportunity to grow in the company.THE JOBWe are seeking a team player that conveys the brand philosophy and values. The ConciergeAdvisor is a solution and detail-oriented person. The right individual will interact with customers on a daily basis, being knowledgeable and conversational and educational.The Concierge Advisor job is about problem solving. You will:● Develop and manage strong customer relationships through outstanding and consistent customer experiences● Solve problems to ensure our customers are happy● Become an expert in CouchHaus’ products and servicesThe Advisor reports to the Team Leader and participates in all the essential duties which contribute to the efficient and profitable operation of the store while maintaining the brand and visual presentation standards.QUALIFICATIONSYou don’t need experience to be a Concierge Advisor — we can teach you what you need to know. We care more about your hustle, passion for problem solving and ability to think on your feet. You have:● A commitment to learn and apply CouchHaus Values, Business and PeopleLeadership principles● The skills that are an asset to perform in the role and the appetite to continuously learn and develop oneself● A commitment to quality and investing in results that add value to the business● A sense of urgency and ability to prioritize important work● An understanding of CouchHaus brand vision● Feel strongly about long-term customer relationships and building brand loyaltyTHE PERKS● Set Your Schedule - Provide your availability and indicate your preferred working hours (some restrictions apply)● Aspirational Workspace - Every detail is considered to connect to the energy of the culture● Product Discount - Our famous product discount, online and in storeHead to our Our Story (https://www.couchhaus.com/pages/story) for the scoop on who we are and what we do.Job Types: Part-time, FreelancePart-time hours: 10-20 per weekSalary: $19.00-$24.00 per hourBenefits:Casual dressFlexible scheduleStore discountWork from homeSchedule:Day shiftMonday to FridayWork Location: RemoteApplication deadline: 2023-09-30Expected start date: 2023-10-01\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"50309D4E4CB0EA3A7110A93FEFF4C99E\",\n            \"cityName\": \"Sandspit, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=92084e6a8dc9757a\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Executive Aviation\",\n            \"rowSalary\": \"$19.10–$20.90 an hour\",\n            \"date\": 1694465839399,\n            \"dateOfPosted\": 1693615810015,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.243025,\n                    \"lon\": -131.820879\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sandspit\",\n                \"formattedAddress\": \"Sandspit, BC V0T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"North Coast\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sandspit\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"UPDATE: Now providing flight passes across the Air Canada global network. Are you ready to take off and start a new and exciting career in the aviation industry? If so, we want to chat with you! In Sandspit you will be a part of an amazing team of customer service specialists who work together to provide exemplary service. So, would you say that going above and beyond is in your DNA? Do you love to travel and want to travel even more at discounted rates? Does the opportunity to provide exemplary service to passengers on some of Canada’s best airlines appeal to you? Are you someone who is known for reliability and flexibility? Come join us! Executive Aviation is looking for permanent casual Customer Service Agents to work at the Sandspit Airport (YZP). We are looking for people with great customer service, who have flexible availability and who love working in the tourism industry. We offer a great training program! This role would report directly to the Customer Service Coordinator. What do we offer? Executive Aviation is proud to have very progressive wage ranges with lots of earning potential. The range of salary for this position is $19.10-$20.90/hour. We offer comprehensive Health benefits for all part- and full-time team members. We also have fantastic flight benefits with the airlines that we support. We want to see you grow and reach your goals! The sky's the limit with Executive Aviation. Responsibilities Greeting passengers Following airline specific check-in policies and procedures Have proper security clearances Provide pre-flight first class or priority seating grooming for the flight Manage passenger boarding as per airline procedures Understanding flight document requirements and carry-on allowances Positively working with airline crew Kindly enforce airline and airport policies and procedures to passengers In some cases, learn how to bridge an airplane Other duties as assigned Qualifications Previous customer service experience is considered an asset Previous airport experience would be considered an asset Flexible availability to work shift work which includes early mornings, days, late evenings, weekends and/or holidays Strong communication skillsvh7AMevhLb\",\n            \"location\": \"Sandspit, BC\"\n        },\n        {\n            \"id\": \"DAF4045DCC559C3577D866F646003812\",\n            \"cityName\": \"7250 Rue du Mile End, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=aa1bfa90d208da9b\",\n            \"jobName\": \"Représentant-e, Service à La Clientèle/Customer Service Representative\",\n            \"companyName\": \"Global Payments\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694465826127,\n            \"dateOfPosted\": 1692759115023,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5320781,\n                    \"lon\": -73.62304920000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue du Mile End, Montréal, QC H2R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Every day, Global Payments makes it possible for millions of people to move money between buyers and sellers using our payments solutions for credit, debit, prepaid and merchant services. Our worldwide team helps over 3 million companies, more than 1,300 financial institutions and over 600 million cardholders grow with confidence and achieve amazing results. We are driven by our passion for success and we are proud to deliver best-in-class payment technology and software solutions. Join our dynamic team and make your mark on the payments technology landscape of tomorrow. La formation débute le 2 octobre prochain! - Postes à temps plein seulement Vous êtes à la recherche d’un nouveau défi et vous voulez rejoindre une entreprise du classement Fortune 500 axée sur la technologie et l'innovation? Chez Global Payments, vous aurez de nombreuses possibilités de croissance et de développement et nous vous promettons que chaque jour se transformera en un défi passionnant. Joignez-vous à notre équipe dynamique! L'importance que nous accordons aux membres de notre équipe: De réelles opportunités d'évolution professionnelle Un environnement de travail collaboratif et convivial avec un code vestimentaire décontracté Une assurance médicale Couverture d'invalidité à courte et longue durée Plans d'assurance vie Programmes d'épargne-retraite Programme d'achat d'actions pour les employés Programme d'assistance aux employés Programme de remboursement des frais de scolarité Possibilités de faire du bénévolat Lieu sûr pour la communauté LGBTQIA2+ Renseignements importants: Horaire: 37,5 heures par semaine, sur une base de rotation, 365. Travail du bureau: 7250, rue du Mile-End, Montreal. Salaire: 20$/h Ce que vous contribuerez à l'équipe: Aider à la formation des nouveaux commerçants dans les systèmes. Identifier et répondre aux demandes des clients concernant les comptes en utilisant l'écoute, la pensée critique et les compétences acquises pour résoudre l’appel. Fournir une solution aux problèmes ou aux plaintes des commerçants et les transmettre à la direction ou à l'équipe concernée pour les cas nécessitant une enquête plus approfondie. Utiliser adéquatement le système et les ressources internes pour servir efficacement et avec précision les clients et interpréter les données des marchands. Démontrer une connaissance des produits, des services, de la recherche de comptes, des opérations au point de vente et de la maintenance technique et de compte. Éduquer les commerçants sur les politiques, les procédures et les produits. Documenter avec précision les conversations des clients dans les systèmes appropriés. Résoudre rapidement tous les problèmes en utilisant les protocoles établis ou transférer aux personnes ressources. Interagir avec divers groupes de soutien au sein de Global Payments et assurer la liaison avec eux en ce qui a trait à la résolution d'une préoccupation d'un commerçant. Atteindre les standards de performance fixés par le département. Fournir un soutien opérationnel à d'autres unités selon les besoins de l'entreprise. Maintenir systématiquement l'étiquette téléphonique professionnelle. Compléter avec succès une formation supplémentaire sur les compétences au besoin. Maintenir les normes de service à la clientèle dans les situations de haute pression, telles que l'augmentation du volume d'appels, le manque de ressources ou la difficulté des clients. Agir en tant que membre positif de l'équipe, en affichant un respect mutuel pour les autres. Analyser et résoudre les problèmes en rassemblant systématiquement les informations pertinentes et en tenant compte d'un large éventail de problèmes, de facteurs et de données, lorsqu'il existe plusieurs réponses. Qui vous êtes: Une personne avec 6-12 mois d'expérience en service à la clientèle. Bilingue en français et en anglais. Ouvert aux heures de travail flexibles, sur une base de rotation, 24/7, 365. Diplômé(e) d’études secondaires. Une personne qui aime aider et écouter les autres. Orienté(e) service à la clientèle avec des solides compétences en communication. Une personne positive avec de fortes compétences interpersonnelles. Capable d'apprendre de nouvelles fonctions ou applications. Possède de solides compétences analytiques pour résoudre les problèmes. Responsable et autonome, avec une capacité de prise de décisions rapide et précise. Qui sommes-nous ? Global Payments est un leader du secteur des technologies de paiement avec plus de 24 000 employés dans le monde. Nous sommes fiers de nos innovations et de la valeur que nous accordons à l'inclusion. Notre équipe aide nos clients à obtenir des résultats impressionnants. C'est notre passion pour le succès qui nous a permis de surpasser la concurrence pendant des années. Rejoignez-nous et laissez votre empreinte sur le paysage technologique des paiements de demain. *** Nous remercions sincèrement tous les candidats de leur intérêt. Nous ne contacterons que les personnes sélectionnées pour un entretien. Global Payments est un employeur qui respecte l'égalité des chances. Nous valorisons la diversité et l'inclusion et offrons des chances égales à tous les employés et candidats, sans tenir compte de la race, de la couleur, de la religion, du sexe, de l'origine nationale, de l'âge, de l'état civil, de l'orientation sexuelle, de l'identité ou de l'expression de genre, du handicap physique ou mental, ou de toute autre base protégée par la loi et nous sommes heureux d'offrir aux membres de notre équipe un environnement de travail sain. Training starts on October 2nd! - Full-time positions only Looking for a new challenge and want to join a Fortune 500 company focused on technology and innovation? At Global Payments, you’ll have many opportunities for growth and development and we promise everyday will be an exciting challenge. Join a dynamic team as a bilingual customer service representative! How we care about our people: Real opportunities to grow professionally Collaborative, friendly work environment with a relaxed, casual dress code Benefits after 30 days Health insurance Short-Term and Long-Term disability coverage Life insurance plans Retirement savings programs Employee stock purchase program Employee assistance program Tuition reimbursement program Volunteering opportunities Safe place for the LGBTQIA2+ community Important information: Schedule: 37,5hr per week, on a rotational basis, 365. Work from the office: 7250, Mile End St. Montreal Salary: 20$/h What you will be contributing to the team: Assist in the training of new merchants. Identify and address customer inquiries regarding accounts. Provide resolution to merchant issues or complaints, and escalate to management or appropriate team concerned for cases requiring further investigation. Appropriately utilize internal systems and resources to accurately and effectively serve customers, and interpret merchant data. Demonstrate knowledge of products, services, account research, Point of Sale operations/technical and account maintenance. Educate merchants on policies, procedures, and products. Accurately document customer conversations in appropriate systems. Timely escalation of all department and system issues using the established reporting protocols. Interact and liaise with various support groups within Global Payments in relation to resolution of a merchant concern. Successfully complete additional skills training as required/requested. Who you are: Someone with 6-12 months of employment experience, preferably in a similar position. Bilingual in English and French. Available to work on a rotational basis, 24/7, 365. A High School Graduate. A great helper and listener. Able to maintain customer service standards during high-pressure situations. A positive member who loves to learn and share new things. A strong communicator with great interpersonal skills. A problem analyzer and solver by gathering relevant information systematically. Able to work independently and make quick and accurate decisions. Someone with strong analytical skills to troubleshoot issues. Who we are: Global Payments is a leader of the payment technology industry with over 24 000 employees worldwide. We pride ourselves on innovation and inclusion. Our team is helping customers achieve amazing results. It’s our passion for success that has led to years of out-performing the competition. Join us and make your mark on the payments technology landscape of tomorrow. *** We sincerely thank all applicants for their interest. We will only contact those selected for an interview. #LI-Onsite Global Payments Inc. is an equal opportunity employer. Global Payments provides equal employment opportunities to all employees and applicants for employment without regard to race, color, religion, sex (including pregnancy), national origin, ancestry, age, marital status, sexual orientation, gender identity or expression, disability, veteran status, genetic information or any other basis protected by law. Those applicants requiring reasonable accommodation to the application and/or interview process should notify a representative of the Human Resources Department.\",\n            \"location\": \"Rue du Mile End, Montréal, QC\"\n        },\n        {\n            \"id\": \"6D4B256327C0E6955EAEE7169B09020A\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ff8cdb8ecf6470c8\",\n            \"jobName\": \"German Customer Service Consultant\",\n            \"companyName\": \"Lufthansa Intouch\",\n            \"rowSalary\": \"From $17.90 an hour\",\n            \"date\": 1694465825408,\n            \"dateOfPosted\": 1693615578449,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Lufthansa InTouch is looking for a motivated German Speaking Customer Service Consultants to add to our international team of travel consultants!Purpose of Role:As a part of our team, you can make someone’s day every day through positive interactions, and a continuous learning environment. As a home base position, you can provide this high level of customer service from the comfort of your own home! Our multicultural, multilingual teams operate from seven Service Centers worldwide, providing five-star services to passengers flying with the Lufthansa Group. Training will be provided to ensure confidence and success when handling customer calls.Work Performed:In the role of a Customer Service Consultant, you will be taking calls from passengers with inquiries related to:General flight reservations, direct sales and re-bookingsInformation about Lufthansa Group products and services like; seat selection, meals, pets, and check insAlong with opportunities to grow into different departments withing the Lufthansa InTouch teamRequired Knowledge, Skills and Experience:Strong proficiency in the English language (written and verbal)Demonstrated experience in de-escalating handling of complaintsExperience working in customer service is an assetExperience working and using different computer programsPersonal Competency Requirements:Good Team PlayerExcellent communication & interpersonal skillsMust be very detail orientated, and able to multitask efficientlyFlexibility in the alternating processing of written and telephone customer inquiriesAdaptability, patience, and problem-solving competencesHigh level of persuasivenessHigh level of service orientationAbility to work accurately and with attention to detailIndependent, self-motivated approach to workReliable and empathic personalityAdditional Information:The selection process includes a selection of verification of skills and assessment in order to assess the suitable candidates.You will be REQUIRED to travel to Peterborough, Ontario to pick up your equipment and have an orientation day.This position is homebased, but you are REQUIRED to attend 7 weeks of training in Toronto, Ontario.WE ARE PROUD TO OFFER YOU:You will be a part of a unique team spirit and culture - we are the best at being In Touch! We are driven to be best. At Lufthansa InTouch, we continuously upskill and train our team to boost your product knowledge and build your confidence in all aspects of service for air travelers.Competitive CompensationComprehensive Health & Dental BenefitsHighly Discounted AirfareDevelopment OpportunitiesInternational Exchange ProgramsWorld Class TrainingDoes this sound like you? Apply today!Lufthansa InTouch appreciates all applicants for their interest; however, only those selected for an interview will be contacted.Lufthansa InTouch Peterborough is an equal opportunity employer. We are committed to ensuring equal employment opportunities for all qualified individuals. Accommodation is available as required under the Ontario Human Rights Code.Job Types: Full-time, PermanentSalary: From $17.90 per hourBenefits:Casual dressDental careVision careWork from homeSchedule:8 hour shiftMonday to FridayOvertimeWeekends as neededSupplemental pay types:Bonus payOvertime payApplication question(s):Are required to travel to Peterborough, Ontario for first day orientation? Along with attending 7 weeks of in person training in Toronto?Education:Secondary School (preferred)Language:German (required)Work Location: In personExpected start date: 2023-10-13\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"B0F5807CB117333C03D01EA64A7A8478\",\n            \"cityName\": \"875 Plymouth Dr, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7893d6d55b198716\",\n            \"jobName\": \"Automotive Customer Service Representative\",\n            \"companyName\": \"Csn Heartland Auto Collision\",\n            \"rowSalary\": \"From $22.50 an hour\",\n            \"date\": 1694465796371,\n            \"dateOfPosted\": 1693607143521,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6076261,\n                    \"lon\": -79.695714\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Plymouth Dr, Mississauga, ON L5V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CSN Heartland Auto Collision is currently looking for an Automotive Customer Service Representative to join our growing team! The Customer Service Representative provides a high level of face-to-face customer service and supports customers’ needs throughout the vehicle repair process.Major Areas of ResponsibilitiesProvides courteous assistance to customers and educates customers on the collision repair processFace-to-face interaction with customersEvaluating vehicle damage and taking photos as requiredCapturing complete list of customers’ expectations and if necessary negotiating on service deliverablesUnderstanding specific insurers’ claims processing policies and processes and following them accordinglyMaintaining updated customer filesTimely two-way communication with/ between internal and external customersProviding back-up to Front Office Administrator, i.e. answering phones and greeting customersRequired Education, Skills and Qualifications3 years’ experience in Customer Service, previous experience in the automotive industry is preferred.Knowledge of collision repair process and/or auto insurance claims is an asset.Experience in SalesAnalytical and problem solving skills.Efficient use of Microsoft Office and the Internet.Effective written and verbal communication skills.Company ProfileCSN Heartland Auto Collision is a dynamic and progressive auto body shop, in business for over 45 years with 3 locations across the GTA. As an equal opportunity employer our company is committed to providing a positive work environment. We offer a competitive benefits package that includes:· Company sponsored training· Competitive wages· Paid vacation· Medical benefitsFor more information about our company visit http://www.csnheartlandcollision.com/We are an Accessibility for Ontarians with Disabilities Act (AODA) compliant workplace. You can be confident that our recruitment and hiring processes will be modified to accommodate disabilities, if requested.We thank all applicants for their interest; however, only those selected for an interview will be contacted. We are an equal opportunity employer.Job Types: Full-time, PermanentSalary: From $22.50 per hourBenefits:Dental careExtended health careLife insuranceOn-site parkingPaid time offFlexible Language Requirement:French not requiredSchedule:Day shiftSupplemental pay types:Overtime payExperience:Customer service: 3 years (preferred)automotive: 1 year (preferred)sales: 1 year (preferred)Licence/Certification:Class G Licence (preferred)Work Location: In person\",\n            \"location\": \"Plymouth Dr, Mississauga, ON\"\n        },\n        {\n            \"id\": \"D5632D1FA23F508C1D072282A7B3436F\",\n            \"cityName\": \"Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=794e37414f2917da\",\n            \"jobName\": \"Sales Advisor/Customer Service\",\n            \"companyName\": \"Starmetroland Media\",\n            \"rowSalary\": \"$35,000–$45,000 a year\",\n            \"date\": 1694465762112,\n            \"dateOfPosted\": 1652205160542,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2557206,\n                    \"lon\": -79.8711024\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work from Home Classified AdvertisingPart Time Position.Approximately 30 hours per weekThe successful candidate would be responsiblefor inbound and outbound calls.Base Salary Plus CommissionFull training providedHealth care benefits availableFull support & set upGreat Online Teams AtmosphereTo view full job description and to applyplease visit our websitewww.metroland.comMust be fully vaccinatedJob Types: Part-time, PermanentPart-time hours: 30 per weekSalary: $35,000.00-$45,000.00 per yearBenefits:Company pensionEmployee assistance programExtended health careVision careWork from homeSchedule:Monday to FridayWeekend availabilitySupplemental pay types:Commission payEducation:Secondary School (preferred)Application deadline: 2022-05-25\",\n            \"location\": \"Hamilton, ON\"\n        },\n        {\n            \"id\": \"E73811114E0B13B0E5B4A21D3088C1C6\",\n            \"cityName\": \"1903 West 4th Avenue, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5e89f9a07a477db0\",\n            \"jobName\": \"Customer Service And Food Preparation Supervisor\",\n            \"companyName\": \"Tractor Everyday Healthy Foods\",\n            \"rowSalary\": \"$17.75–$18.75 an hour\",\n            \"date\": 1694465554745,\n            \"dateOfPosted\": 1693615848292,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2648683,\n                    \"lon\": -123.160043\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W 8th Ave, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Tractor Foods is currently seeking a shift supervisor with exceptional customer service experience who's passionate about healthy foods, taking orders, making sandwiches and leading the team! If you love good food and coffee this job is waiting for you!Responsibilities and DutiesSupervise 3-4 team members on the scheduleExceptional Customer ServiceMaintain food and service qualityHelp the team on closing dutiesAre you passionate about food service? The right candidate will be responsible for helping make delicious food as well as providing exceptional customer service.If you're interested in working for a company that is continually growing and offers a range of career opportunities, then look no further. We're looking for people who have a real taste for healthy food to join our store in Kitsilano.Tractor Foods is a local family owned restaurant group expanding at a rapid rate. If you're looking for a career in the food industry then now is the time to jump on the bus with us and start moving your career in the right direction. We are serious about preparing, cooking, coffee and serving great food from scratch. We put huge importance on working in a fun, clean, professional, open kitchen with apprenticeship opportunities for those who are interested.Must haves:-Honest-Punctual-Fun-Happy-Highly Motivated-Reliable-Fast and Efficient-Detail Oriented-Team Player-Organized-Great Customer Service Skills-Knife Skills/ Kitchen Experience an AssetJob Type: Full-timeSalary: $17.75-$18.75 per hourBenefits:Discounted or free foodStore discountSchedule:Day shiftEvening shiftEvery WeekendHolidaysSupplemental pay types:Overtime payTipsCOVID-19 considerations:Sanitation stations available.Frequent hand washing and sanitation of tables and all surfaces.Work Location: In personExpected start date: 2023-09-11\",\n            \"location\": \"West th Avenue, Vancouver, BC\"\n        },\n        {\n            \"id\": \"8AFEE1E97FB7836F44EAE53F87940CCF\",\n            \"cityName\": \"40 Pippin Rd, Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1bcca7c987531861\",\n            \"jobName\": \"Hvac Customer Service Representative\",\n            \"companyName\": \"Mr. Service Hvac\",\n            \"rowSalary\": \"$15.50–$18.00 an hour\",\n            \"date\": 1694465530945,\n            \"dateOfPosted\": 1693615579418,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8097906,\n                    \"lon\": -79.52423809999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Pippin Rd, Vaughan, ON L4K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Description:At Mr. Service, we have a great opportunity for our next potential of Customer Service Representative. We are looking for an optimistic results-driven individual with a high-integrity to join our new company.As a new trusted Canadian owned and operated company, there will also be potential for advancement within the company.What we Value: Integrity, Accountability, Transparency, Influence, Direction and Leadership.Responsibilities:Respond to lead inquiries, concerns, and service requests via phone, email, or chat in a timely and professional manner.Call the potential leads from the lead list and enquire about the needs of the potential clientand record the information as per the requirement.Provide accurate information about HVAC products, services, and availability to the leads.Provide all the information to the sales representative about what the leads want in terms of the service.Book appointments for the sales representative to visit the client's home and confirm the appointment with sales representative and the client via email.Record any service request from the clients and the technical team to resolve any issues raised by the client.Book the calender daily for the prsent week, upcoming weeks, and the upcoming months in advance.Address any issue or complaint promptly by taking the right action and informing the right stakeholders.Always follow up with clients in a timely fashion.Qualification and Skills:High school diploma or equivalent, Post-secondary education is plus.Previous customer service experience, preferably in the HVAC or related field.Strong interpersonal and communication skills.Ability to remain calm and patient when dealing with frustrated or upset customers.Familiarity with HVAC systems and terminology is preferred.Proficiency in using customer releationship management ( CRM) software and office applications.We offer a positive work environment, and opportunities for career growth. If you are a motivated individual with a passion for providing excellent customer service, we would love to hear from you.To apply, please submit your resume and cover letter highlighting your relevant experience in customer service.Job Type: Full-timeSalary: $15.50-$18.00 per hourBenefits:Flexible schedulePaid time offFlexible Language Requirement:French not requiredSchedule:8 hour shiftWork Location: In person\",\n            \"location\": \"Pippin Rd, Vaughan, ON\"\n        },\n        {\n            \"id\": \"5E07464BBF5D169A42A48993D81F47A9\",\n            \"cityName\": \"1903 West 4th Avenue, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cda0b408885f072c\",\n            \"jobName\": \"Customer Service And Food Preparation\",\n            \"companyName\": \"Tractor Everyday Healthy Foods\",\n            \"rowSalary\": \"$16.75–$17.75 an hour\",\n            \"date\": 1694465514570,\n            \"dateOfPosted\": 1693605635613,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2648683,\n                    \"lon\": -123.160043\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W 8th Ave, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you passionate about food service? The right candidate will be responsible for helping make delicious food as well as providing exceptional customer service.If you're interested in working for a company that is continually growing and offers a range of career opportunities, then look no further. We're looking for people who have a real taste for healthy food to join our store in Kitsilano.Tractor Foods is a local family owned restaurant group expanding at a rapid rate. If you're looking for a career in the food industry then now is the time to jump on the bus with us and start moving your career in the right direction. We are serious about preparing, cooking, coffee and serving great food from scratch. We put huge importance on working in a fun, clean, professional, open kitchen with apprenticeship opportunities for those who are interested.Must haves:-Honest-Punctual-Fun-Happy-Highly Motivated-Reliable-Fast and Efficient-Detail Oriented-Team Player-Organized-Great Customer Service Skills-Knife Skills/ Kitchen Experience an AssetResponsibilities and DutiesMaintaining a clean environmentEager to learn all about our amazing foodExceptional Customer ServiceFood PreparationDishes and CleaningRestaurant OrganizationJob Type: Full-timeSalary: $16.75-$17.75 per hourBenefits:Discounted or free foodStore discountSchedule:Day shiftEvening shiftEvery WeekendHolidaysSupplemental pay types:Overtime payTipsCOVID-19 considerations:Sanitation stations available.Frequent hand washing and sanitation of tables and all surfaces.Work Location: In personExpected start date: 2023-09-11\",\n            \"location\": \"West th Avenue, Vancouver, BC\"\n        },\n        {\n            \"id\": \"92F5914ACF8B8F0808A7BE96AC865F11\",\n            \"cityName\": \"1950 Main St, Fruitvale, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=170199c669ac4392\",\n            \"jobName\": \"Deli Clerk/Customer Service\",\n            \"companyName\": \"Liberty Food Store Ltd.\",\n            \"rowSalary\": \"$16.75–$18.00 an hour\",\n            \"date\": 1694465296222,\n            \"dateOfPosted\": 1693615705379,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1164287,\n                    \"lon\": -117.5417603\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fruitvale\",\n                \"formattedAddress\": \"Main St, Fruitvale, BC V0G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kootenay Boundary\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fruitvale\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Liberty Foods (https://www.facebook.com/libertyfoodsfruitvale) has been proudly serving families in the Beaver Valley for over 60 years and we are looking for friendly, enthusiastic individuals who enjoy giving our customers the best shopping experience.Reporting to the Deli Manager, your duties and responsibilities include but are not limited to:Job OverviewBring a positive attitude every day.Upholds and complies with company procedures, standards and policies in all situationsGreets customers in a polite and friendly mannerDemonstrates superior customer serviceHot and cold food preparation, including sandwiches, chickens, salads, soups and specialty traysUse of commercial power equipment, including slicers and ovensWriting product ordersReceiving and rotation of productFilling product display casesPerforming any additional duties assigned by the Deli ManagerYou Have a passion for great food, possess strong customer service skills and an ability to learn quicklyHave an impeccable level of cleanliness, attention to detail and organizationHave excellent communication and interpersonal skillsThrive in a fast-paced environment, self-motivated and adapt well to shifting prioritiesWork well under minimal supervisionHighly motivated and team orientedAre available to work flexible hours including evenings and weekendsCan work on your feet up to 8 hours in a dayPerks of the JobBe a part of a fun and team-oriented workplace environmentFlexible schedule where work meets your lifestyleEnrolled in the Liberty Employee Rewards ProgramLiberty Foods is located at 1950 Main Street, Fruitvale, BC. Hours of operation are from 9:00 a.m. to 6:00 p.m. Deli Clerks work shifts start as early as 7:00 a.m. and end as late as 6:15 p.m. Shift lengths normally are 8 hours.We would like to thank you in advance for sharing your interest in Liberty Foods and would like to note that only those selected for an interview will be contacted. Liberty Foods is an equal opportunity employer.Work RemotelyNoJob Types: Full-time, Part-time, PermanentPart-time hours: 24 - 40 per weekSalary: $16.75-$18.00 per hourBenefits:Store discountSchedule:8 hour shiftDay shiftHolidaysMonday to FridayWeekends as neededCOVID-19 considerations:All customers are required to wear a mask while shopping, all staff are required to wear a mask while working, curbside pickup available, common surfaces are sanitized regularly, etc.Work Location: In person\",\n            \"location\": \"Main St, Fruitvale, BC\"\n        },\n        {\n            \"id\": \"E8CDAED9ED0E9F1ED46C2D18332C9883\",\n            \"cityName\": \"Ayr, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d2ae9540e097344f\",\n            \"jobName\": \"Customer Service Advisor (Ft)\",\n            \"companyName\": \"Quick Truck Lube - Napanee\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694465121462,\n            \"dateOfPosted\": 1693615573783,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2854723,\n                    \"lon\": -80.4507835\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ayr\",\n                \"formattedAddress\": \"Ayr, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ayr\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Quick Truck Lube is seeking a Customer Service Advisor with the following qualifications: Must be able to multi-task, and capable of working in a fast pace environment. Computer skills and strong organizational skills are required. Greeting customers and enhancing the customer service experience. Excellent communication skills required. Must be a good team player. Training is provided, previous experience is an asset  Must have own transportation, no public transportation is available.  Benefit Package available after 6 months.  Salary: $18/hour  To Apply: Email your resume to sjaimie@quicktrucklube.com \",\n            \"location\": \"Ayr, ON\"\n        },\n        {\n            \"id\": \"1D44FC275108C758273487AB32F85ECC\",\n            \"cityName\": \"Floshade in Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=77358650814ed7b6\",\n            \"jobName\": \"Customer Service Advisor\",\n            \"companyName\": \"Floshade\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694464952429,\n            \"dateOfPosted\": 1693615576889,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6066487,\n                    \"lon\": -73.712409\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laval\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"What you will do:- Provide excellent customer support by answering their questions, providing useful information as needed;- Handle customer complaints, provide appropriate solutions and alternatives according to established protocols;- Follow up on files to ensure excellent customer service;- Maintain customer satisfaction and loyalty;- Any other related duties.What you need:- High school diploma or other relevant education (desired);- Strong communication skills - written and spoken;- Customer focus;- Bilingual, French and English, because you will speak with customers across Canada.Job Types: Permanent, Full-timeSalary: $20.00 per hourSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsWork Location: In person\",\n            \"location\": \"Laval, QC\"\n        },\n        {\n            \"id\": \"A47C4B4AA38F4CB738823EE72BD19ADE\",\n            \"cityName\": \"1437 Waverley St, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b9ff65cc91d95014\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"204 Fuels Inc.\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694464903860,\n            \"dateOfPosted\": 1693615572089,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.7943692,\n                    \"lon\": -97.174065\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Waverley St, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Gas Station Attendant and U-Haul Customer Service Job for Female Candidates only.As a Gas Station Attendant, your role is integral to ensuring smooth operations at our gas station. Your friendly demeanor will help you assist customers with their fueling needs and provide them with any information they require. Efficiently handling cash transactions and maintaining the accuracy of the cash register will be part of your daily tasks. Additionally, you'll keep the gas station premises clean and tidy, which includes fuel pumps, restrooms, and the convenience store area. Regularly stocking merchandise, snacks, and convenience items will contribute to a well-stocked store for our customers. Safety will be a top priority as you follow guidelines for proper storage of hazardous materials and know the emergency response procedures. Ensuring that fuel and product pricing displays are up-to-date will also fall within your responsibilities. Lastly, maintaining accurate records of fuel sales, transactions, and inventory levels will be crucial to the overall operations of the gas station.U-Haul Customer Service Responsibilities:In your role as a U-Haul Customer Service representative, you'll play a vital role in assisting customers with their moving and transportation needs. You'll be responsible for guiding customers through the rental process, explaining various vehicle and equipment options, rates, and availability. Managing reservations and rental agreements accurately will be part of your day-to-day tasks. Thoroughly inspecting U-Haul vehicles before and after rentals to ensure they meet safety and cleanliness standards will contribute to customer satisfaction and safety. Offering clear instructions on vehicle operation, safety guidelines, and equipment usage will help customers have a smooth experience. Should any concerns arise, you'll be expected to address them promptly and provide appropriate solutions. Coordinating routine maintenance and cleaning of U-Haul vehicles and equipment will contribute to the overall quality of our fleet. Administrative tasks, such as completing paperwork and maintaining accurate rental records, will also be within your scope. Upselling additional U-Haul products and services to enhance customers' moving experiences will be an opportunity to increase customer satisfaction and revenue.U-Haul Customer Service Responsibilities:In your role as a U-Haul Customer Service representative, you'll play a vital role in assisting customers with their moving and transportation needs. You'll be responsible for guiding customers through the rental process, explaining various vehicle and equipment options, rates, and availability. Managing reservations and rental agreements accurately will be part of your day-to-day tasks. Thoroughly inspecting U-Haul vehicles before and after rentals to ensure they meet safety and cleanliness standards will contribute to customer satisfaction and safety. Offering clear instructions on vehicle operation, safety guidelines, and equipment usage will help customers have a smooth experience. Should any concerns arise, you'll be expected to address them promptly and provide appropriate solutions. Coordinating routine maintenance and cleaning of U-Haul vehicles and equipment will contribute to the overall quality of our fleet. Administrative tasks, such as completing paperwork and maintaining accurate rental records, will also be within your scope. Upselling additional U-Haul products and services to enhance customers' moving experiences will be an opportunity to increase customer satisfaction and revenue.MUST BE AVAILABLE TO WORK ON WEEKENDSJob Types: Full-time, Part-time, PermanentPart-time hours: 32 per weekSalary: $14.50 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayNight shiftWeekends as neededWork Location: In person\",\n            \"location\": \"Waverley St, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"CD7E2919BE7CA2665E67BE1A6B7B563F\",\n            \"cityName\": \"Woodstock, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=246e1bb90518f6a6\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Xplore Inc.\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694464844501,\n            \"dateOfPosted\": 1693615745249,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.15026599999999,\n                    \"lon\": -67.6033952\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Woodstock\",\n                \"formattedAddress\": \"Woodstock, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Carleton County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Woodstock\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Overview: * Do you have a passion for providing excellent customer service? Want to work for a company who believes in putting the customer at the heart of everything they do? Then join Xplore’s team of Customer Service Representatives in our Woodstock, NB office. Xplore offers a high energy, fast-paced work environment where employee opinions and feedback are valued. Xplore offers a high energy, fast-paced work environment where employee opinions and feedback are valued. We offer:$15/hr$3.00/hour Bilingual Premium (French/English)Bonus incentive opportunities up to $2,800 annuallyExcellent company benefits including health and dentalMatched participation in group RRSPStrong focus on internal promotion, career path development and trainingOpportunities to work from home after six months tenureKey responsibilities include:Providing an excellent customer experience by responding to customer calls in a courteous, knowledgeable and professional mannerListening to customers and probing as appropriate to discover needs while fulfilling customer expectations in a way that also complies with policies, practices and proceduresProviding general account, billing and technical support to our customersProcessing service ordersMaintaining accuracy of customer databasesAssisting with reporting and administrationMaintaining service levels and achieving business and performance goals and objectivesThe ideal candidate will possess:Completion of post-secondary education in a related field (or equivalent level of experience)Knowledge of approaches, tools and techniques for anticipating, recognizing and resolving technical issuesPrevious customer service experience is an assetStrong computer and troubleshooting skills with the ability to analyze and solve problemsSolid working knowledge of the Microsoft Operating Systems; experience with MAC and/or Linux is an assetStrong communication skills, verbal and written, with the ability to communicate effectively with customers in technical and non-technical termsSelf-motivated and driven with good time management and organizational skillsAbility to follow guidelines and strong attention to detailAbility to prioritize and multi-task while adapting in a fast-paced work environmentBilingualism is an asset (French/English) #XploreJobs Condition of employment: As a condition of employment and in order to comply with industry related data security standards, this position is subject to the successful completion of a Criminal Background Check. Details will be supplied to applicants as they move through the selection process. Xplore is committed to creating an accessible environment and will accommodate disabilities during the selection process. Please let your recruiter know during the selection process of any accommodation needs. Company Overview: Xplore Inc. is Canada’s fibre, 5G and satellite broadband company for rural living. Xplore is committed to the relentless pursuit of an improved broadband experience for all Canadians. Xplore is building a world-class fibre optic and 5G wireless network to enable innovative broadband services for better every day rural living, for today and future generations.\",\n            \"location\": \"Woodstock, NB\"\n        },\n        {\n            \"id\": \"9DD54464EC7719162AF8822BB2D50C02\",\n            \"cityName\": \"Central Mountain Air in Quesnel, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=93b3c5d6915548be\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Central Mountain Air\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694464530537,\n            \"dateOfPosted\": 1693615717652,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.9817372,\n                    \"lon\": -122.4949058\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Quesnel\",\n                \"formattedAddress\": \"Quesnel, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Cariboo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Quesnel\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Central Mountain Air, we pride ourselves in providing vital air connectivity to remote communities nestled within the stunning landscapes of Alberta and British Columbia. Our commitment to safety, reliability, and exceptional customer service is at the core of everything we do. Join our dedicated team and become an integral part of bringing people together and fostering economic growth in these unique regions. We are currently seeking a Part-Time Customer Service Agent to join our team at our Quesnel, BC base.Customer Service Agents are part of a team that works in conjunction with crew members and ground agents to escort and board passengers, take reservations, and maintain baggage accuracy and safety. Customer Service Agents report to the Customer Service Supervisor.Job ResponsibilitiesCheck-in and greeting passengers, taking reservations and handling payments (when necessary)Responding to passenger inquiriesAssisting passengers with disabilities during deplaning and enplaningProcessing baggage and cargoGate operations and flight closure, communicating load counts to flight crewsAbility to lift up to 50 lbsOther duties as assignedJob RequirementsSuperior customer service skillsGood communication and interpersonal skillsAbility to work independently as well as in a team environmentAbility to work flexible hours, including split shifts and weekend coverageWillingness to work outside in adverse weather conditionsGood computer skillsA positive attitude with the ability to be flexibleMust be able to obtain and retain an Airport RAICBenefits of Working at Central Mountain Air (part-time employees)Standby travel within Central Mountain Air network for employees, their eligible family members, and their buddies (not including fees and taxes)Free cargo shipping for employees on CMA flightsCentral Mountain Air is an equal opportunity employer and values diversity in our workplace. Our requirement is that you have the skills and abilities to do the job and the attitude of a team player. We encourage applications from all qualified individuals regardless of race, nationality, ethnic origin, color, religion, age, sex, sexual orientation, marital status, family status, and disability.Central Mountain Air thanks all applicants, however, only those selected for an interview will be contacted.Job Type: Part-timePart-time hours: 2-3 per weekSalary: $17.00-$18.00 per hourAbility to commute/relocate:Quesnel, BC V2J 6W6: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Quesnel, BC\"\n        },\n        {\n            \"id\": \"4F748CCBC7E1B73BFC95053419B8BDDE\",\n            \"cityName\": \"1410 39 St N, Lethbridge, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9c9940afb365218c\",\n            \"jobName\": \"Sales Associate / Customer Service Representative\",\n            \"companyName\": \"Comfortek Seating\",\n            \"rowSalary\": \"From $42,000 a year\",\n            \"date\": 1694464458079,\n            \"dateOfPosted\": 1693615833478,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.7074835,\n                    \"lon\": -112.8283721\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lethbridge\",\n                \"formattedAddress\": \"12a St N, Lethbridge, AB T1H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lethbridge\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ComforTek Seating is looking for a full-time sales associate / customer service representative. This position will be mainly phone and email sales, with limited in person dealings. Our customers are located in both Canada and the United States, so quotes are completed in both currencies. Responsibilities include but are not limited to the below:Responsible for quoting emailed/web/chat/phone requests for quotes in both U.S. and Canadian Markets on Church/Banquet/Health Seating.Type up a formal quote including freight for email/web/chat requests that has chair pricing, freight and options available.Running freight rates for customers for quotes.Tracking leads and quotes in a CRM program (Monday.com).Completing sales orders and having customers sign and return those when ready.Daily/weekly follow ups with customers on quotes provided to assist with any additional questions using the CRM information entered. Updating CRM as required.Forwarding any sample requests to the sample department.Answering phone & email inquiries with general information about products, requests for quotes and any other questions the customers have in regards to ComforTek.Ability to learn e-commerce platforms, and manage databases for existing e-commerce customers.Experience with Microsoft Great Plains an asset but not required.Conduct yourself in a respectful and professional manner both verbally and written. Interested in building relationships with customers that can lead to long term business dealings.Minimum 4 years sales experience, with preference given to those that have remote sales experience.Job Types: Permanent, Full-timeSalary: From $42,000.00 per yearBenefits:Dental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offFlexible Language Requirement:French not requiredSchedule:Monday to FridayEducation:Secondary School (preferred)Experience:Sales: 2 years (preferred)Work Location: In personExpected start date: 2023-09-25\",\n            \"location\": \"St N, Lethbridge, AB\"\n        },\n        {\n            \"id\": \"09840910D3FE1C4029D42B32914DC13F\",\n            \"cityName\": \"Churchill, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a96558b866fb233b\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Calm Air\",\n            \"rowSalary\": \"$17.78 an hour\",\n            \"date\": 1694464446889,\n            \"dateOfPosted\": 1693615669602,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 58.7684112,\n                    \"lon\": -94.16496400000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Churchill\",\n                \"formattedAddress\": \"Churchill, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 23\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Churchill\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Title: Customer Service Agent Location: Churchill, MB Status: Casual - Term Start Date: Immediately  Who We Are  Calm Air International is a regional airline serving the Northern part of Central Canada. From its main bases in Winnipeg, Thompson and Churchill, Manitoba, and Rankin Inlet, Nunavut, Calm Air operates frequent, daily scheduled passenger, charters, and cargo flights throughout Manitoba and the Kivalliq Region of Nunavut.  At Calm Air International LP, we value our customers, passengers, and the communities we serve. We are only as good as the employees who work with us. We are looking for highly motivated, well-organized individuals, who work well in a fast-paced environment, to join our team! Want to learn more? Visit www.calmair.com.  About the Opportunity  Are you seeking an exciting opportunity to work with a group of high performing professionals? Do you like to work independently as well as part of a skilled team? If so, we would like to hear from you! We are looking for a highly motivated, well-organized individual, who thrives in a fast-paced environment, to join the Calm Air family.  The sky is the limit!  What You'll Get To Do Calm Air Customer Service Agents provide valuable front-line passenger support and assistance to our customers at the airports and before and after they board one of our flights. They are responsible for ensuring our passenger experience is positive and meets the standards of service that we set out as an organization in addition to complying with applicable regulations. Providing curbside to curbside service to the travelling public as per Canadian Transportation Agency regulationsMaking and changing flight reservations in the computerized reservation systemChecking in passengers and their baggageCalculate and charge any additional fees if applicableIssuing boarding passes, itineraries, and seating assignments as necessaryAssist pre-boarding passengers to ensure safe movement to and from the aircraftProvide information on fares, flight schedules and routes in person or over the telephoneFacilitate the safe movement of passengers between aircraft and terminal buildingsOther duties as required Hours Of Work Shift work is required and may include mornings/afternoons, evenings, and weekends Skills & Experience We Value High school diploma or general education degree (GED) an assetAbility to learn a computerized reservation systemBasic Computer skills (word, excel, office)Knowledge of an airline’s operations an assetMust have exceptional customer service skillsMust be able to work independently or in a team settingAbility to work efficiently and accurately under pressureMust have own transportation to and from workMust be able to obtain and maintain an Enhanced Security Clearance qualificationMust be able to attend and complete initial Ground School TrainingPreference given to Inuit Land Claims BeneficiariesInuktitut language considered an asset The Benefits of Joining Our Team  We invest time and resources into making sure Calm Air International is as good as the people we hire. Here are some of the reasons we attract the best people: Northern Living AllowanceVacation entitlement will be paid out with each pay statement at 6%Airline travel and freight privilegesCorporate and family eventsAnd more! If This Sounds Like the Job for You, Contact Us!  At Calm Air, we value diversity and provide equal opportunities and accessibility for all qualified candidates. We encourage all members of a designated group or those requiring accessibility support to self-declare when applying.  Please submit a resume in confidence by September 15, 2023.  We thank all those who apply, but only those selected for an interview will be contacted.\",\n            \"location\": \"Churchill, MB\"\n        },\n        {\n            \"id\": \"EFACC7B54121466028FF4013CC7512B0\",\n            \"cityName\": \"156 Jozo Weider Blvd, Blue Mountains, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2d46848d15ec0e4b\",\n            \"jobName\": \"Customer Service Associate (Full-Time Available)\",\n            \"companyName\": \"Village Market\",\n            \"rowSalary\": \"$16.50–$18.00 an hour\",\n            \"date\": 1694464357453,\n            \"dateOfPosted\": 1693616128499,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.50561769999999,\n                    \"lon\": -80.30985369999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Owen Sound\",\n                \"formattedAddress\": \"Jozo Weider Blvd, The Blue Mountains, ON L9Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Owen Sound\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Village Market Customer Service Associate - Full Time and Part Time positionsThe Village Market is located at the heart of the Blue Mountain Village. It is a grocery and convenience store serving thousands of locals and tourists year round.We are searching for a hard working, personable, individual to join our team. We offer a competitive wage, a well-rounded benefits package and on-site training.Responsibilities:GENERAL/CUSTOMER SERVICEGreet, welcome and provide customers with excellent customer service skillsOperate cash register and process credit/debit paymentsVerify the age of customers when selling age restricted productsPull daily sales reportsComplete daily cash outsPerform other duties as assignedHOUSEKEEPINGMaintain a clean and orderly checkout areaEnsure store stays clean and organizedFollow all Health and Safety ProceduresMERCHANDISINGStock shelves when items are low and new inventory arrivesComplete merchandising tasks as directed and maintain efficient flow of merchandise from backroom to sales floorAdvise appropriate person regarding stock outs/shortagesPerform stock counts and orders for designated areasLOSS PREVENTIONEnsure loss prevention Standards are followedControl cash and lottery in accordance with prescribed cash handling policies and proceduresMaintain proper security of cash and merchandiseJob Requirements:GENERALGood communication skills and ability to read and write in EnglishCustomer Service orientatedAble to work under minimal supervision and have attention to detailAble to work individually and be a team playerEffective problem solverAble to work in a fast-paced environmentExperience in cash handling is not a requirement but an assetExperience working in a grocery store is not a requirement but an assetJob Type: Full-timeSalary: $16.50-$18.00 per hourBenefits:Dental careVision careDay range:HolidaysWeekends as neededFlexible Language Requirement:French not requiredShift:8 hour shiftWork setting:Convenience storeGrocery storeAbility to commute/relocate:Blue Mountains, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Jozo Weider Blvd, Blue Mountains, ON\"\n        },\n        {\n            \"id\": \"6A12CF8D3883AC8F5AB034FF740FE1A5\",\n            \"cityName\": \"3280 Thomas Street, Innisfil, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c67f886b2c3ca782\",\n            \"jobName\": \"Customer Service Representative / Lead Generator\",\n            \"companyName\": \"Roadwarrior Inc\",\n            \"rowSalary\": \"$33,000–$35,000 a year\",\n            \"date\": 1694464252572,\n            \"dateOfPosted\": 1693615564234,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2947979,\n                    \"lon\": -79.675913\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Innisfil\",\n                \"formattedAddress\": \"Thomas St, Innisfil, ON L9S, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Innisfil\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 33000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    33000.0\n                ],\n                \"range\": {\n                    \"gte\": 33000.0,\n                    \"gt\": null,\n                    \"lte\": 33000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Roadwarrior Inc. is an affiliate of DCL International Inc., a global leader in the research, design, engineering, manufacturing, and sales of advanced clean energy technologies, which has been in business for over 30 years.Roadwarrior Inc. manufactures a wide range of emissions components for heavy-duty trucks, buses, and construction equipment and lithium batteries for use in electric auxiliary power units used in commercial and recreational vehicles, boats, and solar powered systems. We are a growing manufacturer of lithium battery products searching for a Customer Service Representative / Lead Generator to join our team!PRIMARY RESPONSIBILITIESConduct surveys and analyze data on the buying habits and preferences of D2C, B2B, and wholesale customers.Review marketing strategies for individual audiences and evaluate alignment of messaging and tactics.Analyze and review purchase behaviours by region, audience, and category.Analyze conversion rates by digital audiences.Use product and customer data analytics to identify market opportunities.Identify gaps and gather research to support business activities.Opportunity to develop go to market strategies.Perform other duties as required.QUALIFICATIONS & SKILLSHigh School DiplomaExcellent written and verbal English communication skills. French communication skills is an asset.Experience in any of the following: market research, lead generation, customer service, or inside sales.Excellent interpersonal, problem-solving and time-management skills.Knowledge or commercial trucking, boating, motorhomes, electrical systems, electric vehicles or battery technology is an asset.Strong team player with the ability to work independently with minimum supervisionWHY US?We are proud Canadian companies, and we care about our shared environmentWe provide a safe, clean work environment, training, new uniforms, safety shoes, gogglesWe offer competitive pay, employee benefits, vacation and personal time offWe encourage professional development & offer reimbursements for professional fees/tuitionWe recognize our employees for their achievements through our Innovation Award ProgramRoadwarrior Inc is committed to employment equity and fostering an inclusive environment. We are dedicated in providing accommodation in accordance with all relevant legislation and if you require accommodation, please advise the HR department and we will work with you to meet your needs.We thank all applicants for their interest, however, only candidates selected for interviews will be contacted.No telephone calls or agencies please.Job Type: Full-timeSalary: $33,000.00-$35,000.00 per yearSchedule:Monday to FridayAbility to commute/relocate:Innisfil, ON L9S 3W5: reliably commute or plan to relocate before starting work (required)Application question(s):Are you eligible to legally work in Canada without sponsorship?How many years do you you have as a CSR or Lead Generator?How many years' experience do you have doing lead gen or market research using social media?Work Location: In person\",\n            \"location\": \"Thomas Street, Innisfil, ON\"\n        },\n        {\n            \"id\": \"F2BD9A7487E386A621B89B3C0C48E1C4\",\n            \"cityName\": \"DGN Marketing Services Ltd in Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=491b9d2cf29dd13d\",\n            \"jobName\": \"Bilingual Customer Service Administrator\",\n            \"companyName\": \"Dgn Marketing Services Ltd\",\n            \"rowSalary\": \"$37,400–$39,500 a year\",\n            \"date\": 1694463903152,\n            \"dateOfPosted\": 1693615751462,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 37400.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    37400.0\n                ],\n                \"range\": {\n                    \"gte\": 37400.0,\n                    \"gt\": null,\n                    \"lte\": 37400.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Distribution Company in Mississauga is looking for a Bilingual (English & French), Customer Service administrator to process customer orders, data entry and other administrative support duties on various accounts.Position: Full-time, DaysLocation: Near Dixie Rd and Meyerside Dr. Accessible by both Mississauga and Brampton public transit.Responsibilities:· Enter orders, receive, projects, and profile/list updates.· Handle customer inquires· Release orders for projects, distributions and back orders.· Answering of customer toll-free lines.· Run systems reports.· Administrative back-up/support activities.· Back-up for Reception.· Full compliance with Health and Safety requirements.· Other tasks as assigned by your Supervisor or Account Managers.Requirements:· Good administrative skills· Strong written and verbal communication skills.· Computer application (MS Word, MS Excel, MS Outlook and the internet).· Must be able to create and work with spreadsheets.· Professional and courteous phone manners.Job Type: Full-timeSalary: $37,400.00-$39,500.00 per yearBenefits:Dental careExtended health careVision careSchedule:8 hour shiftDay shiftExperience:customer service: 1 year (preferred)Language:French (required)Work Location: In personExpected start date: 2023-09-25\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"EF954BFB26AA6832A54E0F25067FF690\",\n            \"cityName\": \"Masset, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fae43bf33aa89590\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Executive Aviation\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694463842215,\n            \"dateOfPosted\": 1693615775199,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.0114581,\n                    \"lon\": -132.1471978\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Masset\",\n                \"formattedAddress\": \"Masset, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"North Coast\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Masset\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Do you enjoy the aviation industry and are looking for a leadership opportunity? Are you passionate about aviation and looking to grow your career? If you've answered yes, we'd love to hear from you! So, would you say that going above and beyond is in your DNA? Do you love to travel and want to travel even more at discounted rates? Does the opportunity to provide exemplary service to passengers on some of Canada’s best airlines appeal to you? Are you someone who is known for reliability and flexibility? If you've answered yes, come join us! Executive Aviation is looking for permanent casual Customer Service Agents to work at the Masset Airport (ZMT)! In Masset, you will be a part of an amazing team of customer service specialists who work together to provide exemplary service. This role reports directly to an amazing Customer Service Coordinator who is there to support you. What do we offer? Executive Aviation is proud to have very progressive wage ranges with lots of earning potential. The range of salary for this position is $18.00-$20.00/hour. We have fantastic flight benefits with the airlines that we support. We want to see you grow and reach your goals! The sky's the limit with Executive Aviation. Responsibilities Greeting passengers Following airline specific check-in policies and procedures Have proper security clearances Provide pre-flight first class or priority seating grooming for the flight Manage passenger boarding as per airline procedures Understanding flight document requirements and carry-on allowances Positively working with airline crew Kindly enforce airline and airport policies and procedures to passengers In some cases, learn how to bridge an airplane Other duties as assigned Qualifications At least 2 years in customer service role is considered an asset Previous airport experience would be considered an asset Flexible availability to work shift work which includes early mornings, days, late evenings, weekends and/or holidays Strong communication skillsswGrZEkia8\",\n            \"location\": \"Masset, BC\"\n        },\n        {\n            \"id\": \"534AB719E06E1253816B6CE7B2BEE84E\",\n            \"cityName\": \"136 17 Av NE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3df86fd190961970\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Inspire Insurance Services Ltd\",\n            \"rowSalary\": \"$40,000–$45,000 a year\",\n            \"date\": 1694463748712,\n            \"dateOfPosted\": 1692744773578,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0530547,\n                    \"lon\": -114.0417022\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"General Ave NE, Calgary, AB T2E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Inspire Insurance Services Ltd. is an insurance brokerage established in 2018 offering personal and commercial insurance products in Alberta. As a start-up, we acquired AGM Insurance Ltd., a brokerage that has faithfully served Albertans for almost 30 years. At Inspire, we are a unique team of dynamic and experienced professionals.We are seeking enthusiastic candidates to apply. At Inspire, you will be given the support and structure to grow and take your career to the next level.Why Inspire Insurance· Career development and mentorship· Unique hands-on training with real-life cases· Access to numerous insurance markets· Access to ongoing training & development by our insurance partners· A workplace where diversity is valuedJob Summary· Spoken Chinese (Cantonese or Mandarin) is an asset· Build and maintain business relationships with clients· Support CSRs in daily business transactions· Assist in generating insurance quotations, applications, and endorsements· Provide support with insurer portal submissions· Other assigned dutiesOur Ideal Candidate· AIC Level I insurance agent license or above· Previous customer service experience (in sales) is a plus by not required· Effective time management skills and ability to work in a pressure environment· Clear written and oral communication skills· Organized with strong attention to detail· Self motivated and enthusiastic· Proficiency in Microsoft Office suite: Word, Excel, OutlookJob Types: Full-time, Part-time, PermanentPart-time hours: 40 per weekSalary: $40,000.00-$45,000.00 per yearBenefits:Company eventsExtended health careFlexible Language Requirement:French not requiredSchedule:Monday to FridayEducation:Secondary School (preferred)Experience:Customer service: 1 year (required)Personal Line Insurance: 1 year (required)Language:Mandarin (required)Cantonese (required)Licence/Certification:AIC Level One General Insurance License (required)Work Location: In person\",\n            \"location\": \"Ave NE, Calgary, AB\"\n        },\n        {\n            \"id\": \"BD934DD33149BD370BA9D1E315200BE9\",\n            \"cityName\": \"Ayr, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e7c452944a4961d3\",\n            \"jobName\": \"Customer Service Advisor / Front Counter Receptionist (Full-Time)\",\n            \"companyName\": \"Quick Truck Lube\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694463730820,\n            \"dateOfPosted\": 1693615576742,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2854723,\n                    \"lon\": -80.4507835\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ayr\",\n                \"formattedAddress\": \"Ayr, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ayr\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Quick Truck Lube is seeking a Customer Service Advisor with the following qualifications:Must be able to multi-task, and capable of working in a fast pace environment.Terms of employment Permanent, Full time 35 to 48 Hours / Week, 6 days a week Monday to SaturdayComputer skills and strong organizational skills are required.Greeting customers and enhancing the customer service experience.Excellent communication skills required.Must be a good team player.Training is provided, previous experience is an assetMust have own transportation, no public transportation is available.Benefit Package available after 6 months.Salary: $18/hourTo Apply: Email your resume to sjaimie@quicktrucklube.comJob Types: Full-time, PermanentSalary: From $18.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceOn-site parkingVision careSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayWeekends as neededAbility to commute/relocate:Ayr, ON: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Ayr, ON\"\n        },\n        {\n            \"id\": \"8252451D7E29DDE050408C24D45FB477\",\n            \"cityName\": \"1290 St Paul St, Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c640ee2b77fa5d8d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Impact Radio Accessories\",\n            \"rowSalary\": \"$42,000–$46,000 a year\",\n            \"date\": 1694463624455,\n            \"dateOfPosted\": 1693615575558,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8917255,\n                    \"lon\": -119.4918887\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"St Paul St, Kelowna, BC V1Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Impact Radio Accessories Customer Service RepresentativeWho We Are:Impact Radio Accessories is an industry leading manufacturer and worldwide distributor of high-quality audio accessories and chargers for professional, portable communications devices.Through our extensive dealer network, Impact products are used by numerous vertical markets; from major retail chains and global hotel and hospitality brands, industrial and manufacturing facilities, public safety and military agencies and everything in between. Disney, Caesar’s Entertainment, MGM, NYPD, U.S. Secret Service, NASA, The Superbowl, MTV Awards, The Grammys, Wal-Mart, The GAP, Lowe’s, Amazon are just a few (of many) Impact product users we are proud to partner with.We are not only in the business of communication device accessories, but we are also in the business of growth. With the right products, team, and drive to thrive, Impact Radio Accessories has the potential to make an even greater footprint in the professional, portable communications device industry.We have an exciting opportunity for a Customer Service Representative to join our team in Kelowna, BC.. If you bring a positive energy with ambition to learn & grow, then Impact Radio Accessories would love to hear from you.The Role:As our Customer Service Representative, or CSR, you will ensure excellent service standards, respond efficiently to customer inquiries, and maintain high customer satisfaction across our North American Dealer and End User market.Duties & Responsibilities:- Manage a high level of inbound calls and online inquiries from current and potential customers.- Process customer orders with accuracy and efficiency in accordance with standard procedures including taking credit card payments and packing orders.- Updating, referencing, and maintaining customer accounts in our CRM system.- Qualify and direct inbound leads to the appropriate Territory Sales Manager.- Proactively use phone and email to reach out to customers and verify account information.- Respond to customer inquiries regarding order status and product recommendations in a timely manner.- Build sustainable relationships of trust through open and interactive communication.- Deliver outstanding customer service to ensure an exceptional experience for all customers.- Contribute to team effort by accomplishing related results as needed.Experience- 1+ year of sales or customer service experience (B2B considered an asset.)- Experience in handling customer inquiries via phone, email, chat, or face-to-face.- Experience with CRM software.Skills- Excellent verbal and written communication skills- Ability to actively listen and understand customer needs and concerns.- Basic computer proficiency, including experience with Microsoft Office Suite (Word, Excel, Outlook) or equivalent software.- Demonstrated ability to address customer issues, troubleshoot basic product or service concerns, and provide effective solutions.- Familiarity with order processing, billing, or related administrative tasks is a plus.Must be legally entitled to work in Canada without restriction.Company Perks & Benefits:- Competitive salary- Flexible PHSP (benefit) health spending account.- Employee & Family Assistance Program.- 3 weeks paid time off- Casual, modern office environment with large patio, BBQ located downtown Kelowna.- Company paid snacks, beverages, lunches, and fun events.- Free-to-use gym and fitness center with rooftop patio and lounge.- Opportunities for advancement and continuous professional growth.If you are a high-performing, goal-oriented individual seeking the opportunity to be an integral part of the next phase of our growth, we look forward to meeting you.How should you apply?Include your resume, cover letter and a personal note telling us why you’d like to work hereOnly qualified, Okanagan based, candidates will be notified they are moving onto next steps in the processJob Type: Full-timeSalary: $42,000.00-$46,000.00 per yearBenefits:Casual dressCompany eventsDental careEmployee assistance programExtended health careOn-site gymOn-site parkingPaid time offVision careWellness programSchedule:8 hour shiftDay shiftMonday to FridayAbility to commute/relocate:Kelowna, BC: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"St Paul St, Kelowna, BC\"\n        },\n        {\n            \"id\": \"49003B27E95B5561AF56E27B7E495CB9\",\n            \"cityName\": \"384 Academy Rd, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=49418d3a585d2db5\",\n            \"jobName\": \"Customer Service Clerk/Cashier\",\n            \"companyName\": \"G.J.Andrews Food And Wine Shoppe\",\n            \"rowSalary\": \"From $32,000 a year\",\n            \"date\": 1694463591409,\n            \"dateOfPosted\": 1693615589161,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8738702,\n                    \"lon\": -97.1850877\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Academy Rd, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 32000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    32000.0\n                ],\n                \"range\": {\n                    \"gte\": 32000.0,\n                    \"gt\": null,\n                    \"lte\": 32000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer service clerk position open at a gourmet food and wine store in River Heights.If you have a great eye for detail, enjoy working with the public and a good team environment this is the job for you!Your job as a customer service clerk will include ringing up sales on the register, bagging items, stocking shelves, taking phone orders and maintaining our high level of customer service.This position brings a fantastic opportunity to learn more about our business; we reward hard work and initiave with increased responsibility and earnings.Job Type: Full-timeSalary: From $32,000.00 per yearBenefits:Dental careStore discountDay range:Every WeekendMonday to FridayWeekends as neededFlexible Language Requirement:French not requiredShift:8 hour shiftWork setting:Grocery storeCOVID-19 considerations:We follow all public health rules and operate a very clean establishment. When dealing with food cleanliness and sanitizing is always inportant.Experience:sales: 1 year (preferred)customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Academy Rd, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"E76BF5F76F7532F640DD6007CB629969\",\n            \"cityName\": \"Fredericton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1e6c81600f52a47b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Xplore Inc.\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694463512821,\n            \"dateOfPosted\": 1693615710775,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.9635895,\n                    \"lon\": -66.6431151\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fredericton\",\n                \"formattedAddress\": \"Fredericton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"York County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fredericton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Overview: * Do you have a passion for providing excellent customer service? Want to work for a company who believes in putting the customer at the heart of everything they do? Then join Xplore’s team of Customer Service Representatives in our Fredericton, NB office. Xplore offers a high energy, fast-paced work environment where employee opinions and feedback are valued. Xplore offers a high energy, fast-paced work environment where employee opinions and feedback are valued. We offer:$15.00/hr$3.00/hour Bilingual Premium (French/English)Bonus incentive opportunities up to $2,800 annuallyExcellent company benefits including health and dentalMatched participation in group RRSPStrong focus on internal promotion, career path development and trainingOpportunities to work from home after six months tenureKey responsibilities include:Providing an excellent customer experience by responding to customer calls in a courteous, knowledgeable and professional mannerListening to customers and probing as appropriate to discover needs while fulfilling customer expectations in a way that also complies with policies, practices and proceduresProviding general account, billing and technical support to our customersProcessing service ordersMaintaining accuracy of customer databasesAssisting with reporting and administrationMaintaining service levels and achieving business and performance goals and objectivesThe ideal candidate will possess:Completion of post-secondary education in a related field (or equivalent level of experience)Knowledge of approaches, tools and techniques for anticipating, recognizing and resolving technical issuesPrevious customer service experience is an assetStrong computer and troubleshooting skills with the ability to analyze and solve problemsSolid working knowledge of the Microsoft Operating Systems; experience with MAC and/or Linux is an assetStrong communication skills, verbal and written, with the ability to communicate effectively with customers in technical and non-technical termsSelf-motivated and driven with good time management and organizational skillsAbility to follow guidelines and strong attention to detailAbility to prioritize and multi-task while adapting in a fast-paced work environmentBilingualism is an asset (French/English) #XploreJobs Condition of employment: As a condition of employment and in order to comply with industry related data security standards, this position is subject to the successful completion of a Criminal Background Check. Details will be supplied to applicants as they move through the selection process. Xplore is committed to creating an accessible environment and will accommodate disabilities during the selection process. Please let your recruiter know during the selection process of any accommodation needs. Company Overview: Xplore Inc. is Canada’s fibre, 5G and satellite broadband company for rural living. Xplore is committed to the relentless pursuit of an improved broadband experience for all Canadians. Xplore is building a world-class fibre optic and 5G wireless network to enable innovative broadband services for better every day rural living, for today and future generations.\",\n            \"location\": \"Fredericton, NB\"\n        },\n        {\n            \"id\": \"1958867EC116E9B12A32B84D12C2542C\",\n            \"cityName\": \"75 Napa Valley Ave, Woodbridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=56f33713f73baaa0\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Keto Pi Factory\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694463474762,\n            \"dateOfPosted\": 1693615577569,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.823457,\n                    \"lon\": -79.618179\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Napa Valley Ave, Vaughan, ON L4H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities include but are not limited to the following: Greeting all customers Product facing Packing orders Ability to travel to different location if necessary Organize opening and closing duties as assigned Act with integrity, honesty, and knowledge of our products per customer’s dietaryneeds Anticipate customer and store needs by constantly evaluating environment andcustomers for cues Deliver exceptional customer service, making genuine connections with customers Following all cash register opening and closing policies and ensuring proper cash management practices are followedThe successful candidate must: Maintain regular and consistent attendance and punctuality Complete all daily tasks, as outlined by the location manager Follow health, safety, and sanitation guidelines for all products Always maintain a clean working and store environmentPreferred Experience: Customer service experience is an asset Knowledge of the Ketogenic diet is an assetAssets: Ability to learn quickly G license Effective oral communication skills Retail experience Strong interpersonal skills Ability to work individually or as part of a teamJob Types: Part-time, PermanentPart-time hours: 20 per weekSalary: From $15.50 per hourSchedule:8 hour shiftDay shiftWeekend availabilityExperience:Customer service: 1 year (preferred)Licence/Certification:Class G Licence (preferred)Work Location: In person\",\n            \"location\": \"Napa Valley Ave, Woodbridge, ON\"\n        },\n        {\n            \"id\": \"0C66AFDF8260ABE36A871BB72CD7C3B0\",\n            \"cityName\": \"Baker Lake, NU\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6404456c4ad12fe7\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Calm Air\",\n            \"rowSalary\": \"$18.14 an hour\",\n            \"date\": 1694462431195,\n            \"dateOfPosted\": 1693610462143,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 64.317604,\n                    \"lon\": -96.02200099999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Baker Lake\",\n                \"formattedAddress\": \"Baker Lake, NU, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nunavut\",\n                \"state_code\": \"NU\",\n                \"postalTown\": null,\n                \"county\": \"Keewatin Region\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Baker Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Title: Customer Service Agent Location: Baker Lake, NU Status: Full Time Start Date: Immediately  Who We Are  Calm Air International is a regional airline serving the Northern part of Central Canada. From its main bases in Winnipeg, Thompson and Churchill, Manitoba, and Rankin Inlet, Nunavut, Calm Air operates frequent, daily scheduled passenger, charters, and cargo flights throughout Manitoba and the Kivalliq Region of Nunavut.  At Calm Air International LP, we value our customers, passengers, and the communities we serve. We are only as good as the employees who work with us. We are looking for highly motivated, well-organized individuals, who work well in a fast-paced environment, to join our team! Want to learn more? Visit www.calmair.com.  About the Opportunity  Are you seeking an exciting opportunity to work with a group of high performing professionals? Do you like to work independently as well as part of a skilled team? If so, we would like to hear from you! We are looking for a highly motivated, well-organized individual, who thrives in a fast-paced environment, to join the Calm Air family.  The sky is the limit!  What You'll Get To Do Calm Air Customer Service Agents provide valuable front-line passenger support and assistance to our customers at the airports and before and after they board one of our flights. They are responsible for ensuring our passenger experience is positive and meets the standards of service that we set out as an organization in addition to complying with applicable regulations. Providing curbside to curbside service to the travelling public as per Canadian Transportation Agency regulationsMaking and changing flight reservations in the computerized reservation systemChecking in passengers and their baggageCalculate and charge any additional fees if applicableIssuing boarding passes, itineraries, and seating assignments as necessaryAssist pre-boarding passengers to ensure safe movement to and from the aircraftProvide information on fares, flight schedules and routes in person or over the telephoneFacilitate the safe movement of passengers between aircraft and terminal buildingsOther duties as required Hours Of Work Shift work is required and may include mornings/afternoons, evenings, and weekends Skills & Experience We Value High school diploma or general education degree (GED) an assetAbility to learn a computerized reservation systemBasic Computer skills (word, excel, office)Knowledge of an airline’s operations an assetMust have exceptional customer service skillsMust be able to work independently or in a team settingAbility to work efficiently and accurately under pressureMust have own transportation to and from workMust be able to obtain and maintain an Enhanced Security Clearance qualificationMust be able to attend and complete initial Ground School TrainingPreference given to Inuit Land Claims BeneficiariesInuktitut language considered an asset The Benefits of Joining Our Team  We invest time and resources into making sure Calm Air International is as good as the people we hire. Here are some of the reasons we attract the best people: Registered Pension Plan starting at 5% matched after one year of employmentComprehensive Group Benefit Plan available upon hire with the exception of dental coverage which has a three month wait periodNorthern Living AllowanceEntitled to three weeks vacation after one yearAirline travel and freight privilegesCorporate and family eventsAnd more! If This Sounds Like the Job for You, Contact Us  At Calm Air, we value diversity and provide equal opportunities and accessibility for all qualified candidates. We encourage all members of a designated group or those requiring accessibility support to self-declare when applying.  Please submit a resume in confidence by September 15, 2023, through Dayforce.  We thank all those who apply, but only those selected for an interview will be contacted.\",\n            \"location\": \"Baker Lake, NU\"\n        },\n        {\n            \"id\": \"876B25CF637DBECAE63BF68EC6C42D35\",\n            \"cityName\": \"272 Industrial Ave E, Penticton, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=05a8f8188c69be5b\",\n            \"jobName\": \"Customer Service And Office Administrator\",\n            \"companyName\": \"Craftsman Collision\",\n            \"rowSalary\": \"$42,000–$55,000 a year\",\n            \"date\": 1694462233451,\n            \"dateOfPosted\": 1693615577508,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.4804046,\n                    \"lon\": -119.5782001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Penticton\",\n                \"formattedAddress\": \"Industrial Ave E, Penticton, BC V2A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Okanagan-Similkameen\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Penticton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We're currently seeking a temporary Customer Service and Office Administrator at our Penticton location. We are looking for someone to start as soon as possible and continue on a fixed term basis until the end of May, 2024. We offer competitive wages ranging from $42,000 to $55,000 annually, 3 weeks of paid vacation, and extended health and dental. The Customer Service and Office Administrator will provide exceptional customer service and support the Shop with operations initiatives and administrative duties. Craftsman Collision is the largest independently owned and operated auto body repair chain in Canada – but we’re also a family that cares about the people we work with. Are you ready to reach your full potential and build a fulfilling career- while having fun along the way? Then consider joining our team of more than 500 ambitious people who share our commitment to excellence. Customer ServiceInteracts with customers in a caring, friendly and professional manner and assists in clearly identifying the customers’ needs to relay to the rest of the team. Gathers all required information to pass along to estimator;Takes ownership of a customers’ concerns and issues until they are satisfied or until they are able to pass them on to the appropriate person;Answers phones, handles telephone enquiries, books appointments, makes appointment reminder calls and notifies customers of repair completion as directed;Greets customers as they walk in the door and helps ensure their wait time is agreeable;Signs customers in and out and collects all necessary payments;Helps customers to understand our processes and procedures by explaining in a clear, simple and respectful manner;Deals with all customer interactions promptly including monitoring of Production Dashboard in the Craftsman Management System (CMS) for alerts/correspondence as well as voicemail and email;Office AdministrationDownloads and prints assignments from insurance companies using Audatex and Mitchell and prepares new files for estimators;Manages the shop’s email inbox and forwards, distributes or files emails accordingly;Prepares monthly promotional and printing inventories and organizes replenishing as necessary;Orders all office supplies and printer toner cartridges;Input documents and new hourly employees into Dayforce.Arranges courier services when necessary;Supports in-shop training of new staff;Daily Bookkeeping DutiesUpdates CMS for arrived and delivered vehicles as changes occur;Closes POS machine, prints and posts the Deposit Journal. Prepares a bank deposit slip daily for any cash/cheques;Finalizes all work orders from previous day and bill insurance companies accordingly;Invoices parts/sublet/rental invoices relating to work orders via Purchase Orders and reviews any discrepancies;Posts any A/R cheques into Traverse A/R and reconciles any over/short payments;Enters invoices for non-trade payables (overhead) into Traverse A/P;Banking as required (at least weekly);Posts PO Journals and Non-Trade Transaction Journals as required;Monthly Bookkeeping DutiesPrepares all payable cheque runs (mid & month end). Prepares monthly log for Head Office for any aging A/P amounts;Reconciles Flat-Rate and Straight-Time hours with employees (with the help of Shop Manager) and posts the Flat-Rate Journal in CMS on a semi-monthly basis. Prepares manual cheques and ROE’s for any terminated hourly employees or for those on leave;A/R Collections on unpaid balances including sending statements to customers and preparation of monthly log for Head Office;Follows month-end procedures on the first day of every month and reviews monthly reports with Shop Manager;Reviews monthly ARA and MSP benefits statements for accuracy;Reconciles GL accounts 4920 (Other Income/Over-Shorts), 1130 (Employee A/R) and 1999 (Suspense);Performs year-end requirements as directed by Head Office.Other related duties as assigned.RequirementsMinimum of 3 years related experience in a fast-paced, team-oriented environmentPost-secondary courses in a related field an assetStrong interpersonal skills with customer service-oriented attitudeExperience with accounts receivable, accounts payable, and payroll preferredDemonstrated ability to multi-task and prioritize, effectively managing time with minimal supervisionDetail oriented and able to complete tasks with a high degree of accuracyStrong verbal, written and listening skillsProficient in Outlook, Word and Excel with the ability and willingness to learn new applicationsDemonstrated desire and aptitude for learning and developmentPrevious experience with payroll or HRIS systems preferred; Dayforce experience an assetA valid driver's license preferredMust be legally entitled to work in Canada with no restrictions Benefits When you’re part of the Craftsman Collision team, you get valuable perks like extended health, professional development, certified training and more. Your cover letter and resume should clearly outline how your qualifications & experience fit this position. We appreciate the time that all applicants have taken when applying for this position, however, only the candidates that are chosen for an interview will be notified by phone or email. No phone calls please.\",\n            \"location\": \"Industrial Ave E, Penticton, BC\"\n        },\n        {\n            \"id\": \"D5E087C84C8A0D6A1D1D538A9DBE63EC\",\n            \"cityName\": \"485 Rue McGill, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a0272c25fffcadba\",\n            \"jobName\": \"Barrista And Customer Service\",\n            \"companyName\": \"Presse Cafe\",\n            \"rowSalary\": \"$16–$18 an hour\",\n            \"date\": 1694462047274,\n            \"dateOfPosted\": 1692746430228,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5000023,\n                    \"lon\": -73.5566425\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue McGill, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"responsible... . customer service oriented . friendly. detailed would be an asset, expeience in food handling and food preparation needed for some of the postsJob Types: Full-time, Part-time, PermanentPart-time hours: 25-35 per weekSalary: $16.00-$18.00 per hourSchedule:Monday to FridayWork Location: In personExpected start date: 2023-08-23\",\n            \"location\": \"Rue McGill, Montréal, QC\"\n        },\n        {\n            \"id\": \"E80B46D2EE6A113AC1D2488A083FA7F4\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d797cc1d4ba4d807\",\n            \"jobName\": \"Agent Bilingue Du Service Clientèle / Bilingual Customer Service Agent\",\n            \"companyName\": \"Voxdata\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694461985147,\n            \"dateOfPosted\": 1692763714001,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*English version to follow* *NB : Nous n'acceptons que les candidatures provenant de la grande région de Montréal car la formation se fait à partir du bureau.* *Nous exigeons que nos candidats parlent anglais car certains de nos clients sont à l'extérieur du Québec et ne parlent que l'anglais.* Prêt à vous joindre à l'un des plus importants centres d'appels de Montréal ! VOXDATA vous attend ! Nous cherchons à agrandir notre équipe avec de nouveaux membres qui sont prêts à devenir nos prochains experts en offrant la meilleure expérience client possible ! Pour avoir une meilleure idée de notre entreprise et de nos valeurs, vous pouvez consulter notre site web ici ! https://www.voxdata.com/ Voici quelques raisons pour lesquelles il fait bon travailler chez VOXDATA :Une variété de types de postes, allant du service à la clientèle aux ventes, en passant par le soutien technique, avec des rôles uniquement en anglais ou bilingues et des options d'horaire variées - nous voulons mettre en valeur vos compétences uniques dans un poste qui vous convient le mieux !Un bureau facilement accessible et convoité au cœur du centre-ville de Montréal, et la possibilité de travailler à domicile pour nos postes hybrides !Un environnement de travail diversifié, positif et encourageant, notre objectif étant d'aider nos agents à briller et à réussir au maximum de leur potentiel !Les avantages et les bénéfices pour les employés tels que les plans de primes inclus dans nos postes, les primes supplémentaires pour les personnes les plus performantes (comme des cartes cadeaux et de l'argent supplémentaire !), les couvertures d'assurance, et les primes de recommandation des employés qui peuvent aller jusqu'à 1000 $ par personne !La possibilité d'évoluer et de développer vos compétences par le biais de réunions d'équipe, de séances de coaching individuel et d'évaluations des performances, toutes conçues pour vous aider à renforcer vos capacités et à devenir un maître dans votre travail !Des opportunités de développement interne ouvertes à tous - avec des rôles tels que chef d'équipe, coach, formateur, mentor et même des postes administratifs, nous sommes fiers de toujours nous tourner vers le personnel que nous avons déjà avec nous pour le promouvoir lorsque l'occasion se présente !Pour ce poste, vous travaillerez avec une société d'aviation bien établie. Vos tâches spécifiques seront les suivantes :Fournir un service à la clientèle de premier ordre à chaque interaction avec les clients.Répondre aux appels entrants des clients pour les aider à effectuer des réservations une fois qu'elles ont été achetées.Résoudre les problèmes liés à l'accès aux billets et à la navigation sur le site web.Répondre aux questions concernant les informations sur les billets ou aux questions générales sur les réservations.Ready to join one of the leading call centers in Montreal?! VOXDATA is waiting for you! We’re looking to expand our team with new members who are ready to become our next experts in delivering the best customer experience possible! To get a better idea of our company and values, you can check out our website here! https://www.voxdata.com/ Here’s a few reasons why it’s great to work at VOXDATA:A variety of position types, ranging from customer service, sales, and technical support, with English-only or bilingual roles and ranging scheduling options – we want to highlight your unique skillset in a position that is best suited to you!An easily accessible and coveted office location in the heart of Downtown Montreal, and the option to work from home with our hybrid roles!A diverse, supportive, and encouraging work environment, our goal is to help our agents shine and succeed to their fullest potential!Employee benefits and perks such as bonus plans included into our positions, additional bonuses for top performers (like gift cards and extra money!), insurance coverages, and employee referral bonuses that can go up to $1000 per person!The chance to grow and develop your skills through team meetings, individual coaching sessions, and performance reviews; all designed to help you further strengthen your abilities and become a master at your job!Internal growth opportunities that are open to everyone – with roles like team leader, coach, trainer, mentor, and even administrative positions; we pride ourselves on always looking to the staff we already have with us to promote when the occasion arises!For this role, you will be working with an established aviation company. Your specific tasks will include:Providing top-tier customer service to clients in every interaction.Answering inbound calls from customers to assist with bookings/reservations after they have been purchased.Resolving issues relating to ticket access and website navigation.Answering questions regarding ticket information, or general questions about bookings/reservations.Requirements Qu'est-ce qui fait de quelqu'un un excellent candidat ? Nous recherchons des personnes qui :Peut travailler 40 heures par semaine pendant les heures d'ouverture de la campagne : Du lundi au dimanche, de 7 heures à 7 heures (ouvert 24 heures sur 24) ; nous préférons les candidats disponibles le soir, la nuit et le week-end. Sont bilingues en français et en anglais.Ont déjà travaillé dans le service à la clientèle, les ventes ou les centres d'appels, ou ont une expérience traduisible dans d'autres secteurs.Vous pouvez apprendre à utiliser et à faire fonctionner plusieurs programmes informatiques avec facilité.Être disponible pour travailler le soir et le week-end si la campagne est opérationnelle pendant ces périodes.Avoir obtenu un diplôme de fin d'études secondaires ou un diplôme équivalent.Se considèrent comme des personnes capables de résoudre des problèmes, de s'adapter à des situations changeantes et sont motivées pour être les meilleures des meilleures !What do we think makes someone a great candidate?! We’re looking for people who:Can work 40 hours/week anytime through the campaign operation hours: Monday to Sunday, from 7 AM to 7 AM (open 24 hours/day); we prefer candidates with evening, overnight, and weekend availability. Are bilingual in French and English.Have worked in customer service, sales, or call centers before; or have translatable experience from other industries.Can learn how to use and operate multiple computer programs with ease.Have graduated high school or have an equivalent diploma.Consider themselves to be problem-solvers, adaptable to changing situations and are motivated to be the best of the best!Benefits Soumettez votre candidature dès maintenant pour lancer le processus d'embauche et voyez par vous-même pourquoi il est formidable d'être un agent VOXDATA !Ce poste est assorti d'un salaire de base de 17,00 $/heure. Submit an application now to get the hiring process started and see for yourself why its great to be a VOXDATA agent! *This position has a base salary of $17.00/hour.*\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"E16BD5DF6A67F474B9B18872AD6AC65A\",\n            \"cityName\": \"3394 Norwell Dr, Nanaimo, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dc1c3354ca7c0c75\",\n            \"jobName\": \"Customer Service/Pizza Maker\",\n            \"companyName\": \"Domino's Pizza | Ptza Nation Bc\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694461956964,\n            \"dateOfPosted\": 1693609583783,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2082176,\n                    \"lon\": -124.0084757\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Nanaimo\",\n                \"formattedAddress\": \"Norwell Dr, Nanaimo, BC V9T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Nanaimo\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Domino's Pizza is hiring immediately for Customer Service Representatives (Pizza Cook/Team Member) to join their team! Job type:Part time, Permanent We are searching for qualified customer service reps with personality and people skills. We're growing so fast it's hard to keep up, and that means Domino's has lots of ways for you to grow (if that's what you want), perhaps to management, perhaps beyond. Whether it's your hobby, main-gig, or supplemental job, drop us a line. We're bound to have just the thing for you. We take pride in our team members and our team members take pride in Domino's Pizza! Being the best pizza delivery company in the world requires exceptional team members working together. At Domino's Pizza, our people come first! As part of our crew, your responsibilities will include: Stocking ingredients from delivery area to storage, work area, walk-in cooler. Preparing products Receiving and processing telephone orders. Cleaning equipment and facility approximately daily. Benefits of working at Domino's Pizza: Flexible schedules Competitive wages for all Team Members Store discounts Fun working environment Additional pay on top of wage with tip sharing program Domino's is an equal opportunity employer. REQUIREMENTS At Domino's Pizza, Our Most Important Ingredient is Our People! We offer employment opportunities within our franchise stores. Take the first step in joining our team, and you'll find opportunities you won't find anywhere else in the industry!\",\n            \"location\": \"Norwell Dr, Nanaimo, BC\"\n        },\n        {\n            \"id\": \"2C656374C722189DCF98630597830C3A\",\n            \"cityName\": \"4874 Concession Rd 7, Alliston, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0144daf9f5915b72\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Peavey Industries Lp\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694461922115,\n            \"dateOfPosted\": 1667812884741,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.0983589,\n                    \"lon\": -79.8870125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Barrie\",\n                \"formattedAddress\": \"Concession Rd 7, Adjala-Tosorontio, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Barrie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Knowledge, Skills, and Abilities Required· Maintaining a customer first, positive attitude· High attention to detail· Ability to count, total, and work with numbers· Ability to learn and operate till technology· Staying calm and attentive in a busy environment· Ability to approach customers, listen attentively, and use suggestive selling.· Ability to multi-taskJob Qualifications· On the job training or previous experienceWorking Conditions· Standing for extended periods, walking long distances to move/handle merchandise and provide customer service· Lifting up to 40lbs. and maintaining fitness level to perform all functions as set forth above· Operating keyboard, scanning, and touch screen till technology in a repetitive mannerSupervisory Responsibilities· noneJob Types: Full-time, PermanentSalary: From $17.00 per hourBenefits:Dental careOn-site parkingPaid time offStore discountVision careShift:8 hour shiftExperience:sales: 1 year (preferred)Customer service: 1 year (preferred)\",\n            \"location\": \"Concession Rd, Alliston, ON\"\n        },\n        {\n            \"id\": \"C01646A1CFAC11301900A9405D1BB3B1\",\n            \"cityName\": \"86 Main St, Dundas, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=74cf25415648edf2\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Dominos\",\n            \"rowSalary\": \"$15.50–$16.00 an hour\",\n            \"date\": 1694460944993,\n            \"dateOfPosted\": 1693608065172,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.264197,\n                    \"lon\": -79.95260630000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Main St, Hamilton, ON L9H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service Representatives role is crucial within the Domino’s system. We pride ourselves on offering fast and friendly service with a smile, and our CSRs lead the way in doing so. Within our fast paced environment, the role is primarily to offer top quality customer service by phone and in person at the counter. CSRs are expected to know Domino’s products and the current offers in order to provide customers with the correct order and best value based on their needs.A uniform is provided (shirt, hat, apron). Customer Service Representatives are expected to be presentable by following Domino’s personal image and grooming standards.Functions:Customer Service Representatives will take orders by phone-in customers, as well as walk-in customers. They are expected to manage the cash drawer when accepting payment for orders and returning change.In secondary roles, Customer Service Representatives will help make quality products, label boxes, cut pizzas and prepare orders to be served to in-store customers. CSRs also help in maintaining the store’s professional image by participating in the cleaning tasks assigned to all team members.Qualifications:All Customer Service Representatives must have the following:Friendly and well spokenGood math skills to handle cash handling for in-store customer paymentsSpeak English fluently in order to serve customersMust be available evenings & weekends, additional availability beyond evenings & weekends will be considered an assetJob Types: Part-time, Full-timePart-time hours: 15-30 per weekSalary: $15.50-$16.00 per hourBenefits:On-site parkingStore discountSchedule:4 hour shift8 hour shiftDay shiftMonday to FridayNight shiftWeekends as neededAbility to commute/relocate:Dundas, ON L9H 2R1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (required)Fast food: 1 year (preferred)Shift availability:Day Shift (required)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Main St, Dundas, ON\"\n        },\n        {\n            \"id\": \"B0AB0467649F8ABC44B810FF246DC084\",\n            \"cityName\": \"1811 Bank St, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0fd2cfda67ad29b0\",\n            \"jobName\": \"Customer Service - Parts Advisor (Automotive Retail)\",\n            \"companyName\": \"Alpha Auto Group - Bank Street Toyota\",\n            \"rowSalary\": \"From $19 an hour\",\n            \"date\": 1694460791426,\n            \"dateOfPosted\": 1687946739264,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4209477,\n                    \"lon\": -75.70115419999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Bank St, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Alpha Auto Group (\\\"AAG\\\") is a growing and nationally focused auto dealer group based in Toronto, with various locations across Canada and the USA. AAG’s mission is deeply rooted in delivering best in class service for our valued customers by putting our customers first through world class service.In order to meet this mission, it’s important that the successful candidate bring a high level of service, skill, willingness to grow and collaborate and drive, set and meet goals, both personally and collaboratively.With the ever increasing demand for support and service in the auto industry, our Bank Street Toyota location is looking for a Parts Advisors to join the team.ResponsibilitiesWorking directly with customers, suppliers and technicians to ensure that there is ongoing communication and effective operations within the parts department.Always working towards improving operational efficiencies.Order parts for customers' repair needs.Maintain and nurture ongoing rapport and relationships with business partners.Oversee and maintain parts inventory.QualificationsPrevious parts advisor experience. (min 1 yr)Deep passion and interest in human centered customer experiences.High attention to detail and able to work with minimal supervision.Comfort working with all levels of staff and customers.Strong verbal and written skills and proficiency in English.Proficient in Microsoft Office Applications. (Excel, Word, Outlook)Strong interpersonal skills.Job Types: Permanent, Full-timeSalary: From $19.00 per hourBenefits:Extended health careSchedule:Day shiftMonday to FridayWeekends as neededExperience:Customer Service: 3 years (preferred)Automotive Parts: 1 year (preferred)Language:English (required)Licence/Certification:Drivers License (required)Work Location: In person\",\n            \"location\": \"Bank Street, Ottawa, ON\"\n        },\n        {\n            \"id\": \"47571AA2AC5CF0874312EA3C8E2B40E1\",\n            \"cityName\": \"1000 Rue Legendre Ouest, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1153b6700ccdd55b\",\n            \"jobName\": \"Caissier, Caissière Service à La Clientéle De Nuit/ Cashier Customer Service Night Shift\",\n            \"companyName\": \"Tim Hortons | Damsar, Inc.\",\n            \"rowSalary\": \"$17.25 an hour\",\n            \"date\": 1694460418282,\n            \"dateOfPosted\": 1692747068559,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.53660929999999,\n                    \"lon\": -73.6519732\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Legendre O, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Primes de nuit Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement As a Team Member at Tim Hortons, your top priority is guest satisfaction. Whether you are the very first person our guests encounter, or produce the best loved bakery items that our guests come to enjoy, you will have the opportunity to deliver and create exceptional guest experiences. Your energy and passion for guest service are what make you a top team member in this fast-paced environment while your ability to multi-task and communicate with your fellow team members will contribute to your success. Why work for us? Night Shift Premium $ Paid Training Flexible schedule Scholarship Program Opportunities Amazing growth opportunities! REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder une esprit d’équipe et avez un empressement au travail / Have a team spirit and being able to work in a fast paced environement Faire parti de l'équipe / Be part of the team Être une personne ponctuelle et prête à travailler / Able to be on time and ready to work Être capable de lever 25 livres / Must be able to lift 25 lbs Travailler d nuit / Work night shift Job applicants responding to this posting may be applying to a Tim Hortons® restaurant independently owned and operated by a franchisee and, if so, any hiring decisions will be made by the franchisee. En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Rue Legendre Ouest, Montréal, QC\"\n        },\n        {\n            \"id\": \"D139D0A1FD47C22E3BE43F2AF012BD68\",\n            \"cityName\": \"510 W Georgia St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d8f7ed73722cdd24\",\n            \"jobName\": \"Customer Service Associate - 28476\",\n            \"companyName\": \"Exela Technologies\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694458424735,\n            \"dateOfPosted\": 1693608067325,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2857341,\n                    \"lon\": -123.1231553\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Georgia St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate –Working in a Mailroom environment, this position is responsible for delivering superior customer service in a prompt, respectful and courteous manner.Essential Job Functions-Receive all incoming items, and log accordingly through internal systems.-Communication clearly and effectively both verbally and written.-Sort, deliver, and process mail and packages throughout the building.-Meeting job duty timelines in SLA-Handling confidential mail and packages.-Work quickly and accurately.-Shipping various couriers (Local, National and International)- Handling time-sensitive material and shipping as required at an Executive level.- Assisting with other various requests from the Executive team.- Escalates more complex issues to the appropriate level- Other job-related responsibilities as needed and required- Able to lift up to 55lbs unassisted.Required skills and qualifications:- High School Diploma-Previous customer service experience- Excellent verbal, written and analytical skills- Good time management skills to ensure assigned responsibilities are completed in an efficient manner- Strong communication skills; is able to effectively communicate to all levels of management and customers both written and verbally.- Proficiency with commonly used Microsoft software programs- Professional phone etiquette- Ability to multi-task and lift up to 55lbs unassisted.- Ability to maintain the highest level of confidentiality at all times- Strong organizational skills- Ability to work both independently and a team environment- Ability to interact with diverse people“The pay range for this position starts at $17; however, base pay offered may vary depending on job-related knowledge, skills, and experience. Bonus opportunities may be provided as part of the compensation package, in addition to a full range of medical, financial, and/or other benefits, dependent on the position offered.”Job Types: Full-time, PermanentPay: $17.00 per hourDay range:Monday to FridayShift:8 hour shiftExperience:Customer service: 1 year (preferred)Mailroom: 1 year (preferred)\",\n            \"location\": \"W Georgia St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"B8AE2D72E90FAB08852410F529DE35D4\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9d1aec11d35c9c89\",\n            \"jobName\": \"Call Center Representative\",\n            \"companyName\": \"Cosmetic Physician Partners\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694457180308,\n            \"dateOfPosted\": 1692747261022,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cosmetic Physician Partners is building a premier network of physician-led aesthetic clinics throughout the United States. We are seeking a Call Center Representative/Appointment Setter to make outbound calls to current and prospective clients assisting in rebooking and scheduling appointments for our clinics across the country.Schedule: Full-time, Hybrid Responsibilities Manage outbound calls to rebook current patients for new appointments Call leads who signed up online and get them to book Identify customers’ needs, clarify information, and provide solutions and/or alternatives Seize opportunities to upsell products when they arise Build sustainable relationships and engage customers by taking the extra mile Keep records of all conversations in CRM Frequently attend educational seminars to improve knowledge and performance level Meet personal/team qualitative and quantitative targets Requirements and skills Previous experience in a customer support role Strong phone and verbal communication skills along with active listening Familiarity with CRM systems and practices Customer focus and adaptability to different personality types Ability to multi-task, set priorities and manage time effectively High school degree Cosmetic Physician Partners, LLC is an equal opportunity employer. All applicants will be considered for employment without attention to race, color, religion, sex, sexual orientation, gender identity, national origin, veteran or disability status.tFb7SRKAEk\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"149011E779DBCFE405BD5007DDC0EFF0\",\n            \"cityName\": \"332 E Espl, North Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=629dfc575e02a227\",\n            \"jobName\": \"Customer Service Coordinator\",\n            \"companyName\": \"Vancouver Christmas Market Inc.\",\n            \"rowSalary\": \"From $3,800 a month\",\n            \"date\": 1694456489365,\n            \"dateOfPosted\": 1693605598533,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.30908119999999,\n                    \"lon\": -123.0748408\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"North Vancouver\",\n                \"formattedAddress\": \"Esplanade E, North Vancouver, BC V7L, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"North Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"month\",\n                \"salaryFrom\": 3800.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    3800.0\n                ],\n                \"range\": {\n                    \"gte\": 3800.0,\n                    \"gt\": null,\n                    \"lte\": 3800.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"If you have lived in Vancouver for a while, chances are high you've been to the Vancouver Christmas Market. Now in our 13th season, our authentic outdoor German Christmas Market features unique holiday shopping, seasonal entertainment, and delicious traditional food and drinks. Located in the downtown core of Vancouver, at Jack Poole Plaza, the Christmas Market will be open to the public daily from November 16 to December 24.Full-Time Employment Opportunity – Customer Service CoordinatorVancouver Christmas Market Inc. is seeking two driven, and enthusiastic individuals, one full-time and one part-time. The Customer Service Coordinators report to the Marketing Coordinator with the objective of creating a positive customer experience from the initial point of contact at the 2023 Vancouver Christmas Market.Start Date: October 2, 2023Location: Mix of home office and set number of days in office in Downtown Vancouver. Full-time or Part-time in office & on-site (November – December).Hours: Contract Full Time or Part Time from October 2, 2023 – January 12, 2024 (15 weeks). Variable work schedule including evenings and weekends from October - December 29.Reporting To: Marketing CoordinatorRoles and ResponsibilitiesCUSTOMER RESPONSE MANAGEMENTCollaborates closely with the Marketing team to effectively maintain VCM's positive reputation, aligning with brand standards and customer service guidelines.Effectively implement pre-existing communication templates as well as create uniquely personalized responses in a voice that is consistent with VCM core valuesProvide prompt responses to customer inquiries, addressing questions, concerns, and complaints in a timely manner.Monitors social media inboxes, email channels and CRM platform (HubSpot) to ensure all communications are up to date. There is no customer service over the phone required.Prepare regular reports on customer service metrics (response times, customer satisfaction scores, and feedback analysis) to identify areas of improvement and present findings to the management team.Requirements and Selection CriteriaVCM is looking for an inquisitive, creative, motivated self-starter that pays attention to detail and describes themselves as an event fanatic. A successful candidate has an approach that balances quick wit & creative spirit with attention to detail & a strategic approach.Education and Work Experience: A university or college degree or diploma in a related field of study (Communications, Marketing, or Public Relations are preferred but not necessary) with a minimum of 3 years of work experience managing customer service or marketing-related tasks for events or festivals.Communication: Excellent verbal and written communication skills in English and strong interpersonal communication, including the ability to provide solutions to customers friendly and efficiently.Management Experience: Strong teamwork and self-management skills including performance monitoring, goal setting, and mentorship.Marketing and Communication: Basic experience and skills in marketing, and brand management. Strong understanding of brand tone of voice and communication.Social and Digital Media: Demonstrated experience with social media platforms management.Planning and Time Management: Superior time management skills with excellent organizational and planning capabilities. Ability to take tasks from concept through to final production. Comfortable to multitask and meet tight deadlines.Adaptability and Judgment: Ability to quickly adapt to changing environments, problem-solving skills, and an innovative mindset including exercising good judgment and decision making.Other: Applicant must have current eligibility to work in Canada.CompensationContract $15,000 (Full-time) or $7,500 (Part-time)Bonus: $2000-$3000 based on Department’s goalsApplication ProcessPlease send RESUME and COVER LETTERAll applications will be kept in confidence. No telephone calls or faxed applications, please. We thank all who express an interest in this position; however, only those selected for an interview will be contacted.COVID-19 considerations:We require employees to be fully vaccinated against COVID-19 unless a medical or religious exemption is approved. Being fully vaccinated means that an individual is at least two weeks past their final dose of an authorized COVID-19 vaccine regimen.Job Types: Part-time, Full-time, Fixed term contractContract length: 4 monthsSalary: From $3,800.00 per monthSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payAbility to commute/relocate:North Vancouver, BC V7L 1A4: reliably commute or plan to relocate before starting work (required)Application question(s):How many years of Marketing experience do you have?Education:Secondary School (preferred)Experience:events: 1 year (required)Customer service: 1 year (required)Work Location: Hybrid remote in North Vancouver, BC V7L 1A4Expected start date: 2023-10-02\",\n            \"location\": \"E Espl, North Vancouver, BC\"\n        },\n        {\n            \"id\": \"EA126625545F5CDBC8A333E14369B8F4\",\n            \"cityName\": \"304 Montée De L'église, L'ile-bizard, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e2539439aca8c142\",\n            \"jobName\": \"Cashier And Customer Service\",\n            \"companyName\": \"Sushi Shin\",\n            \"rowSalary\": \"$15.25–$19.00 an hour\",\n            \"date\": 1694456319473,\n            \"dateOfPosted\": 1694456319295,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4966461,\n                    \"lon\": -73.8909777\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Mnt de l'Église, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a very creative sushi restaurant. Our team is very enthusiastic and motivated. The environment of the sushi restaurant is very comfortable and the customers are nice and generous. We hope you can join our team and grow together. Contact: 514-806-2598 or text // Nous sommes un restaurant de sushi très créatif. Notre équipe est très enthousiaste et motivée. L'environnement du restaurant de sushi est très confortable et les clients sont gentils et généreux. Nous espérons que vous pourrez rejoindre notre équipe et grandir ensemble. Contact : 514-806-2598 ou SMSJob Types: Full-time, Part-timePart-time hours: 40 per weekSalary: $15.25-$19.00 per hourBenefits:Store discountDay range:Monday to FridayWeekends as neededShift:4 hour shift8 hour shiftAbility to commute/relocate:L'Île-Bizard, QC: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Montée De L'église, L'ile-bizard, QC\"\n        },\n        {\n            \"id\": \"73ED46749991904DCC7FBE95B26E7226\",\n            \"cityName\": \"St. John's, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0bdfad15148152cf\",\n            \"jobName\": \"Customer Service Agent Outbound (Remote) - Newfoundland\",\n            \"companyName\": \"National Diabetes Trust\",\n            \"rowSalary\": \"$15.63 an hour\",\n            \"date\": 1694454849334,\n            \"dateOfPosted\": 1694240108708,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our Organization The National Diabetes Trust is Canada’s largest charitable clothing and small household good collection service. With more than 5,000 donations bins and an active home pick-up service in communities across Canada (excluding Quebec), we collect unwanted gently used clothing and household items, using them to raise much-needed funds for Diabetes Canada.  Each year, the program diverts more than 100 million pounds of clothing and household items from landfill sites across Canada. As an employee on the National Diabetes Trust team, you are part of our national coverage in 2,500 communities, with 28 operations and 100 trucks. Join a team that is making a difference raising money for life altering charitable programs, all while helping the environment. What We Offer:Work from the comfort of your own homeEmployee Assistance Program (EAP)Registered Pension Plan (100% Employer-paid) once eligibility criteria are metCorporate discounts through Perkopolis, Value Village and GoodLife FitnessHours of Work* This role will work up to 29 hours per week in 6-hour daily time blocks, including weekends. A consistent schedule will be developed in collaboration with operational needs.  About the Outbound Customer Service Agent Role Reporting to the Virtual Contact Centre Supervisor, this role is responsible for soliciting, scheduling and confirming donation pick ups of reusable clothing and small household goods from the public. While there is no sales component to this role – we are seeking outgoing individuals with a focus on providing a “best in class” customer experience. Highlights of the role include:To solicit, schedule and/or confirm donations of reusable clothing and miscellaneous itemsThis is accomplished by reading from a standardized script to verify donor informationTo meet or exceed KPI targets and/or productivity standards as outlined by the SupervisorTo understand and promote the mission of Diabetes Canada and the National Diabetes Trust to the general publicProvide potential donors with a high level of customer service by demonstrating a professional manner, discipline and strong organizational skillsInform the Supervisor of any system or process discrepanciesMaintain accurate and up to date recordsAttend all scheduled shifts, training, and meetings as determined by the SupervisorMaintain confidentiality of donor informationAdditional duties as required, ensuring the effective operation of the Virtual Contact Centre function About You The selected candidate for this role will meet the following minimum requirements: Minimum High School Diploma6+ months of experience in customer service and/or a call centre environmentMust have in working order at all times a PC home computer, direct connect (wired) high speed internet (no Wi-Fi/router), a USB noise cancelling headset, and either an All-in-One Printer (copier, scanner, printer) OR the ability to sign documents electronically.Must have full availability between the hours of Monday-Friday 3pm-9pm EST and Saturdays and Sundays 11am -5pm EST.Strong computer skills and experience with computer databases (mouse, keyboarding, opening/closing programs, locating files, installing/uninstalling programs, updating software, basic troubleshooting)Intermediate web and email skills (internet, downloading, logging on/off, clearing history, sending, and receiving email messages, (attaching/saving/opening files), message boards, instant messagingDisciplined and organized self-starter who can succeed in a fast-paced, high volume call environment, while being able to manage multiple tasksBasic competency in Microsoft Office and AdobeAdvanced Oral and Written communication -  Diversity, Equity and Inclusion Statement At National Diabetes Trust, we are guided by our values of Accountability, Teamwork, Integrity, and Respect. We believe in the importance of Diversity, Equity and Inclusion (DEI). We are committed to bringing people together in a respectful, inclusive and supportive environment, no matter their age, gender, identity, race, ethnicity, religion, income, sexual orientation, or where they live. In July of 2020, we signed the BlackNorth Initiative CEO pledge and will hold ourselves accountable in meeting those commitments.  How to Apply Must be legally eligible to work in Canada and, where applicable, must have a valid work permit or study permit that allows the candidate to fulfill the requirements of the role.NDT welcomes applications from all qualified candidates, including women, Indigenous peoples, persons with disabilities, and members of visible minorities. We value a diverse workforce that reflects the communities we serve.We are committed to accommodating people with disabilities as part of our hiring process. If you have special requirements, please advise us during the recruitment process.We thank all interested applicants; however, only those selected for an interview will be contacted. INDNDTL\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"C7DFB8B9E344F410FC43CBAD6F54A0F0\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2200bd8f66ae77b2\",\n            \"jobName\": \"Customer Service Representative Supervisor\",\n            \"companyName\": \"Link Insurance\",\n            \"rowSalary\": \"$31 an hour\",\n            \"date\": 1694454078978,\n            \"dateOfPosted\": 1693605467308,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 31.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    31.0\n                ],\n                \"range\": {\n                    \"gte\": 31.0,\n                    \"gt\": null,\n                    \"lte\": 31.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College/CEGEPExperience: 2 years to less than 3 yearsTasks Conduct performance reviews Co-ordinate, assign and review work Establish work schedules and procedures and co-ordinate activities with other work units or departments Identify training needs and train workers in job duties and company policies Resolve work-related problems and prepare and submit progress and other reportsWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"BE0E594CEFAB9F8DCD6999EDAEA9AD26\",\n            \"cityName\": \"1235 Trafalgar Road, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=711a9eb6f5035ee2\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Lifemark Health Group\",\n            \"rowSalary\": \"$18–$19 an hour\",\n            \"date\": 1694453963800,\n            \"dateOfPosted\": 1693605602886,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4869976,\n                    \"lon\": -79.7183412\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Trafalgar Rd, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title: Customer Service Representative Location: Lifemark - pt Health - Trafalgar Physiotherapy  1235 Trafalgar Rd.  Oakville, Ontario  Employment Status: Casual Part-Time or Full-Time  Schedule: Tuesday and Thursday (13:30 - 20:00) and Friday (08:00 - 17:00)  Rate Compensation: $18.00 - $19.00 per hour Do you want flexibility in your work schedule and work alongside a driven team of industry experts? If so, join us at pt Health - Trafalgar Physiotherapy, a Lifemark Health Group company, Canada’s premier, largest, and most comprehensive healthcare management organization. We believe when you move better, you feel better. This is at the heart of everything we do, and we are seeking a Customer Service Representative who shares this same philosophy. At Lifemark, we walk the talk of our company's Core Values: “ We have fun,” We strive for simplicity,” We trust each other to do the right thing,” We go the extra kilometre” and “We belong here.” Why Lifemark? Opportunity to work with a multi-disciplinary team of clinicians and the satisfaction of being on a driven team Supportive and collaborative administrative team Competitive compensation with a positive and comforting work environment Pathways for management and corporate leadership Nationally recognized brand with a strong digital presence Diverse, stable, caseload with the flexibility to integrate pre-existing clients Qualifications & Core Competencies: High School Diploma, G.E.D. or equivalent Excellent customer service skills and telephone etiquette A high degree of organizational and multi-tasking skills in a busy and fast-paced work environment, preferably with 3-5 years of administrative work experience in the healthcare setting, is an asset. Computer savvy and data entry skills in a physiotherapy clinic are a definite advantage. Flexible and adaptable to change New Graduates are welcome to apply. Key Functions and Responsibilities: Answer telephone calls, greet patients and visitors upon arrival, and provide excellent customer service for all questions or concerns Coordinate a detailed and accurate information intake on the patient's first visit to the clinic and throughout their treatment plan. Assist patients with completing paperwork at the clinic to avoid errors and inaccurate information. Coordinate scheduling of patient appointments and maintain the patient’s medical record. Collect payment at the time of service Track coverage for all funding streams to ensure approval Complete data entry and billing Coordinate courier packages (in or outgoing) and process incoming and outgoing emails, mail and faxes. Provide administrative support to the Care Coordinator Manager and Clinic Director. Lifemark welcomes and encourages applications from people with disabilities. Accommodations are available on request for candidates taking part in all aspects of the selection process. Lifemark promotes equal employment opportunities for all job applicants, including those self-identifying as a member of the following groups: Indigenous peoples, Newcomers to Canada, and Visible minorities. Apply today! Visitwww.lifemark.ca/careers\",\n            \"location\": \"Trafalgar Road, Oakville, ON\"\n        },\n        {\n            \"id\": \"14C905506D806108922D853E947E6BAA\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=41ccaaea4f620ba5\",\n            \"jobName\": \"Représentant(e) Au Service à La Clientèle à Temps Partiel/Part-Time Customer Care Associate\",\n            \"companyName\": \"Lxrandco\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694453884699,\n            \"dateOfPosted\": 1694211477746,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"An English description will follow LXR est un détaillant omnicanal, socialement responsable, de sacs à main de marque de luxe et autres accessoires personnels. Depuis 2010, nous fournissons aux consommateurs des produits de luxe de marque authentifiés en promouvant leur réutilisation et en offrant aux consommateurs un moyen écologiquement responsable d’acheter des produits de luxe. Nous recherchons actuellement un(e) Représentant(e) au service à la clientèle pour notre siège social de Montréal. Le candidat retenu pour ce poste aura une maîtrise des politiques de service client de l'entreprise et sera bien formé à la connaissance des produits, enfin pouvoir offrir une assistance rapide et précise aux clients.Le générique masculin inclut le féminin et est utilisé sans aucune discrimination et uniquement dans le but d'alléger le texte* RESPONSABILITÉSFournir un excellent service client aux clients de LXR par téléphone, e-mail, chat en direct et  médias sociauxSe concentrer sur l'obtention de résultats clés tels que la satisfaction du client, la première résolution,  l'efficacité et les mesures de qualitéMaximiser les ventes en ligne et la fidélisation des clients par le biais de la communication  par téléphone, courrier électronique et chatFournir un excellent service d'assistance à la clientèle en ligneGérer la vérification des commandes pour éviter les fraudes et veiller à ce qu'elles soient  exécutées dans les délaisRésoudre les problèmes liés aux commandes en assurant la liaison entre le client et  les groupes internes/externes (logistique/entrepôt/production/partenaires en gros)Initier et assurer le suivi des rétrofacturations de créditRépondre aux demandes de renseignements généraux et sur les produitsSe tenir au courant des informations sur les produits et assister aux réunions de formation sur les  produits avant la saisonProcéder à différents suivis de dossiers dans les différents services afin d'assurer la  livraison des produits dans les délais impartisMettre à jour les différents fichiers de suivi pour s'assurer de la livrabilité des marchandisesAutres tâches connexes QUALIFICATIONSAu moins un (1) ans d'expérience dans un poste lié au service à la clientèleBilingue pour pouvoir servir nos clients anglophones (français et anglais, maîtrise de l'anglais requise)Une expérience ou une connaissance approfondie des marques de luxe est un atout.Expérience avec le(s) système(s) de billetterie est un atout (Gorgias)Excellentes compétences en communicationExcellente habileté à travailler en équipe et à communiquer avec ses pairsUne attitude polie, tact et amicaleBonne compréhension des besoins des clientsFortes compétences de motivationBonnes capacités de planification et d'organisationBon sens des priorités, capacité à gérer efficacement ses différentes tâches AVANTAGES SOCIAUX Environnement de travail agréableCondition de travail hybrideFavorise le recrutement interneRabais sur la marchandiseAccessible par les transports en commun (métro de Castelneau) CONDITIONS D'EMPLOITemps partiel, 20 heures par semainePossibilité d'un augmentation d'heures lors des temps des fêtes ou au besoinDois être disponible la fin de semaine au besoinContrat jusqu'à fin 2023 - LXRandCo, Inc. (LXR) is a socially responsible, digital-first omnichannel retailer of authenticated pre-owned luxury handbags and personal accessories. Since 2010, we have been providing consumers with authenticated branded luxury products by promoting their reuse and providing an environmentally responsible way for consumers to purchase luxury products. We are looking for a highly energetic, responsible, and experienced Customer Care Representative for our Montreal Headquarters. The successful candidate for this role will have a strong command of the company’s customer service policies and be well-trained in product knowledge that can be critical for offering quick and accurate assistance to customers. RESPONSIBILITIES Provide excellent customer service to LXR customers over the phone, e-mail, live chat, and social mediaFocus on delivering key results like customer satisfaction, first-time resolution, efficiency, and quality metricsMaximize online sales and repeat customers through phone/email/chat communicationProvide excellent online customer service supportManage verification of orders for fraud and ensure timely fulfillmentResolve order-related issues by liaising between clients and internal/external groups  (logistics/warehouse/production/wholesale partners)Initiate and follow up with credit chargebackAnswer product-related and general inquiriesKeep current with product information and attend pre-season product training meetingsProceed with different file follow-ups across departments to insure on-time product deliveryUpdate different tracking files for the deliverability of goodsOther related tasks QUALIFICATIONS At least one (1) year experience in a customer service-related positionBilingual to be able to serve our anglophone customers  (French & English, English fluency required)Experience with, or thorough knowledge of, luxury brands is an assetExperience with ticketing system(s) is an asset (Gorgias)Excellent communication and people skillsPolite, tactful, and friendly attitudeGood understanding of the needs of customersStrong self-motivatorGood planning and organizational skillsAbility to multi-task BENEFITS Fun working environmentHybrid working conditionsFavors internal recruitmentDiscount on merchandiseAccessible via public transportation (de Castelneau metro) EMPLOYMENT CONDITIONSPart-time, 20 hours per weekPossibility of increasing hours during the Holiday season or as neededMust be available on weekends as neededContract until end of 2023\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"3906F81538B643F9EE6889BCEB04D051\",\n            \"cityName\": \"4333 Aut 13, Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ad32725b77532384\",\n            \"jobName\": \"06h-14h Service à La Clientèle Jour/ Day Shift CusTomer Service 6am To 2pm\",\n            \"companyName\": \"Tim Hortons | 1550\",\n            \"rowSalary\": \"$15.25–$18.00 an hour\",\n            \"date\": 1694453884043,\n            \"dateOfPosted\": 1692747161335,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5911874,\n                    \"lon\": -73.72153039999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"A. Jean-Noël-Lavoie, Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Joins-toi à notre équipe en pleine expansion!Chez Tim Hortons, notre priorité est la satisfaction de notre clientèle! Que ce soit au comptoir avant ou en cuisine pour préparer les pâtisseries que nos invités adorent, tu auras l’occasion d’offrir une expérience exceptionnelle à chacun de nos invités. Pourquoi travailler avec nous? Horaires flexibles et variables (Possibilité de travailler à temps plein ou à temps partiel) Rabais 50% sur les produits Tim Hortons Beaucoup de potentiel de développement et d’avancement Formation complète Programme de bourses d’études Équipe Tim Hortons Environnement de travail stimulant REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles Posséder un bel esprit d’équipe et avoir un sens d’empressement au travail / Have a team spirit and being able to work in a fast paced environement Notre grand rêve ne peut être réalisé qu’en nous entourant de personnes rares et spéciales qui veulent réussir avec nous. Nous sommes guidés par les valeurs suivantes : Méritocratie: Votre croissance est entièrement basée sur ce que vous faites et comment vous le faites Créativité: Trouver des façons de faire les choses différemment pour les rendre meilleures Travail d’équipe : Nous ne pouvons gagner ensemble qu’en dépendant les uns des autres Authenticité: Être une bonne personne, travaillante Diversité : Un large éventail de voix et de perspectives nous rend plus forts L’entreprise est dirigée par des leaders passionnés qui ont à cœur le développement et le bien-être de leurs employés. Notre priorité est de créer un environnement de travail où les membres de l’équipe sont encouragés à s’entraider, à se valoriser mutuellement à travers diverses opinions afin que nous puissions collectivement gagner en tant qu’équipe. Rejoignez une équipe gagnante, rejoignez-nous afin que nous puissions nous rejoindre dans notre voyage pour réaliser notre grand rêve! Ce sont les gens chez Tim qui font que Tim est… Tim! En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Aut, Laval, QC\"\n        },\n        {\n            \"id\": \"F3EE74DF4E18A894FC5F09083516A14D\",\n            \"cityName\": \"Cranbrook, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d7b7c25769547439\",\n            \"jobName\": \"Customer Service Representative - Financial Services\",\n            \"companyName\": \"Speedy Cash Canada\",\n            \"rowSalary\": \"$18.75 an hour\",\n            \"date\": 1694453452807,\n            \"dateOfPosted\": 1693605474419,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.5129678,\n                    \"lon\": -115.7694002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cranbrook\",\n                \"formattedAddress\": \"Cranbrook, BC V1C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"East Kootenay\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cranbrook\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsHealth benefits Dental plan Health care plan Paramedical services coverage Vision care benefits Financial benefits BonusWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Cranbrook, BC\"\n        },\n        {\n            \"id\": \"9ADAFB1EF24B6BB59E4BB14CEEFCA6EB\",\n            \"cityName\": \"790 Boul Crémazie E, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d0c984e420479c0a\",\n            \"jobName\": \"Caissier, Caissière Service à La Clientéle / Cashier Customer Service\",\n            \"companyName\": \"Tim Hortons | Damsar, Inc.\",\n            \"rowSalary\": \"$15.25–$16.25 an hour\",\n            \"date\": 1694452820143,\n            \"dateOfPosted\": 1692747498970,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5545221,\n                    \"lon\": -73.6209598\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Boul Crémazie E, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Primes de nuit Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement As a Team Member at Tim Hortons, your top priority is guest satisfaction. Whether you are the very first person our guests encounter, or produce the best loved bakery items that our guests come to enjoy, you will have the opportunity to deliver and create exceptional guest experiences. Your energy and passion for guest service are what make you a top team member in this fast-paced environment while your ability to multi-task and communicate with your fellow team members will contribute to your success. Why work for us? Night Shift Premium $ Paid Training Flexible schedule Scholarship Program Opportunities Amazing growth opportunities! REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder une esprit d’équipe et avez un empressement au travail / Have a team spirit and being able to work in a fast paced environement Faire parti de l'équipe / Be part of the team Être une personne ponctuelle et prête à travailler / Able to be on time and ready to work Être capable de lever 25 livres / Must be able to lift 25 lbs En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Crémazie, QC\"\n        },\n        {\n            \"id\": \"AC9F6D66FCB3790BBC7E62ED40614A02\",\n            \"cityName\": \"700 3rd Line, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7e2d2b54e89e1ddb\",\n            \"jobName\": \"Customer Service/Administrative Assistant\",\n            \"companyName\": \"Beauty First\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694451160382,\n            \"dateOfPosted\": 1694451160197,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4283542,\n                    \"lon\": -79.73036499999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Third Line, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OverviewBeauty First Spa is committed to giving our guests an inclusive, unique experience at every visit to one of our spas. The happiness of our guests is our priority, and it’s what keeps our guests coming back to us. Our employees build meaningful relationships with each one of our guests to ensure we are always prioritizing their needs.Major ResponsibilitiesDo admin duties like filing and updating POS system· Engage in incoming and outgoing calls to Pre-book future appointments.· Answering phones and working different shifts and weekend.· Learn about the products inside and out to be able to answer any questions from customers.· Resolve customer complaints/queries via phone, email, mail, or social media (Google, Facebook, Instagram, Whatsapp)· To handle multiple tasks and Utilize computer technology to manage day to day business.· Various administrative duties as required.· Flexibility in hours (Evenings/Weekends)Experience & Skills RequiredHigh-school diploma.Excellent verbal and written communication skills.Passion for finding solutions and providing the best possible customer experience.* Must have proficiency in Excel*· Ability to multitask and communicate with multiple customers at one time.Extremely strong conversational phone skills.Minimum 1-year customer service-related experience.Job Type: 1 Part-time applicant & 1 Full Time applicant requiredSalary: $17.00 per hourJob Types: Full-time, Part-timeSalary: From $17.00 per hourSchedule:8 hour shiftEvening shiftMonday to FridayMorning shiftWeekends as neededAbility to commute/relocate:Oakville, ON L6L 4B1: reliably commute or plan to relocate before starting work (preferred)Education:Secondary School (preferred)Experience:Front desk: 1 year (preferred)Administrative experience: 1 year (preferred)Work Location: In person\",\n            \"location\": \"rd Line, Oakville, ON\"\n        },\n        {\n            \"id\": \"BFB5BAC99CA156632A8E5134D53D8338\",\n            \"cityName\": \"AGM Advantage in North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=91d6f4173261a763\",\n            \"jobName\": \"Entry Level Sales, Marketing And Customer Service\",\n            \"companyName\": \"Agm Advantage\",\n            \"rowSalary\": \"$650–$700 a week\",\n            \"date\": 1694450546240,\n            \"dateOfPosted\": 1694348466573,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 650.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    650.0\n                ],\n                \"range\": {\n                    \"gte\": 650.0,\n                    \"gt\": null,\n                    \"lte\": 650.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Entry Level Sales, Marketing and Customer Service in North YorkThis is NOT a remote positionLooking for an entry-level position that combines sales, marketing and customer service?Look no further. Submit your resume here for immediate opportunities!Benefit from our comprehensive training and full mentorship.AGM Advantage is a winning team of highly motivated business professionals! With our expansive background in marketing and business development, we create the most impressive campaigns for our world-class business and nonprofit clients! Our staff and team members can most definitely build on our expanding reach for a brighter personal and professional future.We specialize in direct marketing strategies. We offer entry-level positions only and solely promote from within.This is a triple-edged entry-level position that is available now.Apply Today!Entry Level Sales, Marketing and Customer Service in North YorkThis is not a remote positionJob requirements:Over 18 years oldSpeak good EnglishHolder of HS Diploma or higherCitizen, resident or authorized to work including international students studying in CanadaAble to commute to work to any of our locationsRecommended SkillsBusiness DevelopmentCoaching And MentoringDirect MarketingEnglishMarketingCampaignsThink you're the perfect candidate? Apply to this job.Apply NowJob Type: Full-timeSalary: $650.00-$700.00 per weekFlexible Language Requirement:French not requiredSchedule:Day shiftSupplemental pay types:Bonus payAbility to commute/relocate:North York, ON M2N 6N5: reliably commute or plan to relocate before starting work (required)Application question(s):Are you at least 18 years old?Language:English (required)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"7016B7DA34FCE8064AB029F3E6D66622\",\n            \"cityName\": \"1751 Savage Road, Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c67e265d969355d2\",\n            \"jobName\": \"Telephone Sales Representative\",\n            \"companyName\": \"Marina's Swim School\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694450197719,\n            \"dateOfPosted\": 1692746333884,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2013007,\n                    \"lon\": -123.0579864\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Savage Rd, Richmond, BC V6V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Savage Rd, Richmond, BC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Sales Representative duties and responsibilitiesAssisting customers in their questions about Marina Swim School programsMaking service suggestions according to the wants and needs of customersLocating prospective customers, generating them into leads, and eventually converting them into customersMeeting or exceeding weekly, monthly, and quarterly sales quotasUsing strong research skills and deep product or industry knowledge to answer any questions about the productPreparing and submitting weekly sales or inventory reports to managementKeeping contact lists and following up with current customers to continue building relationshipsSales Representative skills and qualificationsDemonstrated product knowledge and sales abilitiesCustomer service skills to listen to customers and professionally answer questions or address concernsStrong public speaking skills to present product or services to customersCommunication skills to confidently make cold calls or negotiate sales termsAbility to meet deadlines and sales quotasFamiliarity with an office environment, equipment, and softwareJob Type: Part-timePart-time hours: 15-25 per weekSalary: From $16.75 per hourBenefits:Dental careExtended health careOn-site parkingVision careSchedule:Day shiftEvening shiftMonday to FridaySupplemental pay types:Bonus payCommission payCOVID-19 considerations:Now we are working by COVID Safety Plan.Ability to commute/relocate:Richmond, BC V6V 1R1: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:Sales: 2 years (required)Customer service: 2 years (required)Language:English (perfect) (required)Licence/Certification:Driver License (required)Work Location: In person\",\n            \"location\": \"Savage Rd, Richmond, BC\"\n        },\n        {\n            \"id\": \"98513F97CDF9818BD2CF8BA4BD5DA376\",\n            \"cityName\": \"51 Roysun Rd, Woodbridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4cd4e27d62ce4030\",\n            \"jobName\": \"Part-Time Seasonal Administration/Photographer With Customer Service Skill\",\n            \"companyName\": \"Cento Photography\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694450021391,\n            \"dateOfPosted\": 1692744516826,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7689909,\n                    \"lon\": -79.6091938\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Roysun Rd, Vaughan, ON L4L, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About Us:Cento Photography specializes in capturing memorable moments for schools and students through professional photography services. We are currently seeking a talented and dedicated individual to join our team as a Part-Time Seasonal Administration/Photographer. If you are passionate about photography, possess excellent customer service skills, and are available to work during our peak seasons, we want to hear from you.Job Description:As a Part-Time Seasonal Administration/Photographer, you will play a vital role in ensuring the smooth operation of our school photography sessions while delivering exceptional customer service. This position is perfect for someone who enjoys working in a dynamic environment and has a keen eye for both administrative tasks and photography.Responsibilities:Provide outstanding customer service to schools, teachers, parents, and students.Assist with administrative tasks such as data entry, scheduling, and document preparation.Capture high-quality product and lifestyle photographs that align with our brand identity.Edit and enhance photos using Adobe Photoshop to create visually compelling imagery.Design engaging graphics, layouts, and marketing materials using Canva and Adobe InDesign.Collaborate with the marketing team to develop visual content for various platforms, including social media, website, and marketing campaigns.Maintain an organized library of digital assets, including photos, graphics, and templates.Provide support during photoshoots, including set-up, lighting, and equipment management.Assist in maintaining and updating company databases and spreadsheets using Excel.Contribute to creative brainstorming sessions to develop new ideas and concepts for visual content.Available to work late as needed during peak photography seasons.Requirements:Strong customer service skills and the ability to interact professionally with diverse groups.Proven experience in administrative roles with strong organizational skills.Proficient in photography techniques, composition, and lighting.Advanced skills in Adobe Photoshop for photo editing and manipulation.Experience with graphic design using Canva and Adobe InDesign.Strong knowledge of Excel for data management and reporting.Excellent communication skills and the ability to work effectively in a team environment.Creative mindset with an eye for detail and aesthetics.Strong time management skills to handle multiple tasks and meet deadlines.Ability to work well in a team and independently.Flexibility to work late hours and adapt to changing schedules.If you are an enthusiastic individual with a passion for photography and exceptional customer service skills, we encourage you to apply for our Part-Time Seasonal Administration/Photographer position. Join us in creating lasting memories for schools and students.Job Types: Part-time, SeasonalSalary: $18.00-$20.00 per hourSchedule:Monday to FridayOvertimeAbility to commute/relocate:Woodbridge, ON L4L 8P9: reliably commute or plan to relocate before starting work (required)Experience:Adobe Photoshop: 2 years (required)Work Location: In personApplication deadline: 2023-09-05\",\n            \"location\": \"Roysun Road, Vaughan, ON\"\n        },\n        {\n            \"id\": \"24FEC233C0E5299C7BAE9B2CD65E33DA\",\n            \"cityName\": \"620 Davenport Rd, Waterloo, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=688a3387465517dd\",\n            \"jobName\": \"Customer Service/Sales Representative\",\n            \"companyName\": \"Rmes.Inc\",\n            \"rowSalary\": \"$620–$1,260 a week\",\n            \"date\": 1694450019611,\n            \"dateOfPosted\": 1693605635141,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4984806,\n                    \"lon\": -80.5243505\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Waterloo\",\n                \"formattedAddress\": \"Davenport Rd, Waterloo, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Waterloo\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 620.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    620.0\n                ],\n                \"range\": {\n                    \"gte\": 620.0,\n                    \"gt\": null,\n                    \"lte\": 620.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"This is an Entry-Level Sales Position. Do not be hesitant to apply if you are interested in gaining a lot of experience in Sales and Customer Service!About Us:Rmes Inc. has been one of the fastest-growing companies in the Kitchener-Waterloo region filled with lots of room for growth. We take pride in our integrity, professionalism, follow-through, and intense desire to educate, equip, and empower future generations. These qualities are what really set us apart from our competitors. We are actively seeking Sales Representatives since we plan to establish and launch additional branches in order to double, triple, and, quadruple in size over the next few years.We are looking for experienced and motivated Sales Representatives to join our team. The successful candidate will be responsible for developing and maintaining relationships with customers, understanding customer needs, and providing solutions to meet those needs. The Sales Representative will also be responsible for generating leads, managing customer accounts, and closing sales. The ideal candidate will have excellent communication skills, high energy, drive, and a passion for helping customers.Responsibilities:Develop and maintain relationships with customers.Develop sales strategies and tactics to increase sales.Understand customer needs and provide solutions to meet those needs.Handle customer inquiries and complaints in a professional manner.Provide accurate information to customers about products and services.Maintain accurate records of sales activities.Keep a positive outlook and behave professionallySkills and Qualifications:AdaptabilityStrategic and Critical ThinkingTime ManagementOrganizationCommunicationLeadershipActive ListeningProblem SolvingTeam WorkResilienceHigh Work EthicsMaintain Personal HygieneHighly Motivated and DisciplinedOur Motto: Success doesn't come to you; YOU GO TO IT!Our Website: Rmes-org.caOur Instagram: Rmes_Inc.Job Type: Full-timeSalary: $620.00-$1,260.00 per weekBenefits:Company eventsFlexible scheduleOn-site parkingFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payAbility to commute/relocate:Waterloo, ON N2V 2C2: reliably commute or plan to relocate before starting work (preferred)Application question(s):Do you currently reside in Canada?Are you Looking for Full-Time?Are you at least 18 years of age?Experience:Customer service: 1 year (preferred)Licence/Certification:Driving Licence (preferred)Work Location: In person\",\n            \"location\": \"Davenport Road, Waterloo, ON\"\n        },\n        {\n            \"id\": \"4F7CBC78D1F907DFA0A44981942576CE\",\n            \"cityName\": \"Surplus Herbys in Kamloops, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=11cdc1ef107434d8\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Surplus Herbys\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694449943836,\n            \"dateOfPosted\": 1692745777824,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.674522,\n                    \"lon\": -120.3272675\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kamloops\",\n                \"formattedAddress\": \"Kamloops, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Thompson-Nicola\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kamloops\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Successful candidates will be responsible for stocking shelves, merchandising, and providing excellent customer service. We have openings available in our fishing department. Knowledge of fishing would be a great asset. In return we offer health and dental benefits, profit sharing, employee discount and opportunities for advancement. Applicants must be reliable and be able to work most weekends and have a positive attitude. Come join the fun Herby team!Job Types: Full-time, Part-timePart-time hours: 20-30 per weekSalary: From $16.75 per hourBenefits:Dental careOn-site parkingStore discountVision careDay range:Every WeekendHolidaysMonday to FridayWeekends as neededShift:8 hour shiftDay shiftWork setting:Department storeCOVID-19 considerations:We offer curbside pickup and we do regular sanitizing of the store.Experience:sales: 1 year (preferred)customer service: 1 year (preferred)Work Location: In personExpected start date: 2023-11-09\",\n            \"location\": \"Kamloops, BC\"\n        },\n        {\n            \"id\": \"61027D27AAE535DF5F1AD62203468285\",\n            \"cityName\": \"Niagara-on-the-Lake, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0d97b5fd43b10452\",\n            \"jobName\": \"Inside Phone Sales\",\n            \"companyName\": \"Empowerment Technologies Inc.\",\n            \"rowSalary\": \"$23–$25 an hour\",\n            \"date\": 1694449799077,\n            \"dateOfPosted\": 1694449798844,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2549988,\n                    \"lon\": -79.0772616\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara-on-the-Lake\",\n                \"formattedAddress\": \"Niagara-on-the-Lake, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Niagara-on-the-Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"**This role is in office within our Niagara-on-the-Lake site.**Who We Are:For 20 years, we’ve been leaders in the baby safety (Levana) and DIY security space (Defender), creating ground-breaking consumer electronics that bring peace of mind to millions of people all over the world. Selling directly through our brand websites, Amazon, and our retail partners such as Walmart, Costco, and Home Depot, we are growing fast and are looking for new team members to join us on this journey. For those looking to join a passionate and collaborative team that challenge conventional methods, take risks, and settle for nothing but excellence, you’ve found the right place!Who Are You?You are a fast paced, results driven, and experienced Inside Salesperson with a successful sales track record, you have a high degree of self-motivation and resilience within a sales environment. Using your strong interpersonal skills and entrepreneurial mind set, you strategically use various contact methods to maximize your communication efforts and close sales. This role operates out of our Head Office in Niagara-on-the-Lake.Perks of This Role:Full time, 40 hours per weekScheduled shifts are days, Monday – Friday with weekend availability requiredWage is $23.00-$25.00 per hourImmediately receive 2 weeks vacation (no waiting period)Comprehensive Health Benefits program after 60 daysWork in an office environment (we are NOT a call centre)50% product discount for friends and familyWork directly for the brand owners and not a 3rd partyBe involved in new product testingQualifications:1 year of sales experience with a high focus on sales targets and customer engagementStrong attention to detail and ability to multitaskExcellent organizational, time management and communication skillsFlexible/creative approach to problem solving with the ability to simplify/detangle issues to their core factorsEmotional Intelligence: self-awareness - have a strong desire to develop and improve yourself and know when to seek out expertise; self-regulation - knowing when to push and when to stop; motivation – remain motivated while creating a strong desire to achieve in others; empathy – understand and care about people’s current reality; social skills – understand people, develop trust and help themHigh School Diploma (OSSD)Our Core ValuesExcellence - We never settle for “good enough.Results - The path to success is paved with our dedication.Love - Challenges are no match for our hearts and minds.Learning - Experimentation and curiosity are part of our DNA.Simplicity - We strip away the non-essentials to get to what really matters.Job Types: Permanent, Full-timeSalary: $23.00-$25.00 per hourBenefits:Casual dressDental careExtended health careOn-site parkingPaid time offStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededCOVID-19 considerations:COVID-19 vaccination is required. We have put measures in place, such as daily office sanitization, socially distant desk spaces, and providing masks.Ability to commute/relocate:St. Catharines, ON: reliably commute or plan to relocate before starting work (required)Experience:phone sales: 1 year (required)B2B sales: 1 year (required)Work Location: In person\",\n            \"location\": \"Niagara-on-the-Lake, ON\"\n        },\n        {\n            \"id\": \"8F67D040EDA330DC5484E84AB53B4D51\",\n            \"cityName\": \"127 Rte Du Canton, Brownsburg-Chatham, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b616d58b25277bc8\",\n            \"jobName\": \"22h-06am Service à La Clientèle Nuit/ Night Shift CusTomer Service 10pm To 6am\",\n            \"companyName\": \"Tim Hortons | 1550\",\n            \"rowSalary\": \"$15–$20 an hour\",\n            \"date\": 1694449726211,\n            \"dateOfPosted\": 1692747500557,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6256958,\n                    \"lon\": -74.4637136\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mont-Tremblant\",\n                \"formattedAddress\": \"Rte du Canton, Argenteuil, QC J0V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laurentides\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mont-Tremblant\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Nous sommes présentement à la recherche de candidats pour un poste de service à la clientèle pendant les heures de 22h-6h En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement Exemples d’expérience antérieure : Pas d’expérience, pas de problème, juste avoir une bonne attitude ! Barista chez Starbucks Caissier ou Caissière chez McDonald’s A travaillé dans n’importe quel Tim Hortons Cuisiner chez Wendys, ou a&w A travaillé dans n’importe quel fast-food ou restaurant dans le passé en tant qu’aide de cuisine Nettoyage ou entretient dans un entrepôt comme Amazon, Costco, Super C Préparation des aliments chez Subway ou Freshii Expérience antérieure en tant que boulanger dans une boulangerie ou une pâtisserie Service à la clientèle chez Couche Tard ou dans un dépanneur, ou station service Premier emploi, à temps partiel ou à temps plein REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder un bel esprit d’équipe et avoir un sens d’empressement au travail / Have a team spirit and being able to work in a fast paced environement Disponibilités plusieurs jours de la semaine de 22h-6h /Available several evenings a week from 10pm to 6am Notre grand rêve ne peut être réalisé qu’en nous entourant de personnes rares et spéciales qui veulent réussir avec nous. Nous sommes guidés par les valeurs suivantes : Méritocratie: Votre croissance est entièrement basée sur ce que vous faites et comment vous le faites Créativité: Trouver des façons de faire les choses différemment pour les rendre meilleures Travail d’équipe : Nous ne pouvons gagner ensemble qu’en dépendant les uns des autres Authenticité: Être une bonne personne, travaillante Diversité : Un large éventail de voix et de perspectives nous rend plus forts L’entreprise est dirigée par des leaders passionnés qui ont à cœur le développement et le bien-être de leurs employés. Notre priorité est de créer un environnement de travail où les membres de l’équipe sont encouragés à s’entraider, à se valoriser mutuellement à travers diverses opinions afin que nous puissions collectivement gagner en tant qu’équipe. Rejoignez une équipe gagnante, rejoignez-nous afin que nous puissions nous rejoindre dans notre voyage pour réaliser notre grand rêve! Ce sont les gens chez Tim qui font que Tim est… Tim! En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Rte Du Canton, Brownsburg-Chatham, QC\"\n        },\n        {\n            \"id\": \"4078B96EFDB55B01DE5D177D40429909\",\n            \"cityName\": \"9712 153 Ave NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=da664a490574a4be\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Cloverdale Paint Inc\",\n            \"rowSalary\": \"$16–$17 an hour\",\n            \"date\": 1694449686428,\n            \"dateOfPosted\": 1694449686236,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5862898,\n                    \"lon\": -113.402279\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Henry Ave NW, Edmonton, AB T5A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cloverdale Paint is the largest family owned and operated paint company in North America. With over 70 Company stores and 150 Authorized Dealers across Canada, Cloverdale Paint has had a special relationship with its customers ever since the company was founded in 1933.Cloverdale Paint is seeking an ambitious individual for a full-time position with open availability at our store in Edmonton, AB.We are looking for someone to work approximately 4-5 shifts per week. Wage is negotiable depending on previous experience.We are accepting resumes in store at 9712-153rd Avenue, Edmonton, ABCloverdale offers a very competitive compensation package and strives to be the Place to Be not only for customers but employees as well.WHAT WE OFFERCompany paid benefits – Medical, Dental and VisionAnnual cost of living salary increasesProfit-sharing ProgramFamily Assistance ProgramStaff DiscountsComprehensive trainingA supportive and growth-oriented management teamA great work environment with collaborative and caring colleagueRESPONSIBILITIESAnswering basic customer inquiries in person and by phoneDetermining and recommending products to customers ensuring the customer is supplied with all items required for their projectTinting & shaking paint accuratelyKeying in sales and operating basic functions of the POS systemREQUIREMENTSAt least 1-year of Retail Sales and/or Paint Industry experienceAbility to lift up to 50lb regularlyAbility to stand for long periods of timeAbility to work in a fast-paced environmentExcellent customer service skillsAttention to detailGood communication skillsStrong problem solving skillsTeam playerStrong work ethic, with a can-do attitudeOur employees enjoy excellent work environments, respectful workplaces with credible leadership and receive fair remuneration and annual profit sharing. Be part of a Canadian family owned business and be valued, appreciated and respected!Job Types: Full-time, PermanentSalary: $16.00-$17.00 per hourBenefits:Casual dressDental careEmployee assistance programExtended health careFlexible scheduleOn-site parkingPaid time offProfit sharingStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftWeekends as neededAbility to commute/relocate:Edmonton, AB: reliably commute or plan to relocate before starting work (required)Application question(s):Are you capable of standing for long periods of time?Are you capable of lifting up to 50 lb regularly?Are you available to work 4-5 shifts per week?Experience:Customer Service: 1 year (required)Paint/Coatings: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Ave NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"8D8EC8B2EDA54EF8D0A304B31AB13628\",\n            \"cityName\": \"10406 184 Street NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2138c5fc777373a9\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Kms Tools & Equipment Edmonton West\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694449603089,\n            \"dateOfPosted\": 1694449602891,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.6065656,\n                    \"lon\": -113.3801256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"24a St NW, Edmonton, AB T5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"KMS Tools Edmonton West is looking for a Cashier to add to our team. Applicants must be dependable, friendly, detail oriented and focused on customer service. Ability to handle high volume of orders and customers. We are closed Sundays and Holidays. Working Saturdays is required. Competitive benefits offered.Job Types: Permanent, Full-timeSalary: From $15.00 per hourBenefits:Dental careOn-site parkingPaid time offStore discountDay range:Every WeekendMonday to FridayShift:8 hour shiftDay shiftApplication question(s):Are you currently working? If so - when would you be able to start?Do you have any schedule restrictions?What is your expected starting pay based on your experience?Experience:customer service: 1 year (preferred)Cashiering: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Street NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"5DB578B2CDF894231FDC6550ABC5B65C\",\n            \"cityName\": \"9255 Boul De L'acadie, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=62b0708c3dc8769f\",\n            \"jobName\": \"Caissier, Caissière Service à La Clientéle / Cashier Customer Service\",\n            \"companyName\": \"Tim Hortons | Damsar, Inc.\",\n            \"rowSalary\": \"$15.25–$16.25 an hour\",\n            \"date\": 1694449510385,\n            \"dateOfPosted\": 1692747503733,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5347495,\n                    \"lon\": -73.6620374\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Bd de l'Acadie, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Primes de nuit Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement As a Team Member at Tim Hortons, your top priority is guest satisfaction. Whether you are the very first person our guests encounter, or produce the best loved bakery items that our guests come to enjoy, you will have the opportunity to deliver and create exceptional guest experiences. Your energy and passion for guest service are what make you a top team member in this fast-paced environment while your ability to multi-task and communicate with your fellow team members will contribute to your success. Why work for us? Night Shift Premium $ Paid Training Flexible schedule Scholarship Program Opportunities Amazing growth opportunities! REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder une esprit d’équipe et avez un empressement au travail / Have a team spirit and being able to work in a fast paced environement Faire parti de l'équipe / Be part of the team Être une personne ponctuelle et prête à travailler / Able to be on time and ready to work Être capable de lever 25 livres / Must be able to lift 25 lbs En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Boul De L'acadie, Montréal, QC\"\n        },\n        {\n            \"id\": \"164385120546B81819F90488CE70E744\",\n            \"cityName\": \"6259 Andrews Loop SW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=be715a90d09bbe88\",\n            \"jobName\": \"Licensed Customer Service Associate\",\n            \"companyName\": \"Billyard Insurance Group\",\n            \"rowSalary\": \"$36,000–$42,000 a year\",\n            \"date\": 1694449333527,\n            \"dateOfPosted\": 1692745469978,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.4285626,\n                    \"lon\": -113.5884465\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Andrews Loop SW, Edmonton, AB T6W 1A4, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 36000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    36000.0\n                ],\n                \"range\": {\n                    \"gte\": 36000.0,\n                    \"gt\": null,\n                    \"lte\": 36000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Billyard Insurance Group (BIG) – Edmonton South is looking for a Licensed Customer Service Associate to join our brokerage. Billyard Insurance Group is a rapidly growing national insurance brokerage with over 70 locations across Canada. We’re also proud to have been recognized on Insurance Business Canada’s Top Brokerages list for the last two years and named one of Canada’s Top Growing Companies on the Globe and Mail’s Report on Business for the past 3 years.BIG Edmonton South is looking for a Customer Service Representative to join our growing team and provide excellent customer service to our clients. Our CSR position requires a relationship-oriented individual with strong organizational and analytical skills. You will need to be comfortable in a customer facing role with an emphasis on telephone and computer skills. If you have a strong track record in customer service, we encourage you to apply.Responsibilities:Support the management and sales team while providing a superior level of serviceAdminister, support, and complete policy changes within our company partner’s portals and websitesReview policies and recommend coverages based on individual consumer needsAdhere to the underwriting criteria set out by our broker partnersIf you enjoy occasionally selling policies we do not remove this function, but encourage you to do soCo-ordinate and follow up on client documentsQualifications:General Insurance Level 1 or greater license from the Alberta Insurance Council (AIC)2+ years of experience in a customer service or sales roleKnowledge of Personal and/or Commercial Lines on a proficient level is considered an assetExperience with insurance software (broker portals, customer management systems etc) is considered an assetFluency in a foreign language is an assetJob Type: Full-timeSalary: $36,000.00-$42,000.00 per yearBenefits:On-site parkingPaid time offSchedule:Monday to FridayLicence/Certification:Level 1 (or greater) General License from the AIC (required)Work Location: In person\",\n            \"location\": \"Andrews Loop SW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"A3C7BAF07D1323F13D7BA8B20C8E5821\",\n            \"cityName\": \"5984 Boul Cousineau, Saint-Hubert, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f9b00aa3021325cb\",\n            \"jobName\": \"Cook/Customer Service\",\n            \"companyName\": \"Chung Chun Rice Hotdog\",\n            \"rowSalary\": \"$15.25–$21.63 an hour\",\n            \"date\": 1694449295075,\n            \"dateOfPosted\": 1692737153955,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4819036,\n                    \"lon\": -73.39037859999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Longueuil\",\n                \"formattedAddress\": \"Bd Cousineau, Longueuil, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Longueuil\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OUVERTURE BIENTÔT CHUNG CHUN SAINT-HUBERT, QUEBEC5984 BOULEVARD COUSINEAU, SAINT-HUBERT, QCChungchun Rice Dog est une chaîne de cuisine de rue coréenne avec plus de 200 succursales dans le monde et les premiers à Montréal. Nous recherchons un membre enthousiaste de l'équipe qui se joindra à notre équipe et contribuera à faire croître la marque au Québec tout en profitant d’un environnement de travail agréable, d'horaires flexibles et d’une équipe incroyable. Nous avons pour objectif de leur offrir une expérience unique à nos clients en leur offrant un service de qualité et en leur faisant découvrir nos délicieux Kogos coréen.Recherche de caissier à temps-partiel.Description des tâchesExécuter tous les éléments selon les normes les plus élevées en suivant les recettes et les procédures du restaurantMaintenir les normes de propreté, de santé et sécurité du restaurantSuivre toutes les politiques et procédures opérationnellesMaintenir un niveau élevé de pratiques de sécurité alimentaireDoit travailler avec l'équipe et doit s'assurer du bon roulement du serviceDoit savoir repérer les problèmes et les résoudreDoit être autonome et proactifDiplômes et expérienceAimer le travail en équipe et avoir le sens des responsabilitésFaire du service client une prioritéAucune expérience nécessaire, expérience dans une cuisine est un atoutCompétencesCapacité à travailler en équipe tout en démontrant du leadershipCapacité à comprendre et à exécuter des instructions verbales et écritesCapacité à apprendre rapidementCapacité à parler la langue française, la langue anglaise est un plus, la languecoréenne est un plusCapacité à faire plusieurs tâches à la foisFaire du service client une prioritéExigences physiquesDebout pendant de longues périodesTravailler dans un environnement de cuisine chaudPousser, tirer, soulever ou porter occasionnellement jusqu'à 40 lbHoraires de travail/SalaireHoraire flexible, travail durant le matin et le soir, les jours de semaine et de fin de semaineTemps partielSalaire competitiveOPENING OF CHUNG CHUN, SAINT-HUBERT, QUEBECChungchun Rice Hotdog is a Korean street food chain with over 200 branches around the world. Since our opening in Canada in 2019, we now have branches in Toronto, Vancouver, Calgary and now opening our 2nd restaurant in Québec under Chungchun Kogo Coréen!We are looking for an enthusiastic team member who will join our team rank and help grow the brand in Québec while enjoying flexible hours!Duties and responsibilitiesContribute to making our customers’ day by greeting people, taking orders and preparing delicious KogosProcessing paymentsPackage take-out foodExecute all items to the highest standards following the restaurant’s recipes and proceduresMaintain cleanliness and health & safety standards of the restaurantFollow all operational policies and proceduresMaintain a high level of food safety practicesMust be available on certain holidaysQualifications and ExperienceEnjoy teamwork and having sense of responsibilityMake customer service a priorityNo experience needed, Experience in the kitchen is a plusSkills & FitAbility to work as part of a teamAbility to understand and carry out verbal and written instructionsAbility to learn quicklyAbility to speak French language, English language, Korean language is a plusPhysical RequirementsStanding for long periods of timeWorking in a hot kitchen environmentOccasional pushing, pulling, lifting or carrying up to 40lbSchedulePart-TimeFlexible hours, mixed shifts, days and evenings, weekends and weekdaysCompetitive salaryJob Type: Part-timeSalary: $15.25-$21.63 per hourSchedule:4 hour shiftDay shiftMonday to FridayMorning shiftWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Saint-Hubert, QC: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Boul Cousineau, Saint-Hubert, QC\"\n        },\n        {\n            \"id\": \"1354847C13A9DA009535615DB4F40BE9\",\n            \"cityName\": \"127 Rte Du Canton, Brownsburg-Chatham, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d630566cb5d5ce14\",\n            \"jobName\": \"14h-22h Service à La Clientèle Soir/ Evening Shift CusTomer Service 2pm To 10pm\",\n            \"companyName\": \"Tim Hortons | 1550\",\n            \"rowSalary\": \"$15–$20 an hour\",\n            \"date\": 1694449025811,\n            \"dateOfPosted\": 1692747110982,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6256958,\n                    \"lon\": -74.4637136\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mont-Tremblant\",\n                \"formattedAddress\": \"Rte du Canton, Argenteuil, QC J0V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laurentides\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mont-Tremblant\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Nous sommes présentement à la recherche de candidats pour un poste de service à la clientèle pendant les heures de 14h-22h En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement Exemples d’expérience antérieure : Pas d’expérience, pas de problème, juste avoir une bonne attitude ! Barista chez Starbucks Caissier ou Caissière chez McDonald’s A travaillé dans n’importe quel Tim Hortons Cuisiner chez Wendys, ou a&w A travaillé dans n’importe quel fast-food ou restaurant dans le passé en tant qu’aide de cuisine Nettoyage ou entretient dans un entrepôt comme Amazon, Costco, Super C Préparation des aliments chez Subway ou Freshii Expérience antérieure en tant que boulanger dans une boulangerie ou une pâtisserie Service à la clientèle chez Couche Tard ou dans un dépanneur, ou station service Premier emploi, à temps partiel ou à temps plein REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder un bel esprit d’équipe et avoir un sens d’empressement au travail / Have a team spirit and being able to work in a fast paced environement Disponibilités plusieurs jours de la semaine de 14h-22h /Available several evenings a week from 14-22 Notre grand rêve ne peut être réalisé qu’en nous entourant de personnes rares et spéciales qui veulent réussir avec nous. Nous sommes guidés par les valeurs suivantes : Méritocratie: Votre croissance est entièrement basée sur ce que vous faites et comment vous le faites Créativité: Trouver des façons de faire les choses différemment pour les rendre meilleures Travail d’équipe : Nous ne pouvons gagner ensemble qu’en dépendant les uns des autres Authenticité: Être une bonne personne, travaillante Diversité : Un large éventail de voix et de perspectives nous rend plus forts L’entreprise est dirigée par des leaders passionnés qui ont à cœur le développement et le bien-être de leurs employés. Notre priorité est de créer un environnement de travail où les membres de l’équipe sont encouragés à s’entraider, à se valoriser mutuellement à travers diverses opinions afin que nous puissions collectivement gagner en tant qu’équipe. Rejoignez une équipe gagnante, rejoignez-nous afin que nous puissions nous rejoindre dans notre voyage pour réaliser notre grand rêve! Ce sont les gens chez Tim qui font que Tim est… Tim! En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Rte Du Canton, Brownsburg-Chatham, QC\"\n        },\n        {\n            \"id\": \"7A9256B90528015CE568ADE3F74A4A18\",\n            \"cityName\": \"5800 Avenue Christophe-Colomb, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0f769f2133bf5b9a\",\n            \"jobName\": \"Caissier, Caissière Service à La Clientéle / Cashier Customer Service\",\n            \"companyName\": \"Tim Hortons | Damsar, Inc.\",\n            \"rowSalary\": \"$15.25–$16.25 an hour\",\n            \"date\": 1694448712446,\n            \"dateOfPosted\": 1692747502876,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5455115,\n                    \"lon\": -73.6189251\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Ave Christophe-Colomb, Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Primes de nuit Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement As a Team Member at Tim Hortons, your top priority is guest satisfaction. Whether you are the very first person our guests encounter, or produce the best loved bakery items that our guests come to enjoy, you will have the opportunity to deliver and create exceptional guest experiences. Your energy and passion for guest service are what make you a top team member in this fast-paced environment while your ability to multi-task and communicate with your fellow team members will contribute to your success. Why work for us? Night Shift Premium $ Paid Training Flexible schedule Scholarship Program Opportunities Amazing growth opportunities! REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder une esprit d’équipe et avez un empressement au travail / Have a team spirit and being able to work in a fast paced environement Faire parti de l'équipe / Be part of the team Être une personne ponctuelle et prête à travailler / Able to be on time and ready to work Être capable de lever 25 livres / Must be able to lift 25 lbs En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Avenue Christophe-Colomb, Montréal, QC\"\n        },\n        {\n            \"id\": \"93B077962C089E5B8D129665D12EC3DD\",\n            \"cityName\": \"69 Queen St E, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=02aafa7d74ed6618\",\n            \"jobName\": \"Entry Level Sales, Marketing And Customer Service\",\n            \"companyName\": \"Agm Advantage\",\n            \"rowSalary\": \"$650–$700 a week\",\n            \"date\": 1694447971101,\n            \"dateOfPosted\": 1693585376611,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6637879,\n                    \"lon\": -79.3278595\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Queen St E, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 650.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    650.0\n                ],\n                \"range\": {\n                    \"gte\": 650.0,\n                    \"gt\": null,\n                    \"lte\": 650.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Entry Level Sales, Marketing and Customer Service in TorontoThis is NOT a remote positionLooking for an entry-level position that combines sales, marketing and customer service?Look no further. Submit your resume here for immediate opportunities!Benefit from our comprehensive training and full mentorship.AGM Advantage is a winning team of highly motivated business professionals! With our expansive background in marketing and business development, we create the most impressive campaigns for our world-class business and nonprofit clients! Our staff and team members can most definitely build on our expanding reach for a brighter personal and professional future.We specialize in direct marketing strategies. We offer entry-level positions only and solely promote from within.This is a triple-edged entry-level position that is available now.Apply Today!Entry Level Sales, Marketing and Customer Service in TorontoThis is not a remote positionJob requirements:Over 18 years oldSpeak good EnglishHolder of HS Diploma or higherCitizen, resident or authorized to work including international students studying in CanadaAble to commute to work to any of our locationsRecommended SkillsBusiness DevelopmentCoaching And MentoringDirect MarketingEnglishMarketingCampaignsThink you're the perfect candidate? Apply to this job.Apply NowJob Type: Full-timeSalary: $650.00-$700.00 per weekFlexible Language Requirement:French not requiredSchedule:Day shiftSupplemental pay types:Bonus payAbility to commute/relocate:Toronto, ON M5C 1R8: reliably commute or plan to relocate before starting work (required)Application question(s):Are you at least 18 years old?Language:English (required)Work Location: In person\",\n            \"location\": \"Queen Street East, Toronto, ON\"\n        },\n        {\n            \"id\": \"8FCD2712DB5C289836BF537D05AA52F0\",\n            \"cityName\": \"1067 Ontario St, Stratford, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cdc6f11a039f21f2\",\n            \"jobName\": \"Customer Service And Sales\",\n            \"companyName\": \"Simplyfixit\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694447807026,\n            \"dateOfPosted\": 1692743846584,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.3711286,\n                    \"lon\": -80.96233149999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Stratford\",\n                \"formattedAddress\": \"Ontario St, Stratford, ON N5A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Perth County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Stratford\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"SimplyFixIT is a cell phone repair company. We specialize in the repair of all phone models, tablets and laptops. We are currently looking for an enthusiastic person who is able to learn and adapt to the situation at hand.We are looking for experienced person capable of sales and performing easy repairs such as screen replacement, battery replacement or normal diagnosis. Training will be provided just need to be able to adapt and learn.Work:Frequently communicating with customers - providing status updates of repairsQuickly diagnosing device issuesExplaining options for repair and pricingPerforming fast-paced repairsTicket updates for every repair.Opening & closing tillCleaning & organizing shopInventory count, making sure we have enough stock, placing ordersSkills & Experience Required:Repairing small devices such as cell phones, tablets, and computersAbility to communicate effectively and promote salesTroubleshooting computer software-related issuesExcellent customer service & communication skills.Minimum 1 year of sales experiencePosition details: Customer Service & Sale Rep - Permanent Full-Time or Part-TimeWould you like to be part of our team? Please send in your resume.Job Type: Full-timeSalary: $15.50-$16.50 per hourSchedule:8 Hour Shifts5 Days a weekExperience:Customer Service: 1 yearLanguage:English (Required)Work remotely:NoJob Types: Full-time, Part-timePart-time hours: 32 per weekSalary: $15.50-$16.50 per hourBenefits:Store discountSchedule:8 hour shiftEvery WeekendMonday to FridayWeekends as neededApplication question(s):Strong Communication Skills RequiredExperience:Customer service: 1 year (required)Work Location: In personExpected start date: 2023-09-04\",\n            \"location\": \"Ontario St, Stratford, ON\"\n        },\n        {\n            \"id\": \"1407218E52E6C6CCE53D035A0846F283\",\n            \"cityName\": \"Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bab489c95beff3ff\",\n            \"jobName\": \"Part Time Customer Service Associate\",\n            \"companyName\": \"Spence Diamonds\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694447685247,\n            \"dateOfPosted\": 1692744893717,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"How would you like to work with the happiest customers on earth? People in love are the happiest people on earth, and they’re also our everyday customers! Are you looking to add some sparkle to your career? If so, look no further! We are currently looking for our next dazzling gem to join our customer service team and the Spence family! Who we are… Founded over 40 years ago, Spence Diamonds is a proudly Canadian Company. We have grown and evolved over the years with a unique approach to becoming an industry leader in cut quality and the customer experience. We take shopping for an engagement ring to the next level - with open show cases, displaying top of the line designer prototypes, accompanied by an unparalleled diamond education. Since introducing Spence Artisan Created Diamonds, we are now blazing the way for reasonably priced, ethical and sustainable diamond choices! With unparalleled access to these diamonds, we truly are the best choice for our customers. Our people are the center stone of our business. Our mission is to deliver an exceptional customer experience in a fun and inclusive work environment while giving our people room to grow their careers and live the life they love. What we offer…Attractive compensation packagesAmazing employee, friends & family discounts on our productsA variety of Learning and Development resourcesSpecial gifts to celebrate employee work anniversaries, birthdays, and personal milestonesRegular celebrations & employee incentive programsTeam building events and activitiesOpportunity to grow within the companyContinuous on the job training, support and mentorshipThe role As a member of customer service team at Spence, you embody our culture and values by providing an exceptional customer experience. You have a passion for our products and are comfortable assisting with presenting valuable products and representing products with confidence.You are the backbone of our store. You promote accuracy within the store through exceptional process handling which includes data management, finances, task management. You professionally act as the first and last point of contact for our clients on the phone, through email and in person within the store. On any given day you’re handling all payments & transactions, answering incoming phone calls and emails, managing inventory counts, shipping & receiving, assisting in store maintenance and cleanliness, showroom upkeep, and supporting the Sales Consultants and Management. Most importantly you ensure our customers are top priority and are all given the full Spence experience.Greet every customer in a friendly manner and provide extraordinary customer service Offer sales support to our sales teams during busy periods and take customers through our showroom experience. Ability build rapport with clients and identify client needs through a sales approach.Inspect and process incoming jewelry repairs. Follow up with customers via phone or email regarding their repair orders. Complete quality checks and provide completed orders to customers at pickup, ensure that customers have a great experience.Answer all phone and email correspondences Cash handling and end of day processingAssist in coordinating the showroom appearance, merchandising and store tidiness.A few things we hope you have…You’re detailed oriented, have excellent time management skills and are willing to embrace a structured processYou have excellent time management skills and make great decisions about which work to prioritizeYou have strong problem solving, and conflict resolution abilitiesYou are energetic, outgoing and have strong customer relationship skillsYou have excellent verbal and written communication and are comfortable professionally communicating face to face, over the phone and in writing.You have at least a years’ experience working in a customer service environmentYou’re used to working with a computer and are willing to learn new technology and softwareYou have a minimum availability of 3 days a week, and of those 3 days at least 1 weekend dayBonus points if you have previous administrative or reception experienceCompensation $16.50/Hour\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"22C9B02B78F6ADCCF6B003AD287682B0\",\n            \"cityName\": \"3767 Strandherd Dr, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=32926df925643475\",\n            \"jobName\": \"Customer Service Advisor\",\n            \"companyName\": \"Mr. Lube - Barrhaven\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694447675946,\n            \"dateOfPosted\": 1692745144726,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.2700502,\n                    \"lon\": -75.747478\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Strandherd Dr, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Upper tech ad:Updated: August 19th 2023Location: 3767 Strandherd Dr, Nepean ONWe're not looking for someone who \\\"needs a job.\\\" We're looking for someone who can make a difference in our customers' experience, learn some skills and earn an income. Sales experience is preferred.Job Overview: Ready for a Change?Named one of Canada's Best Managed Companies & 10 Most Admired Corporate Cultures, Mr. Lube offers a fun work environment, competitive wages, and the best paid training and advancement program in the industry for our employees.Customer Service RepresentativeIn this role, you'll get to take full ownership over the complete customer experience. We will provide full training so you can confidently work directly on a customer's car and be in control of the entire customer service and sales cycle; from walking a customer through the services on a car to completing the tasks and sale.A Customer Service Representative at Mr. Lube spends:70% of their time providing Customer Service:Greeting customersDiscussing products and services with customersProviding recommendations based on vehicle assessmentsSuggesting new products and servicesWorking with a close knit team and communicating with Lower Technicians30% of their time completing Mechanical Duties:Oil and filter changesReplacement of vital car fluids (e.g. coolant, transmission, and transfer case fluid)Replacement of parts under the hood (e.g. air filters, headlights, taillights and wiper blade replacements)Refilling performance enhancers to ensure the car runs smoothly (e.g. engine stop leak, oil treatment, and valve cleaner)Performing courtesy checks on all vehicles (e.g. topping up fluid levels, cleaning windows and checking tire pressure)Performing tire changes and rotationsWhat else can you expect from a career at Mr. Lube?A fun environment with the best paid training in the industry Excellent employee incentives and recognition. With constant learning and growth opportunities. A company, management and team that cares. If you have a positive attitude, flexible availability, are driven to succeed, have a willingness to learn, and genuinely like interacting with people, put yourself in the driver's seat at Mr. Lube!Please contact:Denis GagneArea ManagerJob Types: Full-time, Part-time, PermanentPart-time hours: 22-44 per weekSalary: From $16.50 per hourExperience:service advisor: 1 year (preferred)Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Strandherd Dr, Nepean, ON\"\n        },\n        {\n            \"id\": \"EEF2ABC491BC655039503C7589E0AF19\",\n            \"cityName\": \"1000 Rue Legendre Ouest, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=166aa4452d6ac313\",\n            \"jobName\": \"Caissier, Caissière Service à La Clientéle / Cashier Customer Service\",\n            \"companyName\": \"Tim Hortons | Damsar, Inc.\",\n            \"rowSalary\": \"$15.25–$16.25 an hour\",\n            \"date\": 1694447675934,\n            \"dateOfPosted\": 1692747501284,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.53660929999999,\n                    \"lon\": -73.6519732\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Legendre O, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Primes de nuit Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement As a Team Member at Tim Hortons, your top priority is guest satisfaction. Whether you are the very first person our guests encounter, or produce the best loved bakery items that our guests come to enjoy, you will have the opportunity to deliver and create exceptional guest experiences. Your energy and passion for guest service are what make you a top team member in this fast-paced environment while your ability to multi-task and communicate with your fellow team members will contribute to your success. Why work for us? Night Shift Premium $ Paid Training Flexible schedule Scholarship Program Opportunities Amazing growth opportunities! REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder une esprit d’équipe et avez un empressement au travail / Have a team spirit and being able to work in a fast paced environement Faire parti de l'équipe / Be part of the team Être une personne ponctuelle et prête à travailler / Able to be on time and ready to work Être capable de lever 25 livres / Must be able to lift 25 lbs En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Rue Legendre Ouest, Montréal, QC\"\n        },\n        {\n            \"id\": \"0DBF7D86D5657D48198C5D93163AA0F5\",\n            \"cityName\": \"2800 Pasqua St N, Regina, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fbd6f673fd453388\",\n            \"jobName\": \"Customer Service/Inside Sales Representative\",\n            \"companyName\": \"Meridian Manufacturing Inc.\",\n            \"rowSalary\": \"From $40,000 a year\",\n            \"date\": 1694447449857,\n            \"dateOfPosted\": 1692744157584,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.4985405,\n                    \"lon\": -104.6410045\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Regina\",\n                \"formattedAddress\": \"Pasqua St N, Regina, SK, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": \"Sherwood No. 159\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Regina\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Meridian Mfg. Inc. is North America's innovative leader of all-welded smoothwall bulk storage and bulk seed tenders. Meridian's smoothwall hopper bins, tanks and silos are the premier choice for on farm storage of grain, feed and fertilizer and also in virtually all commercial bulk storage applications, including plastics, fertilizers, powders and liquids, chemicals and much more. Meridian's Bulk Seed Tender is the #1 choice by farmers and industry leaders as the safest and easiest method of handling and transporting bulk seed.Meridian is a member of The Westman Group of Companies, a dynamic entrepreneurial group who values safety, health, community, relationships, growth and fiscal responsibility.Meridian Manufacturing Inc., Regina, Saskatchewan has an opening for a Customer Service Representative.SummaryThis position is responsible for providing day to day support to dealers by processing orders from time of receipt to final delivery. This involves processing the necessary documentation and maintenance of dealer orders in the WERPS business system and other required information databases. They work together with the RSM’s, the Commercial Sales Team and the dealer network to achieve the annual sales budget through the promotion of Meridian products. They handle inbound sales queries, making sales, quoting and managing projects.ResponsibilitiesOrder entry into system for customer orders and booking programsTake all end user calls and direct them to a dealerTake all dealer calls and provide verbal quotes over the phone when necessary, or email quotesManage booking programs; this includes sending order confirmation letters, requesting post dated cheques, and managing the post dates cheques as they are receivedMonitor the backlog of all orders in Enterprise Management System to ensure that orders are being shipped and invoiced on timeHandle paperwork for customer pick-upsAssist and/ or provide support to team membersEducation and Knowledge Required:Strong Data Entry and Attention to DetailHigh level of proficiency with Word, Excel and OutlookExperience in agricultural, commercial and industrial sales an assetAbilities and CompetenciesAble to effectively communicate in English both verbally and in writingSolid negotiation and conflict resolution skillsExcellent teamwork and teambuilding skillsStrong problem identification and problem resolution skillsAdvanced communication and interpersonal skills requiredAccuracy, attention to detail, strong problem solving, analytical and reporting skillsAbility to handle multiple priorities and meet deadlines in a fast-paced environmentTime and priority management skills, ability to identify important/urgent information and prioritize daily tasksResourcefulness and ability to take the initiative to expedite and solve customer complaints, concerns and inquiriesCreativity and ability to continuously improve nature of work for projects and to streamline work process and flowJob Type: Full-timeSalary: From $40,000.00 per yearBenefits:Dental careDisability insuranceEmployee assistance programExtended health careLife insuranceOn-site parkingProfit sharingVision careWellness programSchedule:8 hour shiftDay shiftMonday to FridayAbility to commute/relocate:Regina, SK: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Pasqua St N, Regina, SK\"\n        },\n        {\n            \"id\": \"4E8D17F993770093C121085DA6B715D4\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cd831c09beaf8658\",\n            \"jobName\": \"Customer Service Fundraiser\",\n            \"companyName\": \"Inner Circle Marketing\",\n            \"rowSalary\": \"$17–$22 an hour\",\n            \"date\": 1694447344840,\n            \"dateOfPosted\": 1692738783357,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Inner Circle Marketing is looking for customer service fundraisers to support on-site and in-person community fundraising campaigns and create a significant social impact on behalf of charities and non-profit organizations.We offer the training and support necessary to ensure that as the newest member of our team, you achieve optimal results and enjoy a rewarding and fulfilling work experience. Our culture stands out as being one of inclusion, diversity, camaraderie, and equal opportunity. Our goal is to unlock your potential and allow you to do the best work of your life!Requirements:Authorization to work in CanadaSpoken English (Intermediate)Availability to work on-site (in-person)Availability to work 30 – 40hrs per weekCompletion of criminal record check (no major offences permitted)We are looking for:Experience in sales, fundraising, hospitality, or public relations is an asset but not required – we provide full, paid training!Effective communication skills and the ability to present information clearly.Quick learners with a great attitude, enthusiastic personality, and a desire to make a difference!Fun, Friendly, Personable, Outgoing People!What we offer:Full time employment position with guaranteed hourly wageHourly pay starting at $17 per hour, with hourly incentives up to $22 per hourNote we pay weeklyExtended health care benefits (after 3 months of full-time employment)Shifts available from Monday to FridayDaily training and continuous supportFor those who qualify and wish to advance we offer advancement within the companyCompetitive and fun team cultureOpportunities to travelExpectations:Participate in local awareness and fundraising campaigns in residential communities and/or high traffic points in the cityActivities include neighborhood canvassing, promoting our clients at mall kiosks, events, and a variety of other in-person (face-to-face) fundraising activitiesFundraise on behalf of some of Canada’s top non-profit organizations including the Canadian Red Cross, Plan Canada, BC Children’s Hospital, WWF, the Canadian National Institute for the Blind, and more!Be comfortable with daily one-on-one interaction with potential donorsBe open to receiving feedback and support from managementNext steps:When you apply, our team will review your application. If you qualify, our team will contact you via phone or email to arrange an initial in person interview. This interview will be a brief introduction to our company and the position. If the hiring managers feels you are a potential candidate for the position, we have a 2-step interview process. The 2nd interview will consist of a job shadow to give you a bigger picture on how represent our clients.Learn more about us through the link below:https://innercirclemarketing.ca/Equal Employment Opportunity StatementInner Circle Marketing is an equal opportunity employer and considers qualified applicants for employment without regard to race, color, creed, religion, national origin, gender, sexual orientation, gender identity and expression, age, disability, veteran status, or any other protected factor. We encourage talented individuals of all backgrounds to apply.We look forward to meeting you!Job Types: Full-time, Part-time, PermanentPart-time hours: 30-40 per weekSalary: $17.00-$22.00 per hourBenefits:Company eventsCompany pensionDental careExtended health careLife insuranceRRSP matchVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayNo weekendsSupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"CEC108A6382C869C8BC9E12F593B94B3\",\n            \"cityName\": \"264 Lincoln St, Lunenburg, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=14f93fa3125feadf\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Kinley Drug Co. Ltd.\",\n            \"rowSalary\": \"$14.75–$15.00 an hour\",\n            \"date\": 1694447139820,\n            \"dateOfPosted\": 1694447139632,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.377277,\n                    \"lon\": -64.3096741\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lunenburg\",\n                \"formattedAddress\": \"Lincoln St, Lunenburg, NS B0J 2C0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lunenburg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"cashierassisting customersstocking and cleaning product shelvesmaintaining inventoryJob Types: Full-time, PermanentSalary: $14.75-$15.00 per hourBenefits:Dental careDisability insuranceEmployee assistance programExtended health careLife insuranceStore discountVision careWork Location: In personApplication deadline: 2023-09-30\",\n            \"location\": \"Lincoln St, Lunenburg, NS\"\n        },\n        {\n            \"id\": \"4E71691042CC3BE4D75CB78DEE3ED04A\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d165ae26c1840c3f\",\n            \"jobName\": \"Customer Service RepresentAtive - Work At Home\",\n            \"companyName\": \"Inspire Direct Marketing\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694447132334,\n            \"dateOfPosted\": 1690621825979,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative - Work at Home$20.00-$24.00/hour + Benefits.Quit your day job, come help us save the world!If you are a mature sales or call centre representative, come join our team of professional fundraising agents to elevate your career and use your skills to help make our world a better place.We are a Canadian agency on a mission to inspire fundraising. We provide a warm and friendly voice to the largest and most respected charities in Canada. Our team is passionate, engaged and extremely effective. We call existing supporters to raise funds for important causes around the globe. So while there are no cold calls or high-pressure tactics, we are a performance team and results matter. We hope they motivate you as well.This is a full-time, outbound, work-from-home position.Job Description:Inspire fundraisers connect with, laugh with and uplift the lives of our client's donors - even if just for a few moments. Their work goes beyond raising funds for some of the world's most worthwhile causes; it's about creating a human connection with every donor. They enjoy being able to deliver world-class results autonomously, while representing great causes and being part of a passionate team.Each day and each call can be different. We find new child sponsors, welcome new donors, renew event participants, and invite donors to give monthly. We thank, connect, engage and inspire. We look for creative new ways to delight on every call. We are all about teamwork, customer connections and most importantly, having fun while we do it.Some of the Benefits:Permanent, full-time employment with consistent hours and growth opportunities Premium wages, $20.00 - $24.00 hourly w bonuses Engagement with world-class charitable organizations 100% paid training and health benefits (at 3 months) Trip incentives (to visit child sponsor communities), bonuses and rewards Training opportunities, lunch-and-learns, workshops Team culture and activities, ice breakers, community eventsTo be an Inspire Fundraiser:You should bring:A minimum of 2 years' customer service and call centre experience You love talking to people and are a great communicator You are looking for full-time hours, 40 hours a week Availability to work evenings (1:00PM - 10:00PM EST Mon -Thu, 10:00AM - 7:00PM EST Fri) Availability to work occasional Saturday shifts (10:00AM to 5:00PM) You are technically savvy and self-reliantYou should have:A professional work from home office space newer-version Windows PC or laptop computer (Apple or Mac are not supported) High-speed cabled internet connection (min 25 mbps down/5 mbps up) A USB headset and webcamIf you are looking to be part of something bigger than yourself and to join a mature call centre team with opportunities to grow and support your peers; we would love to hear from you.Inspire is committed to Employment Equity and Diversity. We do not discriminate against any employee or applicant for employment because of national origin, race, religion, ethnicity, age, disability, sex, sexual orientation, gender identity, veteran status or any other federal, provincial, or local protected class. We welcome and encourage applications from persons with disabilities. Accommodations are available upon request for candidates who participate in all aspects of the selection process.Please note: We thank everyone for their interest however only the best qualified candidates may be contacted.\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"CA53B7C833E16B51226DC83B3FE45959\",\n            \"cityName\": \"266 Dundas St E, Trenton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ce71d80b57955f41\",\n            \"jobName\": \"Budtender - Customer Service\",\n            \"companyName\": \"Your Local Cannabis\",\n            \"rowSalary\": \"$16.50–$18.00 an hour\",\n            \"date\": 1694447062043,\n            \"dateOfPosted\": 1692744638399,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.1044969,\n                    \"lon\": -77.5612999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Quinte West\",\n                \"formattedAddress\": \"Dundas St E, Quinte West, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hastings County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Quinte West\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usYour Local CannabisYour Local Cannabis is your neighborhood hub for the best and most extensive selection of locally grown, high-quality cannabis products in Ontario.Note: Weekend (Fri-Sun) availability required.Responsibilities:Greet customers throughout the day in a friendly and welcoming mannerAdhere to all company policies, procedures, and regulation compliance.Ensure reconciliation of inventory and following up on any discrepanciesProcess all customer payments on our POS system.Staying up to date with product knowledge and company information.Support and participate in store opening and closing checklists.Assuring all guest are over 19+ upon entrance of storeAbide by all applicable legal regulations and act as a socially responsible cannabis vendor.Assist with store maintaining and housekeeping including stocking shelves.Ensure the cleanliness of the store is maintained on a daily basisOther tasks as assigned by retail managementQualifications:19+ years oldOUTGOING PERSONALITY who enjoys customer serviceValid Cannsell certificate (must have before first shift)Pre employment criminal record check (must have before first shift)Able to lift 5-30 lbsAble to work flexible hours and weekendsPOS Software experience an assetAbility to work in a fast-paced environmentMust be a team playerExcellent written, oral, and interpersonal skillsAvailability for shift work any time between 9:00am to 11:30pm, Monday to SundayBasic skills in math and proficiency as a cashierExtensive knowledge of cannabis products and accessories is an assetWhat we’re looking forA passion for customer experience and cannabis.Previous retail/cashier experience (customer experience associate/greeter)Outgoing, personable and professional. We’re building relationships and trust with our clients and community.Comfortable working in a fast paced environment – good organizational and communication skills.Coachable.Leadership skills.Availability to work 12 hour shifts an asset.COVID-19 precaution(s):Social distancing guidelines in placeAll customers and employees required to wear masks inside storeSanitizing, disinfecting, or cleaning procedures in placeLicense/Certification:CannSell (Required for first day of work)Criminal Background ( Required for first day of work )Experience:Not requiredPart-time: 20 - 30 hours per weekFull-time: 40 hours per weekJob Types: Full-time, Part-time, PermanentSalary: $16.50 to $18.00 /hourJob Types: Full-time, Part-time, PermanentPart-time hours: 20-40 per weekSalary: $16.50-$18.00 per hourBenefits:Flexible scheduleOn-site parkingSchedule:10 hour shift12 hour shift8 hour shiftDay shiftEvening shiftHolidaysWeekends as neededSupplemental pay types:Overtime payAbility to commute/relocate:Trenton, ON K8V 5Z9: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Work Location: In personApplication deadline: 2023-09-09\",\n            \"location\": \"Dundas Street East, Quinte West, ON\"\n        },\n        {\n            \"id\": \"C7C30443A2F2FD4402C5BB47201DA81A\",\n            \"cityName\": \"1310 St James St, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1cfdf27a7d20384b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Carstar Manitoba\",\n            \"rowSalary\": \"$32,000–$40,000 a year\",\n            \"date\": 1694447019091,\n            \"dateOfPosted\": 1692739232863,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8973035,\n                    \"lon\": -97.20034720000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"St James St, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 32000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    32000.0\n                ],\n                \"range\": {\n                    \"gte\": 32000.0,\n                    \"gt\": null,\n                    \"lte\": 32000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CARSTAR Manitoba is hiring! We are currently seeking a customer service representative (CSR) to join our dynamic team in Gimli, Manitoba!As the first point of contact in the stores, the customer experience representative creates the first impression that customers and visitors will have when the call or walk in to our shops. This person is responsible for creating an environment that promotes friendliness, and a high level of service.As a CSR, you will be responsible for assisting with the daily operations of the store, and keeping paperwork up to date. You will be responsible for assisting the store managers and techs with keeping performance and productivity within the store at an exemplary level. The ideal candidate loves talking to people and proactively solving issues.Responsibilities:Communicate with customers via phone, email and chatProvide knowledgeable answers to questions about product, pricing and availabilityWork with internal departments to meet customer's needsData entry in various platformsUpkeep of overall cleanliness of the store/reception areaBooking in customers for repairsChecking in/out customer vehiclesOpening new work ordersInsurance/MPI claimsRetail salesOrdering partsPosting invoices, labour times, and payments into computerKeeping customers up to date with the repair processPreclosing and closing work ordersReceive and enter payments into the systemEnsuring the deposit book logs are accurate and entered dailyPrepare bank depositsEnsuring payroll is completed and submitted by the biweekly scheduleMake sure all jobs are closed for the end of the monthAssisting with cleaning vehicles for deliveryAssist Shop Manager with other tasks as requestedQualifications:Excellent phone etiquette and excellent verbal, written, and interpersonal skillsAbility to multi-task, organize, and prioritize workPost-secondary education or equivalent experience in customer serviceComfortable working on the computer in numerous programsComfortable working on the phonesExperience with MPI policies and procedures considered an assetExperience in the auto body industry an assetClass 5 Drivers licenseHighly organizedDetail orientatedWhy Choose CARSTAR?:Monday to Friday hoursFull benefits package after 3 monthsRRSP program after 1 yearCompetitive compensation based on experienceCareer planning and advancement opportunitiesPotential for full-time hoursIf you are seeking to advance your career by being part of a fast-growing company, we want to hear from you! Please send your resume and a brief cover letter to us at the link provided. We appreciate all applications we receive, however only candidates selected for an interview will be contacted.Job Types: Full-time, Part-time, PermanentSalary: $32,000.00-$40,000.00 per yearBenefits:Dental careEmployee assistance programExtended health careOn-site parkingRRSP matchVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayExperience:MPI: 1 year (preferred)Automotive Repair Shop: 1 year (preferred)Licence/Certification:Driving Licence (required)Work Location: In person\",\n            \"location\": \"St James St, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"8A601757F2C5F7EDD3CEE4D2ECFB0797\",\n            \"cityName\": \"478 Woody Rd, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8d6129f8d76598fd\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"U-Haul\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694446955153,\n            \"dateOfPosted\": 1662825088804,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.467517,\n                    \"lon\": -79.6876659\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"START TODAY, GET PAID TODAY! New hires eligible for BONUS!Are you a people person? Do you love helping others? U-Haul is in search of friendly, motivated people for the position of Customer Service Technician. As a Customer Service Technician, you will work as part of a supportive team to be the face of U-Haul’s exceptional service, ensuring customers get all the help they need on their journeys.U-Haul Offers Customer Service Representative:Paid holidays, vacation, and sick daysCareer stabilityOpportunities for advancementValuable on-the-job trainingComplete Benefit Plan if eligibleRRSP payroll deduction planDeferred profit-sharing plan if eligible.Discounts on Dell computers, hotels, and moreCustomer Service Representative Responsibilities:Assist customers inside and outside U-Haul Center with U-Haul products & servicesUse smartphone-based U-Scan technology to manage rentals and inventoryMove and hook up U-Haul trucks and trailersClean and inspect equipment on the lot including checking fluid levelsAnswer questions and educate customers regarding products and servicesPrepare rental invoices and accept equipment returned from rentalCustomer Service Representative Minimum Qualifications:Valid driver’s license and ability to maintain a good driving recordHigh School Diploma or equivalentWork Environment:The work involves moderate risks or discomforts which require special safety precautions, e.g., working around moving parts or machines, fumes, or irritant chemicals. May be required to use protective clothing, or gear such as masks, goggles, gloves or shields.Physical Demands:The work requires some physical exertion such as long periods of remaining stationary, moving around an office and occasionally outdoors, positioning oneself to reach objects at varying heights, and moving equipment weighing a minimum of 50 lbs. assisted or unassisted.U-Haul is an equal opportunity employer. All applications for employment will be considered without regard to race, color, religion, sex, national origin, physical or mental disability, veteran status, or any other basis protected by applicable federal, provincial, state, or local law. Individual accommodations are available on requests for applicants taking part in all aspects of the selection process. Information obtained during this process will only be shared on a need to know basis.Job Type: Part-timePart-time hours: 30 per weekSalary: $17.00-$18.00 per hourSchedule:8 hour shift\",\n            \"location\": \"Oakville, ON\"\n        },\n        {\n            \"id\": \"C19F08300CB7A33E6C0E639CC9D6E76C\",\n            \"cityName\": \"Happy Harry's in Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9355df49b9693429\",\n            \"jobName\": \"Cashier/Customer Service Representative\",\n            \"companyName\": \"Happy Harry's\",\n            \"rowSalary\": \"$15.50–$17.00 an hour\",\n            \"date\": 1694446754876,\n            \"dateOfPosted\": 1692743598490,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6660885,\n                    \"lon\": -63.56756309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Description: This position is responsible for providing exceptional customer service through face to face when they enter the premises or by answering the incoming calls and properly directing them or taking messages. This position is also responsible for cashier duties, which include cash/credit transactions; delivery/pick up; providing customer estimates; reconciliation; customer enquiries; etc. This position is also responsible for ensuring that all merchandise and work areas are maintained in a clean and safe manner.DUTIES AND RESPONSIBILITES**Abide by and adhere to all tasks and procedures outlined in the HH Employee Manual and any other distributed documents.Comply with all health and safety regulations and wearing appropriate personal protective equipment as required.Report for work as scheduled wearing the appropriate clothing and logoed HH attire as may be required.Processing/reconciling payment transactions.Processing returns.Processing paperwork (i.e. door orders, invoices, pick ups, etc.)Creating signage, schedules, etc. for store(s) use.Merchandising and restocking front end area.Answering incoming calls and taking messages or directing callsMix paint.Conduct inventory lists when stock is getting low.Clean up work area daily, ensuring site is kept tidy and safe at all times.Perform any other tasks as assigned by supervisors.Reconciliation of Cash, Debit or Credit Transactions – as per Cash Reconciliation Policy.Tools & EquipmentCompany specified tools for this position include but are not limited to:POS System (Counter Point - NCR)Computer and various programsMicrosoft Office would be considered an AssetPaint shakerTelephoneCalculatorLaminatorAdobe Creative CloudSkillsCompletion of High School or equivalent.Previous customer service/cashier experience would be considered an asset.Previous customer service experience in a construction product environment would be an asset.Certifications in WHMIS and First Aid would be considered an asset.Ability to communicate clearly and concisely in English both verbally and in writing.Excellent analytical and problem solving skills.Ability to be self-motivated.Ability to train other staff as needed or if needed for same skills.Strong organizational skills and must be detail oriented and flexible.Ability to work as part of a team and be a team player.Proven computer skills and past experience with POS systems.Ability to provide criminal records background check.Decision MakingThis position makes decisions only within the scope of the job description and/or specific instructions from their supervisors. This position is accountable for the decisions he/she makes.Inside/Outside Relationships**This position deals with customers, co-workers, suppliers on a regular basis and must be able to maintain a professional and business-like attitude at all times.Position Conditions**This position works indoors and has the flexibility to move around during a shift, including sitting, standing, twisting, bending and lifting. This position works on a computer and must be able to focus for long periods of time. This position uses the phone as a tool on a routine basis and must be able to have good hearing skills. This position has some exposure to dust, dirt, fumes, heat, cold, noise, and inclement weather. This position may require the lifting of items up to 50 lbs. This position requires visual concentration to complete daily tasks. This position requires good hearing to listen for unusual sounds in equipment and site management.FinancialThis position has financial responsibility in maintaining correct cash/credit processing handling when dealing with customer orders and estimates. This position has a high level of accountability in the flow of their work and data entry being thorough and 100% accurate.Supervisory/ManagementThis position has no supervisory responsibility.Job Type: Part-time or Full-Time (Will be discussed at interview)NoJob Types: Full-time, Part-timePart-time hours: 30-42 per weekSalary: $15.50-$17.00 per hourBenefits:On-site parkingStore discountDay range:Monday to FridayWeekend availabilityFlexible Language Requirement:French not requiredShift:10 hour shift8 hour shiftExperience:sales: 1 year (preferred)customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In personExpected start date: 2023-09-01\",\n            \"location\": \"Dartmouth, NS\"\n        },\n        {\n            \"id\": \"0A974B7576C2963BF06D5B1DC6FE5E1F\",\n            \"cityName\": \"1625 Boul Dagenais O, Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8b18890f4aa1d52e\",\n            \"jobName\": \"Représentant.e Service à La Clientèle / Customer Service Rep. - Laval\",\n            \"companyName\": \"Regal Confections (Confiseries Regal) Inc.\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694446092276,\n            \"dateOfPosted\": 1692744469688,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5776013,\n                    \"lon\": -73.80857089999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Bd Dagenais O, Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"English below...QUI SOMMES-NOUS ?Leader canadien dans la distribution de confiseries et de chocolat. Regal Confections ( Confiseries Regal ) Inc. a évolué en devenant le distributeur exclusif de certaines marques comme Tootsie Roll, Dubble Bubble, McCormicks, PEZ, Rockets et plusieurs autres. Nous commercialisons une vaste gamme de produits sous licences, telles que Disney, Lucasfilm, Emoji, LNH, Mattel, Laura Secord, MGA, Nickelodeon, Universal, DreamWorks et Illumination.Fondé il y a 60 ans et comptant plus de 400 employés, nous t'invitons à participer à notre expansion en te joignant à nous comme représentant.e service à la clientèle - bureau des commandes.POURQUOI JOINDRE NOTRE ÉQUIPE ?Horaire flexible 37,5h par semainePossibilité de télétravail hybride après la formationAssurance Collective incluant Dentaire - prime payé 65% par l’employeurHoraire d'étéStationnement gratuitBoîtes cadeaux de produits (Halloween - Noël - Valentin - Pâques)Rabais sur produits réguliers - Chocolats fins, biscuits, confitures, pâtes etc.Ambiance décontractéeBBQ, party de Noël et autres activités socialesCOMPÉTENCES RECHERCHÉES :Diplôme post-secondaire complété dans un domaine connexeMinimum 3 ans d’expérience dans l’entrée de commandes et le suivi d’inventaireBilinguisme requis (anglais, français) tant à l’oral qu’à l’écrit, pour répondre aux besoins de la clientèle interne et externe située dans tout le CanadaConnaissances de système ERP (J.D. Edwards ou autres systèmes)Capacité de travailler sous pression, particulièrement durant les périodes de pointe et être doté de bon esprit d’analyseQUE FERAS-TU ?Entrer les commandes provenant des représentants et des clientsValider les commandes reçues par EDIVérifier la disponibilité des produits et faire le suivi avec les clients, au besoinPrendre les rendez-vous et faire les suivis avec les transporteurs, au besoinCoordonner les transferts entre entrepôts, afin d'optimiser la préparation de commandesÉmettre des autorisations pour les retours de produits...........................................................Job description : CUSTOMER SERVICE REPRESENTATIVEWHO ARE WE?Canada's leading distributor of confectionery and chocolate products. Regal Confections ( Confiseries Regal ) Inc. has evolved to become the exclusive distributor of brands such as Tootsie Roll, Dubble Bubble, McCormicks, PEZ, Rockets and many others. We market a wide range of licensed products such as Disney, Lucasfilm, Emoji, NHL, Mattel, Laura Secord, MGA, Nickelodeon, Universal, DreamWorks and Illumination.Founded 60 years ago and with over 400 employees, we invite you to be part of our expansion by joining us as a Customer Service Representative - order desk.This is an ideal job for a work/family balance!WHY JOIN OUR TEAM?Flexible schedule 37.5 hours per weekPossibility of hybrid telecommuting after the trainingGroup insurance including dental - premium paid 65% by the employerSummer ScheduleAnnual bonus/profit sharingFree parkingProduct gift boxes (Halloween - Christmas - Valentine's Day - Easter)Discount on regular products - Fine chocolates, cookies, jams, pasta etc.Casual atmosphereBBQ, Christmas party and other social activitiesSKILLS REQUIRED :Completed post-secondary degree in a related fieldMinimum 3 years experience in order entry and inventory trackingBilingualism required (English, French) both written and spoken, to meet the needs of internal and external customers located across CanadaKnowledge of ERP system (J.D. Edwards or other systems)Ability to work under pressure, especially during peak periods, and have good analytical skillsWHAT WILL YOU DO?Enter orders from representatives and customersValidate orders received by EDIVerify product availability and follow up with customers as neededMake appointments and follow up with carriers, as neededCoordinate transfers between warehouses to optimize order preparationIssue authorizations for product returnsPermanent daytime position Monday to FridayType d'emploi : Temps plein, PermanentSalaire : à partir de 20,00$ par heureAvantages :Assurance DentaireAssurance InvaliditéAssurance Maladie ComplémentaireAssurance VieAssurance VisionCongés payésProgramme d'Aide aux EmployésProgrammes de Bien-êtreStationnement sur placeTenue DécontractéeHoraires de travail :Du Lundi au VendrediLieu du poste : Télétravail hybride à Laval, QC\",\n            \"location\": \"Boulevard Dagenais Ouest, Laval, QC\"\n        },\n        {\n            \"id\": \"4417E1ADEA41A435957D89F7502F4F3A\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=28bdb8806b3c411b\",\n            \"jobName\": \"Customer Service Clerks Supervisor\",\n            \"companyName\": \"Pdr Auto Ontario Inc.\",\n            \"rowSalary\": \"$28.21 an hour\",\n            \"date\": 1694446058659,\n            \"dateOfPosted\": 1692737378440,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 29.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    29.0\n                ],\n                \"range\": {\n                    \"gte\": 29.0,\n                    \"gt\": null,\n                    \"lte\": 29.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Perform same duties as workers supervised Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Identify training needs and train workers in job duties and company policies Computer and technology knowledge MS Office Work conditions and physical capabilities Attention to detail Work under pressureWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"50F846B98C9D2AE5B1A81182B58D6471\",\n            \"cityName\": \"Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a297f4dc4cf1ba09\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Triple O's Restaurants\",\n            \"rowSalary\": \"$16.75–$17.25 an hour\",\n            \"date\": 1694445965505,\n            \"dateOfPosted\": 1693555281706,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8879519,\n                    \"lon\": -119.4960106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Kelowna, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are Hiring guest focused individuals for Morning and Afternoon ShiftsCurrently we have 2 Full time and one Part time. You must have a friendly outgoing personality, strong work ethic & great customer service skills.Positions require, cashier work, stocking, cleaning and safe work practices as per job description discussed at time of interview and further explained during training.We offer Great working environment and Reliable year round work, Competitive wages and Extended health benefits for full-time employees some restrictions apply, more information provided during interview. Please email your resume or apply within at any Chevron locations in KelownaJob Types: Full-time, Part-timeSalary: $16.75-$17.25 per hourDay range:Monday to FridayWeekends as neededShift:Evening shiftNight shiftEducation:Secondary School (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Night Shift (preferred)Overnight Shift (preferred)Work Location: In person\",\n            \"location\": \"Kelowna, BC\"\n        },\n        {\n            \"id\": \"3E616DC87E364FB09EDF478179A06E17\",\n            \"cityName\": \"St. Catharines, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=95ba35757339427e\",\n            \"jobName\": \"Inside Phone Sales\",\n            \"companyName\": \"Empowerment Technologies Inc.\",\n            \"rowSalary\": \"$23–$25 an hour\",\n            \"date\": 1694445659069,\n            \"dateOfPosted\": 1694445657339,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1593745,\n                    \"lon\": -79.2468626\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St. Catharines\",\n                \"formattedAddress\": \"St. Catharines, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"St. Catharines\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"**This role is in office within our Niagara-on-the-Lake site.**Who We Are:For 20 years, we’ve been leaders in the baby safety (Levana) and DIY security space (Defender), creating ground-breaking consumer electronics that bring peace of mind to millions of people all over the world. Selling directly through our brand websites, Amazon, and our retail partners such as Walmart, Costco, and Home Depot, we are growing fast and are looking for new team members to join us on this journey. For those looking to join a passionate and collaborative team that challenge conventional methods, take risks, and settle for nothing but excellence, you’ve found the right place!Who Are You?You are a fast paced, results driven, and experienced Inside Salesperson with a successful sales track record, you have a high degree of self-motivation and resilience within a sales environment. Using your strong interpersonal skills and entrepreneurial mind set, you strategically use various contact methods to maximize your communication efforts and close sales. This role operates out of our Head Office in Niagara-on-the-Lake.Perks of This Role:Full time, 40 hours per weekScheduled shifts are days, Monday – Friday with weekend availability requiredWage is $23.00-$25.00 per hourImmediately receive 2 weeks vacation (no waiting period)Comprehensive Health Benefits program after 60 daysWork in an office environment (we are NOT a call centre)50% product discount for friends and familyWork directly for the brand owners and not a 3rd partyBe involved in new product testingQualifications:1 year of sales experience with a high focus on sales targets and customer engagementStrong attention to detail and ability to multitaskExcellent organizational, time management and communication skillsFlexible/creative approach to problem solving with the ability to simplify/detangle issues to their core factorsEmotional Intelligence: self-awareness - have a strong desire to develop and improve yourself and know when to seek out expertise; self-regulation - knowing when to push and when to stop; motivation – remain motivated while creating a strong desire to achieve in others; empathy – understand and care about people’s current reality; social skills – understand people, develop trust and help themHigh School Diploma (OSSD)Our Core ValuesExcellence - We never settle for “good enough.Results - The path to success is paved with our dedication.Love - Challenges are no match for our hearts and minds.Learning - Experimentation and curiosity are part of our DNA.Simplicity - We strip away the non-essentials to get to what really matters.Job Types: Permanent, Full-timeSalary: $23.00-$25.00 per hourBenefits:Casual dressDental careExtended health careOn-site parkingPaid time offStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededCOVID-19 considerations:COVID-19 vaccination is required. We have put measures in place, such as daily office sanitization, socially distant desk spaces, and providing masks.Ability to commute/relocate:St. Catharines, ON: reliably commute or plan to relocate before starting work (required)Experience:phone sales: 1 year (required)B2B sales: 1 year (required)Work Location: In person\",\n            \"location\": \"St. Catharines, ON\"\n        },\n        {\n            \"id\": \"D7E4DB082118ADAAA66994F0959B045B\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4ec487bb744dcb59\",\n            \"jobName\": \"Bilingual Customer Service Agent - Agent De Soutien Téléphonique Bilingue\",\n            \"companyName\": \"Globalstep\",\n            \"rowSalary\": \"$16.50–$20.00 an hour\",\n            \"date\": 1694445657223,\n            \"dateOfPosted\": 1694445655926,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"--Le français à suivre--Who we are:You name it, we’ve done it. GlobalStep partners with the world’s leading game studios and innovative brands, bringing compelling and high impact digital experiences to life, fast and flawless. Our specialized gaming practice has helped leading video game studios launch and support over 3,000 Video Game titles that have generated over $30 billion in game revenue.With a global set of service locations across 3 continents, we have a tightly integrated services model across geographies and lines of service aimed and focused on the success of our clients.Responsibilities· Effectively answer various questions from members and clients.· Handle phone calls quickly and efficiently and provide superior quality service in a context where call volume may be high.· Actively listen to members and clients by asking relevant questions to effectively meet their expectations.· Establish a climate of trust that promotes customer retention.· Conduct transactions over the phone.· Schedule appointments with credit union advisors.· Adhere to the policies, practices, and standards in force at the credit union.· Ensure the profitability of transactions and/or services offered.Behavioral and Technical Skills· Having good interpersonal skill· Being customer-oriented· Dealing with uncertainty and ambiguity· Mastering problem-solving· Demonstrating a strong ability to learn quickly· Culture of cooperation and teamwork· Professional customer environment· Advanced computer skills (Windows, Internet)Shifts:· Three shifts available (morning, evening, night)Qualifications / Education· High school diploma· Experience in customer service· Excellent learning ability· Bilingualism (essential)· Excellent listening & communication skills, both orally and in writing (French, English)Company Benefits· Rapidly growing scale-up offering opportunities for permanent positions· Premium for night shifts· Working remotely· Paid Training providedWhat we offerGlobalStep is proud to be an equal opportunity workplace and is an affirmative action employer. We are committed to equal employment opportunity regardless of race, color, ancestry, religion, sex, national origin, sexual orientation, age, citizenship, marital status, disability, gender identity or Veteran status.-------------------------Qui sommes-nous:Vous l'avez dit, nous l'avons fait. GlobalStep travaille en partenariat avec les plus grands studios de jeux et les marques les plus innovantes du monde et donne vie à des expériences numériques convaincantes et à fort impact, de manière rapide et impeccable. Notre spécialisation a aidé les principaux studios de jeux vidéo à lancer et à soutenir plus de 3 000 titres, qui ont généré plus de 30 milliards de dollars en revenus.Grâce à notre ensemble mondial de sites de services répartis sur trois continents, nous disposons d'un modèle d'activité étroitement intégré dans les zones géographiques et les lignes de services, visant et se concentrant sur le succès de nos clients.Description de l'emploi· Répondre efficacement aux différentes questions des membres et clients· Prend en charge, rapidement et efficacement, la réponse aux appels téléphoniques qui lui sont dirigés et offrir un service de qualité supérieure dans un contexte où le volume d'appels peut être élevé.· Écouter les membres et clients de façon active en leur posant des questions pertinentes pour répondre efficacement à leurs attentes· Établir un climat de confiance favorisant la rétention de la clientèle· Procède aux transactions assistées par téléphone· Prend les rendez-vous des conseillers de la caisse.· Respecte les politiques, les pratiques et les normes en vigueur à la caisse· S’assure de la rentabilité de la transaction et/ou des services offertsCOMPÉTENCES COMPORTEMENTALES et TECHNIQUES· Être doué pour la communication interpersonnelle· Être orienté vers le client· Faire face à l'incertitude et à l'ambiguïté· Maîtriser la résolution de problèmes· Démontrer une grande capacité à apprendre rapidement· Culture et esprit coopératif· Environnement professionnel de la clientèle· Compétences informatiques approfondies (Windows, Internet)Les horaires :Trois horaires sont disponibles (matin, après-midi et nuit)Exigences· Diplôme d’études secondaires· Expérience en service à la clientèle· Excellente capacité d’apprentissage· Bilinguisme (essentiel)· Excellentes aptitudes à la communication autant à l’oral qu’à l’écrit (français, anglais)Avantages sociaux· Entreprise en pleine expansion offrant des opportunités de postes permanents rapidement croissant· Prime pour les quarts de nuit· Travailler à distance· Formation rémunérée fournieCe que nous offronsGlobalStep est fier d'être un lieu de travail où l'égalité des chances est respectée et est un employeur à action positive. Nous nous engageons à garantir l'égalité des chances en matière d'emploi, indépendamment de la race, de la couleur, de l'ascendance, de la religion, du sexe, de l'origine nationale, de l'orientation sexuelle, de l'âge, de la citoyenneté, de l'état civil, du handicap, de l'identité sexuelle ou du statut d'ancien combattant.Job Types: Full-time, ContractSalary: $16.50-$20.00 per hourExperience:Customer service: 1 year (preferred)Language:French (required)English (required)\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"F44551F9C1732F24125E4054B4B65D1D\",\n            \"cityName\": \"740 Avenue du Palais, Saint-joseph-de-beauce, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b99193a68e4abbee\",\n            \"jobName\": \"Agent(e) De Service à La Clientèle / Customer Service Representative\",\n            \"companyName\": \"Purolator\",\n            \"rowSalary\": \"From $21.05 an hour\",\n            \"date\": 1694445619977,\n            \"dateOfPosted\": 1668648092737,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.3058894,\n                    \"lon\": -70.8783078\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saint-Joseph-de-Beauce\",\n                \"formattedAddress\": \"Av. du Palais, Saint-Joseph-de-Beauce, QC G0S, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Chaudière-Appalaches\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saint-Joseph-de-Beauce\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Des carrières qui font du chemin Êtes-vous à la recherche d’une occasion d’apprendre et de progresser? Voici votre occasion de nous aider à tenir les promesses de nos clients. Le statut de personne entièrement vaccinée contre la COVID-19 est une condition d’embauche pour les candidats retenus pour ce poste. Si vous avez des questions, n’hésitez pas à les poser durant l’entrevue. Depuis sa fondation en 1960, Purolator est devenue le fournisseur de pointe de solutions intégrées de logistique et d’expédition de fret et de colis au Canada. Notre équipe travaille en respectant un solide ensemble de valeurs d’entreprise qui guident tout ce que nous faisons pour nos employés. En tant qu’employeur, Purolator s’est engagée à offrir à ses employés un travail gratifiant avec des occasions de collaboration et de progression de carrière. Nous offrons un programme de rémunération globale concurrentiel qui inclut un salaire concurrentiel, un régime de retraite et des avantages sociaux complets, un programme d’aide aux employés et à la famille, un régime d’achat d’actions par les employés et des rabais pour les employés. Nous croyons que le développement d’une équipe gagnante d’employés est essentiel pour réaliser notre vision de rendre le Canada plus fort en aidant nos clients à tenir leurs promesses. Ne manquez pas cette occasion de faire partie d’une entreprise nationale qui joue un rôle significatif dans la vie de tous les Canadiens. Soumettez votre candidature dès aujourd’hui! Nous sommes présentement à la recherche d’un agent polyvalent de bureau et au centre d'expédition pour notre établissement de St-Joseph-de-Beauce. Le taux horaire de départ est de 21.05$. Établissement : 740 Av. Guy-Poulin, Saint-Joseph-de-Beauce, QC G0S 2V0 Contrat de travail : Sur appel - horaire variable Brève description des fonctions : Servir les clients de manière efficace et polie au téléphone ou en personne Vendre des produits et des services S’occuper des plaintes et des demandes des clients S’efforcer de résoudre les problèmes relatifs aux envois S’efforcer de résoudre les problèmes relatifs à l’équipement et à la technologie Collaborer avec le personnel du siège social, la direction locale, les courriers, le personnel des entrepôts, les directeurs de compte et autres partenaires pour garantir un excellent service à la clientèleQualifications et Aptitudes requises Secondaire V complété ou expérience pertinente Obtenir une note de passage dans des tests d'aptitude Anglais oral (bilingue) Commentaires : Pourra travailler avec ou sans supervision Attitude professionnel envers la clientèle Être capable de travailler sous pression Peut soulever seul des colis pouvant peser jusqu’à 70 livres. DÉTAILS DE L'AFFICHAGEÉtablissement: 186 - St-Joseph De BeauceConditions de travail: Retail Center Environment - Purolator est un employeur souscrivant au principe de l’égalité d’accès à l’emploi favorisant la diversité et l’inclusion. L’entreprise prendra en considération tous les candidats qualifiés pour l’emploi, peu importe leur race, la couleur de leur peau, leur religion, leur sexe, leur orientation sexuelle, leur identité de genre, leur origine ethnique, leur âge, leur statut d’autochtone ou tout autre facteur pouvant être considéré comme discriminatoire. Si vous avez besoin d’un accommodement durant le processus de recrutement, nous travaillerons avec vous afin de répondre à vos besoins. Nous reconnaissons que nos employés et leurs familles sont des intervenants essentiels. Notre entreprise ne sera prospère que si nous offrons à nos employés un milieu de travail sain et sécuritaire et si nous avons les bonnes personnes, aux bons postes, avec le soutien dont elles ont besoin pour réussir. Nous embauchons pour l’attitude et nous formons pour l'aptitude. Pour en apprendre davantage sur l'entreprise et ses valeurs, visitez le site www.purolator.com. Chez Purolator, chaque nouvelle journée vous offre l’occasion ainsi qu’à vos collègues de tisser des liens positifs entre vous et avec nos clients afin d’avoir un impact positif sur les collectivités dans lesquelles nous vivons et travaillons.\",\n            \"location\": \"Avenue du Palais, Saint-joseph-de-beauce, QC\"\n        },\n        {\n            \"id\": \"F096D014E2343C3A97C726DD6EE528BC\",\n            \"cityName\": \"3605 West 4th Ave, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=87bd99f2f4c29b1c\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Aphrodite's Organic Pie Shop\",\n            \"rowSalary\": \"From $15.65 an hour\",\n            \"date\": 1694445522464,\n            \"dateOfPosted\": 1692736500975,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2674848,\n                    \"lon\": -123.1094236\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W 4th Ave, Vancouver, BC V5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Aphrodite's Organic Pie Shop and Cafe is expanding and seeking part time baristas to work at our bustling cafe and brunch restaurant, 3-5 shifts per week. If you are looking for a position that never involves late nights, then we are here for you!We are a busy organic pie shop that operates from 8:00am to 6:00pm. Shift range between 7:30am to 7:00pm. We are looking for someone with flexible weekday availability specifically.Please apply in store with a resume to Kira Kirkland, our Director of Operations.Thank you!Job Type: Full-timeSalary: From $15.65 per hourSchedule:Day shiftMorning shiftSupplemental pay types:Overtime payTipsAbility to commute/relocate:Vancouver, BC: reliably commute or plan to relocate before starting work (required)Experience:Barista: 1 year (required)Customer Service: 1 year (required)Licence/Certification:Food Safety Certification (preferred)Work Location: In person\",\n            \"location\": \"W th Ave, Vancouver, BC\"\n        },\n        {\n            \"id\": \"1B1E84351F9004305FDD5562C497F2D2\",\n            \"cityName\": \"210 Rue De La Gauchetière O, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8e65cf38cc010296\",\n            \"jobName\": \"Customer Service / Hospitality Agent\",\n            \"companyName\": \"Bakan Hotels\",\n            \"rowSalary\": \"$45,000 a year\",\n            \"date\": 1694445413321,\n            \"dateOfPosted\": 1694445413144,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5026511,\n                    \"lon\": -73.563864\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue De La Gauchetière O, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Be the first point of contact for all our guests via phone, email and chatLearn the ins and outs of our hospitality business so you can handle any questions guests haveOwn the reservations process from start to finishRespond to, troubleshoot, and resolve guest issues in a timely and positive mannerCoordinate to resolve issues on the ground and provide ongoing updates to guestsMeet and greet guests when they check-in, ensuring they have an amazing first experienceTake care of day-to-day hospitality tasks, such as bringing extra items to guests during their stay and managing in-unit needs that range from troubleshooting systems and appliances, quick housekeeping fixes, and overseeing contractor appointmentsLearn about the pillars of hospitalityLearn about warehouse management and supply chain management where you will assist with warehouse duties such as preparing housekeeping kits, processing linens, and cleaningWork closely with our hospitality operations team and conduct quality control inspections inside our unitsAssist with photoshoots and on-boarding new units to be guest readyJob Types: Full-time, Part-time, PermanentPart-time hours: 40 per weekSalary: $45,000.00 per yearBenefits:Company eventsFlexible scheduleOn-site parkingStore discountSchedule:10 hour shift8 hour shiftDay shiftWeekends as neededApplication question(s):Must have at least a bachelor degree or hospitality certificate degreeEducation:DCS / DEC (required)Language:French and English (required)Work Location: In personExpected start date: 2023-10-01\",\n            \"location\": \"La Gauchetière, QC\"\n        },\n        {\n            \"id\": \"52869623752152132BC53602AC207468\",\n            \"cityName\": \"Ajax, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1d0c2d7099cea784\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Harwood Sales Group\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694445411827,\n            \"dateOfPosted\": 1692747472269,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8508553,\n                    \"lon\": -79.0203732\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ajax\",\n                \"formattedAddress\": \"Ajax, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ajax\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a sales and marketing company based out of Ajax Ontario, looking for motivated and passionate Customer Service Representatives that want to make a difference! Looking for full time schedules, Monday to Friday. Please review the following info for more details!Customer Service Representative Job Responsibilities:Serves customers by providing product and service information and resolving product and service problems.Attracts potential customers by answering product and service questions and suggesting information about other products and services.Maintains financial accounts by processing customer adjustments.Recommends potential products or services to management by collecting customer information and analyzing customer needs.Prepares product or service reports by collecting and analyzing customer information.Contributes to team effort by accomplishing related results as needed.Customer Service Representative Qualifications / Skills:Customer serviceProduct knowledgeMarket knowledgeQuality focusProblem solvingDocumentation skillsPhone skillsListeningJob Type: Full-timeSalary: $20.00-$22.00 per hourFlexible Language Requirement:French not requiredSchedule:Monday to FridayAbility to commute/relocate:Ajax, ON: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Ajax, ON\"\n        },\n        {\n            \"id\": \"29A830106D5D4BB7A5DD221BCFE8CA2E\",\n            \"cityName\": \"1801 Lakeshore Road West, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3d01cf89186fdd31\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Turtle Creek Cards And Gifts\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694445295955,\n            \"dateOfPosted\": 1690560955777,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5308514,\n                    \"lon\": -79.6082911\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Lakeshore Rd W, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Shipping parcels within Canada,USA and internationally.selling canadapost authorized products,stamps.selling gift itemsTaking passport photosJob Type: Fixed term contractContract length: 12 monthsSalary: From $15.50 per hourSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsCOVID-19 considerations:Wear a maskKeep distance Use sanitizer Ability to commute/relocate:Mississauga, ON: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Lakeshore Rd W, Mississauga, ON\"\n        },\n        {\n            \"id\": \"2BCB460D2B482CA89AA89424F03E0759\",\n            \"cityName\": \"Yarrow, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f9254220918d7915\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Chevron\",\n            \"rowSalary\": \"$16.75–$18.00 an hour\",\n            \"date\": 1694444324277,\n            \"dateOfPosted\": 1693588788040,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.0821013,\n                    \"lon\": -122.0647472\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Chilliwack\",\n                \"formattedAddress\": \"Yarrow, Chilliwack, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Fraser Valley\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Chilliwack\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usWe are professional, customer-centric and engaging.Our work environment includes:Growth opportunitiesOn-the-job trainingSafe work environmentProcess transactions professionally, accurately, in a timely fashion; with a friendly attitude using suggestive sales.Change garbages outside in all kinds of weather, clean pumps and lot. Keep store neat and clean.Must be able to verify products being delivered and then display according to planograms.Must have a positive, can do attitude, able to get along with peers as well as management.Must have a drivers license as there is no bus service at this location.Job Types: Full-time, Part-time, PermanentPart-time hours: 16-40 per weekSalary: $16.75-$18.00 per hourBenefits:On-site parkingDay range:Every WeekendHolidaysMonday to FridayFlexible Language Requirement:French not requiredShift:8 hour shiftEvening shiftMorning shiftNight shiftWork setting:Convenience storeAbility to commute/relocate:Yarrow, BC: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Shift availability:Overnight Shift (preferred)Night Shift (required)Day Shift (preferred)Work Location: In personExpected start date: 2023-09-09\",\n            \"location\": \"Yarrow, BC\"\n        },\n        {\n            \"id\": \"DF216AB045A82D6947B05F1351D0ED8D\",\n            \"cityName\": \"Cornwall, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=353d0e775d124b39\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Xplore Inc.\",\n            \"rowSalary\": \"$17.55 an hour\",\n            \"date\": 1694444112928,\n            \"dateOfPosted\": 1693581687919,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.0212762,\n                    \"lon\": -74.730345\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cornwall\",\n                \"formattedAddress\": \"Cornwall, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Stormont, Dundas and Glengarry United Counties\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cornwall\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Overview: * Do you have a passion for providing excellent customer service? Want to work for a company who believes in putting the customer at the heart of everything they do? Then join Xplore’s team of Customer Service Representatives in our Cornwall,ON office. Xplore offers a high energy, fast-paced work environment where employee opinions and feedback are valued. Xplore offers a high energy, fast-paced work environment where employee opinions and feedback are valued. We offer:$17.55/hr$3.00/hour Bilingual Premium (French/English)Bonus incentive opportunities up to $2,800 annuallyExcellent company benefits including health and dentalMatched participation in group RRSPStrong focus on internal promotion, career path development and trainingOpportunities to work from home after six months tenureKey responsibilities include:Providing an excellent customer experience by responding to customer calls in a courteous, knowledgeable and professional mannerListening to customers and probing as appropriate to discover needs while fulfilling customer expectations in a way that also complies with policies, practices and proceduresProviding general account, billing and technical support to our customersProcessing service ordersMaintaining accuracy of customer databasesAssisting with reporting and administrationMaintaining service levels and achieving business and performance goals and objectivesThe ideal candidate will possess:Completion of post-secondary education in a related field (or equivalent level of experience)Knowledge of approaches, tools and techniques for anticipating, recognizing and resolving technical issuesPrevious customer service experience is an assetStrong computer and troubleshooting skills with the ability to analyze and solve problemsSolid working knowledge of the Microsoft Operating Systems; experience with MAC and/or Linux is an assetStrong communication skills, verbal and written, with the ability to communicate effectively with customers in technical and non-technical termsSelf-motivated and driven with good time management and organizational skillsAbility to follow guidelines and strong attention to detailAbility to prioritize and multi-task while adapting in a fast-paced work environmentBilingualism is an asset (French/English) #XploreJobs Condition of employment: As a condition of employment and in order to comply with industry related data security standards, this position is subject to the successful completion of a Criminal Background Check. Details will be supplied to applicants as they move through the selection process. Xplore is committed to creating an accessible environment and will accommodate disabilities during the selection process. Please let your recruiter know during the selection process of any accommodation needs. Company Overview: Xplore Inc. is Canada’s fibre, 5G and satellite broadband company for rural living. Xplore is committed to the relentless pursuit of an improved broadband experience for all Canadians. Xplore is building a world-class fibre optic and 5G wireless network to enable innovative broadband services for better every day rural living, for today and future generations.\",\n            \"location\": \"Cornwall, ON\"\n        },\n        {\n            \"id\": \"B2DEF8FDC8F89B7F7BEC7DCFF264670F\",\n            \"cityName\": \"60 Charles Street West, Ingersoll, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=387c40b77c2f0381\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Domino's Pizza Woodstock\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694444035551,\n            \"dateOfPosted\": 1692726050714,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.0365119,\n                    \"lon\": -80.8888401\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ingersoll\",\n                \"formattedAddress\": \"Charles St W, Ingersoll, ON N5C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Oxford County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ingersoll\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Domino's Pizza is now hiring Customer Service RepresentativesWe are happy that you are interested in joining the Domino’s team!Customer Service Representatives (CSR) are primarily responsible for providing exceptional customer service, making great Domino’s Pizza products and maintaining cleanliness of the store. CSR’s at Domino’s work in a team environment and they are expected to be positive and productive team players. Every CSR plays a part in helping the store achieve its goals for customer service, sales growth, operational reviews and cost management, therefore, their attention to these targets is paramount.The responsibilities are guided by the Domino’s Pizza of Canada’s policies and procedures. The standards can in some instances be modified by Empire Pizza or the CSR’s supervisor.Other responsibilities may include being a shift leader. Shift leaders are responsible for completing all shift tasks as laid out in the policies, manage other team members, balance finances and inventory and train team members. Shift leaders may be required to attend workshops to further develop their skills.CSR’s are required to attend to their scheduled shifts on-time, in complete uniform and with positive attitudes. During some shifts, the CSR may be required to help promote the business and do some local store marketing.Although schedules are typically posted a few days early, CSR’s may be required to come to work on short notice or perform additional tasks outside of this description.Job Type: Part-timePart-time hours: 10-30 per weekSalary: $15.50-$16.50 per hourExpected hours: 10 – 30 per week\",\n            \"location\": \"Charles Street West, Ingersoll, ON\"\n        },\n        {\n            \"id\": \"7AE643FCE8837B8E7E4EDB18176B7220\",\n            \"cityName\": \"4305 Rue Griffith, Saint-Laurent, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9c5b7757c4e25754\",\n            \"jobName\": \"Commis Au Service à La Clientèle/Customer Service Clerk\",\n            \"companyName\": \"Prosol Distribution\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694444018709,\n            \"dateOfPosted\": 1694444018530,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.48487979999999,\n                    \"lon\": -73.6986762\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Griffith, Montréal, QC H4T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Date: 11 septembre 2023Lieu de travail: 4305 Rue Griffith, Saint-Laurent QC H4T 2A2Taux horaire : 20$/heureHoraire : Lundi au vendredi – 7h à 16h ou 8h à 17h - 40 heures/semainePostes : 1Tu as un grand intérêt pour le service à la clientèle et tu désires te joindre à une équipe jeune et dynamique qui aime travailler en équipe?Nous sommes présentement à la recherche de deux Commis service à la clientèle à notre siège social situé à Ville St-Laurent. Relevant du superviseur de service à la clientèle, tu seras responsable de fournir un service aux clients de l’entreprise, d’effectuer la prise de commande et de gérer les comptes clients.Description du posteUne journée typique dans ton quotidien :- Effectuer le service à la clientèle au comptoir et/ou au téléphone- Exécuter des activités de vente et de service à la clientèle comme prendre le paiement des commandes ou répondre aux questions générales et techniques- Traiter les retours et échanges de produits via le système- Gérer les cas problématiques avec les autres entrepôts- Autres tâches connexesCe qui est requis :0-1 an d’expérience en service à la clientèleBilinguisme (français et anglais fonctionnel)On te veut dans notre équipe si :Tu as le travail d’équipe à cœurTu es une personne dynamique avec de l’entregentLa débrouillardise et ponctualité ne sont pas un secret pour toiCe que nous t’offrons :- Poste permanent, 40 heures/semaine- Salaire et assurances collectives compétitifs- Formation continue- Environnement de travail chaleureux et tenue de travail décontractée- Stationnement disponible et accès facile en transports en commun- Un superviseur à l’écoute de ses employésLe défi te parle? Pour en savoir plus et postuler, c’est juste ici…À propos de la compagnie,Prosol Inc. se spécialise depuis plus de 35 ans dans la distribution d’articles et d’accessoires reliés au domaine de l’installation et de la finition des planchers. Prosol possède une expertise notamment dans les produits liés à la pose des moquettes, du vinyle en rouleaux, des carreaux de vinyle pur ou composé, des dalles de caoutchouc, du linoléum et des carreaux de céramique de granit ou de marbre.Cette spécialisation mène Prosol à maintenir plus de 20 000 produits en inventaire et à offrir un service permanent d’assistance technique. L’entreprise se distingue de ses concurrents par sa rapidité d’exécution et par l’excellence de son service. La société ne s’approvisionne qu’auprès de fournisseurs bien établis, compétents et reconnus dans notre industrie pour leur spécialisation éprouvée dans le domaine de l’installation. Le volume de ses ventes et la force de son pouvoir d’achat confèrent à Prosol la première place au Canada dans son secteur d’activités.***English Version***Date: 2022-06-20Location: 4305 Rue Griffith, Saint-Laurent QC H4T 2A2Hourly rate: 20$/hourSchedule: Monday to Friday – 7h am to 4h pm or 8h am to 5 pm – 40 hours/weekJob openings: 1You have a great interest in customer service, and you want to join a young and dynamic team that values teamwork?We are currently looking for two Customer service Clerk at our head office located in Ville St-Laurent. Reporting to the Customer service supervisor, you will be responsible for providing service to the company's customers, taking orders, and managing customer accounts.Job descriptionA typical day at work:- Perform customer service at the counter and/or on the phone- Perform sales and customer service activities such as taking payment of orders or answering general and technical questions- Process product returns and exchanges through the system- Manage problem cases with other warehouses- Other related dutiesWhat is required:0-1 year of experience in customer serviceMust speak French and functional EnglishWe want you on our team if:You are a team playerYou are a dynamic person with good interpersonal skillsYou are punctual and resourcefulWhat we offer:- Permanent position, 40 hours/week- Competitive salary and group insurance- Continuous training- Friendly work environment and casual work attire- Parking available and easy access by public transportation- The support and listening of your supervisorAre you interested in this challenge? To learn more and apply, it’s right here…About the company,Prosol Inc. has been specializing for over 35 years in the distribution of products and accessories for the installation and the finishing of floors. Prosol has a great expertise in the installation of carpets, vinyl in rolls, vinyl tiles (pure or composed), rubber tiles, linoleum and ceramic tiles of granite or marble.This specialization brings Prosol to maintain over 20 000 products in inventory and to offer technical help to the trade. The company distinguishes itself from its competitors by its speed of execution and the excellence of its service. The company buys only from well-established suppliers, competent and recognized in our industry for their proven expertise in the field of installation. The sales volume and the strength of its purchasing power confers Prosol the first place in Canada in its industry.Type d'emploi : Temps pleinSalaire : à partir de 20,00$ par heureAvantages :Assurance DentaireAssurance Maladie ComplémentaireAssurance VieStationnement sur placeTenue DécontractéeHoraires de travail :8 HeuresQuart de jourQuart du matinLieu du poste : En présentielDate de début prévue : 2023-09-18\",\n            \"location\": \"Rue Griffith, Saint-Laurent, QC\"\n        },\n        {\n            \"id\": \"B893FB96D2F9E41AB9CD252836BFE48E\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=48147e675eeab7e7\",\n            \"jobName\": \"Bilingual (Fr/En) Inbound Call Center Agent No Sales Working From Home\",\n            \"companyName\": \"I24 Call Management Solutions\",\n            \"rowSalary\": \"From $19.62 an hour\",\n            \"date\": 1694443988954,\n            \"dateOfPosted\": 1694443988763,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Important note: We do not offer a Monday to Friday schedules only, nor do we offer an evening schedule starting at 5 or 6 pm only. Weekends can be rotated or worked 1 of the 2 days all the time.WHAT WE DOi24 Call Management Solutions answers the phones for our clients when they can't. We manage phone calls for businesses of all sizes across Canada. 24/7/365, including holidays.Oh, and we're good. Not that we like to brag, but we received our 27th consecutive Award of Excellence from our national call management organization (CAM-X).Phone-phobic? You won't have to make any phone calls, only answer them. We are an inbound call answering service only. We do not make outbound solicitation or sales calls.YOU ARE IMPORTANT!Positive people produce positive work cultures.Internal (you) and external (our customers) customers are equal stakeholders in our success.We are recognized internationally by the call management industry for the quality of our employee engagement and recognition programs.WE ARE COMMITTED TO SUPPORTING OUR COMMUNITY.We are a company that is committed to our community. Some of the organizations we support include the Art for Healing Foundation (bringing the healing power of art to hospitals and wellness centers), Dan la Rue (homeless youth), the Montreal SPCA (improving the lives of animals), the Fauna Foundation (a local chimpanzee shelter that provides exemplary care to chimpanzees in need) and the Nature Conservancy of Canada (the nation's largest land conservation organization).We are proud to have developed, for over fifty years, a positive corporate culture that rewards and respects all stakeholders - employees and customers.What you need to know to become an i24 Call Management Agenti24 is strictly inbound call management company. That means you won’t be asked to do any outbound calls, sales solicitations or upselling for existing clients. As a Call Management Agent (CMA), you will be servicing inbound client calls only.As a bilingual service, our agents offer service in French and English.Examples of the types of calls we manage are assisting a caller in getting service for their home, reaching their building manager, making a doctor’s appointment, getting technical support and more – all on the same day. If you don’t like boredom, you’ll love working at i24.Of course, we don’t expect you to come by these skills naturally, as long as you provide the smile and the curiosity, we provide one of the best professional call management training in the country.Our call center is open 24 hours a day, 7 days a week, 365 days a year. Therefore, we have a need for agents who are available for multiple shifts. We will do our best to accommodate your preferences, but your availability must still be flexible. Our shifts start at varying times, depending on our needs at the time. We do NOT have a day shift and an evening shift on the same hours at all times. For example: we cannot accommodate Monday to Friday availability between 8:30am and 4:30pm only.Our dayshifts can start as early as 6am, but also at 6:30am, 7am, 7:30am, 8am, 10am, 11am, etc.Our evening shifts can end at 8pm, 9:30pm, 10pm, 11pm, midnight or 2am.We do not offer a Monday to Friday schedule only, but weekends can be rotated or done 1 day out of 2 in continuity.This is the \\\"What's in it for me? \\\". - Compensation.\\\"How much do I get paid to be an i24 Agent?\\\"The starting base salaries areBilingual (CMA English and French) - $19.62 per hour You are available to handle calls from our English and French speaking clients.English only - $17.12 per hour. You will be handling calls from our English speaking customers only.Francophone only - $17.12. You handle calls from our French speaking customers only.Graduation programI24's call management agents are highly valued in the industry. Personality and training are the key factors. We call our agents \\\"WOW Specialists\\\" because that's what they do. They wow our customers and colleagues with their level of service, creativity and generosity.Once you have worked 1000 hours and completed our Call Management Agent training, you become one of our i24 graduate.Other benefits:Paid vacationGroup insurance - including life insurance and long-term disabilityPrescription Drug PackageDental PlanPaid sick daysBereavement leave with payA comprehensive Employee Assistance Program (EAP)It takes positive people to create a positive culture.If you've ever checked out our Facebook page, you'll have noticed all the fun events we post. We host social events like costume contests, gingerbread houses and online game nights. At i24, we take fun seriously (it's one of our core values).You work from home.All of our call management agents work from home. We have agents working across Canada - from Bona-Vista to Vancouver Island.For this to be possible, there are a number of technical requirements you will need to provide.A laptop or desktop PC (Apple Macs and Chromebooks are not currently compatible with our computer systems).A minimum of a 17+ inch screen to allow access to software options.A keyboard and an external mouse.A high speed internet connection via an Ethernet cable (25mbs and more)Active and up-to-date antivirus softwareA stable phone line of your choice (cellular, residential, VOIP (e.g. Skype))A headset with external microphone compatible with your telephone line equipment AND your computuerA webcamA workspace with a desk and chair. You will be working with clients whose confidentiality must be respected; therefore, your workstation should be located in an area with minimal disruption and traffic.Note: We will provide you with computer equipment within a few weeks of the end of your probationary period.Job Types: Full-time, PermanentSalary: From $19.62 per hourBenefits:Casual dressCompany eventsDental careDisability insuranceEmployee assistance programExtended health careLife insurancePaid time offVision careWellness programWork from homeSchedule:8 hour shiftDay shiftEvening shiftHolidaysMorning shiftWeekends as neededSupplemental pay types:Bonus payApplication question(s):Please tell us, in 2 sentences, why you would like to join our i24 teamAt i24, you'll need a dedicated home office space that is both fixed and private. For consistency and quality assurance purposes, it’s not possible to work from any other location. Please describe your workspace for us.How many hours per week would you like to work? (if you're a student, please specify the number of hours while you're in class, and while you're on summer vacation).What is your availability Monday through Friday? (Please specify the days you are available, the earliest time you can start and the latest time you can finish. Be as specific as possible)REMINDER: As indicated in our ad, we do not offer 8-16, 9-17 or shifts starting after 4 p.m. (exception: 00-8 for night shifts). Ideally, you must be available for at least 12 hours to have the flexibility to work multiple shifts depending on operational needs.What is your availability on Saturday and Sunday? Please note that if you are not available on weekends, this job is not for you as it is a prerequisite to be available at least every other weekend OR one of the two days every weekend. (Please specify the days you are available, the earliest time you can start and the latest time you can finish. Be as specific as possible)REMINDER: As indicated in our ad, we do not offer 8-16, 9-17 or shifts starting after 4 p.m. (exception: 00-8 for night shifts). Ideally, you must be available for at least 12 hours to have the flexibility to work multiple shifts depending on operational needs.Are you currently a student? If so, are you in school part-time, full-time, or with no fixed schedule? If you are not a student, simply write 'no'.Our initial training lasts 2 weeks, the first week of training is Monday to Friday and hours can vary between 8:00am and 7:00pm, depending on the trainer and needs. The second week's hours can vary between 7:00 and 19:00. Are you available during these training hours, Monday to Friday, for 2 weeks?You must be permanently located in Canada to work. If this is not your case, please do not apply unnecessarily.Do you have another job that you would like to continue simultaneously with your employment with i24?Le bilinguisme de haut niveau est un critère crucial afin de réussir au sein de notre équipe. Après tout, nous avons des clients partout a travers le Canada et nombreux ne parleront pas du tout français. Nous avons donc un besoin plus haut que si vous travailleriez seulement au Québec, puisqu'étant une province bilingue, nous avons tendance a être plus compréhensif et ce ne sera pas le cas de tous nos clients.Sur 10, 0 étant le plus faible et 10 parfaitement fluide tout comme votre langue maternelle, quel score vous donneriez a votre français écrit ?Sur 10, 0 étant le plus faible et 10 parfaitement fluide tout comme votre langue maternelle, quel score vous donneriez a votre français parlé ?Sur 10, 0 étant le plus faible et 10 parfaitement fluide tout comme votre langue maternelle, quel score vous donneriez a votre anglais écrit ?Sur 10, 0 étant le plus faible et 10 parfaitement fluide tout comme votre langue maternelle, quel score vous donneriez a votre anglais parlé ?Work Location: Remote\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"C68AAABDFE9E8FADD4F01D9F3988F2F1\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=638cd5e04453bdaf\",\n            \"jobName\": \"Customer Service / Technical Support Representative (Bilingual: French/English) Remote\",\n            \"companyName\": \"Concentrix\",\n            \"rowSalary\": \"$17–$25 an hour\",\n            \"date\": 1694443881992,\n            \"dateOfPosted\": 1670084824205,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.2926993,\n                    \"lon\": -114.0134073\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Airdrie\",\n                \"formattedAddress\": \"Airdrie, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Airdrie, AB\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title: Customer Service / Technical Support Representative (Bilingual: French/English) Remote  Job Description Titre du poste : Conseiller bilingue Français et anglais RÉINVENTEZ VOTRE CARRIÈRE Êtes-vous à la recherche d’un changement de carrière « travail à domicile » au sein d’une organisation mondiale avant-gardiste qui favorise une véritable culture inclusive axée sur les personnes et un véritable sentiment d’appartenance ? Souhaitez-vous rejoindre une entreprise qui remporte chaque année les prix « Meilleurs lieux de travail au monde », « Employés les plus heureux » et « Meilleures entreprises pour la croissance de carrière » ? Alors un poste de Conseiller bilingue Français et anglais à distance chez Concentrix est exactement le bon endroit pour vous ! En tant que Conseiller bilingue Français et anglais à distance, vous rejoindrez une équipe organiquement diversifiée de 40 pays où TOUS les membres contribuent et soutiennent le succès et le bien-être de chacun, unis en tant que « One Concentrix ». Ensemble, nous aidons les marques les plus connues au monde à améliorer leurs activités grâce à des expériences client (CX) exceptionnelles, à une innovation continue et aux technologies les plus avancées. Et en raison de la croissance continue, nous recherchons plus de personnes talentueuses pour rejoindre notre objectif, des personnes aussi passionnées par la fourniture d’expériences de service client exceptionnelles que nous. CROISSANCE DE CARRIÈRE ET DÉVELOPPEMENT PERSONNEL Il s’agit d’une excellente occasion de « travail à domicile » qui vous permettra de réinventer un tout nouveau parcours professionnel et de développer des « amis pour la vie » en même temps. Nous vous donnerons toute la formation, les technologies et le soutien continu dont vous aurez besoin pour réussir. De plus, chez Concentrix, il y a un réel potentiel de croissance professionnelle (et personnelle). En fait, environ 80% de nos gestionnaires et dirigeants ont été promus de l’interne ! C’est pourquoi nous offrons une gamme de programmes d’apprentissage et de développement de la direction GRATUITS conçus pour vous mettre sur la voie du genre de carrière que vous avez toujours envisagé. CE QUE VOUS FEREZ DANS CE RÔLE En tant que Conseiller bilingue Français et anglais de Concentrix travaillant à domicile, vous : Gérer les clients via des appels entrants, des appels sortants ou via Internet en utilisant leur langue préférée (anglais ou Français) Aider les clients à l’aide d’un guide de flux d’appels pour répondre aux questions et résoudre les problèmes Suivre, documenter et récupérer des informations dansles bases de données Investir dans le succès de nos clients en offrant des produits et/ou services supplémentaires VOS QUALIFICATIONS Vos compétences, votre intégrité, vos connaissances et votre compassion sincère apporteront de la valeur et du succès à chaque interaction avec le client. Les autres qualifications pour notre rôle Conseiller bilingue Français et anglais (à distance) comprennent : La capacité de parler couramment l’anglais et Français écrite ou orale. Un diplôme d’études secondaires ou GED Un minimum de six mois d’expérience en service à la clientèle ou en vente pour des postes de vente Un environnement calme et sans distraction pour travailler dans votre résidence pour des postes de travail à domicile Offrir un service exceptionnel Solides compétences en navigation informatique et connaissances en informatique; Familiarité avec iOS et/ou macOS, ou une technologie comparable est préférable Internet haute vitesse et un téléphone intelligent CE QU’IL Y A POUR VOUS L’un de nos énoncés de culture Concentrix dit : « Nous sommes fanatiques de notre membre du personnel. » C’est pourquoi nous investissons considérablement dans notre peuple, notre infrastructure et nos capacités afin d’assurer le succès à long terme de nos équipes et de nos clients. Et nous investirons en VOUS pour vous aider dans votre cheminement de carrière et dans votre développement personnel. Dans ce rôle, vous recevrez également : Salaire de base : $17.00 - $25.00 CAD par heure Possibilités d’incitatifs et de primes de performance Formation rémunérée Un ordinateur de travail, selon le poste, mais n’est pas garanti. Les exigences spécifiques basées sur le poste seront discutées en profondeur avec un recruteur. Régime enregistré d’épargne-retraite, assurance médicale, dentaire, assurance de la vue après 90 jours et un programme d’aide aux employés qui comprend des séances de counseling gratuites, pour répondre aux besoins de chaque membre de l’équipe et bien plus encore. Postulez et parlez à un recruteur dès aujourd’hui! RÉINVENTEZ LA MEILLEURE VERSION DE VOUS ! Si tout cela vous semble être la prochaine étape parfaite de votre carrière, nous voulons avoir de vos nouvelles. Postulez dès aujourd’hui et découvrez pourquoi plus de 300 000 personnes à travers le monde appellent Concentrix leur « employeur de choix » – fièrement unis sous le nom de « One Concentrix ». Les énoncés ci-dessus visent à décrire la nature générale et le niveau de travail effectué par les personnes affectées à ce poste. Il ne s’agit pas d’une liste exhaustive de toutes les responsabilités, tâches ou compétences. Concentrix est un employeur garantissant l'égalité des chances et respecte toutes les lois sur les pratiques d'emploi équitables. Nous nous engageons à fournir un lieu de travail exempt de discrimination et de harcèlement illégaux et à interdire la même chose aux employés, candidats ou autres personnes couvertes par des collègues, des superviseurs, des gestionnaires ou des tiers en fonction de la race, de la couleur, de la religion, de la croyance, du sexe d'une personne. , orientation sexuelle, identité de genre, origine nationale, ascendance, âge, statut d'ancien combattant, handicap non lié aux exigences de l'emploi, origine ethnique, informations génétiques, service militaire, appartenance syndicale, affiliation politique, état civil et grossesse ou autre statut protégé. - Title: Customer Service / Technical Support Representative-Remote (Bilingual: French/English) Location: Ontario, Canada JOB DESCRIPTION The Customer Service / Technical Support Representative-Remote (Bilingual: French/English) works from home and interfaces with customers via inbound/outbound calls and/or via the Internet. This position provides customer service support and resolution of routine problems and questions regarding client products and/or services. REIMAGINE YOUR CAREER Are you looking for a “work from home” career change with a forward-thinking global organization that nurtures a true people-first, inclusive culture and a genuine sense of belonging? Would you like to join a company that earns “World’s Best Workplaces,” “Happiest Employees,” and “Best Companies for Career Growth” awards every year? Then a remote Customer Service / Technical Support Representative (Bilingual: French/English) at Concentrix is just the right place for you! As a remote Customer Service / Technical Support Representative (Bilingual: French/English), you’ll join an organically diverse team from 40 countries where ALL members contribute and support each other’s success and well-being, united as “One Concentrix.” Together, we help the world’s best-known brands improve their businesses through exceptional customer experiences (CX), ongoing innovation, and the most cutting-edge technologies. And due to continued growth, we’re looking for more talented people to join our purpose, people as passionate about providing exceptional customer service experiences as we are. CAREER GROWTH AND PERSONAL DEVELOPMENT This is a great “work from home” opportunity that will allow you to reimagine an all-new career journey and develop “friends for life” at the same time. We’ll give you all the training, technologies, and continuing support you’ll need to succeed. Plus, at Concentrix, there’s real career (and personal) growth potential. In fact, about 80% of our managers and leaders have been promoted from within! That’s why we offer a range of FREE Learning and Leadership Development programs designed to set you on your way to the kind of career you’ve always envisioned. WHAT YOU WILL DO IN THIS ROLE As a Customer Service / Technical Support Representative (Bilingual: French/English) working from home, you will: Handle customers via inbound calls, outbound calls, or through the internet using their preferred language (English or French) Assist customers using a call flow guide to answer questions and solve problems Track, document, and retrieve information in databases Invest in our customers’ success by offering additional products and/or services YOUR QUALIFICATIONS Your skills, integrity, knowledge, and genuine compassion will deliver value and success with every customer interaction. Other qualifications for our Customer Service / Technical Support Representative (Bilingual: French/English) role include: The ability to speak fluent English and French A high school diploma or GED A minimum of six months of customer service experience or hard sales experience for sales positions A quiet, distraction-free environment to work from in your residence for work at home positions Talent for delivering outstanding service Strong computer navigation skills and PC knowledge; Familiarity with iOS and/or macOS, or comparable technology is preferred High speed internet and a smartphone WHAT’S IN IT FOR YOU One of our Concentrix Culture Statements says, “We are fanatical about our staff.” That’s why we significantly invest in our people, our infrastructure, and our capabilities to ensure long-term success for both our teams and our customers. And we’ll invest in YOU to aid in your career path and in your personal development. In this role, you’ll also be provided with: Paid training and performance-based incentives Lucrative employee referral bonus opportunities Company networking and leadership opportunities with organized groups in the following topics: Professional Women, Black Professionals, LGBTQ+ Pride, Ability (Disabilities), and Health and Wellness Registered Retirement Savings Plan; paid PTO and holidays; medical, dental, and vision insurance; and a comprehensive Employee Assistance Program (EAP) Work-from-home convenience with company-supplied technologies Programs and events that support diversity, equity, and inclusion, as well as global citizenship, sustainability, and community support Celebrations for Concentrix Day, Team Appreciation Day, Customer Service Week, World Clean Up Day, #MyOneEarthPromise, and more REIMAGINE THE BEST VERSION OF YOU! If all this feels like the perfect next step in your career journey, we want to hear from you. Apply today and discover why over 300,000 people around the globe call Concentrix their “employer of choice” – proudly united as “One Concentrix.” Location: CAN, ON, Work-at-Home  Language Requirements: French (Required)  Time Type: If you are a California resident, by submitting your information, you acknowledge that you have read and have access to the Job Applicant Privacy Notice for California Residents Concentrix is an equal opportunity employer and complies with all fair employment practices laws. All qualified applicants will receive consideration for employment without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, ancestry, age, veteran status, disability, pregnancy, or other legally protected status. The above statements are intended to describe the general nature and duties of this position and are not intended to be comprehensive. Only qualified applicants who are legally authorized to work in Canada will be considered.Currently, this position may be performed only in the following provinces/territories: AB, BC, MB, NL, NS, ON, PE, QC, and SK.\",\n            \"location\": \"Airdrie, AB\"\n        },\n        {\n            \"id\": \"33A935022BE62D377BD26E89F420478A\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5043e8b26b0e7b50\",\n            \"jobName\": \"Remote- Bilingual Customer Service Representative-Part Time\",\n            \"companyName\": \"Phoenix A.M.D. International Inc.\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694443767851,\n            \"dateOfPosted\": 1694223944672,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We’re looking for aPART TIME Home Based - French & English Bilingual Customer Service Rep.The Bilingual Customer Service Representative is responsible for handling all communication with the end users of our products & programs while providing an exceptional customer experience to ensure that decisions are aligned with the company’s culture.Do You...Speak and write French and EnglishWork well as part of a team that is empathetic, positive, professional with high-energy?Thrive on challenges, and discovering new ways of doing things?Want to be in a job that requires you to work on things outside of your comfort zone?Want to work in an environment where progress is made, and you are the tool that moves things forward?Want to be listened to, and encouraged to use your initiative and creativity?If your answers are yes... THEN WE COULD BE THE WORK PLACE FOR YOU!What you need if you want to be the successful applicant:You learn quickly and get very passionate about getting resultsYou have the ability to effectively & professionally communicate, whether written or verbally in both English and FrenchYou have excellent customer service skills and able to work within a teamYou have excellent organization skillsYou have strong problem solving skillsYou have experience in using Excel, Outlook and WordYou have the ability to multitask and work well in a fast paced environment while under pressureWhat we bring to the table:We are a growing entrepreneurial Canadian Bilingual company in business for over 31 years, led by the 2 entrepreneurs who originally started the business. We provide lifestyle protection programs and services for the furniture, bedding, appliances and electronics retailers across North America, which are designed to enhance the experience of consumers who buy them while creating indispensable profit centers for the retailers who sell them. We are committed to innovation and being the best at what we do. We value our people with the following advantages:Fun Company EventsStrong Charity & Community SupportGreat Environment to Work inPart of a Growing Community in BowmanvilleJob Types: Part-time, PermanentSalary: $18.00 per hourWork RemotelyJob Types: Part-time, PermanentPart-time hours: 15-30 per weekSalary: $17.00 per hourBenefits:Store discountWork from homeSchedule:Day shiftMonday to FridayCOVID-19 considerations:Qualified candidates will need to be fully vaccinated in order to be eligible for this position.-All employees are following COVID protocols Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Language:French and English (required)Work Location: Remote\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"EB6FF5ED135AA2EC75941A290C1E215C\",\n            \"cityName\": \"163 Alberni Highway, Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3c3d42fe6fdf6dbc\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mid Island Liquor\",\n            \"rowSalary\": \"From $17.75 an hour\",\n            \"date\": 1694443752485,\n            \"dateOfPosted\": 1694391393803,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Liquor is looking for part-time Customer Service Representatives at our Central Parksville Liquor Store.Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you!Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in the operations of the store, including but not limited to handling customer transactions, responding to customer questions and concerns in a professional manner, creating displays and stocking shelves, and ensuring store and merchandise are neat and organized.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Representative today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. Previous retail experience is preferred, and you must have a valid Serving it Right Certificate (or be willing to get certified prior to your first day).Who we are:Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve.Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op).We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.Job Types: Permanent, Part-timeSalary: From $17.75 per hourBenefits:Employee assistance programFlexible scheduleOn-site parkingStore discountSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"A03FA86B6044036387A2F12FAD0D8D00\",\n            \"cityName\": \"950 McMaster Way, Kamloops, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e4ef568fc3c433c2\",\n            \"jobName\": \"Inside Sales Customer Service\",\n            \"companyName\": \"Westlund Industrial Supply\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694443169714,\n            \"dateOfPosted\": 1692745101120,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.67094040000001,\n                    \"lon\": -120.3752202\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kamloops\",\n                \"formattedAddress\": \"McMaster Way, Kamloops, BC V2C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Thompson-Nicola\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kamloops\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"WESTLUND, a division of EMCO We offer a fun, fast-paced and dynamic workplace. We work as a team, share core values, and support each other’s growth and development. As our teammate, you will have the opportunity to continually develop your skills through ongoing training, have the opportunity to be innovative and try new things, and work alongside passionate colleagues with diverse backgrounds and experiences. We are a team of enthusiastic individuals who are dedicated to meeting and exceeding the needs of the customers we serve.Job DescriptionAs an Customer Service Representative, you will be responsible for interacting with customers primarily over the phone and by email. You will provide excellent customer service to generate and close sales and meet or exceed sales and gross profit targets to increase profit sharing while building long lasting loyal customer relationships.Additional duties will include:Process sales orders and turn quotations into orders through customer interactions, primarily over the phoneMaintain relationships with established key accounts and ensure that their requests are being metUse interpersonal skills to strengthen relationships with existing customers and increase market shareAct as a project manager (as needed) for large projects, which includes keeping detailed records of lead times and communicating lead time updates to the customerProspect and develop new customers using outbound calling campaignsMeet or exceed the Profit Centre’s gross profit and sales targetsAssist counter sales during peak hours and continue to drive business through face-to-face customer interactionsInvestigate and resolve customer issues such as pricing deductions and product returnsExpedite customer material with vendors when requiredFollow up with customers on quotes and outstanding ordersSupport the Outside Sales and Counter Teams with customer orders and issuesBe an integral part of the team supporting all activities that occur at the Profit CentreCommunicate to the Profit Centre Manager and Credit Department any changes in a customer’s business that might cause a credit riskPerform other tasks as requested by the Profit Centre ManagerQualificationsCollege and/or University degreeA minimum of 1 year of experience in customer service or inside sales/contractor experience preferredProficient in the use of Microsoft Office softwareOutstanding customer service and telephone skillsAbility to prospect new customers and increase sales with existing accountsPossess a high level of attention to detail and strong organizational abilities; must be able to multitask and balance many different deadlinesStrong written and verbal communication skills to build and maintain strong working relationships with customers, vendors, and teammatesAbility to identify customer requirements and provide profitable solutions and close the saleAble to learn and operate the applicable software system used to process ordersIntermediate math skillsPreferred Skills:Previous experience with or knowledge of weld fittings, pipe , valves and other products sold at the Profit CentreExperience using ERP SystemAdditional InformationWhy Join Our Team?EMCO Corporation is one of Canada’s largest integrated wholesale distributors of plumbing, HVAC, waterworks, and industrial products for the construction industry. We have endless opportunities for you to grow and develop in your career and a culture that prides itself in supporting you every step of the way!In addition, we will offer you:Great mentors and on-the-job trainingGrowth potential with competitive salary, benefits, and profit sharingA career with a solid, stable company with strong core valuesParticipation in our pension plan with employer contributionsWork-life balanceJob Type: Full-timePay: $18.00-$22.00 per hourBenefits:Company pensionDental careExtended health careLife insuranceProfit sharingRRSP matchWellness programSchedule:Monday to FridaySupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Kamloops, BC V2C 6K2: reliably commute or plan to relocate before starting work (required)Experience:Sales: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Mcmaster Way, Kamloops, BC\"\n        },\n        {\n            \"id\": \"40E3675B714C6FE9A50B019F4E768552\",\n            \"cityName\": \"Sydney, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7b90eac002dcf5c0\",\n            \"jobName\": \"Cashier, Customer Service\",\n            \"companyName\": \"Pipers & Puffs Smoke Shop Limited\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694442583770,\n            \"dateOfPosted\": 1694442583580,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.1367899,\n                    \"lon\": -60.19422399999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sydney\",\n                \"formattedAddress\": \"Sydney, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Cape Breton Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sydney\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsScreening questions Are you available for shift or on-call work? Are you available for the advertised start date? Are you currently legally able to work in Canada? Do you have previous experience in this field of employment?Work Term: PermanentWork Language: EnglishHours: 20 hours per week\",\n            \"location\": \"Sydney, NS\"\n        },\n        {\n            \"id\": \"ABE020D3EC211417A98A530D29B39123\",\n            \"cityName\": \"Saint John, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=95c705721e917f5f\",\n            \"jobName\": \"Customer Service Agent Outbound (Remote) - New Brunswick\",\n            \"companyName\": \"National Diabetes Trust\",\n            \"rowSalary\": \"$15.70 an hour\",\n            \"date\": 1694442491618,\n            \"dateOfPosted\": 1694239175629,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our Organization The National Diabetes Trust is Canada’s largest charitable clothing and small household good collection service. With more than 5,000 donations bins and an active home pick-up service in communities across Canada (excluding Quebec), we collect unwanted gently used clothing and household items, using them to raise much-needed funds for Diabetes Canada.  Each year, the program diverts more than 100 million pounds of clothing and household items from landfill sites across Canada. As an employee on the National Diabetes Trust team, you are part of our national coverage in 2,500 communities, with 28 operations and 100 trucks. Join a team that is making a difference raising money for life altering charitable programs, all while helping the environment. What We Offer:Work from the comfort of your own homeEmployee Assistance Program (EAP)Registered Pension Plan (100% Employer-paid) once eligibility criteria are metCorporate discounts through Perkopolis, Value Village and GoodLife FitnessHours of Work* This role will work up to 29 hours per week in 6-hour daily time blocks, including weekends. A consistent schedule will be developed in collaboration with operational needs.  About the Outbound Customer Service Agent Role Reporting to the Virtual Contact Centre Supervisor, this role is responsible for soliciting, scheduling and confirming donation pick ups of reusable clothing and small household goods from the public. While there is no sales component to this role – we are seeking outgoing individuals with a focus on providing a “best in class” customer experience. Highlights of the role include:To solicit, schedule and/or confirm donations of reusable clothing and miscellaneous itemsThis is accomplished by reading from a standardized script to verify donor informationTo meet or exceed KPI targets and/or productivity standards as outlined by the SupervisorTo understand and promote the mission of Diabetes Canada and the National Diabetes Trust to the general publicProvide potential donors with a high level of customer service by demonstrating a professional manner, discipline and strong organizational skillsInform the Supervisor of any system or process discrepanciesMaintain accurate and up to date recordsAttend all scheduled shifts, training, and meetings as determined by the SupervisorMaintain confidentiality of donor informationAdditional duties as required, ensuring the effective operation of the Virtual Contact Centre function About You The selected candidate for this role will meet the following minimum requirements: Minimum High School Diploma6+ months of experience in customer service and/or a call centre environmentMust have in working order at all times a PC home computer, direct connect (wired) high speed internet (no Wi-Fi/router), a USB noise cancelling headset, and either an All-in-One Printer (copier, scanner, printer) OR the ability to sign documents electronically.Must have full availability between the hours of Monday-Friday 3pm-9pm EST and Saturdays and Sundays 11am -5pm EST.Strong computer skills and experience with computer databases (mouse, keyboarding, opening/closing programs, locating files, installing/uninstalling programs, updating software, basic troubleshooting)Intermediate web and email skills (internet, downloading, logging on/off, clearing history, sending, and receiving email messages, (attaching/saving/opening files), message boards, instant messagingDisciplined and organized self-starter who can succeed in a fast-paced, high volume call environment, while being able to manage multiple tasksBasic competency in Microsoft Office and AdobeAdvanced Oral and Written communication -  Diversity, Equity and Inclusion Statement At National Diabetes Trust, we are guided by our values of Accountability, Teamwork, Integrity, and Respect. We believe in the importance of Diversity, Equity and Inclusion (DEI). We are committed to bringing people together in a respectful, inclusive and supportive environment, no matter their age, gender, identity, race, ethnicity, religion, income, sexual orientation, or where they live. In July of 2020, we signed the BlackNorth Initiative CEO pledge and will hold ourselves accountable in meeting those commitments.  How to Apply Must be legally eligible to work in Canada and, where applicable, must have a valid work permit or study permit that allows the candidate to fulfill the requirements of the role.NDT welcomes applications from all qualified candidates, including women, Indigenous peoples, persons with disabilities, and members of visible minorities. We value a diverse workforce that reflects the communities we serve.We are committed to accommodating people with disabilities as part of our hiring process. If you have special requirements, please advise us during the recruitment process.We thank all interested applicants; however, only those selected for an interview will be contacted. INDNDTL\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"2A9FE02CDD0712CB2403C14D299397A4\",\n            \"cityName\": \"1101 Rutherford Road, Vaughan, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b8239aaf5b11eaf5\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"4906 - Starbucks - Rutherford & Thornhill Wood\",\n            \"rowSalary\": \"From $17.25 an hour\",\n            \"date\": 1694442429172,\n            \"dateOfPosted\": 1686131653556,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.82490079999999,\n                    \"lon\": -79.56353349999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Rutherford Rd, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Working in a Starbucks® store is different from any other job. You are creating moments of connection with our customers every day, all around the world. You will handcraft delicious beverages and build relationships with our customers and with your fellow partners. We offer great benefits and an environment that is truly welcoming.Job Types: Full-time, Part-time, PermanentPart-time hours: 20 per weekSalary: From $17.25 per hourBenefits:Company pensionDental careDisability insuranceDiscounted or free foodEmployee assistance programEmployee stock purchase planExtended health careFlexible scheduleLife insurancePaid time offProfit sharingRRSP matchStock optionsStore discountTuition reimbursementVision careWellness programFlexible Language Requirement:English not requiredSchedule:8 hour shiftDay shiftHolidaysMonday to FridayNight shiftWeekend availabilitySupplemental pay types:TipsCOVID-19 considerations:wearing masks is optional ,however we follow ontario Health canada guidance .Work Location: In person\",\n            \"location\": \"Rutherford Road, Vaughan, ON\"\n        },\n        {\n            \"id\": \"37BD7757F98CBD1BCA09FE57E7205904\",\n            \"cityName\": \"Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b20b5b725ac0dc88\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Mackay's Auto & Custom Limited\",\n            \"rowSalary\": \"$35,000–$45,000 a year\",\n            \"date\": 1694442372693,\n            \"dateOfPosted\": 1694214889909,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 1 year to 2 yearsExperience: 7 months to less than 1 yearor equivalent experience Tasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Issue receipts and other forms Maintain records and statistics Perform general office duties Receive payments Computer and technology knowledge Internet MS Excel MS Outlook MS Windows Security and safety Basic security clearance Work conditions and physical capabilities Attention to detail Fast-paced environment Work under pressure Screening questions Are you available for the advertised start date? Are you currently legally able to work in Canada? Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Health benefits Dental plan Health care plan Paramedical services coverage Vision care benefits Long term benefits Group insurance benefits Life insuranceWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"7CD81D1CF24165B9BA8C4B8E13DBCF50\",\n            \"cityName\": \"353 Market Avenue, Grand Forks, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f0169f6e7c30f968\",\n            \"jobName\": \"Barista/Customer Service/Kitchen\",\n            \"companyName\": \"The Board Room Cafe\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694442237124,\n            \"dateOfPosted\": 1693590416836,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.032146,\n                    \"lon\": -118.4380813\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grand Forks\",\n                \"formattedAddress\": \"Market Ave, Grand Forks, BC V0H 1H0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kootenay Boundary\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grand Forks\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"- Maintain regular and consistent attendance and punctuality, with or without reasonable accommodation- Available to work flexible hours that may include early mornings, evenings, weekends, and holidays- Meet store operating policies and standards, including providing quality beverages and food products, cash handling and store safety and security- Engage with and understand our customers through clear and pleasant communication- Able to perform many tasks within the store during each shiftJob Types: Full-time, Part-timePart-time hours: 15-20 per weekSalary: From $16.75 per hourExpected hours: 15 – 35 per weekBenefits:Casual dressDiscounted or free foodFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftDay shiftHolidaysOn callWeekends as neededSupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Market Avenue, Grand Forks, BC\"\n        },\n        {\n            \"id\": \"DD1330D49914F5CEF8AD833DBE52BA51\",\n            \"cityName\": \"Par2Pro in Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=506594c2734518e5\",\n            \"jobName\": \"Full-Time Golf Simulator Industry Customer Service Rep In South Central Edm\",\n            \"companyName\": \"Par2pro\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694442137984,\n            \"dateOfPosted\": 1692745686496,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Do you enjoy talking to people? More important, do you enjoy helping people? Even more important, do you enjoy working as part of a team where everyone's ideas are valued? If this sounds like you, please submit your resume!We are a fully Canadian owned company that, for the past 15 years, has been custom designing and selling fully built out residential and commercial grade golf simulator and analyzer rooms to clients all around the world. During this time we have built a reputation of trust and quality within the golf simulator industry.We are searching for a mature person who understands what \\\"Great\\\" customer service truly is and knows how to provide it. Our clients are of vital importance to us which is why we work so hard to provide them with the absolute best experience possible. Our company belief is not to push or \\\"sell\\\" anything to our clients. We instead answer their questions and help guide them to the best golf simulator system that fits both their needs and budget.As this Full Time Customer Service Representative (CSR) position is typically our client's first impression of our company, it is most important that you are professional, polite, accurate and thorough. We are not a typical walk-in retail store, meaning the CSR's mainly handle incoming phone call and email inquiries.This position has the ability to be promoted to Golf Simulator Product specialist whom will have gained extensive knowledge and experience from reading, watching, and using the systems both online and in-house.Some of the tasks and required skills for this important role are:- Having at least 2 full years of previous work related experience using CRM software and similar programs, plus be able to use a Windows computer and MS Office programs efficiently.- Accurate and detailed data entry with a minimum 60 wpm typing speed is needed.- You must be able to read, write/type & speak English fluently & flawlessly as your first language.- Any experience with and/or knowledge of Golf and Golf Simulators would be a great asset.- French bilingual ability would also be a great asset.- Have reliable transportation to and from our office location.You must take pride in your work and love being on the front line for our business. You are an energetic, positive minded, hard-working, very detailed and accurate, friendly person with a great attitude. It is extremely important that you are able to work independently and be willing to go the extra mile for our clients and our company.You are required to complete the Indeed Questions and Assessments emailed to you upon submitting your resume prior to being considered for this job.Only candidates who already live locally in Edmonton and the immediate surrounding area will be considered.We look forward to hearing from you, however only those we are interested in will be contacted.Good Luck!Job Types: Full-time, PermanentSalary: $20.00-$24.00 per hourBenefits:Casual dressCompany eventsDental careDisability insuranceExtended health careLife insuranceOn-site parkingStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridaySupplemental pay types:Bonus payCOVID-19 considerations:All current AHS health restrictions are in place.Application question(s):Why do you feel that you would be a good fit for this position?Experience:Phone & Email Customer Service: 3 years (required)Work Related QuickBooks (or equivalent)): 2 years (required)Work Location: In person\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"918B2E3AD4AFFEFDB11AA0E33F7F60F4\",\n            \"cityName\": \"6461 Metral Dr, Nanaimo, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e430e586a16eae07\",\n            \"jobName\": \"Customer Service/Pizza Maker\",\n            \"companyName\": \"Domino's Pizza | Ptza Nation Bc\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694442134025,\n            \"dateOfPosted\": 1693590277573,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.22391100000001,\n                    \"lon\": -124.0426174\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Nanaimo\",\n                \"formattedAddress\": \"Metral Dr, Nanaimo, BC V9T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Nanaimo\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Domino's Pizza is hiring immediately for Customer Service Representatives (Pizza Cook/Team Member) to join their team! Job type:Part time, Permanent We are searching for qualified customer service reps with personality and people skills. We're growing so fast it's hard to keep up, and that means Domino's has lots of ways for you to grow (if that's what you want), perhaps to management, perhaps beyond. Whether it's your hobby, main-gig, or supplemental job, drop us a line. We're bound to have just the thing for you. We take pride in our team members and our team members take pride in Domino's Pizza! Being the best pizza delivery company in the world requires exceptional team members working together. At Domino's Pizza, our people come first! As part of our crew, your responsibilities will include: Stocking ingredients from delivery area to storage, work area, walk-in cooler. Preparing products Receiving and processing telephone orders. Cleaning equipment and facility approximately daily. Benefits of working at Domino's Pizza: Flexible schedules Competitive wages for all Team Members Store discounts Fun working environment Additional pay on top of wage with tip sharing program Domino's is an equal opportunity employer. REQUIREMENTS At Domino's Pizza, Our Most Important Ingredient is Our People! We offer employment opportunities within our franchise stores. Take the first step in joining our team, and you'll find opportunities you won't find anywhere else in the industry!\",\n            \"location\": \"Metral Drive, Nanaimo, BC\"\n        },\n        {\n            \"id\": \"C8479F5406EA626F5466635B2014B240\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=073f4dacf69c1a8a\",\n            \"jobName\": \"Customer Service/Gamemaster\",\n            \"companyName\": \"Escape Hour\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694442103145,\n            \"dateOfPosted\": 1694215067923,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Escape Hour is one of the premier escape rooms. With, interactive game masters, full sound and set design, these games boast a one of a kind, immersive escape game experience.Who we are looking for:Great Game Masters are the key to our customers having an exceptional memory inducing experience; so stellar customer service skills are mandatory. Game Masters create the energy and excitement necessary for customers to begin their adventure while calming fears and providing the help and clarity teams need to have a one of a kind experience. Game Masters maintaining a professional, service-oriented focus and deliver flawless experiences to our customers by running our live events.Key Qualifications:Excellent customer service skills (total customer oriented focus)Positive and energeticSolid work ethicStrong Presentation skillsStrong attention to detailGreat communication skills and practices (verbal and written)Invigorated by constant interactions with customersPersonable, able to peak customers interest to their event settingAble to handle feedback, coachableInterested in personal growth and learningMatureTeam playerAbility to set up decorationsAdditional details:Game Masters greet customers and deliver energetic pre-game introductions (prime customers) while clearly explaining safety rules and other guidelines. When the game is on, Game Masters remotely monitor customers, provide assistance when necessary, debrief teams when games end, take group photos, and reset event spaces for the next group. In addition, with experience Game Masters are called upon to help maintain certain game props and can serve as team leaders.Game Masters are the face of the company, and are proud to represent Escape Hour while receiving great satisfaction from seeing customers thrilled by their experience with us.If you feel that Escape Hour offers an opportunity and culture in which you will excel, please email us with your resume and why you are the perfect candidate for Escape Hour.Saturday/Sunday availability is a must.Job Types: Full-time, Part-time, PermanentPart-time hours: 20 per weekSalary: $15.00-$16.00 per hourFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftEvery WeekendWeekends as neededCOVID-19 considerations:Following all AHS guidelinesApplication question(s):Are you available to work every Friday, Saturday, Sunday?Education:Secondary School (preferred)Experience:customer service: 2 years (required)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"404DCED84C0CF25EB03DE508F85CC2D8\",\n            \"cityName\": \"169 Hurontario Street, Collingwood, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9c05b66060cdcc5d\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Stuart Ellis Pharmacy\",\n            \"rowSalary\": \"From $17.55 an hour\",\n            \"date\": 1694441939502,\n            \"dateOfPosted\": 1692721232496,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.4915959,\n                    \"lon\": -80.21520579999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Collingwood\",\n                \"formattedAddress\": \"Hurontario St, Collingwood, ON L9Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Collingwood\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a locally owned and operated family Pharmacy located in downtown Collingwood. Stuart Ellis IDA Pharmacy has been serving the community for over 75 years!We are looking to hire a Full Time/Part Time Cashier/Customer Service Representative to join our team.Duties include:-Experience in Retail/Customer Service work experience preferred.-Operate a cash register with prompt and accurate processing.-Merchandising products and setting up displays as needed.-Must possess excellent communication and customer service skills.-Stocking shelves, cleaning and checking expiration dates.-Be able to Multitask.-Be Flexible, Reliable and Trustworthy.-Available to work some evenings and weekends (evenings are until 7pm on weekdays and 5pm on weekends).-We offer benefits and an employee discount program.Job Types: Full-time, Part-timeSalary: From $17.55 per hourWork setting:Drug storeApplication deadline: 2023-09-30\",\n            \"location\": \"Hurontario Street, Collingwood, ON\"\n        },\n        {\n            \"id\": \"CB5CD596617E9529D8E50C8F4089F441\",\n            \"cityName\": \"IGA Penticton in Penticton, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4c1282fdb5ea00bf\",\n            \"jobName\": \"Deli Clerk/Customer Service\",\n            \"companyName\": \"Iga Penticton\",\n            \"rowSalary\": \"Up to $20 an hour\",\n            \"date\": 1694441760278,\n            \"dateOfPosted\": 1668577364280,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.4991381,\n                    \"lon\": -119.5937077\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Penticton\",\n                \"formattedAddress\": \"Penticton, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Okanagan-Similkameen\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Penticton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"IGA Penticton is seeking highly motivated individuals to join our Deli Management TeamThe candidates must posses a passion for Customer Service while working in a Team EnvironmentThe positions will be either part time or full time depending on the candidates intentions.Experience is the retail food service industry in an asset, however training will also be provided.Applicants are required to work evenings and weekends.Job Types: Part-time, Full-timeSalary: Up to $20.00 per hourBenefits:Dental careDiscounted or free foodExtended health careFlexible schedulePaid time offTuition reimbursementSchedule:8 hour shiftCOVID-19 considerations:The store has a regulated Worksafe BC Covid-19 plan in place to protect the safety of our Employees and Customers\",\n            \"location\": \"Penticton, BC\"\n        },\n        {\n            \"id\": \"3F76871B8D216E7EF2754C67F3BC00A2\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=953b869bd414f4f4\",\n            \"jobName\": \"Bilingual Customer Service Representative (Hybrid)\",\n            \"companyName\": \"Belimo Americas\",\n            \"rowSalary\": \"$48,000–$58,000 a year\",\n            \"date\": 1694440562815,\n            \"dateOfPosted\": 1692737489189,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Belimo is a global leader in the development, production and marketing of actuator solutions for controlling heating, ventilation and air conditioning systems. Actuators, control valves and sensors make up the company's core business.JOB SUMMARYThe Bilingual Customer Service Representative is the primary contact between Belimo Customer Service and our external customers. This position provides timely responses to customer correspondence, completes the order fulfilment process and assists in closing out any action items from customer communications.COMPANY'S MISSION AND VALUESThe objectives of this position are fully integrated to the objectives of the Company’s Mission and Values. It is the responsibility of all employees to perform their duties in accordance with Company Policy.REPORTING STRUCTUREThe Bilingual Customer Service Representative is part of the Customer Service Team and reports to the Office Manager, Customer Support. This position bear’s full responsibility for all agreed upon goals and objectives.JOB RESPONSIBILITIESReceive direct correspondence from external customers and Belimo outside sales staff. Provide timely responses and assist in closing out any action items from such communications.Same day data entry of customer purchase orders into the ERP system. Order receipt can come in the form of e-mail, fax, or phone.Provide same day order confirmations and clarify order discrepancies.Support order status requests, credits/debits, quotes, answering customer questions and limited processing of return material authorizations.Expedite customer orders and follow up to ensure completion.Provide support of SAP ERP system to internal users regarding customer service issues.Generate customer service monthly metrics (e.g. SAP order entry & phone statistics) and reports to ensure customer satisfaction.Perform other duties to support Sales and marketing as needed (e.g. Trade show coordination, Canada customer newsletter content.)REQUIREMENTSAt least 2 years of direct customer service experience in a fast paced order environment is preferred.A background in supporting manufacturing processes or technical products is a plus.Minimum level of education is an Associate’s Degree or an applicable business program certification.Ability to interpret complex business documents including customer purchase orders.Ability to professionally communicate with customers both verbally and in writing in both English and French.Proficient use of personal computer, fax machine, and other supporting business equipment is a must.Proficient use of the Microsoft Suite of products (Outlook, Word, and Excel).Proficient typing skills with high level of accuracy.Experience with Microsoft Lync a plus.High degree of time management and organization required.Must have excellent interpersonal skills and maintain both a proactive and positive attitude.Must be Bilingual (English/French).We offer a competitive salary and an excellent benefits package including a performance bonus.Job Type: Full-timePay: $48,000.00-$58,000.00 per yearBenefits:Casual dressCompany eventsDental careDisability insuranceEmployee assistance programEmployee stock purchase planExtended health careLife insuranceOn-site parkingPaid time offRRSP matchTuition reimbursementVision careWellness programWork from homeSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"CB921E98A1F631F74C65E2ABEF728CF2\",\n            \"cityName\": \"360 Norwich Ave, Woodstock, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2bcb23c9ed21eadb\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Domino's Pizza Woodstock\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694440421948,\n            \"dateOfPosted\": 1693588666494,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1201853,\n                    \"lon\": -80.73938389999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Woodstock\",\n                \"formattedAddress\": \"Norwich Ave, Woodstock, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Oxford County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Woodstock\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Domino's Pizza is now hiring Customer Service RepresentativesWe are happy that you are interested in joining the Domino’s team!Customer Service Representatives (CSR) are primarily responsible for providing exceptional customer service, making great Domino’s Pizza products and maintaining cleanliness of the store. CSR’s at Domino’s work in a team environment and they are expected to be positive and productive team players. Every CSR plays a part in helping the store achieve its goals for customer service, sales growth, operational reviews and cost management, therefore, their attention to these targets is paramount.The responsibilities are guided by the Domino’s Pizza of Canada’s policies and procedures. The standards can in some instances be modified by Empire Pizza or the CSR’s supervisor.Other responsibilities may include being a shift leader. Shift leaders are responsible for completing all shift tasks as laid out in the policies, manage other team members, balance finances and inventory and train team members. Shift leaders may be required to attend workshops to further develop their skills.CSR’s are required to attend to their scheduled shifts on-time, in complete uniform and with positive attitudes. During some shifts, the CSR may be required to help promote the business and do some local store marketing.Although schedules are typically posted a few days early, CSR’s may be required to come to work on short notice or perform additional tasks outside of this description.Job Type: Part-timePart-time hours: 10-30 per weekSalary: $15.50-$16.50 per hourExpected hours: 10 – 30 per week\",\n            \"location\": \"Norwich Ave, Woodstock, ON\"\n        },\n        {\n            \"id\": \"54DC58B5B3AE6C34F8F9DDCDE31DEF52\",\n            \"cityName\": \"Trigger Industries Inc in Crossfield, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b21e68cff72155d7\",\n            \"jobName\": \"Automotive Product Advisor And Customer Service Representative\",\n            \"companyName\": \"Trigger Industries Inc\",\n            \"rowSalary\": \"$22–$28 an hour\",\n            \"date\": 1694440374547,\n            \"dateOfPosted\": 1693595912636,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.4311767,\n                    \"lon\": -114.0260774\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Crossfield\",\n                \"formattedAddress\": \"Crossfield, AB T0M 0S0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Crossfield\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Trigger Industries is a busy manufacturing company specializing in designing and building custom truck parts. We are in need of a personable and knowledgeable individual to run our front end.Roles and Responsibilities:Advising customers on products and fitment. Educating on custom optionsProcessing ordersAnswering customer questions via phone, email and social media messagesEnsuring orders are fulfilled and shipped correctly and in a timely mannerSocial Media management may be included, based on the candidateQualifications:2+ years of experience in customer serviceMust be organized, detail oriented and able to multitaskExcellent communication with customers and teamAutomotive and customization knowledge and experience is an assetWhy work at Trigger?Competitive compensation based on experienceFull time position Monday to Friday 7am - 5pmWorking in a friendly team environmentWork RemotelyNoJob Type: Full-timeSalary: $22.00-$28.00 per hourExpected hours: 40 per weekSchedule:Monday to FridayExperience:Automotive Industry: 1 year (preferred)Customer Service: 1 year (preferred)Licence/Certification:Drivers License (required)Work Location: In person\",\n            \"location\": \"Crossfield, AB\"\n        },\n        {\n            \"id\": \"78470C0E6D6D7F887ECC167F846901BC\",\n            \"cityName\": \"1653 Boul Des Promenades, Saint-Hubert, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=481fbe0d31cabfc4\",\n            \"jobName\": \"Caissier(Ère), Service à La Clientèle / Cashier (27), Customer Service\",\n            \"companyName\": \"Meubles Rd\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694440363070,\n            \"dateOfPosted\": 1692714840826,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5039691,\n                    \"lon\": -73.3833305\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Longueuil\",\n                \"formattedAddress\": \"Bd des Promenades, Longueuil, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Longueuil\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Viens faire partie des meubles!Plaisir : Ici, on meuble notre quotidien avec plaisir!Autonomie : Ici, on ne s’enfarge pas dans les fleurs du tapis!Débrouillardise : Ici, on assemble des meubles, même sans plan!Innovation : Ici, on ne déplace pas juste des meubles, on déplace des idées!Développement durable : Ici, on met la table pour un avenir meilleur!Pourquoi tu nous diras ? Parce que des choses merveilleuses t’attendent : une équipe de feu, une culture d’entreprise unique, du plaisir garanti, des possibilités de progression, un salaire compétitif, des avantages sociaux qui répondent à tes besoins, des programmes de santé et bien-être, de la conciliation travail-famille, de la reconnaissance à la saveur RD, des rabais employés et des activités sociales hautes en couleur!Voici ce que nous te proposons :Accueillir la clientèle avec le sourire et répondre aux demandes des clients au besoin;Répondre au téléphone et aux courriels;Garder son environnement de travail propre et dégagé;Préparer les contrats et veiller à la facturation, à l’aide du système informatique (Meublex);Assurer le suivi des dossiers;Balancer la caisse et le TPV;Voir à l’affichage des prix en magasin;Dynamique, débrouillarde, enthousiaste, vive d’esprit et autonome;Possédant beaucoup d’entregent;Calme, polie et courtoise;Possédant des connaissances en informatique;Ayant de l’expérience pertinente reliée au service à la clientèle et être reconnue pour son professionnalisme et son excellente approche client;Tu te reconnais? Joins-toi aux meubles, on a gardé une place juste pour toi!___________________________________________________________________Come be part of the furniture!Pleasure: Here, we furnish our daily lives with pleasure!Autonomy: Here,we don’t get caught up in insignificant details!Resourcefulness: Here, we assemble furniture even without a plan!Innovation: Here, we don’t just move furniture, we move ideas!Sustainable development: Here, we set the table for a better future!Why you say? Because marvellous things are waiting for you: a team on fire, a unique business culture, guaranteed pleasure, advancement opportunities, a competitive salary, benefits that answer your needs, health programs, work and family balance, recognition with an RD flavor, employee rebates on our products and fun social activities!Here is our proposition to you:● Welcome customers with a smile;● Handle queries from the customers if need be;● Answer the phone (according to our protocol) and emails;● Contribute to a great ambiance in the store;● Keep a clean and unobstructed workspace;● Prepare contracts and take care of invoicing, using our operating software (Meublex);● Follow up on files;● Balance the cash and the POS terminal;● Display in-store prices;● Classify documents;● Provide excellent customer service;● Make sure that the company objectives and policies are implemented;● Show a dynamic, resourceful, enthusiastic, bright and autonomous personality;● Have great interpersonal skills;● Be calm, polite, and courteous;● Have computer skills and knowledge;● Have relevant experience in regards to customer service and be known for his/her professionalism and excellent customer approach;● Experience with the Meublex operating system (an asset);You recognize yourself? Join our furniture, we kept a place just for you!Type d'emploi : Temps plein, PermanentSalaire : 16,00$ à 20,00$ par heureAvantages :Réductions TarifairesStationnement sur placeJours de travail :Toutes les fins de semaineQuarts de travail :Quart de jourLieu du poste : En présentiel\",\n            \"location\": \"Boul Des Promenades, Saint-Hubert, QC\"\n        },\n        {\n            \"id\": \"8F98868A03921787015181C1A64F4EA3\",\n            \"cityName\": \"Greater Toronto Area, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dbffbd227b83def4\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Bilingualsource\",\n            \"rowSalary\": \"$21–$26 an hour\",\n            \"date\": 1694438188214,\n            \"dateOfPosted\": 1693589315886,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.0383744,\n                    \"lon\": -79.1999949\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Greater Toronto Area, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Opportunity: Bilingual French Customer Service (Recent Grad)Are you a recent graduate with a strong command of both English and French? Are you looking to kick-start your career in a dynamic and diverse industry? We have an exciting opportunity for you!Position: Bilingual French Customer ServiceLocation: Greater Toronto Area (GTA)- Mississauga, Brampton, North York, Scarborough, Markham, Vaughn and surroundingsExperience: A few years of experience in customer service, including retail, and preferably in fields such as Insurance, Finance, Investment, or related industries.Education: University degreeWork Status: Canadian Citizenship or Permanent Residency- No student Visa for now.About Us:We are a leading company in the fields of Insurance, Finance, Investment, and more. Our team is committed to providing top-notch customer service and building lasting relationships with our clients. We value diversity, innovation, and excellence in all that we do.Role Overview:As a Bilingual French Customer Service representative, you will play a vital role in delivering exceptional service to our clients. You'll have the chance to utilize your bilingual communication skills while assisting clients with their inquiries, resolving issues, and ensuring their overall satisfaction. This role offers a supportive environment for career growth and development.Key Requirements:Strong proficiency in both English and French (spoken and written)Previous experience in customer service, including retail, and ideally in fields like Insurance, Finance, or InvestmentUniversity degree completedCanadian Citizenship or Permanent ResidencyResiding in the Greater Toronto Area (GTA)What We Offer:Competitive salary ranging between $45,000 - $55,000, depending on experience and skillsProfessional development opportunitiesCollaborative and inclusive work environmentOpportunity to work with industry expertsHow to Apply:If you are a motivated and bilingual recent graduate with a passion for providing outstanding customer service, we want to hear from you! Please submit your resume along with a brief cover letter detailing your relevant experience to farzaad.gopal@bilingualsource.comNote: Only candidates selected for an interview will be contacted.Join our team and embark on an exciting career journey with us. Apply today!Job Types: Full-time, PermanentSalary: $21.00-$26.00 per hourBenefits:Company eventsCompany pensionDental careEmployee stock purchase planExtended health careLife insurancePaid time offRRSP matchTuition reimbursementVision careSchedule:8 hour shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Greater Toronto Area, ON: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Language:French (required)Work Location: In personExpected start date: 2023-09-04\",\n            \"location\": \"Greater Toronto Area, ON\"\n        },\n        {\n            \"id\": \"40FCFB621AFCD0E66DCF8EDEA3E59E4F\",\n            \"cityName\": \"Terra Recruitment Inc. in Bradford, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8331b6c4f462a926\",\n            \"jobName\": \"Customer Service & Marketing Coordinator\",\n            \"companyName\": \"Terra Recruitment Inc.\",\n            \"rowSalary\": \"$50,000–$55,000 a year\",\n            \"date\": 1694438152579,\n            \"dateOfPosted\": 1693590653738,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.11098579999999,\n                    \"lon\": -79.5794265\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bradford West Gwillimbury\",\n                \"formattedAddress\": \"Bradford, Bradford West Gwillimbury, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bradford West Gwillimbury\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are hiring a dynamic Customer Service & Marketing Coordinator specializing for our client’s manufacturing company. You'll lead our online presence, engage audiences, and support the customer service department.Responsibilities:Develop & implement a cohesive social media strategy.Manage content across platforms and monitor trends.Craft compelling content including visuals and copy.Collaborate with design for impactful assets.Assist in planning & executing campaigns and promotions.Ensure seamless cross-team coordination.Foster online communities, engage with followers.Manage reviews for positive brand reputation.Track KPIs, provide reports, and propose improvements.Use data to refine strategies.Collaborate with customer service for issue resolution.Support customer service department adhoc when neededLeverage social media to address customer inquiries.Additional duties as required from time-to-timeQualifications:Bachelor's degree in Marketing or related field.2+ years of social media & digital marketing experience.2+ years of customer service experience preferably in a manufacturing settingProficiency in social media management tools.Strong communication & organizational skills.Creativity & adaptability in a fast-paced environment.We appreciate the interest from all candidates; however, we will be contacting only those that best fit our client’s requirements.Terra Recruitment welcomes and encourages applications from people with disabilities. Accommodations are available on request for candidates taking part in all aspects of the selection process.Job Type: Full-timeSalary: $50,000.00-$55,000.00 per yearBenefits:Extended health careSchedule:Monday to FridayAbility to commute/relocate:Bradford, ON L3Z 0Z9: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:Marketing/Social Media: 2 years (preferred)Customer Service: 2 years (preferred)Work Location: In person\",\n            \"location\": \"Bradford, ON\"\n        },\n        {\n            \"id\": \"5A4F08D6EF0A62A50A1355D67EDBCC68\",\n            \"cityName\": \"70 Powell Dr, Carbonear, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dd149cb011843154\",\n            \"jobName\": \"Customer Service And Sales Associate\",\n            \"companyName\": \"Advance Auto Care\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694437060411,\n            \"dateOfPosted\": 1692737251176,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.7282072,\n                    \"lon\": -53.2341359\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Carbonear\",\n                \"formattedAddress\": \"Powell Dr, Carbonear, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Carbonear\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Advance Auto Care is looking for a Service Advisor to join our team. If you are an energetic and motivated individual with a positive attitude, a dedication to providing exceptional customer service and a desire to succeed, we would love to have you!The Service Advisor's major responsibility is to satisfy customers by providing exceptional customer service, and expediting the repair and service of their vehicles within an expected length of time and at an expected cost. This position has a competitive monthly incentive structure.Some responsibilities:Is responsible for establishing rapport and trust with customers.Meet and greet customers and complete check-in process.Write repair orders.Be familiar with the required services of all products and suggests the required maintenance at each interval.Documents vehicle problems by listening to customers describe them and by asking probing questions.Maintains extensive contact with customers, phoning to provide estimates on service and repairs before jobs are begun, explaining the appointments/scheduling systems to customers, and establishing with customers the method of payment for repairs (cash, warranty, etc.).Constantly communicates with Technicians to obtain information on needed vehicle repairs and to order parts as required from suppliers.Recommends additional maintenance and repair services to customers when appropriate.Capable of working independently, managing his or her time and workflow.Involves patiently listening to customers describe vehicle problems, determining the appropriate work involved in the repairs, and accurately recording problems and authorized repairs on work orders so that the Technician understands what to do.Requires accuracy, attention to detail, and clear communication with other team members and departments in the dealership.Requires the continuous updating of technical knowledge by reading service bulletins and consulting with Technicians.Complete invoices and paperwork required for fleet jobs as well as inputting jobs into different portals as required.Job Type: Full-timeSalary: $18.00-$22.00 per hourBenefits:Extended health careLife insuranceSchedule:8 hour shiftExperience:Customer service: 2 years (preferred)Licence/Certification:Driving Licence (preferred)Work Location: In personExpected start date: 2023-09-01\",\n            \"location\": \"Powelll Dr., Carbonear, NL\"\n        },\n        {\n            \"id\": \"786431BE8C08AF5F5C70303D4E9E70FC\",\n            \"cityName\": \"7250 Rue du Mile End, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e0bc0ee3f22fd4c7\",\n            \"jobName\": \"Représentant-e, Service à La Clientèle/Customer Service Representative\",\n            \"companyName\": \"Global Payments (Beamery)\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694437058422,\n            \"dateOfPosted\": 1693590951497,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5320781,\n                    \"lon\": -73.62304920000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue du Mile End, Montréal, QC H2R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"DescriptionLa formation débute le 2 octobre prochain! - Postes à temps plein seulement Vous êtes à la recherche d’un nouveau défi et vous voulez rejoindre une entreprise du classement Fortune 500 axée sur la technologie et l'innovation? Chez Global Payments, vous aurez de nombreuses possibilités de croissance et de développement et nous vous promettons que chaque jour se transformera en un défi passionnant. Joignez-vous à notre équipe dynamique! L'importance que nous accordons aux membres de notre équipe: De réelles opportunités d'évolution professionnelle Un environnement de travail collaboratif et convivial avec un code vestimentaire décontracté Une assurance médicale Couverture d'invalidité à courte et longue durée Plans d'assurance vie Programmes d'épargne-retraite Programme d'achat d'actions pour les employés Programme d'assistance aux employés Programme de remboursement des frais de scolarité Possibilités de faire du bénévolat Lieu sûr pour la communauté LGBTQIA2+ Renseignements importants: Horaire: 37,5 heures par semaine, sur une base de rotation, 365. Travail du bureau: 7250, rue du Mile-End, Montreal. Salaire: 20$/h Ce que vous contribuerez à l'équipe: Aider à la formation des nouveaux commerçants dans les systèmes. Identifier et répondre aux demandes des clients concernant les comptes en utilisant l'écoute, la pensée critique et les compétences acquises pour résoudre l’appel. Fournir une solution aux problèmes ou aux plaintes des commerçants et les transmettre à la direction ou à l'équipe concernée pour les cas nécessitant une enquête plus approfondie. Utiliser adéquatement le système et les ressources internes pour servir efficacement et avec précision les clients et interpréter les données des marchands. Démontrer une connaissance des produits, des services, de la recherche de comptes, des opérations au point de vente et de la maintenance technique et de compte. Éduquer les commerçants sur les politiques, les procédures et les produits. Documenter avec précision les conversations des clients dans les systèmes appropriés. Résoudre rapidement tous les problèmes en utilisant les protocoles établis ou transférer aux personnes ressources. Interagir avec divers groupes de soutien au sein de Global Payments et assurer la liaison avec eux en ce qui a trait à la résolution d'une préoccupation d'un commerçant. Atteindre les standards de performance fixés par le département. Fournir un soutien opérationnel à d'autres unités selon les besoins de l'entreprise. Maintenir systématiquement l'étiquette téléphonique professionnelle. Compléter avec succès une formation supplémentaire sur les compétences au besoin. Maintenir les normes de service à la clientèle dans les situations de haute pression, telles que l'augmentation du volume d'appels, le manque de ressources ou la difficulté des clients. Agir en tant que membre positif de l'équipe, en affichant un respect mutuel pour les autres. Analyser et résoudre les problèmes en rassemblant systématiquement les informations pertinentes et en tenant compte d'un large éventail de problèmes, de facteurs et de données, lorsqu'il existe plusieurs réponses. Qui vous êtes: Une personne avec 6-12 mois d'expérience en service à la clientèle. Bilingue en français et en anglais. Ouvert aux heures de travail flexibles, sur une base de rotation, 24/7, 365. Diplômé(e) d’études secondaires. Une personne qui aime aider et écouter les autres. Orienté(e) service à la clientèle avec des solides compétences en communication. Une personne positive avec de fortes compétences interpersonnelles. Capable d'apprendre de nouvelles fonctions ou applications. Possède de solides compétences analytiques pour résoudre les problèmes. Responsable et autonome, avec une capacité de prise de décisions rapide et précise. Qui sommes-nous ? Global Payments est un leader du secteur des technologies de paiement avec plus de 24 000 employés dans le monde. Nous sommes fiers de nos innovations et de la valeur que nous accordons à l'inclusion. Notre équipe aide nos clients à obtenir des résultats impressionnants. C'est notre passion pour le succès qui nous a permis de surpasser la concurrence pendant des années. Rejoignez-nous et laissez votre empreinte sur le paysage technologique des paiements de demain. *** Nous remercions sincèrement tous les candidats de leur intérêt. Nous ne contacterons que les personnes sélectionnées pour un entretien. Global Payments est un employeur qui respecte l'égalité des chances. Nous valorisons la diversité et l'inclusion et offrons des chances égales à tous les employés et candidats, sans tenir compte de la race, de la couleur, de la religion, du sexe, de l'origine nationale, de l'âge, de l'état civil, de l'orientation sexuelle, de l'identité ou de l'expression de genre, du handicap physique ou mental, ou de toute autre base protégée par la loi et nous sommes heureux d'offrir aux membres de notre équipe un environnement de travail sain. Training starts on October 2nd! - Full-time positions only Looking for a new challenge and want to join a Fortune 500 company focused on technology and innovation? At Global Payments, you’ll have many opportunities for growth and development and we promise everyday will be an exciting challenge. Join a dynamic team as a bilingual customer service representative! How we care about our people: Real opportunities to grow professionally Collaborative, friendly work environment with a relaxed, casual dress code Benefits after 30 days Health insurance Short-Term and Long-Term disability coverage Life insurance plans Retirement savings programs Employee stock purchase program Employee assistance program Tuition reimbursement program Volunteering opportunities Safe place for the LGBTQIA2+ community Important information: Schedule: 37,5hr per week, on a rotational basis, 365. Work from the office: 7250, Mile End St. Montreal Salary: 20$/h What you will be contributing to the team: Assist in the training of new merchants. Identify and address customer inquiries regarding accounts. Provide resolution to merchant issues or complaints, and escalate to management or appropriate team concerned for cases requiring further investigation. Appropriately utilize internal systems and resources to accurately and effectively serve customers, and interpret merchant data. Demonstrate knowledge of products, services, account research, Point of Sale operations/technical and account maintenance. Educate merchants on policies, procedures, and products. Accurately document customer conversations in appropriate systems. Timely escalation of all department and system issues using the established reporting protocols. Interact and liaise with various support groups within Global Payments in relation to resolution of a merchant concern. Successfully complete additional skills training as required/requested. Who you are: Someone with 6-12 months of employment experience, preferably in a similar position. Bilingual in English and French. Available to work on a rotational basis, 24/7, 365. A High School Graduate. A great helper and listener. Able to maintain customer service standards during high-pressure situations. A positive member who loves to learn and share new things. A strong communicator with great interpersonal skills. A problem analyzer and solver by gathering relevant information systematically. Able to work independently and make quick and accurate decisions. Someone with strong analytical skills to troubleshoot issues. Who we are: Global Payments is a leader of the payment technology industry with over 24 000 employees worldwide. We pride ourselves on innovation and inclusion. Our team is helping customers achieve amazing results. It’s our passion for success that has led to years of out-performing the competition. Join us and make your mark on the payments technology landscape of tomorrow. *** We sincerely thank all applicants for their interest. We will only contact those selected for an interview. #LI-Onsite\",\n            \"location\": \"Rue du Mile End, Montréal, QC\"\n        },\n        {\n            \"id\": \"35A5CDA52562D866BEDCDF3F2601519D\",\n            \"cityName\": \"Canadian Tire Gas+ in Owen Sound, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bb19df302c0f1119\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Canadian Tire Gas+\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694436611595,\n            \"dateOfPosted\": 1692740349504,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.5690305,\n                    \"lon\": -80.9405602\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Owen Sound\",\n                \"formattedAddress\": \"Owen Sound, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Owen Sound\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CT Gas Bar/Car Wash/Convenience store.Availability:Full-time position available for 4-5 8 hour shifts per week (shifts from 6:30am - 2:30pm)Part-time position available for 2-3 8 hour shifts per week (shifts from 6:30am - 2:30pm and/or 2:15pm - 10:15pm)Candidate will be:Very reliable, energetic, punctual and hardworking.Comfortable working alone with little to no supervision.Comfortable in a very fast paced environment and under pressure.Able to quickly handle customer issues, and problem solve.Work Nature: Retail- Self Serve Gas Station and Car Wash.Specific Skills and Job Responsibility: Fuel sales, cash handling, lottery, stocking, maintaining highest level of customer service and cleanliness.Job Types: Part-time, PermanentSalary: $15.50-$16.50 per hourShift:8 hour shiftWork Location: In person\",\n            \"location\": \"Owen Sound, ON\"\n        },\n        {\n            \"id\": \"F153E5BB91DAACC98061FD1FB33602BF\",\n            \"cityName\": \"86 Copper Creek Drive, Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9568eff6cf1f3e4d\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Nanis Gelato\",\n            \"rowSalary\": \"$16.50–$17.50 an hour\",\n            \"date\": 1694435119086,\n            \"dateOfPosted\": 1694435118887,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.87072740000001,\n                    \"lon\": -79.2209562\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Markham\",\n                \"formattedAddress\": \"Copper Creek Dr, Markham, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Markham\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our new Nani's Gelato Markham location is seeking new customer service reps! We specialize in making all of our unique, fusion flavours and take a great deal of pride in providing a high level of customer service.This position is for Customer Service / Gelato Scooping team member. We are seeking individuals looking primarily for a combination of weekday and weekend shifts for both afternoons and evenings. Ideally, we are looking for a candidate that is available a few days during the week to help open at 2:00pm and work at least one weekend shift each week.We are seeking candidates that love to engage with people, work within an energetic team, perform well in a fast paced environment and LOVE ice cream / gelato.Training is included and paid, free gelato is available for our team during each shift and each individual staff member will always be supported with other team members during shifts.Part-time hours: 16-32Job Types: Part-time, PermanentPart-time hours: 16-40 per weekSalary: $16.50-$17.50 per hourBenefits:Casual dressFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftDay shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:Overtime payTipsWork Location: In personApplication deadline: 2023-09-15Expected start date: 2023-09-18\",\n            \"location\": \"Copper Creek Drive, Markham, ON\"\n        },\n        {\n            \"id\": \"C67F22A8FE933BFAFF1E687F68A448A5\",\n            \"cityName\": \"150 Country Hills Landng NW Suite 101, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=81ec72c394d8d0e5\",\n            \"jobName\": \"Customer Service Assistant\",\n            \"companyName\": \"Microhard Systems Inc.\",\n            \"rowSalary\": \"$23–$25 an hour\",\n            \"date\": 1694434731866,\n            \"dateOfPosted\": 1693535312643,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.1520788,\n                    \"lon\": -114.0929559\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Panorama Hills Landng NE, Calgary, AB T3K 5P2, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: EnglishHours: 40 hours per weekEducation: Bachelor's degreeExperience: 3 years to less than 5 yearsor equivalent experience Work setting Urban area Private sector Telecommunications company Tasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Arrange for refunds and credits Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Perform general office duties Receive and log complaints Receive payments Sell merchandise Answer written and oral inquiries Computer and technology knowledge Database software Enterprise resource planning (ERP) software Internet MS Excel MS Outlook MS Windows MS Word SAP (FI/CO / HR / MM / OT SD) Word processing software MS PowerPoint Electronic scheduler Presentation software Desktop publishing software Accounting software Type of online databases CIDOC-CRM Security and safety Basic security clearance Criminal record check Transportation/travel information Own transportation Willing to travel Travel expenses paid by employer Work conditions and physical capabilities Attention to detail Fast-paced environment Repetitive tasks Tight deadlines Work under pressure Manual dexterity Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Screening questions Are you available for shift or on-call work? Are you currently a student? Are you currently legally able to work in Canada? Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Do you have the above-indicated required certifications? Health benefits Dental plan Disability benefits Health care plan Long term benefits Group insurance benefits Life insurance Other benefits Free parking available Parking available\",\n            \"location\": \"Country Hills Landng NW, Calgary, AB\"\n        },\n        {\n            \"id\": \"56C0F07BFD30D09439119149C1F0592D\",\n            \"cityName\": \"Ontario\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cad8ab6730071647\",\n            \"jobName\": \"Work At Home Customer Service RepresentAtive (French Bilingual)\",\n            \"companyName\": \"Intouchcx\",\n            \"rowSalary\": \"$17–$22 an hour\",\n            \"date\": 1694434728762,\n            \"dateOfPosted\": 1693535320092,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.253775,\n                    \"lon\": -85.323214\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Ontario, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About IntouchCXIntouchCX is a global leader in customer experience management, digital engagement, and technology solutions. With over 20 years of experience, 18,000+ team members, and campuses around the globe, we obsess about our clients by providing remarkable customer experiences for the world’s most innovative brands.IntouchCX has been recognized as one of the Best Employers for Diversity in 2022 by Forbes and Statista Inc. This recognition comes after IntouchCX was named by Forbes as one of America’s Best Large Employers for 2022, and a Top Employer for New Grads.About the JobWe are currently hiring Inbound French Bilingual Work at Home Inbound Customer Service Representatives!Are you a problem solver? Do you like making meaningful connections with people? Are you interested in a rewarding career working with the world’s most exciting brands from the comfort and safety of your own home?Our Work at Home Customer Service Representatives (English / French Bilingual) are passionate about delighting customers by making every interaction an unforgettable experience - whether that’s through inbound calls, emails and/or chats. We want people with personality, who love making an impact with every customer interaction.We also want people with drive and ambition - people who want a career, not just a job. Punctuality, performance and positivity will set you up for success!Note: All applications, interviews, orientation, and training will be done virtually. IntouchCX will also provide all hardware and equipment necessary.Benefits of Working as a Work from Home Customer Service Representative (English / French Bilingual):Work from home!Flexible schedulesCompetitive salary - $17.00-$22.00 hr (varies depending on program)Industry-leading benefits - Health, Dental, VisionAmazing career growth opportunitiesWorking as a Work from Home Customer Service Representative (English / French Bilingual), You Will:Assist all customers through inbound calls, emails, and/or chats.Communicate a variety of information to the customer.Be an active listener and help resolve customer inquiries.Provide a meaningful and positive experience with every customer interaction.Learn and retain a thorough working knowledge of all existing and new products and services.Working as a Work from Home Customer Service Representative (English / French Bilingual), You Have:French Bilingual is a must!A high school diploma (or equivalent).6 months – 1 year of customer service experience.Great communication skills, both verbal and written.The ability to be consistently ready to work and on time as scheduled.Reliable internet speed and broadband connection.A secure area in the home to work from.The ability to work effectively in a work-at-home setting.The understanding that although this is a Work from Home position,you must be located in OntarioAvailability: Full Time (some shifts may depend on availability).Ready to apply? Submit your application and one of our recruiters will reach out via email/phone/text to learn more about you and connect you to this exciting opportunity! If you provide your cell number, you agree to receive automatic recruiting texts from us at that number. Consent is not a condition of employment, and you can opt-out by replying STOP at any time. Message and data rates may apply.IntouchCX provides Equal Employment Opportunities in accordance with all provincial and federal laws. IntouchCX is committed to ensuring equality of opportunity in all aspects of employment and does not discriminate based on protected characteristics.IntouchCX is committed to accommodating persons with disabilities. If you need accommodation at any stage of the application process or want more information on our accommodation policies, please let us know.By signing this application, the applicant consents to IntouchCX collecting, using and retaining his/her personal information for purposes relating to the application process and if hired, the employment relationship.Any and all personal information collected is held in the strictest confidence and in accordance with all applicable Privacy Laws.Job Type: Full-timeSalary: $17.00-$22.00 per hourBenefits:Dental careExtended health careVision careSchedule:Day shiftEvening shiftMonday to FridayMorning shiftWeekends as neededWork Location: In person\",\n            \"location\": \"Ontario\"\n        },\n        {\n            \"id\": \"1E874FD6F353116AAB20608F97C5A1F8\",\n            \"cityName\": \"33 Alderney Dr Ste 240, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fffb664f1ac6df93\",\n            \"jobName\": \"Bilingual French Customer Service Agents\",\n            \"companyName\": \"Tigertel\",\n            \"rowSalary\": \"From $23 an hour\",\n            \"date\": 1694434723712,\n            \"dateOfPosted\": 1693535302673,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.66487069999999,\n                    \"lon\": -63.5690049\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Alderney Dr, Dartmouth, NS B2Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Job DescriptionJob Description  Nous sommes à la recherche de représentant du service à la clientèle courant bilingue anglais/français à Temps Plein - Agents internes Map Communications 33, promenade Alderney, bureau 240 Dartmouth (N.-É.) B2Y 2N4 Salaire de départ 23$ de l'heure Êtes-vous à la recherche d'une entreprise à laquelle vous pouvez croire et qui est prête à s'investir à 100% pour faire bouger les choses? Êtes-vous à la recherche d'une entreprise qui CROIT EN VOUS et qui souhaite vous aider à atteindre vos objectifs de carrière? Êtes-vous capable de faire ce qui est nécessaire pour atteindre VOS objectifs personnels? Voulez-vous apprendre, grandir, produire et être respecté par vos collègues pour les talents que vous apportez à l'organisation? Nous sommes à la recherche de personnes énergiques, accueillants et professionnelles avec une grande attention aux détails pour rejoindre notre équipe à Dartmouth N.- Nous offrons une formation rémunérée, un excellent soutien continu et une couverture d'assurance médicales et dentaires/REER à l'achèvement de la période d'essai. Responsabilités Principale Gérer les appels de nos clients (nous ne sommes pas un centre de télémarketing) Répondre de manière professionnelle aux appelants, fournir et prendre de l'information des appelants Recevoir et acheminer les messages critiques vers le personnel de garde en priorisant les appels d'urgence Répondre aux demandes des clients de manière professionnelle et précis Les aptitudes requises et recherchées Attitude positive et enthousiaste Une bonne très bonne Maitrise de l'écriture anglaise et française Être à l'aise à l'informatique, notamment avec le système d'exploitation Windows Être ponctuel Capacité d'apprentissage rapide et savoir écrire 36 mots par minute Diplôme d'études secondaire ou équivalent (préférable) Aimer travailler en équipe Notre emploi nous demande de travailler avec des gens qui possèdent un grand souci du détail. Nous gérons des appels qui proviennent de plusieurs clients en Amérique du Nord. Il y aura ainsi de nombreuses activités et de défis à résoudre au quotidien Salaire 23.00$ de l'heure Nos avantages offerts :REERAssurance dentairesAssurance maladieCongés payéesAssurance des soins de la vue Conditions relatives aux prestations : Nos avantages sont offerts aux employées à temps plein, après une période d'attente Quarts de travail offerts : Temps plein (40 heures par semaine) Doit être disponible entre 08h00 et 22h30 Doit être disponible pour le travail en fin de semaine Vendredi, Samedi et Lundi Quart de travail obligatoire Pendant la formation : recevront leur formation dans le bureau, nous respecterons les directions de distance sociale de la Nouvelle-Écosse. On vous demande : D'avoir votre propre masque et le porter dans le bureau et espace commune De nettoyer votre station de travail quand on le quitte Demeurez bien à l'écart des autres dans le bureau Les stations de travail seront attribuées Formation approximative d'une semaine. Accès aux produits de nettoyage et désinfectant, on vous offre une formation sécuritaire. Ne manquez pas cette occasion - postulez dès maintenant Postulez Cliquez sur postulez maintenant et répondre aux questions fournies Nous serons en contact avec vous pour les prochaines étapes, qui seront une évaluation sur Indeed envoyée par courriel / ou sur votre compte Indeed. Vous devez effectuer les évaluations pour passer à la prochaine étape Lieu : Dartmouth (N-É) Hiring Full Time Bilingual French Call Centre Customer Service Agents - In house agents Map Communications 33 Alderney Dr., Suite 240 Dartmouth, NS B2Y 2N4 Starting wage $23 / hour Are you looking for a company you can believe in and are ready to put 100% effort into making things happen? Are you looking for a company that BELIEVES IN YOU and wants to help you take care of your career goals? Are you able to do what is necessary to achieve YOUR personal goals? Do you want to learn, grow, produce and be respected by your peers for the talents you bring to the organization? We are looking for energetic and professional individuals with great attention to detail to join our Dartmouth, NS office. We provide paid-training, great on-going support and health and dental benefits/RRSP upon completion of probation. Key Responsibilities Managing inbound phone calls from our clients (we are not a telemarketing centre) Professionally greet callers, provide and request required information Relay and route critical messages to on-call personnel by prioritizing emergency calls Responding to customer requests professionally and with accurate information General Job Requirements A friendly and upbeat voice and a positive attitude Good grammar and spelling as well as a professional demeanor Computer skills in a Windows-based environment Punctual with great attendance Fast learner and be able to type well (at least 35 words per minute) High school or equivalent (Preferred) Be a 'team player'! Our jobs require people that are very detail oriented. We handle calls for a large number of accounts and so there is always a lot of activity and new challenges to face and resolve daily! Compensation $23.00 per hour Our Benefits include:RRSP with (company matching)Dental InsuranceHealth InsurancePaid Time OffVision Insurance Benefit Conditions:Waiting period may applyOnly full-time employees eligible Shifts Offered: Full Time (40 hours) work week Availability to start as early as 8am and end as late as 10:30pm Eastern time. You must be available to work weekends Daytime and Evening shifts available to include a minimum of Friday, Saturday and Monday. During Training: We will be training you in our offices and we will be respecting Nova Scotia's Social Distancing guidelines. We request that you: Have your own mask and use it while in the facility and use of our facility amenities. Wipe down your workstation every time you leave it. Remain appropriately distanced from others in our call centre. We will assign seating. Training will last approximately one week. We will have plenty of cleaning supplies on hand to keep you, your fellow trainees, and your trainer safe during our training process. Don't miss out on this opportunity - apply today! To Apply: Click Apply Now and answer any questions provided. We will be in contact with you with the next steps, which will include Indeed Assessments that will be sent to you via email / your Indeed account. You must complete the assessments to proceed to the next step. We look forward to hearing from you! Location: Dartmouth, NS Job Types: Full-time, Permanent Salary: $23.00 per hour Benefits: Dental care Extended health care RRSP match Vision care Schedule: 9 hour shift Experience: Customer Service: 1 year (Required) Call Centre Experience: 1 year (Preferred) Education: Secondary School (Required) Job Posted by ApplicantPro\",\n            \"location\": \"Alderney Dr, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"CC71D07409F304B31266C834103F33E8\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2bb1a5a4c9f6d29e\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Goeasy\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694434705496,\n            \"dateOfPosted\": 1693534789645,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"If you are looking to join one of Canada’s fastest growing companies, goeasy Ltd. is the place for you! Recognized as one ofNorth America’s Most Engaged Workplaces, we want the best to join our team. easyfinancial is one of Canada’s leading non-prime lenders, we pride ourselves on helping everyday Canadians achieve their personal and financial goals through secured and unsecured loans up to $75,000, when everyone else says no.We are looking for our next innovative and self-motivated Customer Service Representative to support our existing team. Come work for a growing company that will ensure you will have the tools to be successful! No experience, but looking for a career opportunity? We offer full comprehensive training programs to equip you with the tools needed for success. What’s in it for you: Benefits and Perks package which goes beyond your base salary:FinancialMonthly incentive plansBase Pay: $17/hr + monthly bonusRRSP and Employee Share Purchase Plan matchingHealth & LifestyleExtended healthcare coverage, including Mental Health and on-demand virtual healthcare5 personal days, company paid volunteer days, Sundays off + paid birthday off in addition to paid vacation daysOnsite GymPerksPerkopolis employee discount programEmployee discounts on furniture, electronics, and applianceseasyloans –employees have access to loans at lower interest ratesTuition Assistance ProgramState of the art OfficeGames RoomFree Employee ParkingRecognitionOpportunities for monthly, quarterly, and annual awardsLeadership development programs – over 75% internal promotion rate!As a Customer Service Representative, you will:Create superior customer experiences by responding, listening, engaging and understanding the needs of current and potential customers and matching their needs to our lending solutions.Taking inbound calls to resolve customer inquiries while demonstrating compassion and empathyAccurately enter data, follow scripts, maintain records and handle high call volumes in a fast-paced environment.Live our value proposition of providing access, relief and respect to the cash and credit constrained consumerThrough superior product knowledge and your influence skills engage with customer to retain product or service by following a prepared script and process capitalize on cross-sell and up-sell product opportunities by paying attention to customer needExperience servicing customers in a multi – channel environment, phone, chat, email, social mediaUnderstanding and striving to meet or exceed call center metrics while providing excellent customer service.Taking part in training and other learning opportunities to expand knowledge of company and position.Adhering to all company policies and procedures.Skill in the use of computer and telephone-related software, with basic knowledge of Microsoft Office, internet and intranet search tools, and call center technologies.What you need to work with us:Experience in a customer-facing measured work environment considered an asset1-2 years’ Experience in a call center environment is an assetExcellent written and oral communication skills with the ability to create memorable customer experiencesAchievement and results-oriented with a positive attitudeEmpathetic, compassionate and operate with integrity – really care for customers!Proficient with Microsoft office software (Excel, Word, and Outlook), strong keyboarding skills and an ability to learn and master new software programsAbility to multi-task, adapt to change in a fast-paced environment and to work independently (self-motivated)Diversity, Inclusion, and Equal Opportunity Employment At goeasy, we believe that we can only be the best when people are able to bring their best selves to work every day. This means that we are committed to cultivating and preserving a work culture where we celebrate who we are, where everyone feels seen and heard and where every employee can fulfill their potential. As an equal opportunity employer, we are committed to providing accommodations for applicants upon request at any stage of the recruitment process in accordance with all legislative requirements throughout Canada. Please let us know if you require an accommodation during any aspect of the recruitment process and we will work with you to address your needs. Additional Information: All candidates considered for hire must successfully pass a criminal background check, credit check, and validation of their work experience to qualify for hire. Candidates must provide schedule flexibility to ensure that the location’s hours can be covered to meet our customer’s needs – details by location will be discussed in the interview process. We thank all interested applicants; however, we will only be contacting those for interview who possess the skills and qualifications outlined above. Why should you work for goeasy? To learn more about our great company please click the links below:http://goeasy.com/careers/\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"39BD1DC32BA89B57B979A705559A0939\",\n            \"cityName\": \"9303 Highway 93, Midland, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=326a85a2a06085c5\",\n            \"jobName\": \"Customer Service Department Associate\",\n            \"companyName\": \"Canadian Tire Midland - Store #061\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694433097615,\n            \"dateOfPosted\": 1693588457726,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.73700909999999,\n                    \"lon\": -79.9114086\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Midland\",\n                \"formattedAddress\": \"9226 County Rd 93, Midland, ON L4R 4K4, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Midland\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our company is seeking experienced, professional and motivated individuals to join our team. The successful candidates will have the opportunity to work at a growing company, build relationships with customers and contribute to the achievement of company goals. Responsibilities: *works in a fast-paced environment that involves constant interaction with customers, delivering friendly and courteous service while explaining product benefits and fulfilling customer needs, Stocking Shelves, Merchandising, and general Housekeeping.Job Types: Full-time, Part-time, PermanentPart-time hours: 0-40 per weekSalary: From $15.50 per hourBenefits:Dental careStore discountVision careDay range:HolidaysMonday to FridayWeekends as neededFlexible Language Requirement:French not requiredShift:4 hour shift8 hour shiftAfternoon shiftDay shiftEvening shiftMorning shiftWork setting:Department storeAbility to commute/relocate:Midland, ON: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Highway, Midland, ON\"\n        },\n        {\n            \"id\": \"53094E0BA0B1C583C0DE9038DA0FC902\",\n            \"cityName\": \"RELOCATION INT'L INC. in Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c78f016b3a74ab4e\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"Relocation Int'L Inc.\",\n            \"rowSalary\": \"From $3,100 a month\",\n            \"date\": 1694433051402,\n            \"dateOfPosted\": 1692699778808,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"month\",\n                \"salaryFrom\": 3100.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    3100.0\n                ],\n                \"range\": {\n                    \"gte\": 3100.0,\n                    \"gt\": null,\n                    \"lte\": 3100.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a Customer Service Clerk.Requirements1. Strong communication skills, fluent in English, Mandarin and Cantonese;2. Excellent computer skills;3. Excellent phone manner4. Familiar with the GTA regionJob Types: Full-time, PermanentSalary: From $3,100.00 per monthSchedule:8 hour shiftCOVID-19 considerations:All customers are required to wear masksWork Location: In person\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"1CBBDB0B24A5C4A3812BB65B14BF4B45\",\n            \"cityName\": \"12 Parr Blvd, Bolton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dda3cfc50d39faab\",\n            \"jobName\": \"Retail Customer Service Associate\",\n            \"companyName\": \"Water Depot Bolton/Georgetown\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694432237544,\n            \"dateOfPosted\": 1693588058630,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.848813,\n                    \"lon\": -79.707592\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bolton\",\n                \"formattedAddress\": \"Parr Blvd, Bolton, ON L0J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bolton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The role of a Retail Customer Service person is to provide exceptional customer service while on shift. General duties include assisting customers with water fill-ups; POS transactions, providing information to customers when purchasing water treatment products. The candidate will also perform some administrative duties as required.Primary Duties:Assisting customers with U-fill water jug fill-ups;Administrative duties;Promoting and selling general in-store products (training provided);Communicate courteously with guests by telephone and face to face, providing excellent guest service;Ensure customer inquiries are handled effectively, promptly and with the utmost consideration;Occasionally scheduling service and maintenance appointments for customers;Calling customers to confirm service and maintenance appointments;Stocking shelves;Opening/closing duties.Secondary duties can include:Inventory ordering/receiving;Service appointment scheduling/coordination;Email responsesSupport Water Depot Georgetown;Duties and projects as assigned.Essential Skills & Abilities:Responsible, reliable & charismatic…personality plus (i.e. not shy);Retail experience an asset;Administrative experience an asset;Willingness to learn about basic water treatment, including independent learning;Excellent verbal and written communication skills, interpersonal skills and experience working with a diverse population are essential;Computer literate with basic abilities in Microsoft Office suite, Google environment, email & internet;Flexibility to work shifts within the retail hours of operation, including Saturday (we are open 6 days a week Monday to Saturday 10am-6pm);Reliable transportation;Ability to stand for many hours at a time;Frequent use of hands: use hands to hold, handle, or feel, and reach with hands and arms;Occasional requirement to sit, climb or balance; and stoop, kneel, crouch, or crawl, and using a small step stool or ladder;Specific vision abilities include close vision, distance vision, colour vision, peripheral vision, and ability to adjust focus;Frequent requirement to lift up to, and including, 50 pounds.Future opportunities can be available for the right candidate as we continue to grow.Work remotelyNoJob Types: Part-time, PermanentSalary: $18.00 per hourExpected hours: 35 – 40 per weekDay range:Monday to FridayWeekends as neededShift:8 hour shiftDay shiftWork Location: In personExpected start date: 2023-08-23\",\n            \"location\": \"Parr Blvd, Bolton, ON\"\n        },\n        {\n            \"id\": \"EC9C040D51853FC00B842BDEB9DB1562\",\n            \"cityName\": \"11 Jacob Keffer Pky, Vaughan, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2d1e32ea035a66fb\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Mary Brown's Chicken And Taters\",\n            \"rowSalary\": \"$15.50–$18.00 an hour\",\n            \"date\": 1694432228303,\n            \"dateOfPosted\": 1692726045390,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8326829,\n                    \"lon\": -79.5042946\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Jacob Keffer Pkwy, Vaughan, ON L4K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Jacob Keffer Pky, Concord, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for hard working individuals who are able to work well under pressure and create a hospitable environment with the customers.Job Type: Part-timePart-time hours: 20-36 per weekSalary: $15.50-$18.00 per hour\",\n            \"location\": \"Jacob Keffer Pky, Concord, ON\"\n        },\n        {\n            \"id\": \"41CC5A8BC9C1DF4F492531AAC2874313\",\n            \"cityName\": \"9880 - 47 Avenue, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=84c9af46f5b327b1\",\n            \"jobName\": \"Call Centre Representative (Edmonton South) Temporary\",\n            \"companyName\": \"Trail Appliances Ltd\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694431977769,\n            \"dateOfPosted\": 1692739011458,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5460983,\n                    \"lon\": -113.4937266\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Why Trail? At Trail Appliances, we give you the support, tools, training, and a mentor to succeed. By becoming a member of the Trail family, you will be joining a diverse network of high performing, talented individuals who are continuously learning and growing everyday. Looking for a career and not just a job? Apply today! The Perks Trail Appliances values their employees and provides a comprehensive and competitive total rewards package including: Health & dental benefits Personal care days Statutory holidays off Employee & family assistance program Staff incentives and rewards Employee discounts The Role The Call Centre Representative is responsible for calling customers to confirm the time and location of their service call. This person is responsible to ensure that the open line of communication between the field technicians and customers is maintained. This is a full-time temporary position ending October 2024 What you will be doing Ensure all customer service call information is keyed into the computer system. Complete other administrative functions as required. Maintain in constant communication with the service teams and field technicians. Investigate and assist in the resolution of all customer issues. To be successful in this role you must Have a great work ethic, be punctual, pay attention to the details, and genuinely enjoy helping people Be proactive and demonstrate initiative by providing input and recommendations to continually improve the delivery of our customer experience Collaborate with various departments to ensure customer issues are resolved effectively and in a timely manner Be a quick study when it comes to computers software and systems Have outstanding oral, typing and written communication skills Enjoy working within a diverse team Have previous call center experience Our story began in 1974, when the Broderick family rented out appliances at their bottle depot on Macleod Trail in Calgary. From those humble beginnings, Trail Appliances has grown to become one of the leading independent appliance retailers in Western Canada. We continue to stand by our guiding principles of unparalleled customer service, competitive pricing, and expert advice. Having built our reputation on strong family values and creating a collaborative work culture that values respect, integrity, diversity, passion, and laughter, we’re proud to be family-owned and operated today. This and our extensive benefits, safety program and community involvement are what sets us apart from our competitors. We are proud to be recognized as an industry leader! #TrailApp\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"C5C8B4DA9723E58360F77FFB8886E32A\",\n            \"cityName\": \"114 Sydenham St, Flesherton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d9a6bd631f0b1656\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Esso\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694431601928,\n            \"dateOfPosted\": 1675894927945,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2648914,\n                    \"lon\": -80.5533015\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Flesherton\",\n                \"formattedAddress\": \"Sydenham St, Flesherton, ON N0C 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Flesherton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"$16.50/HRLOCAL CANDIDATES ONLYApply Now! Hiring Now! All training will be provided.ESSO Gas Station in Flesherton is hiring Customer Service Representatives to join its team - opening or closing shifts, weekdays or weekends. No experience necessary. Previous gas station or convenience store experience is always an asset. Full Training will be provided.Send resume online or welcome to stop by at the store.Job Types: Full-time, Part-time, PermanentSalary: From $16.50 per hourJob Types: Full-time, Part-time, PermanentSalary: From $16.50 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftEvening shiftEvery WeekendMonday to FridayMorning shiftNight shiftNo weekendsWeekend availabilityWeekends onlyAbility to commute/relocate:Flesherton, ON: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Sydenham St, Flesherton, ON\"\n        },\n        {\n            \"id\": \"0E06E7D711F64830FD21F78D57462420\",\n            \"cityName\": \"5984 Boul Cousineau, Saint-Hubert, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=defd403dfa2825d6\",\n            \"jobName\": \"Cook/Customer Service\",\n            \"companyName\": \"Chung Chun Rice Hotdog\",\n            \"rowSalary\": \"$15.25–$21.63 an hour\",\n            \"date\": 1694431409411,\n            \"dateOfPosted\": 1692737161097,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4819036,\n                    \"lon\": -73.39037859999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Longueuil\",\n                \"formattedAddress\": \"Bd Cousineau, Longueuil, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Longueuil\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OUVERTURE BIENTÔT CHUNG CHUN SAINT-HUBERT, QUEBEC5984 BOULEVARD COUSINEAU, SAINT-HUBERT, QCChungchun Rice Dog est une chaîne de cuisine de rue coréenne avec plus de 200 succursales dans le monde et les premiers à Montréal. Nous recherchons un membre enthousiaste de l'équipe qui se joindra à notre équipe et contribuera à faire croître la marque au Québec tout en profitant d’un environnement de travail agréable, d'horaires flexibles et d’une équipe incroyable. Nous avons pour objectif de leur offrir une expérience unique à nos clients en leur offrant un service de qualité et en leur faisant découvrir nos délicieux Kogos coréen.Recherche de caissier à temps-partiel.Description des tâchesExécuter tous les éléments selon les normes les plus élevées en suivant les recettes et les procédures du restaurantMaintenir les normes de propreté, de santé et sécurité du restaurantSuivre toutes les politiques et procédures opérationnellesMaintenir un niveau élevé de pratiques de sécurité alimentaireDoit travailler avec l'équipe et doit s'assurer du bon roulement du serviceDoit savoir repérer les problèmes et les résoudreDoit être autonome et proactifDiplômes et expérienceAimer le travail en équipe et avoir le sens des responsabilitésFaire du service client une prioritéAucune expérience nécessaire, expérience dans une cuisine est un atoutCompétencesCapacité à travailler en équipe tout en démontrant du leadershipCapacité à comprendre et à exécuter des instructions verbales et écritesCapacité à apprendre rapidementCapacité à parler la langue française, la langue anglaise est un plus, la languecoréenne est un plusCapacité à faire plusieurs tâches à la foisFaire du service client une prioritéExigences physiquesDebout pendant de longues périodesTravailler dans un environnement de cuisine chaudPousser, tirer, soulever ou porter occasionnellement jusqu'à 40 lbHoraires de travail/SalaireHoraire flexible, travail durant le matin et le soir, les jours de semaine et de fin de semaineTemps partielSalaire competitiveOPENING OF CHUNG CHUN, SAINT-HUBERT, QUEBECChungchun Rice Hotdog is a Korean street food chain with over 200 branches around the world. Since our opening in Canada in 2019, we now have branches in Toronto, Vancouver, Calgary and now opening our 2nd restaurant in Québec under Chungchun Kogo Coréen!We are looking for an enthusiastic team member who will join our team rank and help grow the brand in Québec while enjoying flexible hours!Duties and responsibilitiesContribute to making our customers’ day by greeting people, taking orders and preparing delicious KogosProcessing paymentsPackage take-out foodExecute all items to the highest standards following the restaurant’s recipes and proceduresMaintain cleanliness and health & safety standards of the restaurantFollow all operational policies and proceduresMaintain a high level of food safety practicesMust be available on certain holidaysQualifications and ExperienceEnjoy teamwork and having sense of responsibilityMake customer service a priorityNo experience needed, Experience in the kitchen is a plusSkills & FitAbility to work as part of a teamAbility to understand and carry out verbal and written instructionsAbility to learn quicklyAbility to speak French language, English language, Korean language is a plusPhysical RequirementsStanding for long periods of timeWorking in a hot kitchen environmentOccasional pushing, pulling, lifting or carrying up to 40lbSchedulePart-TimeFlexible hours, mixed shifts, days and evenings, weekends and weekdaysCompetitive salaryJob Type: Part-timeSalary: $15.25-$21.63 per hourSchedule:4 hour shiftDay shiftMonday to FridayMorning shiftWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Saint-Hubert, QC: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Boul Cousineau, Saint-Hubert, QC\"\n        },\n        {\n            \"id\": \"8EA7D288D92C1190E5AEF73F5843766A\",\n            \"cityName\": \"378 Mountainview Rd S, Georgetown, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=eb2897db6fde7156\",\n            \"jobName\": \"Retail Customer Service\",\n            \"companyName\": \"Water Depot Bolton/Georgetown\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694431372255,\n            \"dateOfPosted\": 1692737153958,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6390573,\n                    \"lon\": -79.88824629999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halton Hills\",\n                \"formattedAddress\": \"Mountainview Rd S, Halton Hills, ON L7G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halton Hills\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The role of a Retail Customer Service person is to provide exceptional customer service while on shift. General duties include assisting customers with water fill-ups; POS transactions, providing information to customers when purchasing water treatment products. The right candidate will act as back-up for administrative duties as required.Primary Duties:Assisting customers with U-fill water jug fill-ups;Back-up for Administrator duties (training provided);Promoting and selling general in-store products (training provided);Communicate courteously with guests by telephone and face to face, providing excellent guest service;Ensure customer inquiries are handled effectively, promptly and with the utmost consideration;Occasionally scheduling service and maintenance appointments for customers;Calling customers to confirm service and maintenance appointments;Stocking shelves;Opening/closing duties.Secondary duties (as Admin back-up) include:Inventory ordering/receiving;Customer Invoice/payment processing;Service appointment scheduling/coordination;Purchase Orders;Email responsesSupport Water Depot Georgetown;Duties and projects as assigned.Essential Skills & Abilities:Responsible, reliable & charismatic…personality plus (i.e. not shy);Retail experience an asset;Administrative experience an asset;Willingness to learn about basic water treatment, including independent learning;Excellent verbal and written communication skills, interpersonal skills and experience working with a diverse population are essential;Computer literate with basic abilities in Microsoft Office suite, Google environment, email & internet;Flexibility to work shifts within the retail hours of operation, including Saturday (we are open 6 days a week Monday to Saturday 10am-6pm);Reliable transportation;Ability to stand for many hours at a time;Frequent use of hands: use hands to hold, handle, or feel, and reach with hands and arms;Occasional requirement to sit, climb or balance; and stoop, kneel, crouch, or crawl, and using a small step stool or ladder;Specific vision abilities include close vision, distance vision, colour vision, peripheral vision, and ability to adjust focus;Frequent requirement to lift up to, and including, 50 pounds.Future opportunities can be available for the right candidate as we continue to grow.Work remotelyNoJob Types: Part-time, PermanentSalary: $18.00 per hourExpected hours: 35 – 40 per weekSchedule:8 hour shiftDay shiftMonday to FridayWeekend availabilityWork Location: In personExpected start date: 2023-08-23\",\n            \"location\": \"Mountainview Road South, Halton Hills, ON\"\n        },\n        {\n            \"id\": \"E042EDA95335630F87ACF2B1830BE964\",\n            \"cityName\": \"527 Broadway, Tillsonburg, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=64fe5961fcd2c7a9\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Domino's Pizza Woodstock\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694431306507,\n            \"dateOfPosted\": 1693586379311,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8717671,\n                    \"lon\": -80.73948709999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Tillsonburg\",\n                \"formattedAddress\": \"Broadway, Tillsonburg, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Oxford County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Tillsonburg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Domino's Pizza is now hiring Customer Service RepresentativesWe are happy that you are interested in joining the Domino’s team!Customer Service Representatives (CSR) are primarily responsible for providing exceptional customer service, making great Domino’s Pizza products and maintaining cleanliness of the store. CSR’s at Domino’s work in a team environment and they are expected to be positive and productive team players. Every CSR plays a part in helping the store achieve its goals for customer service, sales growth, operational reviews and cost management, therefore, their attention to these targets is paramount.The responsibilities are guided by the Domino’s Pizza of Canada’s policies and procedures. The standards can in some instances be modified by Empire Pizza or the CSR’s supervisor.Other responsibilities may include being a shift leader. Shift leaders are responsible for completing all shift tasks as laid out in the policies, manage other team members, balance finances and inventory and train team members. Shift leaders may be required to attend workshops to further develop their skills.CSR’s are required to attend to their scheduled shifts on-time, in complete uniform and with positive attitudes. During some shifts, the CSR may be required to help promote the business and do some local store marketing.Although schedules are typically posted a few days early, CSR’s may be required to come to work on short notice or perform additional tasks outside of this description.Job Types: Full-time, Part-timePart-time hours: 15-30 per weekSalary: $15.50-$16.50 per hourExpected hours: 10 – 30 per week\",\n            \"location\": \"Broadway St Unit A, Tillsonburg, ON\"\n        },\n        {\n            \"id\": \"C10A1247B1EFCE4E11827BBD6C8AA3A7\",\n            \"cityName\": \"The Willow Bakery & Cafe in Kensington, PE\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e17cee62fbdfe03c\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"The Willow Bakery & Cafe\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694431126800,\n            \"dateOfPosted\": 1692705640450,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.4368934,\n                    \"lon\": -63.63735109999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kensington\",\n                \"formattedAddress\": \"Kensington, PE C0B 1M0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Prince Edward Island\",\n                \"state_code\": \"PE\",\n                \"postalTown\": null,\n                \"county\": \"Prince County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kensington\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Looking for a reliable enthusiast worker. Wanting to be part of a small team. Experience not necessarily but beneficial. Must be friendly and able to provided exceptional customer service. Job includes : greeting customers, taking orders, preparing specialty coffees and drinks. Cleaning will also be included. Must be willing to work independently and with others well.Hours 7:00am- 3:00pmWe are looking forward to meeting you!Job Types: Full-time, Part-timePart-time hours: 20-40 per weekSalary: $15.00-$16.00 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftMonday to FridayWeekends as neededSupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Kensington, PE\"\n        },\n        {\n            \"id\": \"1B844ABFFA36D34BE84C7448CD768149\",\n            \"cityName\": \"20 Royal Group Crescent, Vaughan, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fb22a7039126eb4a\",\n            \"jobName\": \"Customer Service Representative/Data Entry\",\n            \"companyName\": \"Trulite Glass & Aluminum Solutions\",\n            \"rowSalary\": \"$50,000–$55,000 a year\",\n            \"date\": 1694431110035,\n            \"dateOfPosted\": 1693559236479,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7657213,\n                    \"lon\": -79.6255956\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Royal Group Crescent, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for candidates who are passionate about customer service and have experience handling inbound calls and strong attention to detail.Manufacturing experience is a great assist.Key Areas of Responsibilities:· Assisting with all customer requirements within Trulite such as:o Entering customer PO’s accurately and in timely fashiono Cross check PO’s enteredo Email/fax order acknowledgements in timely fashiono Assist customers with PO revisions and/or enquirieso Communicate with Planning and CNC department· Follow up on outstanding Purchase Order(s) pertaining to sale orders· Liaise with Production personnel for order status· Cross train on internal personnel support· Handle and liaise with Shipping department regarding customer’s shipping enquires· Switchboard support· Maintain Customer Relationship Management Software· Maintain professional internal and external relationships that meet company core values· Adhere to all company policies, procedures and business ethics codes· Other administrative duties as assignedProficient in Microsoft Office applications· Data entry accuracy· Highly effective customer service skills· Ability to manage multi responsibilities· Ability to interact and cooperate with all company employees.· Ability to build trust, value others, communicate effectively, focus on the customer, collaborate with others, solve problems creatively and demonstrate high integrity· Establish and maintain effective team working relationships and also work independentlyExcellent written and oral communication skillsNo Agency CallsJob Type: Full-timeSalary: $50,000.00-$55,000.00 per yearBenefits:Dental careEmployee assistance programExtended health careOn-site parkingPaid time offVision careSchedule:8 hour shiftSupplemental pay types:Bonus payWork Location: In personExpected start date: 2023-09-15\",\n            \"location\": \"Royal Group Crescent, Vaughan, ON\"\n        },\n        {\n            \"id\": \"AF7A961D479E7FE8F91E3FBA9D251FFF\",\n            \"cityName\": \"More Gate Digital Group in Oshawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=86c81ce8dbd412f4\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"More Gate Digital Group\",\n            \"rowSalary\": \"$45,000–$55,000 a year\",\n            \"date\": 1694431105635,\n            \"dateOfPosted\": 1692709787312,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8970929,\n                    \"lon\": -78.86579119999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oshawa\",\n                \"formattedAddress\": \"Oshawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oshawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Here’s why you should apply:Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingPrimary Functions:Serve as the information center for all customers, community contacts, and other company representativesMust be aware of daily activities and administrative responsibilitiesInteract with customers to provide information in response to inquiries, concerns and requests about products and servicesMust professionally handle all phone calls and route callersAnswers questions in a timely and courteous mannerProduce reports, forms, correspondence, orders and other materials as neededPerform other duties as assigned.QualificationsSolid organization and active listening skillsRazor sharp attention to detail with fast and accurate data entryCustomer service focused with creative problem solving skillsAbility to anticipate and advocate for your customers needsAbility to multi-task, prioritize and adjust to changing needsJust like your resume, a job description never tells the full story. Apply today and if you've got what it takes, we'd love to discuss everything in further detail. We know there's a lot more you'd like to know, why wait? Apply today!Job Types: Full-time, PermanentSalary: $45,000.00-$55,000.00 per yearBenefits:Dental careEmployee assistance programExtended health careOn-site parkingPaid time offFlexible Language Requirement:English not requiredFrench not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payOvertime payTipsEducation:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Oshawa, ON\"\n        },\n        {\n            \"id\": \"3ABB22B59CDCAB4FB58BDBA4A0B120AC\",\n            \"cityName\": \"Second Cup Cafe 9730 in Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b2d9cb3833c21867\",\n            \"jobName\": \"Front Counter Customer Service\",\n            \"companyName\": \"Second Cup Cafe 9730\",\n            \"rowSalary\": \"$14.50–$16.00 an hour\",\n            \"date\": 1694430993209,\n            \"dateOfPosted\": 1693585475259,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.895136,\n                    \"lon\": -97.13837439999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Welcome to Second Cup Bridgewater (3-325 North Town Rd)We are excited to be opening soon and we are starting to build our team !We are hiring full time and part time staff.Hours of operation are 6:00AM - 10:00PMWe have many shifts available.Does the idea of working with an iconic Canadian brand excite you? Do you have a passion for enriching the customer experience? Is your Second Cup just as exciting as your first? Then Second Cup Café has an exciting opportunity to join our team!We’re seeking an amazing Barista who lives our company values - Integrity, Kindness, Gusto and has experience in uplifting our guests and people everyday!YOU WILL:Create unforgettable beverages including espresso-based drinks.Seek every opportunity to enhance the guest experience with every interaction and provide consistent and individualized guest attention.Demonstrate passion for the Second Cup brand and have knowledge of our products.Keep café facilities clean and well maintained (dine-in area, restrooms, back of house)Restock product such as beans, cups and condiment stand.Complete sale with guests, using cash, debit/credit and Mobile App.Follow business procedures for handling voids and cash handling mistakes.Maintain coffee and food freshness standards while also controlling waste.Encourage guests to upload Mobile App and discuss the benefits associated with it. • Adhere to dress code and always be punctual and ready for your shift!YOU BRING TO THE ROLE:Excellent guest service skills– You have integrity, show kindness with each interaction and do it with GUSTO!Commitment to delivering superior quality-Obsessed with your quality of work and go above and beyond every day; you truly care about people and consider our guests in everything you do.Coffee passion! An ambassador for our brand – takes great pride in what you do.Team and community mindset- Focus on common goals; support and respect others and values relationships.Authenticity- Honest, fair and act with integrity; treat each person as if they are the most important person in the room; collaborative and communicativeAlso know that in this active & exciting role you will be:Standing for extended periods of time.Some lifting is required along with some bending, reaching and turning.Exposure to noise (blenders, espresso machine), heat (steam from espresso machine).Second Cup is an equal opportunity employer. We would like to thank all applicants for their interest. Only those applicants under consideration will be contacted. For additional information on our organization, please visit us at www.secondcup.comExperience: Barista: 1 year (preferred)Job Types: Full-time, Part-time, Permanent, CasualPart-time hours: 20-40 per weekSalary: $14.50-$16.00 per hourBenefits:Discounted or free foodOn-site parkingStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayMorning shiftWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Winnipeg, MB R3Y 1N3: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Winnipeg, MB\"\n        },\n        {\n            \"id\": \"DB8FD8B64E1A8A523C20E2907B7DA8DC\",\n            \"cityName\": \"19574 60 Ave, Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=71775dddad82c2af\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Fix Auto Langley\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694429456138,\n            \"dateOfPosted\": 1692705393722,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Fix Auto Langley is looking for a Customer Service Representative! If you are a people person and are looking to evolve in a fast-paced work environment, then this could be your ticket to a great career. As a Customer Service Representative,you will act as brand ambassador and provides positive brand experience to all customers. A day in the Life of a Customer Service Representative at Fix Auto Effectively manage front office operations to ensure efficient organization and support of the sales functionProvide service to customers by reviewing the services offered and cross-sell different programs by explaining the advantage of our multiple service offerings.Collaboration with production manager and sales managers to ensure vehicles are on track for timely and flawless deliveryCommunicate and interact with clients throughout the different technologies such as text messages, emails, online videocall, etc.As required, assign the work order to technicians. In addition to an excellent work-life balance, Fix Auto offers a host of benefits including: Inclusive work environment– we encourage you to unlock your potential and contribute meaningfully to our success.Learning & Development: Learning doesn’t stop when you land a job, so we’re committed to supporting you by investing in world-class training programs. You can take advantage of our virtual and in-person learning opportunities for your continuous evolution.Range of Benefits for your family and you.Up to date tools and equipment.Safe work environment. Apply now! 19574 60 Avenue Surrey, B.C. V3S 3S7\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"72EDF3CDC68CE744EEED0651667E744D\",\n            \"cityName\": \"Bathurst, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7c3540243352a313\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Olivier Honda Bathurst\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694429450543,\n            \"dateOfPosted\": 1693585123227,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.6183507,\n                    \"lon\": -65.6513358\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bathurst\",\n                \"formattedAddress\": \"Bathurst, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Gloucester County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bathurst\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 7 months to less than 1 yearWork setting On-site customer service Automobile repair services Tasks Access and process information Answer inquiries and provide information to customers Arrange for billing for services Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Receive payments Schedule and confirm appointments Book appointments Computer and technology knowledge Internet MS Excel MS Outlook MS Windows MS Word Security and safety Criminal record check Transportation/travel information Own transportation Valid driver's licence Work conditions and physical capabilities Attention to detail Fast-paced environment Health benefits Dental plan Disability benefits Health care plan Vision care benefits Long term benefits Group insurance benefits Life insuranceWork Term: PermanentWork Language: BilingualHours: 40 hours per week\",\n            \"location\": \"Bathurst, NB\"\n        },\n        {\n            \"id\": \"17E14DCFB1B013B53E0D06500C8A103B\",\n            \"cityName\": \"355 Erb Street West, Waterloo, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7618e59287c182b8\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Currency Converters Of Waterloo\",\n            \"rowSalary\": \"$16.55–$18.50 an hour\",\n            \"date\": 1694429447084,\n            \"dateOfPosted\": 1692710058987,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4527742,\n                    \"lon\": -80.5527051\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Waterloo\",\n                \"formattedAddress\": \"Erb St W, Waterloo, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Waterloo\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job descriptionKey ResponsibilitiesCustomer Service Representatives are primarily responsible for providing consistently exceptional customer service, performing transactions, and completing a variety of internal administrative tasks. Key responsibilities include, but are not limited to:· Buying and selling foreign currency in the form of cash, cheques, wire transfers, and other monetary instruments· Assist clients in person, over the phone, and through email regarding Currency Converters of Waterloo’s organizational products and services· Balance foreign currency and Canadian currency, Interac machines, cheques, and precious metals· Maintain customer accounts by accurately collecting, updated, and verifying customer information· Uphold client confidentiality and comply with all legal and risk management policies and proceduresQualifications· Secondary School Diploma (or equivalent)· Minimum 2+ years of customer service and/or cash handling experience· Exceptional customer service and communication skills, both written and verbal· Proficiency with numerical calculations· Ability to excel in a fast-paced environment while maintaining strong attention to detail· Must possess valid driver’s license· Must pass criminal record check and credit check· Fluency in second language is considered an assetApplicants are invited to submit their resume and cover letter directly through Indeed or drop them off at 355 Erb Street West, Waterloo. The job posting end date is September 8 2023. We sincerely thank all who apply; however, only those selected for an interview will be contacted.Currency Converters of Waterloo is committed to being a fair and include work environment. Accommodations are available on request for candidates taking part in all aspects of the recruitment and selection process.Job Types: Part-time, PermanentJob Types: Part-time, PermanentPart-time hours: 16-22 per weekSalary: $16.55-$18.50 per hourBenefits:Casual dressFlexible scheduleOn-site parkingSchedule:Day shiftMonday to FridayWeekends as neededExperience:customer service: 2 years (required)Work Location: In personApplication deadline: 2023-09-08\",\n            \"location\": \"E Erb St. West, Waterloo, ON\"\n        },\n        {\n            \"id\": \"8B6D42E30B2FD9CAE1EEE6109C2A353E\",\n            \"cityName\": \"Ancaster, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a1800611f3cfc110\",\n            \"jobName\": \"Customer Service/Serving\",\n            \"companyName\": \"Albatross Indoor Golf Centre\",\n            \"rowSalary\": \"$16.75–$17.00 an hour\",\n            \"date\": 1694429375733,\n            \"dateOfPosted\": 1692737285643,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2177791,\n                    \"lon\": -79.98728349999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Ancaster, Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking a dedicated and customer-oriented individual to join our team as a Customer Service/Serving professional. In this multifaceted role, you will be responsible for delivering outstanding customer service, managing customer interactions, facilitating simulator setup, operating the point of sale system, serving refreshments, preparing food items, and ensuring the overall cleanliness and security of our GOLFZON simulator facility.Responsibilities:Customer Check-in and Check-out: Warmly greet customers and efficiently check them in for their scheduled tee times.Handle customer payments accurately and provide assistance during check-out.Reservation Management: Answer incoming calls, addressing inquiries and booking tee times based on customer preferences.Simulator Setup Assistance: Guide customers through the setup process of the GOLFZON simulator, ensuring they have a smooth experience.Point of Sale Operation: Skillfully operate the point of sale (POS) software to process transactions and manage payments.Reconcile cash and credit card payments, maintaining accurate records of financial transactions.Customer Service and Refreshment: Provide excellent customer service by serving drinks, snacks, and addressing customer questions.Food Preparation: Prepare food items according to the menu, ensuring adherence to quality and safety standards.Facility Maintenance: Perform opening and closing duties, including cleaning and organizing the facility.Secure the building at the end of the shift, including locking doors and managing the till.Menu Management: Follow the menu to cook and prepare food items, ensuring consistency and taste quality.Team Collaboration :Collaborate with colleagues and managers to ensure smooth operations and a positive customer experience.Additional Tasks :Complete any other tasks assigned by managers to support overall facility operations.Qualifications:High school diploma or equivalent.Previous customer service experience is preferred.Basic knowledge of point of sale software and cash handling procedures.Strong interpersonal skills and a friendly, approachable demeanor.Effective communication skills, both verbal and written.Ability to multitask and remain organized in a fast-paced environment.Attention to detail and commitment to maintaining high cleanliness and hygiene standards.Basic cooking skills and the ability to follow a menu.Flexibility to work evenings, weekends, and holidays as needed.Join our team and be a pivotal part of providing exceptional customer experiences in a dynamic environment. If you're enthusiastic, adaptable, and passionate about delivering top-notch service and culinary offerings, we encourage you to apply.Job Types: Full-time, Part-time, SeasonalSalary: $16.75-$17.00 per hourBenefits:Discounted or free foodOn-site parkingStore discountSchedule:8 hour shiftMorning shiftNight shiftSupplemental pay types:Overtime payTipsAbility to commute/relocate:Ancaster, ON L9G 3K9: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Ancaster, ON\"\n        },\n        {\n            \"id\": \"2BE65BE7F80CF5E6B597EB03A0048E02\",\n            \"cityName\": \"26557 Civic Centre Rd, Keswick, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=92705dd7aa2cf89b\",\n            \"jobName\": \"Roc Lead Customer Service And Cafeteria Representative\",\n            \"companyName\": \"Town Of Georgina\",\n            \"rowSalary\": \"$17.40–$18.40 an hour\",\n            \"date\": 1694429308183,\n            \"dateOfPosted\": 1693555764780,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2985236,\n                    \"lon\": -79.4389406\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Georgina\",\n                \"formattedAddress\": \"Civic Centre Rd, Georgina, ON L0E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Georgina\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ROC Lead Customer Service and Cafeteria Representative (Posting #2023.101S) Department: Community Services Division: Recreation Services Location: The ROC Status: Seasonal (November 14, 2023 – April 12, 2024) Hours of Work: 20 – 40 hours per week (4 – 8 hours per day) Number of Positions: 1 – 2 Hourly Wage: $17.40 - $18.40 per hour Training Rate: $16.55 per hour Date Posted: August 15, 2023 Date Closing: October 15, 2023 Come work with us! Employment with the Town of Georgina offers an opportunity to make a positive difference in our community. We are a progressive, forward-thinking organization focused on continuous improvement, innovation and providing exceptional customer service. We offer a collaborative team environment and an excellent place to take charge of your career.Position Purpose Responsible for assisting the Recreation Services Supervisor with overseeing the daily operations of the ROC Ticket Office and ROC cafeteria, including but not limited to food preparation, cash handling, cleaning, customer service, opening and closing the facility. For full details, please see attached job description.Minimum QualificationsPossess a High school diploma or equivalent;Current Food Handler certification is considered is required;Previous restaurant or cafeteria food preparation (preferably in a supervisory role);Must be available to work flexible hours including daytime, evenings, weekends and holidays;Excellent customer service skills to deal effectively with the general public; For full details, please see attached job description How to apply Qualified applicants are invited to submit a resume and cover letter, identifying the Job Title and Job ID#. Please apply by visiting the www.georgina.ca/careers no later than 11:59 pm on the closing date. The assessment process may include a practical test and/or interview. Committed to diversity and a barrier-free environment The Town of Georgina is an equal opportunity employer committed to inclusive, barrier-free recruitment and selection processes and work environments. We encourage applications from people with disabilities and will accommodate the needs of applicants under the Ontario Human Rights Code and the Accessibility for Ontarians with Disabilities Act (AODA) throughout all stages of the recruitment and selection process. Please advise the Human Resources Team if you require an accommodation(s) and we will work with you to meet your needs throughout any stage of the process. Please be advised that this information will be treated in a confidential manner. We thank all candidates for their interest, however only those being considered will be contacted. Personal information collected will be used in accordance with the Municipal Freedom of Information and Protection of Privacy Act for the purpose of candidate selection. Further information concerning the collection of personal information should be directed to the Human Resources Manager, Town of Georgina, 26557 Civic Centre Road, Keswick, ON L4P 3G1 (905) 476-4301 JOB DESCRIPTION Title: ROC Lead Customer Service & Cafeteria Representative Division: Recreation Services Position #: SE12 Department: Community Services Reports To: Recreation Services Supervisor Employee Group: Seasonal Direct Exercised: ROC Customer Service Representative Date Created: September 12, 2011 & ROC Cafeteria Attendants Date Amended: August 10, 2023 Position Summary Responsible for assisting the Recreation Services Supervisor with overseeing the daily operations of the ROC Ticket Office and ROC cafeteria, including but not limited to food preparation, cash handling, cleaning, customer service, opening and closing the facility. ResponsibilitiesOpens and closes the ticket office and cafeteria;Assists with training, scheduling, and on-going guidance and support to customer service representatives and cafeteria attendants;Follows all specified procedures to correctly handle all cash and credit transactions, ensuring accurate sales transactions, including counting start up cash and balancing at end of shift, authorizes refunds and provides petty cash as required and makes daily deposits at the end of each closing shift;Performs/oversees sales to customers and maintains a pleasant attitude in an effort to create a positive customer experience and responds to all customer requests in a timely and professional manner;Ensures that food and beverage products are fresh, appetizing and properly prepared in accordance with the York Region Public Health Department regulations and guidelines;Ensures proper food handling procedures to maintain high standards of quality control and hygiene;Correctly operates all food service equipment and conducts regular maintenance inspections;Ensures weekly inventory control and documentation, daily restocking of merchandise and assist with ordering supplies as needed;Ensures diligent record keeping as it pertains to temperature regulations, inventory checklists, equipment and food inspection, and food waste reports are being conducted as needed.Oversees or performs daily cleaning of cafeteria and equipment and trash removal and ensures that cafeteria work areas are kept neat, orderly and clean;Oversees staff in providing prompt, efficient and gracious service to all guests including preparing food, beverages and snacks as ordered, bussing tables and giving correct change for cash transactions;Assists with coordination of special events as required;Utilizes the first in, first out (FIFO) rule and sorts food by their best before or expiration dates.Stores all food and beverage in accordance to York Region Public Health Department timelines and guidelines along with any product timelines and guidelines including listed on packaging.Assists with customer service and cafeteria duties as required (see ROC Customer Service Representative and ROC Cafeteria Attendant job descriptions for further details);Immediately report all concerns (including product), suspicious occurrences and hazardous conditions to the Recreation Services Supervisor or designate. The above statements reflect the general details considered necessary to describe the principal functions and duties of the position and will not be construed as a detailed job description of the work requirements that may be inherent in the job. Skill/Knowledge RequirementsPossess a High school diploma or equivalent;Current Food Handler certification is considered is required;Knowledge of all cafeteria menu options along with food service techniques;Previous restaurant or cafeteria food preparation (preferably in a supervisory role);Knowledge of the ActiveNET and Fareharbor software systems considered an asset;Responsible, courteous, good communication skills;Effective conflict resolution, problem solving and critical thinking skills;Ability to work independently without close supervision;Previous cash handling experience with accurate cash handling skills;Excellent computer Skills and good working knowledge of all Microsoft Office programs;Excellent customer service skills to deal effectively with the general public;Must be available to work flexible hours including daytime, evenings, weekends and holidays.\",\n            \"location\": \"Civic Centre Rd, Georgina, ON\"\n        },\n        {\n            \"id\": \"5917E255399B0E405F6F581B097ED4F3\",\n            \"cityName\": \"10277 City Parkway, Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=27436a8fa995dc48\",\n            \"jobName\": \"Customer Service And Food Preparation\",\n            \"companyName\": \"Donair Hub\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694429301795,\n            \"dateOfPosted\": 1693584832751,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1944856,\n                    \"lon\": -122.8481893\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"City Pkwy, Surrey, BC V3T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Looking for great customer service and flexibility every other training will be providedJob Type: Part-timePart-time hours: 20/40 per weekSalary: From $16.75 per hourSchedule:8 hour shiftDay shiftEvening shiftSupplemental pay types:Bonus payTipsEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)\",\n            \"location\": \"City Pky, Surrey, BC\"\n        },\n        {\n            \"id\": \"C01BDBEE1A0998BE3FAE223DB0590792\",\n            \"cityName\": \"2355 Millstream Rd, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8cfb20955fb2a158\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Domino's Pizza | 655069 Bc Ltd\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694429180364,\n            \"dateOfPosted\": 1693584761945,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.49118850000001,\n                    \"lon\": -123.5101833\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Millstream Rd, British Columbia V9B, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Hot job opening, fresh out of the Oven! The Customer Service Representative's role is crucial within the Domino's system! We pride ourselves on offering fast and friendly service with a smile, and our CSRs lead the way in doing so. Within our fast paced environment, the role is primarily to offer top quality customer service by phone and in person at the counter. Customer Service Representatives are expected to know Domino's products and the current offers in order to provide customers with the correct order and best value based on their needs. Customer Service Representatives will take orders by phone-in customers, as well as customers at the store. They are expected to manage the cash drawer when accepting payment for orders and returning change. CSRs will also handle customer concerns using the approach taught during Domino's onboarding and orientation. In secondary roles, Customer Service Representatives will help make quality products, label boxes, cut pizzas and prepare orders for delivery or to be served to in-store customers. CSRs also help in maintaining the store's professional image by participating in the cleaning tasks assigned to all team members. Benefits of working with Domino's Pizza include: Flexible schedules Competitive wages Staff pizzas Career growth opportunities A uniform is provided, and wages start at $15.65 plus $1.50 - $ 3.50/hour in tips. Customer Service Representatives are expected to be presentable by following Domino's personal image and grooming standards. Domino's is an equal opportunity employer. REQUIREMENTS Previous experience preferred Friendly and well spoken Good math skills to handle cash handling for in-store customer payments Speak English fluently in order to serve customers Focus on cleanliness and personal hygiene At Domino's Pizza, Our Most Important Ingredient is Our People! We offer employment opportunities within our franchise stores. Take the first step in joining our team, and you'll find opportunities you won't find anywhere else in the industry!\",\n            \"location\": \"Millstream Rd, Victoria, BC\"\n        },\n        {\n            \"id\": \"4C73F88A0CB991566B679DAC5B37CFAA\",\n            \"cityName\": \"1010 Polytek Street, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6e5e710979a44a1e\",\n            \"jobName\": \"Customer Sales And Service Rep\",\n            \"companyName\": \"Natural Purity\",\n            \"rowSalary\": \"$75,000–$85,000 a year\",\n            \"date\": 1694429178266,\n            \"dateOfPosted\": 1693584484159,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4562665,\n                    \"lon\": -75.58572459999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Polytek St, Ottawa, ON K1J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 75000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    75000.0\n                ],\n                \"range\": {\n                    \"gte\": 75000.0,\n                    \"gt\": null,\n                    \"lte\": 75000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Sales and Service Rep- Natural Purity www.naturalpurity.ca PLEASE ONLY APPLY IF YOU LIVE IN THE GREATER OTTAWA AREA AND RESIDE FULL TIME IN CANADA. We are currently looking for individuals that share our common goal and are interested in growing with a company that wants a better tomorrow. Customer Sales and Service Reps will visit our customers and offer them great opportunities and options to improve the environmental conditions in their home or business.JOB DESCRIPTION: Customer Sales and Service Reps will be responsible to educate residential and commercial clients about their environmental conditions in their home and the day-to-day effects on their lives and businesses.No experience is necessary as we will provide you with paid training by a certified trainer.We will assure all appointments have been properly screened and meet our guidelines for both the client and team member safety.All of your appointments will be prearranged, and you will have no quotas to meet. There will be no pressure to sell products to potential clients.We will provide you an extremely competitive compensation package with incentives and bonuses along with full benefits and pleasant work atmosphere.No experience necessary as we will provide full training and ongoing support.We provide a great base salary as well as a generous bonus and benefit package.We have current team members that are making six figures in this position. We are looking for enthusiastic and motivated individuals to join our team and grow our business.We ONLY WORK A 4 DAY WORK WEEK. No Saturdays or Sundays. We don't require you to work Statutory Holidays as well.We require candidates to have their own vehicle and provide a professional appearance and possess a great attitude. About Us: We are a Canadian company that is servicing customers from coast to coast with environmentally friendly proprietary products and we are expanding our business. With one of the most advanced management teams, we provide our customers a full understanding of our product line. We also spend considerable effort and time to fully train our team members which provides them the opportunity to rapidly advance within our company. We are focused on preserving the planet through providing education and in turn encouraging everyone to reduce their carbon footprint. By encouraging our customers to use our products we have shown that it will help reduce plastic bottle waste that ends up polluting our rivers, lakes, and streams. Full time positions available. Wage $75,000 - $85,000 per year paid on a weekly basis plus benefits and attractive bonus structure. This is not a work from home position. PLEASE ONLY APPLY IF YOU LIVE IN THE GREATER OTTAWA AREA AND RESIDE FULL TIME IN CANADA. PLEASE NOTE: We require candidates to have their own vehicle for this position. Please DO NOT APPLY if you do not have your own car for transportation to and from customer appointments.\",\n            \"location\": \"Polytek Street, Ottawa, ON\"\n        },\n        {\n            \"id\": \"E0C2415266F2C76DBD5AD2C99D49A0B3\",\n            \"cityName\": \"1283 Cornwall Rd, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d6841ae2970f8628\",\n            \"jobName\": \"Bilingual Customer Service Representative (Eng/Fre)\",\n            \"companyName\": \"Canadian Spa Company\",\n            \"rowSalary\": \"$42,000–$48,000 a year\",\n            \"date\": 1694428616221,\n            \"dateOfPosted\": 1693583568472,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4718977,\n                    \"lon\": -79.6662865\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Cornwall Rd, Oakville, ON L6J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Canadian Spa Company manufactures and wholesales hot tubs, swim spas and outdoor accessories on a global scale to various merchants around the world. With over 35 years of experience in the hot tub industry, we have worked on perfecting and maintaining a highly valued product with a customer first attitude. Our immediate fulfillment approach has allowed us to succeed in this competitive marketplace while providing a quality brand that customers can trust in.The Canadian Head Office is in need of an energetic, hard working and dynamic individual to join our team this year. We are looking for a Bilingual (French/English) speaking Tier 1 Customer Service Representative to assist with the Canadian market and provide translation work for marketing documentation. This is a position with great opportunities depending on the individual's strengths.Responsibilities and DutiesCorrespond with customers on a daily basis through a variety of mediums (phone, email, social media etc)Answer calls and emails to log various service issues through the use of a ticketing systemProvide feedback of product issues in the field to help improve product designTranslation work of marketing/technical documentation to improve our global presenceQualifications and SkillsExcellent customer service skills with the ability to speak and write fluently in English and FrenchTraining will be provided while on the jobProactive team playerIndividual must be able to adapt and learn on the flyGreat communication skills with an emphasis on being a team playerAbility to work in a fast-paced environmentTechnical troubleshooting considered an assistExperience working remotelyMust have competent technical skills (Microsoft Office, Google products etc.)BenefitsVarious benefits include:Competitive salary provided with flexible hoursTeam wide profit sharing and bonus incentives based off annual goalsDirect commission for individual sales and achievementPlease send all resumes through Indeed for review, we hope that you will join our team and become and part of our growth! For any questions don't hesitate to contact us at 1-877-347-7727Job Type: Full-timeSalary: $42,000.00-$48,000.00 per yearBenefits:Dental careDisability insuranceExtended health careLife insurancePaid time offVision careSchedule:Monday to FridayWeekends as neededSupplemental pay types:Bonus payCommission payAbility to commute/relocate:Oakville, ON L6J 7T5: reliably commute or plan to relocate before starting work (required)Application question(s):Describe what \\\"good customer service\\\" means to youExperience:Customer service: 1 year (preferred)Work Location: Hybrid remote in Oakville, ON L6J 7T5\",\n            \"location\": \"Cornwall Road, Oakville, ON\"\n        },\n        {\n            \"id\": \"FE42EDD93BDA9814DFAA0ED64A124931\",\n            \"cityName\": \"Homestead Oxygen + Medical Equipment Inc. in Newmarket, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0f8012030c2719e2\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Homestead Oxygen + Medical Equipment Inc.\",\n            \"rowSalary\": \"$38,000–$43,000 a year\",\n            \"date\": 1694428550144,\n            \"dateOfPosted\": 1691527985298,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.05918700000001,\n                    \"lon\": -79.46125599999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Newmarket\",\n                \"formattedAddress\": \"Newmarket, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Newmarket\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 38000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    38000.0\n                ],\n                \"range\": {\n                    \"gte\": 38000.0,\n                    \"gt\": null,\n                    \"lte\": 38000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Homestead Oxygen + Medical Equipment is a locally owned and operated company built on professional expertise and personal service. Homestead has been meeting the community’s medical equipment needs since 1997. We are opening a new location in Newmarket.Homestead Oxygen + Medical Equipment is now accepting resumes for the following position:Customer Service RepresentativeThe successful applicant will have a passion for helping people live their best life.You are a friendly, well-organized individual who enjoys working with people. You will have a mature attitude and a lot of patience. You will answer questions and help our clients overcome daily challenges by providing advice on braces, compression stockings, walkers, wheelchairs, scooters, bathroom safety products, lift chairs, mobility equipment, and other aids to daily living. Excellent verbal communication skills are required. Previous experience in sales or customer service is preferred. Preference will be given to applicants with Home Health Care sales experience and/or Certified Fitters for compression stockings and supports and braces. Previous experience with Home Health Care is an asset, but we will train the right person.You will be making a difference in people’s lives with care, compassion and empathy.This is a full-time position. Our hours of operation are Monday to Friday 9:00 am to 5 pmHomestead’s goal is to always provide our customers with unparalleled customer care. If you would like to join our team of caring professionals, please email a cover letter and resume by July 30th 2022We thank all applicants, only those qualified will be contacted for an interview.Job Type: Full-timeSalary: $38,000.00-$43,000.00 per yearFlexible Language Requirement:English not requiredSchedule:8 hour shiftMonday to FridayEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In personExpected start date: 2023-08-21\",\n            \"location\": \"Newmarket, ON\"\n        },\n        {\n            \"id\": \"C354CEA00FA5EEEC9FD7C27B8CD7EF8A\",\n            \"cityName\": \"199 Front St Frnt 218, Belleville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e73afc7e49041c18\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mcdougall Insurance And Financial\",\n            \"rowSalary\": \"$40,000–$44,000 a year\",\n            \"date\": 1694428521598,\n            \"dateOfPosted\": 1693583386261,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.1651276,\n                    \"lon\": -77.384746\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Belleville\",\n                \"formattedAddress\": \"Front St, Belleville, ON K8N, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hastings County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Belleville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"McDougall Insurance is now the largest insurance brokerage in Eastern Ontario. We represent over 50 insurance companies, giving us the ability to offer optimal selection and competitive rates. Here at McDougall we have created an Employee Promise. The leadership of McDougall Insurance promises to foster an environment of support, empowerment and inclusion, while investing in our employee’s future with McDougall Insurance. In turn, our employees promise to treat others with dignity and respect and strive to approach each day with a positive attitude and willingness to learn. Together, we promise to deliver Legendary Service to our customers and apply the McDougall principals of Trust, Honesty and Integrity with a goal of building strong lasting relationships. The result is our staff is engaged, accountable and professional.At McDougall Insurance and Financial we offer our employees; a comprehensive benefits package, McDougall pension plan, staff appreciation days, social events, a branch-wide yearend bonus, a competitive salary and paid vacation time starting at 3 weeks.Our growing team is looking for a Customer Service Representative in Personal Lines to join our team in Belleville, Ontario!Are you looking to start a new career? Do you have strong customer service skills? If so, this might be the perfect opportunity for you. We provide you with all the tools, knowledge and training you need to be successful in this role.Responsibilities:· To provide legendary service directly to the client, after the sale by the Sales Executive.· Communicate with the client in person, by phone, email, text, etc. to answer all of their questions/inquiries, provide professional advice or recommendations regarding their coverage, and collect relevant information.· Process additions, deletions or changes to their policy on the appropriate broker management system (EPIC)· Ensure all transactions and renewals are accounted for and processed accurately and on a timely basis.· Provide quotations or estimates to clients on premiums, update information, and confirm data and coverage and to record appropriate changes or adjustments.· Communicate with insurance company personnel as required.· As an independent broker working for your client, acts as liaison with the insurer and balances the interests of the client, McDougall Insurance and the insurance company in force.· Function as part of a team responsible for assisting in the collection of accounts receivable and in any other area as required.· Where appropriate, procure a sale, normally through upgrading and bundling coverage for personal lines clientsQualifications:· Must have exceptional customer service and communication skills.· Acts in a professional manner at all times and maintains a position of trust and confidentiality.· Acts in an open, respectful, honest and helpful manner with all team members, clients and other staff.· Ability to work effectively in a fast-paced environment· Must be willing and eligible to obtain a RIBO licenseRIBO stands for the Registered Insurance Brokers of Ontario. RIBO regulates the licensing, professional competence, ethical conduct and insurance related financial obligations of all independent general insurance brokers in the province of Ontario. To learn more please visit https://www.ribo.com/What We Offer:Dedication to investing in our employees’ future by offering RIBO, CAIB, and other designation education reimbursementA supportive and inclusive culture where diversity is valuedA competitive employee health and dental benefits program including long term disabilityA competitive pension planPaid vacation timeOn-site parkingAccess to ongoing training and development through our McDougall training teamMcDougall Insurance and Financial is proud to be an equal opportunity employer. We aim to find individuals who are passionate about their work and treat others with dignity and respect.If you need assistance or an accommodation, you may reach out to our Human Resources Department through our website:https://www.mcdougallinsurance.com/contact/Job Types: Full-time, PermanentSalary: $40,000.00-$44,000.00 per yearBenefits:Company eventsCompany pensionDental careDisability insuranceEmployee assistance programExtended health carePaid time offVision careFlexible Language Requirement:French not requiredSchedule:Day shiftMonday to FridaySupplemental pay types:Bonus payWork Location: In personApplication deadline: 2023-09-08\",\n            \"location\": \"Front Street, Belleville, ON\"\n        },\n        {\n            \"id\": \"67AD530CEAE070D1DFFD49A8C45AD40E\",\n            \"cityName\": \"54 Davis Dr, Newmarket, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ec673ab070e58646\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Wingsup! Restaurants Newmarket\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694428486499,\n            \"dateOfPosted\": 1668992137108,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.0624094,\n                    \"lon\": -79.44692739999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Newmarket\",\n                \"formattedAddress\": \"Davis Dr, Newmarket, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Newmarket\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Operations of various kitchen stations (cashier, breading, frying, saucing, prep)· General preparation of ingredients and finished food products for presentation to guest· General housekeeping and cleaning of kitchen, storefront and service counter (sweeping, mopping, dishes, scrubbing surfaces, etc.)· Customer service & order taking - ringing in and adjusting orders in person and over phone· Operating a point-of-sale (POS) system to ring in orders, and basic cash handling and processing debit/credit & gift card paymentsJob Types: Full-time, Part-time, PermanentSalary: $15.50-$16.50 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftEvening shiftHolidaysNight shiftWeekend availabilityCOVID-19 considerations:Requiring the use of masks among all staff. Masks are most essential in times when physical distancing is difficult. Information should be provided to staff on proper use, removal, and washing of masksJob Type: Part-timePart-time hours: 20-40 per weekBenefits:On-site parkingStore discountSchedule:Day shiftEveningsOn callWeekend availabilitySupplemental pay types:TipsAbility to commute/relocate:Newmarket, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Davis Dr, Newmarket, ON\"\n        },\n        {\n            \"id\": \"539FE115CD983FC4D91B5188F91EED71\",\n            \"cityName\": \"Home Hardware Sherwood Park in Sherwood Park, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cdb0e7d18f896bac\",\n            \"jobName\": \"Customer Service/Sales\",\n            \"companyName\": \"Home Hardware Sherwood Park\",\n            \"rowSalary\": \"$18–$23 an hour\",\n            \"date\": 1694428445545,\n            \"dateOfPosted\": 1693581693393,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5411916,\n                    \"lon\": -113.2957355\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sherwood Park\",\n                \"formattedAddress\": \"Sherwood Park, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sherwood Park\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CUSTOMER SERVICE SALESPERSONFULL-TIMEJOB DESCRIPTION:The LBM (Lumber and Building Materials) Counter Salesperson is responsible for providing prompt, courteous and efficient customer service, advising them on appropriate merchandise and related items. Their duties include:Being familiar with building supply pricing.Local building codes.Types of building permits issued.Preparing quotations.A variety of other related tasks.The LBM Counter Salesperson must perform all assigned tasks with sufficient speed and accuracy to avoid adverse impacts on customer service and achieve sales profitability.DUTIES / RESPONSIBILITIES:Ensure customers are greeted within 30 seconds of their arrival at the LBM counter.Determine customers’ needs by asking open-ended questions. Communicate product knowledge to the customer as appropriate—process special orders for non-stock or out-of-stock items. Be familiar with and maintain up-to-date pricing information. Help customers solve building problems. Update yourself with practical knowledge of building materials and lumber products, including their uses, advantages, and disadvantages. Resolve customer complaints. Be familiar with current yard inventory and surplus items. Suggest rules, policy and procedural changes when you believe they would improve efficiency, sales, profits, morale, etc. Maintain professional confidentiality of all store and customer records. Work on additional duties and assignments as assigned by management. Work safely following provincial and federal safety legislation and the use of good common sense. Report any potential hazards and unsafe behaviour to management to correct the situation.QUALIFICATIONS:Ability to work a flexible schedule, including weekends and evenings.A great attitude that continuously brings sales energy every day.Must communicate effectively and persuasively with employees, management, suppliers, and customers to obtain accurate information for pricing, estimates, quotations, etc.Prior retail experience is beneficial.Willingness to continually develop professional skills and knowledge base.High School graduate or equivalent.Ability to work cooperatively in a team atmosphere.WORKING RELATIONSHIPS:Reports directly to the Sales ManagerJob Type: PermanentSalary: $18.00 to $23.00 /hourJob Types: Full-time, PermanentSalary: $18.00-$23.00 per hourExpected hours: 40 per weekBenefits:Dental careExtended health careStore discountVision careSchedule:8 hour shiftMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Sherwood Park, AB\"\n        },\n        {\n            \"id\": \"97201346706005F38930F75C59818659\",\n            \"cityName\": \"693 Fairford St W, Moose Jaw, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0952cc522b119397\",\n            \"jobName\": \"Dispatcher/Customer Service\",\n            \"companyName\": \"Town & Country Plumbing & Heating (Moose Jaw)\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694428372568,\n            \"dateOfPosted\": 1693581755751,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.3925849,\n                    \"lon\": -105.547062\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moose Jaw\",\n                \"formattedAddress\": \"Fairford St W, Moose Jaw, SK S6H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moose Jaw\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Summary DetailsReporting to the Operations Manager, the dispatcher is responsible for dispatching of Technicians to customer locations, providing excellent customer service over the phone and in person, organizing upcoming jobs, overseeing maintenance program. Working under general supervision following clearly defined procedures and policies.This individual provides extraordinary customer service to clientsEstablishes and maintains effective communication and working relationships with clients, co-workers, and managers, etc.The Dispatcher assigns individuals and teams to tasks and locations.Coordinates resources according to customer requests and general job demands.Communicates assignments to employees and enters assignment data in computer software.Complies with all safety, security, compliance, and quality standards and procedures established by the Company, Clients, and regulatory authoritiesResponsibilitiesSupport the performance of the branch operations, including planned and unplanned maintenance/service/ installation/control calls from customers.Provide assistance, information and customer service as requested to clients.Schedules and dispatches employees, crews/teams, equipment, or service vehicles to appropriate locations according to customer requests, specifications, or needs, determine types or amounts of equipment, vehicles, materials, or personnel required according to work orders or client requirementsRelays work orders, messages, and information to or from crews/teams, supervisors, and managementConfers with clients and/or supervising personnel in order to address questions, problems, and requests for service or equipmentMonitors personnel and/or equipment locations and utilization in order to coordinate service and schedules to achieve optimal efficiency; ensures timely and efficient movement of resources according to work orders and/or resource schedulesOversees all communications within specifically assigned areasReceives or prepares work orders and work schedulesOrders supplies and equipment and issues them to personnelRecords and maintains files and records of customer requests, work, or services performed, inventory, and other dispatch informationStrictly adheres to all safety and regulatory compliance proceduresCoordinates and arranges for necessary repairs in order to restore service and schedulesMiscellaneous duties as assignedTracking:Maintains periodic contact with service personnel to ensure completion of assigned dutiesInforms the on-duty supervisor of any issues out of the ordinary that may need additional assistance or oversightCreates reports to monitor activity and operationsTransportation:Creates a work schedule for on-duty techniciansMaintains periodic contact with the technicians to ensure that they are safely and efficiently completing their assigned tasksInforms the supervisor of any issues out of the ordinary that may need additional assistance or oversightQualificationsMust be 18 years of age or olderPrevious knowledge in HVAC, plumbing, and/or electrical an assetPreferred Qualifications:Customer Service Experience1 yr of similar work experienceJob Type: Full-timeSalary: $18.00-$25.00 per hourBenefits:Dental careExtended health careRRSP matchFlexible Language Requirement:English not requiredSchedule:8 hour shiftSupplemental pay types:Overtime payExperience:dispatching: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Fairford St W, Moose Jaw, SK\"\n        },\n        {\n            \"id\": \"34C744A284B13F100BE31278F1638496\",\n            \"cityName\": \"6115 Danville Rd, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e43e5c3330cf4aa7\",\n            \"jobName\": \"Customer Service Representative (Pm)\",\n            \"companyName\": \"Lakeside Performance Gas Services Ltd\",\n            \"rowSalary\": \"$19.50 an hour\",\n            \"date\": 1694428351906,\n            \"dateOfPosted\": 1693580461999,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.643354,\n                    \"lon\": -79.67461700000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Danville Rd, Mississauga, ON L5T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*NOTE – applicants must be prepared to participate in the interview process via phone and/or video conference. Two references must be submitted if selected for an interview. *COMPANY OVERVIEWFor over 20 years, Lakeside Performance Gas Services Ltd. has been proudly serving the natural gas industry across Ontario and Quebec in partnership with top Utilities service providers. The company further excels in providing innovative solutions to its customers and extended group of clients. Headquartered in Mississauga with satellite offices throughout Ontario, the company values its dedicated group of personnel who consistently provide customers with the highest level of support.WORK HOURSMondays to Fridays from 11:30AM - 8:00PMJOB DESCRIPTIONThe purpose of the administrative function at Lakeside Gas Services is to deliver superior service through accurate data entry, aid with correspondence, record keeping and filing, while providing information to customers and maintaining the accuracy of databases.PRIMARY RESPONSIBILITIESReceive, process, and schedule requests for residential/commercial service as appropriate.Maintain regular and consistent communication with Technicians and customers.Respond to customer requests and schedule timely service appointments.Issue correspondence per predetermined schedule.Review work orders for accuracy and completeness.Ensure accuracy in information transfer and coding of documentation.Track and provide progress report on the status work assignments.Correspond and investigate with the Technicians and Utility organizations in regards to errors.Participate as needed in special department projects and other duties as assigned by department leaders.Ensure filing is accurate and updated correspondence is available as necessary in support of records integrity.Multitask efficiently using several Windows applications simultaneously to verify customer information, determine the root cause of any issue and provide the proper resolution.Exceptional computer skills (MS Office, Intermediate Excel.Perform other duties as assigned.EDUCATION AND EXPERIENCE REQUIREMENTHigh school or equivalent diplomaAsset to have a post-secondary diploma in Business Administration or equivalent.1-2 years Administrative and/or customer service experienceExperience in office administration/office setting is an asset.WORKING AT A LAKESIDE LOCATIONFlexibility is key; willing to work at a fast pace with attention to detail and accuracy.Ability to work as a team, as well as independently.No travelINCLUSION AND EQUAL OPPORTUNITY EMPLOYMENTAt Lakeside Gas Services, our belief is that diversity and inclusion are fundamental and integral part of its business innovation and growth.We are committed to building diverse and inclusive teams within an equitable workplace for our staff to collaborate and bring their true selves to work. We also strive to provide an accessible candidate experience for our prospective staff with various abilities. Please let us know if you need any accommodations during the recruitment process. Lakeside continues to actively address and improve on issues of inequity and systemic bias to support our diverse talent, clients, and communities.Job Types: Full-time, PermanentSalary: $19.50 per hourBenefits:Casual dressCompany eventsDental careExtended health careLife insuranceOn-site parkingPaid time offRRSP matchVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftEvening shiftMonday to FridaySupplemental pay types:Overtime payRetention bonusAbility to commute/relocate:Mississauga, ON L5T 2H7: reliably commute or plan to relocate before starting work (preferred)Application question(s):Are you legally eligible to work in Canada and location specified in the job posting and, if applicable, hold a valid work permit or study permit that allows you to fulfill the requirements of this role?Are you willing to undergo a background check (criminal, professional and academic), in accordance with local law and regulations?Are you willing to start at $19.50 per hour with a compensation review after probation?Are you comfortable with using a computer all day?Education:Secondary School (preferred)Experience:administrative, customer service and/or call center: 1 year (preferred)Work Location: In personExpected start date: 2023-10-02\",\n            \"location\": \"Danville Rd, Mississauga, ON\"\n        },\n        {\n            \"id\": \"0C2BBACB6B01605B12841A01A756A9DD\",\n            \"cityName\": \"Coquitlam, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e42997324107cf80\",\n            \"jobName\": \"Dispatcher/Customer Service\",\n            \"companyName\": \"Trifecta Plumbing & Hvac\",\n            \"rowSalary\": \"$20–$30 an hour\",\n            \"date\": 1694428215509,\n            \"dateOfPosted\": 1693577070127,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2837626,\n                    \"lon\": -122.7932065\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Coquitlam\",\n                \"formattedAddress\": \"Coquitlam, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Coquitlam\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Calling all happiness heroes and chat champions! Are you a vibrant ball of energy, fueled by the power of laughter and the joy of helping others? Well, prepare for the ultimate job extravaganza because we're hiring for the most epic role ever: Customer Service Rockstar!Our company is all about creating a work environment that's happier than a unicorn at a cotton candy factory. We've got a compensation package that will make your piggy bank dance with glee and benefits that will make you feel like you've won the lottery. It's a win-win situation, my friend!As our Customer Service Superstar, you'll embark on a thrilling adventure, communicating with our lovely customers in the plumbing wonderland. Your mission? To ensure they receive the VIP treatment they deserve and leave with smiles wider than the Grand Canyon.But hold on to your hats because the fun doesn't stop there! When you join our team, you'll unlock a treasure trove of perks and delights:A paycheck that will have you doing the cha-cha every payday.Paid time off to recharge your superhero powers and explore the world (or binge-watch your favorite shows).Superhero-worthy medical, dental, and vision insurance to keep you healthy and looking fabulous.matching rrsp to save for your futureOpportunities for career growth that will make you feel like you've leveled up in the game of life.A company culture so fantastic, it's like working in a magical land where unicorns moonlight as comedians.If you're a bundle of fun, happiness, and epic awesomeness looking to join a company that knows how to throw a party, don't wait a second longer! Apply now, and let's embark on a wild ride full of laughter, success, and mind-blowing plumbing adventures. Together, we'll create a future that's funnier than a stand-up comedy show at a water park!Duties:-using Service titan to book calls and dispatch technicians-apply for permits-collect payment over the phone from customers- Make outbound calls to customers to provide assistance and resolve issues- Analyze customer needs and provide appropriate solutions- Maintain accurate and detailed records of customer interactions- Collaborate with other team members to ensure excellent customer service- Follow company policies and procedures in all customer interactionsExperience:- if you have used Service Titan ,apply right now !- Previous experience in a customer service role is preferred but are looking for someone who has used service titan !- Strong communication skills, both verbal and written- Excellent problem-solving and analytical abilities- Ability to work well in a team environment- Proficient computer skills, including knowledge of Microsoft Office SuiteWe offer competitive pay and benefits package, including:- Health insurance- Dental insurance- Vision insurance- Paid time off- Retirement planIf you are a motivated individual with a passion for providing exceptional customer service, we would love to hear from you. Please submit your resume and cover letter detailing your relevant experience.Job Type: Full-timeSalary: $20.00-$30.00 per hourBenefits:Casual dressCompany eventsDental careExtended health carePaid time offRRSP matchVision careWork from homeSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payOvertime payRetention bonusSigning bonusEducation:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Coquitlam, BC\"\n        },\n        {\n            \"id\": \"524DD089F3948B08FC98EF6C9FC441F6\",\n            \"cityName\": \"Vanier, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5b438c7fc4265c17\",\n            \"jobName\": \"Entry Level Customer Service Representative\",\n            \"companyName\": \"Lucent Marketing Group\",\n            \"rowSalary\": \"$39,000–$45,000 a year\",\n            \"date\": 1694428186755,\n            \"dateOfPosted\": 1693577362286,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4370851,\n                    \"lon\": -75.658968\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Vanier, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 39000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    39000.0\n                ],\n                \"range\": {\n                    \"gte\": 39000.0,\n                    \"gt\": null,\n                    \"lte\": 39000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you experienced in the Customer Service and Sales field and looking to utilize your customer-centric approach to business development? Lucent Marketing Group is one of the Ottawa regions leading firms in Customer Service, Sales, and Business Development. We are dedicated to providing our clients with the utmost care and have a history of delivering profitable results and exceeding expectations in a vastly growing consulting industry. Utilizing this customer-centric and consultative approach is a cornerstone in how our Customer Service and Sales Team works together to create a dynamic, diverse and collaborative workspace.We emphasize our employee’s goals, growth, and leadership development to foster this atmosphere. As part of our Entry Level Customer Service Representative team, you would become an expert in all areas of consulting, customer service, sales, and leadership development. The ideal candidate is undeniably dedicated to advancing our core mission of innovation and inclusiveness. The right candidate for our Entry Level Customer Service Representative role is also a communications expert, empathetic towards people, and is exceptional at delivering results on behalf of our renowned clientele. If you are confident and possess these traits, joining our Entry Level Customer Service Representative team would be ideal for you.As A Entry Level Customer Service Representative You Will Be Responsible To:Articulate the features and benefits of our client’s products and services directly to our customers and possess the knowledge to answer any additional questions they may haveBuild rapport and long-lasting relationships with our customers to help ensure repeat business and brand loyaltyComplete the sales process with any qualifying customer who meets the client’s parameters and maintains the ability to lead with the client brand, not discountsSupport the rest of our Entry Level Customer Service Representatives and Sales teams with remaining daily responsibilities including but not limited to, compliance, product delivery tracking, and quality assuranceDrive customer engagement and satisfaction from initial contact through the point of sale to delivery of products to further help scale acquisition growth and longevityEffectively and efficiently communicate with customers to handle all inquiries, resolve issues, and overturn any objections while completing the sales processWhat We Look For In Our Entry Level Customer Service Representative:1 year of experience in an entry-level or introductory position within the field of customer service and/or sales is preferredA self-motivated individual dedicated to utilizing their existing skills and have a student mentality to learn new skillsetsStrong leadership skills and capability to mentor other members of the Entry Level Customer Service Representative and sales teamsExceptional communication skills, both written and verbalTenacious and dedicated to reinforcing the core values of unbelievable customer servicePerks Of Working With Lucent Marketing Group:Travel opportunities, both locally and internationallyLeadership development workshops and conferences across the country (in-person & virtual)Uncapped organic growth potential within our organizationEngagement opportunities to enhance our team collaborative cultureJob Type: Full-timeSalary: $39,000.00-$45,000.00 per yearBenefits:Employee assistance programSchedule:Monday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Vanier, ON\"\n        },\n        {\n            \"id\": \"E549FCC668DBE5E278F5A01BA5F75DE2\",\n            \"cityName\": \"Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ef7b1422a33f7e81\",\n            \"jobName\": \"Entry Level Customer Service Representative\",\n            \"companyName\": \"Lucent Marketing Group\",\n            \"rowSalary\": \"$39,000–$45,000 a year\",\n            \"date\": 1694428157495,\n            \"dateOfPosted\": 1693577070142,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 39000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    39000.0\n                ],\n                \"range\": {\n                    \"gte\": 39000.0,\n                    \"gt\": null,\n                    \"lte\": 39000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you experienced in the Customer Service and Sales field and looking to utilize your customer-centric approach to business development? Lucent Marketing Group is one of the Ottawa regions leading firms in Customer Service, Sales, and Business Development. We are dedicated to providing our clients with the utmost care and have a history of delivering profitable results and exceeding expectations in a vastly growing consulting industry. Utilizing this customer-centric and consultative approach is a cornerstone in how our Customer Service and Sales Team works together to create a dynamic, diverse and collaborative workspace.We emphasize our employee’s goals, growth, and leadership development to foster this atmosphere. As part of our Entry Level Customer Service Representative team, you would become an expert in all areas of consulting, customer service, sales, and leadership development. The ideal candidate is undeniably dedicated to advancing our core mission of innovation and inclusiveness. The right candidate for our Entry Level Customer Service Representative role is also a communications expert, empathetic towards people, and is exceptional at delivering results on behalf of our renowned clientele. If you are confident and possess these traits, joining our Entry Level Customer Service Representative team would be ideal for you.As A Entry Level Customer Service Representative You Will Be Responsible To:Articulate the features and benefits of our client’s products and services directly to our customers and possess the knowledge to answer any additional questions they may haveBuild rapport and long-lasting relationships with our customers to help ensure repeat business and brand loyaltyComplete the sales process with any qualifying customer who meets the client’s parameters and maintains the ability to lead with the client brand, not discountsSupport the rest of our Entry Level Customer Service Representatives and Sales teams with remaining daily responsibilities including but not limited to, compliance, product delivery tracking, and quality assuranceDrive customer engagement and satisfaction from initial contact through the point of sale to delivery of products to further help scale acquisition growth and longevityEffectively and efficiently communicate with customers to handle all inquiries, resolve issues, and overturn any objections while completing the sales processWhat We Look For In Our Entry Level Customer Service Representative:1 year of experience in an entry-level or introductory position within the field of customer service and/or sales is preferredA self-motivated individual dedicated to utilizing their existing skills and have a student mentality to learn new skillsetsStrong leadership skills and capability to mentor other members of the Entry Level Customer Service Representative and sales teamsExceptional communication skills, both written and verbalTenacious and dedicated to reinforcing the core values of unbelievable customer servicePerks Of Working With Lucent Marketing Group:Travel opportunities, both locally and internationallyLeadership development workshops and conferences across the country (in-person & virtual)Uncapped organic growth potential within our organizationEngagement opportunities to enhance our team collaborative cultureJob Type: Full-timeSalary: $39,000.00-$45,000.00 per yearBenefits:Employee assistance programSchedule:Monday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"D5EBC817CE00647DBCE45AADB4CD40BE\",\n            \"cityName\": \"Bracebridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a1e442e1a5bf3595\",\n            \"jobName\": \"Customer Service And Warranty Representative\",\n            \"companyName\": \"Mica Sport Canada\",\n            \"rowSalary\": \"$25–$30 an hour\",\n            \"date\": 1694428073288,\n            \"dateOfPosted\": 1693575923312,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.0389565,\n                    \"lon\": -79.3078787\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bracebridge\",\n                \"formattedAddress\": \"Bracebridge, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Muskoka District Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bracebridge\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 25.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    25.0\n                ],\n                \"range\": {\n                    \"gte\": 25.0,\n                    \"gt\": null,\n                    \"lte\": 25.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service and Warranty RepresentativeIf you are an outdoor enthusiast, avid cyclist, skier, snowboarder, or runner that would like to work for a Global leader in the Sporting goods industry, we are hiring. Mica Sport Canada is the Canadian Distributor for Scott Sports, with the head office & warehousing located in Muskoka, Ontario.We're looking for an eager and tech-savvy customer service and warranty representative. As a customer service and warranty representative, you'll be responsible for troubleshooting product and service related issues, administering warranties and providing superior customer service.Job SummaryWork closely with the bike brand coordinator to provide excellent customer service to dealers, sales agents, and end users.Provide the first point of contact to dealers, sales agents and end users for bicycle related questions via telephone and e-mail.Provide a timely response to bicycle related questions.Work closely with the credit department making sure orders are accurately entered to ensure payment in a timely manner.Answering customer inquiries in a timely and professional mannerResponding to customers and troubleshooting technical issuesTracking and resolving customer service related issues in a timely mannerEnsuring that customer service needs are met with minimal interruption of servicePreparing and tracking warranties and replacement productsResponsibilities:Manage, maintain, and administer all aspects of bicycle related warranty claims and issues.Enter all bicycle related orders in a timely and accurate manner (Dealers, sales agents, staff, warranty, and promotional).Manage and distribute sales order pick lists through incoming and available inventory based on ship dates and in-season order requirements, while maximizing freight efficiencies.Manage and maintain inventory and available to sell reports for internal and external use.Maintain and update a dealer database to ensure accurate order entry, discounts, terms, credit limits and shipping arrangements.Assist in the generation and creation of sales and marketing analysis.Assist the sales and marketing manager in the execution and implementation of all sales and marketing programs.Assist in the preparation for bicycle related shows and events.Assist in the setup and tear down of bicycle related events and shows.Travel as required to events and shows.Track, manage and maintain the demo fleet of bicycles.Act as support for all areas of customer service.You're a great fit for this role if you have:· Post-Secondary Education· Bicycle specific Knowledge or interest1 - 2 years' experience in customer service and tech supportExcellent verbal and written communication skillsStrong technical and problem-solving skillsKnowledge of customer service systems and softwareStrong organizational and time management skillsExperience in the warranty and customer service industry is a plus· Clean Driving record and ability to drive a company vehicle· Ability to travel domestically and internationallyCompensation/Remuneration:Salaried Position Range $25-30/hour based on experience specific to sporting goods industryHealth Benefits PackageEmployee Product Benefit PackageOffice is based in Bracebridge, ONMonday-Friday 8:30-5:00If you're the perfect candidate for this role and meet the qualifications above, we'd love to hear from you. To apply, please submit your resume and any relevant experience for review.Job Types: Full-time, PermanentSalary: $25.00-$30.00 per hourBenefits:Dental careExtended health careLife insuranceSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsWork Location: In person\",\n            \"location\": \"Bracebridge, ON\"\n        },\n        {\n            \"id\": \"7D7062B8D7454DA3F895464D42251E75\",\n            \"cityName\": \"3900 12 St NE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=df025083026c39f1\",\n            \"jobName\": \"Bilingual (French) Customer Service Representative\",\n            \"companyName\": \"Advanced Orthomolecular Research\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694427730377,\n            \"dateOfPosted\": 1693534485882,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.10407319999999,\n                    \"lon\": -114.0365001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"11 St NE, Calgary, AB T2E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"AOR is one of Canada’s fastest growing Nutraceutical health supplement organizations. Our market leading premium products are manufactured and distributed primarily to specialty retailers throughout Canada and the United States.ResponsibilitiesLearn and maintain high level product knowledge of AOR products to help educate customersPromote AOR’s brand and products and capture opportunities to upsell or cross sell AOR productsProcessing orders by phone, fax and emailMaintaining up to date and accurate customer filesHandling customer creditsFilter and direct calls, and emails to the appropriate departmentsSupply relevant marketing materials to customers and fellow staff to ensure informational needs are metResolve customer complaints in a positive, timely, win/win manner. Document issues and actions taken in accordance with company processes for future problem analysis and elimination.Answer all technical questions on nutrition and our product line for customers via the phone, tickets and live chat.Receive monthly training on new and existing products.Investigate complicated customer questions with the research team, and occasionally the Quality Control team.Make suggestions on AOR products for customers based on a condition or symptom they might be trying to correctAssist the Customer Excellence Manager as necessaryAssist Marketing, Shipping, and Finance departmentWork synergistically with the both the Internal and External teamQualifications and SkillsObtained a Certificate in Holistic Nutrition (Preferable)Fluent in French- oral and written (required)Completed post- secondary diploma in business, marketing, human resources, health science) is a nice to have but not required.Should have a strong work ethic, inter-personal skills, and independentExperience within a health- related industry would be considered an assetExperience working with Navision would be considered an assetJob Type: Full-timeSalary: $18.00-$22.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceOn-site parkingPaid time offRRSP matchVision careWellness programSchedule:8 hour shiftDay shiftMonday to FridayWork Location: In person\",\n            \"location\": \"St NE, Calgary, AB\"\n        },\n        {\n            \"id\": \"3C29D77E5013F9204C504AC483A3BB7D\",\n            \"cityName\": \"Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=28abf0bf5a686523\",\n            \"jobName\": \"Customer Service Specialist\",\n            \"companyName\": \"Bauco Access Panel Solutions Inc\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694427293422,\n            \"dateOfPosted\": 1693534782073,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4284207,\n                    \"lon\": -123.3656444\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About Bauco Access Panel Solutions Inc.  Founded in 1995, BAUCO is a manufacturing enterprise located in Victoria, BC utilizing local skills and internationally sourced inputs and technologies to create exceptional products and services. As the manufacturer and distributor of quality access panels, we serve local, national and international clients in North America and the Caribbean. The panels are virtually invisible when finished, and are an architect favorite for high-rise construction projects such as hotels and residential developments. We support architects, developers, and contractors in solving service access issues, while maintaining interior design aesthetics and ensuring easy access. We have a dynamic team with overwhelming passion and commitment to excellence. About the role:  Our customer service specialists are the face of the company. In our team driven office, you will work with other specialists to keep the business moving forward. You will interact directly with industry professionals to determine the best solution for their requirements. You will work with them from first call through to delivery providing exceptional service by applying our proven process. What you will be doing:  You are all about attention to detail and delivering solutions to customers to solve their problems. You carefully listen to client concerns. You have an aptitude and desire to understand technical details. You draw upon the resources of the technical team, employ your in-house training and utilize resources such as product literature, web links, and samples to provide detailed application based consultation. You provide commercial information in the form of detailed quotes outlining cost of goods, trade discounts, freight costs and delivery times. You will work with our established account management process, utilizing CRM , accounting, and quoting software. You enjoy communicating by phone, email, and mail with people across North America and beyond. What you bring to the table: Minimum 2 years customer service experience in a similar role. Previous experience in manufacturing, construction, commercial building supply or another business-to-business sales environment is preferred. Experience in customer support or account management is preferred. Exceptional attention to detail. Customer service driven. Strong written and telephone communication skills. Multi-targeted: versatility to move between tasks with ease, and to monitor status of many different customers. Ability to investigate and problem solve. Excellent organization skills: Priority based time management and task tracking. Team player: Shares workload to maintain a cooperative team environment. Demonstrated ability to provide, receive, and act on constructive feedback in a team based environment  Ability to collaborate with a team to solve issues from a shared leadership perspective. Enthusiasm to learn and understand our market and customer environment. Tech savvy: experience including point of sale in QuickBooks or similar, Microsoft Office Suite, CRM software. Detail focused: able to perform complex tasks with a high degree of accuracy. Experience: What we will provide to you: Competitive salary plus participation in the company bonus program. Comprehensive medical, dental, and vision care benefits to support you and your family. Options for flexible hours and some remote workdays. Generous vacation and personal leave policy to recharge and rejuvenate. Continuous learning and training to sharpen your skills and keep you ahead of the game. A casual and supportive work environment that nurtures innovation , recognizes and rewards outstanding performance. One-on-one meetings, Performance reviews, Collaborative planning, and goal-setting sessions, Employee of the Month peer recognition program, Monthly staff appreciation lunches, and many other perks. Hiring Salary: $20.00-$24.00 per hour Job Type: Full-time Salary: $20.00-$24.00 per hour\",\n            \"location\": \"Victoria, BC\"\n        },\n        {\n            \"id\": \"213A9DD544F27E2F20114BC0A1D9D7AE\",\n            \"cityName\": \"2225 14th Ave, Regina, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=10677186bb750b80\",\n            \"jobName\": \"Technician Support And Customer Service\",\n            \"companyName\": \"Rescuetech (Cbas Services Ltd)\",\n            \"rowSalary\": \"$14–$16 an hour\",\n            \"date\": 1694425232266,\n            \"dateOfPosted\": 1694236814574,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"RescueTECH is Regina's premier destination for computer repair, serving both Apple and Windows-based computers for over 15 years. As a locally owned and operated business, we also offer onsite IT services to both home and business users in the Regina area.RescueTECH is currently seeking a part-time employee (approximately 20 hours a week) to assist our repair technicians in their daily tasks. Job responsibilities will include basic office maintenance, daily vacuuming and trash disposal, monitoring and responding to emails, voicemails, and social media messages, answering phone calls and in-person inquiries, contacting customers regarding their devices, processing payments and related transactions, and any other duties as required by the employer.Only individuals who meet the following criteria will be considered:Must-haves:Physical presence for conducting job interviews in Regina, Saskatchewan.Good personal hygiene, verifiable references, and excellent English language communication skills.The ability to work independently.General knowledge of computers, their components, and operations.Past experience in customer service relevant to the position and its responsibilities.Reliability and the capacity to adhere to a set work schedule, such as 9:00 am to 12:00 pm, Monday to Friday (or as otherwise agreed upon by the employee and employer).Good-to-haves include work experience in the following areas:· Hardware repair and troubleshooting of Windows and Apple computers and other devices.· Repair of Android and/or Apple devices.· Micro-soldering and board repair.· Data recovery.· Social media management.Wages will be determined based on the work experience and qualifications of the successful candidate. Students are encouraged to apply.Job Type: Part-timePart-time hours: 20 per weekSalary: $14.00-$16.00 per hourBenefits:Flexible scheduleFlexible Language Requirement:French not requiredSchedule:Day shiftNo weekendsEducation:Secondary School (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"A0FCD6F34EE2245A7BECD5FD905BFB2C\",\n            \"cityName\": \"5526 Kingsway, Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6224d2b7aa3f8b00\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Milani Plumbing Heating & Air Conditioning Ltd.\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694423942612,\n            \"dateOfPosted\": 1693533584393,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.22315889999999,\n                    \"lon\": -122.9831859\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Kingsway, Burnaby, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"If you are the kind of person that loves helping people and are looking for a role where you can apply your excellent communications skills, then we want to hear from you!As Vancouver’s largest plumbing, heating and air conditioning company continues to expand, we need to add more people to our award-winning team! We are seeking a full-time customer service representative to join our Customer Service team. With more than 120 service trucks on the road, we field a large volume of calls every day from people all over the Lower Mainland that need our help with their plumbing, drainage, heating and air conditioning service.We are looking to fill this open position within our organization immediately, we would like to hear from people with great communication skills who truly enjoy customer serviceJob Duties:- You will handle incoming calls, responding to customer e-mails and in webchat;- Learn about our services inside and out to be able to answer any questions from customers.- Learn to identify customers’ concerns and desires in order to provide appropriate service;- Keep a record of customers’ inquiries using the company’s software system;- Schedule appointments for our plumbing, heating and air conditioning services;- Work with colleagues when necessary to resolve customer complaints;- Provide feedback to other departments to improve sales and business processes.Successful candidates must:Possess outstanding communication and customer service skillsHave a great attitude, be positive and energeticBe detail-orientedHave excellent time-management and be organizedHave excellent computer skills and typing speedBe an expert multi-taskerBe comfortable in a fast-paced environmentSpeak English fluentlyExperience working in a call center is not required but an assetMandarin or Cantonese are an asset.We provide:- Competitive Wages- Extended Medical/Dental- Training- Encouraging work environment;- Excellent team;- Opportunities for advancement- Vacation Pay- Flexible work schedule- Job DiversityCustomer Service Representatives will handle a high volume of telephone calls and is critical to the success of our business.Please respond with your resume. Applicants with a matching skillset will be contacted for a phone interview to verify your energy and communication skills.Milani Plumbing Drainage & Heating Ltd. is an equal opportunity employer!While we thank all candidates for their interest, only those who most closely match our requirements will be contactedJob Types: Full-time, PermanentSalary: $20.00-$24.00 per hourBenefits:Dental careExtended health careSchedule:8 hour shiftSupplemental pay types:Commission payExperience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Kingsway, Burnaby, BC\"\n        },\n        {\n            \"id\": \"15D76F70D0FE762C9FB4FBCC28323F9D\",\n            \"cityName\": \"Terrace, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d4f74b3fcc5374e5\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Machine Pace Group\",\n            \"rowSalary\": \"$63,574–$75,363 a year\",\n            \"date\": 1694423740425,\n            \"dateOfPosted\": 1692704192066,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.5181925,\n                    \"lon\": -128.6031539\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Terrace\",\n                \"formattedAddress\": \"Terrace, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kitimat-Stikine\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Terrace\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 63574.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    63574.0\n                ],\n                \"range\": {\n                    \"gte\": 63574.0,\n                    \"gt\": null,\n                    \"lte\": 63574.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Why should you apply? Great Question:Hybrid office with remote flexibilityWeekly Pay and Uncapped Commission$60k plus first year average incomeResidual IncomeExceptional commission ratesTrips, Training Incentives/Events and other benefitsPaid TrainingResponsibilities include:Conference over zoom, skype and phone calls with customers/clientsHandle inbound calls from customers, other lenders and insurance companiesAssist customers with inquiries, account status and problem resolutionAssist multiple departments with verifying and processing finance informationAssist various outside parties with inquires and document verificationMake outbound calls and negotiate arrangements with customers who have pending contracts or an account up for renewalAssist customers with account inquiriesRequirements:A winning attitude and determination to succeedWillingness to go above and beyond for our customersMath skills are a plusMust have experience with Microsoft Word, Excel and other Modern Office Technology like ZoomPrior customer service/sales experience is a plusJust like your resume, a job description never tells the full story. Apply today and if you've got what it takes, we'd love to discuss everything in further detail. We know there's a lot more you'd like to know, why wait? Apply today!Job Types: Full-time, Part-time, Fixed term contract, Casual, SeasonalSalary: $63,574.07-$75,363.48 per yearBenefits:Casual dressCompany eventsCompany pensionDental careDisability insuranceDiscounted or free foodEmployee assistance programExtended health careOn-site gymOn-site parkingPaid time offProfit sharingStore discountTuition reimbursementVision careWellness programWork from homeSchedule:8 hour shiftEvening shiftMonday to FridayMorning shiftNight shiftWeekends as neededSupplemental pay types:Bonus payOvertime payRetention bonusSigning bonusTipsWork Location: In person\",\n            \"location\": \"Terrace, BC\"\n        },\n        {\n            \"id\": \"7F15FEF8AB35A9B56F83D23E3567F6E7\",\n            \"cityName\": \"11 Vervain Dr, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b5810a260c98c0c5\",\n            \"jobName\": \"Customer Service Representative-Financial\",\n            \"companyName\": \"6755675 Manitoba Ltd O/A Calculus Financial\",\n            \"rowSalary\": \"$24 an hour\",\n            \"date\": 1694423732762,\n            \"dateOfPosted\": 1693552038769,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.9611152,\n                    \"lon\": -97.2334349\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Vervain Dr, Winnipeg, MB R0C 3A0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Rosser\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job DescriptionInform customers of available financial products and services to address their needs. Process customer's terms lease payments and disbursements, through bills and credit card payments, money orders, and other related banking transactions. Answer inquiries and resolve discrepancies concerning customers' accounts. Inform customers about term and due lease/loan payments. Balance daily transactions. Promote financial products and services. Store, update and retrieve financial data.Completion of Secondary School, Certificate/Diploma in Business Administration/ManagementJob Types: Permanent, Full-timeSalary: $24.00 per hourBenefits:Dental careOn-site parkingPaid time offSchedule:8 hour shiftDay shiftMonday to FridayOvertimeSupplemental pay types:Overtime payAbility to commute/relocate:Winnipeg, MB R0H 2E6: reliably commute or plan to relocate before starting work (required)Education:AEC / DEP or Skilled Trade Certificate (required)Experience:Relevant: 3 years (required)Shift availability:Day Shift (required)Work Location: In personApplication deadline: 2023-10-03\",\n            \"location\": \"Vervain Dr, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"D6232454DC288F27BC207EEB46B2B441\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5565ac094b802451\",\n            \"jobName\": \"Agent Du Service à La Clientèle / Customer Service Agent\",\n            \"companyName\": \"Voxdata\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694422833866,\n            \"dateOfPosted\": 1693535122249,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*English version to follow* *NB : Nous n'acceptons que les candidatures provenant de la grande région de Montréal car la formation se fait à partir du bureau.* *Nous exigeons que nos candidats parlent anglais car certains de nos clients sont à l'extérieur du Québec et ne parlent que l'anglais.* Prêt à vous joindre à l'un des plus importants centres d'appels de Montréal ! VOXDATA vous attend ! Nous cherchons à agrandir notre équipe avec de nouveaux membres qui sont prêts à devenir nos prochains experts en offrant la meilleure expérience client possible ! Pour avoir une meilleure idée de notre entreprise et de nos valeurs, vous pouvez consulter notre site web ici ! https://www.voxdata.com/ Voici quelques raisons pour lesquelles il fait bon travailler chez VOXDATA : Une variété de types de postes, allant du service à la clientèle aux ventes, en passant par le soutien technique, avec des rôles uniquement en anglais ou bilingues et des options d'horaire variées - nous voulons mettre en valeur vos compétences uniques dans un poste qui vous convient le mieux !Un bureau facilement accessible et convoité au cœur du centre-ville de Montréal, et la possibilité de travailler à domicile pour nos postes hybrides !Un environnement de travail diversifié, positif et encourageant, notre objectif étant d'aider nos agents à briller et à réussir au maximum de leur potentiel !Les avantages et les bénéfices pour les employés tels que les plans de primes inclus dans nos postes, les primes supplémentaires pour les personnes les plus performantes (comme des cartes cadeaux et de l'argent supplémentaire !), les couvertures d'assurance, et les primes de recommandation des employés qui peuvent aller jusqu'à 1000 $ par personne !La possibilité d'évoluer et de développer vos compétences par le biais de réunions d'équipe, de séances de coaching individuel et d'évaluations des performances, toutes conçues pour vous aider à renforcer vos capacités et à devenir un maître dans votre travail !Des opportunités de développement interne ouvertes à tous - avec des rôles tels que chef d'équipe, coach, formateur, mentor et même des postes administratifs, nous sommes fiers de toujours nous tourner vers le personnel que nous avons déjà avec nous pour le promouvoir lorsque l'occasion se présente !Pour ce poste, vous travaillerez avec une société d'aviation bien établie. Vos tâches spécifiques seront les suivantes : Fournir un service à la clientèle de premier ordre à chaque interaction avec les clients.Répondre aux appels entrants des clients pour les aider à effectuer des réservations une fois qu'elles ont été achetées.Résoudre les problèmes liés à l'accès aux billets et à la navigation sur le site web.Répondre aux questions concernant les informations sur les billets ou aux questions générales sur les réservations.Ready to join one of the leading call centers in Montreal?! VOXDATA is waiting for you! We're looking to expand our team with new members who are ready to become our next experts in delivering the best customer experience possible! To get a better idea of our company and values, you can check out our website here! https://www.voxdata.com/ Here's a few reasons why it's great to work at VOXDATA: A variety of position types, ranging from customer service, sales, and technical support, with English-only or bilingual roles and ranging scheduling options – we want to highlight your unique skillset in a position that is best suited to you!An easily accessible and coveted office location in the heart of Downtown Montreal, and the option to work from home with our hybrid roles!A diverse, supportive, and encouraging work environment, our goal is to help our agents shine and succeed to their fullest potential!Employee benefits and perks such as bonus plans included into our positions, additional bonuses for top performers (like gift cards and extra money!), insurance coverages, and employee referral bonuses that can go up to $1000 per person!The chance to grow and develop your skills through team meetings, individual coaching sessions, and performance reviews; all designed to help you further strengthen your abilities and become a master at your job!Internal growth opportunities that are open to everyone – with roles like team leader, coach, trainer, mentor, and even administrative positions; we pride ourselves on always looking to the staff we already have with us to promote when the occasion arises!For this role, you will be working with an established aviation company. Your specific tasks will include: Providing top-tier customer service to clients in every interaction.Answering inbound calls from customers to assist with bookings/reservations after they have been purchased.Resolving issues relating to ticket access and website navigation.Answering questions regarding ticket information, or general questions about bookings/reservations.Requirements Qu'est-ce qui fait de quelqu'un un excellent candidat ? Nous recherchons des personnes qui : Disponible pour travailler 40 heures par semaine, du lundi au dimanche, de 7h00 à minuit, de préférence le soir et le week-end.Ont déjà travaillé dans le service à la clientèle, les ventes ou les centres d'appels, ou ont une expérience traduisible dans d'autres secteurs.Sont bilingues en français et en anglais.Vous pouvez apprendre à utiliser et à faire fonctionner plusieurs programmes informatiques avec facilité.Être disponible pour travailler le soir et le week-end si la campagne est opérationnelle pendant ces périodes.Avoir obtenu un diplôme de fin d'études secondaires ou un diplôme équivalent.Se considèrent comme des personnes capables de résoudre des problèmes, de s'adapter à des situations changeantes et sont motivées pour être les meilleures des meilleures !What do we think makes someone a great candidate?! We're looking for people who:Are available to work 40 hours/week within the operational hours of Monday to Sunday, between 7:00 AM to 12:00 AM (midnight), evening and weekend availability is preferred.Have worked in customer service, sales, or call centers before; or have translatable experience from other industries.Are bilingual in French and English.Can learn how to use and operate multiple computer programs with ease.Have graduated high school or have an equivalent diploma.Consider themselves to be problem-solvers, adaptable to changing situations and are motivated to be the best of the best!Benefits Soumettez votre candidature dès maintenant pour lancer le processus d'embauche et voyez par vous-même pourquoi il est formidable d'être un agent VOXDATA !Ce poste est assorti d'un salaire de base de 17,00 $/heure. Submit an application now to get the hiring process started and see for yourself why its great to be a VOXDATA agent! *This position has a base salary of $17.00/hour.*\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"1D5CB6124EE86CFAAFA2CCB3245421B2\",\n            \"cityName\": \"9750 140 Street, Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b0bc5080d230eeac\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Blenz Coffee Opc\",\n            \"rowSalary\": \"$16.75–$17.00 an hour\",\n            \"date\": 1694422513394,\n            \"dateOfPosted\": 1692718694033,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.142184,\n                    \"lon\": -122.776366\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"161 St, Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Blenz at JPOPC Surrey is looking for hard working individuals with have an eye for detail. He/She should be customer friendly and a fun-loving person for this position who is companionate and empathetic. Should be flexible and have availability during weekdays for atleast 2 shifts. Food Safe is a plus. Please include your availability in response. Position is permanent and part-time only.* Always smile and greet customers.* Describe the menu product, specials and recommend it to customers.* Take customer orders and perform appropiate cash handling.* Prepare or serve hot or cold beverages, such as coffee, espresso drinks, blended coffees, or teas.* Clean or sanitize work areas, seating area, utensils, or equipment.* Check temperatures of freezers, refrigerators, or heating equipment to ensure proper functioning.* Able to take instructions from supervisor and execute them.Cafe operational hours are 7 am - 4:30 pm. Should be available for morning as well as closing shift. Cafe operational hours not suitable for high school students.Job Types: Part-time, PermanentPart-time hours: 15-20 per weekSalary: $16.75-$17.00 per hourBenefits:Dental careExtended health careLife insuranceVision careSchedule:Monday to FridayNo weekendsOn callSupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Street, Surrey, BC\"\n        },\n        {\n            \"id\": \"FD8B9A6C8631A44BC83A1651CC41517D\",\n            \"cityName\": \"235 Gore Road, Kingston, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f65071fdd35e4207\",\n            \"jobName\": \"Customer Service/Florist\",\n            \"companyName\": \"In Bloom\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694422476926,\n            \"dateOfPosted\": 1694422476726,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2606493,\n                    \"lon\": -76.4441002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kingston\",\n                \"formattedAddress\": \"Gore Rd, Kingston, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Frontenac County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kingston\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Do you wake up in the morning feeling creative and happy to start your day? Finding yourself looking for a job you can fall in love with? We want YOU on our team! We are in urgent search of a passionate individual to fill a customer service/potential Designer position at our East end flower shop. MUST have a valid G2 Drivers License and willingness to work Saturdays. Experience in the floral industry is a plus, but absolutely not a must have! If you are eager to learn, we are more then happy to teach you.Responsibilities consist of but are not limited to:- Tending to customers each individual requests- Cleaning and preparing floral product- Use of organization and time-management skills- Training/Willingness to learn designing floral arrangements- Handling money and sales- Delivering orders to customersInterviews to take place the week of September 18th and 25th.Please apply IN PERSON with a resume in hand. We look forward to welcoming a new member to our flower team!*PART TIME AND FULL TIME POSITIONS NEEDED*Job Types: Full-time, Part-timeSalary: From $15.50 per hourSchedule:Day shiftAbility to commute/relocate:Kingston, ON: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Gore Road, Kingston, ON\"\n        },\n        {\n            \"id\": \"36756BC92D0C03A0E7CF24566699CA2F\",\n            \"cityName\": \"3625 50 St, Cold Lake, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3dca4afc3e93d4da\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Enterprise Holdings\",\n            \"rowSalary\": \"$17.25 an hour\",\n            \"date\": 1694422084350,\n            \"dateOfPosted\": 1691541122378,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.4642591,\n                    \"lon\": -110.1732522\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cold Lake\",\n                \"formattedAddress\": \"Cold Lake, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Bonnyville No. 87\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cold Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" The Customer Service Representative will provide a high level of customer service by assisting both internal and external customers, primarily face-to-face, supporting their branch and rental needs. The Customer Service Representative will gain knowledge through local training and hands-on experience to provide administrative support, service customers, and act as a rental back-up in a large home city branch or airport location. This role is available as full time.  Opening available at the following branch location 3625 50 STREET COLD LAKE, AB T9M 1K6 This is a full time position that pays $17.25 / hour We offer:  Paid time off Employee discount Retirement savings plan Extended Health Benefits (Medical, Prescrption Drug, Dental and Vision) Life Insurance Training and development Schedule:  Monday-Friday: 8:00am-5:00pm Saturday: 9:00am-12:00pm (Rotating) Responsibilities: Take incoming calls- reservations, rate quotes, general questions and answers, provide information and resolution for customers, other branches, insurance companies, dealerships, repair shops and other vendors  Manage outgoing calls for callback management, A/Rs and miscellaneous calls as assigned  Provide a high level of customer service by assisting customers and assessing their rental needs in person and over the phone  Meet and greet customers in a friendly and timely manner  Provide directions and general assistance  Assist to assess condition of rental upon return  Process returns, check-ins and exit kiosk transactions  Effectively market the company while picking up customers up and/or dropping off customer in a safe and courteous manner and assisting customers as needed  Understand and communicate rental terms and conditions, vehicle features and other services  May sell optional protection products, upgrades, fuel options and other additional equipment  Responsible for notifying Management of any known vehicle problems and any required vehicle maintenance  Clean vehicle interior and exterior by hand or by operating washing equipment when needed  Perform various administrative and basic accounting functions such as: research and billing support tasks, accounts receivables, transfer and key logs, run miscellaneous reports, supply maintenance, process customer billing  Perform miscellaneous and backup duties job-related duties as assigned  Equal Opportunity Employer/Disability/Veterans Qualifications: Must be at least 18 years of age. High school diploma or above required; some college preferred Must have at least 1 year prior customer service, retail, or administrative support experience Must have a valid Class 5 drivers license with no more than 2 moving violations and/or at-fault accidents on driving record in the past 3 years No drug or alcohol related conviction on driving record in the past 5 years Must be authorized to work in Canada and not require work authorization sponsorship by our company for this position now or in the future. \",\n            \"location\": \"Cold Lake, AB\"\n        },\n        {\n            \"id\": \"DAF6D9C70A5235742E5EEEEED7F4F3E0\",\n            \"cityName\": \"Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d008b4ea81dc9e65\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Fortisbc\",\n            \"rowSalary\": \"$21.11 an hour\",\n            \"date\": 1694420875211,\n            \"dateOfPosted\": 1694212606116,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Affiliation: MoveUp Customer Service Employment Status: Unscheduled Part-Time Regular Salary: $21.11 Hourly Workplace Flexibility: No Posting End Date: Open until filled  We’re a Canadian-owned and BC-based energy company taking steps toward a lower-carbon energy future by providing renewable energy, natural gas and electricity to more than 1.2 million customers.  We’re looking for new talent to join us as we transform BC’s energy future. Our diverse team of more than 2,600 employees is committed to a safe and inclusive culture where each of us can connect, belong and grow. Join us and let’s work together for a better BC. Position Overview You live and breathe the values of delivering a world-class customer experience with an empathic demeanor, integrity and respect. A people-person at heart, you put yourself in the shoes of others to gain a better perspective of every situation so you can offer the best possible solutions. You understand that customers contribute to any company's success and take tremendous pride in ensuring every customer is happy with every interaction, so they come away with memorable experiences they can share with others.  As our Customer Service Representative, you’ll put all passion for the customer experience to work and contribute to an environment where customer engagement matters most. In this role, you’ll connect with customers to support their questions, inquiries and concerns through various channels, such as online chat, phone and email. You’ll take charge to resolve customer inquiries with little to no effort from our customers to make their situation easy and worry-free. As a customer yourself, you understand it’s all about our customers and supporting them the right way the first time. In year 1, you will: Develop knowledge and skills in the overall fundamental customer service processes to provide world-class experiences while interacting with our customers. Work to better understand our customer service expectations through specialized processes and channels of communication. Build relationships with peers and leaders through regular interactions. In year 2, you will: Continue to build knowledge, skills and confidence in all customer service processes, including resolving more complex and escalated customer inquiries. Partner with customer service leaders to support and mentor new colleagues. Gain a broader understanding of projects, committees and initiatives through collaboration across the customer service teams and beyond. What it takes: A high school diploma or general educational development. A customer-centric mentality and attitude dedicated to creating memorable and world-class experiences. Excellent verbal and written communications delivered in an understanding and respectful way. A solid multi-tasker who can navigate multiple computer programs to support the work you do with customers. Exceptional problem-solving skills and an ability to ask effective questions to get to the root of any issue and provide the best possible solution. What does it mean to be an Unscheduled Part Time Regular employee? An Unscheduled Part Time Regular employee, or UPTR for short, is hired to fill a part-time position of an ongoing nature while working variable hours. You will work a minimum 4 consecutive hours to a maximum 7.5 consecutive hours in any day and will be scheduled anytime between Monday to Friday, 7am to 8pm based on operational requirements. You are able to submit a standing request for preferred shifts (although shift assignment is based solely on operational requirements). You will normally work a minimum of 37.5 hours bi-weekly and a maximum of 60 hours bi-weekly (ranging from 18.75 to 30 hours per week). You will be eligible for benefits after their completion of 975 hours of accumulated service. Additional Information To view the full job description, click here . This is an office based role that will be required to be on site during scheduled shifts (located at our Willingdon Park office). Application process: If your application is shortlisted, you will receive an eSkills link to complete a Customer Service Assessment. Once the Assessment has been completed, you will receive a separate link to complete a one-way recorded VidCruiter Video Interview. If you are shortlisted past the VidCruiter Video Interview to the last phase of recruitment, you will be scheduled for a 15 minute Teams call with a Team Manager to discuss the role in greater detail. Successful applicants will be required to attend full-time classroom training starting on October 30, 2023, from Monday to Friday and scheduled from 8:00am - 4:00pm. Attendance is MANDATORY during this time. Our engaging workplace offers a wide range of challenging opportunities, while being safe, inclusive and diverse. We offer a competitive salary and benefits package, while supporting life-long career development. We also encourage volunteerism and nourish the need to give back to your community.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"21662E6FE2FE384C3DE01D5DABE6AEFC\",\n            \"cityName\": \"100 Mandalay Dr, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7c102c993cc57472\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Pro Star Immigration Consulting Services Ltd\",\n            \"rowSalary\": \"$15.50–$19.00 an hour\",\n            \"date\": 1694420517158,\n            \"dateOfPosted\": 1694337399247,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:- Provide exceptional customer service to clients via phone, email, and chat- Respond to customer inquiries for immigration and visa, MPNP and resolve issues in a timely and professional manner- Conduct outbound calling campaigns to follow up with customers and gather feedback- Analyze customer needs and recommend appropriate products or servicesRequirements:- Previous experience in a customer service role is preferred- Excellent communication skills, both verbal and written- Strong problem-solving abilities and attention to detail- Ability to multitask and prioritize tasks effectively- Proficient computer skills, including experience with CRM software- Ability to work independently as well as part of a teamIf you are a motivated individual with a passion for providing excellent customer service for visa and immigration , we would love to hear from you. Please apply with your resume and cover letter.Job Type: Full-timeSalary: $15.50-$19.00 per hourBenefits:Flexible scheduleFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededSupplemental pay types:Commission payEducation:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Ability to Commute:Winnipeg, MB R2P 1V8 (preferred)Ability to Relocate:Winnipeg, MB R2P 1V8: Relocate before starting work (preferred)Work Location: In personApplication deadline: 2023-09-20Expected start date: 2023-10-01\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"7F175F636C8464700E53839599214273\",\n            \"cityName\": \"11801 100 Street, Grande Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=34c3a282bd2b1d91\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Luxe Petals Gp\",\n            \"rowSalary\": \"$15.25–$16.00 an hour\",\n            \"date\": 1694420321905,\n            \"dateOfPosted\": 1693554143194,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.1816551,\n                    \"lon\": -118.7818944\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grande Prairie\",\n                \"formattedAddress\": \"96 St, Grande Prairie, AB T8V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grande Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Luxe Petals GP is looking for barista and Sales Associate to join our team!ResponsibilitiesProvide exceptional customer serviceGreet customers and answer questionsProvide accurate information on the availability of flowers and servicesMaintain a clean and inviting environmentAnswer phones and provide general information to customersProcess sales and returnsFollow all safety policies and proceduresPerform other duties as assigned by the managerSkills & Qualifications:Previous experience in customer service or other related fieldsProficiency in basic math skills, including addition, subtraction, multiplication, and divisionBasic knowledge of plants and plant care practices (so you can tell people how great the plants look!)Ability to build rapport with clientsStrong written and verbal communication skillsBasic computer skills, including Microsoft Office (Word, Excel) and sales software like Hotmail or Google Calendars)Must be able to work independently with little supervision. No experience necessary, we will train you!Must be available weekends. Our peak season is April-October. Other options available.We are a family-oriented, amily-oriented, and people-oriented, workplace that offers competitive compensation, full benefits, and an active community of friends and colleagues. If you want to make a difference in the world, come join us at Grande Prairie, AB!Job Type: Part-timeSalary: $15.25-$16.00 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftEvening shiftWeekends as neededSupplemental pay types:Bonus payCommission payOvertime paySigning bonusTipsWork Location: In person\",\n            \"location\": \"Street, Grande Prairie, AB\"\n        },\n        {\n            \"id\": \"4BD6B62E626FD760DBC3DBB4B6ED74B6\",\n            \"cityName\": \"8228 Macleod Trail SE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0dc63264d9c298e5\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Once Upon A Child Calgary - Macleod Trail Location\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694420319486,\n            \"dateOfPosted\": 1692668708075,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.94908909999999,\n                    \"lon\": -114.0708377\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Macleod Trail SE, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you a friendly and outgoing individual who enjoys working in a fun, fast-paced, and team-oriented environment? If so, we have the perfect opportunity for you! We are currently hiring for the position of Customer Service Representative, and we're looking for individuals who are interested in learning how to sort and buy drop-offs, as well as tag and hang merchandise.As a Customer Service Representative, you will be interacting with customers a majority of the day, most of whom are moms and kids! Therefore, we are looking for someone with an energetic and positive attitude. Fluency in English is a must, and you should be able to work on your feet for a full shift and lift a minimum of 30lbs.We offer flexible schedule options, employee discounts, and bonuses! If you're interested in working with us, apply today!We are able to offer the following shifts:8am to 1pm8am to 4pm9:30am to 2:30pm3:30pm to 8:30pm5:30pm to 8:30pm10:30 to 6:30 (Sundays ONLY)Please note - All employees are required to work at least one (1) night shift, one (1) weekend shift each week and attend one (1) mandatory staff meeting held on a Sunday each month.Job Types: Full-time, Part-timePart-time hours: 20 - 40 per weekSalary: $17.00 per hourBenefits:On-site parkingStore discountFlexible Language Requirement:French not requiredShift:Afternoon shiftDay shiftEvening shiftMorning shiftWork setting:Apparel storeWork Location: In person\",\n            \"location\": \"MacLeod Trail SE, Calgary, AB\"\n        },\n        {\n            \"id\": \"0638CAEB4B80582330C6E369628A06DF\",\n            \"cityName\": \"5875 Highway 7, Vaughan, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4332c36acef9f282\",\n            \"jobName\": \"Tanning Customer Service Associate\",\n            \"companyName\": \"Tanning Loft\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694418974652,\n            \"dateOfPosted\": 1694207954486,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are currently looking for a part-time Customer Service Associate.If you are creative, self-motivated, passionate and a natural about sales and social media, then Tanning Loft has a great opportunity for YOU!Required Qualifications & Skills:Experience in a fast-paced service environmentConsistently delivers remarkable customer service and has a genuine passion for qualityBasic computer skills & POS SystemAbility to meet and exceed sales goalsPersonable - the ability to interact with clientsSuperb understanding of social mediaAbility to create engaging, cutting edge online content across a variety of mediumsMotivated, driven, creative and enthusiasticExcellent verbal and written communication skillsAbility to follow a few rulesAbility to uphold professional integrityHonest and reliableMust have day, nights and weekend availability.Job Types: Part-time, PermanentSalary: From $15.50 per hourDay range:Monday to FridayWeekends as neededShift:Day shiftNight shiftApplication question(s):Please provide your current availability.Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"34AF528ABB33B275FC167795996F5C25\",\n            \"cityName\": \"Watson Lake, YT\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b1cfe4b94be918b1\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"Jgv Services Incorporated\",\n            \"rowSalary\": \"$21 an hour\",\n            \"date\": 1694416973987,\n            \"dateOfPosted\": 1694416973813,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 60.06280599999999,\n                    \"lon\": -128.710913\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Watson Lake\",\n                \"formattedAddress\": \"Watson Lake, YT Y0A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Yukon\",\n                \"state_code\": \"YT\",\n                \"postalTown\": null,\n                \"county\": \"Yukon\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Watson Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: EnglishHours: 20 hours per weekEducation: College/CEGEPExperience: 2 years to less than 3 yearsor equivalent experience Work setting Remote location Willing to relocate Business Staff accommodation available Tasks Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Receive and log complaints Receive payments Advise clients on advertising or sales promotion strategies Answer written and oral inquiries Computer and technology knowledge Internet MS Excel MS Outlook MS Windows MS Word MS PowerPoint Quick Books Security and safety Basic security clearance Criminal record check Transportation/travel information Own transportation Valid driver's licence Work conditions and physical capabilities Attention to detail Hand-eye co-ordination Repetitive tasks Tight deadlines Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Judgement Ability to multitask Screening questions Are you willing to relocate for this position? Do you have previous experience in this field of employment? What is the highest level of study you have completed? Financial benefits Bonus Other benefits Learning/training paid by employer\",\n            \"location\": \"Watson Lake, YT\"\n        },\n        {\n            \"id\": \"353023EA2804577EB6A6EDEF2780B183\",\n            \"cityName\": \"875 St James St, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=92c33ba64c1eb39a\",\n            \"jobName\": \"Work From Home Customer Service Representative\",\n            \"companyName\": \"Intouchcx\",\n            \"rowSalary\": \"$14.15–$19.00 an hour\",\n            \"date\": 1694416804194,\n            \"dateOfPosted\": 1693535624670,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8973035,\n                    \"lon\": -97.20034720000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"St James St, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About IntouchCXIntouchCX is a global leader in customer experience management, digital engagement, and technology solutions. With over 20 years of experience, 18,000+ team members, and campuses around the globe, we obsess about our clients by providing remarkable customer experiences for the world’s most innovative brands.IntouchCX has been recognized as one of the Best Employers for Diversity in 2022 by Forbes and Statista Inc. This recognition comes after IntouchCX was named by Forbes as one of America’s Best Large Employers for 2022, and a Top Employer for New Grads.About the JobWe are currently hiring Inbound Work from Home Customer Service Representatives!Are you a problem solver? Do you like making meaningful connections with people? Are you interested in a rewarding career working with the world’s most exciting brands from the comfort and safety of your own home?Our Work from Home Customer Service Representatives are passionate about delighting customers by making every interaction an unforgettable experience - whether that’s through inbound calls, emails and/or chats. We want people with personality, who love making an impact with every customer interaction.We also want people with drive and ambition - people who want a career, not just a job. Punctuality, performance and positivity will set you up for success!Note: Although it is a Work from Home position, interviews will be done on site. IntouchCX will provide all hardware and equipment necessary.Benefits of Working as a Work from Home Customer Service Representative:Work from home!Flexible schedulesCompetitive salary - $14.15-$19.00/hr (varies depending on program)Industry-leading benefits - Health, Dental, Vision,Amazing career growth opportunitiesWorking as a Work from Home Customer Service Representative, You Will:Assist all customers through inbound calls, emails, and/or chats.Communicate a variety of information to the customer.Be an active listener and help resolve customer inquiries.Provide a meaningful and positive experience with every customer interaction.Learn and retain a thorough working knowledge of all existing and new products and services.Working as a Work from Home Customer Service Representative, You Have:A high school diploma (or equivalent).6 months – 1 year of customer service experience.Great communication skills, both verbal and written.The ability to be consistently ready to work and on time as scheduled.Reliable internet speed and broadband connection.A secure area in the home to work from.The ability to work effectively in a work-at-home setting.The understanding that although this is a Work from Home position,you must be located in Winnipeg, MBAvailability: Full-time (some shifts may depend on availability).Ready to apply? Submit your application and one of our recruiters will reach out via email/phone/text to learn more about you and connect you to this exciting opportunity! If you provide your cell number, you agree to receive automatic recruiting texts from us at that number. Consent is not a condition of employment, and you can opt-out by replying STOP at any time. Message and data rates may apply.IntouchCX provides Equal Employment Opportunities in accordance with all provincial and federal laws. IntouchCX is committed to ensuring equality of opportunity in all aspects of employment and does not discriminate based on protected characteristics.IntouchCX is committed to accommodating persons with disabilities. If you need accommodation at any stage of the application process or want more information on our accommodation policies, please let us know.By signing this application, the applicant consents to IntouchCX collecting, using and retaining his/her personal information for purposes relating to the application process and if hired, the employment relationship.Any and all personal information collected is held in the strictest confidence and in accordance with all applicable Privacy Laws.Job Type: Full-timeSalary: $14.15-$19.00 per hourBenefits:Casual dressDental careExtended health careVision careWork from homeSchedule:Monday to FridayWeekends as neededWork Location: Hybrid remote in Winnipeg, MB R3H 0X2\",\n            \"location\": \"St James St, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"CD4566422D3911FC49E726753C8135D7\",\n            \"cityName\": \"635 Avenue Marshall, Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6e1f63223503d562\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Jet Car Rental\",\n            \"rowSalary\": \"From $24 an hour\",\n            \"date\": 1694416705097,\n            \"dateOfPosted\": 1649285499225,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4503213,\n                    \"lon\": -73.7500486\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval, QC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job descriptionWe are seeking Customer Service Representative to join our team for the weekend shifts! You will be responsible for helping customers by providing product and service information and resolving technical issues.As a Customer Service Representative, you will be responsible for:Qualifying and processing rental contracts with accuracy and detailPersuasively selling optional servicesProcessing customer rental returnsResponding to customer inquiries, providing directions in a courteous and expeditious mannerAdhering to all company policies and procedures.Monitoring fleet availability for reservations and walk-insA commitment to continuous improvement in an ever-changing industryRelated duties as requiredJob Qualifications:Previous car rental experience is required.Ability to work in a fast paced environment with a variety of tasks.Ability to demonstrate professionalism, enthusiasm, and outstanding communication skills.Detail oriented.Flexibility to work weekends.Computer literate.Proficiency in French & English.Valid Drivers license.Description d’emploiNous sommes à la recherche d’un représentant du service à la clientèle pour se joindre à notre équipe pour les quarts de travail de fin de semaine! Vous serez responsable d’aider les clients en fournissant des informations sur les produits et services et en résolvant les problèmes techniques.En tant que représentant du service à la clientèle, vous serez responsable de :Qualification et traitement des contrats de location avec précision et détailVendre de manière convaincante des services optionnelsTraitement des retours de location des clientsRépondre aux demandes des clients, fournir des instructions de manière courtoise et rapideAdhérer à toutes les politiques et procédures de l’entreprise.Surveillance de la disponibilité de la flotte pour les réservations et les walk-insUn engagement envers l’amélioration continue dans une industrie en constante évolutionTâches connexes au besoinQualifications professionnelles:Une expérience préalable de la location de voiture est requise.Capacité à travailler dans un environnement au rythme rapide avec une variété de tâches.Capacité à faire preuve de professionnalisme, d’enthousiasme et de compétences exceptionnelles en communication.Souci du détail.Flexibilité pour travailler les week-ends.Connaissance de l’informatique.Maîtrise de l’Français et de l’anglais.Permis de conduire valide.Job Type: Part-timePart-time hours: 16-20 per weekSalary: From $24.00 per hourSchedule:Weekend availabilitySupplemental pay types:Commission payAbility to commute/relocate:Dorval, QC H9P1E1: reliably commute or plan to relocate before starting work (preferred)Education:Secondary School (preferred)Experience:Automotive Rental Occupations: 1 year (required)Driving: 2 years (preferred)Language:English & French (required)Expected start date: 2022-04-11\",\n            \"location\": \"Dorval, QC\"\n        },\n        {\n            \"id\": \"AA78FE5005D16144CFB494D647BA1B14\",\n            \"cityName\": \"27 Monarch Rd, Guelph, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0c044f09008c48ad\",\n            \"jobName\": \"Technical Customer Service Representative\",\n            \"companyName\": \"A.R. Thomson Engineered Solutions Inc.\",\n            \"rowSalary\": \"$50,000–$60,000 a year\",\n            \"date\": 1694416660378,\n            \"dateOfPosted\": 1693531269870,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.54900240000001,\n                    \"lon\": -80.3067165\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Guelph\",\n                \"formattedAddress\": \"Monarch Rd, Guelph, ON N0B, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Wellington County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Guelph\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full-time positionReports to: Product ManagerSudbury International was established in 1975 and has earned a vibrant reputation for producing Flue Duct expansion joints for a wide range of industries including specialties in Gas Turbine exhausts. Sudbury International is a division of A.R. Thomson Engineered Solutions Inc., a Canadian-owned business with more than 55 years of experience as one of the largest manufacturers and distributors of fluid containment and control products in North America with branches located across Canada. Our Guelph location specializes in manufacturing expansion joints, flexible hose assemblies and valve repair and acts as the central hub for technical and sales support for our Eastern Canada operations.General Accountability:Review customer bid packages and source the raw materials and processes required to meet bid package specifications for manufactured partsDemonstrate a high level of competence and accuracy when creating part numbers, descriptions, BOM’s, routings, costing/pricing conditions, etc.Provide customers with accurate information on the company’s products and servicesRespond to customer requests, displaying a sense of enthusiasm and urgency appropriate to customer expectations. Proactively follow up on quotations and customer information requests, directly interacting with customersQualifications & Requirements:Minimum 2 years of industry-related experience in the industrial supply and manufacturing fieldsAn understanding of drawing standards, tolerances and Bill of Materials (BOM)Experience using Microsoft Office products.Knowledge of applicable industry codes and standards such as ASME, CSA, ISO, etc. would be an asset.Strong technical, oral and written communication, interpersonal and negotiation skillsDemonstrate ability to solve problems and adapt to changing prioritiesPosses a professional, positive, team-oriented attitudeWe thank all candidates; however, only those selected for an interview will be contacted.Health & Safety Commitment:All employees are responsible to work in a manner that safeguards themselves, their co-workers, and other persons not engaged in the work but present on our site and the environment. Employees have three basic rights which are protected by law: (1) the Right to Know what hazards are present at their worksite; (2) the Right to Participate in keeping their worksite healthy and safe, and (3) the Right to Refuse work that they believe to be dangerous to themselves or others. Our 3 fundamental principles within the ARTES safety program are (1) Commitment to maintaining a safe and healthy workplace; (2) Compliance with Company Health & Safety requirements and OHS legislation; (3) Accountability for employees’ Health & Safety responsibilities to themselves and others.Salary & Benefits:Very competitive salaryHealth Benefits include Dental & Vision care, life insurance, extended health care, long-term disability, and an employee assistance programCompany Pension planPaid time offWork anniversaries recognitionCompany eventsEndless growing opportunities!Job Types: Full-time, PermanentSalary: $50,000.00-$60,000.00 per yearBenefits:Company pensionDental careDisability insuranceEmployee assistance programExtended health careOn-site parkingPaid time offProfit sharingTuition reimbursementVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayOn callWeekends as neededAbility to commute/relocate:Unit 6 Guelph, On N1K 1N4: reliably commute or plan to relocate before starting work (required)Language:English (required)Work Location: In person\",\n            \"location\": \"Monarch Rd, Guelph, ON\"\n        },\n        {\n            \"id\": \"A63FBFD357CD918B87FEC5E8A42A8F28\",\n            \"cityName\": \"109 McCaul Street, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9f85c6c65251c515\",\n            \"jobName\": \"Dispatcher/Customer Service\",\n            \"companyName\": \"Coffee Exchange\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694415285548,\n            \"dateOfPosted\": 1694415285345,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6548028,\n                    \"lon\": -79.3916383\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"McCaul St, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:- Handle and organize merchandise in a retail environment- Assist with stocking shelves and maintaining inventory levels- Ensure products are properly labeled and priced- Provide excellent customer service by answering questions and assisting with inquiries- Maintain cleanliness and organization of the store, including regular sanitization of high-touch areas- Assist with bussing tables and cleaning in a kitchen settingExperience:- Basic math skills, including the ability to perform retail math calculations- Previous experience in a retail or customer service role is preferred- Familiarity with kitchen operations and sanitation practices is a plusNote: This job description is not intended to be all-inclusive. The employee may be required to perform other duties as assigned by their supervisor.Job Types: Part-time, Full-timePart-time hours: 35 per weekSalary: From $15.50 per hourSchedule:Monday to FridaySupplemental pay types:TipsAbility to commute/relocate:Toronto, ON M5T 3K5: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Language:English (preferred)Licence/Certification:Food Handler Certification (required)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"McCaul Street, Toronto, ON\"\n        },\n        {\n            \"id\": \"2489CF70C53EC3F93938FD67F34F5C3F\",\n            \"cityName\": \"50 Carroll Street, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c98a76dca49fc784\",\n            \"jobName\": \"Consumer Customer Service Associate (Bilingual)\",\n            \"companyName\": \"Ecco Shoes Canada, Inc.\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694415115412,\n            \"dateOfPosted\": 1671056359014,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6600512,\n                    \"lon\": -79.35320519999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Carroll St, Toronto, ON M4M, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Consumer Customer Service Associate (Bilingual) will provide comprehensive service to our consumer customer base on the phone and through e-mail. Professionally handle incoming requests from customers and ensure that issues are resolved both promptly and thoroughly.As our Consumer Customer Service Associate, your responsibilities will include:Contribute to the future of ECCO USA by providing the highest level of customer service.Handle incoming calls and emails.Provide customers with product and order information.Show flexibility, creativity and empathy when resolving customer issues and communicating policy.Offer options for fulfillment of orders or resolution of issues.Appropriately suggest alternative products.Inform customers of new products.Talk up promotions and sales.Learn and develop personal skill levels in regards to SAP, Internet systems and the footwear industry.Communicate and coordinate with all internal departments for smooth processing of all transactions.If you have...Bilingual - excellent written and oral communication skills in both French and English.Post-Secondary diploma or degree.1+ years of experience in a customer service role.Ability to communicate clearly, concisely and professionally (both verbally and written).Ability to prioritize work and adjust priorities as needed.Superior organization and follow-up skills.Proven ability to work under pressure while maintaining composure, patience and understanding in dealing with a variety of customers.…we want to hear from you!Imagining yourself at ECCO?Check out these exciting opportunities, on our global career at https://enter.ecco.com/CREATE THE FOOTPRINTS OF TOMORROWAt ECCO, you become part of a meaningful, developing and multicultural workplace. You join a global family of more than 25,000 people who are proud to create the footprints of tomorrow.Headquartered in Denmark, we are a family-owned company that offers international opportunities. Our offices and facilities have an informal culture and relaxed dress code – our shoe code is slightly stricter.Join us and we guarantee lifelong learning – the speed of progress is up to you. So, if you’re curious, passionate and ready to make an impact, you’ll fit right in.Job Type: Full-timeSalary: $18.00-$22.00 per hourSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Toronto, ON: reliably commute or plan to relocate before starting work (required)\",\n            \"location\": \"Carroll Street, Toronto, ON\"\n        },\n        {\n            \"id\": \"4B8003871B049BFB6246827D3D3603CE\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ad848f45dc8b123f\",\n            \"jobName\": \"Customer Service Coordinator\",\n            \"companyName\": \"Truckker\",\n            \"rowSalary\": \"$19–$23 an hour\",\n            \"date\": 1694414838538,\n            \"dateOfPosted\": 1694414838355,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job description _ Hiring Customer service/Receptionist- Great place to work- Starts Asap! _ Job# 3099 Link: Apply here or Call/text at ext 30 Job Description: Answer/route phone calls and serve customers Take orders Utilize MS Office and manage emails Manage/file paperwork Other tasks assigned Shift 8:00 AM-4:30 PM Job Requirements Experience in receptionist/customer service role (supplier/construction environment) Proficient in MS Office tools Benefits: Pension plan with employee and employer contribution (after one year) Group insurance plan, life, dental, prescription, and many other services. 2 weeks vacations, 3 weeks after 5 years of employment, 4 weeks after 10 years of employment About Truckker: Truckker, a TPI company has 35+ years of experience in the transportation, logistics, and supply chain industries, giving drivers unparalleled access to a network of quality carriers. Truckker offers carriers online, on-demand access to a growing database of drivers pre-vetted for safety, eligibility, and availability. With an easy application process and automated \\\"smart\\\" driver matching, carriers can successfully connect with drivers in real-time and enjoy direct communication. INDTJ Job Type: Full-time Salary: $19.00-$23.00 per hour Benefits: Dental care Extended health care Life insurance Flexible Language Requirement: French not required Schedule: 8 hour shift Day shift Monday to Friday Overtime Supplemental pay types: Overtime pay Ability to commute/relocate: Mississauga, ON: reliably commute or plan to relocate before starting work (required) Education: Secondary School (preferred) Experience: Front desk: 2 year (required) Administrative experience: 2 year (required) Language: Mandarin (preferred) Shift availability: Day Shift (preferred) Work Location: In person Job Type: Full-time Salary: $19.00-$23.00 per hour Benefits: Dental care Extended health care Life insurance Paid time off Flexible Language Requirement: English not required Schedule: Monday to Friday Ability to commute/relocate: Mississauga, ON: reliably commute or plan to relocate before starting work (required) Education: Secondary School (preferred) Experience: Sales administration: 1 year (required) Customer service: 3 years (required) Shift availability: Day Shift (preferred) Work Location: In person\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"8079E8031E2860F9946DC0A0EB0677DC\",\n            \"cityName\": \"1441 Ellice Ave, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2cf886847685b1c0\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Booster Juice\",\n            \"rowSalary\": \"From $13.50 an hour\",\n            \"date\": 1694413400295,\n            \"dateOfPosted\": 1675891936730,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8935764,\n                    \"lon\": -97.1794978\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Ellice Ave, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Booster Juice is Canada’s leading smoothie operator and is looking for an energetic individual passionate about customer service and a general love for health and wellness.What You Need to KnowLocation: Booster Juice 1441 Ellice AvePart-time positions availableWe Offer: Free Smoothie , flexible schedules and MORE!!Job RequirementsProvide \\\"Positively Outrageously Customer Service\\\".Welcome and connect with every customer.Discover customer needs and guide customer to selection.Respond to customer needs and say thank you to every customer.Provide quality beverages and food items consistently for all customers.Prepare Smoothies, food and other beverages to Booster Juice standards.Follow health, safety and sanitation guidelines for all products.Maintain quality store operations.Follow store policy and procedures for operational flow at each station.Follow standards for merchandising, stocking, rotating and storing products.Perform cleaning tasks in accordance with the daily checklists and cleaning standards.Present oneself professionally and demonstrate clear communication skills.Contribute to store profitability.Follow cash handling procedures and cash register policies.Follow inventory stocking and recording guidelines.Contribute to store goals for increasing sales and improving profits.What We’re Looking ForPossess an outgoing, enthusiastic and friendly attitude.Ability to work under pressure and in a fast-paced environment.Ability to identify and use resources to improve overall operations.High attention to detail.Teamwork and interpersonal skills.Multi-tasking skills.Willingness to learn.Effective listening, written and verbal communication skills.Effective organizing and planning skills.FOODSAFE certification is a plusWe thank all applicants, however only selected candidates will be contacted for interviewJob Types: Part-time, Permanent, CasualPart-time hours: 5-35 per weekSalary: From $13.50 per hourSchedule:Day shiftMonday to FridayNight shiftWeekend availabilityWork Location: In personApplication deadline: 2023-02-15Expected start date: 2023-02-17\",\n            \"location\": \"Ellice Street, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"A25C128D330431E41E29FDDDB0306781\",\n            \"cityName\": \"635 Grand Av W, Chatham-Kent, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=949d2ca034eadac5\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Macro Foods Inc.\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694413384477,\n            \"dateOfPosted\": 1692722658351,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.40032129999999,\n                    \"lon\": -82.2069641\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Chatham\",\n                \"formattedAddress\": \"Grand Ave W, Chatham, ON N7L, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Chatham-Kent\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Chatham\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Macro Foods is a small business in Chatham, ON. Our goal is to Serve the community fresh, healthy, chef prepared meals. We also serve protein shakes and sell supplements and healthy snacks. Customers can walk in and pick up food on the go, or order online direct to their homes anywhere in Ontario!.Our customer service department is seeking an experienced, energetic and capable individual to join our busy team. The successful candidate will be responsible for greeting all customers and explaining our products, using company policy and procedure to solve customer's problems and learning specific questions about products and services in order to deliver accurate information back to customers. We're seeking a self-motivated and organized individual with strong customer service skills who is also an effective multi-tasker. General health knowledge/healthy eating is a bonus.Responsibilities:Greet clients and other visitors in person.Answer customers' questions.Assist customers who need special assistance.Deal with angry or rude visitors.Cash handling and checking clients out.Answer the phone, take messages, and transfer calls to other staff as necessary.Enter information about clients and other visitors into the computer system.Must complete safe food handlers certificate within first 2 weeks of employment.Schedule:Opening - 11 AM (10am Wednesdays) to 230 PMClosing - 230PM to 6PMWeekend Shifts - 12PM to 5PMMinimum Availability Required of 6 shifts per above.Example:Monday all day - 2 shiftsTuesday offWed close - 1 shiftThursday open - 1 shiftFriday offSaturday and Sunday any time - 2 shiftsCash Handling, Customer Service, Shake Bar, Cleaning, Assisting Customers, Health KnowledgeJob Type: Part-timePart-time hours: 20 per weekSalary: From $15.50 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:TipsApplication question(s):Do you meet the minimum of 6 shift availability required for work?Experience:Customer service: 2 years (preferred)Work Location: In personExpected start date: 2023-09-01\",\n            \"location\": \"Grand Ave W, Chatham-Kent, ON\"\n        },\n        {\n            \"id\": \"DD250D11CC8188925896A6CA7D49F92F\",\n            \"cityName\": \"Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=acf919d9732b7aad\",\n            \"jobName\": \"Customer Service/ Pizza Maker\",\n            \"companyName\": \"Pizza 64\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694413260882,\n            \"dateOfPosted\": 1688810889438,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8879519,\n                    \"lon\": -119.4960106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Kelowna, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"-Prepare and store Pizza doughs and pizza sauce- Quality check of Pizzas before served to customer-Ensure all work areas and prep areas are cleaned and sanitized in routine-Handle customer complaints-Greet customers and handle cash/credit/debit transactionsJob Types: Full-time, Part-time, PermanentSalary: $16.75 per hourWork Location: In person\",\n            \"location\": \"Kelowna, BC\"\n        },\n        {\n            \"id\": \"4EE9C670827E94D5B594CA82DB018D11\",\n            \"cityName\": \"Saskatoon, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=494eaf90af5a6173\",\n            \"jobName\": \"Customer Service Representative Supervisor\",\n            \"companyName\": \"Biktrix Enterprises Inc\",\n            \"rowSalary\": \"$26.70 an hour\",\n            \"date\": 1694413198594,\n            \"dateOfPosted\": 1692714701455,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.157902,\n                    \"lon\": -106.6701577\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saskatoon\",\n                \"formattedAddress\": \"Saskatoon, SK, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saskatoon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 27.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    27.0\n                ],\n                \"range\": {\n                    \"gte\": 27.0,\n                    \"gt\": null,\n                    \"lte\": 27.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College/CEGEPExperience: 1 year to less than 2 yearsTasks Conduct performance reviews Perform same duties as workers supervised Co-ordinate, assign and review work Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Examine and verify accuracy of work and authorize routine deposits and withdrawals Identify training needs and train workers in job duties and company policies Requisition materials and supplies Resolve work-related problems and prepare and submit progress and other reports Work conditions and physical capabilities Attention to detail Personal suitability Client focus Organized Reliability Team player Screening questions Are you currently legally able to work in Canada? Do you have previous experience in this field of employment?Work Term: PermanentWork Language: EnglishHours: 30 hours per week\",\n            \"location\": \"Saskatoon, SK\"\n        },\n        {\n            \"id\": \"20B901BA45DF8F928F555F1CE89ADCA1\",\n            \"cityName\": \"6935 Buller Av, Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d0ac35abd01d60cc\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Nixon Automotive Bmw Service Specialists\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694410555799,\n            \"dateOfPosted\": 1690539013261,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.21389809999999,\n                    \"lon\": -122.9775055\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Buller Ave, Burnaby, BC V5J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Nixon Automotive BMW Service Specialists are looking for and outgoing and friendly individual to help create and maintain a friendly and hospitable environment for customers. The right candidate will maintain a positive attitude, have great listening skills, organization, multitasking skills, and is efficient.Tasks and duties overview:Answering phone callsTaking messagesTransferring callsScheduling appointmentsBlocking telemarketer callsGreeting customersChecking in vehicles for serviceVehicle walk aroundTagging keysInforming service advisor of vehicle arrivalAnswering emailsForwarding emails and messagesFollow up emailsChecking overnight drop boxReturning missed callsMaintaining printout suppliesSigning for deliveriesDelivery order data entryDispersing deliveries and mailAppointment reminders phone /emailManaging parking lotInforming customer of vehicle readinessTracking vehicle deliveryCustomer shuttle when neededCompletion of Secondary EducationTraining in customer service and experience recommended.Automotive general knowledge.Drivers license and confident driving skills with manual and automatic transmissions.Job Type: Full-timeSalary: From $20.00 per hourBenefits:Dental careExtended health careLife insuranceFlexible Language Requirement:French not requiredSchedule:Day shiftMonday to FridaySupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Buller Av, Burnaby, BC\"\n        },\n        {\n            \"id\": \"0EC9F29C1A5C7EB4453D9F2EAF7DE8CC\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d323be9ef7057613\",\n            \"jobName\": \"Call Center Representative\",\n            \"companyName\": \"Bloom Sales Partners\",\n            \"rowSalary\": \"$20–$21 an hour\",\n            \"date\": 1694409960712,\n            \"dateOfPosted\": 1694409960543,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are searching for a polite, professional Call Center Representative to work closely with other team members to provide outstanding service to our customers by answering questions, handling complaints, and troubleshooting problems with our products and services. The Call Center Representative may handle a high volume of inbound or outbound calls or both and should seek to create a positive experience for each caller. They will listen to clients to understand the reason for their call, address all questions or complaints, and provide an accurate and efficient response.  To be a successful Call Center Representative, you should be customer-focused, detail oriented, and efficient. You should be polite, reliable, knowledgeable, and adaptable.  Responsibilities Answering or making calls to clients to learn about and address their needs, complaints, or other issues with products or services.Responding efficiently and accurately to callers, explaining possible solutions, and ensuring that clients feel supported and valued.Engaging in active listening with callers, confirming or clarifying information and diffusing angry clients, as needed.Building lasting relationships with clients and other call centre team members based on trust and reliability.Utilizing software, databases, scripts, and tools appropriately.Understanding and striving to meet or exceed call centre metrics while providing excellent consistent customer service.Making sales or recommendations for products or services that may better suit client needs.Taking part in training and other learning opportunities to expand knowledge of company and position.Adhering to all company policies and procedures. Requirements High School Diploma or equivalent.More education or experience may be preferred.Exceptional customer service, active listening, and verbal and written communication skills, professional phone voice.Understanding of company products, services, and policies.Proficiency with computers, especially with CRM software, and strong typing skills.Ability to ask prying questions and diffuse tense situations.Strong time management and decision making skills.Adaptability and accountability.Fluency in multiple languages may be desired.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"827F234FB0A76683D5B5904D08F36D74\",\n            \"cityName\": \"Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8bee26481abe04e6\",\n            \"jobName\": \"Customer Service Representative - 1 Year Fixed Term Contract\",\n            \"companyName\": \"Waste Connections Of Canada\",\n            \"rowSalary\": \"$55,000 a year\",\n            \"date\": 1694409887594,\n            \"dateOfPosted\": 1694409887408,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.798329,\n                    \"lon\": -79.5079073\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Concord, Vaughan, ON L4K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 55000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    55000.0\n                ],\n                \"range\": {\n                    \"gte\": 55000.0,\n                    \"gt\": null,\n                    \"lte\": 55000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"aste Connections of Canada is a leading non-hazardous solid waste management in North America. We are looking for a SAFETY inclined, energetic, autonomous, and proactive team player who can make a difference in his/her team and community.This is an onsite position We have an immediate opening for a full-time Data Entry/CSR at our Vaughan, ON district.Address: 650 Creditstone Rd Vaughan, ONKey tasks:As a data entry clerk, you will enter new sales material as well as customer terminations and service changesYou will maintain sales spreadsheets and pdf files related to the sales teamRespond to customer inquiries via phone or email for questions related to waste and recycling services, including scheduling and pick upAnalyze account activity and suggest opportunities for service improvements to the customerMaintain appropriate files and documentation, in accordance with company policy and internal controlsCommunicates with customers to determine driver needsRequirements:2-3 years of customer service/office admin experienceHigh-volume call center or inbound calling experiencePleasant demeanor over the phone and emailsExcellent time management and prioritization skillsStrong working knowledge of Microsoft Office, TRUX an assetStrong written and oral communication skillsCritical and logical thinking skillsWe are a busy, but fun place to work. There will be flurry of activity every day, but with your speedy data entry and proficient Microsoft Office skills, you will be able to handle this role with ease.Come join a team environment with colleagues who embrace a \\\"work hard, play harder\\\" culture. You'll also be associating yourself with a company that likes to lead by example through a strong presence in our local communities, charitable giving, sustainability initiatives, and more.Waste Connections of Canada/Enviro Connexions is an Equal Opportunity EmployerJob Type: Full-timeSalary: $55,000.00 per yearBenefits:Dental carePaid time offSchedule:Monday to FridayAbility to commute/relocate:Concord, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Concord, ON\"\n        },\n        {\n            \"id\": \"565BD8534D6F078C1F00A45FCC63ECDA\",\n            \"cityName\": \"14200 Green Timbers Way, Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d0913d02262ae7e5\",\n            \"jobName\": \"Customer Service / Help Desk Operator\",\n            \"companyName\": \"Bouygues Energies & Services\",\n            \"rowSalary\": \"$25.99 an hour\",\n            \"date\": 1694409648964,\n            \"dateOfPosted\": 1694409648773,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1796279,\n                    \"lon\": -122.8306921\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Green Timbers Way, Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 26.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    26.0\n                ],\n                \"range\": {\n                    \"gte\": 26.0,\n                    \"gt\": null,\n                    \"lte\": 26.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Bouygues Energies & Services, a leading provider of facility management services across Canada, is seeking casual Customer Service/ Help Desk Operators to work at the RCMP Divisional Headquarters located in North Surrey, BC. The facility is a state-of-the-art, 35-acre multi-building complex that has won several awards.  Reporting to the Help Desk Supervisor, the duties of the Help Desk Operator are to provide the first point of contact between our company and our client, communicating politely and professionally while following procedures to respond to customer inquiries. As a casual Help Desk Operator, would not have set work shifts but would be asked to fill work shifts at various times and days based on your availability. Why work with us? Aside from earning a competitive hourly wage of $25.99 per hour, plus shift premiums, employees who are working more than 20 hours per week will receive excellent health and dental benefits that are 100% paid by us. You will be eligible for sick leave, short and long-term disability benefits. The Company also offers an attractive group Registered Retirement Savings Plan (RRSP) and will match up to 5% of your salary. These benefits, and annual increases to your rate of pay, are detailed in the Collective Bargaining Agreement (CBA).  Please note that individuals working at this location must obtain a high-level government Security Clearance that may take several months to process. For this, you must have resided in Canada for at least five years and have no criminal record. DUTIES & RESPONSIBILITIES:Receiving inquiries via phone calls, e-mails, and other channels and accurately logging them in the Maximo Support System. Determining and assigning type and priority of requests to ensure the work goes to the appropriate trade with the appropriate priority level, knowing when to escalate for immediate attention or supervisor intervention. Facilitating the planned maintenance program by printing off job dockets and returning to the system when complete. Communicating effectively with Management regarding emergency situations. Learning and maintaining the knowledge of contractual obligations and be able to interpret and explain operational policies and procedures to the client. Assisting in the preparation of reports and documents as required, maintaining confidentiality at all times. KEY REQUIREMENTS Have previous customer service or call centre experience and be able to deal with inquiries in a calm, courteous, and effective manner. Have previous experience working with a computerized maintenance management system, preferably Maximo. Have strong oral and written communication skills. The ability to speak French fluently will be considered an asset. Have excellent multi-tasking and organizational skills. Be proficient in the use of Microsoft Office. Have a strong sense of confidentiality. The selected candidate will be required to join the Union which is Public Private Workers Canada (PPWC). To learn more about Bouygues Canada, visit https://www.bouygues-es.ca/Other details: Job Family New Pay Type Hourly Hiring Rate $25.99 Travel Required No\",\n            \"location\": \"Green Timbers Way, Surrey, BC\"\n        },\n        {\n            \"id\": \"7C4B841FC91F86221BBEE7DD35281953\",\n            \"cityName\": \"Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a9f81765279d2824\",\n            \"jobName\": \"Customer Service Representative, Victoria\",\n            \"companyName\": \"Algaecal\",\n            \"rowSalary\": \"$48,000–$51,000 a year\",\n            \"date\": 1694409471411,\n            \"dateOfPosted\": 1693529688287,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4284207,\n                    \"lon\": -123.3656444\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Career with a heart! If you like helping people, and you want to feel supported in your work –– this is the opportunity for you. Every day, concerned people call the AlgaeCal helpline. They’ve just had bad news about their bones – and they’re scared they might break at any moment. But after talking with YOU, their fear will melt away. We call our Customer Care Representatives – Bone Health Consultants – and a typical day might include: Acting as a knowledge base for customers inquiries with respect to our products and their bone healthActively listening to customers and providing them with everything they need to make an informed decision about AlgaeCal.Supporting our customers through a variety of mediums (email, phone).Processing orders and returns for customers.Helping customers understand the results of their DEXA bone scans.Updating the records of customer interactions, processing customer accounts, and filing documents. So yes, you’ll need to enjoy administrative tasks to thrive in this role.But most importantly, setting our customers up for MAXIMUM SUCCESSThis opportunity is tailor-made for you if: You’re highly motivated to work at home. You’ve got a solid customer service background. You are passionate about natural health. You are an expert at building a rapport with customers and devoted to helping people find that aha moment – where they go from despair to hope. You’re organized. You’re humble. You think critically and creatively. You love to support and inspire others. You don’t just accept feedback – you WANT feedback, because you’re hungry to be better than you were yesterday. You’re also a brilliant multi-tasker who can effortlessly shift between a variety of priorities. So if you want to work with some of the nicest people you’ll ever meet. And you want to feel good about making a difference in the world –– all while learning about natural health and working in a well organized and supportive workplace –– send us your resume. And BTW… some of our senior executives started out in this role –– so if you’ve got the talent, there’s no telling where this job might take you :) To best service our clients, our Customer Success Centre is open 7 days per week. Work schedules are 5 consecutive days, which include 1 weekend day. Successful applicants must be willing to work a Saturday or a Sunday, each week. We won’t ask you to work both weekend days, but ya need to be available for one! Example shift rotation: Sunday to Thursday or Tuesday to Saturday. Other Goodies$48,000 starting salary with the opportunity to increase rapidly as training targets are met.AlgaeCal Healthcare Plan (Premiums Covered 100%!), which you're eligible to sign up for after three months of employment.Monthly lunches with your co-workers, coffee catch ups, and an informal coaching programme.Supported professional development and continued learning through training and coaching.Flexible Stat Holidays with the option to bank days for later use.Once you’ve been with us for 3 months you’ll get $200 to spend on whatever you want.You should know this… AlgaeCal is a hyper-growth company, which means that the role is always evolving as the company grows. We are not a typical ‘transactional’ thinking company. We are a heart-based company where people come first. In order to be successful here, you will need to have this mindset, work smart, hard, and embrace everything that is offered. If this sounds like a position for you, please respond to this advertisement with your resume and cover letter. This is an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your carefully written cover letter. Applications submitted without a resume and cover letter will be unsuccessful. Please, read carefully: 1. Write a cover letter addressing: 1. Why you're the best Customer Service Representative for this role. Give quantifiable examples of related achievements. 2. Describe why you fit perfectly with our values. Read them here: http://shorturl.at/lptFT 3. What's the toughest challenge you’ve ever overcome in your life? How did you overcome it? 4. What are the last three books you’ve read? 5. What do you do for fun? 6. Explain what you’re doing now for a job:If you don’t have one, explain why.If you have one, explain why you’re looking elsewhere.2. Upload your cover letter and resume: 1. Ensure that your cover letter and resume are saved and sent as one file. Click the “Apply Now” button on this page and upload your (1) cover letter (2) resume. *Important* AlgaeCal isn’t a boring run-of-the-mill company. So some of the questions in your online application might feel out of the ordinary. These questions are an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your answers. For more information about us, please visit our website. #INDLP\",\n            \"location\": \"Victoria, BC\"\n        },\n        {\n            \"id\": \"07D86D745E8DAC02690D63194E87F3CE\",\n            \"cityName\": \"50 Carroll Street, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=963e3340a834781e\",\n            \"jobName\": \"Wholesale Customer Service Representative (Bilingual)\",\n            \"companyName\": \"Ecco Shoes Canada, Inc.\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694407836674,\n            \"dateOfPosted\": 1667596866402,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6600512,\n                    \"lon\": -79.35320519999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Carroll St, Toronto, ON M4M, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Wholesale Customer Service Representative (Bilingual) will provide comprehensive service to our wholesale account customers, field sales team, and internal team. Create the best possible experience for our internal and external customers.As our Wholesale Customer Service Representative, your responsibilities will include:Manage customer files, order entry, maintenance of all orders for assigned territory, and return authorization processing with strict adherence to company policies, pricing, and programs.Responsible for building allocation fill rate and releasing orders to Distribution for shipping within customer start ship/cancel date windows.Answer inbound and make outbound calls with the highest level of professionalism and courtesy; ensure maximum customer satisfaction by using empathy, attention to detail, and accurate relay of information; consistently going above and beyond with a customer-first mindset.Communicate with Sales team representatives for assigned territory and/or accounts; provide open order reports at a pre-discussed cadence to ensure maximum shipping capability and minimum cancellations/past-cancel orders.Partner with Sales management team member of assigned accounts to address and prevent wrong pricing.Create and distribute weekly and monthly reports to Sales team and Senior Management.Ensure assigned back-up is trained and fully functional for instances of time out of the office.Assist with on-boarding of new hires and training documentation of Customer Service processes and procedures.Consistently provide accurate and timely information and follow through.Learn and develop personal skill levels in regards to SAP, EDI, and the footwear industry.Communicate and coordinate with all internal departments for smooth processing of all transactions.Troubleshoot and/or bring problems/situations to the attention of the department managers, and resolve internal issues for the common good.If you have…Bilingual - excellent written and oral communication skills in both French and English.Post-Secondary diploma or degree.3+ years in a customer service role.Proficiency with MS Office products, particularly Excel.Proficiency with order management platforms, SAP preferred.Ability to work under pressure and meet tight deadlines when necessary.Ability to communicate clearly, concisely and professionally (both verbally and written).Ability to prioritize work and adjust priorities as needed.Superior organization and follow-up skills.Ability to travel up to 5%, both domestic and internationally.…we want to hear from you!Imagining yourself at ECCO?Review this position and other US jobs at www.eccousacareers.comFor international opportunities, please access our global career site at https://enter.ecco.com/CREATE THE FOOTPRINTS OF TOMORROWAt ECCO, you become part of a meaningful, developing and multicultural workplace. You join a global family of more than 25,000 people who are proud to create the footprints of tomorrow.Headquartered in Denmark, we are a family-owned company that offers international opportunities. Our offices and facilities have an informal culture and relaxed dress code – our shoe code is slightly stricter.Join us and we guarantee lifelong learning – the speed of progress is up to you. So, if you’re curious, passionate and ready to make an impact, you’ll fit right in.Job Type: Full-timeSalary: $16.00-$20.00 per hourSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Toronto, ON: reliably commute or plan to relocate before starting work (required)\",\n            \"location\": \"Carroll Street, Toronto, ON\"\n        },\n        {\n            \"id\": \"87DEBE0C7B98D81CAE00143D18F6C007\",\n            \"cityName\": \"Saskatoon, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a646eeab4871d3de\",\n            \"jobName\": \"Customer Service Representative, Saskatoon\",\n            \"companyName\": \"Algaecal\",\n            \"rowSalary\": \"$48,000–$51,000 a year\",\n            \"date\": 1694407685544,\n            \"dateOfPosted\": 1693529524328,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.157902,\n                    \"lon\": -106.6701577\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saskatoon\",\n                \"formattedAddress\": \"Saskatoon, SK, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saskatoon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Career with a heart! If you like helping people, and you want to feel supported in your work –– this is the opportunity for you. Every day, concerned people call the AlgaeCal helpline. They’ve just had bad news about their bones – and they’re scared they might break at any moment. But after talking with YOU, their fear will melt away.We call our Customer Care Representatives – Bone Health Consultants – and a typical day might include: Acting as a knowledge base for customers inquiries with respect to our products and their bone healthActively listening to customers and providing them with everything they need to make an informed decision about AlgaeCal.Supporting our customers through a variety of mediums (email, phone).Processing orders and returns for customers.Helping customers understand the results of their DEXA bone scans.Updating the records of customer interactions, processing customer accounts, and filing documents. So yes, you’ll need to enjoy administrative tasks to thrive in this role.But most importantly, setting our customers up for MAXIMUM SUCCESSThis opportunity is tailor-made for you if:You’re highly motivated to work at home. You’ve got a solid customer service background. You are passionate about natural health. You are an expert at building a rapport with customers and devoted to helping people find that aha moment – where they go from despair to hope. You’re organized. You’re humble. You think critically and creatively. You love to support and inspire others. You don’t just accept feedback – you WANT feedback, because you’re hungry to be better than you were yesterday. You’re also a brilliant multi-tasker who can effortlessly shift between a variety of priorities.So if you want to work with some of the nicest people you’ll ever meet. And you want to feel good about making a difference in the world –– all while learning about natural health and working in a well organized and supportive workplace –– send us your resume. And BTW… some of our senior executives started out in this role –– so if you’ve got the talent, there’s no telling where this job might take you :) To best service our clients, our Customer Success Centre is open 7 days per week. Work schedules are 5 consecutive days, which include 1 weekend day. Successful applicants must be willing to work a Saturday or a Sunday, each week. We won’t ask you to work both weekend days, but ya need to be available for one! Example shift rotation: Sunday to Thursday or Tuesday to Saturday. Other Goodies$48,000 starting salary with the opportunity to increase rapidly as training targets are met.AlgaeCal Healthcare Plan (Premiums Covered 100%!), which you're eligible to sign up for after three months of employment.Monthly lunches with your co-workers, coffee catch ups, and an informal coaching programme.Supported professional development and continued learning through training and coaching.Flexible Stat Holidays with the option to bank days for later use.Once you’ve been with us for 3 months you’ll get $200 to spend on whatever you want.You should know this… AlgaeCal is a hyper-growth company, which means that the role is always evolving as the company grows. We are not a typical ‘transactional’ thinking company. We are a heart-based company where people come first. In order to be successful here, you will need to have this mindset, work smart, hard, and embrace everything that is offered. If this sounds like a position for you, please respond to this advertisement with your resume and cover letter. This is an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your carefully written cover letter. Applications submitted without a resume and cover letter will be unsuccessful. Please, read carefully: 1. Write a cover letter addressing:Why you're the best Customer Service Representative for this role. Give quantifiable examples of related achievements.Describe why you fit perfectly with our values. Read them here: https://drive.google.com/file/d/1deCCJZ6tiDiOSlr_W0UdCuM_V_ahzPBs/view What's the toughest challenge you’ve ever overcome in your life? How did you overcome it?What are the last three books you’ve read?What do you do for fun?Explain what you’re doing now for a job: If you don’t have one, explain why.If you have one, explain why you’re looking elsewhere.2. Upload your cover letter and resume: Ensure that your cover letter and resume are saved and sent as one file. Click the “Apply Now” button on this page and upload your (1) cover letter (2) resume. \",\n            \"location\": \"Saskatoon, SK\"\n        },\n        {\n            \"id\": \"8C6D61A0D0B1A08B39C0CCB0B15052D5\",\n            \"cityName\": \"Windsor, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b0025310e2383fa3\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"Aim Kenny U-Pull\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694405880917,\n            \"dateOfPosted\": 1692670414504,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.3149367,\n                    \"lon\": -83.03636329999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Windsor\",\n                \"formattedAddress\": \"Windsor, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Essex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Windsor\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Company Description  Kenny U-Pull takes pride in giving used vehicles a second life. Our 26 auto recycling yards across Eastern Canada are backed by 400+ employees, all passionate about the revalorization of used cars and the desire for a greener environment for future generations. Since 2008, we have recycled over 1 million vehicles and counting! At Kenny, we do things differently by offering our customers the opportunity to create their own self-serve experience. Customers pick and pull replacement parts themselves for a fraction of the manufacturer's price, in a safe, clean, and environmentally responsible environment. Our engine runs on purpose, passion, and team spirit. We’re a close-knit and supportive company where your ambitions are also ours. Come ride with us - we promise it will be a rewarding journey. Job Description  Salary starting at $16.75/h + annual bonus up to 2.5%Permanent, full-time positionAddress: 200 Sprucewood Ave, Windsor, ON N9C 0B8Schedule: TBD - we're open 7/7 from 9am to 5pm Does the thought of working around cars all day long ‘rev your engine’? Interested in being part of a dynamic, growing team who is helping to create a greener environment for generations to come? Then read on, as this position is for you! As a Customer Service Clerk, you will play the important role of being our customers’ first point of contact in-store. Reporting to the Branch Manager, your day-to-day responsibilities (besides having lots of fun!) will include: Answering customers’ questions and providing advice on products and services Identifying individual customer needs and in turn, effectively providing solutions Operating the cash register and carrying out day-to-day transactions Stocking and organizing inventory on shelves in the store Helping to keep the store, parking lot and occasionally the yard, tidy and clean Perform transactions related to the purchase of vehicles Assist with administrative or production tasks Qualifications  Team player who enjoys connecting with and helping others Passionate about providing exceptional customer service Resourceful and detail oriented Able to lift items up to 30lbs A proven track record for punctuality and reliability Car enthusiast (a plus!) Additional Information  And by additional information, we mean perks! Competitive salary Year-end bonus Comprehensive group insurance plan Overtime at time and a half after 44 hours Group RRSP with employer matching contribution Referral program Exclusive employee discounts on parts from any Kenny yard A fancy new pair of steel toe boots Clothing provided Kenny U-Pull is a subsidiary of American Iron & Metal (AIM) inc., a recognized global leader in the metal recycling industry with more than 125 site locations, 3000 employees worldwide and over 3.5 billion dollars in yearly sales. AIM and its subsidiaries offer equal employment opportunities to all. Only those selected for interviews will be contacted. Thank you for your interest.\",\n            \"location\": \"Windsor, ON\"\n        },\n        {\n            \"id\": \"283048EAEFAC6910EEF242588A1354F1\",\n            \"cityName\": \"Assante Wealth Management Ltd in Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=229a81dc29bb18a8\",\n            \"jobName\": \"Inside Phone Sales Representative\",\n            \"companyName\": \"Assante Wealth Management Ltd\",\n            \"rowSalary\": \"$16–$25 an hour\",\n            \"date\": 1694403201626,\n            \"dateOfPosted\": 1652742079518,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4503213,\n                    \"lon\": -73.7500486\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Assante Capital Management Ltd. is one of Canadas largest independent investment firms.This is a great opportunity to join our expanding inside sales team. We are looking for motivated sales reps to generate new prospective clients for our financial advisors.Qualifications:Experience in cold calling a must.Must be assertive and well-spoken.Bilingual preferred but English only accepted.Sales driven with a positive attitude.Ability to work independently.Lead list is provided.This is a permanent part time position that may lead to full time pending results.Start date is immediate.We offer excellent salary plus bonus for qualified candidates.Hours are Monday to Thursday 5:00 p.m. to 9:00 p.m.Serious candidates only please contact 514 832 5148 to arrange for interview.Work remotelyTemporarily due to COVID-19Job Types: Part-time, PermanentSalary: $16.00-$25.00 per hourBenefits:Casual dressOn-site parkingSchedule:No weekendsSupplemental pay types:Bonus pay\",\n            \"location\": \"Dorval, QC\"\n        },\n        {\n            \"id\": \"A28FD35312A8045695C766169C909AD6\",\n            \"cityName\": \"Petro Canada in Campbell River, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6157183e85bd10c0\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Petro Canada\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694402492353,\n            \"dateOfPosted\": 1693552952933,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.03312260000001,\n                    \"lon\": -125.2733353\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Campbell River\",\n                \"formattedAddress\": \"Campbell River, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Strathcona\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Campbell River\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We're looking for a quality Team Member - part time day/evening/night shifts at Campbellton location (beside walmart) leading to full time as and when position may become available.Convenience store and lotto experience is an asset but not required. Duties involve friendly customer service, cleaning, organizing, stocking and etc.Job Type: Part-timePart-time hours: 24 per weekSalary: From $17.00 per hourDay range:HolidaysWeekends as neededShift:8 hour shiftDay shiftEvening shiftNight shiftWork setting:Convenience storeWork Location: In person\",\n            \"location\": \"Campbell River, BC\"\n        },\n        {\n            \"id\": \"D02BE611BC3CA0D6AB2B33A4DBAC815D\",\n            \"cityName\": \"Sherwood Park, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5f25393f4c858db8\",\n            \"jobName\": \"Customer Service Representative (Part-Time Veterinary Receptionist)\",\n            \"companyName\": \"Pulse Veterinary Specialists & Emergency\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694402435142,\n            \"dateOfPosted\": 1693555279944,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5411916,\n                    \"lon\": -113.2957355\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sherwood Park\",\n                \"formattedAddress\": \"Sherwood Park, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sherwood Park\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you an individual passionate about providing exceptional client care? Do you have a passion for animals and a desire to get into the veterinary industry? Do you already have some veterinary clinic experience and are looking to be part of a new working culture that provides both exceptional care and a fun, warm family work environment? Are you looking to help grow our locally owned and run veterinary hospital to help serve the community? Are you looking to make an impact in an organization by being the first point of contact for all visitors? If you answered YES to the above questions, then we want YOU! Overview We are seeking a motivated, team-oriented, and passionate Customer Service Representative (receptionist) to join our Client Care Services team in our growing emergency and specialty hospital. We are currently looking for a part-time receptionist to join our Client Care Services team. As a 24-hour emergency facility, this position will require shift work (days, nights, weekends, holidays). The part-time shifts are from 4 p.m. - 2 a.m. and weekend availability. Our goal is to promote a healthy working environment centred around high standards of medicine and exceptional patient care. Come feel the difference when you are truly part of the family in Alberta’s only private referral hospital. If you enjoy working in a fast-paced environment with experienced emergency veterinarians and specialists in multiple disciplines, then this may be the job for you! Company Benefits Pulse employees receive:Competitive compensation packagePersonal pet discountsUniform allowanceHealth benefitsPaid time offOn-site parkingDeferred profit-sharing plansOpportunities for growth and professional developmentAccess to a diverse team with varied experience and knowledge Position Summary The Client Service Representative will act as the first point of contact for clients and is responsible for setting an example of high-level client care and teamwork at Pulse Veterinary Specialists & Emergency. They will report to Head of Client Services and work closely with the Client Care team to deliver exceptional patient and client care to ensure all feel welcomed and cared for. The Client Service Representative will support all emergency and specialty teams including: Cardiology, Dentistry, Neurology, Ophthalmology, Radiology, Surgery, and Internal Medicine. The ideal candidate values maintaining a collegial working culture and prioritizes embracing the strategy, commitments, and goals of the organization. Duties and ResponsibilitiesDelivers exceptional client care.Creates a welcoming environment for patients and clients.Greets patients and their owners as they arrive.Responds to incoming emergencies.Answers and triages incoming telephone calls.Manages email correspondence including client and referral inquires, as well as internal messages.Schedules, tracks, and follows-up on appointments.Maintains practice software including client and patient record management.Prepares estimates, invoices, and processes payments.Performs housekeeping duties to maintain cleanliness of reception and common areas. Ensures internal and external hospital cleaning schedules are followed.Admits and discharges patients.Assists with educating clients about insurance and home care instructions as requiredCoordinates and processes end of life care for patients and their families.Supports management of client complaints as required in partnership with the Head of Client Services and Hospital Director, interacting with clientele to deescalate, resolve, and/or escalate issues in a timely fashion.Follows all SOPs to support smooth hospital operations.Follows all federal and provincial animal health laws and regulations regarding workplace health and safety.Openly and proactively communicates updates to Head of Client Services and other department team members. Prioritize interdepartmental synergy by maintaining open lines of communication with other departments.Other duties may be assigned as required. Qualifications The ideal candidate will have: The Education and ExperienceMinimum of 1 year customer service or front desk experience is preferred (ideally in a medical or hospitality setting).Post secondary education is considered an asset. Knowledge, Skills and AbilitiesExceptional customer service skills.Strong interpersonal, verbal, and written communication skills.Proven active listening and problem-solving skills.Understands how to communicate difficult/sensitive information professionally. Aptitude for making clients feel welcomed and comfortable.Ability to adapt to changing situations and remain calm in stressful situations.Strong time management and organizational skills including the abilities to plan, coordinate, multitask, and prioritize. Ability to carry out tasks independently.Genuine interest and initiative to help Pulse be the best practice it can be.Strong initiative and desire to be an integral key player in the growth and maturation of the Client Care team.Intrinsic desire to grow personally and professionally. We thank all interested candidates for applying, however, only candidates considered for an interview will be contacted.\",\n            \"location\": \"Sherwood Park, AB\"\n        },\n        {\n            \"id\": \"A475C9F111610C2E22D1A53AB8446A7F\",\n            \"cityName\": \"57 Crowfoot Terr NW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=20e565fc3b445bc3\",\n            \"jobName\": \"Customer Service Retail Crave Ambassador (Happiness Provider)\",\n            \"companyName\": \"Crave Cupcakes\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694402368835,\n            \"dateOfPosted\": 1693534098929,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.1273066,\n                    \"lon\": -114.2004557\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Crowfoot Terrace NW, Calgary, AB T3G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"WHY CRAVEWe exist to enrich people’s lives through exceptional, home-style baking. We passionately bake from scratch, we work together for the collective good of Crave and we are kind and gracious. Crave is looking for a like-minded individual who shares our passion in creating a sense of community by being part of a collaborative team. Does the idea of waking up early to bake family recipes from scratch appeal to you? If the smell of cocoa in the air and the whirring sound of whipping crave-o-licious buttercream in the mixer gets you excited, we want to hear from you!RESPONSIBILITIES- Understand and subscribe to the Crave Values & Vision- Mastery of Crave’s from scratch menu- Packaging & gift wrapping- Operating point-of-sale system- Practice food safety and store maintenance- Offer bakery support when requiredTHE ESSENTIALS- Able to think critically in the moment- Love Crave as much as we do- Strong organizational skills- You enjoy working making moments special for people- Good customer service is a priority for you to give and receive- You strive to gain insights from your mistakes- You seek constructive feedback from colleagues and supervisors to improve results- You are high energy with the ability to energize others- Team oriented- Motivated to pursue growth within your role- You love to smileWe look forward to hearing from you!Work remotelyNoJob Type: Part-timePart-time hours: 16-24 per weekSalary: From $15.00 per hourBenefits:Dental careDisability insuranceDiscounted or free foodLife insuranceStore discountSchedule:8 hour shiftMonday to FridayOvertimeWeekends as neededSupplemental pay types:Overtime payEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Crowfoot Terr NW, Calgary, AB\"\n        },\n        {\n            \"id\": \"104594DE331D80A3A92E179C793978C0\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=57a3408002ee78b9\",\n            \"jobName\": \"Customer Service Representative, Calgary\",\n            \"companyName\": \"Algaecal\",\n            \"rowSalary\": \"$48,000–$51,000 a year\",\n            \"date\": 1694402192470,\n            \"dateOfPosted\": 1693529502493,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Career with a heart! If you like helping people, and you want to feel supported in your work –– this is the opportunity for you. Every day, concerned people call the AlgaeCal helpline. They’ve just had bad news about their bones – and they’re scared they might break at any moment. But after talking with YOU, their fear will melt away. We call our Customer Care Representatives – Bone Health Consultants – and a typical day might include: Acting as a knowledge base for customers inquiries with respect to our products and their bone healthActively listening to customers and providing them with everything they need to make an informed decision about AlgaeCal.Supporting our customers through a variety of mediums (email, phone).Processing orders and returns for customers.Helping customers understand the results of their DEXA bone scans.Updating the records of customer interactions, processing customer accounts, and filing documents. So yes, you’ll need to enjoy administrative tasks to thrive in this role.But most importantly, setting our customers up for MAXIMUM SUCCESSThis opportunity is tailor-made for you if: You’re highly motivated to work at home. You’ve got a solid customer service background. You are passionate about natural health. You are an expert at building a rapport with customers and devoted to helping people find that aha moment – where they go from despair to hope. You’re organized. You’re humble. You think critically and creatively. You love to support and inspire others. You don’t just accept feedback – you WANT feedback, because you’re hungry to be better than you were yesterday. You’re also a brilliant multi-tasker who can effortlessly shift between a variety of priorities. So if you want to work with some of the nicest people you’ll ever meet. And you want to feel good about making a difference in the world –– all while learning about natural health and working in a well organized and supportive workplace –– send us your resume. And BTW… some of our senior executives started out in this role –– so if you’ve got the talent, there’s no telling where this job might take you :) To best service our clients, our Customer Success Centre is open 7 days per week. Work schedules are 5 consecutive days, which include 1 weekend day. Successful applicants must be willing to work a Saturday or a Sunday, each week. We won’t ask you to work both weekend days, but ya need to be available for one! Example shift rotation: Sunday to Thursday or Tuesday to Saturday. Other Goodies$48,000 starting salary with the opportunity to increase rapidly as training targets are met.AlgaeCal Healthcare Plan (Premiums Covered 100%!), which you're eligible to sign up for after three months of employment.Monthly lunches with your co-workers, coffee catch ups, and an informal coaching programme.Supported professional development and continued learning through training and coaching.Flexible Stat Holidays with the option to bank days for later use.Once you’ve been with us for 3 months you’ll get $200 to spend on whatever you want.You should know this… AlgaeCal is a hyper-growth company, which means that the role is always evolving as the company grows. We are not a typical ‘transactional’ thinking company. We are a heart-based company where people come first. In order to be successful here, you will need to have this mindset, work smart, hard, and embrace everything that is offered. If this sounds like a position for you, please respond to this advertisement with your resume and cover letter. This is an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your carefully written cover letter. Applications submitted without a resume and cover letter will be unsuccessful. Please, read carefully: 1. Write a cover letter addressing: 1. Why you're the best Customer Service Representative for this role. Give quantifiable examples of related achievements. 2. Describe why you fit perfectly with our values. Read them here: http://shorturl.at/lptFT 3. What's the toughest challenge you’ve ever overcome in your life? How did you overcome it? 4. What are the last three books you’ve read? 5. What do you do for fun? 6. Explain what you’re doing now for a job:If you don’t have one, explain why.If you have one, explain why you’re looking elsewhere.2. Upload your cover letter and resume: 1. Ensure that your cover letter and resume are saved and sent as one file. Click the “Apply Now” button on this page and upload your (1) cover letter (2) resume. *Important* AlgaeCal isn’t a boring run-of-the-mill company. So some of the questions in your online application might feel out of the ordinary. These questions are an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your answers. For more information about us, please visit our website. #INDLP\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"AFC9B526AE0C694536BC8BEB6586A949\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f0795f8d6c2e30ed\",\n            \"jobName\": \"Logistics Dispatcher / Customer Service\",\n            \"companyName\": \"Ballad Consulting Group\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694400957053,\n            \"dateOfPosted\": 1694211483226,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About Us: At Ballad we consider ourselves to be the most accountable, collaborative, and entrepreneurial group of professionals in the Supply Chain industry. We empower resilient people to grow their careers and are looking for talented people like you who are eager to embrace a rewarding career in the Supply Chain industry. Position Summary: We are looking for highly organized logistics professionals who enjoy taking advantage of their amazing attention to detail to assist with coordinating dispatch operations. This is a great chance to get your career started in a role that is dynamic and rewarding and offers significant growth opportunities in the supply chain industry.This position is contingent on the successful completion of a 12 week training program that will include all necessary certifications facilitated by Ballad. Responsibilities:Data entry, input orders in computer system / TMSWork with carriers and transport companies to track shipments, expedite orders, and report on delivery timesOffer support and solutions to customers in accordance with the company's customer service policiesProvide solutions and deliver commitments to customers, dispatch and work with planning teamsCommunicate in a fast-paced environment with operations daily activityWork with customer to determine their needs and expectations and operate accounts to meet those demandsBook customer appointments for import and export containersProvide regular timely customer reportsUse strong interpersonal skills to manage geographical areas of responsibilityDemonstrate effective people management skillsEngage with clients in a friendly and professional manner while actively listening to their concerns Shift Schedule: Day shift, Monday to Friday The wage range for this position ranges from $18.00 - $22.00 per hour. Only candidates selected for the interview process will be contacted.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"28774491C1BF2682E87391770D0CAB5B\",\n            \"cityName\": \"331 Durham St E, Walkerton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ea38e9a105227bb7\",\n            \"jobName\": \"Customer Service Representative (Part Time)\",\n            \"companyName\": \"Brown's Guardian Pharmacy\",\n            \"rowSalary\": \"From $15.75 an hour\",\n            \"date\": 1694399793262,\n            \"dateOfPosted\": 1694239006437,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Brown's Guardian Pharmacy is seeking a part-time Customer Service Representative to join our Front Shop Team. This position offers 24 hours per week, including occasional Saturdays. Operating within Brown’s Guardian Pharmacy, the front shop department maintains a well-stocked array of merchandises, efficiently processes orders and purchases, and upholds Brown’s mission of exceptional customer service during all visits.The ideal applicant will possess:Proven ability to communicate effectively and courteously in-person and over the phoneA valid G Driver’s License is required, with clear driver’s abstract (no major violations in the past 3 years)Previous customer service experience, preferredExperience operating point-of-sale systems, an assetThe successful applicant will be required to submit a Criminal Record CheckGeneral Duties of the position:Operate cash register and process paymentsGreet customers and offer assistance when needed, ensuring positive customer experiencesPrepare, organize, and perform occasional deliveries (company vehicle, gas, and insurance provided)Maintain a valid driver’s license and clean driving recordStock shelves, maintain inventory, general housekeeping duties, and other duties as assignedTo Apply:Interested parties may submit their resumes in-person to Rhonda Bradley - Front Shop Manager. Applications will also be accepted through Indeed but we would really love to meet you face-to-face when you apply!Hours of operation:Monday to Friday 9am-6pm;Saturday 9am-5pmClosed Sundays and Statutory HolidaysApply today to join our team!*We thank all that apply, however, only applicants selected for an interview will be contacted. If you require an accommodation at any point during the recruitment process, please notify HR - hr@brownspharmacy.ca*Job Types: Part-time, PermanentPart-time hours: 24-32 per weekSalary: From $15.75 per hourSchedule:8 hour shiftMonday to FridayWeekends as neededExperience:Customer service: 1 year (preferred)Licence/Certification:Class G Licence (required)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"F5BCC91E0703C9A30F0AA4F8685A2453\",\n            \"cityName\": \"2390 Bristol Cir, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=de12d68c766fb9b4\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Promotion Solutions\",\n            \"rowSalary\": \"$18–$21 an hour\",\n            \"date\": 1694399662866,\n            \"dateOfPosted\": 1694215339851,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"An established company has an immediate opening for an individual who is proficient with the following:· typing & computer skills in Word & Excel· answer consumers' telephone/email inquiries· solving customers' issues· utilize computer system to search and access customer information in our records management systems· enter data into the operating system and create monthly reports· perform administrative tasks· mail sorting, create daily/weekly shipments· coupon/contest report management and increasingly challenging endeavors to meet the candidate’s qualifications- a candidate who knows French is preferredBenefits:Flexible working hoursCasual dressOn-site parkingJob Type: Part-time/full time, In OfficeJob Types: Full-time, Part-timePart-time hours: 20-40 per weekSalary: $18.00-$21.00 per hourBenefits:Casual dressFlexible scheduleOn-site parkingSchedule:Monday to FridayWork Location: In personExpected start date: 2023-10-02\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"CFB10C518311E9AEF3E012C135551F04\",\n            \"cityName\": \"240 Richmond Street West, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5b89bdef0b2f3285\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Checkmark Marketing\",\n            \"rowSalary\": \"$22–$24 an hour\",\n            \"date\": 1694398942668,\n            \"dateOfPosted\": 1694224181760,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job DescriptionJoin our purpose driven, diverse and fun team! As a customer service representative, you are the face of the organization. Checkmark Marketing is a place where we care about our team and the success of our clients.Checkmark Marketing is seeking a Customer Service Representative to join our team. This position will be responsible for providing support to our customers by responding to customer inquiries, assisting with product and service orders, and general customer service duties.If you are:Outgoing - you are someone who is approachable and positive in social interactionsEmpathetic - someone who is caring and passionate about their workCustomer oriented - you are passionate about providing top tier customer supportKind - being kind to the customers is a main priority for you and your goalsWhy work with us? The opportunity to join a growing and fast paced organization surrounded by a positive and passionate teamDiverse opportunities for professional career growthA company that is committed to making a difference in our communityYou can depend on being recognized for high-achievement and acknowledgement for your successCompetitive compensation optionsRequirementsHigh school diploma or equivalent required. College degree preferred.1-2 years of experience in a customer service role.Excellent verbal and written communication skills.Ability to multi-task, prioritize, and manage time effectively.Proficient in Microsoft Office applications (Word, Excel, Outlook).Ability to work independently with minimal supervision..Demonstrates high standards of personal hygiene and confidentiality.Must be located in the Toronto, ON area (no exceptions) or able to obtain valid work authorization within 1 year of employment.Must be able to pass a criminal background check and drug test.Job Types: Full-time, Part-timePart-time hours: 20 per weekSalary: $22.00-$24.00 per hourBenefits:Dental carePaid time offFlexible Language Requirement:French not requiredSchedule:Monday to FridayNo weekendsSupplemental pay types:Overtime payAbility to commute/relocate:Toronto, ON M5V 1V6: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"BE23C8DF4C3BD67271015F03F571144E\",\n            \"cityName\": \"1100 Champlain Crt, Whitby, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=355421f0c246ad79\",\n            \"jobName\": \"E-Commerce Customer Service Associate\",\n            \"companyName\": \"Gp Bikes Inc.\",\n            \"rowSalary\": \"$16–$18 an hour\",\n            \"date\": 1694398654470,\n            \"dateOfPosted\": 1689525258168,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8667419,\n                    \"lon\": -78.9195341\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Whitby\",\n                \"formattedAddress\": \"Champlain Ct, Whitby, ON L1N, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Whitby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Overview:If you enjoy going the extra mile for a customer, making them feel like they know you well (even if you haven’t met face-to-face), then this may be the job for you! The Online/E-Commerce Sales Associate delivers outstanding customer service as they support clients by phone or email as they make online purchases. They pick the ordered products from our retail store or special order the items as necessary. Sales are enhanced by providing information about alternative products or add-ons. The Online Sales Associate will also enter all new or updated products to GP Bikes’ website, including data and images. Online Sales Associates help customers shopping in the retail store as needed. The individual must be able to work Saturdays. Working motorcycle trade shows beyond our normal store hours 2-3 times a year is compulsory.Qualifications:Passion for the riding lifestyleMotorcycle apparel, accessories or Parts sales experience is an assetPrevious customer service experienceExcellent interpersonal skills and an ability to build trust and rapportAbility to move between various tasks without losing focusStrong verbal, written, and keyboarding skills are required to compose professional emails and converse with customers by phoneAble to work with ease in a web-based computer environmentStrong attention to detailSome post-secondary education preferredWhat you’ll get:Be part of a great team of peopleA fun and fast paced environmentFull-time hoursCompensation begins at $16-$18/hour depending on experienceGroup Insurance Benefits (once eligibility requirements have been met)Employee discounts on productProfit Sharing PlanYour schedule will be determined based on our business hours. Please note, you can be scheduled prior to our opening time for regular duties. There may also be circumstances for business needs where you are scheduled outside of our regular business hours for various reasons (ex. special projects, meetings, inventory or Bike Shows).GP Bikes is committed to providing a barrier-free work environment in conjunction with the Accessibility for Ontarians with Disabilities Act (AODA) and the Ontario Human Rights Code. As such, GP Bikes will make accommodations available to applicants with disabilities upon request during the recruitment process.The above description reflects the general details considered necessary to describe the principal functions and duties as required for proper evaluation of the job and will not be construed as a detailed description of all the work requirements that may be inherent in the job. Employees may perform other related duties and tasks as required to meet the needs of the operation.#HPJob Types: Full-time, PermanentSalary: $16.00-$18.00 per hourBenefits:Dental careOn-site parkingStore discountDay range:Monday to FridayWeekends as neededShift:10 hour shift8 hour shiftWork setting:Apparel storeAbility to commute/relocate:Whitby, ON: reliably commute or plan to relocate before starting work (required)Application question(s):How many years of Motorcycle or Dirt Bike Riding experience do you have?What is your availability for work from Monday-Saturday? (NOTE: We are closed on Sundays)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Licence/Certification:M2/M Licence (preferred)Work Location: In person\",\n            \"location\": \"Champlain Crt, Whitby, ON\"\n        },\n        {\n            \"id\": \"F836025C60432F027DA815AFBC849CF4\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=00f39ef1fcf0954b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Emson Creative\",\n            \"rowSalary\": \"$28–$32 an hour\",\n            \"date\": 1694398626643,\n            \"dateOfPosted\": 1692655479290,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 28.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    28.0\n                ],\n                \"range\": {\n                    \"gte\": 28.0,\n                    \"gt\": null,\n                    \"lte\": 28.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are hiring a Customer Service Representative to manage customer queries and complaints. You will also be asked to process orders, modifications, and escalate complaints across a number of communication channels. To do well in this role you need to be able to remain calm when customers are frustrated and have experience working with computers.  Responsibilities Maintaining a positive, empathetic and professional attitude toward customers at all times.Responding promptly to customer inquiries.Communicating with customers through various channels.Acknowledging and resolving customer complaints.Knowing our products inside and out so that you can answer questions.Processing orders, forms, applications, and requests.Keeping records of customer interactions, transactions, comments and complaints.Communicating and coordinating with colleagues as necessary.Providing feedback on the efficiency of the customer service process.Managing a team of junior customer service representatives.Ensure customer satisfaction and provide professional customer support. Requirements High school diploma, general education degree or equivalent.Ability to stay calm when customers are stressed or upset.Comfortable using computers.Experience working with customer support.\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"B51CE6C524F869DDC794FF21BAD8B16F\",\n            \"cityName\": \"10a-1209 Island Highway E, Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=19a2643bad5505d7\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mid Island Liquor\",\n            \"rowSalary\": \"$17.75 an hour\",\n            \"date\": 1694398527600,\n            \"dateOfPosted\": 1694239186383,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Liquor is looking for part-time Customer Service Representatives at our South Parksville Liquor Store Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you! Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in the operations of the store, including but not limited to handling customer transactions, responding to customer questions and concerns in a professional manner, creating displays and stocking shelves, and ensuring store and merchandise are neat and organized.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Representative today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. Previous retail experience is preferred, and you must have a valid Serving it Right Certificate (or be willing to get certified prior to your first day). Who we are: Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve. Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op). We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"D09CD11B18AE17ABA939910EFC52CD4F\",\n            \"cityName\": \"1035 7 Av SW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f5aba598e1261351\",\n            \"jobName\": \"Admissions Specialist Manager (Call Center)\",\n            \"companyName\": \"Cdi College\",\n            \"rowSalary\": \"$60,000–$70,000 a year\",\n            \"date\": 1694394924600,\n            \"dateOfPosted\": 1693535388195,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0696021,\n                    \"lon\": -114.2048762\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Cougar Ridge Ave SW, Calgary, AB T3H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 60000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    60000.0\n                ],\n                \"range\": {\n                    \"gte\": 60000.0,\n                    \"gt\": null,\n                    \"lte\": 60000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are happy to say that we are looking for an experienced Admissions Specialist Manager (Call Center)to join CDI College Regional team in Calgary, AB! Position Job Title: Admissions Specialist Manager (Call Center) Reports To: Associate Vice President of Admissions Hours: Regular Office Hours and flexible to some evenings as per business needs Location: On site CDI City Center, Calgary AB Job Status: Full-time, permanent, must be eligible to work in Canada Compensation: 60K - 70K annually + comprehensive benefits WHY JOIN US? For more than 50 years, CDI College has been one of the leading career training institutions in Canada, thanks to its commitment to quality education and the success of its students. Our rich history includes alumni of thousands of successful graduates who embark on careers rich in opportunity. We are happy to say that we are looking for an experienced Admissions Specialist Manager to join our team! The Admissions Specialist Manager is responsible for the day-to-day inbound and outbound call operations through developing and managing the call center team to ensure maximized operational efficiency and high customer satisfaction. This includes evaluating, implementing, and updating call center strategies, standards and procedures, technologies and resources while managing and developing a team of call center representatives. What is important to know before sending us your application :1. Full time schedule ( Monday to Friday 8 AM to 4PM ) 2. On site position - Job location : #700-1035 7 Ave SW, Calgary Alberta T2P 0K4 3. Available immediately  Job Profile Specifically, the Admissions Specialist Manager will be responsible for: Managing call center operations by establishing and implementing call center strategies, procedures and standards Managing and developing a professional customer service team by hiring, training, motivating, coaching and retaining high quality representatives Reviewing business processes and systems to identify improvements to processes, resources and new technologies Achieving monthly and annual sales targets Other related duties as assigned Specific Responsibilities The Admissions Specialist Manager will be responsible for the following, as well as other related duties as assigned to support the business objectives and purpose of the Company. 1. Managing call center operations by establishing and implementing call center strategies, procedures and standards such as: Communicate business objectives across the department and drive awareness of performance goals Developing call center systems, designing/introducing user interfaces, planning and controlling system implementations Identifying and resolving problems, monitoring and improving call center operations Creating reference materials and training programs, ensuring representatives have accurate product information and proper customer service skills Establishing customer services standards and metrics to guide performance evaluation Maintaining up-to-date knowledge of industry developments 2. Managing and developing a professional customer service team by hiring, training, motivating, coaching and retaining high quality representatives such as:  Providing team members with proper orientation, training and day-to-day guidance Planning, monitoring, and adjusting representatives’ responsibility allocation and work schedules Monitoring random calls, conducting regular performance evaluation, appraising or disciplining representatives’ performance to improve service quality Coordinating best practices to maximize employee development, training and performance; manage ongoing business changes without sacrificing performance results Answering representatives’ questions, guiding them through difficult calls, diffusing angry customers, or handling issues that cannot be fielded by representatives 3. Reviewing business processes and systems to identify improvements to processes, resources and new technologies  Overseeing system maintenance and upgrade implementation, calling for repairs and troubleshooting as needed Evaluating and implementing equipment/ technology upgrades Contacting service and equipment providers, negotiating contracts, and maintaining business relationships Maintaining professional and technical knowledge by tracking emerging trends and technologies 4. Achieving monthly and annual targets  Meeting performance targets for speed, efficiency, sales and quality Ensuring each representatives are achieving sales target and desired service levels, and taking corrective action as needed 5. Other related duties as assigned  Position Requirements To be successful in the Admissions Specialist Manager position, individuals must be committed to developing, maintaining and demonstrating the following: Education and Experience: Certificate, diploma or degree in Customer Service, Business and/or in a related field Minimum 3+ years of experience in a high-volume call center environment Minimum 1 year of experience as a Team Lead/Supervisor Previous sales experience Experience in planning and implementing complex system and processes Possess a strong understanding of key performance metrics and their associated drivers within a call center environment Knowledge of performance evaluation and customer service metrics Skills and Abilities: Ability to think strategically, implement policies, procedures and programs Excellent interpersonal skills and the ability to build and cultivate internal and external relationships with stakeholders Advanced oral and written communication skills, including presentation, group facilitation and business writing skills Strong proficiency with necessary technology, including MS Office, software applications, call center equipment, phone systems, etc. Previous experience in hiring, training, motivating and retaining a team Proven self-starter and problem solver A positive attitude and customer-focused approach Must be deadline driven and goal-oriented Comfortable with multi-tasking, managing multiple priorities and meeting several, often movable, deadlines under pressure Provisos: Willingness to be available to work days, evenings and weekends as needed\",\n            \"location\": \"Av SW, Calgary, AB\"\n        },\n        {\n            \"id\": \"E2FF3077B00FF19121995579EC297E28\",\n            \"cityName\": \"Rosser, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2377b953c6e2568a\",\n            \"jobName\": \"Customer Service Representative - Financial Services\",\n            \"companyName\": \"Calculus Financial\",\n            \"rowSalary\": \"$24 an hour\",\n            \"date\": 1694394911577,\n            \"dateOfPosted\": 1693535318638,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.9897361,\n                    \"lon\": -97.44723859999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Rosser\",\n                \"formattedAddress\": \"Rosser, MB R0H 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 14\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Rosser\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 1 year to 2 yearsExperience: 2 years to less than 3 yearsWork setting Financial management/services Willing to relocate General office Tasks Balance daily transactions Process banking transactions Promote financial products and services Store, update and retrieve financial data Answer enquiries and resolve problems or discrepancies concerning customers' accounts Answer clients' inquiries and provide information Computer and technology knowledge MS Windows MS Access MS Excel MS Outlook MS PowerPoint MS Word Work conditions and physical capabilities Attention to detail Fast-paced environment Tight deadlines Work under pressure Personal suitability Accurate Client focus Efficient interpersonal skills Flexibility Judgement Organized Team player Time management Other benefits Free parking availableWork Term: PermanentWork Language: EnglishHours: 35 to 40 hours per week\",\n            \"location\": \"Rosser, MB\"\n        },\n        {\n            \"id\": \"879EA31AF6DA5108BF0F68EE32AFCA8D\",\n            \"cityName\": \"Cranbrook, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a3149a7c5d51ad5a\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"R.C. Purdy Chocolates Ltd\",\n            \"rowSalary\": \"$16.75–$19.26 an hour\",\n            \"date\": 1694394906707,\n            \"dateOfPosted\": 1693534875453,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.5129678,\n                    \"lon\": -115.7694002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cranbrook\",\n                \"formattedAddress\": \"Cranbrook, BC V1C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"East Kootenay\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cranbrook\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: No degree, certificate or diplomaExperience: Experience an assetTasks Operate cash register Process money, cheques and credit/debit card payments Scan items Receive payment for goods or services Suggestive selling Stock shelves and clean counter area Greet customers Provide customer service Work conditions and physical capabilities Fast-paced environment Attention to detail Standing for extended periods Personal suitability Accurate Flexibility Team player Screening questions Are you currently legally able to work in Canada? Long term benefits Other benefitsWork Term: TemporaryWork Language: EnglishHours: 12 to 30 hours per week\",\n            \"location\": \"Cranbrook, BC\"\n        },\n        {\n            \"id\": \"372889E9E8B5C9DC8E15E7C5256F0A04\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=af7864d1e22c0ef4\",\n            \"jobName\": \"Agent Bilingue Du Service Clientèle / Bilingual Customer Service Agent\",\n            \"companyName\": \"Voxdata\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694394704034,\n            \"dateOfPosted\": 1693535125222,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*English version to follow* *NB : Nous n'acceptons que les candidatures provenant de la grande région de Montréal car la formation se fait à partir du bureau.* *Nous exigeons que nos candidats parlent anglais car certains de nos clients sont à l'extérieur du Québec et ne parlent que l'anglais.* Prêt à vous joindre à l'un des plus importants centres d'appels de Montréal ! VOXDATA vous attend ! Nous cherchons à agrandir notre équipe avec de nouveaux membres qui sont prêts à devenir nos prochains experts en offrant la meilleure expérience client possible ! Pour avoir une meilleure idée de notre entreprise et de nos valeurs, vous pouvez consulter notre site web ici ! https://www.voxdata.com/ Voici quelques raisons pour lesquelles il fait bon travailler chez VOXDATA : Une variété de types de postes, allant du service à la clientèle aux ventes, en passant par le soutien technique, avec des rôles uniquement en anglais ou bilingues et des options d'horaire variées - nous voulons mettre en valeur vos compétences uniques dans un poste qui vous convient le mieux !Un bureau facilement accessible et convoité au cœur du centre-ville de Montréal, et la possibilité de travailler à domicile pour nos postes hybrides !Un environnement de travail diversifié, positif et encourageant, notre objectif étant d'aider nos agents à briller et à réussir au maximum de leur potentiel !Les avantages et les bénéfices pour les employés tels que les plans de primes inclus dans nos postes, les primes supplémentaires pour les personnes les plus performantes (comme des cartes cadeaux et de l'argent supplémentaire !), les couvertures d'assurance, et les primes de recommandation des employés qui peuvent aller jusqu'à 1000 $ par personne !La possibilité d'évoluer et de développer vos compétences par le biais de réunions d'équipe, de séances de coaching individuel et d'évaluations des performances, toutes conçues pour vous aider à renforcer vos capacités et à devenir un maître dans votre travail !Des opportunités de développement interne ouvertes à tous - avec des rôles tels que chef d'équipe, coach, formateur, mentor et même des postes administratifs, nous sommes fiers de toujours nous tourner vers le personnel que nous avons déjà avec nous pour le promouvoir lorsque l'occasion se présente !Pour ce poste, vous travaillerez avec une société d'aviation bien établie. Vos tâches spécifiques seront les suivantes : Fournir un service à la clientèle de premier ordre à chaque interaction avec les clients.Répondre aux appels entrants des clients pour les aider à effectuer des réservations une fois qu'elles ont été achetées.Résoudre les problèmes liés à l'accès aux billets et à la navigation sur le site web.Répondre aux questions concernant les informations sur les billets ou aux questions générales sur les réservations.Ready to join one of the leading call centers in Montreal?! VOXDATA is waiting for you! We're looking to expand our team with new members who are ready to become our next experts in delivering the best customer experience possible! To get a better idea of our company and values, you can check out our website here! https://www.voxdata.com/ Here's a few reasons why it's great to work at VOXDATA: A variety of position types, ranging from customer service, sales, and technical support, with English-only or bilingual roles and ranging scheduling options – we want to highlight your unique skillset in a position that is best suited to you!An easily accessible and coveted office location in the heart of Downtown Montreal, and the option to work from home with our hybrid roles!A diverse, supportive, and encouraging work environment, our goal is to help our agents shine and succeed to their fullest potential!Employee benefits and perks such as bonus plans included into our positions, additional bonuses for top performers (like gift cards and extra money!), insurance coverages, and employee referral bonuses that can go up to $1000 per person!The chance to grow and develop your skills through team meetings, individual coaching sessions, and performance reviews; all designed to help you further strengthen your abilities and become a master at your job!Internal growth opportunities that are open to everyone – with roles like team leader, coach, trainer, mentor, and even administrative positions; we pride ourselves on always looking to the staff we already have with us to promote when the occasion arises!For this role, you will be working with an established aviation company. Your specific tasks will include: Providing top-tier customer service to clients in every interaction.Answering inbound calls from customers to assist with bookings/reservations after they have been purchased.Resolving issues relating to ticket access and website navigation.Answering questions regarding ticket information, or general questions about bookings/reservations.Requirements Qu'est-ce qui fait de quelqu'un un excellent candidat ? Nous recherchons des personnes qui : Peut travailler 40 heures par semaine pendant les heures d'ouverture de la campagne : Du lundi au dimanche, de 7 heures à 7 heures (ouvert 24 heures sur 24) ; nous préférons les candidats disponibles le soir, la nuit et le week-end. Sont bilingues en français et en anglais.Ont déjà travaillé dans le service à la clientèle, les ventes ou les centres d'appels, ou ont une expérience traduisible dans d'autres secteurs.Vous pouvez apprendre à utiliser et à faire fonctionner plusieurs programmes informatiques avec facilité.Être disponible pour travailler le soir et le week-end si la campagne est opérationnelle pendant ces périodes.Avoir obtenu un diplôme de fin d'études secondaires ou un diplôme équivalent.Se considèrent comme des personnes capables de résoudre des problèmes, de s'adapter à des situations changeantes et sont motivées pour être les meilleures des meilleures !What do we think makes someone a great candidate?! We're looking for people who: Can work 40 hours/week anytime through the campaign operation hours: Monday to Sunday, from 7 AM to 7 AM (open 24 hours/day); we prefer candidates with evening, overnight, and weekend availability. Are bilingual in French and English.Have worked in customer service, sales, or call centers before; or have translatable experience from other industries.Can learn how to use and operate multiple computer programs with ease.Have graduated high school or have an equivalent diploma.Consider themselves to be problem-solvers, adaptable to changing situations and are motivated to be the best of the best!Benefits Soumettez votre candidature dès maintenant pour lancer le processus d'embauche et voyez par vous-même pourquoi il est formidable d'être un agent VOXDATA !Ce poste est assorti d'un salaire de base de 17,00 $/heure. Submit an application now to get the hiring process started and see for yourself why its great to be a VOXDATA agent! *This position has a base salary of $17.00/hour.*\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"0A74B665098DF351560DB3CDA9EC0C02\",\n            \"cityName\": \"3080 Boulevard Le Carrefour, Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=047f0ee173475799\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Aim Kenny U-Pull\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694394032697,\n            \"dateOfPosted\": 1693534887959,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.565253,\n                    \"lon\": -73.7539157\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Boul. le Carrefour, Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Company Description  Kenny U-Pull is a fast growing company based in the Province of Quebec that contributes to the protection of the Environment by giving a second life to used vehicules. Our 28 canadian sites, in which more than 400 employees are working, have already recycled over a million of them… and it’s not over! If you like to work with people and are looking for a stimulating work environment full of opportunities, get on board: we promise you a fulfilling journey! Job Description  We are looking for a Customer Service Agent (CSA) for Kenny U-Pull’s Call Center, located in front of the Carrefour Laval. Reporting to the Call Center Supervisor, you will play the crucial role of ambassador for our trademark, and you will be responsible to create, for every client you will interact with, an outstanding personalized experience. More specifically, your daily tasks will be: Answering calls and general inquiries of clients who would like to have information on our stocks, prices and mode of operation; Taking the time to understand the specific needs of each client and propose personalized solutions; Inform the clients on our various products (batteries, tires, etc.) and services; Guide the clients in the utilization of our website; Promote in-person visits to our several branches; Register the clients to our personalized email system « Alert-Me »; Any other task related to the role. Qualifications  Minimum 1 year of experience in customer service Work experience in a call center (asset) Excellent interpersonal communication Ability to work in a team Ability to work under pressure Ability to follow the procedures rigorously Reliability, assiduity and punctuality Interest in the automotive industry Knowledge in automobiles (asset) Functional Bilinguism required to answer the French and English calls coming from everywhere in Canada Additional Information  Your benefits: Salary starting from 18 $ by hour Retention bonus (1 year) of 1 000 $ Comprehensive Collective Insurance Plan Collective RRSP with contribution of the company Employee Assistance Program (free) Exclusive discounts on our parts and cars Complete paid training provided on site Collective transportation accessible, free parking Exceptionnal advancement opportunities Fantastic culture, work atmosphere and team!!!\",\n            \"location\": \"Boulevard Le Carrefour, Laval, QC\"\n        },\n        {\n            \"id\": \"D71C7D0F2537C9ACC064506DDA50F02E\",\n            \"cityName\": \"Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a814d0f20eee151e\",\n            \"jobName\": \"Customer Service Representative (1-Year Contract)\",\n            \"companyName\": \"Horizon Grocery + Wellness\",\n            \"rowSalary\": \"$24.02 an hour\",\n            \"date\": 1694393370002,\n            \"dateOfPosted\": 1693530778651,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2488091,\n                    \"lon\": -122.9805104\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Burnaby, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 25.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    25.0\n                ],\n                \"range\": {\n                    \"gte\": 25.0,\n                    \"gt\": null,\n                    \"lte\": 25.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"JOB SUMMARY: Our Customer Service Representatives provide excellent customer service both internally and externally. They process customer orders through our web portal, over the phone, by fax, and by email, which requires accurate data entry and following detailed procedures. Additionally, they provide product information, promote sales, handle customer questions and challenges, and invoice orders. Strong people skills and written/verbal communication skills are required, as this position involves intensive customer contact, mainly by email/phone. The primary focus will be on customer service regarding our organic and natural grocery and wellness products.  MAIN RESPONSIBILITIES: Customer service: Phone calls and call backs are the number one priority Manage email correspondence and provide excellent follow–up for customer inquiries Represent Horizon in a friendly, professional, and helpful manner to all customers over the telephone and in written email correspondence Help familiarize new customers with our products, policies, and procedures Report details for any invoicing errors or account discrepancies that may arise to the claims department Order entry: Enter orders from all sources – web, handheld, phone, fax, email Confirm details (such as ship date, prepay customers-notifying A/R, ship to addresses, co-ship and order minimums) Knowledge of our product line and of how to access the information pertaining to it, including ingredients, stock level, expected arrival time of out-of-stock items, and popularity of items Review emails and reports regarding recently added, deleted, and clearance items to ensure customers have up-to-date information Review and understand monthly special sheets and volume discounts on specific products Knowledge of shipping companies' areas of service, schedules, and rates to facilitate safe, speedy, and cost-efficient delivery of goods to customers WORKING CONDITIONS: This is a one-year contract, full-time status, (Mon-Fri) based out of our Burnaby office. After one year there may be an opportunity to transition to a permanent position. The rate of pay is $24.02/hour.  QUALIFICATIONS + EXPECTATIONS:  Minimum of 2-years previous order-desk experience in a high volume, fast-paced environment Familiarity with office procedures and accurate data entry Strong computer skills - experience with MS365 and CRM or ERP Excellent verbal and written communications skills, and a polite and positive telephone presence Knowledge of basic “soft” sales techniques (offering substitutions for items that are out of stock or discontinued, and reminders of new or ongoing special deals, where appropriate), and ability to listen to and assess customers' needs and recommend products that would fulfill those needs Ability to remain calm and helpful when a customer is upset A passion for customer service and problem solving Ability to work autonomously and with the team without direct supervision or monitoring Strong sense of self-responsibility and self-awareness Knowledge and interest in the organic and natural industry is an asset SOME OF OUR PERKS AND BENEFITS: Focus on Wellness Extended Medical + Dental (company-paid premiums) EFAP immediately upon hire Paid sick time, including dependent sick time for those with children (up to 13 days per year) Fitness Subsidy Discounted grocery and wellness products and lunch program On-site gym Dog friendly office Scent-free environment Focus on our Community Partnerships with Quest Food Exchange and The Downtown Eastside Women’s Centre Paid volunteer hours Focus on the Environment Transit Subsidy – up to 100% Cycling Subsidy Indoor bike lock up area Recycling + Composting Program Partnerships with Urban Impact and Alvéole, an urban beekeeping company SUBMISSION DEADLINE:September 15, 2023 If you, or anyone you know, is interested, please send a resume with cover letter to: hr@horizondistributors.com(please note on subject line: “CSR Sep 2023”). Horizon is an equal opportunity employer valuing diversity in the workplace. All qualified applicants will receive consideration for employment without regard to race, ancestry, colour, place of origin, gender, gender identity, age, religion, disability, family status, sexual orientation, or any other status or characteristic protected by law. If you require assistance or a reasonable accommodation in any aspect of the application process, please contact the People + Culture department. Note: We thank everyone for their interest but only those advancing to the next stage of the recruitment process will be contacted. Only Lower Mainland candidates considered.About Horizon Grocery + Wellness:Horizon Grocery + Wellness is a leading distributor of organic and natural foods, household products, supplements, and natural personal care items, servicing thousands of locations across Western Canada. We thrive as a market leader via effective partnerships and primary relationships with our valued retailers and suppliers. We are a privately owned, 100% Canadian company with a 150,000 square foot Grocery facility and a 40,000 square foot Wellness facility located in south Burnaby, BC. Horizon Grocery + Wellness is the cornerstone of the Horizon Group, a privately held, Canadian-owned group of companies with distribution facilities servicing over 6000 customers across Canada.\",\n            \"location\": \"Burnaby, BC\"\n        },\n        {\n            \"id\": \"BBCF4B2A93A45FF84E2E2EBB653EA3BE\",\n            \"cityName\": \"The ups store in Dollard-Des Ormeaux, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b416e0189ffc54f2\",\n            \"jobName\": \"Store Associate/Customer Service\",\n            \"companyName\": \"The Ups Store\",\n            \"rowSalary\": \"$14.50–$16.50 an hour\",\n            \"date\": 1694391421699,\n            \"dateOfPosted\": 1665475500070,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4895636,\n                    \"lon\": -73.8205567\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dollard-Des Ormeaux\",\n                \"formattedAddress\": \"Dollard-Des Ormeaux, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dollard-Des Ormeaux\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a hard working individual who has great customer service, positive attitude and a willingness to learn.Deliver exceptional customer service to build trust and provide convenience to the customer.Responsibilities: - Provide knowledgeable business solutions including packaging, shipping and printing- Receive and distribute parcels to mailbox holders and other recipients- Operate store equipment such as Printer/Scanner, Fax machine and more- Utilize computer software to present customer with shipping options and be able to manage outlook emails- Following and understanding standard packaging guidelines; accurately asses materials for shipping- Engage with clients in a friendly and professional manner while listening to their concernsQualifications:- Computer skills (Microsoft Office Apps and others)- Customer Service with strong verbal/written skills- Good sense of multi task- Organize and maintain organized environment- Language : Fluent verbally and written in English and French | (bilingual)Job Types: Full-time, Part-time, PermanentPart-time hours: 25-40 per weekSalary: $14.50-$16.50 per hourBenefits:On-site parkingPaid time offStore discountSchedule:8 hour shiftMonday to FridayOvertimeSupplemental pay types:Overtime pay\",\n            \"location\": \"Dollard-Des Ormeaux, QC\"\n        },\n        {\n            \"id\": \"4AEB2449D48AD2220C1B264E2D2773C2\",\n            \"cityName\": \"Renfrew, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1416564c231b24cb\",\n            \"jobName\": \"Clerk, Customer Service\",\n            \"companyName\": \"George Jackson Toyota\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694391346136,\n            \"dateOfPosted\": 1692668759600,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4749199,\n                    \"lon\": -76.6877186\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Renfrew\",\n                \"formattedAddress\": \"Renfrew, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Renfrew County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Renfrew\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 3 months to less than 1 yearExperience: 1 year to less than 2 yearsor equivalent experience Work setting Business sector Tasks Access and process information Answer inquiries and provide information to customers Perform general office duties Computer and technology knowledge Database software Internet Security and safety Driver's validity licence check Driving record check (abstract) Transportation/travel information Valid driver's licence Work conditions and physical capabilities Attention to detail Fast-paced environment Tight deadlines Work under pressure Personal suitability Punctuality Client focus Organized Reliability Team player Screening questions Are you currently legally able to work in Canada? Do you have previous experience in this field of employment? Health benefits Dental plan Health care plan Long term benefits Group insurance benefits Life insuranceWork Term: PermanentWork Language: EnglishHours: 37.5 to 44 hours per week\",\n            \"location\": \"Renfrew, ON\"\n        },\n        {\n            \"id\": \"A953E6F6168665279A4243FBE8070DAB\",\n            \"cityName\": \"1 Warman Rd, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2bfc21755dd9a506\",\n            \"jobName\": \"Customer Service Specialist - 1 Warman Road\",\n            \"companyName\": \"Future Transfer Co. Inc.\",\n            \"rowSalary\": \"$22–$25 an hour\",\n            \"date\": 1694390420054,\n            \"dateOfPosted\": 1694390419872,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8908479,\n                    \"lon\": -97.07216249999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Warman Rd, Winnipeg, MB R2J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service SpecialistLocation: 1 Warman Road, Winnipeg, MBOur People Can Tell the Future. Maybe You Can Too.Who are we?We are a warehousing and transfer company that brings pride and excellence to the market every day. We bring innovation that’s authentic and measurable as well as bringing leadership to community priorities in equal unison with our corporate priorities. We recognize our core strength is ingenuity, which is a human resource that renews through encouragement and development. We are twenty-first century accomplishment leaders; inside, safety side and market side.ISO certified; Future Transfer is an essential network of specialist services for an agriculture sector with sophisticated challenges. Strategic national warehousing, next level logistics, tolerance specific custom formulation, packaging, transloading, and a fully inclusive company-wide think-tank of empowered solution achievers.Future Transfer is a growing story; join us and tell your part.Why work for us?Competitive wagesPremium health benefitsPremium RRSP & matched contributions planEmployee Assistance ProgramCompany supplied uniforms, PPE & safety shoesPaid vacationCompany lunchesCompany promotional items throughout the yearShort term disability and long-term disabilityContinued growth and development of our people & our businessWho are we searching for?We are looking for a Customer Service Specialist to join our growing Future Transfer team.Job Duties:Create and maintain strong relationship with customersEnter all production, transfers, and bulk receipts into appropriate computer systems and spreadsheets as required by customersField customer orders, inquiries, and serviceHelp manage warehouse inventory through customer demandMaintain accuracy of records through daily, weekly and monthly reportingPerform clerical duties, such as filing, record keeping and schedulingAssist in solving inventory, delivery, and order discrepanciesMaintain up to date customer filesCreate Bills of Lading and prepare required shipping documentationAssist in warehouse operations, when requiredProviding the appropriate paperwork to customersOther related duties as required or assignedRequired Knowledge:Strong computer skills and ability to operate within Microsoft Office suite of products, and other computer systemsStrong attention to detailProven ability to manage multiple tasks and tight timelines in a professional mannerEffective communication skills to interact with external customers and individuals at all levels of the organizationAble to work efficiently as part of the team as well as independentlyAbility to use general office equipmentStrong work ethic and positive team attitudeRelated manufacturing/industrial customer service/shipping/receiving work experience of 3 – 5 years requiredWorking Conditions:Manual dexterity required to use desktop computer and peripheralsOvertime as requiredLong periods of sitting, some standingVariable environment as may be required to spend time in the warehouse when resolving issuesSafety is our priority, both the starting point and foundation for all aspects of our business operations. Safe transport and storage of products, safe operational practices and safe working conditions enable us to protect our employees, customers, suppliers, and the environment.To read more about our successes and what we do, please visit: www.futuretransfer.comWe thank you for your interest in careers at Future Transfer.Click apply to submit your resume!Job Types: Full-time, PermanentSalary: $22.00-$25.00 per hourBenefits:Dental careDisability insuranceEmployee assistance programExtended health careLife insurancePaid time offRRSP matchVision careSchedule:Day shiftSupplemental pay types:Overtime payExperience:manufacturing customer service/shipping/receiving: 3 years (required)Work Location: In person\",\n            \"location\": \"Warman Rd, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"EEC09322B0639306A706C579388CEBEB\",\n            \"cityName\": \"1547 Merivale Road, Nepean, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d98d3a28b9d8384d\",\n            \"jobName\": \"Inbound Customer Service Representative (Bilingual Required)\",\n            \"companyName\": \"Costco Wholesale Canada\",\n            \"rowSalary\": \"From $18.50 an hour\",\n            \"date\": 1694390167986,\n            \"dateOfPosted\": 1693531126246,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.3403612,\n                    \"lon\": -75.72727069999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Merivale Rd, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Costco Wholesale, we’re dedicated to providing our members with the highest level of customer service. We are looking to add dynamic and personable individuals to our growing team of inbound contact centre agents.Look forward to:A fun, fast-paced environmentThe opportunity to help others by offering excellent member serviceContinued coaching/training to help you reach goalsPersonalized mentorshipWe’re looking for candidates who are:Customer-service minded – Contact centre agents are our members’ first point of contact.Flexible – Scheduling to cover our hours of operation and changing priorities.Tech-savvy – We use a variety of computer applications and resources to research each member’s inquiry. Proficiency in online ordering, Gmail and Google Drive are assets.Patient – Our members deserve the best service.Organized – To determine the best solution.Able to communicate effectively – Active listening is key and written responses must be clear.Daily tasks:Responds to member inquiries in a courteous and professional manner by phone and email for Costco.ca deliveries. Helps members with online ordering through the website as required. Areas of inquiry include website navigation, order placement and delivery follow-up.Keys notes to computer membership record to document action or conversation. Keys notes to phone system log to classify call resolution.Operates as a liaison between members, vendors, buying and operations employees.Responds to member concerns using problem-solving skills, tact and discretion.Escalates calls to supervisor.Processes a high volume of emails and incoming phone calls.Meets department daily in-bound contact goals.Confirms member addresses, phone numbers, items purchased and quantities.Maintains the quality and consistency of written and oral communications.Languages:Candidates must be able to communicate in English (oral and written).Bilingualism is required.Job Types: Part-time, SeasonalContract length: 6 monthsPart-time hours: 0-40 per weekSalary: From $18.50 per hourBenefits:Casual dressDental careEmployee assistance programExtended health careLife insuranceOn-site parkingPaid time offRRSP matchSchedule:Day shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payAbility to commute/relocate:Nepean, ON K2G 4V3: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Language:Fluent English and French (required)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Merivale Road, Ottawa, ON\"\n        },\n        {\n            \"id\": \"63714B54BA6541A8D90079F72D3CC5F3\",\n            \"cityName\": \"3045 Baseline Road, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fce2a438d0e9bf2f\",\n            \"jobName\": \"Call Center Agent - Part-Time\",\n            \"companyName\": \"Queensway Carleton Hospital\",\n            \"rowSalary\": \"$24.18 an hour\",\n            \"date\": 1694390135913,\n            \"dateOfPosted\": 1693545766378,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.3530553,\n                    \"lon\": -75.7594363\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Baseline Rd, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 25.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    25.0\n                ],\n                \"range\": {\n                    \"gte\": 25.0,\n                    \"gt\": null,\n                    \"lte\": 25.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"General Posting InformationPOSITION: Call Centre Agent DEPARTMENT: Call Centre CONDITIONS: Part-time (0.40 FTE) HOURS: Approximately 30.0 Bi-weekly Hours SHIFTS: Days / Evenings / Nights / Weekends  7.5. hours & 11.25 hours per shift (subject to change) WAGE RANGE: Scale Minimum Maximum  NONU $24.18/hr $29.01/hr RESPONSIBILITIES:Answering and redirecting telephone calls and visitors at the main reception counterOperating ancillary communication systems in order to process emergency codesRespondig to all alarma and contacting the appropriate parties in case of emergencyPerforming clerical duties including but not limited to: preparing envelopes, updating Critical, keeping an updated tracking list of loaner pagersPaging staff and physicians and maintaining accurate paging logsProcessing all emergency code proceduresDemonstrate QCH values, collaboration, accountability, innovation, respect Please note: The 24 hour per day operation is divided into shifts and is of \\\"constantly interrupted\\\" nature, ofter requiring working long periods in a seated position. REQUIREMENTS:Grade 12 education6 months experience using a swtichboardKnowledge of medical terminologyWorking knowledge of MS Word, Excel, Microsoft Outlook and MeditechMust be familiar with all Hosptial Policies and Procedures and be capable of handling all phases of Hospital communcationsAbility to deal calmly with emergency situationsExcellent interpersonal skills to be able to communicate effectively in both oral and written format with Call Centre Staff, Hospital Staff, physicians, nursing and paramedical staff on matters relating to Call CentrePlease note that according to the Ontario Health and Queensway Carleton Hospital Vaccination Policy, all applicants must be fully vaccinated unless they can provide the proof of a valid medical contraindication or exemption on the basis of protected grounds under the Ontario Human Rights Code in order to be considered for any staff or volunteer opportunities. Upon hiring, applicants must provide the proof of either government issued documentation proving they have been fully vaccinated, or present supporting documentation of a valid medical contraindication or exemption under Ontario Human Rights Code.Thank you for your continued interest in Queensway Carleton Hospital. We deeply value and celebrate the principles of equity, diversity, inclusion, and belonging, as they are integral to the enrichment of our work environment. We believe that by fostering an inclusive and diverse community, we can achieve our mission of providing exceptional healthcare services to all individuals with compassion and respect. We encourage applicants from all backgrounds to apply. We welcome those who would contribute to the further diversification of our organization including, but not limited to women, racial or ethnic minorities, First Nations, Inuit, and Métis peoples, persons with Disabilities, and 2SLGBTQI+ communities. At Queensway Carleton Hospital, we are committed to ensuring accessibility and accommodating the needs of all candidates throughout the entire selection process. Our dedicated recruitment team is readily available to assist individuals with any inquiries or concerns regarding accessibility and accommodations at any stage of our recruitment process. We invite you to reach out and let us know how we can best support you. We look forward to welcoming diverse talent into our team and continuing to make a positive impact in the lives of our patients and the communities we serve.\",\n            \"location\": \"Baseline Rd, Ottawa, ON\"\n        },\n        {\n            \"id\": \"603B86F50F4D5D464D9E5DD7D9F9B3BA\",\n            \"cityName\": \"26557 Civic Centre Rd, Keswick, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e99469ec3464b6c1\",\n            \"jobName\": \"Roc Customer Service Representative\",\n            \"companyName\": \"Town Of Georgina\",\n            \"rowSalary\": \"$16.55 an hour\",\n            \"date\": 1694390124359,\n            \"dateOfPosted\": 1693545758533,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2985236,\n                    \"lon\": -79.4389406\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Georgina\",\n                \"formattedAddress\": \"Civic Centre Rd, Georgina, ON L0E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Georgina\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ROC Customer Service Representative (Posting #2023.99S) Department: Community Services Division: Recreation Services Location: The ROC Status: Seasonal (December 4, 2023 – April 5, 2024) Hours of Work: 4 – 25 hours per week (4 – 8 hours per day) Number of Positions: 5 – 10 Hourly Wage: $16.55 per hour Training Rate: $16.55 per hour Date Posted: August 15, 2023 Date Closing: October 15, 2023 Come work with us! Employment with the Town of Georgina offers an opportunity to make a positive difference in our community. We are a progressive, forward-thinking organization focused on continuous improvement, innovation and providing exceptional customer service. We offer a collaborative team environment and an excellent place to take charge of your career.Position Purpose Responsible for ticket sales, rentals, cash handling and customer service. For full details, please see attached job description.Minimum QualificationsKnowledge of all ticketing and sales options;Excellent customer service skills to deal effectively with the general public;Strong organizational skills;Responsible, courteous, good communication skills;Effective conflict resolution, problem solving and critical thinking skills; For full details, please see attached job description How to apply Qualified applicants are invited to submit a resume and cover letter, identifying the Job Title and Job ID#. Please apply by visiting the www.georgina.ca/careers no later than 11:59 pm on the closing date. The assessment process may include a practical test and/or interview. Committed to diversity and a barrier-free environment The Town of Georgina is an equal opportunity employer committed to inclusive, barrier-free recruitment and selection processes and work environments. We encourage applications from people with disabilities and will accommodate the needs of applicants under the Ontario Human Rights Code and the Accessibility for Ontarians with Disabilities Act (AODA) throughout all stages of the recruitment and selection process. Please advise the Human Resources Team if you require an accommodation(s) and we will work with you to meet your needs throughout any stage of the process. Please be advised that this information will be treated in a confidential manner. We thank all candidates for their interest, however only those being considered will be contacted. Personal information collected will be used in accordance with the Municipal Freedom of Information and Protection of Privacy Act for the purpose of candidate selection. Further information concerning the collection of personal information should be directed to the Human Resources Manager, Town of Georgina, 26557 Civic Centre Road, Keswick, ON L4P 3G1 (905) 476-4301 JOB DESCRIPTION Title: ROC Customer Service Representative Position #: SE6 Department: Community Services Division: Recreation Services Reports To: Recreation Services Supervisor Direct Reports: None Date Created: September 12, 2011 Date Amended: August 10, 2023 Employee Group: Seasonal Position Summary Responsible for ticket sales, rentals, cash handling and customer service. ResponsibilitiesDemonstrates a high level of customer service and provides this service on the front-line of operation and does so in an efficient, courteous and respectful manner;Daily operation of the ticketing office, including lift ticket, season pass, lesson and helmet rental sales & inquires;Supports guests with proper helmet fittings and ensures that all helmets are returned and inspected for future use.the accurate completion of liability waiver, helmet and locker rental forms as well as securing and returning of security/damage deposit;Processes all point of sale purchases, and handles cash, credit and debit transactions in an accurate manner and balances daily sales to align with computer reports;Follows all specified cash handling procedures including; float reporting, cash reconciliation, and cash depositing.Answers all in person and telephone inquiries and responds to voicemails in a timely manner;Assists with cafeteria attendant duties as required (see ROC Cafeteria Attendant job description for further details);Participate in the Town’s Health and Safety Program and follow safety practices in work methods and procedures; observes and complies with all relevant Health & Safety regulations.Immediately report all, concerns, suspicious occurrences and hazardous conditions to the Recreation Services Supervisor or designate. The above statements reflect the general details considered necessary to describe the principal functions and duties of the position and will not be construed as a detailed job description of the work requirements that may be inherent in the job. Skill/Knowledge RequirementsKnowledge of all ticketing and sales options;Experience working in a recreational and/or customer service setting considered an asset;Knowledge of the ActiveNET and Fareharbor software systems considered an asset;Responsible, courteous, good communication skills;Ability to work independently without close supervision;Effective conflict resolution, problem solving and critical thinking skills;Excellent customer service skills to deal effectively with the general public;Must be available to work flexible hours including daytime, evenings, weekends and holidays;Previous cash handling experience with accurate cash handling skills;Strong organizational skills;\",\n            \"location\": \"Civic Centre Rd, Georgina, ON\"\n        },\n        {\n            \"id\": \"1C302E2B5A6A0FFE7C93BB56F272CE5D\",\n            \"cityName\": \"19 Norm Newman Dr, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1428735f380e16cd\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Russell Lake Animal Hospital\",\n            \"rowSalary\": \"From $23.50 an hour\",\n            \"date\": 1694387711601,\n            \"dateOfPosted\": 1694387710776,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6696568,\n                    \"lon\": -63.5283615\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Norm Newman Dr, Dartmouth, NS B2W, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"As a privately owned hospital, we strongly believe in investing in our employees. We provide opportunities for professional growth and ensure that their whole wellbeing is taken care of by offering a living wage and benefits.Who are we looking for?We are looking for someone that is outgoing and has strong client relations skills. Someone who is committed to excellence in their work habits, in pursuing knowledge and education and that is motivated to help us grow our hospital.Qualifications:– Customer Service: 2+ year (required)– Veterinary Medicine Experience: 2+ years (preferred)– Administrative Experience: 2+ year (preferred)– Experience and LSHR silver certification are an asset but not required.– Education or experience in related fields is also considered an asset.– A positive attitude, the ability to stay calm, and critical thinking skills are required.What does a Client Service Representative do?Our Client Care Reps are the face of our hospital as they are the first point and last point of contact for our clients. Their role is vital to the success of our hospital as they set the tone for client interactions and conversations.– Answer phone calls– Schedule appointments– Process payment– File documents electronically– Stock shelves– Additional administrative & housekeeping dutiesWhat we offer:– Continuing Education opportunities in Hospital and outside– Uniform Shirts– 2 Weeks Paid Vacation– Staff Discounts– Health BenefitsStart Date: ASAPApplications without a cover letter or that do not complete the skills tests will not be considered.Job Types: Full-time, PermanentSalary: From $23.50 per hourBenefits:Dental careExtended health carePaid time offVision careCOVID-19 considerations:We require staff to be vaccinated for Covid-19.Our Covid Protocols can be found here: https://russelllakevet.com/covid-19-protocols/Ability to commute/relocate:Dartmouth, NS: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 3 years (required)Veterinary Medicine: 2 years (preferred)Administrative: 2 years (preferred)Work Location: In person\",\n            \"location\": \"Norm Newman Dr, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"C6D43F1FFB85D332A5798D513FE15557\",\n            \"cityName\": \"404 May St N, Thunder Bay, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0b00c7cab4b9eb4f\",\n            \"jobName\": \"Customer Service/Back Room Associate (Part-Time)\",\n            \"companyName\": \"Community Clothing Assistance\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694387708823,\n            \"dateOfPosted\": 1690387858486,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.39201449999999,\n                    \"lon\": -89.2455198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Thunder Bay\",\n                \"formattedAddress\": \"May St N, Thunder Bay, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Thunder Bay District\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Thunder Bay\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Part-Time leading to Full-Time Opportunity: Community Clothing Assistance is looking for a Customer Service Associate. Successful candidates will have previous transferable experience. Experience dealing with the public, conflict resolution, taking initiative, and problem-solving would be considered assets as well.Do you value integrity and teamwork? Are you willing to grow with a local charity? We welcome qualified candidates to submit their applications to this advertisement.Application Deadline: As soon as possibleOPEN TO THE PUBLICLocation: 404 N May StreetThunder Bay, ON P7C 3R5Hours: Monday - Friday 11 am to 5 pmSaturday 12 pm to 5 pmSunday ClosedPhone: 474 - 3583Website: https://clothingassistance.com/main_website/#thunderbaynowhiring#jobsthunderbay#thunderbaychairty#communityclothingassistance#thunderbaysmallbusiness#thunderbay#thunderbaybusiness#wearehiringJob Type: Part-timeSalary: From $15.50 per hourSchedule:8 hour shiftDay shiftMonday to FridayWork Location: In person\",\n            \"location\": \"May St N, Thunder Bay, ON\"\n        },\n        {\n            \"id\": \"532A5406154F8F40D3FE7D80823FA386\",\n            \"cityName\": \"101-11920 100 St, Grande Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4d503cdf925b03db\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Bullets & Broadheads Shooting Center\",\n            \"rowSalary\": \"$15–$20 an hour\",\n            \"date\": 1694386317612,\n            \"dateOfPosted\": 1694386317446,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.1745974,\n                    \"lon\": -118.8025315\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grande Prairie\",\n                \"formattedAddress\": \"10404 102 St, Grande Prairie, AB T8V 2W3, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grande Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our customer service role involves providing assistance, support, and guidance to customers seeking firearms, ammunition, archery, and related accessories. The primary objective of this role is to ensure that customers have a positive and safe experience while adhering to all relevant laws and regulations surrounding firearms sales.Key responsibilities of a customer service representative in a gun shop will include:Product Knowledge: Acquiring a comprehensive understanding of the various firearms, ammunition, and accessories available for sale. This includes being up-to-date on the latest models, features, and safety measures.Customer Assistance: Engaging with customers in a friendly and approachable manner, answering their questions, and helping them find products that best suit their needs and preferences.Safety Education: Emphasizing the importance of firearm safety and responsible ownership to customers, including proper storage, handling, and use.Compliance: Ensuring strict adherence to all federal, provincial, and local laws and regulations governing the sale of firearms. This includes conducting background checks and verifying customers' eligibility to purchase firearms.Sales and Transactions: Assisting customers with the purchasing process, guiding them through the necessary paperwork, and ensuring all required documentation is completed accurately.Range Services: If the gun shop has an associated shooting range, customer service representatives may provide information on range memberships, scheduling shooting sessions, and offering basic shooting tips.Troubleshooting: Addressing any issues or concerns customers may have with their purchased firearms or accessories and assisting them with resolving problems.Inventory Management: Keeping track of stock levels, ensuring products are properly displayed, and reordering merchandise as needed.Customer Relations: Building strong relationships with customers, fostering a welcoming and inclusive atmosphere in the store, and addressing any customer feedback or complaints.Continuous Learning: Staying informed about industry trends, attending training sessions, and participating in professional development opportunities to enhance product knowledge and customer service skills.In this role, exceptional interpersonal skills, knowledge of firearms, and strict adherence to safety and legal regulations are essential to providing excellent customer service while promoting responsible firearm ownership.Job Type: Full-timeSalary: $15.00-$20.00 per hourBenefits:Casual dressCompany eventsDental careExtended health careFlexible scheduleLife insuranceOn-site parkingStore discountFlexible Language Requirement:French not requiredSchedule:Monday to FridayWeekends as neededAbility to commute/relocate:Grande Prairie, AB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Licence/Certification:RPAL (preferred)Shift availability:Day Shift (preferred)Work Location: In personApplication deadline: 2023-09-17Expected start date: 2023-09-20\",\n            \"location\": \"St, Grande Prairie, AB\"\n        },\n        {\n            \"id\": \"D62E0816C0CF1F7D6C259A38D41B38CB\",\n            \"cityName\": \"3812 7 St SE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ae348ab8fefb77cf\",\n            \"jobName\": \"Customer Service Labour\",\n            \"companyName\": \"1-800-Got-Junk?\",\n            \"rowSalary\": \"$22–$24 an hour\",\n            \"date\": 1694386127584,\n            \"dateOfPosted\": 1694386127420,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.96843759999999,\n                    \"lon\": -113.9758168\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"40 St SE, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ZAG Community of Businesses is the parent company to seven 1-800-GOT-JUNK? franchises across North America, headquartered in Calgary, AB.Hiring Immediately! Apply today and start this or next week.1-800-GOT-JUNK?, our motto is “Want More, Work Happy”. We hire happy people that enjoy our awesome team environment, like the variety of the work we do, and are excited to grow their skills to become more. We offer what very few companies can.Truck Team Members - Driver, Labor, & Customer ServiceHiring immediately for: Full-Time & Part-Time (weekday & weekend shifts available)Pay: $17/hr base + tips + bonuses (avg $22 - $24/hr all in with base pay, tips, bonuses, and other incentives).Availability: Part-Time & Full-Time (employees choice) We operate Mon-Sun starting at 7:30am. For Full-Time, we offer 4 days on, 3 days offLocation: Office based in Calgary - SE. Our trucks are available for pickup city-wide!We're a fun and fast-paced operation that helps people in our community get rid of unwanted items, responsibly. And, we do it like no one else with our professional, on-time service, clean shiny trucks and friendly uniformed team.With 1-800-GOT-JUNK? each day is different. Here’s what you’ll be doing:Alongside another Truck Team Member, you'll operate the company vehicle (no special driver's license required) on assigned service routes for the dayProviding excellent customer service when you're onsite to remove the items or give them an estimate that they've requested and educating them on our servicesRetrieving, transportation, and disposal of unwanted items, responsiblyQualifications & Requirements:You’re 19+ years of age (required for insurance purposes)You have a great attitude, are reliable, and hardworkingA valid full class 5 driver’s license & good driving recordPhysically able to lift/carry 50 pounds repeatedly over a full shiftPrevious experience in general labor, customer service, driving, and/or sales is a plus, but isn’t required - we train happy, hardworking individuals.Successful applicants will hear from us within 2 business days. We conduct onsite or remote interviews at your earliest convenience and extend job offers within 24-hours of successful interviews. Apply today - we move fast with great people!Thank you for your interest in 1-800-GOT-JUNK?\",\n            \"location\": \"St SE, Calgary, AB\"\n        },\n        {\n            \"id\": \"09F41E9301C4D806BA4DEB68DE1E2140\",\n            \"cityName\": \"Outpost Mini Donut Company in Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d6a9093a4ac2d41d\",\n            \"jobName\": \"Customer Service RepresentAtive/Team Member At Outpost Mini Donut Company\",\n            \"companyName\": \"Outpost Mini Donut Company\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694386100718,\n            \"dateOfPosted\": 1686882458872,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1665898,\n                    \"lon\": -123.133569\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Richmond, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for an enthusiastic and energetic part-time team member to join us. If you have proven customer service experience and are interested in working in a fun and relaxed setting, we would like to hear from you. The position works well for a post-secondary or high school student looking for part-time hours.Outpost Mini Donut Company is an independently owned mini donut shop located in Steveston, BC. The shop benefits from walk through traffic, corporate and personal orders, and is a go-to destination for gourmet mini donuts.The ideal candidate must be able to work in a fast paced environment and provide exceptional customer service. You will be required to work both independently and in a team environment operating all facets of the store, including but not limited to:-opening/closing of the store (independently)-operating mini donut machine and decorating donuts-operating POS system-serving customers with exceptional customer service-cleaning of shopAs the workflow can be fast paced, you must be able to multi-task and prioritize your duties, at times by yourself.Applicants can except onsite training as well as a flexible work schedule. The schedule is prepared weeks in advance and set work days are often assigned depending on availability.Preference will be given to local Richmond/Steveston residents who are familiar with the area and local businesses. Previous customer service experience in the food industry is also an asset.Please provide your weekday availability when applying. At the moment, we are only looking for applicants that will continue to have availability into the next school year. Thank you!Job Type: Part-timePart-time hours: 10-12 per weekSalary: $16.75 per hourBenefits:Casual dressSchedule:Day shiftMonday to FridayWeekend availabilitySupplemental pay types:TipsApplication question(s):Please describe your previous work experience as it relates to this job.Are you located in Richmond/Steveston?What is your availability this summer and fall/winter season?Work Location: In person\",\n            \"location\": \"Richmond, BC\"\n        },\n        {\n            \"id\": \"D364365BB0021601460E345DAE467844\",\n            \"cityName\": \"REPUBLIC PACKAGING CORP in Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4e78eb96a3622f84\",\n            \"jobName\": \"Customer Service Representative Ii\",\n            \"companyName\": \"Republic Packaging Corp\",\n            \"rowSalary\": \"From $60,000 a year\",\n            \"date\": 1694386028312,\n            \"dateOfPosted\": 1694386028109,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 60000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    60000.0\n                ],\n                \"range\": {\n                    \"gte\": 60000.0,\n                    \"gt\": null,\n                    \"lte\": 60000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OverviewThe Customer Service Representative II is responsible for interacting with the company's customers and addressing inquiries, requests, resolving complaints and processing customer orders. A part of site Operations, the role is responsible for ensuring that customers receive a high level of attention and that any customer related gaps are escalated and/or corrected.ResponsibilitiesPoint of escalation for key accounts and requirements outside of existing parameters.Liaises with production and upper management on critical issues.Resource for sales and operations when considering new, large opportunities.Interacts with customers via telephone, email, or in person to provide support and information on products or services.Collects and enters orders for new or additional products or services.Builds rapport with customers and works to ensure they receive excellent service.Updates customer information and requirements as necessary.Uses company ERP system to retrieve necessary customer information, inventory information, and purchase order status.Provides back-up support in other functional areas.Fields customer questions and complaints - when the issue is beyond the representative's knowledge, escalates to the appropriate individual.Ensures that appropriate actions are taken to resolve customers' problems and concerns.Maintains customer accounts and records of customer interactions with details of inquiries, complaints, or comments.Performs regular reviews of customer consumption against min/max levels and engages appropriate individuals and processes when adjustments are needed.Performs other related duties as assigned.Requirements4-year college degree in Business or related area.5+ years of experience in an advanced customer service role.Experience in the packaging industry a significant plus.Excellent organizational skills and attention to detail.Excellent communication and interpersonal skills.Service-oriented and able to resolve customer grievances.Ability to maintain good customer relations.Excellent computer skills with an ability and willingness to learn and adapt to ERP systems and processes.Job Type: Full-timeSalary: From $60,000.00 per yearBenefits:Dental careSchedule:Monday to FridayMorning shiftWeekends as neededAbility to commute/relocate:Mississauga, ON: Reliably commute or planning to relocate before starting work (Required)Education:Bachelor's (Required)Work Location: In person\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"1FD7FF2F070B36587980AC9EA6096F5E\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=48384c8b0030d513\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Henry & Debbie's Coffee @ Calgary Farmers' Market South\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694385184711,\n            \"dateOfPosted\": 1693536497790,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are currently looking for an enthusiastic Barista / Customer Service Assistant to join us at our Calgary Farmers’ Market SOUTH location. If you are passionate about coffee and enjoy working with people in a fun environment, please send us your resume.Barista experience although desirable, not required.At this time we are looking for baristas interested in working BOTH weekend days (Saturdays and Sundays).Calgary Farmers' Market SOUTH @ 510 77 Ave SE.Job Type: Part-timeSalary: From $18.00 per hourWork Location: In person\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"34DE1EDD3767EC67A0A04A00650A44DF\",\n            \"cityName\": \"Milton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=195101a147927be8\",\n            \"jobName\": \"Financial Customer Service Representative\",\n            \"companyName\": \"Pay2day\",\n            \"rowSalary\": \"$16.50–$18.00 an hour\",\n            \"date\": 1694385001358,\n            \"dateOfPosted\": 1690301765306,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5182991,\n                    \"lon\": -79.8774042\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Milton\",\n                \"formattedAddress\": \"Milton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Milton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you interested in growth, development, and leadership? If you are, join our team because you are exactly who we’re looking for! Pay2Day is a rapidly growing company with endless opportunities for career advancement.Additional characteristics of our team members include:Customer focused; Check us out on Google and Trust Pilot. Our customers love us, and we LOVE them! We do what’s right for our clients when it counts, not what’s easy.Team players; We all succeed together and want the best for everyone on our team.Goal oriented; We care about our results and understand that the performance of our company is a reflection of us.Outgoing; Team members participate in community events, talk to potential clients, and regularly perform local marketing tasks.Open to feedback; Team members at all levels have an open door policy. Feedback makes us stronger as individuals and employees.Hard working; Our team members will do whatever it takes and more to get the job done. Our high performing team actively looks for solutions. We only focus on the barriers to understand how to break them down.Flexibility; Our Stores are open 7 days a week with varying hours. Our team members need to be available for varying shifts throughout the week.Innovative; Our team is full of tech savvy, creative people who think outside the box, will communicate new ideas and embrace change.Detail Oriented; Both internal and external clients matter so we take care in how and what we do in order to continually exceed expectations.If this sounds like a fit for you, we cannot wait to meet you!Your responsibilities will also include:Cash handling/teller responsibilitiesOpening/closing the branchPerforming daily calls to remind clients of payment arrangementsReviewing applicants/completing financial risk assessment to determine approvalsResponding to client inquiries/Information requests by both in store and virtual clientsCollaborate with various departments to maximize profit while focusing on exceptional customer service and salesFocusing on client retentionMarketing/growing the businessCandidate must have a broad availability as this is a 7 day a week operation. Must be available to work days, evenings and weekends to meet our client’s business needs.Pay2Day welcomes and encourages applications from people with disabilities. Accommodations are available upon request for candidates taking part in all aspects of the selection process.For more information about our company, visit www.pay2day.ca and check out our locations!Job Types: Full-time, PermanentSalary: $16.50-$18.00 per hourFlexible Language Requirement:English not requiredSchedule:8 hour shiftSupplemental pay types:Overtime payEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Milton, ON\"\n        },\n        {\n            \"id\": \"11EF271FCE7D1CAB92482E4F30A0E721\",\n            \"cityName\": \"19 City View Dr Unit 1, Etobicoke, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a5e52e413a5f28da\",\n            \"jobName\": \"Customer Service/Office Co-Ordinator\",\n            \"companyName\": \"Torbram Fire Protection\",\n            \"rowSalary\": \"$24–$30 an hour\",\n            \"date\": 1694384492719,\n            \"dateOfPosted\": 1693537593706,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6971555,\n                    \"lon\": -79.5857856\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"City View Dr, Toronto, ON M9W, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Join our team as a Office Co-Ordinator with Customer Service experience and play a vital role in providing exceptional service to our valued customers. As a Customer Service Representative, you will have the opportunity to interact with customers, analyze their needs, and provide them with the best solutions. We offer a supportive work environment, competitive compensation, and opportunities for growth within the company.If you are passionate about delivering outstanding customer service as well as co-ordinate with office staff and enjoy working in a fast-paced environment, we would love to hear from you. Apply today to join our team!You will be the first point of contact for our customers and maintain positive working relationships with our customers. In this role you can expect to perform a combination of the following:Duties and Responsibilities:Strong communication and problem-solving skills with a focus on delivering an excellent customer service experienceSelf-motivation, detail-orientation and the ability to multitask.Accurate typing and keyboard skills; comfort with PC/internet navigationCommunicate with customers through various channels to acknowledge and resolve complaints or respond promptly to inquiries.Maintain detailed product knowledge to effectively answer customer questions.Communicate and coordinate with colleagues in a positive manner.Keep records of customer interactions, transactions, comments, and complaints.Review, evaluate and implement new administrative proceduresEstablish work priorities and ensure procedures are followed and deadlines are metCarry out administrative activities of establishmentQualifications:Experienced in customer service/ call center ideally within a Fire Protection company.1-3 years’ experience in sprinklers/fire protection is preferred.Possesses exceptional communication skills, both verbal and written.Able to work with a high volume of calls and inquiries.Able to take direction and work in a team environment (professional, tactful, diplomatic)Excellent communication and interpersonal skills.Product knowledge of the Fire Protection industry is required.Strong knowledge and aptitude of Microsoft applications (i.e. Microsoft Office)Highly organizedand able to work under pressure.Strong verbal and written communication and people skills, including a proven ability to build relationshipsExcellent at planning and organizingKnowledge of building standards and requirements coupled with sound technical knowledgeKnowledge of local building code & NFPA requirements.Strong analytical, problem-solving & negotiation skillsFlexible and can adapt to change.Job Type: Full-timeSalary: $24.00-$30.00 per hourBenefits:Extended health careFlexible Language Requirement:French not requiredSchedule:Monday to FridayAbility to commute/relocate:Etobicoke, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 3 years (required)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In personApplication deadline: 2023-09-10Expected start date: 2023-09-11\",\n            \"location\": \"City View Dr, Toronto, ON\"\n        },\n        {\n            \"id\": \"6ED18B196E4C840CABD1EFA30F7E9C8B\",\n            \"cityName\": \"1300 Woolridge Street, Coquitlam, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d808381694fa0d4b\",\n            \"jobName\": \"Customer Service (Full-Time)\",\n            \"companyName\": \"Crash Crawly's/Ninja Tag\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694384157842,\n            \"dateOfPosted\": 1693535866176,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2329442,\n                    \"lon\": -122.8591801\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Coquitlam\",\n                \"formattedAddress\": \"Woolridge St, Coquitlam, BC V3K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Coquitlam\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Crash Crawly's is an indoor children's play centre and Ninja Tag is the latest gamified experience located in Coquitlam.We are looking for outgoing and energetic individuals who enjoy dealing with customers and children in a fast paced environment to join our team.Currently we are looking to hire for a FULL-TIME position.WORK DAYS will be MONDAY to FRIDAY. (*Work days are subject to change if required.)The daily shift will be an 8 HOUR SHIFT either 12pm-8pm or 2pm-10pm.Skills/Experience: operating a point-of-sale, handling cash, customer service and cleaning of the facility.Job Type: Full-timeSalary: $16.75 per hourSchedule:8 hour shiftEducation:Secondary School (preferred)Experience:Customer Support & Client Services Occupations: 1 year (preferred)Work Location: In personExpected start date: 2023-09-11\",\n            \"location\": \"Woolridge St, Coquitlam, BC\"\n        },\n        {\n            \"id\": \"073F2543B1829945850038577B9CF536\",\n            \"cityName\": \"875 St James St Unit 3, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=55f6af13b5243aa9\",\n            \"jobName\": \"Work At Home Customer Service RepresentAtive (French Bilingual) [Ats36-15]\",\n            \"companyName\": \"Intouchcx\",\n            \"rowSalary\": \"$16–$22 an hour\",\n            \"date\": 1694384091185,\n            \"dateOfPosted\": 1693523999751,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8878595,\n                    \"lon\": -97.202473\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"810 St James St Unit A, Winnipeg, MB R3G 3J7, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About IntouchCXIntouchCX is a global leader in customer experience management, digital engagement, and technology solutions. With over 20 years of experience, 18,000+ team members, and campuses around the globe, we obsess about our clients by providing remarkable customer experiences for the world’s most innovative brands.IntouchCX has been recognized as one of the Best Employers for Diversity in 2022 by Forbes and Statista Inc. This recognition comes after IntouchCX was named by Forbes as one of America’s Best Large Employers for 2022, and a Top Employer for New Grads.About the JobWe are currently hiring Inbound French Bilingual Work at Home Inbound Customer Service Representatives!Are you a problem solver? Do you like making meaningful connections with people? Are you interested in a rewarding career working with the world’s most exciting brands from the comfort and safety of your own home?Our Work at Home Customer Service Representatives (French Bilingual) are passionate about delighting customers by making every interaction an unforgettable experience - whether that’s through inbound calls, emails and/or chats. We want people with personality, who love making an impact with every customer interaction.We also want people with drive and ambition - people who want a career, not just a job. Punctuality, performance and positivity will set you up for success!Note: All applications, interviews, orientation, and training will be done virtually. IntouchCX will also provide all hardware and equipment necessary.Benefits of Working as a Work from Home Customer Service Representative (French Bilingual):Work from home!Flexible schedulesCompetitive salary - $16.00-$22.00 hr (varies depending on program)Industry-leading benefits - Health, Dental, VisionAmazing career growth opportunitiesWorking as a Work from Home Customer Service Representative (French Bilingual), You Will:Assist all customers through inbound calls, emails, and/or chats.Communicate a variety of information to the customer.Be an active listener and help resolve customer inquiries.Provide a meaningful and positive experience with every customer interaction.Learn and retain a thorough working knowledge of all existing and new products and services.Working as a Work from Home Customer Service Representative (French Bilingual), You Have:French Bilingual is a must!A high school diploma (or equivalent).6 months – 1 year of customer service experience.Great communication skills, both verbal and written.The ability to be consistently ready to work and on time as scheduled.Reliable internet speed and broadband connection.A secure area in the home to work from.The ability to work effectively in a work-at-home setting.The understanding that although this is a Work from Home position,you must be located in Winnipeg, MBAvailability: Full Time (some shifts may depend on availability).Ready to apply? Submit your application and one of our recruiters will reach out via email/phone/text to learn more about you and connect you to this exciting opportunity! If you provide your cell number, you agree to receive automatic recruiting texts from us at that number. Consent is not a condition of employment, and you can opt-out by replying STOP at any time. Message and data rates may apply.IntouchCX provides Equal Employment Opportunities in accordance with all provincial and federal laws. IntouchCX is committed to ensuring equality of opportunity in all aspects of employment and does not discriminate based on protected characteristics.IntouchCX is committed to accommodating persons with disabilities. If you need accommodation at any stage of the application process or want more information on our accommodation policies, please let us know.By signing this application, the applicant consents to IntouchCX collecting, using and retaining his/her personal information for purposes relating to the application process and if hired, the employment relationship.Any and all personal information collected is held in the strictest confidence and in accordance with all applicable Privacy Laws.Job Type: Full-timeSalary: $16.00-$22.00 per hourBenefits:Dental careVision careWork from homeSchedule:8 hour shiftMonday to FridayWeekends as neededWork Location: Hybrid remote in Winnipeg, MB R3G 3J7\",\n            \"location\": \"St James St Unit, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"6627AC96488F618A908D500DDADA572C\",\n            \"cityName\": \"Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=527db7ff82a5300a\",\n            \"jobName\": \"Customer Service Representative, Winnipeg\",\n            \"companyName\": \"Algaecal\",\n            \"rowSalary\": \"$48,000–$51,000 a year\",\n            \"date\": 1694381918633,\n            \"dateOfPosted\": 1693533411620,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.895136,\n                    \"lon\": -97.13837439999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Career with a heart! If you like helping people, and you want to feel supported in your work –– this is the opportunity for you. Every day, concerned people call the AlgaeCal helpline. They’ve just had bad news about their bones – and they’re scared they might break at any moment. But after talking with YOU, their fear will melt away. We call our Customer Care Representatives – Bone Health Consultants – and a typical day might include: Acting as a knowledge base for customers inquiries with respect to our products and their bone healthActively listening to customers and providing them with everything they need to make an informed decision about AlgaeCal.Supporting our customers through a variety of mediums (email, phone).Processing orders and returns for customers.Helping customers understand the results of their DEXA bone scans.Updating the records of customer interactions, processing customer accounts, and filing documents. So yes, you’ll need to enjoy administrative tasks to thrive in this role.But most importantly, setting our customers up for MAXIMUM SUCCESSThis opportunity is tailor-made for you if: You’re highly motivated to work at home. You’ve got a solid customer service background. You are passionate about natural health. You are an expert at building a rapport with customers and devoted to helping people find that aha moment – where they go from despair to hope. You’re organized. You’re humble. You think critically and creatively. You love to support and inspire others. You don’t just accept feedback – you WANT feedback, because you’re hungry to be better than you were yesterday. You’re also a brilliant multi-tasker who can effortlessly shift between a variety of priorities. So if you want to work with some of the nicest people you’ll ever meet. And you want to feel good about making a difference in the world –– all while learning about natural health and working in a well organized and supportive workplace –– send us your resume. And BTW… some of our senior executives started out in this role –– so if you’ve got the talent, there’s no telling where this job might take you :) To best service our clients, our Customer Success Centre is open 7 days per week. Work schedules are 5 consecutive days, which include 1 weekend day. Successful applicants must be willing to work a Saturday or a Sunday, each week. We won’t ask you to work both weekend days, but ya need to be available for one! We are currently hiring for the following shift rotations:Tuesday to Saturday, 9am - 5pm PST (Tues-Fri) / 8am - 4pm PST (Sat)Sunday to Thursday, 9am - 5pm PST (Mon-Thurs) / 8am - 4pm PST (Sun)Note: Shift times are subject to change and are dependent on biz unit requirements. Other Goodies$48,000 starting salary with the opportunity to increase rapidly as training targets are met.AlgaeCal Healthcare Plan (Premiums Covered 100%!), which you're eligible to sign up for after three months of employment.Monthly lunches with your co-workers, coffee catch ups, and an informal coaching programme.Supported professional development and continued learning through training and coaching.Flexible Stat Holidays with the option to bank days for later use.Once you’ve been with us for 3 months you’ll get $200 to spend on whatever you want.You should know this… AlgaeCal is a hyper-growth company, which means that the role is always evolving as the company grows. We are not a typical ‘transactional’ thinking company. We are a heart-based company where people come first. In order to be successful here, you will need to have this mindset, work smart, hard, and embrace everything that is offered. If this sounds like a position for you, please respond to this advertisement with your resume and cover letter. This is an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your carefully written cover letter. Applications submitted without a resume and cover letter will be unsuccessful. Please, read carefully: 1. Write a cover letter addressing: 1. Why you're the best Customer Service Representative for this role. Give quantifiable examples of related achievements. 2. Describe why you fit perfectly with our values. Read them here: http://shorturl.at/lptFT 3. What's the toughest challenge you’ve ever overcome in your life? How did you overcome it? 4. What are the last three books you’ve read? 5. What do you do for fun? 6. Explain what you’re doing now for a job:If you don’t have one, explain why.If you have one, explain why you’re looking elsewhere.2. Upload your cover letter and resume: 1. Ensure that your cover letter and resume are saved and sent as one file. Click the “Apply Now” button on this page and upload your (1) cover letter (2) resume. *Important* AlgaeCal isn’t a boring run-of-the-mill company. So some of the questions in your online application might feel out of the ordinary. These questions are an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your answers. For more information about us, please visit our website.\",\n            \"location\": \"Winnipeg, MB\"\n        },\n        {\n            \"id\": \"EC4FC92F50A32EB52CCE7B7B22848B2D\",\n            \"cityName\": \"Fire Grill House in Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8bc3e030c8c05e74\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Fire Grill House\",\n            \"rowSalary\": \"$15.50–$20.00 an hour\",\n            \"date\": 1694381742324,\n            \"dateOfPosted\": 1693535604108,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Join an exciting and thriving environment in a brand new up-coming restaurant that is about to launch in the ever-fun Westboro area. We are looking for an enthusiastic individual who loves customer service and is tech-savy (social media oriented)! We are here to have fun and service delicious food. If you want to work with a great team, apply today! Send your CV to us!Job Responsibilities:- Provide exceptional customer service by greeting and assisting customers in a friendly and professional manner- Process customer transactions accurately and efficiently, including cash, credit, and debit payments- Maintain a clean and organized restaurant area- Answer customer inquiries and resolve any issues or concerns- Promote and upsell products- Assist with inventory management, including restocking shelves and monitoring product availability- Work well in a group- Handle food appropriately- Also looking for servers and other roles, including kitchen service and other. Please don't hesitate to apply within.Qualifications:- Strong time management and organizational skills to prioritize tasks effectively- Previous experience in retail or customer service or the restaurant business is preferred- Excellent verbal communication skills in English to interact with customersWe offer great pay + TIPS and opportunities for career growth within our restaurant. Join our team today!Job Types: Full-time, Part-timePart-time hours: 14-36 per weekSalary: $15.50-$20.00 per hourBenefits:Dental carePaid time offDay range:HolidaysMonday to FridayWeekends as neededShift:Afternoon shiftDay shiftEvening shiftMorning shiftWork Location: In person\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"C0CCEE30779EED97691CF97A1E905755\",\n            \"cityName\": \"Courtenay, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c89b3262e481302f\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"R.C. Purdy Chocolates Ltd\",\n            \"rowSalary\": \"$16.75–$19.26 an hour\",\n            \"date\": 1694381469425,\n            \"dateOfPosted\": 1693535456385,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.6841391,\n                    \"lon\": -124.9904494\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Courtenay\",\n                \"formattedAddress\": \"Courtenay, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Strathcona\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Courtenay\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: No degree, certificate or diplomaExperience: Experience an assetTasks Operate cash register Process money, cheques and credit/debit card payments Scan items Greet customers Provide customer service Work conditions and physical capabilities Fast-paced environment Attention to detail Standing for extended periods Personal suitability Accurate Flexibility Team player Screening questions Are you currently legally able to work in Canada? Long term benefits Other benefitsWork Term: TemporaryWork Language: EnglishHours: 12 to 30 hours per week\",\n            \"location\": \"Courtenay, BC\"\n        },\n        {\n            \"id\": \"E1EE7911419381C9093B44E7AD87EFA7\",\n            \"cityName\": \"Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f1a1feb8a33e634b\",\n            \"jobName\": \"Overnight Customer Service Representative\",\n            \"companyName\": \"Tigertel\",\n            \"rowSalary\": \"$17.42 an hour\",\n            \"date\": 1694381391198,\n            \"dateOfPosted\": 1693535318199,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6660885,\n                    \"lon\": -63.56756309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Job DescriptionJob Description  Immediately hiring Full Time Overnight Customer Service Representatives at TigerTel! Through our dedicated Customer Service Representatives at TigerTel, we deliver critical services and create exceptional outcomes for our clients and the many people who count on them. Do you love helping people? You have the opportunity to make a difference and be part of a culture that values your contributions. As a member of our team, your excellent customer service and communication skills will create positive experiences for our customers. Your punctuality and dependability are important to the success of our clients. Customer service experience is a plus, but not required. Training in office and then remote after training. Your job will be to professionally handle incoming calls, greet callers, provide and request required information, transfer calls, or take messages as necessary. You will work on our state-of-the-art call processing system and will be trained on a variety of call centre tools to help properly prioritize customer needs. We are an inbound call centre only. We do not perform any outbound telemarketing or hard sales calls. To be successful in this role, you must have: A welcoming voice with an upbeat tone Strong command of the English language with good spelling and grammar Computer skills in a Windows based environment Good attendance The ability to type 35 words per minute or more Live within an hour of the office Compensation: $17.42 per hour Shifts Offered: Full Time (40 hour work week) Various shifts available Must be available to work weekends Our Benefits for Full Time Employees Include: RRSP with company matching Health Insurance Dental Insurance Vision Insurance Paid Vacations (up to 4 weeks per year over time) Benefit Conditions: Waiting period may apply Only full-time employees eligible Don't miss out on this opportunity - Apply Today! Job Posted by ApplicantPro\",\n            \"location\": \"Dartmouth, NS\"\n        },\n        {\n            \"id\": \"7FB3320EF8D10B48DE2179A9DF19E7D3\",\n            \"cityName\": \"Fort McMurray, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8e5d05e9016262f4\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"R.C. Purdy Chocolates Ltd\",\n            \"rowSalary\": \"$15.25–$17.54 an hour\",\n            \"date\": 1694381336469,\n            \"dateOfPosted\": 1693534907507,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 56.7266598,\n                    \"lon\": -111.3790441\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fort McMurray\",\n                \"formattedAddress\": \"Fort McMurray, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 16\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fort McMurray\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: No degree, certificate or diplomaExperience: Experience an assetTasks Operate cash register Process money, cheques and credit/debit card payments Receive payment for goods or services Greet customers Provide customer service Work conditions and physical capabilities Fast-paced environment Attention to detail Standing for extended periods Personal suitability Accurate Flexibility Team player Screening questions Are you currently legally able to work in Canada? Long term benefits Other benefitsWork Term: TemporaryWork Language: EnglishHours: 12 to 30 hours per week\",\n            \"location\": \"Fort McMurray, AB\"\n        },\n        {\n            \"id\": \"007BC0958738F3FD3A379F20D26DF082\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8b53912594c18a49\",\n            \"jobName\": \"Bilingual Customer Service Representative (Day Shift)\",\n            \"companyName\": \"Phoenix Amd International Inc.\",\n            \"rowSalary\": \"$36,000–$38,000 a year\",\n            \"date\": 1694381239123,\n            \"dateOfPosted\": 1693534863897,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 36000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    36000.0\n                ],\n                \"range\": {\n                    \"gte\": 36000.0,\n                    \"gt\": null,\n                    \"lte\": 36000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" C ustomer Service Representative Calling all Customer Service enthusiasts! Phoenix AMD International is looking to expand its Customer Service department. The responsibility is simple, handle all furniture/repair or service-related communication with the end users of our products and programs while providing an exceptional customer experience!!  Do You: Speak and write English and French Fluently? Work well as part of a team that is empathetic, positive, professional with high-energy? Thrive on challenges, and discovering new ways of doing things? Want to be in a job that requires you to work on things outside of your comfort zone? Want to work in an environment where progress is made, and you are the tool that moves things forward? Want to be listened to, and encouraged to use your initiative and creativity? If this sounds like you, apply today! What you need if you want to be the successful applicant: You have experience in a furniture sales and/or service environment. You learn quickly and get very passionate about getting results. You're a doer, if you don't know how, you will find out how to do it and learn. You have strong communication skills both verbally and in writing. You have strong customer service skills/soft skills. You have excellent organization skills. You have strong problem solving skills. You have experience in using Excel, Outlook and Word. You have the ability to multitask and work well in a fast paced environment while under pressure. What we bring to the table: We are a growing entrepreneurial Canadian Bilingual company in business for over 32 years, led by the 2 entrepreneurs who originally started the business. We provide lifestyle protection programs and services for the furniture, bedding, appliances and electronics retailers across North America, which are designed to enhance the experience of consumers who buy them while creating indispensable profit centers for the retailers who sell them. We are committed to innovation and being the best at what we do. What we Offer: Great Benefits Plan. Health and dental coverage, so you can focus on your work. Fun Company Events. Strong Charity & Community Support. Great Environment to Work in. Part of a Growing Community in Bowmanville. Salary: $36,000.00-$38,000.00 per year.  Benefits: Dental care. Disability insurance. Extended health care. Life insurance. Paid time off. Vision care. Wellness program. Work from home. Schedule:  8 hour shift. Day shift. Monday to Friday. Education: Secondary School. (required) Experience: Customer service: 1 year. (preferred)About Phoenix AMD International Inc.:Phoenix A.M.D. International Inc., a privately held company, is one of North America’s leading value-added home furnishings protection and service specialists, with an unparalleled reputation for customer service and support. Since its’ inception in 1991, Phoenix has been providing customers with the highest quality home furnishing warranty programs with the greatest perceived value and realistic expectations. They also provide fully bilingual customer service, using the most advanced computer technology. As one of North America’s leading providers of lifestyle protection programs and services, supported by our exceptional vendor partners, such as Teflon™, Phoenix A.M.D. International consistently and passionately innovates the future and sets the trend for all other suppliers and companies to follow.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"0DC7FBC69AF50D1A724947CC60C96F98\",\n            \"cityName\": \"365 Argyle St S, Caledonia, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=57fdb2a44a9f8157\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Canadian Tire #049\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694380634050,\n            \"dateOfPosted\": 1693534592142,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.0632464,\n                    \"lon\": -79.9602989\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Caledonia\",\n                \"formattedAddress\": \"Argyle St S, Caledonia, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Haldimand County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Caledonia\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Canadian Tire Caledonia is looking for part and full time cashiers!Previous cash handling experience is preferred, but we are willing to train the right candidate.Successful candidates will demonstrate the following competencies:· Strong orientation towards customer service excellence.· Highly approachable, customer-oriented individual who thrives in offering exceptional service to customers.· Strong belief in the Canadian Tire Values of honesty, integrity, and respect.· Effective written and oral communication skills (probing, listening, etc.) and the ability to maintain professional communication, even in challenging situations.· Ability to complete detail-oriented retail tasks according to instructions and to demonstrate responsibility for outcomes.· Ability to work in a fast-paced team environment that provides assistance and support to co-workers to achieve common goals.· Ability to resolve retail and/or customer issues.· Ability to multitask, adapt and cope with challenging and changing situations.Positive attitude, punctuality and solid work ethic.Job Types: Full-time, Part-timePart-time hours: 20-40 per weekSalary: From $15.50 per hourBenefits:On-site parkingStore discountDay range:Monday to FridayWeekends as neededShift:8 hour shiftDay shiftEvening shiftExperience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Argyle St S, Caledonia, ON\"\n        },\n        {\n            \"id\": \"2820426354C9879B221054EC57DFF8DD\",\n            \"cityName\": \"639 Terry Fox Drive, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fee335087932411f\",\n            \"jobName\": \"Customer Service Advisor\",\n            \"companyName\": \"Mr. Lube - Kanata\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694380608830,\n            \"dateOfPosted\": 1693533636366,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.306109,\n                    \"lon\": -75.912274\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Terry Fox Dr, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Updated: August 31st, 2023Location: 639, Terry Fox Dr, Kanata, ONWe're not looking for someone who \\\"needs a job.\\\" We're looking for someone who can make a difference in our customers' experience, learn some skills and earn an income. Sales experience is preferred.Job Overview: Ready for a Change?Named one of Canada's Best Managed Companies & 10 Most Admired Corporate Cultures, Mr. Lube offers a fun work environment, competitive wages, and the best paid training and advancement program in the industry for our employees.Customer Service RepresentativeIn this role, you'll get to take full ownership over the complete customer experience. We will provide full training so you can confidently work directly on a customer's car and be in control of the entire customer service and sales cycle; from walking a customer through the services on a car to completing the tasks and sale.A Customer Service Representative at Mr. Lube spends:70% of their time providing Customer Service:Greeting customersDiscussing products and services with customersProviding recommendations based on vehicle assessmentsSuggesting new products and servicesWorking with a close knit team and communicating with Lower Technicians30% of their time completing Mechanical Duties:Oil and filter changesReplacement of vital car fluids (e.g. coolant, transmission, and transfer case fluid)Replacement of parts under the hood (e.g. air filters, headlights, taillights and wiper blade replacements)Refilling performance enhancers to ensure the car runs smoothly (e.g. engine stop leak, oil treatment, and valve cleaner)Performing courtesy checks on all vehicles (e.g. topping up fluid levels, cleaning windows and checking tire pressure)Performing tire changes and rotationsWhat else can you expect from a career at Mr. Lube?A fun environment with the best paid training in the industry Excellent employee incentives and recognition. With constant learning and growth opportunities. A company, management and team that cares. If you have a positive attitude, flexible availability, are driven to succeed, have a willingness to learn, and genuinely like interacting with people, put yourself in the driver's seat at Mr. Lube!Please contact:Denis GagneArea ManagerJob Types: Full-time, Part-timePart-time hours: 20-44 per weekSalary: From $16.50 per hourBenefits:Company eventsDental careExtended health careFlexible scheduleOn-site parkingPaid time offStore discountTuition reimbursementVision careSupplemental pay types:Bonus payCommission payOvertime payTipsAbility to commute/relocate:Ottawa, ON K2L 4H9: reliably commute or plan to relocate before starting work (required)Experience:Service Advisor: 1 year (required)Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Terry Fox Drive, Ottawa, ON\"\n        },\n        {\n            \"id\": \"825E28E863F63AE682473FE598B4FE35\",\n            \"cityName\": \"Delta, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=16bfaced0db5e64b\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"True Blue Construction Ltd\",\n            \"rowSalary\": \"$35 an hour\",\n            \"date\": 1694379616783,\n            \"dateOfPosted\": 1692669347449,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.09521549999999,\n                    \"lon\": -123.0264758\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Delta\",\n                \"formattedAddress\": \"Delta, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Delta\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 35.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35.0\n                ],\n                \"range\": {\n                    \"gte\": 35.0,\n                    \"gt\": null,\n                    \"lte\": 35.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Experience an assetTasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Recruit and hire workers and carry out related staffing actions Train or arrange for training Set up machines and equipment Estimate costs and materials Ensure health and safety regulations are followed Recommend personnel actions Read blueprints and drawings Requisition or order materials, equipment and suppliesWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Delta, BC\"\n        },\n        {\n            \"id\": \"DEB78AD6BAB96DB297914300F8116C7E\",\n            \"cityName\": \"320 Bayfield St, Barrie, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=13e05c70043dc69e\",\n            \"jobName\": \"Weekend Customer Service Cashier\",\n            \"companyName\": \"Canadian Tire Gas Bar\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694379288255,\n            \"dateOfPosted\": 1694239194174,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Every weekend MANDATORYThis is a weekends only positionShifts may be 7am-3pm or 3-11pmweekday afternoon shifts may be available shortlyMUST have good communication and interpersonal skillsMUST be reliableMUST be able to manage cashing out customers, have view of outside all the time as well as keeping store sufficiently stocked and cleanedJob Type: Part-timePart-time hours: 16 per weekSalary: From $15.50 per hourBenefits:Dental carePaid time offVision careDay range:Every WeekendWeekends onlyShift:8 hour shiftAfternoon shiftDay shiftWork setting:Convenience storeExperience:Cash handling: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (required)Night Shift (required)Work Location: In personApplication deadline: 2023-09-18Expected start date: 2023-09-20\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"23AB4917B8A7F1264147D0DB0C8A3417\",\n            \"cityName\": \"706 Denison St, Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8ec84d1ac30ab9da\",\n            \"jobName\": \"Customer Service Rep\",\n            \"companyName\": \"Running Free\",\n            \"rowSalary\": \"$16.80–$18.00 an hour\",\n            \"date\": 1694379083555,\n            \"dateOfPosted\": 1694288878153,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Online retail is an exciting and constantly evolving space in which providing customers with a truly exceptional experience is our number one priority. If you're an enthusiastic, self-motivated, detail-oriented person, who is passionate about running, triathlon, cycling, or fitness, we want to talk to you!Description:Part-time position involves interacting with customers via email and phone, and occasionally in person. Handling ordering, shipping, reporting, and product related questions and tasks. Flexible hours. Small and friendly online team. Opportunities for growth.Skills and Experience:- Excellent communication in English (spoken and written).- Previous retail experience an asset.- Very comfortable working with Windows based systems and programs.- Experience with programs such as Excel or Google Sheets valuable.- Eye for detail and design and familiarity with graphics programs (similar to Photoshop) useful.Job Type: Part-timePart-time hours: 20 - 40 per weekSalary: $16.80-$18.00 per hourBenefits:On-site parkingSchedule:8 hour shiftWeekends as neededWork Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"ED6A6E031F702FF8D8A30F62E95CFEC0\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=17d07df84f3c4d96\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Algaecal\",\n            \"rowSalary\": \"$48,000–$51,000 a year\",\n            \"date\": 1694378648897,\n            \"dateOfPosted\": 1693529543967,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Career with a heart! If you like helping people, and you want to feel supported in your work –– this is the opportunity for you. Every day, concerned people call the AlgaeCal helpline. They’ve just had bad news about their bones – and they’re scared they might break at any moment. But after talking with YOU, their fear will melt away. We call our Customer Care Representatives – Bone Health Consultants – and a typical day might include: Acting as a knowledge base for customers inquiries with respect to our products and their bone healthActively listening to customers and providing them with everything they need to make an informed decision about AlgaeCal.Supporting our customers through a variety of mediums (email, phone).Processing orders and returns for customers.Helping customers understand the results of their DEXA bone scans.Updating the records of customer interactions, processing customer accounts, and filing documents. So yes, you’ll need to enjoy administrative tasks to thrive in this role.But most importantly, setting our customers up for MAXIMUM SUCCESSThis opportunity is tailor-made for you if: You’ve got a solid customer service background. You are passionate about natural health. You are an expert at building a rapport with customers and devoted to helping people find that aha moment – where they go from despair to hope. You’re organized. You’re humble. You think critically and creatively. You love to support and inspire others. You don’t just accept feedback – you WANT feedback, because you’re hungry to be better than you were yesterday. You’re also a brilliant multi-tasker who can effortlessly shift between a variety of priorities. So if you want to work with some of the nicest people you’ll ever meet. And you want to feel good about making a difference in the world –– all while learning about natural health and working in a well organized and supportive workplace –– send us your resume. And BTW… some of our senior executives started out in this role –– so if you’ve got the talent, there’s no telling where this job might take you :) To best service our clients, our Customer Success Centre is open 7 days per week. Work schedules are 5 consecutive days, which include 1 weekend day. Successful applicants must be willing to work a Saturday or a Sunday, each week. We won’t ask you to work both weekend days, but ya need to be available for one! Example shift rotation: Sunday to Thursday or Tuesday to Saturday. Other Goodies$48,000 starting salary with the opportunity to increase rapidly as training targets are met.AlgaeCal Healthcare Plan (Premiums Covered 100%!), which you're eligible to sign up for after three months of employment.Monthly lunches with your co-workers, coffee catch ups, and an informal coaching programme.Supported professional development and continued learning through training and coaching.Flexible Stat Holidays with the option to bank days for later use.You should know this… AlgaeCal is a hyper-growth company, which means that the role is always evolving as the company grows. We are not a typical ‘transactional’ thinking company. We are a heart-based company where people come first. In order to be successful here, you will need to have this mindset, work smart, hard, and embrace everything that is offered. If this sounds like a position for you, please respond to this advertisement with your resume and cover letter. This is an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your carefully written cover letter. Applications submitted without a resume and cover letter will be unsuccessful. Please, read carefully: 1. Write a cover letter addressing: 1. Why you're the best Customer Service Representative for this role. Give quantifiable examples of related achievements. 2. Describe why you fit perfectly with our values. Read them here: http://shorturl.at/lptFT 3. What's the toughest challenge you’ve ever overcome in your life? How did you overcome it? 4. What are the last three books you’ve read? 5. What do you do for fun? 6. Explain what you’re doing now for a job:If you don’t have one, explain why.If you have one, explain why you’re looking elsewhere.2. Upload your cover letter and resume: 1. Ensure that your cover letter and resume are saved and sent as one file. Click the “Apply Now” button on this page and upload your (1) cover letter (2) resume. *Important* AlgaeCal isn’t a boring run-of-the-mill company. So some of the questions in your online application might feel out of the ordinary. These questions are an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your answers. For more information about us, please visit our website.\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"F5C89E26A82557E99EEB18FF95D67CFF\",\n            \"cityName\": \"3454 Tillicum Rd, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=28f6d67d4ec8fa00\",\n            \"jobName\": \"Ice-Cream Parlor And Arcade Customer Service\",\n            \"companyName\": \"Mr. Tubbs Ice Cream Parlor\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694377626021,\n            \"dateOfPosted\": 1693531288333,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4504499,\n                    \"lon\": -123.3967516\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Tillicum Rd, Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About us:Mr. Tubbs Ice Cream Parlor has its history of nearly thirty years. With 48 flavours ice creams and a room of video games, it is a place creates memories for thousands of kids and families.Now, we are looking for both full-time and part-time employees who enjoy spending time with kids, scooping ice creams, making ice-cream sandwiches and cakes, and operating and arcade game machines.Responsibilities:Make ice cream cakes (will be trained)Serve ice cream and birthday parties.Answering phones and managing our online booking systems and be able to take online orders.Take payment.Clean up equipment after use and keep kitchen area organized and sanitized.Stock ingredients as needed.Operate machinery, including mixers, blenders, etc., safely and effectively.Maintain a clean work area, including storage areas and workstations.Follow all health and safety standards to ensure proper food safety practices.Ability to manage an ever-changing environment.Qualification· * Customer service oriented, experience preferred however willing to train the right candidate· * Strong ability to organize and multi-task· * Ability to prioritize· * Energetic, High level of accuracy and Attention to detail· * Excellent verbal communication skills· * Problem solving skills and accountability for work assigned· * Willingness to learn and continuously improve· * Be punctual and a 100% focused on job related tasksPlease note only the selected candidates will be contacted and invited to an interview. However, we thank you for expressing your interest!Job Types: Full-time, Permanent, CasualSalary: $17.00-$19.00 per hourBenefits:Discounted or free foodJob Types: Full-time, Part-time, PermanentPart-time hours: 30 per weekSalary: $17.00-$19.00 per hourSchedule:Day shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Victoria, BC V8Z 4H3: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 2 years (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Tillicum Rd, Victoria, BC\"\n        },\n        {\n            \"id\": \"492B753BA72C119A2D349C67D2DABE5A\",\n            \"cityName\": \"5777 Trans Canada Highway, Duncan, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=30d4e8239bcc685d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mid Island Liquor\",\n            \"rowSalary\": \"From $17.75 an hour\",\n            \"date\": 1694377171524,\n            \"dateOfPosted\": 1694289432437,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Liquor is looking for part-time Customer Service Representatives at our Duncan Liquor Store.Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you!Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in the operations of the store, including but not limited to handling customer transactions, responding to customer questions and concerns in a professional manner, creating displays and stocking shelves, and ensuring store and merchandise are neat and organized.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Representative today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. Previous retail experience is preferred, and you must have a valid Serving it Right Certificate (or be willing to get certified prior to your first day).Who we are:Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve.Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op).We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.Job Types: Permanent, Part-timeSalary: From $17.75 per hourBenefits:Employee assistance programFlexible scheduleOn-site parkingStore discountSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"3916505F2AAF1775F8C9B3AE555312F4\",\n            \"cityName\": \"360 Newkirk Road, Richmond Hill, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1e6c74b74068f2f0\",\n            \"jobName\": \"Customer Service Representative (Csr)\",\n            \"companyName\": \"James Snow Storage\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694377169555,\n            \"dateOfPosted\": 1694287981593,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"As a customer service representative, you should be able to provide speedy and efficient service to our customers. We offer both storage and U-Haul servicers for which training will be provided. Secondarily, there is a physical component to the position; must be able to assist in physical labor both indoors and outdoors. The job has a 3 month probationary period you can expect $ 0.5 pay raise pending on your performance ofter the end of probationary period.Primary responsibilities include: (Training will be provided)Interact with our customers in a friendly, fast, courteous and efficient manner.Should be able to perform physically demanding tasks such as connecting trailers.Should be able to perform tasks under minimum supervision.Renting U-Haul trucks, trailers and storage rooms.Maintain a standard of cleanliness of Trucks and Storage.Attention to detail in order to promote positive customer interactions.Efficient communication with customers and fellow staff members.Complete online and hands on training.Help out in maintenance of the building all year.Requirements:Availability to work weekends.Valid driver’s license (Preferred) and the ability to maintain a good driving record to operate commercial motor vehicles.Ability to work with computers and use specialized rental software (Training will be provided).Education/Training:High School Diploma or equivalent.Post secondary students, international students (Preferred)Job Types: Part-time, Fridays, Saturdays and Sundays.Salary: From $16.50 per hour.Benefits:Insurance Benefits including.Dental careDisabilityLife insuranceVision Care.Company events.On-site parking.Job Type: Part-timePart-time hours: 20 per weekSalary: From $16.50 per hourBenefits:Company eventsDental careDisability insuranceLife insuranceOn-site parkingStore discountVision careSchedule:8 hour shiftEvery WeekendWeekends onlyAbility to commute/relocate:Richmond Hill, ON: reliably commute or plan to relocate before starting work (required)Application question(s):Are you allowed legally to work in Canada?Are you available to work Fridays, Saturdays and Sundays every week?Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"2B880055E2F0FA414F2573CBFDA887CC\",\n            \"cityName\": \"Speedy Cash in Kamloops, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b9ae68b3f41d64a4\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Speedy Cash\",\n            \"rowSalary\": \"From $18.75 an hour\",\n            \"date\": 1694377133564,\n            \"dateOfPosted\": 1693520740378,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.674522,\n                    \"lon\": -120.3272675\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kamloops\",\n                \"formattedAddress\": \"Kamloops, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Thompson-Nicola\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kamloops\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Canadian-operated, Speedy Cash is a strong leader in the financial services industry. Founded in 1998, Speedy Cash currently operates over twenty branch locations across Canada. We are building a dynamic team of business professionals and can provide the right candidate with significant opportunities for career growth and job satisfaction.If you’re looking for a fun, energized environment where we support each other, as a team, to create a rewarding workplace and deliver amazing customer service, then look no further, Speedy Cash is the place for you!Perks and BenefitsWelcome BonusCompetitive wages, bonuses, and benefitsHands-on and continual training in transferable skillsBirthdays off, annual fun day for each storeIncredible support systemA team environment that makes work satisfying and funRRSP matchingOpportunities for growth. We promote from within!You are a Champion of Change; you will help motivate the team to increase sales, minimize bad debt and adapt to the ever-changing regulatory environment. You have a strong sense of curiosity and have a passion for learning; you are proactive and look for ways to be more efficient in your day-to-day work. You inspire your teammates with your innovative and resourceful way of thinking. Your attention to detail and exceptional organizational skills will ensure that the day-to-day operations of the store run smoothly. You can work independently as you pursue excellence while taking pride in your achievements, supporting company initiatives, and accomplishing the work that needs to be done in the store. An interest in travel would be considered an asset as from time to time support in other stores in the network is needed.Job ResponsibilitiesBuilding customer relationships while providing exceptional customer serviceIdentifying and meeting the customer’s financial needs in order to process loan applicationsCollecting on delinquent accounts in the interest of minimizing bad debtConveying information through in-person, telephone, and email communicationsAiding in loan sales, cheque cashing, and in-store promotionsHandling and balancing daily cash and debit transactionsPerforming all daily operations of the storeRequirementsValid Government Issued Photo IDClean Criminal RecordHigh School Diploma or EquivalentWageSalary commensurate with experienceFor more information about Speedy Cash check out our website at www.speedycash.ca/careersJob Type: Full-timeSalary: From $18.75 per hourBenefits:Dental careExtended health carePaid time offRRSP matchVision careSchedule:Monday to FridayWeekends as neededEducation:Secondary School (preferred)Work Location: In personApplication deadline: 2023-09-18\",\n            \"location\": \"Kamloops, BC\"\n        },\n        {\n            \"id\": \"E0091B940D575ABBBEA7E8F5BCA98400\",\n            \"cityName\": \"Speedy Cash in Cranbrook, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2a3022b2812ea3e8\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Speedy Cash\",\n            \"rowSalary\": \"From $18.75 an hour\",\n            \"date\": 1694377089914,\n            \"dateOfPosted\": 1693522629263,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.5129678,\n                    \"lon\": -115.7694002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cranbrook\",\n                \"formattedAddress\": \"Cranbrook, BC V1C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"East Kootenay\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cranbrook\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Canadian-operated, Speedy Cash is a strong leader in the financial services industry. Founded in 1998, Speedy Cash currently operates over twenty branch locations across Canada. We are building a dynamic team of business professionals and can provide the right candidate with significant opportunities for career growth and job satisfaction.If you’re looking for a fun, energized environment where we support each other, as a team, to create a rewarding workplace and deliver amazing customer service, then look no further, Speedy Cash is the place for you!Perks and BenefitsWelcome BonusCompetitive wages, bonuses, and benefitsHands-on and continual training in transferable skillsBirthdays off, annual fun day for each storeIncredible support systemA team environment that makes work satisfying and funRRSP matchingOpportunities for growth. We promote from within!You are a Champion of Change; you will help motivate the team to increase sales, minimize bad debt and adapt to the ever-changing regulatory environment. You have a strong sense of curiosity and have a passion for learning; you are proactive and look for ways to be more efficient in your day-to-day work. You inspire your teammates with your innovative and resourceful way of thinking. Your attention to detail and exceptional organizational skills will ensure that the day-to-day operations of the store run smoothly. You can work independently as you pursue excellence while taking pride in your achievements, supporting company initiatives, and accomplishing the work that needs to be done in the store. An interest in travel would be considered an asset as from time to time support in other stores in the network is needed.Job ResponsibilitiesBuilding customer relationships while providing exceptional customer serviceIdentifying and meeting the customer’s financial needs in order to process loan applicationsCollecting on delinquent accounts in the interest of minimizing bad debtConveying information through in-person, telephone, and email communicationsAiding in loan sales, cheque cashing, and in-store promotionsHandling and balancing daily cash and debit transactionsPerforming all daily operations of the storeRequirementsValid Government Issued Photo IDClean Criminal RecordHigh School Diploma or EquivalentWageSalary commensurate with experienceFor more information about Speedy Cash check out our website at www.speedycash.ca/careersJob Type: Full-timeSalary: From $18.75 per hourBenefits:Dental careExtended health carePaid time offRRSP matchVision careSchedule:Monday to FridayWeekends as neededEducation:Secondary School (preferred)Work Location: In personApplication deadline: 2023-09-29\",\n            \"location\": \"Cranbrook, BC\"\n        },\n        {\n            \"id\": \"48A1B19C4B92BF5C28C70750B2A6127E\",\n            \"cityName\": \"Fort Erie, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c53d2704da0e8c31\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Aerogutter Inc\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694376983657,\n            \"dateOfPosted\": 1694240123557,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Aerogutter Inc is looking to add another member to our team!We are a family owned and operated small company who handles incoming calls/requests from customers who use our exterior services in the USA. We've been in business since 2002 and we work hard at building a team of qualified, driven, and wonderful people! If you're tired of working in a place where you're simply a number...and are interested in a position with a small group of dedicated people who make work more exciting, keep reading!The position involves a nice comfy chair and a desk with two monitors. There is a headset (and yes it's comfortable) that covers both ears and the phone is answered on the screen. We have a picnic table outside for lunch during the warmer times, and a nice kitchen with chairs and a tv. We even have a dishwasher so you don't have to worry about dishes (wow!).With all that being said, we are looking for a happy person who enjoys making the lives of others better by providing an excellent customer experience! Someone who keeps a \\\"to do\\\" list and enjoys checking things off as they finish them! Someone who can empathize with a customer who calls in with a problem and has the ability to offer peace of mind because you know you have a team of capable people who can handle any issue a customer may have. If this sounds like the job for you...keep reading and apply below!Duties include but are not limited to:· Answer incoming customer phone calls regarding billing issues, estimate and service requests, scheduling inquiries and general client concerns and take appropriate action for each call· Return customer voicemails, emails, and text messages· Entering and checking customer contracts in the customer database· Reviewing, printing and mailing of customer invoices and contract renewals· Processing customer payments and contract renewals received in the mail via check or credit card· Match service trucks GPS records to work completed· Contact customers regarding outstanding balancesJob Details:· 1 full time position available in a small office setting working with 6 other team members.· Office hours are Monday through Friday 8:30AM to 5:00PM and some Saturdays (Spring and Fall).· In-office training will be Monday to Friday from 10:00AM to 3:00PM.· Starting wage is $18.00-$20.00 per hour .· Candidate must have a minimum of 2 years of Call Centre Customer Service experience.· Candidate must have own transportation. Public transit is not available.· Good work ethic, attendance, ability to work as part of a team, and professional customer service is also a MUST!Job Type: Full-timeSalary: $18.00-$20.00 per hourSchedule:8 hour shiftHolidaysMonday to FridayWeekend availabilityEducation:Secondary School (preferred)Experience:customer service: 2 years (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"DB651E0F16802D9EE640C7D52D4CDD90\",\n            \"cityName\": \"13120 66 Street NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6a4943f19d763148\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Mac'S Convenience Store/ Circle K\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694376923179,\n            \"dateOfPosted\": 1694223927188,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Description: Customer Service RepresentativeLooking for experienced CSR to work at Circle K located North east side. Looking for someone with a flexible schedule that is able to work various shifts including overnight, throughout the week and weekendDuties:- Provide exceptional customer service- Ring up sales on cash register- Process payments and handle customer complaints- Performs cleaning duties to uphold store standard, this includes inside and outside the store- Receives and verifies deliveries- Maintains food safe practice- Stock and merchandise products- Control shoplifting as per our company policyExperience:- Previous experience is considered an assetPhysical Requirements- Able to stand for 8 hours-Lift up to 50lbsIf you are passionate about providing exceptional customer service and have the necessary skills and experience, we would love to hear from you. Please submit your resume and cover letter detailing your relevant qualifications.Job Type: Full-timeSalary: From $15.00 per hourSchedule:8 hour shiftEvening shiftMonday to FridayNight shiftWeekends as neededEducation:Secondary School (preferred)Shift availability:Day Shift (required)Night Shift (required)Overnight Shift (required)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"BA852DCD860AC3215A154EA21B4B9071\",\n            \"cityName\": \"SKM Acquisitions in Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5e7514a4d5f7e285\",\n            \"jobName\": \"Customer Service Sales Representative\",\n            \"companyName\": \"Skm Acquisitions\",\n            \"rowSalary\": \"$700–$1,000 a week\",\n            \"date\": 1694375918254,\n            \"dateOfPosted\": 1694215050866,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 700.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    700.0\n                ],\n                \"range\": {\n                    \"gte\": 700.0,\n                    \"gt\": null,\n                    \"lte\": 700.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you looking for a supportive, collaborative workplace with great teams and inspiring leaders? You’ve come to the right place. SKM is looking for ambitious people who share our values and want to make every day better for people around the world. If this sounds like you, and the career below sounds exciting, we’d like to hear from you.As a Customer Service Sales Representative, you will be the face of our clients. You will interact with customers to bring our clients products and services to life! You will create effective sales opportunities with each customer using the skills provided in our intensive training model. Customer Service Sales Representative will establish sales objectives which will contribute to the overall success of the business.Key Accountabilities:Meet sales, service, quality and productivity objectivesResponsible for interacting with new and existing customers and clientsConduct needs analysis and provide advice to customers by effectively communicating the value and benefits of the products and services offered by our clientsProvide a high level of service, build relationships and provide accurate information and the appropriate solutions to new and existing customersRaise issues, concerns and trends to the leadership teamMaintain a high level of product knowledge, operational process and servicesAs our ideal candidate, you make valuable contributions in your ability to communicate effectively with people. You have a high-energy level and a desire to become part of a globally dynamic organization offering long-term career opportunities.Qualifications:Experience in a retail, customer service or sales rolePost-secondary degree or equivalent work/business experienceDemonstrated ability to persuade and negotiate and must possess active listening skillsEffective client record management, with attention to detailAbility to work in a fast-paced environment and manage multiple day-to-day tasksStrong computer skills, and a general knowledge level of the MS Office suite of productsMust have a valid driver’s license and access to reliable transportationJob Type: Full-timeSalary: $700.00-$1,000.00 per weekSchedule:Monday to FridayWeekends as neededAbility to commute/relocate:Ottawa, ON K2C 3N1: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"5CA5C4383AB32996952269EF1B8211DE\",\n            \"cityName\": \"Michaud Petroleum Inc. Grand Falls and St-Leonard NB in Grand-sault/grand Falls, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a162d3f681f89584\",\n            \"jobName\": \"Cashier/Customer Service - Full And Part Time Day & Evenings\",\n            \"companyName\": \"Michaud Petroleum Inc. GrAnd Falls And St-Leonard Nb\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694373550363,\n            \"dateOfPosted\": 1689530225864,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.0479934,\n                    \"lon\": -67.7399015\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grand Falls\",\n                \"formattedAddress\": \"Grand Falls, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Victoria County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grand Falls\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Michaud Petroleum Inc. is currently looking to fill a Full Time Cashier position for its Shell gas station in Grand Falls and St-Leonard location as well as the Ultramar station in Grand Falls.The candidate will be in charge of completing the following tasks (but not limited to) :Help and assist customersReplenishing store shelvesBalance cashKeeping store cleanAnswer phonesAssist card lock customersKeeping sidewalks and walkways clean (Sweeping in summertime and Shovel during winter).Maintain work equipmentMaintain a safe work environmentAfternoon shift is 11:00 am to 7:00 pm, evening shift is 2:00 pm to 10:00 pm. Weekends has same shifts plus a 6:00 am to 2:00 Pm option as well.Position offers 5 shifts per week, Monday to Sunday.Job requirementsAll candidates must be fully bilingual in both official languages (Oral)Have a strong client oriented attitudeMust be available to work daytime, evenings and on week-endsJob Types: Full-time, Part-time, PermanentSalary: $15.00-$16.00 per hourBenefits:Dental careOn-site parkingVision careShift:8 hour shiftAfternoon shiftDay shiftEvening shiftWork setting:Convenience storeCOVID-19 considerations:Language:English and French (required)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Grand Falls, NB\"\n        },\n        {\n            \"id\": \"B6A531BAFEAF682F9946C561D7FE4EEC\",\n            \"cityName\": \"656 Dundas St, London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c4782049e07d115b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Union Ten Distilling Co.\",\n            \"rowSalary\": \"$16.55 an hour\",\n            \"date\": 1694373548215,\n            \"dateOfPosted\": 1693519282617,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.0034491,\n                    \"lon\": -81.1805791\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"Dundas St, London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking a highly motivated and enthusiastic individual to join our team as a Customer Service Representative at our Distillery. As a Customer Service Representative, you will be providing exceptional service and support to our valued customers. You will be responsible to ensure a positive and memorable experience for all who interact with our Distillery. This is an excellent opportunity for someone with a passion for the spirits industry and a knack for delivering outstanding customer service.Responsibilities:Provide accurate information about our distillery products, including their production process, ingredients, tasting notes, and availability.Assist customers with placing orders, providing guidance on product selection, and recommending suitable options based on their preferences.Manage bookings and host Cocktail Classes and Tours as required.Assist in managing inventory as needed, restocking of product in retail store. This may also include tasks related to fulfilling of online orders for shipping and curbside pickup.Maintain a thorough understanding of our distillery's offerings, promotions, and special events to effectively communicate them to customers.Collaborate with internal teams, such as sales and production, to relay customer feedback, identify trends, and suggest improvements for enhancing customer satisfaction.Continuously develop product knowledge by staying up-to-date with industry trends, attending training sessions.Contribute to a positive and engaging work environment, fostering teamwork, collaboration, and a customer-centric mindset.Requirements:High school diploma or equivalent; additional education or certification in customer service is a plus.Proven experience in a customer service role, preferably in the beverage, hospitality, or related industry.Excellent verbal and written communication skills, with the ability to convey information clearly, concisely, and in a friendly manner.Strong interpersonal skills, capable of building rapport and maintaining positive relationships with customers and team members.Ability to handle challenging situations with patience, empathy, and a solution-oriented mindset.Detail-oriented with excellent organizational and multitasking abilities.Flexibility to work in shifts, including days, evenings, weekends, and holidays, as required.A genuine interest in and knowledge of spirits, distilling processes, and the craft beverage industry.Must be of legal drinking age and comply with all applicable laws and regulations related to alcohol.Smart Serve certification is required.We offer the opportunity to be part of a dynamic team dedicated to producing exceptional spirits and providing unparalleled customer service. If you are passionate about the world of spirits, possess outstanding customer service skills, and thrive in a fast-paced environment, we would love to hear from you!Job Type: Part-timePart-time hours: 30 per weekSalary: $16.55 per hourBenefits:Casual dressStore discountFlexible Language Requirement:French not requiredSchedule:Day shiftMonday to FridayWeekends as neededWork Location: In personExpected start date: 2023-09-19\",\n            \"location\": \"Dundas St, London, ON\"\n        },\n        {\n            \"id\": \"A417A401C4D646723ABAA55586F281C8\",\n            \"cityName\": \"137 Cowichan Lake Road, Lake Cowichan, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ba3e77afdaaf55a9\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mid Island Co-Op\",\n            \"rowSalary\": \"From $17.75 an hour\",\n            \"date\": 1694373507992,\n            \"dateOfPosted\": 1693507878727,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.8299295,\n                    \"lon\": -124.0258333\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lake Cowichan\",\n                \"formattedAddress\": \"Cowichan Lake Rd, Lake Cowichan, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Cowichan Valley\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lake Cowichan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Co-op is hiring full-time and part-time Customer Service Representatives at our Gas Bar located in Lake Cowichan, British Columbia.Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you!Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in the operations of the store, including but not limited to handling customer transactions, responding to customer questions and concerns in a professional manner, creating displays and stocking shelves, and ensuring store and merchandise are neat and organized.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Representative today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. Previous retail experience is preferred, and propane and/or FoodSafe certification would be an asset.Who we are:Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve.Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op).We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.Job Types: Permanent, Part-time, Full-timePart-time hours: 24-40 per weekSalary: From $17.75 per hourBenefits:Company eventsCompany pensionDental careDisability insuranceEmployee assistance programExtended health careLife insuranceOn-site parkingPaid time offTuition reimbursementVision careSchedule:Day shiftEvening shiftHolidaysMonday to FridayWeekends as neededSupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Cowichan Lake Rd, Lake Cowichan, BC\"\n        },\n        {\n            \"id\": \"7DE74F761FAA7CFD30A02129A245436D\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fabbcdf0b1a77d4b\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"Sam Dhaliwal Professional Corporation\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694370947101,\n            \"dateOfPosted\": 1689674908889,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsTasks Operate cash register Process money, cheques and credit/debit card payments Scan items Tabulate total payment for goods or services required Receive payment for goods or services Calculate daily/shift payments received and reconcile with total sales Suggestive selling Greet customers Provide customer service Personal suitability Team playerWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"7E734AB841350A9259901477989FC199\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=663e30b62af05b87\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Pro-Line Building Materials\",\n            \"rowSalary\": \"$18–$21 an hour\",\n            \"date\": 1694369910318,\n            \"dateOfPosted\": 1693517259643,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Pro-Line Building Materials Ltd. is a leading distributor of roofing, insulation and waterproofing products in Western Canada we are currently taking applications at our Victoria, B.C. store for a full time Customer Service Representative.The Customer Service Rep is responsible for assisting, maintaining, and building profitable relationships with our customers by ensuring all customer requirements are met to the best of Pro-Line's abilities.Communicate effectively with all team members (warehouse to office) regarding customer objectivesOverseeing warehouse and yard is tidy, organized, and that stock rotatesCompile and maintain all sales orders as they flow through the branchContribute to the work environment that leads to a winning team and personal growthParticipate as a key player by supporting operational needsMaintain housekeeping standards as set by the management staffAcknowledge and greet appropriately customers in a timely mannerDressed in appropriate attire (proper tied up footwear, no tattered clothing)Process customer orders in a courteous, efficient, and timely mannerRecognize sales orders with delivery deadlines and back ordersEffectively present and demonstrate products and services offered to the customersManage telephone calls professionally with good communication skillsAttend to customer questions, challenges, and facilitate a satisfactory resolutionCoding of credit and cash orders, inventory inputtingSupport outside sales reps by gathering customer information to achieve a successful deliveryEnsuring sales orders have been double checked the day prior to deliveryFill out Bill of Ladings with all pertinent information (address, loading instructions, directions, pitch, etc.)Project tracking (Cool Net)All other duties as specified by managementFeel free to apply online or show up in person at 4910 Builders Road S.E.Calgary, AB. T2G 4C6Job Type: Full-timeSalary: $18.00-$21.00 per hourSchedule:8 hour shiftMonday to Friday\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"F693FC3CA96AE83A8546DF3650C4F73C\",\n            \"cityName\": \"Grande Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3fb4147ba9e693ea\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Tenacious Detail Grande Prairie\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694368538724,\n            \"dateOfPosted\": 1693517263263,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.17071259999999,\n                    \"lon\": -118.7884464\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grande Prairie\",\n                \"formattedAddress\": \"Grande Prairie, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 19\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grande Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Tenacious Detail is looking to hire a full-time/ part-time front counter person.You will be the first point of contact for our walk-in clients.Other tasks will be:answering phone callscollecting paymentslight office cleaninghelping in the Detail shop when needed for other tasks.keeping things organized in and around the shopWe are looking for an individual who can work independently or as part of a team! Someone with a bright and bubbly personality. Knowledge of detailing products an asset.Job Types: Full-time, Part-timePart-time hours: 20-40 per weekSalary: From $17.00 per hourBenefits:Dental carePaid time offFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:Overtime payAbility to commute/relocate:Grande Prairie, AB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In personExpected start date: 2023-09-11\",\n            \"location\": \"Grande Prairie, AB\"\n        },\n        {\n            \"id\": \"B04D971110D238534A9C04797F27C984\",\n            \"cityName\": \"Canada\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9d9c9df290ee4a8c\",\n            \"jobName\": \"Call Centre Agent - Work At Home\",\n            \"companyName\": \"Inspire Direct Marketing\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694364628182,\n            \"dateOfPosted\": 1693517243927,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"$20.00-$24.00/hour + Benefits.Call Centre Agent - Work from HomeIf you are a mature sales or call centre representative, come join our team of professional fundraising agents to elevate your career and use your skills to help make our world a better place. Quit your day job, come help us save the world!We are a Canadian agency on a mission to inspire fundraising. We provide a warm and friendly voice to the largest and most respected charities in Canada. Our team is passionate, engaged and extremely effective. We call existing supporters to raise funds for important causes around the globe. So while there are no cold calls or high-pressure tactics, we are a performance team and results matter. We hope they motivate you as well.This is a full-time, outbound, work-from-home position.Description:Each day and each call can be different. We find new child sponsors, welcome new donors, renew event participants, and invite donors to give monthly. We thank, connect, engage and inspire. We look for creative new ways to delight on every call. We are all about teamwork, customer connections and most importantly, having fun while we do it. Inspire fundraisers connect with, laugh with and uplift the lives of our client's donors - even if just for a few moments. Their work goes beyond raising funds for some of the world's most worthwhile causes; it's about creating a human connection with every donor. They enjoy being able to deliver world-class results autonomously, while representing great causes and being part of a passionate team.Benefits:Premium wages, $20.00 - $24.00 hourly w bonuses Permanent, full-time employment with consistent hours and growth opportunities Engagement with world-class charitable organizations 100% paid training and health benefits (at 3 months) Trip incentives (to visit child sponsor communities), bonuses and rewards Training opportunities, lunch-and-learns, workshops Team culture and activities, ice breakers, community eventsYou have:A minimum of 2 years' customer service and call centre experience You love talking to people and are a great communicator You are looking for full-time hours, 40 hours a week Availability to work evenings (1:00PM - 10:00PM EST Mon -Thu, 10:00AM - 7:00PM EST Fri) Availability to work occasional Saturday shifts (10:00AM to 5:00PM) You are technically savvy and self-reliantYou provide:A professional work from home office space newer-version Windows PC or laptop computer (Apple or Mac are not supported) High-speed cabled internet connection (min 25 mbps down/5 mbps up) A USB headset and webcamIf you are looking to be part of something bigger than yourself and to join a mature call centre team with opportunities to grow and support your peers; we would love to hear from you.Inspire is committed to Employment Equity and Diversity. We do not discriminate against any employee or applicant for employment because of national origin, race, religion, ethnicity, age, disability, sex, sexual orientation, gender identity, veteran status or any other federal, provincial, or local protected class. We welcome and encourage applications from persons with disabilities. Accommodations are available upon request for candidates who participate in all aspects of the selection process.Please note: We thank everyone for their interest however only the best qualified candidates may be contacted.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"27580B3EBB1E95A716ACBF541482CB66\",\n            \"cityName\": \"26 Thomas Raddall Dr Suite 182, Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1c2c2a18082b227a\",\n            \"jobName\": \"Part-Time Customer Service Representative\",\n            \"companyName\": \"Canada Games Centre\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694363751463,\n            \"dateOfPosted\": 1693517261950,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.65802,\n                    \"lon\": -63.66342119999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax\",\n                \"formattedAddress\": \"Thomas Raddall Dr, Halifax, NS B3S, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halifax\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Canada Games Centre (CGC) is a vibrant multi-sport community and recreation centre in Halifax, Nova Scotia. We are a 176,000 sqft facility operated by a non-profit society committed to promoting physical literacy, fitness and wellness, and to supporting the needs of high performance sport & athlete development. The Centre runs sport and recreation programs, camps, fitness classes and so much more in an inclusive environment. Located in Mi’kma’ki, the ancestral and traditional lands of the Mi’kmaq people, the CGC acknowledges the Peace & Friendship Treaties signed in this Territory and recognizes that we are all Treaty People. Together, we inspire healthy active living. Position Summary For the first point of contact at the Canada Games Centre Customer Service Desk, we are looking for enthusiastic, friendly individuals to assist in delivering exceptional customer service and support to all of our guests. Must be able to multi-task and work under the pressure of a busy environment. ResponsibilitiesWelcome and greet all guests – members, drop-ins, corporate, or leisure groupsReceive, respond, and manage all inquiries – on site, phone calls, and email – in a timely mannerCommunicate policies, procedures, updates, and all other required information to guestsAccept and process all payments – cash, credit card, etc.UpsellFollow opening and closing proceduresMaintain files in proper orderBe able to multi-task in a fast-paced environmentAbide by Canada Games Centre policies and procedures – phone etiquette, dress code, etc.Qualifications MandatoryHigh school graduate – some level of post-secondary education is considered an assetExperience working with the public in a similar roleExperience working in a facility or venueCustomer service experience – i.e., the retail or hospitality industriesExperience and comfort using computers and various software programsExperience processing financial transactions – cash handling, payment processing, etc.DesirableDemonstrate strong interpersonal, communication, and listening skillsBe actively engaged and excited about your roleHave a proactive and positive attitudeMember and guest focusedAlways conduct oneself with integrity and professionalismBe detail oriented and well organizedDemonstrated problem solving skills with a solution-based approachWork well under pressureExperience working in a diverse, multi-cultural environmentMotivated by the success of othersUnderstand and appreciate the role that sport and recreation plays in healthy communitiesWorking ConditionsDaytime, evening and weekend availability requiredWorking environment includes physical, emotional, and mental demandsSafe use of all protective / barrier equipment as required by the employerExposure to loud noises and ability to concentrate in a busy environmentNotesCriminal Record & Child Abuse Registry checks will be required as part of the hiring processWhat’s in it for you?Free facility membershipFree parking and close proximity to Halifax TransitAmazing team environmentOrganization committed to extraordinary staff and customer experienceCompensation The compensation for this position is $15.50 per hour (plus 4% vacation pay). Applications Instructions To apply, please submit a cover letter and resume, outlining how you meet the specific qualifications listed in the job posting to Wasan Nayfeh at careers@canadagamescentre.ca by Friday, September 29th, 2023. Please include your full name and the position you are applying for in the subject line. Failure to properly identify your application or attach working documents may result in your application being omitted. We are a welcoming and supportive environment whose goal is to be a diverse workplace representative of the citizens we serve. Indigenous people, persons with disabilities, African Nova Scotians, racially visible persons, women in occupations where they are under-represented, and the LGBTQIA2S+ community are encouraged to self-identify on your application.\",\n            \"location\": \"Thomas Raddall Dr, Halifax, NS\"\n        },\n        {\n            \"id\": \"BDE2B0D9DE7AC32CCE99FE6275D78945\",\n            \"cityName\": \"140 Ellen St, Miramichi, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a41b0dc3577a8904\",\n            \"jobName\": \"Customer Service/Bakery Assistant\",\n            \"companyName\": \"Cake a Chance\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694363426980,\n            \"dateOfPosted\": 1692662081298,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.0016309,\n                    \"lon\": -65.565644\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Miramichi\",\n                \"formattedAddress\": \"Ellen St, Miramichi, NB E1V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Miramichi\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ellen St, Miramichi, NB Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Tuesday-Friday 9-5Saturday 9-3-Have an outgoing personality-Hard-working, efficient-able to multitask-able to work unsupervised-detail oriented-strong work ethic, punctual-provide excellent customer serviceDuties-serving customers-Taking orders in person and over the phone-packing up orders-keeping out front fully stocked-Ensure that the store front is clean-able to stand for 8 hours-must be able to lift 20kg-frost cupcakes/small display cakes--make boxes/cut circles-cleaning/doing dishes-sweep/mop floors-frost cupcakes (will train)-decorating cookies (will train)- keep show case, fridges fully stocked-take inventory-able to help with fondant details for orders is an asset. (can train)*Need food safety courseJob Type: Full-timeSalary: From $16.00 per hourBenefits:Casual dressStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftSupplemental pay types:TipsEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In personApplication deadline: 2023-08-31Expected start date: 2023-09-05\",\n            \"location\": \"Ellen St, Miramichi, NB\"\n        },\n        {\n            \"id\": \"5FBF6F1F0C4D7878248C3648E914FA60\",\n            \"cityName\": \"3900 12 St NE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1daecee555ee028b\",\n            \"jobName\": \"Nutritional Support Customer Service Representative\",\n            \"companyName\": \"Advanced Orthomolecular Research\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694363403324,\n            \"dateOfPosted\": 1693517257539,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.10407319999999,\n                    \"lon\": -114.0365001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"11 St NE, Calgary, AB T2E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"AOR is one of Canada’s fastest growing Nutraceutical health supplement organizations. Our market leading premium products are manufactured and distributed primarily to specialty retailers throughout Canada and the United States.ResponsibilitiesLearn and maintain high level product knowledge of AOR products to help educate customersPromote AOR’s brand and products and capture opportunities to upsell or cross sell AOR productsProcessing orders by phone, fax and emailMaintaining up to date and accurate customer filesHandling customer creditsFilter and direct calls, and emails to the appropriate departmentsSupply relevant marketing materials to customers and fellow staff to ensure informational needs are metResolve customer complaints in a positive, timely, win/win manner. Document issues and actions taken in accordance with company processes for future problem analysis and elimination.Answer all technical questions on nutrition and our product line for customers via the phone, tickets and live chat.Receive monthly training on new and existing products.Investigate complicated customer questions with the research team, and occasionally the Quality Control team.Make suggestions on AOR products for customers based on a condition or symptom they might be trying to correctAssist the Customer Service Manager as necessaryAssist Marketing, Shipping, and Finance departmentWork synergistically with the both the Internal and External teamQualifications and SkillsObtained a Certificate in Holistic Nutrition or equivalent (Required)Completed post- secondary diploma in business, marketing, human resources, health science) is a nice to have but not required.Should have a strong work ethic, inter-personal skills, and independentExperience within a health- related industry would be considered an assetExperience working with Navision would be considered an assetJob Types: Full-time, PermanentSalary: $19.00-$22.00 per hourBenefits:Casual dressDental careDisability insuranceEmployee assistance programExtended health careLife insuranceOn-site parkingPaid time offRRSP matchStore discountVision careWellness programSchedule:8 hour shiftDay shiftMonday to FridayWork Location: In person\",\n            \"location\": \"St NE, Calgary, AB\"\n        },\n        {\n            \"id\": \"5DB6EBB41445BD0E9841B892A7594F2B\",\n            \"cityName\": \"Manitoba\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=76f0aa93ad896733\",\n            \"jobName\": \"Work-At-Home Customer Service RepresentAtive Job Openings (Full-Time)\",\n            \"companyName\": \"Mci Careers\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694362703969,\n            \"dateOfPosted\": 1665853894972,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.7608608,\n                    \"lon\": -98.8138762\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Manitoba, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" LOCATION: Remote Work-at-Home JOB TYPE: Full-Time PAY TYPES: Hourly + Bonus SALARY: $14.50 / hour BENEFITS & PERKS: REMOTE REPRESENTATIVE: Work-From-Home, Paid Training, Paid Time Off, Medical, Dental, Vision, Life Insurance, Retirement, Flexible Schedules, Company Laptop, Daily Contests, Prizes, Casual Dress Code, Regular Raises APPLICATION DETAILS: No Resume Required, Phone Interview POSITION OVERVIEW:  Sydney Call Centre, a MCI company is looking for work at home customer service, help desk, technical support, and sales representatives to support remote work demand. In these roles, you will handle inbound customer inquiries, or troubleshoot basic technical issues, and assist customers in adding or removing products and services. There are full-time positions available for almost any schedule, day, night, seven days a week.  The positions offers a competitive base pay, schedule, level, plus benefits for full-time, paid vacation, and variable bonus and contest incentives. All it takes to get started is for you to complete an easy online application and an informal interview with a talent acquisition specialist. If you do not have your equipment, MCI will provide it. You will need a home broadband connection.  -:  POSITION RESPONSIBILITIES:  WHAT DOES A CALL CENTRE REPRESENTATIVE DO? Develop your abilities and grow with our team, interacting with customers from coast to coast making outbound calls. Call Centre Representatives are responsible for the following tasks: Listen to customers, understand their needs, and resolve customer issues Utilize systems and technology to complete account management tasks Recognize sales opportunity and apply sales skills to upgrade Explain and position the products and processes with customers Appropriately escalate customer dissatisfaction with managerial team Ensure first call resolution through problems solving and effective call handling CANDIDATE QUALIFICATIONS:  WONDER IF YOU ARE A GOOD FIT? MCI provides all new employees with world-class training, so all positive, driven, and confident applicants are encouraged to apply. Ideal candidates for this position are highly motivated, energetic, and dedicated.Qualifications Must be 18 years of age or older High school diploma or equivalent Excellent organizational, written, and oral communication skills The ability to type swiftly and accurately (20+ words a minute) Basic knowledge of Microsoft Office Suite (Excel, PowerPoint, Word, Outlook) Basic understanding of Windows operating system Highly reliable with the ability to maintain regular attendance and punctuality The ability to evaluate, troubleshoot, and follow-up on customer issues An aptitude for conflict resolution, problem solving and negotiation Must be customer service oriented (empathetic, responsive, patient, and conscientious) Ability to multi-task, stay focused and self manage Strong team orientation and customer focus The ability to thrive in a fast-paced environment where change and ambiguity prevalent Excellent interpersonal skills and the ability to build relationships with your team and customers CONDITIONS OF EMPLOYMENT: Must be authorized to work in their country of residence (The United States or Canada) If needed, must be willing to submit up to a LEVEL II background and/or security investigation with a fingerprint. Job offers are contingent on background/security investigation results COMPENSATION DETAILS:  WANT AN EMPLOYER THAT VALUES YOUR CONTRIBUTION? We believe that hard work should pay off, so we make sure that our compensation and total rewards are competitive. Standard starting compensation is commensurate with experience. Regular reviews and raises are awarded based on tenure and performance, so our employees make more each year. Employees earn paid time off as well as paid holidays and paid training opportunities. Regular daily, weekly and monthly incentives are part of the overall compensation our team members enjoy and include monetary incentive and prizes such as computers, tablets, phones, TV’s, trips, tickets, and even cars. In addition to our standard group benefits offering for full-time employees following 90-days of employment, all employees are eligible to opt for our MEC medical plan after only 30-days of employment. Benefits options and plans vary slightly by location. JUST A FEW OF THE BENEFITS Medical, Dental, and Vision Coverage Options Paid Time-Off Advancement Opportunity Fun, Engaging Work Environment Casual Dress Code Cash and Prize Contests PHYSICAL REQUIREMENTS:  This job operates in a professional office environment. While performing the duties of this job, the employee will be largely sedentary and will be required to sit/stand for long periods while using a computer and telephone headset. The employee will be regularly required to operate a computer and other office equipment, including a phone, copier, and printer. The employee may occasionally be required to move about the office to accomplish tasks; reach in any direction; raise or lower objects, move objects from place to place, hold onto objects, and move or exert force up to forty (40) pounds.  REASONABLE ACCOMMODATION:  Consistent with the Americans with Disabilities Act (ADA), or the Canadian Disabilities Act (CDA) it is the policy of MCI and affiliates to provide reasonable accommodation when requested by a qualified applicant or employee with a disability unless such accommodation would cause undue hardship. The policy regarding requests for reasonable accommodation applies to all aspects of employment. If reasonable accommodation is needed, please contact Kate Murph, Vice President of Human Resources, kate.murph@mci.world.  DIVERSITY AND EQUALITY:  At MCI and its subsidiaries, we embrace differences and believe diversity is a benefit to our employees, our company, our customers, and our community. All aspects of employment at MCI are based solely on a person's merit and qualifications. MCI maintains a work environment free from discrimination, one where employees are treated with dignity and respect. All employees share in the responsibility for fulfilling MCI's commitment to a diverse and equal opportunity work environment. MCI does not discriminate against any employee or applicant on the basis of age, ancestry, color, family or medical care leave, gender identity or expression, genetic information, marital status, medical condition, national origin, physical or mental disability, political affiliation, protected veteran status, race, religion, sex (including pregnancy), sexual orientation, or any other characteristic protected by applicable laws, regulations, and ordinances. MCI will consider for employment qualified applicants with criminal histories in a manner consistent with local and federal requirements. MCI will not tolerate discrimination or harassment based on any of these characteristics. We adhere to these principles in all aspects of employment, including recruitment, hiring, training, compensation, promotion, benefits, social and recreational programs, and discipline. In addition, it is the policy of MCI to provide reasonable accommodation to qualified employees who have protected disabilities to the extent required by applicable laws, regulations, and ordinances where an employee works. ABOUT MCI (PARENT COMPANY):  MCI helps customers take on their CX and DX challenges differently, creating industry-leading solutions that deliver exceptional experiences and drive optimal performance. MCI assists companies with business process outsourcing, staff augmentation, contact center customer services, and IT Services needs by providing general and specialized hosting, software, staff, and services.  In 2019 Marlowe Companies Inc. (MCI) was named by Inc. Magazine as Iowa’s Fastest Growing Company in the State of Iowa and was named the 452nd Fastest Growing Privately Company in the USA, making the coveted top 500 for the first time. MCI’s subsidiaries had previously made Inc. Magazine's List of Fastest-Growing Companies 15 times respectively. MCI has fifteen business process outsourcing service delivery facilities in Iowa, Georgia, Florida, Texas, Massachusetts, New Hampshire, South Dakota, New Mexico, California, Kansas, and Nova Scotia.  Driving modernization through digitalization, MCI ensures clients do more for less. MCI is the holding company for a diverse lineup of tech-enabled business services operating companies. MCI organically grows, acquires, and operates companies that have a synergistic products and services portfolios, including but not limited to Automated Contact Center Solutions (ACCS), customer contact management, IT Services (IT Schedule 70), and Temporary and Administrative Professional Staffing (TAPS Schedule 736), Business Process Management (BPM), Business Process Outsourcing (BPO), Claims Processing, Collections, Customer Experience Provider (CXP), Customer Service, Digital Experience Provider (DXP), Account Receivables Management (ARM), Application Software Development, Managed Services, and Technology Services, to mid-market, Federal & enterprise partners. MCI now employs 10,000+ talented individuals with 150+ diverse North American client partners across the following MCI brands: GravisApps, Mass Markets, MCI Federal Services (MFS), The Sydney Call Center, OnBrand24, and Valor Intelligent Processing (VIP).  DISCLAIMER:  The purpose of the above job description is to provide potential candidates with a general overview of the role. It's not an all-inclusive list of the duties, responsibilities, skills, and qualifications required for the job. You may be asked by your supervisors or managers to perform other duties. You will be evaluated in part based upon your performance of the tasks listed in this job description. The employer has the right to revise this job description at any time. This job description is not a contract for employment, and either you or the employer may terminate employment at any time, for any reason. REGARDING COVID-19:  As an employer supporting critical Federal, State, Provincial, and Commercial clients, we have taken steps to ensure that we remain operational while taking every precaution possible to prevent the spread of COVID-19 and keep our employees safe. Measures include social distancing for those working on-site, frequent deep cleaning and disinfecting of workstations and common areas, daily contactless temperature checks for those essential employees working on-site, travel policies limiting travel and mandatory quarantine, reporting and quarantine processes and policies for those exposed, and requesting masks to be worn when on-site employees are not at their workstation.REGARDING MASKS To help protect our candidates and employees, we are REQUESTING that all on-site candidates wear a mask to interviews and training. In locations where state or local government has mandated the use of masks, we will abide by the mandate, and REQUIRE masks be worn when on-location. For more information on MCI’s response to COVID-19 please visit www.mci.world/covid-19.\",\n            \"location\": \"Manitoba\"\n        },\n        {\n            \"id\": \"CDA0BDB1AC0AED665880E54E60B6F0D7\",\n            \"cityName\": \"60 Calder St, Red Deer, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fbcf853e5d5ea076\",\n            \"jobName\": \"Customer Service/Retail Sales (Shine Genius)\",\n            \"companyName\": \"Mint Smartwash\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694362651293,\n            \"dateOfPosted\": 1692658282748,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.2690328,\n                    \"lon\": -113.8114955\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Red Deer\",\n                \"formattedAddress\": \"Red Deer, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Red Deer County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Red Deer, AB\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"COMPANY OVERVIEWMint Smartwash (“Mint”) is an unparalleled growth story in the express tunnel car wash market space, strategically headquartered in Calgary, Alberta, with operations located in Western Canada and Montana, USA. The mission of Mint Smartwash is To provide a superior car wash experience delivering epic shine while saving time and feeling mint! Mint is highly focused on capitalizing on their successes to date, as an industry leader, innovator, and employer of choice to expand their presence across our geographical markets. The Mint leadership team is a dedicated group of car wash enthusiasts with strong operational and business competencies exemplifying a growth mind set, in the pursuit of excellence. At Mint we look to SHINE everyday through living our corporate values of being MAVERICKS, helping our COMMUNITIES, investing in the future of our PEOPLE, neutralizing our ENVIRONMENTAL impact and delivering EXCELLENCE in customer experience.COMPENSATION· Base pay starting at $15.00 per hour.· UNLIMITED earning potential! Earn an extra $15.00 or MORE when you match customers with the right membership product!· Profit sharing through our monthly bonus program! Sharing up to 1% of revenue by achieving our targets and following our processes while achieving our shared goals.· Investing in the future of our people through our professional development / scholarship program.REPORTINGReports directly to General Manager, takes direction from Assistant Managers & Supervisors.Why does this role exist? To build customer relationships through great service. Providing sales support to customers and driving membership sales for the business. Shine Genius is also responsible to identify prohibited vehicles and ensure they do not enter the wash.CORE ACCOUNTABILITIES(listed in order of importance)Customer Service: Ensure we are providing outstanding customer service throughout the wash experience. Provide our customers with knowledgeable and friendly service.Membership and Wash Sales: Develop sales skills to drive membership sales at the location.Tunnel Operations: Develop skills to operate and troubleshoot the equipment in the wash tunnel, and vacuum plaza.Safety Performance: Be an active participant in safety meetings, hazard assessments and training.Facility Upkeep: Ensuring that all aspects of a Mint Smartwash location is neat and tidy all the time.Professional Development: Ensure you are continuously learning and growing your skillset through Mint's competency-based training program.KEY RESPONSIBILITIESCustomer Service· Greet the customer with a smile and wave, this is the foundation for creating a welcoming and fun environment.· Embody professionalism with colleagues and customers. Wear the Mint uniform and take pride in its appearance.· Represent Mint Smartwash in the community in a positive manner.· Guide and mentor new employees to become successful Shine Genius’s.Membership and Wash Sales· Follow the Mint sales process and execute on all aspects of it.· In depth knowledge of the products and services we offer.· Be able to execute sales promotions.· Consistently execute on sales targets.· Screen vehicles at the paystation and radio any requirements to the operations staff.Tunnel Operations· Develop in-depth knowledge of the wash equipment, and how each component is supposed to operate.· Manage the tunnel. This includes monitoring no pile-ups and being in the tunnel at all times that a vehicle is going through the wash.· Work with the team to improve wash quality.· Work with the team to ensure we meet uptime targets for the wash.· Support maintenance personnel by keeping the equipment room in good order and reporting any issues or leaks that develop.Understand the car wash chemistry and how to add, document and work on chemical panels.Safety Performance· Bring forward safety concerns to your supervisor and log them as Hazard ID's in Mint Ops.· Complete, understand and put into action the required safety training.· Participate in Safety Meetings.Facility Upkeep· Own the daily tasks that keep the office, pay stations, vacuum lot and entire site looking Mint.· Actively look for ways to improve the cleanliness or appearance of the facility.· Become proficient with Mint Operations software and how to complete tasks and checklists.Professional Development· Become an expert in all tasks related to the Shine Genius position.· Work through the competency-based training program to develop the skills required for the next role.CORE COMPETENCIES· Customer Orientation: Focused on ensuring we provide excellent customer service. This includes direct interaction as well as wash quality and facility and employee presentation.· Team Player: Concerned with team success as well as individual performance; works well with other team members.· Safety Leadership: Robust understanding of safety principles and ability to lead, train and enforce safe operating procedures.· Inquisitive: Seeks to understand and asks questions about things they don't know. Empowers themselves with knowledge.· Well-Developed Communication Skills: Fosters mutual understanding using solid verbal communication skills; able to effectively influence and positively negotiate with others.Job Types: Full-time, Part-time, PermanentPart-time hours: 20 per weekSalary: From $15.00 per hourBenefits:Dental careExtended health carePaid time offVision careSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayMorning shiftWeekends as neededSupplemental pay types:Commission payEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Red Deer, AB\"\n        },\n        {\n            \"id\": \"5A6F30B19C5C7D5971E7C25545C0F6BA\",\n            \"cityName\": \"Whitby, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8c7edcf5b3bbbb47\",\n            \"jobName\": \"Clerk, Customer Service\",\n            \"companyName\": \"P.D. Mclaren Limited\",\n            \"rowSalary\": \"$45,000 a year\",\n            \"date\": 1694361477341,\n            \"dateOfPosted\": 1693511345102,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8975446,\n                    \"lon\": -78.94293290000002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Whitby\",\n                \"formattedAddress\": \"Whitby, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Whitby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: BilingualHours: 40 hours per weekEducation: Secondary (high) school graduation certificateExperience: 7 months to less than 1 yearTasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Receive and log complaints Receive payments Answer written and oral inquiries Prepare or oversee preparation of reports, briefs, bibliographies, speeches, presentations, Website content and press releases Explain procedures, risks and benefits to clients Computer and technology knowledge Internet MS Excel MS Outlook MS Word MS PowerPoint MS Office Work conditions and physical capabilities Attention to detail Fast-paced environment Tight deadlines Work under pressure Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Judgement Ability to multitask Screening questions Are you currently a student? Are you currently legally able to work in Canada? Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Health benefits Dental plan Health care plan Paramedical services coverage Long term benefits Long-term care insurance\",\n            \"location\": \"Whitby, ON\"\n        },\n        {\n            \"id\": \"F165ABD4D37553E78784130B34F99AFC\",\n            \"cityName\": \"1055 St Laurent Blvd, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2f88a28757d6ac50\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Adonis Groupe\",\n            \"rowSalary\": \"From $16.10 an hour\",\n            \"date\": 1694360730163,\n            \"dateOfPosted\": 1692655831593,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4184938,\n                    \"lon\": -75.6342112\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"St. Laurent Blvd, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking a multi-talented and highly motivated customer service professional to join our team. The ideal candidate will have strong communication skills, a keen attention to detail, and the ability to quickly learn and adapt to the ever-changing retail environment. This position is a great fit for an individual who possesses these skills and is interested in working in a dynamic and fast-paced retail environment.SummaryAs the last point of contact with customers, it is the cashier's responsibility to ensure that the customer's experience has been positive, that they have found everything they were looking for and that they leave the store with a smile. The Cashier takes care of the payment stage, balances the register and finally, makes sure that his workstation is clean.Specific Tasks· Greet customers and make them feel welcome· Advise and answer customers' questions· Provide exemplary customer service· Ask the customer if they have found everything they were looking for; if not, ask a clerk or cashier's assistant to pick up the product· Ensure that all items have been paid for and there are no products on the bottom of the cart· Ensures that the customer is of legal age to purchase liquor and lottery products· Record all sales in accordance with store procedures· Collects money due from customers (cash, credit or debit card)· Completes purchase orders for delivery· Assist in the packaging of products when the packer is not available· Contact the packer or clerk to verify the price of a product· Clean the work area (carpet and cash counter)· Make cash deposits during the day, according to policy· Count the cash float, according to policy· Close the cash register, produce the cash report and make deposits· Adhere to store dress and personal hygiene code· Adhere to safety standards and wear personal protective equipment as required· Follow food safety procedures as required by the departmentEligibility Criteria· Cashier Experience is an asset· Past work experience in a grocery store setting is an AssetCompetencies· Focused on excellent customer service· Honesty and speed· Team player· Autonomous and resourceful· Sense of responsibilityThe Cashier works as a team with the members of the Department. They also interact with customers in order provide them with good service.Adonis welcomes and encourages applications from people with disabilities. Every effort will be made to provide accommodations requested by candidates taking part in all aspects of the selection process.Job Type: Full-timePay: From $16.10 per hourBenefits:On-site parkingDay range:Every WeekendMonday to FridayShift:Day shiftEvening shiftWork setting:Grocery storeWork Location: In person\",\n            \"location\": \"St-laurent, Boulevard, Ottawa, ON\"\n        },\n        {\n            \"id\": \"2440F44B646233C725F496172BA83E39\",\n            \"cityName\": \"Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d50f1931e01b0fb3\",\n            \"jobName\": \"Customer Service Representative - Insurance\",\n            \"companyName\": \"Recrute Action Inc.\",\n            \"rowSalary\": \"$21.02 an hour\",\n            \"date\": 1694360574810,\n            \"dateOfPosted\": 1692655676076,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.64876350000001,\n                    \"lon\": -63.5752387\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax Regional Municipality\",\n                \"formattedAddress\": \"Halifax Regional Municipality, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halifax Regional Municipality\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 2 years to less than 3 yearsWork setting Insurance company Tasks Answer inquiries and provide information to customers Computer and technology knowledge MS Windows Sales experience Call centre Security and safety Criminal record check Work conditions and physical capabilities Attention to detail Fast-paced environment Personal suitability Efficient interpersonal skills Excellent oral communication Excellent written communicationWork Term: TemporaryWork Language: EnglishHours: 37.5 hours per week\",\n            \"location\": \"Halifax, NS\"\n        },\n        {\n            \"id\": \"9BBFFDD0FF6FF3F241C017CDF47CB4E0\",\n            \"cityName\": \"140 Ellen St, Miramichi, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=defd90c2caf2bc22\",\n            \"jobName\": \"Customer Service/Bakery Assistant\",\n            \"companyName\": \"Cake a Chance\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694360373756,\n            \"dateOfPosted\": 1692662087851,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.0016309,\n                    \"lon\": -65.565644\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Miramichi\",\n                \"formattedAddress\": \"Ellen St, Miramichi, NB E1V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Miramichi\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ellen St, Miramichi, NB\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Tuesday-Friday 9-5Saturday 9-3-Have an outgoing personality-Hard-working, efficient-able to multitask-able to work unsupervised-detail oriented-strong work ethic, punctual-provide excellent customer serviceDuties-serving customers-Taking orders in person and over the phone-packing up orders-keeping out front fully stocked-Ensure that the store front is clean-able to stand for 8 hours-must be able to lift 20kg-frost cupcakes/small display cakes--make boxes/cut circles-cleaning/doing dishes-sweep/mop floors-frost cupcakes (will train)-decorating cookies (will train)- keep show case, fridges fully stocked-take inventory-able to help with fondant details for orders is an asset. (can train)*Need food safety courseJob Type: Full-timeSalary: From $16.00 per hourBenefits:Casual dressStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftSupplemental pay types:TipsEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In personApplication deadline: 2023-08-31Expected start date: 2023-09-05\",\n            \"location\": \"Ellen St, Miramichi, NB\"\n        },\n        {\n            \"id\": \"E4930A03AD5751ACD144F5AE9F7B6985\",\n            \"cityName\": \"Kenora, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=16237b593e382179\",\n            \"jobName\": \"Clerk, Customer Service\",\n            \"companyName\": \"Xtracash Ltd\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694360364590,\n            \"dateOfPosted\": 1692657332860,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.7670416,\n                    \"lon\": -94.4893924\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kenora\",\n                \"formattedAddress\": \"Kenora, ON P0V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Kenora District\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kenora\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Will trainWork setting Private sector Security and safety Bondable Criminal record check Transportation/travel information Own transportation Work conditions and physical capabilities Attention to detail Personal suitability Excellent written communication Organized Reliability Team playerWork Term: PermanentWork Language: EnglishHours: 20 to 30 hours per week\",\n            \"location\": \"Kenora, ON\"\n        },\n        {\n            \"id\": \"0B8E1FB93589746EC8067EFFD4B001B0\",\n            \"cityName\": \"Harrow, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6ed2c52c118497e3\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Viewpointe Estate Winery\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694357120230,\n            \"dateOfPosted\": 1692657234468,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.0355591,\n                    \"lon\": -82.918148\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Essex\",\n                \"formattedAddress\": \"Harrow, Essex, ON N0R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Essex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Essex\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Viewpointe Estate Winery is looking for a qualified part-time candidate for Customer Service Associate . Are you someone that is friendly, well spoken and has a passion for wine with an interest to develop that further? Capable of providing guests with a memorable and enjoyable experience?We strive to make all of our staff and guests feel welcomed and appreciated. We are looking for someone with a great work ethic and the integrity who is capable of providing the highest level of customer satisfaction. This candidate will be working in the Tasting Bar, on the Patio and in Retail Store.Smart serve certification is a must.Looking for someone with a flexible schedule but capable of working Day shifts Daily including weekends and holidaysThe Candidate should:Be able to provide the highest level of customer service at all times (for the guests' entire experience)Have 1-3 years experience in the wine, hospitality or retail industryBe able to anticipate guests' needs, offer suggestions and anticipate customer concerns and requestsBe responsible for educating guests on Viewpointe's wines & wine-making processes in a friendly, informative, professional way , including suggestive-selling to provide the customer with a complete satisfying experience.Be able to effectively operate the POS system with accuracy ,efficiency and provide accurate cash counts and perform opening & end-of-shift closeout tasks.Stock shelves and maintain wine inventory levelsEnsure that the retail area & other common areas are kept swept, mopped & cleaned ,including washrooms, halls and the outdoor patio areasBus and clear tables as well as sanitizing as per Covid guidelinesAssist with promotion, display and marketing of merchandise and ensure specials, features and/or events are highlightedPossess presentation skills-leading guest through tastings or toursBe able to lift 40 pounds (wine cases)Be able to work independently and within a team structure.Have excellent written and oral communication skillsHave the ability to organize & prioritize the workload and possess quick decision-making skills and withstand a high-pressure environment.Follow all policies, procedures and service standardsPerform other duties as assignedViewpointe welcomes and encourages applications from people with disabilities. Accommodations are available on request for candidates taking part in all aspects of the selection processPart-time hours: 10-24 per week*Job Types: Part-time, CasualSalary: $16.50 per hourCOVID-19 considerations:All customers are required to where a mask until seated, PPE provided, curbside service availableBenefits:Discounted or free foodStore discountCOVID-19 precautionsPPE provided, curbside service availableJob Types: Part-time, Fixed term contract, SeasonalContract length: 6 monthsPart-time hours: 10-24 per weekSalary: $16.50 per hourBenefits:Store discountDay range:HolidaysMonday to FridayWeekend availabilityShift:Day shiftExperience:sales: 2 years (preferred)customer service: 2 years (preferred)Work Location: In personExpected start date: 2023-08-28\",\n            \"location\": \"Harrow, ON\"\n        },\n        {\n            \"id\": \"86A02E302D9BB001C96DBBD5B3F80100\",\n            \"cityName\": \"Central Mountain Air in Campbell River, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5a0943cd04b1fb68\",\n            \"jobName\": \"Customer Service And Ramp Agent\",\n            \"companyName\": \"Central Mountain Air\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694356386877,\n            \"dateOfPosted\": 1693508667664,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.03312260000001,\n                    \"lon\": -125.2733353\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Campbell River\",\n                \"formattedAddress\": \"Campbell River, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Strathcona\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Campbell River\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Central Mountain Air, we pride ourselves in providing vital air connectivity to remote communities nestled within the stunning landscapes of Alberta and British Columbia. Our commitment to safety, reliability, and exceptional customer service is at the core of everything we do. Join our dedicated team and become an integral part of bringing people together and fostering economic growth in these unique regions. We are currently seeking a Part-Time Customer Service Agent/Ramp Agent to join our team at our Campbell River, BC base.Customer Service Agents are part of a team that works in conjunction with crew members and ground agents to escort and board passengers, take reservations, and maintain baggage accuracy and safety.Customer Service Agents report to the Customer Service Supervisor.Job ResponsibilitiesCustomer Service AgentCheck-in and greeting passengers, taking reservations and handling payments (when necessary)Responding to passenger inquiriesAssisting passengers with disabilities during deplaning and enplaningProcessing baggage and cargoGate operations and flight closure, communicating load counts to flight crewsOther duties as assignedRamp AgentHandling passenger baggage and cargo while adhering to all ramp/airside methods and standardsMarshalling aircraft in and out of the ramp area safelyOperating and positioning all airside equipmentPerforming basic baggage equipment maintenance checksAssisting passengers with disabilities during deplaning and enplaningCoordinate aircraft de-icingAccepting and receiving cargoCommunicate load counts to flight crewsOther duties as assignedJob RequirementsMust have a valid driver’s license or transferrable license (“N” license at minimum)Ability to lift 70lbs/32kgs repetitivelyAbility to bend, kneel, crawl, stoop, climb repetitivelyWork in confined spacesSafety conscious- able to keep safety a priority in all tasksSuperior customer service skillsGood communication and interpersonal skillsAbility to work independently as well as in a team environmentAbility to work flexible hours, including split shifts and weekend coverageWillingness to work outside in adverse weather conditionsGood computer skillsA positive attitude with the ability to be flexibleMust be able to obtain and retain an Airport RAICBenefits of Working at Central Mountain Air (part-time employees)Standby travel within Central Mountain Air network for employees, their eligible family members, and their buddies (not including fees and taxes)Free cargo shipping for employees on CMA flightsCentral Mountain Air is an equal opportunity employer and values diversity in our workplace. Our requirement is that you have the skills and abilities to do the job and the attitude of a team player. We encourage applications from all qualified individuals regardless of race, nationality, ethnic origin, color, religion, age, sex, sexual orientation, marital status, family status, and disability.Central Mountain Air thanks all applicants, however, only those selected for an interview will be contacted.Job Type: Part-timePart-time hours: 2 - 3 per weekSalary: $17.00-$18.00 per hourAbility to commute/relocate:Campbell River, BC V9H 1T5: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Campbell River, BC\"\n        },\n        {\n            \"id\": \"6C8DEC921DC1760B81FC910E24E6BAB0\",\n            \"cityName\": \"700 Penner St, Virgil, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c1e3d3b0ba042e26\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Penner Building Centre\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694355575613,\n            \"dateOfPosted\": 1692655486184,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.22555939999999,\n                    \"lon\": -79.12088729999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara-on-the-Lake\",\n                \"formattedAddress\": \"Penner St, Niagara-on-the-Lake, ON L0S, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Elden Street, Niagara-on-the-Lake, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you looking for a part time scenario where you can work 3 days a week and feel like your part of a family? we are looking to hire a part time cashier to work through out the week and on the very rare occasion on a saturday. We are only ever open till 6pm and we are always closed on Sundays. This position will be ongoing and is not a seasonal job so we are hoping to find someone local and part of the NOTL and Virgil community. A positive attitude and a smile mean more to us that years of experience so don't worry about having an extensive resume with a lot of experience, we can train the cashier part but you need the smile.If this sounds like what you need and are looking for please apply and we will get back to you asap.Job Types: Part-time, PermanentPart-time hours: 18-28 per weekSalary: From $15.50 per hourBenefits:Store discountDay range:Weekends as neededShift:10 hour shift8 hour shiftDay shiftShift availability:Day Shift (preferred)Work Location: In personExpected start date: 2023-09-08\",\n            \"location\": \"Elden Street, Niagara-on-the-Lake, ON\"\n        },\n        {\n            \"id\": \"F8FD7348B23AFB85A0EDC58D65B0A272\",\n            \"cityName\": \"Calforex Currency Exchange in Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9b913b3bc14aaac0\",\n            \"jobName\": \"Teller/Customer Service Representative\",\n            \"companyName\": \"Calforex Currency Exchange\",\n            \"rowSalary\": \"$16–$18 an hour\",\n            \"date\": 1694355505938,\n            \"dateOfPosted\": 1693506956047,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"NO STUDENTS/MUST SPEAK FRENCH AND ENGLISH AT HIGH LEVELCalforex is a rapidly growing foreign exchange company with branches across Canada. We are currently seeking Foreign Exchange Tellers in our Ottawa branch.Hiring either Full-Time or Part-Time positions with shifts scheduled between 10:00 am -8:00 pm seven days a week.Applicants MUST have flexible availability in order to apply for this position.The position of teller is of a front line, ambassador to both our local clientele and tourists from across the globe. We are looking for candidates to fulfill the following responsibilities:Offer excellent customer service and professionalismProbe customers to accurately determine their needs and offer appropriate products and services from Retail, Corporate and Private Client departmentsCash and time management experience (an asset)Bilingual (English and French) preferableSuccessful candidates will possess the following skill sets and qualifications:Friendly and enjoys working with the publicProfessional and courteous phone etiquetteHigh school diploma and proficient with computersAbility and desire to learn and growA professional, business dress code is in place and must be adhered to at all times. Applicants must be bondable and be able to pass a police background check.Job Type: Full-TimeSalary: $16.00 to $18.00 /hourFull-time hours: 30-40 per weekJob Types: Part-timeSalary: $16.00-$18.00 per hourCOVID-19 considerations:We have policies in place that all employees and customers must adhere to.Job Type: Full-timeSalary: $16.00-$18.00 per hourSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayNight shiftWeekends as neededExperience:customer service: 2 years (preferred)Language:French (required)Work Location: In person\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"512B4B68D8944C5B8135D604AEE293B0\",\n            \"cityName\": \"27 Allstate Pky, Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1bd750ff9d5b8897\",\n            \"jobName\": \"Customer Service Associate - 28467\",\n            \"companyName\": \"Exela Technologies\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694355504750,\n            \"dateOfPosted\": 1693506955297,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8561002,\n                    \"lon\": -79.3370188\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Markham\",\n                \"formattedAddress\": \"Markham, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Markham\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Key responsibilities include:Backfill for front receptionist- greet visitors, answer phones, and hospitality dutiesReview and process confidential and extremely time-sensitive applicationsIdentify objective data and enter (“key what you see”) at a high level of productivity and accuracy.Perform data entry task from a paper and/or document imageUtilize system functions to perform data look-up and validationMaintain high degree of quality control and validation of the completed workIdentify, classify, and sort documents electronicallyUpdate computer records on multiple local databasesLocate, retrieve, maintain, organize and assist usersRetrieve and/or archive documentsEnsure operating and quality standards are met based on service objectivesMaintain accuracy of required reports and logsEnsure the highest level of customer careEnsure adherence to business guidelines, safety, and security proceduresSupport financial results by minimizing site waste and reworkCreate excel spreadsheets, mail merge projects and word documentsAbility to multi-task and manage multiple priorities and deadlines is criticalPerform A/P functionsAssist with general facility computer task and supportProcess system access requests for clientDependable, Self-motivated and accountableMust be a team player with a solution minded attitudeTake direction from supervisor or site managerParticipate in cross-training and perform other duties as assigned (answer phones, outgoing shipments, etc)Perform other tasks as assignedAdhering to all safety procedures PositionRequirements:High school diploma or equivalent (GED) requiredMinimum of 1 year A/P related experience preferredAbility to communicate both verbally and written with customers and company personnel requiredGeneral knowledge of Access and Lotus notes databasesMust become fully familiar with a variety of on-site equipment and be capable and willing to perform first level troubleshootingStrong organizational and administrative skills preferredProficient with PC and windowsProficient in MS OfficeAbility to walk, sit, stand or sit for long periods (possibly entire shift)Ability to adhere to employee attendance policyPreferred Qualifications:One year administrative/Accounts Payable or related work experience preferredProven organizational and multi-tasking skills“The pay range for this position starts at $17; however, base pay offered may vary depending on job-related knowledge, skills, and experience. Bonus opportunities may be provided as part of the compensation package, in addition to a full range of medical, financial, and/or other benefits, dependent on the position offered.”Job Types: Full-time, PermanentPay: $17.00-$18.00 per hourDay range:Monday to FridayShift:8 hour shiftExperience:Front desk: 1 year (preferred)Administrative: 1 year (preferred)\",\n            \"location\": \"Markham, ON\"\n        },\n        {\n            \"id\": \"E66952C69E8EDCC9D62B1285E31C91EB\",\n            \"cityName\": \"120 Lowson Cres, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2230d8133c3339b0\",\n            \"jobName\": \"E-Store Customer Service Representative\",\n            \"companyName\": \"The Quark Group\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694355410328,\n            \"dateOfPosted\": 1692655592817,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8357439,\n                    \"lon\": -97.20617569999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Lowson Cres, Winnipeg, MB R3P, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"In Office Position:The E-Store Customer Service Representative performs the daily functions of the Quarks E-Store: Upload merchandise details to the website, generating picking information for the stores, and handle troubleshooting, complaints, returns, and phone orders with exceptional customer service skills.ResponsibilitiesE store Customer Service:· Respond to email and telephone queries.· Handle customer complaints, provide appropriate solutions and alternatives within the time limits; follow up to ensure resolution.· Process special orders, exchanges and returns.Website Updates:· Upload images and group merchandise for the E-Store.\\\\· Communicate with vendors to receive images in advance of upcoming season.- Various other website maintenance dutiesOrder Fulfillment:· Generate picking info to stores.· Supply shipping information to stores.Other:· Adhere to all applicable federal and provincial regulations and company policies.· Consistently look for operational improvements.· Other duties, relevant to the position, shall be assigned as required.Requirements· 1 Year of proven customer support experience or experience as a client service representative.· Strong phone contact handling skills and active listening.· Ability to multi-task, prioritize, and manage time effectively.· Excellent communication skills.· Proficient with Microsoft Excel, Word and Outlook. Knowledge of Imagine is an asset.· Team oriented, and able to manage stress.· Bilingual is an asset.Job Type: Full-timeSalary: $16.50 per hourBenefits:Dental careExtended health carePaid time offSchedule:8 hour shiftEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Lowson Cres, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"95260582D134B9257892A590239C5FB6\",\n            \"cityName\": \"London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ee360d088118769e\",\n            \"jobName\": \"Vmi Customer Service Representative\",\n            \"companyName\": \"Wfs Ltd\",\n            \"rowSalary\": \"$19.35 an hour\",\n            \"date\": 1694355407284,\n            \"dateOfPosted\": 1693506619947,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9849233,\n                    \"lon\": -81.2452768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"POSITION TITLE: VMI Customer Service RepresentativeThis is a Full Time position on the day shift. WFS Ltd. is an industrial distribution company founded in 1955. In 2014, WFS was acquired by Grainger, marking the beginning of a new and exciting chapter in WFS’ evolution. With multiple branch locations across Southwestern Ontario, and approximately 250 team members, we help professionals keep the world working, while creating a company where dedicated talented people can thrive.At WFS our true value is our people. Attracting and engaging the best team members is the key to our success. We offer a positive work environment, and we value diversity and inclusion, which makes WFS a great place to work. Are you looking for a career that offers competitive pay for performance, comprehensive benefits, an attractive pension plan, and challenging and rewarding job opportunities?Join us today!KEY DUTIES AND RESPONSIBILITIES:Travel to customer facilities in London and surrounding area on a daily or weekly basisPerform inventory cycle counts and inventory replenishment for on-site inventory and vending machine inventory at customer stocking locationsInteract with the customer’s personnel to provide the highest level of customer serviceFill customer orders and package orders for deliveryComplete deliveries as requiredOrganize and maintain accurate inventory at all stocking locationsWork with WFS Sales staff to create VMI programs for customersAdvise Inside Customer Service Representative of customer orders and requestsFollow all safety protocol in compliance with WFS' Health and Safety policies, the Occupational Health & Safety Act and the customer’s safety programSupport the WFS Quality SystemAll other duties as assignedREQUIRED EXPERIENCE AND QUALIFICATIONS:Minimum of 1 year warehouse experience, and 2 years’ customer service experienceCompletion of high school diploma, or equivalent experienceAbility to self-manage, self-motivate, and work independentlyDemonstrated winning attitudeSuperior organizational and time management skillsProven ability to build relationships with customers and business partners, and communicate effectivelyIntermediate computer literacy including Microsoft applications (Excel, Word, etc.)Ability to learn and retain new software programs relating to industrial vendingPossession of a valid G driver’s license and a clean driver’s abstractIf you don't meet every qualification, know that at WFS Ltd. we are dedicated to building a diverse, inclusive, and authentic workplace. So, if you're excited about this role but your past experience doesn't align perfectly with every skillset in the job description, we encourage you to apply anyway. You may be just the right candidate for this or other roles.WFS strives to be an employer of choice, to attract and retain top diverse talent, and to provide a safe and positive work environment for all of its team members. As part of the WFS hiring process, pre-employment background checks will be required for all external candidates. Internal candidates will be required to undergo a pre-employment background check when they move from a non-driving role to a driving role, and/or into a leadership position.WFS is an Equal Opportunity Workplace. All applicants who we believe to be qualified will receive consideration for employment without regard to race, religion, sex, sexual orientation, gender identity, national origin, age, or disability. Accommodations are available on request for all persons with disabilities taking part in the selection process.Job Type: Full-timePay: $19.35 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftMonday to FridayApplication question(s):What are your salary expectations for this position?Shift availability:Day Shift (required)Willingness to travel:50% (required)Work Location: On the road\",\n            \"location\": \"London, ON\"\n        },\n        {\n            \"id\": \"D73EBEEFFA3E26F81AEFA3F6A1A7FB22\",\n            \"cityName\": \"3105 Winston Churchill Blvd, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2fcebe79d8b0a686\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Cell N Computer\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694355333380,\n            \"dateOfPosted\": 1672355604166,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5506821,\n                    \"lon\": -79.7195594\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Winston Churchill Blvd, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Maintaining a positive, empathetic and professional attitude toward customers at all times.Responding promptly to customer inquiries.Communicating with customers through various channels.Acknowledging and resolving customer complaints.Knowing our products inside and out so that you can answer questions.Processing orders, forms, applications, and requests.Keeping records of customer interactions, transactions, comments and complaints.Communicating and coordinating with colleagues as necessary.Providing feedback on the efficiency of the customer service process.Ensure customer satisfaction and provide professional customer support.Organizing and shelving products, if neededJob Type: Part-timeSalary: $15.00-$16.00 per hourBenefits:On-site parkingStore discountSchedule:4 hour shiftMonday to FridayWeekend availabilitySupplemental pay types:Commission payCOVID-19 considerations:To keep our employees as safe as possible, we have installed clear plastic barriers and provided masks, gloves, and hand sanitizers. Additionally, masks are mandatory for Employees and Customers inside.Work Location: In person\",\n            \"location\": \"Winston Churchill Blvd, Mississauga, ON\"\n        },\n        {\n            \"id\": \"40C5251AFCD86174721FCD341B24A56E\",\n            \"cityName\": \"Aurora, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c5fec82ccb34d070\",\n            \"jobName\": \"Insurance Customer Service Representative\",\n            \"companyName\": \"Gowda-Singh Insurance Inc.\",\n            \"rowSalary\": \"$44,000 a year\",\n            \"date\": 1694354354936,\n            \"dateOfPosted\": 1693508806665,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.00648,\n                    \"lon\": -79.450396\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Aurora\",\n                \"formattedAddress\": \"Aurora, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Aurora\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 44000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    44000.0\n                ],\n                \"range\": {\n                    \"gte\": 44000.0,\n                    \"gt\": null,\n                    \"lte\": 44000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Insurance - Customer Service Representative Desjardins Agent Team Member Location: Aurora, ON Type: Full Time, Permanent, 100% In office positionThank you for your interest and time in reviewing our open posting! My name is Samantha Gowda-Singh and I am a Desjardins Insurance Agent looking for an energetic, driven and competitve sales professional interested in joining my team, helping our clients through value-based conversations and providing a truly remarkable client experience! If you are motivated, honest, indepenedent, and looking for a long-term career with a supportive team then this might just be the opportunity for you!About Our Team & Office SpaceWe help customers with their insurance and financial services needs, including Auto Insurance, Home Insurance, Life Insurance, Business InsuranceOur entire team works from our office location, and we recently moved to our new office space located in Aurora, ONWe currently have 6 team members at our agencyWe hold monthly team meetings that include lunch, where we always support a local small businessBeverage & snack station at the office included (e.g. coffee, tea, water)We love supporting our local community! e.g. participating in Chamber of Commerce events like the annual Street Festival & Home Show, donating to our local food banks.Responsibilities:Provide efficient, and exceptional customer service each and every time you interact with a client Service can include responding to telephone, email or walk-in inquiries regarding insurance eligibility, coverages, changes, claim submissions and billing clarifications.Work with the team to establish sales goals that will contribute to the agency's growth and then executing on the plan laid out by the team to achieve these goalsComplete administrative tasks as neededRequirements:Property & Casualty OTL license (preferred/must be able to obtain within 1 month of a job offer) please note all job offers are conditional upon successful completion of the OTL license - learn more about the exam through the Insurance Institute of Ontario.Previous sales or customer service experience is an assetExcellent communication skills - written, verbal and listeningProactive in problem-solvingAbility to multi-taskAbility to make presentations to potential customersstrong typing speedCompensation Package highlights:Base salary starting at $42,000 increase to $44,000/year, after successful completion of probationary period (6 months) as well as obtaining OTL license OTLEmployee benefitsUncapped income earning potential through sales commissions and incentivesPaid trainingPaid vacation (starting at 3 weeks/year)Paid personal daysPaid sick daysThese positions are with an independent contractor agent that is part of the Desjardins exclusive agent network, not with Desjardins Group or its subsidiaries. This agents’ employees are not employees of Desjardins. Independent contractor agents are responsible for and make all employment decisions regarding their employees. Samantha Gowda-Singh - Desjardins Insurance Agent Company Website: www.gowdasingh.com\",\n            \"location\": \"Aurora, ON\"\n        },\n        {\n            \"id\": \"7C675EF4DE321BE4A3D22634FFB2F01A\",\n            \"cityName\": \"Allseas Fisheries Corp. in Etobicoke, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d899f7542282b319\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Allseas Fisheries Corp.\",\n            \"rowSalary\": \"$20–$23 an hour\",\n            \"date\": 1694354228285,\n            \"dateOfPosted\": 1693506945221,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6204946,\n                    \"lon\": -79.5131983\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Etobicoke, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service RepresentativeABOUT USSince 1986, Allseas Fisheries is the industry leader in Canada in the development, marketing and direct distribution of fresh and frozen fish and seafood. Allseas Fisheries strives to provide its customers with the highest quality product combined with value in a wide line of fish and seafood products from around the world as well as value-added products.SUMMARYWe have an exciting career opportunity for a full-time Customer Service Representative to become part of our growing team! As a customer service rep, you will be required to interact with customers to address their concerns, answer their questions, and assist them with their needs. This role will be reporting to the President.KEY POSITION ACCOUNTABILITIES· Taking customer orders accurately in-person or over the phone.· Actively promotign existing and newly available goods.· Investigating complaints and updating accounts.· Dynamically selling product by providing customers with information needed to make product-related decisions.· Arranging for refunds, exchanges, and credits for returned items.· Initiating billing and processing claim payments.· Receiving payment for goods.ABOUT YOU· You have previous customer service experience with a passion for serving people.· You have experience in a sales environment.· You have knowledge of seafood and fish species which is considered an asset.· You are proficient in Microsoft Office (Word, Excel, and PowerPoint).WORK CONDITIONS· Monday to Friday, 8AM to 5PM· On-site, indoor office environment.Allseas Fisheries Inc. is an equal opportunity employer and is committed to providing employment accommodation in accordance with the Ontario Human Rights Code and the Accessibility for Ontarians with Disabilities Act. Please note that only qualified candidates will be contacted. Should you require an accommodation, please notify Human Resources at the time of scheduling your interview.If interested, apply today!Job Types: Full-time, PermanentSalary: $20.00-$23.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Overtime payAbility to commute/relocate:Etobicoke, ON M8Z 5Z8: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:customer service: 2 years (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Etobicoke, ON\"\n        },\n        {\n            \"id\": \"CF6D139BF2374C15FF6BD9A191A183D4\",\n            \"cityName\": \"2130 Morningside Ave, Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e4a2cc9f9b852c96\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Petit Delights\",\n            \"rowSalary\": \"$15.75–$16.50 an hour\",\n            \"date\": 1694354156912,\n            \"dateOfPosted\": 1694211486831,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Experience:barista, Customer Service RepresentativeDuties:- Provide exceptional customer service to ensure customer satisfaction- Assist customers with inquiries, concerns, and complaints in a professional and timely manner- Process customer orders.- Operate cash register and handle cash transactions- Maintain a clean and organized work area- Follow food handling and preparation guidelines to ensure food safety- Collaborate with team members to achieve sales goals and targets- Utilize basic math skills to calculate prices, discounts, and change accuratelyRequirements:barista: 1 year (preferred)customer service: 1 year (preferred)- Previous experience in customer service, preferably in the food industry or retail environment- Strong communication skills with the ability to effectively interact with customers and team members- Basic math skills for cash handling and retail math calculations- Knowledge of food handling and preparation guidelines is a plus- Ability to work in a fast-paced environment while maintaining attention to detail- Excellent problem-solving skills to address customer inquiries and resolve issues- Flexibility to work various shifts, including weekends and holidaysJoin our team as a Customer Service Representative and be part of a dynamic and customer-focused environment. As a valued member of our team, you will have the opportunity to provide exceptional service to our customers while gaining valuable experience in the food service industry.fulltime and long term .Note: This job description is intended to provide a general overview of the position. It is not an exhaustive list of responsibilities, duties, or qualifications associated with the job.Job Type: Full-timeSalary: $15.75-$16.50 per hourSchedule:Monday to FridayWeekends as neededShift availability:Day Shift (preferred)Overnight Shift (preferred)Night Shift (preferred)Ability to Commute:Scarborough, ON M1X 0C9 (preferred)Ability to Relocate:Scarborough, ON M1X 0C9: Relocate before starting work (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"177C37DEC910EE7F542E499D112BF0D8\",\n            \"cityName\": \"Happy Valley-Goose Bay, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d91555abe32c5fae\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Enterprise Holdings\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694353960902,\n            \"dateOfPosted\": 1692658246411,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.3016826,\n                    \"lon\": -60.3260842\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Happy Valley-Goose Bay\",\n                \"formattedAddress\": \"Happy Valley-Goose Bay, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 10\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Happy Valley-Goose Bay\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" The Customer Service Representative will provide a high level of customer service by assisting both internal and external customers, primarily face-to-face, supporting their branch and rental needs. The CAR Sr will gain knowledge through local training and hands-on experience to provide administrative support, service customers, and act as a rental back-up in a large home city branch or airport location. This role is available as regular part time  Opening available at the following branch location:6 VULCAN RD HAPPY VALLEYGOOSE BAY, NL A0P 1C0. This is a part time position that pays $19.00 / hour We offer:  Employee discount Retirement savings plan Training and development Responsibilities: Take incoming calls- reservations, rate quotes, general questions and answers, provide information and resolution for customers, other branches, insurance companies, dealerships, repair shops and other vendors  Manage outgoing calls for callback management, A/Rs and miscellaneous calls as assigned  Provide a high level of customer service by assisting customers and assessing their rental needs in person and over the phone  Meet and greet customers in a friendly and timely manner  Provide directions and general assistance  Assist to assess condition of rental upon return  Process returns, check-ins and exit kiosk transactions  Effectively market the company while picking up customers up and/or dropping off customer in a safe and courteous manner and assisting customers as needed  Understand and communicate rental terms and conditions, vehicle features and other services  May sell optional protection products, upgrades, fuel options and other additional equipment  Responsible for notifying Management of any known vehicle problems and any required vehicle maintenance  Clean vehicle interior and exterior by hand or by operating washing equipment when needed  Perform various administrative and basic accounting functions such as: research and billing support tasks, accounts receivables, transfer and key logs, run miscellaneous reports, supply maintenance, process customer billing  Perform miscellaneous and backup duties job-related duties as assigned  Equal Opportunity Employer/Disability/Veterans Qualifications: Must be at least 18 years of age. High school diploma or above required; some college preferred Must have at least 1 year prior customer service, retail, or administrative support experience Must have a valid Class 5 drivers license with no more than 2 moving violations and/or at-fault accidents on driving record in the past 3 years No drug or alcohol related conviction on driving record in the past 5 years Must be authorized to work in Canada and not require work authorization sponsorship by our company for this position now or in the future. \",\n            \"location\": \"Happy Valley-Goose Bay, NL\"\n        },\n        {\n            \"id\": \"8FEC9B6DB98F79ECF659C97F701B9A7F\",\n            \"cityName\": \"Rocky View, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f52d0393347344b8\",\n            \"jobName\": \"Customer Service Representative - 203\",\n            \"companyName\": \"Copart\",\n            \"rowSalary\": \"$22.38 an hour\",\n            \"date\": 1694353895041,\n            \"dateOfPosted\": 1692655747172,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.2086495,\n                    \"lon\": -113.9815345\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Rocky View County, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service Representative (CSR) provides exceptional customer service to internal and external customers of Copart. Through a thorough understanding of Copart practices, the CSR offers solutions that aid and facilitate a unique customer service experience. The CSR provides general administrative support while multi-tasking in hectic and stressful situations. In addition, the CSR will be the face of the Company through face-to-face and vocal interactions with all levels of customers which range from the general public to high-level managers of organizations.Receive and process payments.Update lot (vehicle) notes in the system.Answer multi-line telephone in a professional manner.Face-to-face customer interaction.Use company resources to gather information and offer solutions to meet customer needs.Contact clients to obtain vehicle pick-up information.File documents according to criteria.Process mail incoming and outgoing per criteria.Read and interpret various reports and documents.Proper completion of sale documents.Other duties as assigned.Required Skills & Experience:One year of office support experience in a customer service role preferredHigh School diplomaExcellent customer service skills and attitudeExcellent written and verbal skillsProficient with office equipmentAttention to detailProblem-solvingComputer proficiency - MS SuiteTyping speed 45WPMProfessional appearanceAbility to multi-task in a fast-paced environmentBilingual skills a plusOccasional overtime as neededFor 40 years, Copart has led its industry in innovation and customer service, enabling it to grow profitably in markets across the globe. Our success is the direct result of the skills and efforts of our talented and diverse employees. Our mindset? It's never just a \\\"job\\\" when your coworkers are like family - it's like coming home.Location: Rocky View,AB,Canada, AlbertaLocation: Rocky View,AB,Canada, AlbertaJob Type: Full-timePay: $22.38 per hour\",\n            \"location\": \"Rocky View, AB\"\n        },\n        {\n            \"id\": \"C4258EB753F5BD440503AFA1D3DB4328\",\n            \"cityName\": \"1200 Derry Rd E, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2adb27d34d3d6da0\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Dm Horizon Insurance Solutions Inc\",\n            \"rowSalary\": \"$16–$21 an hour\",\n            \"date\": 1694353894501,\n            \"dateOfPosted\": 1667212544741,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6841863,\n                    \"lon\": -79.6641054\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Derry Rd E, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position: Customer Service Representative (Insurance) - RIBO LicensedDuties and Responsibilities:Building and maintaining client relationshipsProviding customer service with the highest standard while building and maintaining great client relationshipReviewing policies and making recommendations based on individual client needs while identifying opportunities to cross-sell/upsellAdhering to underwriting guidelines set out by broker partnersFollowing up and coordinating with clients to ensure documents are completeQualifications:RIBO licensed RequiredMinimum 1 years of experience working in general insurance brokerageAbility to organize and prioritize work effectivelyHighly organized with strong attention to detailMust be able to prioritize work and meet deadlinesExcellent interpersonal and communication (written and oral) skillsPrior experience with Compuquote, Powerbroker & company partner’s portalsWhat We Offer:Competitive salaryOpportunities to grow and developOnly Qualified candidates will be contactedJob Type: Full-timeSalary: $16.00-$21.00 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayEducation:Bachelor's Degree (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Derry Rd E, Mississauga, ON\"\n        },\n        {\n            \"id\": \"43219B6B74FEF91F9FD70C44E9908F4E\",\n            \"cityName\": \"515 Dundas St W Ste 214, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=eab22acaae00b919\",\n            \"jobName\": \"Broker - Experienced Insurance Customer Service Representative\",\n            \"companyName\": \"Billyard Insurance Group\",\n            \"rowSalary\": \"From $62,000 a year\",\n            \"date\": 1694353756659,\n            \"dateOfPosted\": 1690394034176,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4750608,\n                    \"lon\": -79.73379849999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Dundas St W, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 62000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    62000.0\n                ],\n                \"range\": {\n                    \"gte\": 62000.0,\n                    \"gt\": null,\n                    \"lte\": 62000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Please only apply if you currently hold a RIBO license and have experience as a CSR.Billyard Insurance Group is attracting top insurance professionals and providing them with innovative technology, tools, and the support required to compete in the fast-changing insurance landscape. We are a rapidly growing insurance brokerage with over 40 locations across Ontario. We’re also proud to have been recognized on Insurance Business Canada’s Top Brokerages list for the last two years and named one of Canada’s Top Growing Companies on the Globe and Mail’s 2020 Report on Business.Billyard Insurance Group Oakville is seeking an energetic Customer Service Representative to join our established team.This role is responsible for all aspects of account management from new business to servicing clients. In addition to providing excellent customer service, individuals must be able to prioritize work and meet deadlines. If you are comfortable working in a technology-focused environment that continues to evolve, we encourage you to apply.There is a great opportunity to write your own business and make your salary + commission.Feel free to visit our website www.thebig.caResponsibilities:Building and maintaining client relationshipsProviding superior customer service when responding to client inquiries and resolving concerns in a timely mannerReviewing policies and making recommendations based on individual client needs while identifying opportunities to cross-sell/upsellAdhering to underwriting criteria set out by broker partnersFollowing up and coordinating with clients to ensure documents are completeMaking changes through company partners’ portals and websitesConducting billing calls as neededIf you’d like to try sales, we have an opportunity available with an attractive commission structure, although not requiredAttributes:Ambitious and self-motivatedAbility to thrive in a fast-paced environmentPositive attitude and customer-focusedExcellent interpersonal and communication (written and oral) skillsStrong computer skills with ability to learn new software systemsQualifications:RIBO license is requiredExperience in insurance industry is also a requirementRequired education:High school or equivalentWhat We Offer:Competitive salaryHealth care and dental care benefits for you and your familyOpportunities to grow and developJob Types: Full-time, PermanentSalary: From $62,000.00 per yearBenefits:Casual dressDental careExtended health careLife insuranceWork from homeSchedule:8 hour shiftMonday to FridayNo weekendsSupplemental pay types:Bonus payCommission payEducation:Secondary School (preferred)Work Location: Hybrid remote in Oakville, ON\",\n            \"location\": \"Dundas Street West, Oakville, ON\"\n        },\n        {\n            \"id\": \"B63AE0AF4C0EDECB72454D1F8838F0CD\",\n            \"cityName\": \"17531 Stony Plain Rd NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=15eed5034966c42f\",\n            \"jobName\": \"Customer Service Representative (Part Time)\",\n            \"companyName\": \"Homes Alive Pets\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694353269161,\n            \"dateOfPosted\": 1694353268975,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5416043,\n                    \"lon\": -113.6228336\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Stony Plain Rd, Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Why Homes Alive Pets? This isn't your average pet store. You'll feel it when you walk through our door. It's more than beautifully-designed locations and friendly staff – it's a belief in a higher standard for pet care. Our stores are community hubs – somewhere to come and share an experience with your pet. You'll immediately notice a refreshing shopping experience at Homes Alive because we take a brand-agnostic, knowledge-over-upselling approach. Rather than pushing a certain product or feeling pressured to meet sales quotas, our team's attention is solely focused on getting to know you and your pet and empowering you to make confident decisions. Our Mission is to add value to every life. When we say every life, we include guests and their pets. Employees and co-workers. Brand reps and vendors. Even our communities. There is life all around us, and it is our mission to add value qualitatively and quantitatively. In the qualitative sense, it is our mission to elevate every life as important and worthwhile. In the quantitative sense, and in the context of our business, it is also our mission to add value, discounts, and a fair balance of price and quality for our guests. This is how we will make a positive impact in our communities and world. Job Title Customer Service Representative Direct Report Store Manager Department Store Operations Location 17531 Stony Plain Rd NW, Edmonton, AB T5S 2S1 Job Summary Customer Service Representatives are the first point of contact for customers and strive to ensure that each customer has a positive shopping experience. Responsibilities of Customer Service Representatives include operating cash registers and handling money, providing customers with information about products offered in the store, and maintaining a clean and organized work environment. The ideal Customer Service Representative has excellent communication and people skills, experience in customer service or a willingness to learn, and a passion for pets. Core Competencies A Positive and Hardworking Attitude. A willingness to go the extra mile to provide customers with the best possible shopping experience. Strong Communication Skills. Ability to clearly communicate with customers and other staff. Resilience. Ability to remain calm and navigate through high stress situations Behaviour & Skills Customer Service Excellent time management & attention to detail Excellent teamwork & collaborative abilities Confident & articulate communication Trustworthy & positive attitude Understanding of pet nutrition & needs Ability to lift 50lbs Job Responsibilities Customer Service Representatives are responsible for these 5 areas of store functions in order of Priority with objectives: Customer Service To serve and learn the immediate needs of customers and offering honest and sincere advice, as well as welcoming them to the culture of the Homes Alive community. Operate cash registers and accurately handle cash. Store Appearance Maintain stock on the shelves, product detail communication for your specific section (ie. Price tags, sales signs, etc.), clean and face products and shelves to provide the highest quality of solo shopping experience for the customer. Employee Service Self-initiate service to co-workers and leaders to assist with any projects or tasks to develop a culture and community of servantship and improve the quality of life of those around you. System Maintenance Complete routine tasks specified in checklists & delegated by leaders and follow proper system procedures for efficiency, effective communication, and accuracy of inventory. Self-Development Take initiative in any possible opportunities to learn and develop skills or knowledge in any area within Homes Alive to develop yourself to become a servant leader (a leader that goes the extra mile to serve others). A Day in the Life of a Customer Service Representative Each day as a Customer Service Representative will be dynamic and unique. A typical day will involve you helping customers find the supplies they need for their pets, providing them with information about pet care and nutrition, and assisting them at the cash register. You will also work to make sure your store looks clean and presentable and that inventory on the shelves is full and well organized. As customers often bring their pets into the store, you will also get plenty of opportunity to interact with dogs and cats (and even hand out treats!). Schedule Part-time Customer Service Representatives work up to 30 hrs./week, at the discretion of the Store Manager. Shifts may be morning, afternoon, or evening, Monday to Sunday. Compensation $16.00/hr.\",\n            \"location\": \"Stony Plain Road NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"23226FDACD7B1179372E6115B5148E14\",\n            \"cityName\": \"1401 20 Avenue NW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=81db49a22f8d6e09\",\n            \"jobName\": \"Kitchen Helper/Customer Service\",\n            \"companyName\": \"Jimmys Donair\",\n            \"rowSalary\": \"$16.50–$18.50 an hour\",\n            \"date\": 1694352984588,\n            \"dateOfPosted\": 1692659184363,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0678621,\n                    \"lon\": -114.0848958\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"17 Ave NW, Calgary, AB T2M, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Hey!We need a few great people to complete our team , here are some of the highlights on what your job will entail: Greeting guests, taking orders and processing payments  Preparing food Managing delivery and mobile orders  Assembling orders and packaging take-out and delivery Keeping all surfaces clean and sanitary to ensure the safety for our guests, fellow crew members, and yourself Whether you are working in the kitchen or at the front counter you are a part of a dynamic team that works together to deliver an exceptional guest experience.Food safety course is necessary. Experience is a must minimum 1 year.Job Types: Part-time, PermanentPart-time hours: 20 per weekSalary: $16.50-$18.50 per hourFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayWeekends as neededCOVID-19 considerations:Following all current protocols as set by Alberta Health.Work Location: In person\",\n            \"location\": \"Avenue NW, Calgary, AB\"\n        },\n        {\n            \"id\": \"9BAA28EF8862DAC5994BC2F553612DBF\",\n            \"cityName\": \"60 Victoria Crescent, Nanaimo, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=15ce0010d5cd25e3\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mid Island Consumer Services Cooperative\",\n            \"rowSalary\": \"$17.75 an hour\",\n            \"date\": 1694352816243,\n            \"dateOfPosted\": 1693446295197,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1633011,\n                    \"lon\": -123.9352068\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Nanaimo\",\n                \"formattedAddress\": \"Victoria Crescent, Nanaimo, BC V9R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria Crescent, Nanaimo, BC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Co-op is hiring a part-time Customer Service Representative at our Victoria Crescent Gas Bar. Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you! Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in the operations of the store, including but not limited to handling customer transactions, responding to customer questions and concerns in a professional manner, creating displays and stocking shelves, and ensuring store and merchandise are neat and organized.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Representative today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. Previous retail experience is preferred, and propane and/or FoodSafe certification would be an asset. Who we are: Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve. Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op). We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.\",\n            \"location\": \"Victoria Crescent, Nanaimo, BC\"\n        },\n        {\n            \"id\": \"A841E0EAAF28772CF53951A2F1BD38F3\",\n            \"cityName\": \"Fredericton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7c8509eb2ead0a23\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Stow It All\",\n            \"rowSalary\": \"$16–$17 an hour\",\n            \"date\": 1694352798351,\n            \"dateOfPosted\": 1693506948550,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.9635895,\n                    \"lon\": -66.6431151\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fredericton\",\n                \"formattedAddress\": \"Fredericton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"York County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fredericton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a Maritime owned self storage company looking for a customer service officer to join our team. The position is permanent, part-time position available, weekdays 8:30 am to 4:30 pm. Perfect for an individual whose not ready to fully retire.As the customer service officer, you will:Meet and greet clientsRespond to enquiries via e-mail, phone and face-to-faceProvide customers with quotes and product informationCreate and manage filesManage customer invoicing and paymentsKeep database currentThe successful candidate will:Love working one-on-one with customersHave a warm, approachable mannerHave the rare people skills which allow you to cheerfully assist customers, in a sometimes busy environmentHave an easy going, can-do-it attitudeHave basic computer knowledgeBe flexible to work at both Fredericton area locationsBe able to do light property maintenance would be an asset, but not a deciding factor for this positionWork remotelyNoJob Types: Permanent, Part-timePart-time hours: 16-24 per weekSalary: $16.00-$17.00 per hourBenefits:Profit sharingFlexible Language Requirement:French not requiredSchedule:8 hour shiftCOVID-19 considerations:All customers and staff are required to follow current COVID-19 precautions, as mandated by the government.Education:Secondary School (required)Experience:customer service: 1 year (preferred)Work Location: In personExpected start date: 2023-09-11\",\n            \"location\": \"Fredericton, NB\"\n        },\n        {\n            \"id\": \"07E065969D2B740AE9AAED4551FBF068\",\n            \"cityName\": \"7420 Rue Saint-Jacques, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5cf74bfead6425bd\",\n            \"jobName\": \"Full-Time Customer Service Representative\",\n            \"companyName\": \"Sutton Plumbing\",\n            \"rowSalary\": \"$45,000–$55,000 a year\",\n            \"date\": 1694352671327,\n            \"dateOfPosted\": 1693506958466,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4749414,\n                    \"lon\": -73.595434\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Saint-Jacques, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Sutton Plumbing and Heating Supplies Ltd., a family-owned and operated company since 1954, is currently looking for an experienced full-time Customer service representative to join our growing team. We are a leading supplier in our field, and are currently in expansion. If you are a hard-working, dedicated individual, and are looking for a new opportunity in a great company, please apply. (Knowledge of the plumbing field is an asset)Job Description and responsibilitiesLearn to identify customer needs or desires in order to recommend the appropriate product or service.Learn the software systems used by the company to be able to communicate effectively with incoming inquiries.Keep a record of incoming inquiries to be able to reference at a later date.Be able to process orders, forms, and quotations.Work with colleagues when necessary to resolve customer complaints.Provide feedback to other departments to help improve sales, marketing, and business processes.Learn about the products inside and out to be able to answer any questions from customers.Handle customer complaints by providing solutions, often within a time limit to ensure the customer is satisfied.Customer Service Representative skills and qualifications3 Years Customer service experience required (Knowledge of the plumbing industry is a plus)Strong phone contact handling skills and active listeningability to adapt/respond to different types of charactersAbility to multitask, prioritize and manage time effectivelyBilingual English/French is an assetWhy work at Sutton? (Extra Bonuses!)Join a young, energetic and fun teamon site GymFree on site parking!Basketball, Lacrosse and Hockey Gear for Lunchtime friendly competition!\\\"chill room\\\" with couches and games (Nintendo cube, cards etc.)Large updated lunch room (with Free coffee)Pool table***DartsTable hockeyIf you are interested in taking on a new challenge at a growing company, we encourage you to apply today.---------------------------------------------------------------------------Sutton Plumbing and Heating Supplies Ltd., une entreprise familiale en affaires depuis 1954, est actuellement à la recherche d'un(e) représentant(e) du service clientèle à temps plein pour rejoindre notre équipe. Nous sommes chef de file dans le domaine de la distribution en plomberie et chauffage et nous sommes en pleine phase d’expansion. Si vous êtes une personne travaillante, dévouée et que vous recherchez de nouvelles opportunités au sein d'une excellente entreprise, ne chercher pas plus loin! (Une connaissance du domaine de la plomberie est fortement recommandée)Description du poste et responsabilités :Identifier les besoins ou les désirs des clients afin de recommander le produit ou le service approprié.Apprendre à connaître les produits en détail pour pouvoir répondre aux questions des clients.Apprendre à utiliser les systèmes informatiques de l'entreprise pour pouvoir communiquer efficacement avec les demandes entrantes.Conserver un enregistrement des demandes entrantes pour pouvoir y faire référence ultérieurement.Être capable de traiter les commandes, les formulaires et les devis.Travailler avec des collègues au besoin pour résoudre les plaintes des clients.Fournir des retours d'information à d'autres départements pour aider à améliorer les ventes, le marketing et les processus commerciaux.Traiter les plaintes des clients en fournissant des solutions, souvent dans des délais serrés, pour garantir la satisfaction du client.Compétences et qualifications du représentant du service clientèle :3 ans d'expérience en service clientèle liée au domaine de la plomberie requis (Connaissance de l'industrie)Solides compétences en gestion des contacts téléphoniques et en écoute activeCapacité à s'adapter/répondre à différents types de personnalitésCapacité à gérer plusieurs tâches, à établir des priorités et à gérer efficacement le tempsPourquoi travailler chez Sutton ? (Bonus supplémentaires !)Rejoignez une équipe jeune, énergique et amusanteSalle de sport sur placeParking gratuit sur placeÉquipement de basketball, de crosse et de hockey pour des compétitions amicales à l'heure du lunch\\\"Salle de détente\\\" avec canapésGrande salle de déjeuner rénovée (avec café gratuit et jeux tel que Nintendo GameCube, cartes, etc.)Table de billard ***FléchettesHockey sur tableSi vous êtes intéressé(e) par le défi que représente une entreprise en pleine croissance, nous vous encourageons à postuler dès aujourd'hui.Job Types: Full-time, PermanentSalary: $45,000.00-$55,000.00 per yearBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site gymOn-site parkingVision careSchedule:Monday to FridayApplication question(s):Do you have Experience / Knowledge related to Plumbing?Experience:customer service: 3 years (preferred)Work Location: In person\",\n            \"location\": \"Montreal- Rue Saint-Jacques, Montréal, QC\"\n        },\n        {\n            \"id\": \"988DB5C3525973A011EE24A2B9ADFF50\",\n            \"cityName\": \"7 Arbour Lake Dr NW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e7006a4d88c14c6e\",\n            \"jobName\": \"Grocery/Customer Service Clerk - Arbour Lake\",\n            \"companyName\": \"Amaranth Whole Foods Southland\",\n            \"rowSalary\": \"$16.50–$18.00 an hour\",\n            \"date\": 1694352600274,\n            \"dateOfPosted\": 1693506950448,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.1366093,\n                    \"lon\": -114.1993777\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Arbour Lake Dr NW, Calgary, AB T3G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Amaranth, our mission is to create a great customer experience. Our vision is to work with local farmers and producers to provide healthy food for our communities. As we continue to grow within Alberta, Amaranth is excited to welcome new team members that share our passions. All Amaranth retail jobs require ensuring a positive company image by providing courteous, friendly, and efficient service to customers and team members at all times. All positions must be performed in accordance with store best practices. Further, Team Members must be prepared and able to perform the duties inherent in other Team Member job descriptions. All positions must strive to support Amaranth's core values and goals.A successful team member:WILL BEPassionate and Knowledgeable about Health & WellnessPut others first and willing to go above and beyond in the customer experience.Committed, Flexible and Open to Growth.Solution Focused and Business Minded.Motivated to provide Outstanding Customer Service.Experienced in various grocery departments and responsibilities.Role: The Grocery/Customer Service Clerk is responsible for the Department’s daily operations. Duties may include providing support to Grocery Department team members; receiving and verifying shipments primarily in Grocery, and in other departments during peak times; picking transfers; stocking shelves, overstock and down stock rotation, stocking shelves, coolers and freezers; bulk re-packing, maintaining correct inventory levels and records for expiry dates; product merchandising; maintaining store cleanliness; and providing friendly, attentive and EXCELLENT customer service. As a cashier; responsible for outstanding customer service and monitoring tills, processing customers transactions; bagging and carrying out groceries; maintaining store cleanliness; and providing friendly, attentive and efficient customer service.Reports to: Store Manager and Grocery LeadTime Requirements: Full-time position with flexible working availability including days, evenings, weekends and assisting with added shift coverage**Physical Requirements: Able to stand for extended periods of time, climb ladders, ability to lift up to 50 lbs and be able to navigate certain tools and environments.Compensation: To be discussed based on level of experience.WILL HAVEStrong Performance in Customer Service:Proactively engage customers to ensure unparalleled customer service.Efficiently and accurately process customer transactions through the use of applicable POS functions and carry out customer purchases.Respond to customer questions and provide assistance or when necessary page department representative to provide assistance.Assist customers with product inquiries, share product knowledge and take customers to the location of the product directly.Be knowledgeable about and advise customers of current store promotions and programs.Report errors in retail pricing or signage to the management team.Ensure daily department checklists are being followed and completed.Assist with store opening and closing duties to ensure the store is properly prepared for the day’s operations.Other duties as assigned by the Store Manager or Store Lead.Cash Experience with POS, Till Transactions and Unparalleled Service to Others:Efficiently and accurately process customer transactions through the use of applicable till functions.Bag groceries in a careful and timely manner and offer carry-out assistance.Assist with customer flow and line-ups through till operation or grocery bagging.Keep the till area clean, well-stocked, and organized, change receipt rolls, sweep floors behind tills, and wash counters.Maintain confection area stock, face gluten-free freezer, dairy cooler, and drink cooler.Grocery/Bulk/Repack/Perishables familiarity with store products, local and organic:Maintain on-shelf inventory including stocking coolers and shelves, down stocking and stock rotation, shipment receiving and verification, and putting away shipments.Manage inventory using a database system and maintain accurate shelf signage and pricing.Keep aisles clean and free of ladders, boxes and carts.Sweep bulk areas regularly, ensure clean scoops, pencils, bags, and twist ties are stocked.Check expiry dates and complete markdowns for perishables stock.Special Orders and Going Above and Beyond in Customer Service:Once a special order arrives in store, ensure the customer who placed the special order is contacted initially and weekly thereafter until the 4th week where appropriate action is taken if not picked up.Maintain “on-hold” status of items in the database system.Inventory Management with hole counts, out of stock, on-order, backorder, and yearly counts:Ensure inventory levels recorded in the database system match the physical inventory on shelf and in back stock.Manage inventory using the database system and maintain accurate shelf signage and pricing.Receiving Process from start to finish, awareness with credits and follow up an asset.Physically receive and verify shipments.Received stock is delivered on floor in a timely manner, placed accordingly, rotated by correct best before dates and rotated with down stock.Ensure price tags are accurate and red dots are on all Gluten Free tags, and blue dots are on discontinued items.Transfers for multi-store database system:Respond to Pick Requests from other locations in an accurate and timely manner, maintaining an orderly transfer area.Process incoming transfers from other stores in an accurate and timely manner, following up on errors with the appropriate location immediately.Distributing combined orders and working with the Category Manager to implement efficiencies.LeadershipAbility to lead by example in daily activities and strive to improve personal performance each and every day.Commitment to maintaining a positive attitude and approach challenges in a pro-active and problem-solving manner.Capability to assist and direct team members to complete duties such as stocking, down stocking, and stock rotation including coolers and shelves, empty shelf look-ups, shipment receiving and verification, and putting away shipments.Keen attention to prioritizing the day by level of importance, organize tasks and to-do lists that fall into categories of daily, weekly, monthly requirements.Store MaintenanceAbility to support in mopping the store floor first thing each morning.Ability to direct staff when there are cleaning projects to be completed.End CapsCommitment to working with the Category Manager, ensuring end caps are well stocked and changed over in a timely manner for sales and promotions.Qualifications and Attributes:Excellent communication skills and willingness to work as part of a teamHave supervisory experience in a retail environmentIntermediate computer skills with an emphasis on database operationAbility to follow instructions and proceduresAbility to work with a flexible attitude in a dynamic environmentAbility to think independently, prioritize, and complete projects in a timely mannerExcellent organization and interpersonal skillsKnowledge of the organic and natural foods industry is an assetFood Handling Safety education and/or certificate is an assetBasic Physical RequirementsStand for extended periods of time. Walk, bend and twist your body, reach above and below shoulders.Use of mops, brooms, cleaning products, knives, box cutters, carts, computers and printers.Use ladders of varying heights up to 12 feet.Ability to lift up to 50lbs maximum.Repetitive use of hands for grasping, pushing, pulling, and typing.Environmental exposure to extreme temperatures in coolers, freezers, and outdoorsJob Type: Part-timePart-time hours: 30 per weekSalary: $16.50-$18.00 per hourBenefits:Store discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftHolidaysMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Arbour Lake Dr NW, Calgary, AB\"\n        },\n        {\n            \"id\": \"ECC2C696D8940821CD2CCAEF250E3D6E\",\n            \"cityName\": \"545 Memorial Ave, Orillia, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=58d8d7849035171c\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Wendy's Restaurant Orillia\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694352550860,\n            \"dateOfPosted\": 1692657410070,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.58068180000001,\n                    \"lon\": -79.4306655\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Orillia\",\n                \"formattedAddress\": \"Memorial Ave, Orillia, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Orillia\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Focused, ability to multi task, fast paced environment, follow direction,Job Type: Full-timeSalary: $15.50 per hourBenefits:On-site parkingDay range:Every WeekendHolidaysMonday to FridayWeekends as neededShift:4 hour shift8 hour shiftDay shiftEvening shiftMorning shiftNight shiftWork Location: In person\",\n            \"location\": \"Memorial Avenue, Orillia, ON\"\n        },\n        {\n            \"id\": \"A2364F9DCF2585DFA5246C0BB55BBC9E\",\n            \"cityName\": \"James Snow Self Storage in Milton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6862ae1a5cbfbab4\",\n            \"jobName\": \"Part Time Customer Service\",\n            \"companyName\": \"James Snow Self Storage\",\n            \"rowSalary\": \"$16.50–$18.00 an hour\",\n            \"date\": 1694352416799,\n            \"dateOfPosted\": 1691525654153,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5182991,\n                    \"lon\": -79.8774042\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Milton\",\n                \"formattedAddress\": \"Milton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Milton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position: Customer Service RepresentativeLocation: Milton, ONJob Description:The Customer Service Representative will interact with customers via phone, email, and chat to ensure a smooth and positive experience. This will include learning both the U-Haul system and the storage systems to assist customers with all storage and U-Haul needs. MUST HAVE A DRIVERS LICENSE. G2 IS FINE BUT G PREFERED. MUST BE ABLE TO WORK SATURDAY'S. THIS IS NOT A FULL TIME POSITION. Ideal for a high-school student looking for after school hours. Hours during the week are 3-6 and Saturday shifts are 7:30-12:30 AND/OR 12-5.*If you can't work these hours or want full time work, or do not have a drivers license please do not apply.*Essential Duties & Responsibilities:Answer incoming calls and emails to provide a positive customer experience.Provide a positive first impression to the customer by providing a clear message on the outbound call or email.Build and maintain strong relationships with customers by clearly communicating the needs of the business and providing prompt, accurate information.Respond to customer inquiries regarding product details; pricing; availability.Sing in/out U-Haul trucks, ensuring they are swept and cleanly enough for the next customer.Provide accurate information regarding storage/U-Haul inquiriesProcess U-Haul returns in a timely manner.Maintain an organized, clean, and sanitary work area.Perform other duties as assigned.Required Skills: ·Excellent written and verbal communication skills. This position requires excellent listening skills as well.·Strong organizational skills with the ability to work with a team and aloneStarting wage will reflect experience.Job Type: Part-timeSalary: $16.50-$18.00 per hourFlexible Language Requirement:French not requiredSchedule:Evening shiftMonday to FridayWeekends as neededAbility to commute/relocate:Milton, ON L9T 5G7: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Milton, ON\"\n        },\n        {\n            \"id\": \"70CC434CE5267BF57B764E198494A9D4\",\n            \"cityName\": \"1020 South Service Road East, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0b5b56a4d66a2f88\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Pioneer Family Pools & Spas\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694352396122,\n            \"dateOfPosted\": 1693506945329,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4639338,\n                    \"lon\": -79.6804022\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"South Service Rd E, Oakville, ON L6J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Seasonal Contract· Support a strong commitment to superior and genuine customer service by exerting compassion, knowledge and empathy to all customers and associates. Drive sales through engaging both customers and associates with accurate and practical product knowledge.· Deliver a positive, friendly and pleasant experience with the goal of always exceeding our customers’ expectations.· Your behavior at work should be ethical, positive, encouraging, helpful, dedicated, efficient and respectful at all times.· You are required to dress according to Pioneer Family Pools uniform policy.· Maintain a clean and organized work environment free of clutter at all times· Perform miscellaneous cleaning in the store· Provide courteous and friendly service to all customers, escorting those who require further assistance to the appropriate sales associate or manager· Assist all customers on the retail floor, and answer any questions that are within your training, knowledge, and expertise. If you can’t answer their question, notify them you will find someone who can better assist.· Ensure float is the correct amount at the beginning of your shift and complete accurate float count and end of day paperwork responsibilities. All end of day results should be reviewed with the Retail Manager or Assistant Manager at the end of each day.· Check out customers’ orders in an accurate and efficient manner using the correct scan or processing method· Excessive Cash Payments (+$500) must be reviewed by Retail Manager or Assistant Manager and immediately stored in the safe.· Perform cashier-customer transactions accurately in order to maximize customer satisfaction and minimize losses by handling all monetary transactions according to Pioneer Family Pools’ policies and procedures· Maintain security and minimize losses through awareness of pricing errors, coupons, promotions, and other interactions. Be informed and execute promotions accurately and consistently.· Properly bag customer’s orders. Watch for torn bags, leaking items, broken products, heavy bags and assist where necessary to provide an easy and efficient carry out.· Help price, stock, and face merchandise on the sales floor and retail shelves daily, or as required by current stock levels or manager request· Stock and maintain all register supplies each morning and throughout the day as needed· Re-stock returns (if saleable); *See Internal Training Guide for Cashier’s for details.· Retrieve shopping carts throughout the day· Responsible for accurate till counts and deposits, End of day reports, copies of receipts,· Thank all customers for visiting the store upon them leaving· Log and Schedule hours, vacation request and time off with Retail Manager or Assistant Retail Manager· Other duties as assignedJob Types: Full-time, Part-time, Temporary, SeasonalContract length: 3 monthsSalary: From $15.50 per hourDay range:Monday to FridayWeekends as neededShift:8 hour shiftDay shiftAbility to commute/relocate:Oakville, ON: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"South Service Road East, Oakville, ON\"\n        },\n        {\n            \"id\": \"E81385C7F6E2DB04177D1252748ABA70\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0189dc3a605a6462\",\n            \"jobName\": \"Delivery Driver/Customer Service\",\n            \"companyName\": \"Vegan Supply\",\n            \"rowSalary\": \"$20–$25 an hour\",\n            \"date\": 1694352391860,\n            \"dateOfPosted\": 1692659694404,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"A Vegan Owned & Operated business in Vancouver, BC is looking for a P/T Delivery Driver to join our team! We service customers within Vancouver & The Lower Mainland, Vancouver Island, up The Sea to Sky, and occasionally the Okanagan.This is a customer facing position when dropping off/picking up items so a friendly disposition and ability to trouble shoot is essential. This position is mostly Mon-Fri however an occasional weekend delivery will be required. Delivery schedule is coordinated with our in-house staff based out of our Chinatown location.Experience city driving a large truck, a class 5 license, and clean drivers abstract are required.Job Type: Part-timeSalary: $20.00-$25.00 per hourBenefits:Casual dressDiscounted or free foodExtended health careOn-site parkingStore discountSchedule:Monday to FridayExperience:delivery driving: 1 year (preferred)Language:English (preferred)Licence/Certification:Class 5 Licence (preferred)Shift availability:Day Shift (preferred)Work Location: On the roadExpected start date: 2023-09-04\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"46F218BC3EE6D2F774F77961748FC0DB\",\n            \"cityName\": \"62 On 401 E, Tilbury, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=aa7520062b2ff3d2\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Canadian Tire Gas Station Tilbury 401 Eastbound\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694352134643,\n            \"dateOfPosted\": 1692655468412,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.2643968,\n                    \"lon\": -82.42923119999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Tilbury\",\n                \"formattedAddress\": \"Tilbury, ON N0P 2L0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Chatham-Kent\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Tilbury, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job DescriptionCanadian Tire Gas Station Tilbury 401 Eastbound is seeking a Customer Service Representative to join our team!Duties include:Greeting customersHandling cashStocking shelvesMaintaining a clean work environment.Outside duties, pumping fuel, cleaning, sweeping, etcJob Type: Part-timePart-time hours: 16-24 per weekSalary: $15.50 per hourSchedule:8 hour shiftEvening shiftWeekends as neededWork Location: In person\",\n            \"location\": \"Tilbury, ON\"\n        },\n        {\n            \"id\": \"E02DCAC8776D950E3B1153EF808BCE8D\",\n            \"cityName\": \"305 Cranston Crescent, Midland, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0cf540716593e6c8\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Enterprise Holdings\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694351903161,\n            \"dateOfPosted\": 1693506960029,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.72886279999999,\n                    \"lon\": -79.86487199999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Midland\",\n                \"formattedAddress\": \"Cranston Crescent, Midland, ON L0K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Midland\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" The Customer Service Representative Sr (CAR Sr) will provide a high level of customer service by assisting both internal and external customers, primarily face-to-face, supporting their branch and rental needs. The CAR Sr will gain knowledge through local training and hands-on experience to provide administrative support, service customers, and act as a rental back-up in a large home city branch or airport location. This role is available as permanent part time.  Opening available at the following branch location: 305 CRANSTON CRESCENT MIDLAND, ON L4R 4P4 This is a part time position that pays $18.00 / hour We offer:  Employee discount Retirement savings plan Training and development Responsibilities: Take incoming calls- reservations, rate quotes, general questions and answers, provide information and resolution for customers, other branches, insurance companies, dealerships, repair shops and other vendors  Manage outgoing calls for callback management, A/Rs and miscellaneous calls as assigned  Provide a high level of customer service by assisting customers and assessing their rental needs in person and over the phone  Meet and greet customers in a friendly and timely manner  Provide directions and general assistance  Assist to assess condition of rental upon return  Process returns, check-ins and exit kiosk transactions  Effectively market the company while picking up customers up and/or dropping off customer in a safe and courteous manner and assisting customers as needed  Understand and communicate rental terms and conditions, vehicle features and other services  May sell optional protection products, upgrades, fuel options and other additional equipment  Responsible for notifying Management of any known vehicle problems and any required vehicle maintenance  Clean vehicle interior and exterior by hand or by operating washing equipment when needed  Perform various administrative and basic accounting functions such as: research and billing support tasks, accounts receivables, transfer and key logs, run miscellaneous reports, supply maintenance, process customer billing  Perform miscellaneous and backup duties job-related duties as assigned  Equal Opportunity Employer/Disability/Veterans Qualifications: Must be at least 18 years of age. High school diploma or above required; some college preferred Must have at least 1 year prior customer service, retail, or administrative support experience Must have a valid G or G2 drivers license with no more than 2 moving violations and/or at-fault accidents on driving record in the past 3 years No drug or alcohol related conviction on driving record in the past 5 years Must be authorized to work in Canada and not require work authorization sponsorship by our company for this position now or in the future. \",\n            \"location\": \"Cranston Crescent, Midland, ON\"\n        },\n        {\n            \"id\": \"A0E7368F708286D9FF45B7106A69F72D\",\n            \"cityName\": \"Serious Coffee in Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6092a5d2d6c55be8\",\n            \"jobName\": \"Customer Service/Barista\",\n            \"companyName\": \"Serious Coffee\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694351890355,\n            \"dateOfPosted\": 1693506961488,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3193375,\n                    \"lon\": -124.3136411\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Parksville\",\n                \"formattedAddress\": \"Parksville, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Parksville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usAs a barista with Serious Coffee you will fill many roles. Your main duties will be preparing specialty drinks, preparing lunch foods, working the cash and offering exceptional customer service. If you have a positive attitude and work well in a team environment, no experience is necessary.Our work environment includes:On-the-job trainingCompany perksSafe work environmentFlexible working hoursCasual work attireFood providedCurrently we are in need of someone to work 5 days a week but are open to 3 days a week. Please note that this is a permanent position.We offer paid training, flex time, tips paid out daily, medical and dental after probationary period, and free staff meals.Please email your resume, or come to the café and if it is not busy we may be able to interview you on the spot.Job Types: Full-time, Part-time, PermanentPart-time hours: 40 per weekSalary: From $16.75 per hourBenefits:Casual dressDental careDisability insuranceDiscounted or free foodExtended health careLife insuranceOn-site parkingVision careFlexible Language Requirement:French not requiredSchedule:Weekends as neededSupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Parksville, BC\"\n        },\n        {\n            \"id\": \"3B086CEF65DC37F4C3F622F8881779FD\",\n            \"cityName\": \"Johnny K CARSTAR Group in Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=51436e6c7a7f67e7\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Johnny K Carstar Group\",\n            \"rowSalary\": \"$15–$20 an hour\",\n            \"date\": 1694351884094,\n            \"dateOfPosted\": 1692658298757,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a Customer Service Representative (CSR) who communicates well with both the team and customer, highly organized (i.e. on top of schedule, able to prioritize tasks, always update the team with new information), able to handle multiple tasks at once,In return, we are offering competitive hourly wage and benefits package, a fair and family-like atmosphere, opportunities for advancement, and continuous training for our team at the Leduc North location!Role of a CSR/Parts:The CSR is a crucial position for our team since they create the first impression of the team to our customers. Therefore, the CSR is responsible to create a warm and welcoming environment for our customers, while being knowledgeable of what is happening in his/her surroundings (i.e. repair status, rental bookings, becoming the point of contact, etc.)Other responsibilities include:Administrative DutiesBooking appointments for estimates as well as confirming deductibles with insurance companies as well as calling customers for follow up.Update and maintain estimates schedules as well as updating insurance companies information on both the booking system and under each insurance companies’ profile.Collect and record any payments.Create files for any customers and file all paperwork accordingly, including explaining the national-wide warranty program to the customers.Refer customers complaints and/or questions to the appropriate team members.Checking-in and checking-out vehicles before and after repair.Managing rental reservations and updates for our customers.Responsible for receiving, scanning, labelling and sorting vehicle parts.Other additional duties as assigned.Operational and Other DutiesOperating CARSTAR’s vehicles in a safe manner to provides shuttle services to customers as well as our partners in terms of picking up and dropping off vehicles.Operating customers vehicles to our vendors for any sublets work (e.g. vehicles that need to be brought to a dealership, detailing, etc.).Assist with the daily production of the shop (i.e. washing vehicles, keeping the front office clean, etc.)Receiving parts for the vehicles that are being repaired and ensuring that the parts match with both the invoice and the repair orders.Posting of parts on the shop management system.Processed damaged parts as well as any returns for damaged item or incorrect items.Other additional duties as assigned.Requirements:Excellent customer service (experience in providing customer service in a service/retail environment).Some knowledge of vehicle partsHave basic estimating skills is considered an asset.Knowledge in Microsoft Office programs (mandatory) and Collision Repair Estimating/Management System (preferred).Ability to communicate effectively and efficiently.Able to work as a team and handle pressure well during busy times.Ability to communicate with all level of personnel and prioritize, organize and plan work independently.Valid and clean Driver’s License – Alberta Class 5 or equivalent.What we can offer you:- Standard work hours – 8 hours shift with 1-hour break.- Continuous training and advancement opportunities.- Open communications with management and ongoing support.- Competitive wages.If you feel that this is the environment that you have been looking for, do not hesitate to send in your applications!We would like to thank all applicants for their interest, however, only those who meet the qualifications and being considered for the said positions will be contacted.Job Type: Full-timeSalary: $15.00-$20.00 per hourBenefits:Dental careDisability insuranceEmployee assistance programExtended health careLife insuranceOn-site parkingWellness programFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Edmonton, AB T5P 4B6: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Licence/Certification:Driving Licence (required)Work Location: In person\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"B80EAE425247090486C46DD60055ACA1\",\n            \"cityName\": \"Wipro in Moncton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ca4206418816ba3c\",\n            \"jobName\": \"Customer Service (Bilingual English And French Or English And Spanish)\",\n            \"companyName\": \"Wipro\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694351847856,\n            \"dateOfPosted\": 1693506947459,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.0878165,\n                    \"lon\": -64.7782313\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"3 Roles available1. Loyalty Customer Support Analysts - Phone Support, 2 Shifts between 10am-8pm, Monday-Friday. Salary based on experience, up to 22$/hr2. Technical support roles for retail locations (Also phone support), on rotating 24/7 shift schedule, where alternating weekends are guaranteed. Salary based on experience, up to 22$/hr3. Customer Complaints - 10-8 Monday to Friday - Phone Support, 2 Shifts between 10am-8pm, Monday-Friday. Salary based on experience, up to 22$/hr. (Must be bilingual English and french)Full Benefits, competitive salary with opportunities to develop professionally.3 weeks vacation, paid sick leave. Flexible work/life balance.If you have any more questions, please apply and we'll be happy to answer them.Job Types: Full-time, PermanentSalary: $19.00-$22.00 per hourBenefits:Dental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offRRSP matchVision careSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayNight shiftWeekends as neededCOVID-19 considerations:Site operator has excellent cleaning practices in place. Ability to commute/relocate:Moncton, NB E1C 0J4: reliably commute or plan to relocate before starting work (preferred)Work Location: In person\",\n            \"location\": \"Moncton, NB\"\n        },\n        {\n            \"id\": \"DD71AAD39C917FDEA248E4860E307524\",\n            \"cityName\": \"Burlington, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0c1e5771f1201f62\",\n            \"jobName\": \"Customer Service And Sales Representative\",\n            \"companyName\": \"Goldfish Swim School - Ontario\",\n            \"rowSalary\": \"$19–$20 an hour\",\n            \"date\": 1694351827503,\n            \"dateOfPosted\": 1692657295944,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.3255196,\n                    \"lon\": -79.7990319\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burlington\",\n                \"formattedAddress\": \"Burlington, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burlington\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"WHY JOIN GOLDFISH SWIM SCHOOL? Making a meaningful difference in the lives of children is what drives us. Watching our swimmers gain confidence, self-esteem and life-changing skills makes every day GOLDEN! We look for dynamic individuals who share this passion.  If you want to have fun and improve the lives of children in and out of the pool, join our team - you will get back way more than you give! Status: Part time *Must be available to work DAY time with some evenings and weekend shifts*** WILL BE A FLOATER BETWEEN OAKVILLE & BURLINGTON LOCATIONS***Summary: Promotes the sale of swim lesson memberships and related products and services with Goldfish Swim School. Displays quality customer service in addressing the needs of existing and new members. Acts as the first point of contact and as such is responsible for presenting a positive image for the company. Duties and Responsibilities include the following. Other duties may be assigned. Completes the sales process using leads generated through marketing activities including events, advertising, referrals, etc.With effective communication skills, addresses a potential customer’s needs & expectations while presenting the services available from Goldfish Swim School.Manages day to day inquiries from existing members while building strong relationshipsAssists members with purchases of merchandise & vending productsResolves member concerns using a professional & empathetic approach.Prepares daily reports & schedules to support lesson execution and management activitiesParticipates in training/in-services as required.Benefits: Flexible schedule to accommodate school or other activities  Staff Referral bonuses  Team building events  Starting rate $19ph and pay increase at 12 months of continuous service  Discounts on swim lessons for family members Education/Experience:Minimum of two years experience in direct sales or in a related retail sales roleSelf-motivated and conscientiousExcellent presentation, organization, verbal and written communication are mandatoryPositive and clear phone mannerMotivated to achieve sales results Intermediate-level computer skills required using Word, Excel, and other software systems. We will provide reasonable accommodation at any time throughout the hiring and employment process for applicants with disabilities. If you require accommodation, please contact the General Manager and include the job title of the role you are interested in, your name, and your preferred method of contact.  Job Type: Part-time  Salary: $19.00 per hour Application QuestionsYou have requested that Indeed ask candidates the following questions:How many years of Sales experience do you have? Each Goldfish Swim School is an independently owned and operated franchise. The respective Franchisee is the employer at each Goldfish Swim School location. Each franchisee can set their own wages, benefit programs and terms and conditions of employment, which may vary at each Goldfish Swim School location.\",\n            \"location\": \"Burlington, ON\"\n        },\n        {\n            \"id\": \"5D5B4917381AA0804E29DED1B33907F2\",\n            \"cityName\": \"987 Gordon St Unit 11, Guelph, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e9181bd87aa0e0fe\",\n            \"jobName\": \"Retail Customer Service Representative For Specialty Food Store\",\n            \"companyName\": \"University Square Bakery & Deli\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694348187562,\n            \"dateOfPosted\": 1693496511492,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5419735,\n                    \"lon\": -80.24724789999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Guelph\",\n                \"formattedAddress\": \"26 Gordon St, Guelph, ON N1H 4G7, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Wellington County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Guelph\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"University Square Bakery & Deli requires a motivated, Bakery Customer Service Representative who will be responsible for providing prompt, courteous and knowledgeable service to customers. The incumbent must be able to take customer orders, prepare merchandise for sale and ring in customer purchases. The position requires an individual who has the ability to multitask, works well as a team as well as on their own and has strong communication skills.Job Duties:· Greet customers and discuss type, quality and quantity of merchandise or services required· Take orders from clients and prepare merchandise for purchase· Prepare sales and accept cash, credit card or automatic debit payment. Able to Manually use a deli slicer and knives to cut cheese and meats· Replace used stock, rotate current stock and ensure satisfactory inventory levels· Maintain cleanliness of the bakery throughout shift· Understand and follow all pertinent Food Safety guidelines, procedures and requirements· Engage and interact with customers to create a positive shopping experience· Maintain a high level of customer service· Participate in merchandising and promotional activities· Participate in all manner of store maintenance· Maintain a high level of product and service knowledge· Work in partnership with Store Manager and other employees to maximize store sales and in-store presence· Maintain a professional appearance, demeanor, and attitude at all timesQualified applicants should email their resumeRegards,OwnershipJob Type: Part-timePart-time hours: 12-18 per weekSalary: From $16.50 per hourBenefits:On-site parkingStore discountSchedule:Day shiftEvery WeekendCOVID-19 considerations:Regular Sanitization is done throughout store, curbside pick-up is available.Work Location: In personApplication deadline: 2023-09-15Expected start date: 2023-09-05\",\n            \"location\": \"Gordon St Unit, Guelph, ON\"\n        },\n        {\n            \"id\": \"B097F63966911410CFE69EE6A8B1B94A\",\n            \"cityName\": \"33 Commonwealth Ave, Mount Pearl, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fca8a10c7a3e9d79\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Ches's Fish And Chips\",\n            \"rowSalary\": \"From $14.75 an hour\",\n            \"date\": 1694348131689,\n            \"dateOfPosted\": 1693499627040,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.5126534,\n                    \"lon\": -52.8011297\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mount Pearl\",\n                \"formattedAddress\": \"Commonwealth Ave, Mount Pearl, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mount Pearl\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full Job Descriptionwe are looking for someone energetic, have a flexible schedule, like a fast-paced environment, and can learn quickly, we want to hear from you!We are currently hiring a cashier with daytime and evening time availability (weekdays and weekends).Greet guests and advise on store's ordering products and services, handle transactions on POS terminal and process payments, maintain a clean environment for the guests (restock, clearing and cleaning of dining room area), perform all opening and closing duties.Job Types: Part-time, Full-timePart-time hours: 20-40 per weekSalary: From $14.75 per hourBenefits:Store discountVision careDay range:Monday to FridayWeekends as neededShift:4 hour shift8 hour shiftAbility to commute/relocate:Mount Pearl, NL A1N 1W7: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Commonwealth Ave, Mount Pearl, NL\"\n        },\n        {\n            \"id\": \"32665EFCEA1EAF3BB32636EC1F242E57\",\n            \"cityName\": \"209 Bank St, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b6bcddc4483fe7f8\",\n            \"jobName\": \"Financial Customer Service Representative\",\n            \"companyName\": \"Pay2day\",\n            \"rowSalary\": \"$16.50–$17.50 an hour\",\n            \"date\": 1694346816447,\n            \"dateOfPosted\": 1686861403004,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4209477,\n                    \"lon\": -75.70115419999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Bank St, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Do you believe that providing exceptional customer service is the key to a company’s success?At Pay2day, we believe this to be a vital component of success for the individual hired. Within the role of a Financial Customer Service Representative, we are looking for individuals who model they way through every client interaction because our clients are the lifeline of our business.To be a better and different kind of financial service provider; we believe in being EPIC in all we do.Our ideal candidate is in search of an opportunity that allows them to enhance their professional skillset while embracing a culture of ongoing feedback for that next level development.While assisting clients meet their financial goals and building relationships at all levels, you will be part of a team that truly cares. If you’re looking for opportunities within Pay2Day, we offer multiple levels of development programs to those that possess the right attitude and a determination to succeed.Additional Characteristics of Our Team Members Include:· Team player: We succeed together; a collaborative approach wins.· Goal oriented: Results reflect our frontline team’s commitment.· Open to feedback: At all levels feedback is a constant, feedback is a gift.· Problem Solving: Initiative to get the job done, breaking down the barriers to find a solution.· Innovative: Creativity and thinking outside the box is promoted, at Pay2Day the best idea wins!· Detail Oriented: Both internal and external clients matter so we take care in how and what we do to continually exceed expectations.· Communication: Open communication and productive conversations are a focus. Transparency at all levels allows us to success as a team.· Adaptable: Working within an ever-changing industry means you are comfortable with adapting to and embracing change.Job Responsibilities:· Delivering an exceptional client experience/ Responding to client inquiries and requests.· Cash handling/ Data entry· Opening and/or closing the store· Communicating with clients to solidify payment arrangements on past due accounts· Reviewing applicants and completing financial risk assessment to determine approvals· Collaborating with various departments as required· Tasks as assigned by your Branch Manager that are client and revenue focused.If you believe that the role of a Financial Customer Service Representative sounds like a fit for you, we want to meet you!Job Types: Full-time, PermanentSalary: $16.50-$17.50 per hourBenefits:Dental careFlexible schedulePaid time offVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekend availabilityEducation:Secondary School (preferred)Experience:customer service: 1 year (required)Cash handling: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Bank Street, Ottawa, ON\"\n        },\n        {\n            \"id\": \"83A9FFBD0D5CF701D19B3C8D092787CB\",\n            \"cityName\": \"245 Daniel Street South, Arnprior, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=73961f9b943ceeb5\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Canadian Tire Gas+ Arnprior\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694346584449,\n            \"dateOfPosted\": 1693499619726,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4255866,\n                    \"lon\": -76.3649207\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Arnprior\",\n                \"formattedAddress\": \"Daniel St S, Arnprior, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Renfrew County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Arnprior\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking to fill two positions immediately. We need people to fill both opening(5am) and closing(11pm) positions at a busy gas station. We have a steady stream of customers throughout the day and time management will be a great trait for someone to have here. In between customers we have to clean up and restock the store. If you are looking to keep yourself busy while having some enjoyable conversations with customers, this could be the role you were looking for.We will schedule a four hour training shift with follow up training as needed. We can offer full time hours after a couple weeks of employment.If you do not live in Canada, do not apply. I can not see someone willing to commute from Mozambique.Job Types: Permanent, Part-timePart-time hours: 15-20 per weekSalary: From $16.00 per hourBenefits:Flexible scheduleSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayNight shiftWeekends as neededAbility to commute/relocate:Arnprior, ON: reliably commute or plan to relocate before starting work (required)Work Location: In personExpected start date: 2023-09-05\",\n            \"location\": \"Daniel St S, Arnprior, ON\"\n        },\n        {\n            \"id\": \"93E1F724CA2A2F2BDCADBA7AB4B2DB5D\",\n            \"cityName\": \"686 Crown Drive, Peterborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c0158f8c45df7bfa\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Alypsis Inc.\",\n            \"rowSalary\": \"$15.50–$18.80 an hour\",\n            \"date\": 1694346305094,\n            \"dateOfPosted\": 1693499623423,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.276707,\n                    \"lon\": -78.3381535\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Peterborough\",\n                \"formattedAddress\": \"Crown Dr, Peterborough, ON K9J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Peterborough County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Peterborough\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position: Customer Service RepresentativeJob Description:The Customer Service Representative will play a key role in the success of our company. This position is responsible for answering phone calls, responding to emails and web research. The Customer Service Representative will work closely with all departments and may be required to help in other departments.Core Duties & Responsibilities:Answer incoming phone calls and direct calls to appropriate person.Handle web research for customers in a timely manner.Follow up with customers on any issues that may arise from the sales team.Maintain an organized, clean work area.Perform other duties as assigned.Required Skills & Competencies:Excellent communication skills, both written and verbal.Excellent computer skills, including Google drive (docs, sheets, etc...)Attention to detail.Ability to work in a fast-paced, high-pressure environment while maintaining a positive attitude.Desire to learn new skills and be part of the team success.Strong organizational skills and ability to multitask.Passion for natural healthKnowledge about cosmetics and essential oilsWork Location:One location - No remote positions currently offeredWork RemotelyNoJob Types: Seasonal, Casual, Part-timeContract length: 6 monthsPart-time hours: 24-32 per weekSalary: $15.50-$18.80 per hourBenefits:Casual dressOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftNo weekendsSupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Peterborough, ON K9J 6W1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Crown Dr, Peterborough, ON\"\n        },\n        {\n            \"id\": \"0F897A56390EE6C235C81A057F2663EF\",\n            \"cityName\": \"3650 Langstaff Rd, Woodbridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b282e1898f027472\",\n            \"jobName\": \"Front Counter Customer Service\",\n            \"companyName\": \"Langstaff Dry Cleaners\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694345888654,\n            \"dateOfPosted\": 1693496558635,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8034026,\n                    \"lon\": -79.5849546\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Langstaff Rd, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking a motivated individual to work as front counter customer service. Minimum 3 years customer service experience required. Must live locally.Responsibilities:Assist in store customers.Sort, ticket and package customer laundryMaintain a high level of professionalism when dealing with customers.Job Type: Full-timeSalary: From $16.00 per hourSchedule:8 hour shiftMonday to FridayEducation:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Langstaff Rd, Woodbridge, ON\"\n        },\n        {\n            \"id\": \"E09CF9EFC0FCD9F6A953CA0011DB7D3C\",\n            \"cityName\": \"1 Promenade Cir, Thornhill, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6fa37c1905413edc\",\n            \"jobName\": \"Customer Service Associate / Cashier\",\n            \"companyName\": \"Aroma Espresso Bar Promenade Mall\",\n            \"rowSalary\": \"$15.50–$18.36 an hour\",\n            \"date\": 1694345170047,\n            \"dateOfPosted\": 1687763150437,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8068111,\n                    \"lon\": -79.4501259\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Promenade Cir, Vaughan, ON L4J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We at aroma espresso bar Promenade mall are seeking a Customer Service Associate / Cashier to join our team. As a Customer Service Associate / Cashier, you will be responsible for providing exceptional customer service and technical sales support to our customers. The ideal candidate is organized, has excellent time management skills, and is fluent in English.Duties:- Greet customers as they enter the store- Answer customer questions and provide technical sales support- Operate cash register and handle financial transactions- Maintain a clean and organized storeQualifications:- Excellent customer service skills- Strong organizational skills- Ability to manage time effectively- Fluent in English- Previous retail or customer service experience is preferredBenefits:- Competitive pay- Flexible scheduling- Employee discounts on productsIf you are looking for a challenging and rewarding position in a fast-paced environment, we encourage you to apply for this exciting opportunity!Job Type: Part-timePart-time hours: 20 per weekSalary: $15.50-$18.36 per hourBenefits:Store discountDay range:Weekend availabilityFlexible Language Requirement:French not requiredAbility to commute/relocate:Thornhill, ON L4J 4P8: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:fast food: 1 year (required)Language:Filipino (required)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Promenade Cir, Vaughan, ON\"\n        },\n        {\n            \"id\": \"4935FDE462C855FC89E0BC50B9D45F2C\",\n            \"cityName\": \"13571 Verdun Place, Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=580bd7ba7bd091e9\",\n            \"jobName\": \"Front Counter Customer Service\",\n            \"companyName\": \"Fred Holmes Fuel Injection\",\n            \"rowSalary\": \"From $25 an hour\",\n            \"date\": 1694345036359,\n            \"dateOfPosted\": 1694345036074,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.193288,\n                    \"lon\": -123.0747659\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Verdun Pl, Richmond, BC V6V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 25.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    25.0\n                ],\n                \"range\": {\n                    \"gte\": 25.0,\n                    \"gt\": null,\n                    \"lte\": 25.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Start at 8am and end at 4:30pm, 2 coffee breaks and 1 lunch break. Need to have strong English skills and be able to fluently communicate. Must have at least 1 year of experience in the automotive/parts industry. Additional training will be provided. Looking for someone to work long-term in our company.Responsibilities:- Provide exceptional customer service and support to clients- Answer incoming calls and respond to customer inquiries- Assist customers with product information, pricing, and order status- Resolve customer complaints or issues in a professional and timely manner- Process orders, returns, and exchanges accurately- Maintain customer records and update information as needed- Collaborate with other team members to ensure customer satisfaction- Conduct outbound calls to follow up with customers or provide additional informationExperience:- Previous experience in a customer service role preferred- Excellent communication skills, both verbal and written- Strong problem-solving abilities and attention to detail- Ability to multitask and prioritize tasks effectively- Proficient in using computer systems and software applications- Knowledge of CRM software is a plusJoin our team as a Customer Service Representative and be part of a dynamic and supportive work environment. We offer competitive compensation, opportunities for growth, and a positive company culture. Apply today to start your career in customer service!Job Types: Full-time, PermanentSalary: From $25.00 per hourJob Types: Full-time, PermanentSalary: From $25.00 per hourBenefits:Casual dressOn-site parkingFlexible Language Requirement:French not requiredSchedule:Day shiftMonday to FridayNo weekendsEducation:Secondary School (preferred)Experience:Automotive / Parts Inustry: 1 year (required)Customer service: 1 year (preferred)Shift availability:Day Shift (required)Ability to Commute:Richmond, BC V6V 1W5 (preferred)Ability to Relocate:Richmond, BC V6V 1W5: Relocate before starting work (preferred)Work Location: In personExpected start date: 2023-09-13\",\n            \"location\": \"Verdun Pl, Richmond, BC\"\n        },\n        {\n            \"id\": \"5CC7F780F24AC27CF54F2AF45CA370B6\",\n            \"cityName\": \"2000 Boul St Régis, Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ee1fee0c73bd486b\",\n            \"jobName\": \"Customer Service Representative/Inside Sales\",\n            \"companyName\": \"Amacor\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694344985411,\n            \"dateOfPosted\": 1693498021423,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.488025,\n                    \"lon\": -73.7817139\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Boul Saint Régis, Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer service representative / Inside Sales:Amacor is seeking a dynamic, detailed orientated CSR/Inside sales Representative.Located in the West Island close to Highway 40 and Blvd Des Sources.Amacor provides its clients with full-service garment embellishment that includes Silk-screening, Embroidery, Patches and a host of Digital technologies.Responsibilities:Responding promptly to customer inquiriesCollaborate with several departments to address client’s needsEnsure to have all required information to process ordersPrepare quotes, input information and process ordersOrder entry into CRM databaseKeeping records of customer interactions, transactions and commentsAssist sales team with administrative dutiesFollow-up on order statusAnswer customer inquiries about orders via phone or emailSkills:High school diploma or equivalent2 years related work experience preferredBilingual (fluent French and English both written and verbal)Great communicator in person and via telephone and emailProblem solver-ConfidentTeam player as it is a collaborative open environmentMust work well under pressure in a fast-paced environmentAbility to prioritize many tasksComputer skills: Excel-Outlook-WordReprésentant du service à la clientèle / Ventes internes :Amacor est à la recherche d'un représentant RSE/ventes internes dynamique et détaillé.Situé dans le West Island près de l'autoroute 40 et du boulevard Des Sources.Amacor fournit à ses clients un service complet d'embellissement de vêtements qui comprend la sérigraphie, la broderie, les écussons et une multitude de technologies numériques.-------------------------------------------------------------------------------Représentant du service à la clientèle / Ventes internes :Amacor est à la recherche d'un représentant RSE/ventes internes dynamique et détaillé.Situé dans le West Island près de l'autoroute 40 et du boulevard Des Sources.Amacor fournit à ses clients un service complet d'embellissement de vêtements qui comprend la sérigraphie, la broderie, les écussons et une multitude de technologies numériques.Responsabilités:- Répondre rapidement aux demandes des clients- Collaborer avec plusieurs départements pour répondre aux besoins des clients- S'assurer d'avoir toutes les informations nécessaires pour traiter les commandes- Préparer les soumissions, saisir les informations et traiter les commandes- Saisie des commandes dans la base de données CRM- Tenir des registres des interactions, des transactions et des commentaires des clients- Assister l'équipe de vente dans les tâches administratives- Suivi de l'état des commandes- Répondre aux demandes des clients sur les commandes par téléphone ou par courrielCompétences:- Diplôme d'études secondaires ou équivalent- 2 ans d'expérience de travail connexe préférable- Bilingue (français et anglais courants tant à l'écrit qu'à l'oral)- Excellent communicateur en personne et par téléphone et courriel- Résolveur de problèmes - Confiant- Avoir un esprit d'équipe car il s'agit d'un environnement collaboratif ouvert- Doit bien travailler sous pression dans un environnement en évolution rapide- Capacité à prioriser de nombreuses tâches- Compétences informatiques: Excel-Outlook-WordBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingSchedule:8 hour shiftMonday to FridayEdit jobOpenView public job pageJob Types: Permanent, Full-timeSalary: $18.00-$22.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Boul Saint-Régis, Dorval, QC\"\n        },\n        {\n            \"id\": \"8F3AFB74BE3BBD5A55843809E90C4F4B\",\n            \"cityName\": \"8063 North Fraser Way, Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d91ae0b9326bd0c5\",\n            \"jobName\": \"Customer Service/Sales Representative\",\n            \"companyName\": \"Bmg Industries Inc.\",\n            \"rowSalary\": \"$19–$23 an hour\",\n            \"date\": 1694344720247,\n            \"dateOfPosted\": 1693499579393,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.195621,\n                    \"lon\": -122.995875\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"N Fraser Way, Burnaby, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About Us: BMG Industries Inc.Qualified candidates from Burnaby and Lower mainland onlyFounded in 2015, BMG Industries Inc. set out with an aspiration to make a significant mark on Canada's e-commerce landscape. Today, having navigated the challenges and opportunities that came our way, we have experienced commendable growth and are now setting our gaze beyond Canadian territories, aiming for a substantial presence in the U.S. market and further.Our approach is rather direct: We pinpoint exceptional products, ensure they're priced attractively, and then rely on our adept marketing team to promote them effectively.What differentiates BMG Industries Inc. in the bustling e-commerce market?Vertical Integration: Instead of depending on third-party logistics, we've invested in our own warehouse. This not only streamlines our operations from sourcing to delivery but also gives us better control over our supply chain's entirety.Dedicated In-House Team: Our belief is that effective branding is as crucial as the product itself. Supporting this conviction is our team of in-house UX/UI designers, graphic artists, social media experts, and videographers. Their collaborative efforts ensure that our products aren't just sold but are presented in a way that resonates with our audience.Our Unique Edge: This combined operational and creative approach provides us a distinct advantage, helping our brands stand out in a sea of e-commerce offerings.For those newer to the field and looking to delve deep into the e-commerce sector, BMG Industries Inc. offers a unique opportunity. While we do promise a conducive working environment, it's the learning experience and the chance to be part of a growth-centric company that truly makes the difference.Your RoleThis multifaceted role demands an individual who can efficiently address real-time challenges, such as rerouting packages, while also possessing the finesse to liaise with wholesale clients, ensuring their needs are consistently met and relationships are nurtured.Key Responsibilities:Customer Service Excellence: Address customer queries promptly, whether from individual buyers on our platforms or wholesale partners.Package Management: Act swiftly in cases where packages face issues. This includes rerouting or providing solutions to ensure customer satisfaction.Liaison with Virtual Assistants: Collaborate with VAs to manage feedback on Amazon, aiming for resolution and continual service enhancement.Call Management: Handle incoming calls, ensuring they are effectively routed and that callers receive comprehensive assistance.Wholesale Client Relationship: Serve as the primary contact for wholesale clients, understanding their needs, addressing their concerns, and maintaining a positive, productive relationship.Sales Quotations: Craft and send tailored quotes to clients based on their requirements.Order Oversight: Track and monitor orders, intervening proactively when issues arise.Digital Expansion: Contribute insights and feedback as we diversify our sales platforms, especially focusing on enhancing our proprietary website's user experience.Feedback Loop: Regularly gather feedback to refine our processes and enhance customer satisfaction across all platforms.Qualifications:Proven experience in a combined customer service and sales role.Exceptional communication skills, both oral and written.Familiarity with e-commerce platforms, especially Amazon, is an asset.Acumen to manage challenges in real-time, such as package rerouting.Strong interpersonal skills, particularly in relationship management with key clients.Proficiency in CRM tools and other relevant software.A proactive approach, anticipating challenges and acting before they escalate.Additional Note:We’re seeking a versatile candidate who not only excels in customer service but is also motivated by the prospects of earning commissions by identifying and converting potential leads. Recognizing that there may be downtimes during regular responsibilities, the ideal candidate will utilize these periods proactively to make cold calls to qualified leads.Key Responsibilities:Customer Service Excellence: Efficiently address and resolve queries from our platform users and wholesale partners.Package Management: Handle any challenges related to packages, including rerouting or finding quick solutions to delivery issues.Wholesale Client Liaison: Act as the primary contact for wholesale clients, fostering a positive, lasting relationship.Cold Calls: Utilize downtime to proactively make cold calls to qualified leads, aiming for sales conversions.Commission-Based Sales: Actively seek out new clients and sales opportunities, earning a commission for every successful conversion you initiate.Order Management: Monitor orders diligently, ensuring a seamless customer experience.Feedback Implementation: Regularly gather and act upon feedback to optimize our services.Qualifications:Solid experience in a customer service and sales capacity.Excellent communication skills, both verbal and written.Familiarity with e-commerce platforms, particularly Amazon.Aptitude for managing challenges promptly, e.g., package rerouting.Strong interpersonal and relationship management skills.Experience with CRM tools and sales software.Self-motivation and a proactive mindset, especially regarding sales opportunities.Compensation:Apart from a competitive base salary, candidates will have the opportunity to earn a commission for every customer or sale they independently secure. This offers an excellent incentive for those who are driven by performance and results.Additional Note:This role is perfect for those who wish to combine their customer service expertise with a passion for sales. The structure allows for substantial earning potential for those who are proactive and results-oriented.If you have the drive to not only address customer needs but also expand our clientele base, we want to hear from you! Kindly apply with an updated CV and a cover letter detailing your experience in both customer service and sales, especially any prior roles that involved commission-based earning. their experience in managing both individual customers and wholesale relationships.Job Type: Full-timeSalary: $19.00-$23.00 per hourBenefits:Dental careLife insurancePaid time offVision careFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Commission payAbility to commute/relocate:Burnaby, BC V5J 5M8: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Work Location: In personApplication deadline: 2023-09-07Expected start date: 2023-09-11\",\n            \"location\": \"North Fraser Way, Burnaby, BC\"\n        },\n        {\n            \"id\": \"3296F6AEF095A01D19E7F7390F1A4940\",\n            \"cityName\": \"Frisco Pools Inc. in Bolton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5e27c168286cacd7\",\n            \"jobName\": \"Executive Customer Service/Office Manager\",\n            \"companyName\": \"Frisco Pools Inc.\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694344685307,\n            \"dateOfPosted\": 1682455746943,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8741995,\n                    \"lon\": -79.7306602\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Caledon\",\n                \"formattedAddress\": \"Bolton, Caledon, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Caledon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job descriptionFrisco Pools Inc. has been providing quality services to residential locations for over 25 years and we are growing! We are looking to hire an Executive Customer Service/Office Manager to handle all of our pools, hot tubs, and water feature inquiries. We are looking for candidates that have experience providing high-value Customer Service, are self-motivated, hard-working, and able to work as part of a team. We are looking for people who want to learn and grow within our organization. This is a permanent position with seasonal hours. We offer competitive pay and an excellent team dynamic. Must have prior experience in a similar role.Job Details:Plan, organize, direct, control, and evaluate daily operationsCommunicate with Department ManagersCustomer relations, including maintaining customer electronic files, & responding to emails and phone callsManage part-time staff and assign dutiesDetermine merchandise and services to be sold, locate, select and procure merchandise for resaleExplain the type of and cost of services offered, issue receipts and other formsQualifications:Experience using QuickBooks in a workplace setting for at least ONE YEAR is a must.Must have your own transportation to head office.Excellent interpersonal and negotiation skills in a professional manner across a range of mediums including internet, email, telephone, and in-personMust be a self-motivated team player able to organize and prioritize workload in a high volume fast-paced environmentProficiency in Windows-based office applications including Word, Excel, and OutlookMarketing experience is an assetCompensation & Benefits:$18.00 to $25.00/hourBonus PerksVacation**Additional benefits will become available in early 2023.Schedule & Hours:Monday to Friday, & occasional weekendsAverage day 10 am to 5 pm, flexible, extended times during peak seasonWinter hours are reduced (December to March)35 Average weekly hours#READYTOWORKJob Types: Permanent, Part-time, Full-timePart-time hours: 30-40 per weekSalary: $18.00-$25.00 per hourBenefits:Casual dressFlexible scheduleOn-site parkingFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftCOVID-19 considerations:To keep our team as safe as possible, we have limited staff in the office, specified workstations to work from, we have on-site masks, gloves, and hand sanitizer.Application question(s):We are located in Bolton. Do you have reliable transportation to and from the office?Experience:administrative/customer service: 1 year (preferred)QuickBooks (in a workplace setting): 1 year (preferred)Work Location: In person\",\n            \"location\": \"Bolton, ON\"\n        },\n        {\n            \"id\": \"FC46830C6AAF2B38C72EA1FD85F94A19\",\n            \"cityName\": \"Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1fb1f4a2f66e2fe2\",\n            \"jobName\": \"Customer Service Sales Representative\",\n            \"companyName\": \"United Management Group Inc.\",\n            \"rowSalary\": \"$600–$850 a week\",\n            \"date\": 1694344676594,\n            \"dateOfPosted\": 1693495282305,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.895136,\n                    \"lon\": -97.13837439999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 600.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    600.0\n                ],\n                \"range\": {\n                    \"gte\": 600.0,\n                    \"gt\": null,\n                    \"lte\": 600.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We specialize in client acquisition and business development for brands with a strong commitment with a passion for providing exceptional products and services. Our team shares a passion for giving back; both to our fellow teammates and to our community. Our team enjoys problem-solving and to continue our efforts in the Winnipeg area and keep up with client demand, we are hiring a Customer Service Sales Representative immediately.The Customer Service Sales Representative will act as the first point of contact with existing customers. They will assist with organizing our sales team and reporting back to the Executive Sales Manager. The Customer Service Sales Representative will receive hands-on training on all sales and marketing techniques, brand management strategies, territory management, and compliance standards as well as coaching, mentoring, and career development. The ideal candidate will have exceptional communication skills and be genuinely excited to grow with a company.Customer Service Sales Representative Responsibilities:Meeting planned sales goalsSetting individual sales targets with the sales team.Tracking sales goals and reporting results as necessaryOverseeing the activities and performance of the sales team.Develop and deliver informative sales presentations based on individual customer needs to maximize market shareParticipate in continuous training opportunities with the intent to increase qualified customer contacts, enhance relationships and advance the sales process.Customer Service Sales Representative Qualifications:Previous experience in marketing, promotions, sales, or account management preferredComfortable taking on a leadership role and support role within a team (must work well with others)Strong interpersonal skillsExperience in customer relationship management (preferred, not required)Experience in a management or leadership roleExcellent written and verbal communication skills.Dedication to providing great customer serviceJob Types: Full-time, PermanentSalary: $600.00-$850.00 per weekBenefits:On-site parkingSchedule:8 hour shiftMonday to FridayWeekends as neededAbility to commute/relocate:Winnipeg, MB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Winnipeg, MB\"\n        },\n        {\n            \"id\": \"38082F8E43474942EA881CBD2D8325F6\",\n            \"cityName\": \"1760 Ymca Rd, Gibsons, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=44dc9343b0b960fd\",\n            \"jobName\": \"Customer Service Representative, Ymca Camp Elphinstone\",\n            \"companyName\": \"Ybc\",\n            \"rowSalary\": \"$23 an hour\",\n            \"date\": 1694344642333,\n            \"dateOfPosted\": 1690269516733,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.4453039,\n                    \"lon\": -123.4735974\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Gibsons\",\n                \"formattedAddress\": \"YMCA Rd, British Columbia V0N 1V6, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Sunshine Coast Regional District\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Gibsons\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Title: Customer Service Representative, YMCA Camp Elphinstone  Location: 1760 YMCA Road Gibsons, BC  Terms:Full-Time Seasonal Contract Contract Dates: As soon as possible – November 4, 2023  Shifts: Monday – Friday  Rate: $23.00 per hour  Reports To: Director, YMCA Camp Elphinstone  YMCA Camp Elphinstone  YMCA Camp Elphinstone is located near Gibsons on the Sunshine Coast, a 40-minute ferry ride from Vancouver. It is situated on 144 acres of temperate rainforest along the shores of Howe Sound. Camp Elphinstone operates as a residential summer camp during July and August offering programs like one and two week camp, Sailing Camp, Leadership Development, and out-trips to Desolation Sound and the Sunshine Coast Trail.  From September to June, Camp Elphinstone operates as an Outdoor Education, Recreation and Retreat Centre for schools, businesses, clubs, and other special interest groups. Camp Elphinstone currently serves over 12,000 participants annually.  YMCA Camp Elphinstone has accommodation and dining for up to 400 people and has programs and equipment for swimming, canoeing, kayaking, sailing, stand up paddleboarding, low/high ropes, rock climbing, wilderness and environmental programs, archery, crafts and more. Camp Elphinstone employs approximately 140 staff/volunteers during July and August, with a team between 20-50 for the spring and fall Outdoor Education seasons, and a smaller core team of 10 staff during the winter season. Successful Camp Elphinstone staff are self-motivated individuals whose ambition is to help children and youth develop in an outdoor camp setting.  Nature and Scope: The Customer Service Representative is the primary administrative support for the YMCA Camp Elphinstone main office. The person will provide onsite excellent customer service, registration support, and office administration support for all camp programs. The work environment is fast-paced with a high volume of program participants.  Major Responsibilities: Support registration for all YMCA Camp Elphinstone programs Provide exemplary customer service Monitor phone and email inquiries Support customers in the navigation of online self-service technologies Work with Microsoft Office, ActiveNet, and other Database systems Process transactions Produce reports Waitlist management Collect and sort mail Provide positive and welcoming presence at reception desk; maintains organized reception area Develops and maintains positive working relationships with key stakeholders including YMCA staff and volunteers, community agencies and other service providers Behaves in a professional manner at all times Willingness to learn new skills Other tasks and duties as assigned Qualifications: Related experience Experience with CRM Systems Working knowledge of new technologies Strong computer proficiency Ability to multitask, prioritize and work independently Ability to be flexible and problem solve Strong attention to detail Strong written and verbal communication skills in English Ability to work in a team environment Well-developed interpersonal and relationship building skills Successful candidates will be required to provide a current and satisfactory Criminal Reference Check/Vulnerable Sector Search issued no later than six (6) months preceding your start date About the YMCA: YMCA BC is a charity dedicated to strengthening the foundations of community, by nurturing the potential of children, teens & young adults, promoting healthy lifestyles, fostering a sense of social responsibility and delivering lasting personal & social change to grow in spirit, mind, and body.  Since January 2023, YMCA of Northern British Columbia, YMCA-YWCA of Kamloops and YMCA of Greater Vancouver are officially one association, with one mission to strengthen our impact for communities across British Columbia. We are YMCA BC. This transition marks a new chapter in our long-standing history of building communities, transforming lives, and connecting people of all ages, stages, backgrounds and abilities, to unique opportunities to learn, grow, and reach their potential.  YMCA BC provides services in health, fitness & aquatics, child care, camping, employment & community services to over 150,000 participants annually. Our values guide our decision-making and behavior: Do the right thing - We are caring, respectful, honest and responsible in all we doPut people first - We believe in the strengths, perspectives and passion of peopleKeep our promises -We do what we say we will doLead by example -We are courageous, speak with conviction, listen attentively and collaborate Application Deadline: Ongoing until filled, consideration of candidates will begin immediately  Thank you for your interest and application. Due to the high volume of applications received, only short-listed candidates will be contacted.\",\n            \"location\": \"Ymca Rd, Gibsons, BC\"\n        },\n        {\n            \"id\": \"FAC7E6E6724B53879EBD2D85AAD4AE4B\",\n            \"cityName\": \"5379 Hwy 2, Shannonville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c7a2f5a5d63e4532\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Fast Freddy's North Shannonville\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694344619894,\n            \"dateOfPosted\": 1693492882717,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.194916,\n                    \"lon\": -77.2274319\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Shannonville\",\n                \"formattedAddress\": \"Shannonville, ON K0K 3A0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hastings County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Shannonville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Reliable persons needed for Busy gas station/variety store . Experience: Cash, Lottery training considered an asset (willing to train the right candidate)Cashier, customer service, POS system, stocking, Input inventory as received. Able to lift up to 40 lbs, carry, bend, stand for long periods.Stock/ Cleaning are required : Be able to time management and be proactive.Scheduled times can be any time between 5:30am to 11:00pm Monday to Sunday, various shifts on weekdays and weekends.Looking to hire both full time and part time with availability for all shifts. Subsidized benefits plan available for full time employees.Job Types: Permanent, Part-time, Full-timePart-time hours: 20-40 per weekSalary: $15.50 per hourBenefits:Dental careOn-site parkingStore discountVision careDay range:HolidaysWeekend availabilityFlexible Language Requirement:French not requiredShift:8 hour shiftDay shiftEvening shiftMorning shiftWork setting:Convenience storeWork Location: In personExpected start date: 2023-09-08\",\n            \"location\": \"Shannonville, ON\"\n        },\n        {\n            \"id\": \"C46F0D03BE15A2693B0CF46B272DB3B9\",\n            \"cityName\": \"Fall River, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=657475462bfbaef7\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Petro Canada\",\n            \"rowSalary\": \"$13.35–$13.85 an hour\",\n            \"date\": 1694344584363,\n            \"dateOfPosted\": 1652421036693,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.8180582,\n                    \"lon\": -63.6119749\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fall River\",\n                \"formattedAddress\": \"Fall River, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fall River\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Looking to hire for two day shifts weekends only saturday sunday 6:45 to 3:15 and evening 2:45 to 11:15No experence is needed.As a gas station cashier, your duties includegreeting and assisting customers, maintaining the inventory of products on store shelves, operating the cash register and running credit card transactions, lotto machine, scratch tickets, handling and cleaning the gas station shop and restrooms.Job Type: Part-timePart-time hours: 34 per weekSalary: $13.35-$13.85 per hourBenefits:Dental careVision careSchedule:8 hour shiftSupplemental pay types:Bonus payAbility to commute/relocate:Fall River, NS: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Overnight Shift (preferred)Day Shift (preferred)Night Shift (preferred)\",\n            \"location\": \"Fall River, NS\"\n        },\n        {\n            \"id\": \"087A9064D0ACAFFEADF4BE33F99DB85B\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bfcc515080a4db77\",\n            \"jobName\": \"Customer Service Supervisor (Except Financial Services)\",\n            \"companyName\": \"Southwood Automotive\",\n            \"rowSalary\": \"$31 an hour\",\n            \"date\": 1694344449922,\n            \"dateOfPosted\": 1686824273682,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 31.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    31.0\n                ],\n                \"range\": {\n                    \"gte\": 31.0,\n                    \"gt\": null,\n                    \"lte\": 31.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 3 months to less than 1 yearExperience: 2 years to less than 3 yearsTasks Co-ordinate, assign and review work Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Identify training needs and train workers in job duties and company policies Requisition materials and supplies Resolve work-related problems and prepare and submit progress and other reports Supervision 3-4 people Security and safety Criminal record check Work conditions and physical capabilities Attention to detail Fast-paced environment Large workload Tight deadlines Work under pressure Personal suitability Accurate Client focus Dependability Efficient interpersonal skills Initiative Judgement Organized Reliability Team player Screening questions Are you available for the advertised start date? Do you have previous experience in this field of employment? Long term benefits Other benefitsWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"84495894B31B609F33EFEC4925A852D2\",\n            \"cityName\": \"114 Sydenham St, Flesherton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c1784b32a234b422\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Esso\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694341726396,\n            \"dateOfPosted\": 1669018985368,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2648914,\n                    \"lon\": -80.5533015\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Flesherton\",\n                \"formattedAddress\": \"Sydenham St, Flesherton, ON N0C 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Flesherton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"$16.50/HRLOCAL CANDIDATES ONLYApply Now! Hiring Now! All training will be provided.ESSO Gas Station in Flesherton is hiring Customer Service Representatives to join its team - opening or closing shifts, weekdays or weekends. No experience necessary. Previous gas station or convenience store experience is always an asset. Full Training will be provided.Send resume online or welcome to stop by at the store.Job Types: Full-time, Part-time, PermanentSalary: From $16.50 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftEveningsEvening shiftEvery WeekendHolidaysMonday to FridayMorning shiftNo weekendsOn callWeekend availabilityWeekends onlyAbility to commute/relocate:Flesherton, ON: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Sydenham St, Flesherton, ON\"\n        },\n        {\n            \"id\": \"22EBCF0069DAAF4AB72BFDDD73218B58\",\n            \"cityName\": \"1888 West Broadway, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d4fe0cc104bfe56d\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Le Coq Frit\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694341142710,\n            \"dateOfPosted\": 1675833991466,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.26376459999999,\n                    \"lon\": -123.14866\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Broadway, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"-serving-bussing-phone orders for take-out-POS system, 3rd party delivery tablet, payment processing-take-out prep for packaging orders-cleaning duties-various other related dutiesMust be able to work during weekday(Monday - Friday between 11-9pm)Job Types: Permanent, Part-timePart-time hours: 25 per weekSalary: From $16.00 per hourSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayMorning shiftSupplemental pay types:TipsCOVID-19 considerations:Required to wear a mask. Sanitize surfaces after use.Work Location: In person\",\n            \"location\": \"Broadway WR\"\n        },\n        {\n            \"id\": \"11101BB5C45FB63E336C41533FF7B93C\",\n            \"cityName\": \"9917 99 Avenue, Sexsmith, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=459c7064513964a2\",\n            \"jobName\": \"Customer Service And Communications Assistant\",\n            \"companyName\": \"Sexsmith Shannon Municipal Library\",\n            \"rowSalary\": \"$22.12–$24.71 an hour\",\n            \"date\": 1694341055476,\n            \"dateOfPosted\": 1693490472098,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.3451183,\n                    \"lon\": -118.7797081\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sexsmith\",\n                \"formattedAddress\": \"Sexsmith, AB T0H 3C0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Grande Prairie County No. 1\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sexsmith\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service and Communications AssistantJob Description:The role plays a key role at the Sexsmith Shannon Municipal Library. This position will assist with answering phone calls, responding to emails and requests for materials. You will helping our patrons make the most of their library experience and will take a lead role in our social media.Core Duties & Responsibilities:Assist library patrons with finding materials within the library, ordering materials from other libraries and systemsAnswer incoming phone calls and respond to emails and inquiriesMaintain general knowledge of products and servicesParticipate in the development of programs and offeringsDevelop and create a social media plan for the library and servicesPerform other duties as assignedRequirements:High School Diploma or equivalent required2 years of customer service experience in a business settingMust be able to work flexible hours including weekends and holidaysAbility to build rapport with clients and employeesStrong written and verbal communication skillsAbility to problem solve, analyze problems, and develop solutionsThis position will be 30 to 34 hours per week and is expected to be filled in late September.Job Types: Full-time, PermanentSalary: $22.12-$24.71 per hourBenefits:Casual dressPaid time offSchedule:Evening shiftWeekends as neededWork Location: In person\",\n            \"location\": \"Avenue, Sexsmith, AB\"\n        },\n        {\n            \"id\": \"F56E66741822E290CA5DFBE99806C513\",\n            \"cityName\": \"Smart IP in Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=842a7d1e49a1f1fa\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Smart Ip\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694341047614,\n            \"dateOfPosted\": 1668834044099,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7315479,\n                    \"lon\": -79.7624177\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Brampton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job SummaryWorking in a contact center providing support to our customers.Connecting and building a rapport with a variety of customers, asking questions and offering solutions to resolve their needsCommunicating efficiently with customer, regarding tickets, tasks and escalationsResponsibilities and DutiesCommunicating efficiently with customer, regarding tickets, tasks and escalationsQualifications and SkillsExperience in Telecommunications RoleGrade 12 GraduateJob Type: Full-timeSalary: $17.00-$18.00 per hourBenefits:Casual dressExtended health careOn-site gymOn-site parkingPaid time offSchedule:8 hour shiftWork Location: In person\",\n            \"location\": \"Brampton, ON\"\n        },\n        {\n            \"id\": \"BC0112755CD56CC047EB628EB8783C92\",\n            \"cityName\": \"Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d9e8e290cdd28755\",\n            \"jobName\": \"Customer Service Alarm Dispatcher\",\n            \"companyName\": \"Armstrongs\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694341015689,\n            \"dateOfPosted\": 1688681350036,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6066487,\n                    \"lon\": -73.712409\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laval\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Alarm DispatcherArmstrong's Monitoring Centers, an AvantGuard Company Laval, PQ, CanadaAt Armstrong’s we are Canada’s premiere alarm monitoring company. We are a part of the AvantGuard Monitoring company with the mission to create solutions for a safer world through our innovative technologies and caring people. We operate one of the largest and fastest growing monitoring companies in North America, monitoring alarms (security, fire, medical, environmental, IoT) throughout the U.S. and Canada for nearly 1.7 million people every day. At Armstrong's we are defined by our core values: We Care, We're Fun, We're Innovative, We value Relationships, We give great Service, and We work as a team to extend trust. In short, We Care F.I.R.S.T. about our employees and subscribers.Reasons You'll Love Working Here:4 days off per week! We have a rotating schedule where you will work 4 days on and 4 days off (12 hour shifts)Starting pay of $17/hr for day shift and $18.00/hr for night shift - Earn an extra $1 per hour for speaking French.4 weeks of fully paid, hands-on trainingJob security with guaranteed hours (various shifts)Secure building with key fob access and free parkingNO SALES or Surveys, just helping people!Growth opportunities - We have strong, steady growth and always look internally for promotions firstA FUN team, company parties, professional development, and more!What You'll Do:Process alarm signals quickly, accurately and professionally in stressful situationsDispatch the proper authorities, verify that help is on the way and notify subscribersAccurately document all responses for the alarm on the computerLearn and use new software to complete multiple tasksWhat We're Looking for?:Our ideal candidate is fluent in FrenchMust have a completed high school diploma or equivalentExperience providing excellent customer service preferredAbility to stay calm in a very fast past environment with high pressure situationsMust be able to pass a pre-employment criminal record checkCandidates MUST reside and be legally authorized to work in CanadaArmstrong's Montioring Centers, AvantGuard Monitoring Centers and Becklar, LLC is an equal opportunity employer. All applicants will be considered for employment without attention to race, color, religion, sex, sexual orientation, gender identity, national origin, veteran or disability statusAgent au service à la clientèleArmstrong’s - Un Centre de Surveillance AvantGuard Laval, PQ, CanadaChez Armstrong’s, nous sommes un centre de surveillance d’alarme de premier choix au Canada. Nous faisons partie de la société AvantGuard Monitoring avec la mission de créer des solutions pour un monde plus sûr grâce à nos technologies innovantes et à nos employées attentionnées. Nous exploitons l’une des entreprises de surveillance les plus importantes et à la croissance la plus rapide en Amérique du Nord, en surveillant les alarmes (sécurité, incendie, médical, environnemental) aux États-Unis et au Canada pour près de 1,7 million de clients chaque jour. Chez Armstrong, nous sommes définis par nos valeurs fondamentales: nous nous soucions des autres, nous sommes innovants, nous valorisons les relations, nous offrons un excellent service et nous travaillons en équipe pour étendre la confiance. En bref, Nous nous soucions en premier de nos employés et abonnés.Raisons pour lesquelles vous allez adorer travailler ici:4 jours de congé par semaine! Nous avons un horaire rotatif où vous travaillerez 4 jours et 4 jours de congé (quarts de travail de 12 heures)Salaire de départ de 17 $/h pour le quart de jour et 18,00 $/h pour le quart de nuit - Gagnez 1 $ de plus de l'heure pour parler français.Sécurité d’emploi avec heures garanties (divers quarts de travail)Bâtiment sécurisé avec carte d’accès et stationnement gratuitPAS DE VENTES ou de sondage, on aide simplement les gens!Opportunités de croissance - Nous avons une croissance forte et régulière et cherchons toujours d’abord à l’interne pour des promotions.Une équipe dynamique, des évenement d’entreprise, un développement professionnel et plus encore!Ce que vous ferez:Traiter les signaux d’alarme rapidement, avec précision et professionnellement dans des situations stressantesDépêchez les autorités appropriées, vérifiez que l’aide est en route et informez les abonnésDocumenter avec précision toutes les réponses pour l’alarme sur l’ordinateurApprenez et utilisez de nouveaux logiciels pour effectuer plusieurs tâchesCe que nous recherchons?:Notre candidat idéal parle couramment le français et l’anglaisDoit avoir un diplôme d’études secondaires ou l’équivalentExpériencea fournir un excellent service à la clientèleCapacité à rester calme dans un environnement de travail très rapide avec des situations de haute pressionDoit être en mesure de passer une vérification du casier judiciaire préalable à l’emploiArmstrong’s Montioring Centers, AvantGuard Monitoring Centers et Becklar, LLC est un employeur d’égalité des chances. Tous les candidats seront pris en considération pour un emploi sans se souciant de la race, de la couleur, de la religion, du sexe, de l’orientation sexuelle, de l’identité de genre, de l’origine nationale, du statut d’ancien combattant ou d’invalidité\",\n            \"location\": \"Laval, QC\"\n        },\n        {\n            \"id\": \"F8DB4501705E264FF21E5F15F3D9ECD4\",\n            \"cityName\": \"15110 54a Ave, Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ca94bfeb7185f887\",\n            \"jobName\": \"Customer Service /Gym Staff\",\n            \"companyName\": \"Elevation Fitness\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694339292988,\n            \"dateOfPosted\": 1690129626464,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1901012,\n                    \"lon\": -122.8503845\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"13438 Central Ave, Surrey, BC V3T 0N2, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Elevation Fitness is looking for high energy, outgoing customer service representatives for closing shifts Wednesday to Sunday. 30-35hrsApplicants with a confident, outgoing and social personality required. Must be responsible, have reliable transportation, have excellent customer service skills and be good at multitasking. Duties include, greeting customers, creating a high energy pleasant environment, front desk duties, giving tours, general cleanliness of the facility and juice bar duties. Must be available for evening and weekend shifts.Please apply with cover letter and resume.Job Types: Full-time, Part-timePart-time hours: 30 -35 per weekSalary: $16.00-$20.00 per hourSchedule:Day shiftEvening shiftWeekend availabilityEducation:Secondary School (required)Experience:Customer Support & Client Services Occupations: 1 year (preferred)Work Location: In person\",\n            \"location\": \"A  Ave, Surrey, BC\"\n        },\n        {\n            \"id\": \"00140BBB85D261AFF36BECDC162BB214\",\n            \"cityName\": \"Dufresne Furniture and Appliances in Thunder Bay, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=451121a081764ba5\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Dufresne Furniture And Appliances\",\n            \"rowSalary\": \"$16.50–$17.00 an hour\",\n            \"date\": 1694338331970,\n            \"dateOfPosted\": 1693490468281,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.3808951,\n                    \"lon\": -89.2476823\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Thunder Bay\",\n                \"formattedAddress\": \"Thunder Bay, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Thunder Bay District\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Thunder Bay\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"As a Customer Service Agent, you will be responsible for addressing our customer service issues and notifications.The Dufresne Group is committed to investing in our team members; we offer:Market competitive wages;Excellent employee discounts;Career growth and continuous development;Respectful and family-oriented working environment with strong company values.As the Customer Service Agent, you will:Provide excellent customer service to our team and our guestsCommunicate with guests by following your training resolution processesContact customers through outbound queue provide updates and book deliveries and advise of delivery/technician timeframesAccurately opens, monitors and closes Customer Service OrdersAccurately records Delivery Completion DataComplete Customer Invoicing and initiate parts orderingAs a successful candidate you will have the following:Be available to work days, evening and weekends as requiredHave excellent verbal communication skills and telephone etiquette with ability to negotiate tactfully and act with diplomacy and respectGood computer skills with ability to quickly learn new applicationsApply now!Job Types: Part-time, PermanentPart-time hours: 8-20 per weekSalary: $16.50-$17.00 per hourWork Location: In person\",\n            \"location\": \"Thunder Bay, ON\"\n        },\n        {\n            \"id\": \"E8CEAB2DED77DF06F8B873414C64D339\",\n            \"cityName\": \"New Westminster, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b8a39ab4411a1cd9\",\n            \"jobName\": \"Casino Dealer (Customer Service Alternative)\",\n            \"companyName\": \"Evolution Americas\",\n            \"rowSalary\": \"$17–$24 an hour\",\n            \"date\": 1694338311721,\n            \"dateOfPosted\": 1693487254517,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2057179,\n                    \"lon\": -122.910956\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"New Westminster\",\n                \"formattedAddress\": \"New Westminster, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"New Westminster\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Job Description  Do you have the flair to be a great entertainer and are able to improvise while performing live as a Casino Dealer? Do you have acting experience and are comfortable hosting live on camera? We are now looking for Casino Dealers who want to work in a fast-paced and social work environment. As a Casino Dealer, you will spend most of your working day in front of the camera hosting classic casino games like blackjack, poker, roulette, and other casino games and interacting with the players. The job will help you grow your performance techniques and your ability to entertain. We operate from a newly renovated facility in the central part of New Westminster, easily accessible from locations such as Surrey, Coquitlam, Port Moody and Burnaby. The studio runs all hours of the day, which means that we offer both night and day shifts. We Offer Generous Compensation Package including: Earn from $17.00 - $24.00 per hour plus monthly performance bonus. Extended Health and Benefit Plan 15 Days Paid Vacation 8 Paid Sick Days 2 Paid Evo Day We are looking for: Fast learners with positive energy who are looking to start a career with us or build professional hosting skills for the future Previous acting, hosting experience is an advantage Applicants should be charismatic with an open-minded personality A show person at heart and be able to communicate fluently in English Open availability for shifts Qualifications  Age 19+ High school diploma or equivalent Professional and service-minded with good communications skills Must be able to work a flexible schedule, evenings, weekends and holidays Must be able to obtain Provincial Gaming License (sponsored by the company) Wear an assigned uniform and maintain professional appearance standards Must be comfortable wearing theatrical make-up (foundation, blush) Fluent in English, with strong communication skills Prior experience as an actor, performer, theatre, or broadcasting. Additional Information  About Us Evolution is a market-leading developer and provider of products and services for online casino entertainment. Our excellence is driven by over 17,000 EVOlutioneers across 30 markets worldwide, working in product innovation, software development, IT solutions, game hosting and business support. Evolution's dynamic and creative environment creates a unique opportunity for personal and professional growth. Our integrated business-to-business solutions guarantee that our clients can always provide an unrivalled online entertainment experience to their players globally. We thrive on remaining an award-winning digital powerhouse of entertainment products and services with an ever-expanding line-up of product brands: Evolution Live, NetEnt, Red Tiger, Ezugi, Big Time Gaming, Nolimit City and DigiWheel. Evolution is a Swedish company founded in 2006 and listed on Nasdaq Nordic (EVO).\",\n            \"location\": \"New Westminster, BC\"\n        },\n        {\n            \"id\": \"02CDBF376E5C170048C23D57770ABF53\",\n            \"cityName\": \"300 East River Rd, New Glasgow, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9bb83abddfab48b1\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Needs Convenience\",\n            \"rowSalary\": \"From $14.50 an hour\",\n            \"date\": 1694338260939,\n            \"dateOfPosted\": 1693493033752,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5741799,\n                    \"lon\": -62.6423135\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"New Glasgow\",\n                \"formattedAddress\": \"E River Rd, New Glasgow, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Pictou County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"New Glasgow\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cash/Debit SalesUp selling a mustLotto and Tobacco SalesCustomer Service/Following PolicyMerchandising/StockingCleaningSign work contract and expectations of job upon hiringLift, kneeling and bendingAble to work alone and have great time management skillsSome experience an asset but willing to trainNight shift premiumJob Type: Part-timePart-time hours: 16 per weekSalary: From $14.50 per hourShift:8 hour shiftDay shiftEvening shiftNight shiftWork setting:Convenience storeWork Location: In personExpected start date: 2023-09-02\",\n            \"location\": \"East River Road, New Glasgow, NS\"\n        },\n        {\n            \"id\": \"0EF364B9856DE9273FD50F911E8EB3CB\",\n            \"cityName\": \"991 Victoria Street North, Kitchener, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3714c8ee9125cbf7\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Colonial Acres Coins Ltd.\",\n            \"rowSalary\": \"$16–$18 an hour\",\n            \"date\": 1694338127185,\n            \"dateOfPosted\": 1693494283922,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4753536,\n                    \"lon\": -80.4310146\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kitchener\",\n                \"formattedAddress\": \"Victoria St N, Kitchener, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kitchener\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service RepresentativeColonial Acres Coins and Jewellery has been in business since 1991. We strive to provide exceptional Customer Service to collectors of numismatics all over the world, focusing on Canadian products. We provide services both online and in our store front.We require a fresh face for our store front to assist customers who come into the store with their numismatic shopping needs.This is a full time position, 9am to 5pm Monday to Friday. Must be available to work one Saturday a month from 9:30am to 3pmKey ResponsibilitiesGreet customers as they come into the store, and direct them to where they need to goAssist customers with their coin and jewellery purchasesProcess transactionsMaintain inventory on an online platformOrganize and maintain products and displays in the store frontAnswer incoming customer inquiriesCollaborate with management teams to stay updated on new products, services, and policiesCollaborate with other departments to ensure smooth operation in day-to-day businessEngage with clients in a friendly and professional manner while actively listening to their needs and concernsResolve customer service problems promptly and accurately, within proscribed company guidelines, and in a manner designed to retain and promote customer loyalty.Daily reconciliationsAnswer incoming phone calls as required in a friendly and professional mannerOther duties as assigned by managementIdeal Candidates will possess:1+ years experience in a customer service environmentHigh school diploma or equivalent requiredCriminal record check may be requiredComfort and ease in dealing with the public in an upbeat, friendly mannerExcellent written and oral communication skillsExcellent problem-solving skillsAbility to multitaskInternet navigation and website user knowledgeExcellent attention to detailComputer proficiencyAbility to work in a fast-paced environmentAbility to maintain strict confidentiality with customer account informationJob Type: Full time, 37.5 hours a week to 44 hours a weekSchedule: 9am to 5pm Monday to Friday. Must be available for one Saturday per month 10am to 3pmJob Types: Full-time, PermanentPay: $16.00-$18.00 per hourBenefits:Casual dressCompany eventsDental careExtended health carePaid time offFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayOvertimeWeekends as neededSupplemental pay types:Overtime payAbility to commute/relocate:Kitchener, ON N2B 3C7: reliably commute or plan to relocate before starting work (required)Application question(s):Are you able to work Monday to Friday, 9am to 5pm?Are you able to work one Saturday a month from 9:30am to 3pm?Education:Secondary School (preferred)Experience:Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Victoria Street North, Kitchener, ON\"\n        },\n        {\n            \"id\": \"3366A56B4340CBCD8F7ECECA0AD3FD17\",\n            \"cityName\": \"1226A King St W, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b2eef0883d5f8654\",\n            \"jobName\": \"Ecommerce Customer Service Representative\",\n            \"companyName\": \"Nella Cutlery & Food Equipment Inc.\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694337711402,\n            \"dateOfPosted\": 1693492878031,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6472532,\n                    \"lon\": -79.3866709\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"King St W, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Nella Cutlery was established 70 years ago, and serves Toronto’s finest restaurants, businesses and food shops with food equipment, utensils and a knife sharpening service. Nella is currently looking for a Ecommerce Customer Service Representative.Responsibilities include:Customer InteractionEngage with customers courteously and professionally across diverse communication channels, such as email, chat, phone.Provide precise and pertinent information about products, prices, promotions, and company policies, catering to customers' specific needs.Order AssistanceAssist customers in placing orders, navigating the ecommerce platform, and completing the checkout process seamlessly.Address inquiries related to product availability, sizing, colors, specifications, and any customization options.Issue ResolutionIdentify and meticulously resolve customer problems and complaints, prioritizing swift resolution and optimal customer satisfaction.Handle customer frustrations and concerns empathetically, ensuring a positive interaction even during challenging situations.Returns and RefundsProficiently manage the returns, exchanges, and refunds process, adhering to established company protocols and ensuring customers are informed about the process.Guide customers through the return process, provide updates on their requests, and ensure a hassle-free experience.Product KnowledgeDevelop an in-depth understanding of the company's product offerings, enabling the delivery of accurate, comprehensive, and insightful information to customers.Technical SupportProvide adept technical support to customers encountering issues with the ecommerce platform, including payment concerns, and account management queries.CommunicationMaintain crystal-clear and concise communication with customers, conveying complex information in a digestible manner to facilitate understanding.CollaborationCollaborate seamlessly with various departments, including logistics, marketing, and product teams, to address customer concerns and provide pertinent information.Order Processing to ShippingFacilitate the seamless transition of web orders to the shipping department, ensuring accurate order details are communicated to expedite timely fulfillment.Collaborate with the shipping team to ensure orders are properly packaged, labeled, and dispatched, monitoring the shipping process to guarantee a smooth delivery experience for customers.Upselling and Cross-SellingRecognize opportunities to introduce additional products or services that align with customers' preferences, enhancing their shopping experience and potentially increasing sales.Feedback and ImprovementAct as a conduit for gathering and transmitting valuable customer feedback to relevant teams, contributing to continuous improvements in products and services.Adaptability and Time ManagementKeep abreast of product updates, policy changes, and evolving customer needs, efficiently managing multiple customer interactions while maintaining service excellence.Customer SatisfactionAspire to surpass customer expectations, leaving a lasting positive impression of the company and its services.Continuous LearningActively participate in ongoing training initiatives to enrich product knowledge, enhance customer service skills, and refine problem-solving capabilities.Qualifications:· Shopify experience or similar ecommerce solution is an asset· Strong working knowledge of MS Excel or similar· Proficient communication skills· Excellent problem-solving skills, analytical skills and be able to multi-task· Excellent organizational skills, with strong attention to detail & timelines· Excellent written and verbal communication skillsStrong ability to work independently and within a team environment Company IntroductionJob Types: Permanent, Full-timeSalary: $20.00-$22.00 per hourBenefits:Casual dressDental careExtended health carePaid time offSchedule:8 hour shiftWork Location: In person\",\n            \"location\": \"King St W, Toronto, ON\"\n        },\n        {\n            \"id\": \"135F7AF4C35B6BE17045DC3CEF49B024\",\n            \"cityName\": \"FreshCo Grocery Store in London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a71c0544528be17f\",\n            \"jobName\": \"Customer Service Manager (Csm)\",\n            \"companyName\": \"Freshco Grocery Store\",\n            \"rowSalary\": \"From $19 an hour\",\n            \"date\": 1694337364008,\n            \"dateOfPosted\": 1693490475110,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9849233,\n                    \"lon\": -81.2452768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OverviewThe Customer ServiceManager is responsible for the efficient and fiscally responsible operation of the front End department. The Manager will lead and manage staff to achieve the highest level of customer service, while adhering to all Food Safety Protocols, Standard Operating Procedures, corporate policies and Health and Safety, and other programs and initiatives. The Manager will also manage budgets, labour costs, inventory control, product presentation and merchandising. The Manager will coach, motivate and develop their team to foster customer loyalty, fullfill customer needs and actively contribute to an environment of employee and customer engagement.The front end manager is responsible for payroll and labour hours of the entire store.The front end running smoothly with no line ups.People LeadershipCreate a coaching and development culture for all employees, which embraces a passion for foodDemonstrate outstanding leadership, while serving as a role modelManage direct reports including: selection, orientation, training and development, performance management, succession planning and compensationCommunicate operational requirements/changes to department employeesManage store operations as requiredCustomer Offering Create a shopping experience that engages customers in a way that enhances loyalty, sales, and profit  Provide superior customer service to meet customer needsDemonstrate exceptional product knowledge, including awareness of product changes, promotions, and seasonal trends*Order, receive, organize, rotate, merchandise and present products and stock in accordance with company standardsExecute winning conditions as requiredPolicy/ Regulatory Adherence Lead the implementation of all corporate policies, initiatives, and Standard Operating Procedures and ensure the department and employees comply and use them effectively, including timely and accurate submission of all relevant documentation as required  Responsible for ensuring that OH&S, food safety, and other regulatory requirements and procedures are implemented and maintained*Financial Directly responsible to ensure the department achieves all financial targets and maximizes sales and margins, including appropriate sales forecasting, variance analysis and correction, and labour cost controlManage the department budgetPersonal/ Professional Development Thorough understanding of all relevant company programs; attend training as requiredKeeps abreast of local competitor activity, industry trends and makes recommendations on internal pricing, promotions and product policiesEmployee Engagement Act as the employer of choice by actively supporting an environment of employee engagement  Initiate, support, participate and lead community and charitable events and activities*Other Duties Coordinate maintenance of department equipment and repairsProvide feedback for continuous improvementMaintain a clean and safe working environment as per Company requirementsOther duties as requiredJob Requirements Ability to work independently in a fast paced environment  Above average communication skills (both oral and written)Full knowledge of department operations and skills*Proficient use of Microsoft Office SuiteFull knowledge of total store operations and skillsHigh School DiplomaMinimum 18 months of retail store experience, particularly in the specific departmentExperience reading and analyzing financial reports, and experience in developing and adhering to budgetsWhile all responses are appreciated only those being considered for interviews will be acknowledged.Looking for a strong leader.Must have 5 years cashier experience.Must be able to work in a fast paced environment and have great customer service.Must be able to multitask in a fast paced environment.Job Type: PermanentSalary: From $19.00 per hourBenefits:Dental careDisability insuranceExtended health careLife insuranceRRSP matchStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftEvening shiftWeekends as neededSupplemental pay types:Bonus payEducation:Secondary School (preferred)Experience:Retail Management: 5 years (required)Work Location: In person\",\n            \"location\": \"London, ON\"\n        },\n        {\n            \"id\": \"0BF0F7FCC69270B5C825C24F7BD6AACD\",\n            \"cityName\": \"Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f196bbc5202be1b4\",\n            \"jobName\": \"Customer Service Representative Supervisor\",\n            \"companyName\": \"Swami Enterprises\",\n            \"rowSalary\": \"$27 an hour\",\n            \"date\": 1694337317754,\n            \"dateOfPosted\": 1693456060560,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7315479,\n                    \"lon\": -79.7624177\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Brampton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 27.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    27.0\n                ],\n                \"range\": {\n                    \"gte\": 27.0,\n                    \"gt\": null,\n                    \"lte\": 27.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 1 year to 2 yearsExperience: 7 months to less than 1 yearTasks Conduct performance reviews Recruit and hire staff Co-ordinate, assign and review work Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Examine and verify accuracy of work and authorize routine deposits and withdrawals Identify training needs and train workers in job duties and company policies Resolve work-related problems and prepare and submit progress and other reports Work conditions and physical capabilities Attention to detail Personal suitability Client focus Organized Reliability Team playerWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Brampton, ON\"\n        },\n        {\n            \"id\": \"976B4970F08C7C21A1B074C919F80BC5\",\n            \"cityName\": \"7622 Keele St, Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=865dd93d8edd8fef\",\n            \"jobName\": \"Bilingual Customer Service Representative- Fulltime Hybrid\",\n            \"companyName\": \"Kohl & Frisch Limited\",\n            \"rowSalary\": \"From $48,000 a year\",\n            \"date\": 1694326493690,\n            \"dateOfPosted\": 1693449564006,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8086703,\n                    \"lon\": -79.50147179999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Keele St, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Founded in 1916, Kohl & Frisch Limited has a solid reputation in the healthcare industry that distinguishes it as the only national, Canadian-owned, and operated wholesale distributor. A family-owned company, it is one of Canada’s leading national distributors and is the essential link between pharmaceutical manufacturers and healthcare providers. Kohl & Frisch is fully equipped to service large chain retailers, independent pharmacies, clinics, and hospitals for all their Rx, OTC, home healthcare, and front shop needs.Primary Role of This PositionIn this role, the Customer Service Representative (CSR) provides excellence in customer service to our customers with regard to order placement and issue resolution.LocationWe are proud to offer full-time remote work for our Bilingual Customer Service team; however there is a requirement to be in-office 1 day per month to meet with the Customer Service team. For this reason, you must be within a reasonable commuting distance to the Concord, ON office or be based in the Montreal area to be able to attend these meetings.Major ResponsibilitiesResponsible for several key customer service tasks including order entry and the resolution of customer issues and inquiries.Empowered to build relationships with customers by ‘owning’ customer issues, being responsive and proactive, and consistently providing a high level of customer follow-up and service.Education and ExperienceHigh school graduatePrevious customer service or Call Centre experience is a strong assetQualificationsCapable of handling a large volume of calls while maintaining professional and efficient serviceAbility to think problems through and recommend creative solutions to nonstandard customer issuesExcellent communication and interpersonal skillsDemonstrated ability to work in a team environmentAbility to communicate effectively (verbally and written) in a professional manner with K& F customers and internal K&F departmentsStrong computer skills (Microsoft Office applications), good typing skillsGood work history including performance, attendance, etc.Must be able to work independently with limited supervisionProactive nature, high attention to detail, and takes initiativeHours of WorkMust be available to work a flexible shift schedule Monday to Friday between 8:00 am to 10:00 pmKohl & Frisch Limited is an equal opportunity employer that is committed to diversity and inclusion in the workplace. We prohibit discrimination and harassment of any kind and are committed to a diverse and inclusive workplace for all. Our employees’ diverse backgrounds, abilities, and experiences make our business successful. This policy applies to all employment practices within our organization. If you are contacted for a job opportunity, please advise us of any accommodations needed to ensure fair and equitable access throughout the recruitment and selection process. All accommodation information provided will be treated as confidential and used only for the purpose of providing an accessible candidate experience.Job Type: Full-timeSalary: From $48,000.00 per yearBenefits:Casual dressCompany eventsCompany pensionDental careEmployee assistance programExtended health carePaid time offVision careWellness programWork from homeSchedule:8 hour shiftMonday to FridayOn callSupplemental pay types:Bonus payExperience:Customer service: 1 year (required)Language:French (required)Shift availability:Day Shift (preferred)Night Shift (required)Work Location: Hybrid remote in Concord, ON L4K 2R5\",\n            \"location\": \"Keele St, Concord, ON\"\n        },\n        {\n            \"id\": \"4447C164C661832ED28DB7DFDA4EBDE9\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9a1d6773486b93f1\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Chivlabs Inc\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694325003210,\n            \"dateOfPosted\": 1668876233982,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 56.130366,\n                    \"lon\": -106.346771\n                },\n                \"country\": \"Canada\",\n                \"locality\": null,\n                \"formattedAddress\": \"Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": null,\n                \"state_code\": null,\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Canada Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Join our team as a remote customer service representative in Canada to assist clients while being safe and at ease in your own home. Start a remote-based career with a group that represents many of the most well-known companies in the world. What you'll do in this job:Take pleasure in busy days filled with phone calls from consumers and problem-solvingProvide first-rate customer service by responding to inquiries, resolving problems, and dispensing knowledge in response to worries and requestsCustomers should be made aware of the features, services, billing, and costs of current products. When applicable, provide alternatives to your current solutions in an effort to keep customers as clients.Work with us and you’ll enjoy:Full-Time, 40 hour/week schedule100% paid trainingFull benefits package including medical, dental, vision, and life insuranceOpportunities for advancement and professional developmentPersonal benefits of working from home including saving time, money, and the environment.Required qualifications, skills and experienceApply with us, if you possess:A high school diploma or GEDThe ability to connect with customers with empathy & offer helpful solutionsExcellent listening & communication skills, both written and verbalBasic PC navigation skills, including basic search engine experience, browser navigation, typing in URL’s, completing forms online, etc.Ability to work evening and weekend shiftsAble to provide a stand-alone monitor, USB corded headset and a quiet, and distraction-free home workspace (we’ll provide the rest!)Job Types: Full-time, Internship / Co-opSalary: $17.00-$18.00 per hourBenefits:Flexible scheduleWork from homeFlexible Language Requirement:French not requiredSchedule:8 hour shiftSupplemental pay types:Commission payEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: Remote\",\n            \"location\": \"Canada Canada\"\n        },\n        {\n            \"id\": \"C3BAF281D31FBEE4AB1D8B7827DF6212\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=94479fb32c17f4ab\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"Sportech Indoor Golf\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694323022852,\n            \"dateOfPosted\": 1693466498865,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Will trainTasks Operate cash register Process money, cheques and credit/debit card payments Receive payment for goods or services Stock shelves and clean counter area Greet customers Provide customer serviceWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"89CE664CBF0FA929B126B908937B5065\",\n            \"cityName\": \"3356 Elmbank Rd, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3a12a94cf84de0a2\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Jet Car Rental\",\n            \"rowSalary\": \"From $18.50 an hour\",\n            \"date\": 1694322956426,\n            \"dateOfPosted\": 1651325595405,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking Customer Service Representative to join our team for the weekend & afternoon shifts. You will be responsible for helping customers by providing product and service information and resolving technical issues.As a Customer Service Representative, you will be responsible for:Qualifying and processing rental contracts with accuracy and detailPersuasively selling optional servicesProcessing customer rental returnsResponding to customer inquiries, providing directions in a courteous and expeditious mannerAdhering to all company policies and proceduresMonitoring fleet availability for reservations and walk-insA commitment to continuous improvement in an ever-changing industryRelated duties as requiredJob Qualifications:Previous car rental experience is requiredAbility to work in a fast paced environment with a variety of tasksAbility to demonstrate professionalism, enthusiasm, and outstanding communication skillsDetail orientedFlexibility to work weekends & afternoonsComputer literateProficiency in EnglishValid Drivers licenseJob Type: Part-timePart-time hours: 16-32 per weekSalary: From $18.50 per hourSchedule:Evening shiftWeekend availabilitySupplemental pay types:Commission payAbility to commute/relocate:Mississauga, ON L4V 1A5: reliably commute or plan to relocate before starting work (preferred)Application question(s):Are you available to work on weekends?Experience:Automotive Rental Occupations: 1 year (required)Driving: 2 years (preferred)Expected start date: 2022-05-06\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"34843951B194319326F32EC19EFFBF97\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e3f09898dcdde398\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Key Equipment Services\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694320757551,\n            \"dateOfPosted\": 1693462783061,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Key Equipment Services Customer Service Representative Who we are: Key Equipment Services, a division of Heritage Food Service Group of Canada, is the largest service provider for the food service industry in western Canada. We have 40 years of history, and our licensed, factory-trained technicians minimize downtime and prioritize urgent service. In addition, we have an extensive support team to drive service excellence and we maintain a sizable inventory of OEM parts. We are the industry leader in Canada, and we care beyond service! A Day in the life: As a CSR at you are the first point of contact for the customer, so your main priority is to welcome them, hear their concerns, and leave them with the confidence that they have been listened to and that they will be looked after. The day goes by quickly in this fast-paced environment. There's always something to learn and this keeps the job fresh and challenging! Responsibilities: Answers incoming/outgoing calls and written communications in a courteous and customer-focused manner Acts as the first point for conflict resolution by listening and empathizing with dissatisfied customers to reduce escalation and achieve a resolution to complaint Provides customers with requested information, updates, ETAs, schedules and contact sub-agents, technicians and other stakeholders as needed Creates service orders using our ERP system from service requests via telephone, emails, portals, and the Salesforce platform Ensures accuracy of information, such as warranty verification, billing address, contact names, equipment location, COD payment processing, etc Builds positive relationships with all clients through active listening Works closely with other members of the customer service team, but also with the team of dispatchers and technicians What you will bring: Minimum of 2 years' experience working in customer service Experience working with an ERP system Excellent written and verbal communication skills Ability to learn quickly Having the curiosity and capacity to learn about various commercial kitchen equipment Minimum 50 wpm Demonstrated ability and proficiency in MS Office suite of applications Need strong memory retention - we service over 300 manufacturers and 1000's of customers Why work for us? Industry-leading compensation Each day brings new challenges and endless learning opportunities Comprehensive group benefits and retirement savings program Extended health, dental, STD and LTD Training and Development Opportunities 24/7 Resources and Support Industry leaders in Canada You will be part of a growing, stable organization, that is the industry leader in Canada We are an equal opportunity employer that supports diversity and inclusion in the workplace. We put safety first, and deliver service excellence with integrity, from a team-driven, collaborative mindset. We support community, both internally and externally. Come join us and be part of a Canadian industry leader in commercial kitchen equipment service. Due to the high volume of interest, we regret that we are unable to respond to all applications. To be considered, candidates must be able to live and work in Canada. Qualified candidates are invited to apply online at:https://keyfood.prevueaps.com/jobs/.\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"EAB696BC808752D6EA02DF80C278C769\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=13ce4148d7c33a6b\",\n            \"jobName\": \"Customer Service Supervisor - Retail\",\n            \"companyName\": \"Maan Truck Sales And Leasing Limited\",\n            \"rowSalary\": \"$29.35 an hour\",\n            \"date\": 1694320168577,\n            \"dateOfPosted\": 1693455962586,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 30.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    30.0\n                ],\n                \"range\": {\n                    \"gte\": 30.0,\n                    \"gt\": null,\n                    \"lte\": 30.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Assign sales workers to duties Order merchandise Establish work schedules Sell merchandise Resolve problems that arise, such as customer complaints and supply shortages Supervise and co-ordinate activities of workers Supervision 1 to 2 people Transportation/travel information Public transportation is available Work conditions and physical capabilities Fast-paced environment Attention to detail Personal suitability Team playerWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"585C6EBA06858A3EBB098102D545A4C7\",\n            \"cityName\": \"181 Commercial St, Berwick, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5619eec944bf9c56\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Petro Canada\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694319955763,\n            \"dateOfPosted\": 1692228063705,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.0460443,\n                    \"lon\": -64.7363937\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Berwick\",\n                \"formattedAddress\": \"Commercial St, Berwick, NS B0P 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Kings County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Berwick\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for an energetic person to join Mel's team!!Job Duties include but are not limited to:Operate all aspects of the register, including cash and card transactions, scanners, and scalesMaintain an accurate cash drawer, ensuring that all transactions are accounted for by the end of the shiftAnswer any customer inquiries, and use your knowledge of store layout and product content to give directions as neededMaintain a clean work environment, keeping register clear for incoming customersOther duties as requestedJob Qualifications:Able to multitask.Able to lift heavy boxes.Able to stand for long periods of time.Attention to DetailAmbitiousJob Types: Full-time, PermanentSalary: From $15.00 per hourBenefits:Dental careVision careDay range:HolidaysMonday to FridayWeekend availabilityFlexible Language Requirement:French not requiredWork setting:Convenience storeWork Location: In person\",\n            \"location\": \"Commercial St, Berwick, NS\"\n        },\n        {\n            \"id\": \"5551750F7CAD31015A4D3BA83488CDE9\",\n            \"cityName\": \"334 Munster Ave, Etobicoke, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6943ffe9000bc101\",\n            \"jobName\": \"Bilingual Call Centre Representative\",\n            \"companyName\": \"Voicelogic\",\n            \"rowSalary\": \"$17–$21 an hour\",\n            \"date\": 1694319786952,\n            \"dateOfPosted\": 1693466500340,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6381825,\n                    \"lon\": -79.5322343\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Munster Ave, Toronto, ON M8Z, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Munster Ave, Etobicoke, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Must be fluent in both English and French (Quebecois).Part time and Full time available. Monday to Friday only. Day time and evening hours available.This bilingual role consists of outbound calls, customer service, and membership renewals for a prominent Canadian membership organization.**We are looking for candidates with a strong call centre, sales. and customer service background.**While we do look at every resume submitted, we only reach out to the applicants we wish to interview. If we have not reached out to you within five business days of when you first applied, then your resume was not selected for an interview.Amenities: For the pleasure of our staff, we have a 1,000 sq ft lounge, full kitchen, water cooler, Microwave, coffee machine, TV, couches, snack machine, outdoor picnic tables, free parking.Site Directions:1. Get off at Kipling Subway station.2. Take the escalators or stairs DOWNSTAIRS and exit LEFT (you will see signs for the South Parking Lot)3. When outside, you will see a bridge. Walk towards it and go under it.Once under the bridge, you are now on Munster Ave.4. Keep walking along Munster Ave to the end of Road. We are at 334 Munster Ave, (Shawbridge & Munster)ALSO AVAILABLE: Part-time work, part time leading to full-time , shift work, customer service, customer support, call center, telemarketing. Flexibility to choose your hours.ABOUT US: We are a communications company. We have been in business since 1997. We service customers in Canada and USA. Our services include b2b and B2C voice broadcasting, email broadcasting, fax broadcasting, and call centre services. ( VOICELOGIC.COM )Job Type: Full-timeSalary: $17.00-$21.00 per hourBenefits:Casual dressFlexible scheduleOn-site parkingSchedule:Monday to FridayNo weekendsExperience:Sales: 1 year (preferred)Call Centre: 1 year (preferred)Customer service: 1 year (preferred)Language:English (required)French (required)Work Location: Hybrid remote in Etobicoke, ON\",\n            \"location\": \"Munster Ave, Etobicoke, ON\"\n        },\n        {\n            \"id\": \"145623EC1DF3B9055D260CE6C9035F8E\",\n            \"cityName\": \"Stony Plain, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bf460fd917d2f2aa\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"Shell Gas Station\",\n            \"rowSalary\": \"$23.18 an hour\",\n            \"date\": 1694319569890,\n            \"dateOfPosted\": 1689370566404,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.52942880000001,\n                    \"lon\": -114.0018793\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Stony Plain\",\n                \"formattedAddress\": \"Stony Plain, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Stony Plain\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Issue receipts and other forms Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Receive and log complaints Receive payments Work conditions and physical capabilities Attention to detail Repetitive tasksWork Term: PermanentWork Language: EnglishHours: 32 hours per week\",\n            \"location\": \"Stony Plain, AB\"\n        },\n        {\n            \"id\": \"2003810F6F385399E20ED91D1466562F\",\n            \"cityName\": \"New Westminster, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=51f6f3d03fd20a53\",\n            \"jobName\": \"Card Shuffler - Customer Service\",\n            \"companyName\": \"Evolution Americas\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694319563155,\n            \"dateOfPosted\": 1693456102860,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2057179,\n                    \"lon\": -122.910956\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"New Westminster\",\n                \"formattedAddress\": \"New Westminster, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"New Westminster\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Company Description  Evolution is a market-leading developer and provider of products and services for online casino entertainment. Our excellence is driven by over 17,000 EVOlutioneers across 30 markets worldwide, working in product innovation, software development, IT solutions, game hosting and business support. Evolution's dynamic and creative environment creates a unique opportunity for personal and professional growth. Our integrated business-to-business solutions guarantee that our clients can always provide an unrivalled online entertainment experience to their players globally. We thrive on remaining an award-winning digital powerhouse of entertainment products and services with an ever-expanding line-up of product brands: Evolution Live, NetEnt, Red Tiger, Ezugi, Big Time Gaming, Nolimit City and DigiWheel. Evolution is a Swedish company founded in 2006 and listed on Nasdaq Nordic (EVO). Job Description  We are looking for driven and focused individuals to work as Card Shuffler in our state of the art broadcast studios in New Westminster, BC. The chosen person will be in charge of shuffling playing cards on the Live gaming tables and provide customer service. Responsibilities Shuffle and change the cards on the Live tables when needed Keep in order and under control all facilities that store playing cards, equipment for the tables, and related documentation To keep in order equipment for the Live tables: playing cards and any sort of tables' equipment Flexible attitude to changing priorities, including changes to shifts and covering colleague absences where required Attend training courses/workshops as required and strive to continually improve his/her own technical skills To keep in order documentation for audit To carry out any other duties that may be reasonably requested from time to time. Qualifications  Good working knowledge of English Ability to work well in a multi-cultural team whilst also being able to work independently Ability to perform and work well under pressure Attention to detail Customer Service Resilience and dedication Applicants must be at least 19 years old able to pass BC Gaming Policy & Enforcement Branch (GPEB) licensing able to work shifts (Morning/Afternoon/Night) able to work in a fast paced environment Additional Information  Why you should apply Earn $17 per hour plus a monthly performance bonus. 15 Days Paid Leave 8 Paid Personal Days 2 Paid Evo Days Extended Benefit Plan (Family Coverage) About Us Evolution is a market-leading developer and provider of products and services for online casino entertainment. Our excellence is driven by over 17,000 EVOlutioneers across 30 markets worldwide, working in product innovation, software development, IT solutions, game hosting and business support. Evolution's dynamic and creative environment creates a unique opportunity for personal and professional growth. Our integrated business-to-business solutions guarantee that our clients can always provide an unrivalled online entertainment experience to their players globally. We thrive on remaining an award-winning digital powerhouse of entertainment products and services with an ever-expanding line-up of product brands: Evolution Live, NetEnt, Red Tiger, Ezugi, Big Time Gaming, Nolimit City and DigiWheel. Evolution is a Swedish company founded in 2006 and listed on Nasdaq Nordic (EVO).\",\n            \"location\": \"New Westminster, BC\"\n        },\n        {\n            \"id\": \"72E1CB88A8A1DFBBFB12A0671E4851FB\",\n            \"cityName\": \"1873 Forge Pl, Abbotsford, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cf6b8f5ed1c2d75d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Matteo Lighting Inc\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694317507314,\n            \"dateOfPosted\": 1693451412781,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.0351127,\n                    \"lon\": -122.3424947\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Abbotsford\",\n                \"formattedAddress\": \"Forge Pl., Abbotsford, BC V2T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Fraser Valley\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Forge Pl, Abbotsford, BC Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Looking for a hardworking, self-motivated employee who will bring energy and enthusiasm to the workplace.Must have excellent English verbal and written skills.Ability to multitask and work in a fast-paced environment.Computer skills required in Outlook, Excel and Word is required.Knowledge of Sage or Truck mate is an asset.Job duties include:Order EntryAnswering phones, replying to emails, sending order confirmationsDeal with customer requests and complaintsRunning Reports when requiredBuilding strong relationships with the customers and sales team to help grow the business.Job Type: Full-timeSalary: $20.00 per hourBenefits:Dental careExtended health careSchedule:Monday to FridayAbility to commute/relocate:Abbotsford, BC V2T 5Z9: reliably commute or plan to relocate before starting work (preferred)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Forge Pl, Abbotsford, BC\"\n        },\n        {\n            \"id\": \"CB9961BFC27EEB4AEED5ACAAC2A121E3\",\n            \"cityName\": \"Vernon, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bbc37bc3bc432ac0\",\n            \"jobName\": \"Customer Service Sales Clerk\",\n            \"companyName\": \"Corbett Office Equipment Ltd.\",\n            \"rowSalary\": \"$17.57 an hour\",\n            \"date\": 1694317111886,\n            \"dateOfPosted\": 1693455752804,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.2670137,\n                    \"lon\": -119.2720107\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vernon\",\n                \"formattedAddress\": \"Vernon, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"North Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vernon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: EnglishHours: 40 hours per weekEducation: Secondary (high) school graduation certificateExperience: Experience an assetWork setting Urban area Furniture store Office supplies store Tasks Operate cash register Provide advice about merchandise Conduct sales transactions through Internet-based electronic commerce Estimate or quote prices, credit or contract terms, warranties and delivery dates Greet customers and discuss type, quality and quantity of merchandise or services sought for purchase, rental or lease Prepare merchandise for purchase, rental or lease Prepare sales, rental or leasing contracts and accept cash, cheque, credit card or automatic debit payment Type of product Office supplies Area of specialization Office furniture Transportation/travel information Own transportation Public transportation is available Work conditions and physical capabilities Repetitive tasks Sitting Combination of sitting, standing, walking Weight handling Up to 13.5 kg (30 lbs) Personal suitability Adaptability Analytical Efficiency Goal-oriented Hardworking Integrity Outgoing Positive attitude Proactive Quick learner Time management Dependability Efficient interpersonal skills Flexibility Organized Reliability Team player Excellent oral communication Accurate Screening questions Are you currently legally able to work in Canada? Health benefits Dental plan Disability benefits Health care plan Paramedical services coverage Vision care benefits\",\n            \"location\": \"Vernon, BC\"\n        },\n        {\n            \"id\": \"FA455A278CD2D404B9D952C136A77030\",\n            \"cityName\": \"Firetronics 2000 Inc. in Saint John, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e05f2062e8d34b71\",\n            \"jobName\": \"Monitoring Call Centre Operator - Bilingual (English/French)\",\n            \"companyName\": \"Firetronics 2000 Inc.\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694316811891,\n            \"dateOfPosted\": 1678307118819,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.2733153,\n                    \"lon\": -66.06330799999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saint John\",\n                \"formattedAddress\": \"Saint John, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Saint John County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saint John\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OverviewAt Firetronics 2000 Inc. safety is our number one concern. We specialize in installing, maintaining and monitoring ULC fire alarm systems. We stand by our services and products, ensuring adherence to all applicable regulations, industry standards and guidelines. One of our principal goals is to be a dependable and trusted partner to our clients, authorities and associations.Find out more information about Firetronics 2000 Inc. by visiting our website at www.firetronics.ca.Duties and ResponsibilitiesMonitor fire and security alarm systems utilizing specialized monitoring software and equipmentHandle all telephone calls efficiently and in a professional mannerNotify appropriate contacts or emergency authorities such as Fire Department, Police, Emergency Medical Services in a prompt and efficient manner following strict proceduresDiligently keep required records and filesPrepare and distribute reports internally and to external parties as requiredFollow all established procedures, regulations and guidelinesOther related duties as may be assignedPlease note that this is not a remote positionQualificationsVerbal and written fluency in both English and FrenchEducation: secondary school diploma minimumPreferred a minimum of 1 year experience in the same or similar role such as 911 Operator/Dispatcher, Customer Service Representative (CSR), Telephone Operator/Agent, Call Centre Operator/Agent, Answering Service Operator/Agent, etc.Excellent telephone and communication skillsFlexibility to work 12-hour rotating shifts (days and nights required)Advanced computer proficiency with strong data entry/keyboarding skillsAbility to work under pressureAttention to detail is requiredAbility to stay focused at all times during working hours.Passing criminal record checkWorking ConditionsFriendly team environmentCareer growth opportunitiesContinuous operations (24/7)12-hour rotating shifts (4 on- 4 off Schedule)Participation in On Call Schedule is requiredOffice environment with semi-open workstationsLocated close to major highways and public transitJob Types: Full-time, PermanentSalary: $20.00-$22.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offVision careSchedule:12 hour shiftSupplemental pay types:Overtime payAbility to commute/relocate:Saint John, NB E2L 4L1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer Service: 1 year (preferred)Language:English fluently (required)French fluently (required)Work Location: In person\",\n            \"location\": \"Saint John, NB\"\n        },\n        {\n            \"id\": \"8E2DBFEDD7060C242ECBFACE6F47B25A\",\n            \"cityName\": \"812 Warden Ave, Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9ae78ed8d12e760c\",\n            \"jobName\": \"Customer Service/Cashier\",\n            \"companyName\": \"California Sandwiches\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694316043579,\n            \"dateOfPosted\": 1667377027488,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7699591,\n                    \"lon\": -79.3038263\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Warden Ave., Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for someone who is high energy, someone who is capable of working well with others while providing a great service to our customers. It’s important that this person is able to take and follow direction. A positive attitude goes along way when you’re working with the public. Food prep, dishwashing, cleanliness, multi-tasker, strong work ethic.Job Type: Full-timeSalary: From $16.00 per hourDay range:Weekend availabilityShift:Day shiftAbility to commute/relocate:Scarborough, ON: reliably commute or plan to relocate before starting work (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Warden Ave, Scarborough, ON\"\n        },\n        {\n            \"id\": \"730379145DDBC67C2B569957D8DF77FD\",\n            \"cityName\": \"1164 Notre Dame Dr, Petersburg, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ee87a0756d789d13\",\n            \"jobName\": \"Customer Service Coordinator\",\n            \"companyName\": \"Queen Of The Thrones™\",\n            \"rowSalary\": \"From $42,000 a year\",\n            \"date\": 1694314849796,\n            \"dateOfPosted\": 1693446671951,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4438974,\n                    \"lon\": -80.6390153\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kitchener\",\n                \"formattedAddress\": \"Notre Dame Dr, Wilmot, ON N0B, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kitchener\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"If this is you, please apply, and feel good about joining a fast growing natural health **COVER LETTER + RESUME REQUIRED**Are you passionate about health and wellness?If you are a dedicated, organized, energetic and joyful person who is looking for a full-time role as Customer Service Coordinator in CPG company in the Natural Health and Wellness industry, then Queen of the Thrones® would love to connect with you.You love the challenge of your company and its amazing products expanding internationally and doing good for all those that invest in themselves. You love the multifaceted nature of our business that includes growing not only a CPG brand, but also Property Management and a Not for Profit Charity Division dedicated to perform research in natural wellness to ultimately serve and grow both people and preserve the planet.If this is you, please apply, and feel good about joining a fast growing natural health products company that makes it easy for people around the world to live the natural way.This is a high-speed, flexible, & exciting job opportunity with wonderful colleagues that are a dream team to work with.Your role is mainly acted on remotely, from the comfort of your home or your favourite working space. You will be required to attend some in-person trainings/meetings in the Kitchener/Waterloo area , and travel internationally for key events with shareholders.You are right for this position because of…A Degree or Diploma in Communications/natural health and wellness or other experienceA personal passion for health, nutrition & natural medicine.You serve selflessly, helping the customer in every way possible, to have an excellent experience with us.You lead and guide your colleagues towards success, always working within the spirit of cooperation and not competition, Yes & thinking, acting as a person of increase and because of that you meet all of your “DONELINES\\\"You have solid attuned business experience You LOVE and thrive in a fast paced environment and find challenges the spice of life having with an excellent ability to make probiotic kombucha lemonade out of rotting lemons.You speak another language preferably Spanish or Portuguese, french, fluently**COVER LETTER + RESUME REQUIRED**THE ROLEAnswering customer service questions online, through email and over the phonesFind creative solutions to improve service to our customersTrack common customer service feedback, and report to other departments to help support improvement of products and customer journeyInnovate ways to rate your ability to provide next level, and extra mile supportOther Administrative tasks as neededUpselling and Cross Selling to best service client needsExceptional understanding of the customer service and sales processesWorking cooperatively with other team membersREQUIREMENTS**COVER LETTER + RESUME REQUIRED**Must be highly proficient in the English languageNice to have Proficiency in other language ( Spanish, French, Portuguese)Must be open to spirituality and growth trainingStrong financial and bookkeeping assistant skills with a friendly, enthusiastic and positive attitude in assisting all shareholdersBe a Person of IncreaseBe a YES AND personA background as a nutritionist, naturopathic doctor, or have alternative formal training in natural health/nutrition, or a personal interest is an assetAbility to adapt and solve problems independently with strong attention to detailExcellent communication and critical thinking skillsMust be flexible, some weeks require more hours, some less, with a few hours on the weekends**COVER LETTER + RESUME REQUIRED**THE COMPANYQueen of the Thrones® is a fast-growing international natural products company and online business located in the Kitchener/Waterloo area. Our mission is to became a Unicorn company in under 10 years, so we can help millions of people around the world to feel better the natural way.Our e-commerce company started a mere 4 years ago but is blooming with growth! Founded by renowned naturopathic doctor, Marisol Teijeiro, the company’s roots date back to 10 years ago, when Marisol barely out of naturopathic Medical School, took a messy, DIY health treatment & invented the only heatless, less-mess, reusable castor oil pack (a natural health practice that improves digestion & other foundational health functions).Our company primarily sells castor oil kits and other self-care products and informational training. Our next phase of growth into done for you services, Not For Profit Research, Property Management of health retreats, ownership of supply chain and apps.HOW TO APPLYDo you think you have what it takes to excel in this exciting role? If so, we invite you to submit your resume to the email provided. We thank all that apply, however, only those selected for an interview will be contacted.Job Type: Full-timeSalary: From $42,000.00 per yearBenefits:Extended health careStore discountFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Bonus payEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: Hybrid remote in Petersburg, ON N0B 1M0\",\n            \"location\": \"Notre Dame Dr, Petersburg, ON\"\n        },\n        {\n            \"id\": \"8CBE80997EA71FF1C5868FCB3868BE38\",\n            \"cityName\": \"9045 Chemin de la Côte-de-Liesse, Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f2f8af1a842a1c22\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Scanwell Logistics (Montreal) Inc.\",\n            \"rowSalary\": \"$650–$700 a week\",\n            \"date\": 1694314817939,\n            \"dateOfPosted\": 1662693617286,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4623591,\n                    \"lon\": -73.72318779999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Chem. de la Côte-de-Liesse, Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 650.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    650.0\n                ],\n                \"range\": {\n                    \"gte\": 650.0,\n                    \"gt\": null,\n                    \"lte\": 650.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cargo Logistics Co-ordinatorWe are seeking a Customer Service Representative to join our team! You will be responsible for helping customers by providing service information and resolving technical issues.Responsibilities:Handle customer inquiries and complaintsData entryProvide information about the products and servicesTroubleshoot and resolve product issues and concernsDocument and update customer records based on interactionsDevelop and maintain a knowledge base of the evolving products and servicesQualifications:Previous experience in customer service, sales, or other related fieldsAbility to build rapport with clientsAbility to prioritize and multitaskPositive and professional demeanorExcellent written and verbal communication skillsJob Type: Full-timeSalary: $650.00-$700.00 per weekSchedule:8 hour shiftCOVID-19 considerations:All employees here are fully vaccinatedEducation:Secondary School (required)Experience:customer service: 2 years (required)Language:English (preferred)French (preferred)\",\n            \"location\": \"Chemin de la Côte-de-Liesse, Dorval, QC\"\n        },\n        {\n            \"id\": \"DD743C032BACBB4249C62DAD3D0C7A82\",\n            \"cityName\": \"8528 Glenlyon Pky, Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a0372c8b2c26cafd\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Key Food Equipment Services\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694314749787,\n            \"dateOfPosted\": 1693455772585,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2016496,\n                    \"lon\": -123.009984\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Glenlyon Pkwy, Burnaby, BC V5J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Glenlyon Pky, Burnaby, BC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Key Equipment ServicesCustomer Service RepresentativeWho we are:Key Equipment Services, a division of Heritage Food Service Group of Canada, is the largest service provider for the food service industry in western Canada. We have 40 years of history, and our licensed, factory-trained technicians minimize downtime and prioritize urgent service. In addition, we have an extensive support team to drive service excellence and we maintain a sizable inventory of OEM parts. We are the industry leader in Canada, and we care beyond service!A Day in the life:As a CSR at you are the first point of contact for the customer, so your main priority is to welcome them, hear their concerns, and leave them with the confidence that they have been listened to and that they will be looked after. The day goes by quickly in this fast-paced environment. There's always something to learn and this keeps the job fresh and challenging!What you will bring:2-3 years previous office experience and customer service experience preferredSuperior communication skills when dealing with challenging service callsExcellent computer skills; savvy with new ERP programs and MS Office (Excel)Typing speed of 50-60 wpmExcellent attention to detail; accurate and efficient with data entryNeed strong memory retention - we service over 300 manufacturers and 1000's of customersGeographically savvy; has better than basic understanding of western provincesWhy work for us?Industry-leading compensationComprehensive group benefits and retirement savings programExtended health, dental, STD and LTDTraining and Development OpportunitiesIndustry leaders in CanadaYou will be part of a growing, stable organization, that is the industry leader in CanadaBe part of a fun and collaborative team dedicated to the success of our businessInput and ideas are always accepted. Your opinion matters here!We are an equal opportunity employer that supports diversity and inclusion in the workplace. We put safety first, and deliver service excellence with integrity, from a team-driven, collaborative mindset. We support community, both internally and externally. Come join us and be part of a Canadian industry leader in commercial kitchen equipment service.Due to the high volume of interest, we regret that we are unable to respond to all applications. To be considered, candidates must be able to live and work in Canada.Qualified candidates are invited to apply online at:https://keyfood.prevueaps.com/jobs/.Job Type: Full-timeSalary: $19.00-$22.00 per hourFlexible Language Requirement:French not requiredSchedule:Monday to FridayOn callWork Location: In person\",\n            \"location\": \"Glenlyon Pky, Burnaby, BC\"\n        },\n        {\n            \"id\": \"3F5AFF8ABF1509BAEF8B0936EBD3E35D\",\n            \"cityName\": \"Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f12c7aa020d84369\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Thos. R. Birnie & Sons\",\n            \"rowSalary\": \"$18–$21 an hour\",\n            \"date\": 1694314709820,\n            \"dateOfPosted\": 1692302691853,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2557206,\n                    \"lon\": -79.8711024\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Opportunity We have a an opening for a full-time Customer Service Representative in our call center. In this position you are a key member of our team, acting as the first point of contact for our company. You are responsible for providing the highest level of customer service to our customers. Key job tasks include: Receive incoming calls in a professional and courteous mannerConvert calls into booked service appointmentsMake outbound calls, following up on recent service visitsPrioritize and coordinate the scheduling of servicesMaintain and update our customer database with accurate information Other administrative duties as assigned Job Type: Full Time Job Location: Our Customer Service Representatives are are expected to report in person to our office location for each scheduled shift. Benefits & Perks:Supportive and friendly office team environment.Competitive wages.Health benefits.RRSP plan with company match.Culture building events. Training and resources to help you learn and grow What We Need From You:Minimum two years of customer service experience.Experience in a call center environment is preferred.Open availability.You are a great communicator and are able to connect and build positive relationships with customers and your team.You are detail-oriented with the ability to multitask.You demonstrate a positive attitude and are willing to learn and grow.You are customer service focused.About Us Thos. R. Birnie & Sons is an original family owned company that has been providing service to the Hamilton and Golden Horseshoe communities for 100 years. We specialize in residential plumbing and drain services. Our team is dedicated to enhancing the lives of the people we meet daily, and we have been for generations! Check us out by visiting our website: www.birnie.pro  Equal Opportunity Employer \",\n            \"location\": \"Hamilton, ON\"\n        },\n        {\n            \"id\": \"49EA8817567D092E563C3FC2B3ECC4BC\",\n            \"cityName\": \"Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e6cda464c6a8b9a7\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Humphry Inn & Suites\",\n            \"rowSalary\": \"$14.15 an hour\",\n            \"date\": 1694314346887,\n            \"dateOfPosted\": 1693456056974,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.895136,\n                    \"lon\": -97.13837439999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: No degree, certificate or diplomaExperience: Experience an assetTasks Answer inquiries and provide information to customers Arrange for billing for services Arrange for refunds and credits Explain the type and cost of services offered Maintain records and statistics Receive and log complaints Receive payments Sell merchandise Financial benefits BonusWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Winnipeg, MB\"\n        },\n        {\n            \"id\": \"A5FE2F5928D92491D411F0E5C9FD6A14\",\n            \"cityName\": \"Cerco Cable Inc. in Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=42e73ec7b4cf9574\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Cerco Cable Inc.\",\n            \"rowSalary\": \"$45,000–$50,000 a year\",\n            \"date\": 1694313672908,\n            \"dateOfPosted\": 1694215273927,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Role DescriptionThis is a full-time on-site role for a Customer Service Representative located in Mississauga, ON.Support the sales team in the preparation of project bids.Support the sales team via Microsoft Office & SharePoint software.Support the sales team related to the IT requests/issues.Support the sales team with the daily order entries.Follow-up of orders for customers with the procurement team.Prepare samples and marketing documents for meetings with clients.Gather the credit references and proper documentation from clients/others so our accounting department may open a line of credit in a timely manner.nd concerns in a timely manner- Maintain accurate and detailed records of customer interactions and transactions- Collaborate with other team members to ensure customer satisfactionSkills:- Excellent verbal and written communication skills- Strong problem-solving abilities- Ability to multitask and prioritize tasks effectively- Proficient in using computer systems and software applications- Ability to work well in a team environmentThis position requires a high level of professionalism, attention to detail, and the ability to handle challenging situations with patience and empathy. Successful candidates will have a strong customer service background and the ability to adapt to changing customer needs.Job Types: Full-time, PermanentSalary: $45,000.00-$50,000.00 per yearBenefits:Dental careLife insuranceOn-site parkingPaid time offSchedule:Monday to FridayAbility to commute/relocate:Mississauga, ON L4W 3Y5: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"DB0D56A3AD01BFD8399E6BEDB6701747\",\n            \"cityName\": \"Sherwood Park, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fd654960140ea81e\",\n            \"jobName\": \"Cashier, Customer Service\",\n            \"companyName\": \"Petro Canada A&W\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694313334168,\n            \"dateOfPosted\": 1686142682670,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5411916,\n                    \"lon\": -113.2957355\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sherwood Park\",\n                \"formattedAddress\": \"Sherwood Park, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sherwood Park\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 7 months to less than 1 yearWork setting Restaurant Retail business Tasks Operate cash register Process money, cheques and credit/debit card payments Scan items Tabulate total payment for goods or services required Receive payment for goods or services Calculate daily/shift payments received and reconcile with total sales Stock shelves and clean counter area Greet customers Provide customer service Assist customers with self-checkout Verify the age of customers when selling lottery tickets, alcohol or tobacco products Screening questions Are you available for shift or on-call work? Long term benefits Other benefits Other benefits Free parking availableWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Sherwood Park, AB\"\n        },\n        {\n            \"id\": \"588917970F3B1FC7A759C6727EB1E455\",\n            \"cityName\": \"6228 Rue St Jacques, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=26678c6139f1aefc\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"The Ups Store #345\",\n            \"rowSalary\": \"From $14.25 an hour\",\n            \"date\": 1694313298374,\n            \"dateOfPosted\": 1669496574521,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.474932,\n                    \"lon\": -73.5954731\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Saint-Jacques, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Bonne disponibilité variante pendant la semaine entre 9h et 18h30. Et disponibilité fiable pour les Samedis entre 10h et 15h Requise. La période de formation commencera avec des quarts flexibles pendant la semaine, durant une période de 3 - 4 semaines.Bilinguisme: Bonne communication Eng/Fr orale & écriteTÂCHES, EXIGENCES ET RESPONSABILITÉSConseiller les clients (par téléphone, email, et en personne) et savoir identifier leurs besoins. Aptitude pour la communication et la résolution de problèmes.Apprendre les processus d’expédition à l’international; Rechercher et fournir les différents tarifs et d'autres options des services à la satisfaction du client.Remplir les labels d’expéditions avec precision; gérer les pick-ups et receptions de colis avec attention; emballage de colis etc..Job Types: Part-time, PermanentSalary: From $14.25 per hourSchedule:8 hour shiftMonday to FridayWeekend availabilitySupplemental pay types:Bonus payCommission payEducation:Secondary School (preferred)Language:French (required)English (required)\",\n            \"location\": \"Rue St Jacques, Montréal, QC\"\n        },\n        {\n            \"id\": \"442F55CEDC3E7DFCD5E70D4CD3380049\",\n            \"cityName\": \"15440 Bayview Avenue, Aurora, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=82343b2330efdff5\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Nj Staffing Agency Inc\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694313112755,\n            \"dateOfPosted\": 1664978000569,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.99592029999999,\n                    \"lon\": -79.44169579999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Aurora\",\n                \"formattedAddress\": \"Bayview Ave, Aurora, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Aurora\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a Customer Service Representative with a strong background in Food industry and written communication skills. Our ideal candidate is an individual who enjoys working in a fast-paced work environment. The Customer Service Representative will be required to follow company policiesLocation: NICK FAMOUS SHAWARMAS located at 15440 Bayview Ave, Aurora, ON L4G 7J1RESPONSIBILITYwelcoming customers,taking beverage and food orders,conducting satisfaction checks,placing orders using the POS, and collecting payments for meals.Servers should be knowledgeable about menu items and be able to answer questions about ingredients and dietary restrictions. Will be trainedGreet and speak with customers.Answer questions about products, processes, or services.Briefly explain things to customers.Resolve customer billing issues.Handle customer complaints.FriendlyOrganizedWorks well under pressureGreat multitasker1 Year experience in restaurant industry(Fast food , Shawarma)Ability to commute/relocate:Job Types: Full-time, Part-time, PermanentSalary: $17.00-$18.00 per hourSchedule:10 hour shift4 hour shift8 hour shiftSupplemental pay types:Bonus payOvertime payTips\",\n            \"location\": \"Bayview Avenue, Aurora, ON\"\n        },\n        {\n            \"id\": \"0FA857B336C119DE00AE92638E363427\",\n            \"cityName\": \"Pearls Furniture and Mattresses in Langley, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3446a170465c459c\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Pearls Furniture And Mattresses\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694312769087,\n            \"dateOfPosted\": 1673959002653,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1041779,\n                    \"lon\": -122.6603519\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Langley City\",\n                \"formattedAddress\": \"Langley City, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Langley City\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for Customer Service Associates for our Langley store.Qualifications*At least 1 year of retail experience;Effective communication skills;Proficiency in English;Proven salesmanship and positive leadership;Proven strong collaboration spirit, enthusiasm, teamwork, and interest in interior design;Available from Monday to Sunday days and evenings.Job Types: Full-time, Part-time, PermanentSalary: $16.00-$20.00 per hourBenefits:On-site parkingStore discountSchedule:8 hour shiftSupplemental pay types:Overtime payWork Location: In person\",\n            \"location\": \"Langley, BC\"\n        },\n        {\n            \"id\": \"35C2B82FD78B2DB1901DDB867BC288F1\",\n            \"cityName\": \"4045 Main Street, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f3e5b5b89e291fdd\",\n            \"jobName\": \"Life Insurance Customer Service Representative\",\n            \"companyName\": \"Tony Lau Insurance Agencies Ltd\",\n            \"rowSalary\": \"$40,000–$50,000 a year\",\n            \"date\": 1694312454173,\n            \"dateOfPosted\": 1693456293550,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2457108,\n                    \"lon\": -123.101237\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Main St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Life Insurance Customer Service Representative is required to be trained in general insurance. Eligible candidate must hold a life insurance license and be computer literate. Mandarin and Cantonese speaking mandatory. We offer:1. Competitive salary and benefits2. Commission3. E & O and License fees4. Quality Life insurance leads from our branches5. Autoplan and General Insurance training6. Excellent prospects for advancementPlease note that this is a salaried position. The employee will work INSIDE an office serving walk-in Autoplan, General Insurance and Life Insurance clients.For the profile of our agencies established in 1981, please visit our website at www.tonylauinsurance.com.Please send resume in confidence to: tlau@tonylauinsurance.comAnnual salary: $40,000-$50,000 plus life insurance commissions and benefitsJob Types: Full-time, PermanentSalary: $40,000.00-$50,000.00 per yearBenefits:Dental careExtended health careSchedule:8 hour shiftSupplemental pay types:Commission payLanguage:Both Mandarin and Cantonese (required)Licence/Certification:Life insurance license (required)Work Location: In personExpected start date: 2023-09-01\",\n            \"location\": \"Main St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"65D3F4681310AAC96093A1C097C06613\",\n            \"cityName\": \"Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c078534eade91e6d\",\n            \"jobName\": \"Ice Cream Scooper/Customer Service - Casual (VictOria Or LangfOrd)\",\n            \"companyName\": \"Parachute Ice Cream\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694312434431,\n            \"dateOfPosted\": 1692349675914,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4284207,\n                    \"lon\": -123.3656444\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Busy local ice cream shop is looking for a positive, reliable, professional team member to work Casually at our Bridge and/orLangford location this Spring/Summer. Pay starts at $17/hr and includes approx $4-6/hr in Tip as well as Vacation pay and potential health benefits (full time staff).This position would be casual to start, but could lead to Seasonal/Permanent Part/Full time for the right candidate. We are prioritizing individuals with more availability. If you are great with customers, love light kitchen duties like making waffle cones, baking pies, and love eating ice cream, we would love to hear from you!Please include your availability, if you are seeking casual, seasonal or permanent employment, and your ideal number of working days per week.We get many applicants so if you want to stand out you're welcome to message us something about yourself. Some ideas are: who you are, what's important to you in a work place and why you think you would be a good fit.A little bit about us: We are a locally owned and operated artisan ice cream shop. We create ice cream for both retail and wholesale markets, both traditional, water buffalo milk, sorbet and vegan. We are positive and passionate about local food, and we love to put smiles on peoples faces! We offer higher than average wages and an equal share of the generous tip pool.The ideal candidate will have some or all of:The ability to work with a team or alonePositive attitudeWillingness to work weekdays and weekendsWilling to work in a fast paced environmentWe offer a full benefits package (health, dental, disability, other) to full-time employees who are committed to working with us long-term.We can’t wait to hear from you!Job Types: Part-time, Permanent, Casual, SeasonalPart-time hours: 8-40 per weekSalary: From $17.00 per hourBenefits:Casual dressDental careDisability insuranceDiscounted or free foodExtended health careFlexible scheduleLife insuranceOn-site parkingPaid time offStore discountVision careSchedule:4 hour shift8 hour shiftDay shiftMonday to FridayWeekends as neededSupplemental pay types:Overtime payTipsApplication question(s):Are you currently living in BC?Are you looking to work at our Victoria or Langford location. Or both?What is your availability?Are you looking for Permanent or Seasonal?Are you looking for Full, Part time or Casual?Work Location: In personExpected start date: 2023-08-14\",\n            \"location\": \"Victoria, BC\"\n        },\n        {\n            \"id\": \"3A44D3372A9A6806C5709C065254115D\",\n            \"cityName\": \"626 Victoria St, Strathroy, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3dc1b42b146d609e\",\n            \"jobName\": \"Cashier/Customer Service Representative\",\n            \"companyName\": \"Mobil Gas Station\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694312399539,\n            \"dateOfPosted\": 1670145906424,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9586997,\n                    \"lon\": -81.63092189999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Strathroy\",\n                \"formattedAddress\": \"Victoria St, Strathroy, ON N7G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Strathroy\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Seeking a reliable and trust worthy individual. Must be comfortable working alone and at night.Job duties would include; general cleaning, closing (or opening) of the store, stocking shelves as needed, customer service, as well as tending to lottery and gas sales. Reliability for shifts is a must as we have a small group of employees.Seeking someone with experience in the following:Customer serviceCashierCigarette sales (or a knowledge of brands and types)Lottery experiencePrevious experience working in a gas station— Part time, 3-4 shifts to start (available for either Saturday or Sunday shifts) 6-8 hour shifts— Primarily afternoon shifts (closing)— Must be available to work some weekendsJob Type: Part-timeSalary: $15.50 per hourShift:Evening shiftCOVID-19 considerations:All customers and employees are required to wear a mask. The employees must sanitize the POS and disinfect the pumps, door handles, pinpads, etc.Experience:Retail sales: 1 year (preferred)Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Victoria St, Strathroy, ON\"\n        },\n        {\n            \"id\": \"1752EFB1C67AE3C4C912969BBEB94CCF\",\n            \"cityName\": \"282 W 49th Ave, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e622441d734d1b6b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Ybc\",\n            \"rowSalary\": \"$17.25 an hour\",\n            \"date\": 1694312185673,\n            \"dateOfPosted\": 1693455764619,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2674848,\n                    \"lon\": -123.1094236\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W 4th Ave, Vancouver, BC V5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"W th Ave, Vancouver, BC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Title: Customer Service Representative Location: YMCA Contact Centre (282 W 49th Ave, Vancouver, BC V5Y 2Z5 or 955 Burrard St, Vancouver, BC V6Z 1Y2) Terms: Permanent, Part-Time (8-24 hours/week) Shifts: Thursday-Saturday or Sunday 8:00am-6:00 pm Start Date: As soon as possible Salary: 0-500 hours $17.25 per hour 501-1000 hours $17.77 per hour 1001 – 1500 hours $18.30 per hour 1500 + hours $18.85 per hour Reports To: Manager, Client Services Benefits: Free YMCA Staff Membership Casual dress code Flexible Scheduling Training and Professional Development Opportunities Be part of a charitable organization that positively impacts the community Nature & Scope: The Client Services Representative works collaboratively with YMCA staff and volunteers to provide exceptional service to YMCA members, guests, and staff. The primary focus is on the client experience, resolving any client issues and promoting membership sales and services. Who we are? We’re a small group of dedicated individuals who love working with our Members and our Community. We are compassionate, innovative, accountable and strive to contribute to the success of the team and the YMCA as a whole. Who you are? You are detail-oriented, conscientious and eager to learn. You take pride in your work and are passionate about helping others. You enjoy working as part of Team and look for opportunities to affect change. A Day at the Contact Centre: We are not your typical Contact Centre. We provide a casual, relaxed atmosphere where you are encouraged to contribute ideas and provide solutions. Your daily assignments include responding to members via emails and inbound and outbound phone calls, working on reports and other administrative tasks. You are encouraged to provide feedback and suggestions to make our Team and Department better. As your knowledge grows, you will assist with training new staff/volunteers in procedures and practices. Requirements: Computer proficiency, including Microsoft Office and CRM systems experience Excellent communication and interpersonal skills with customer service orientation Exceptional customer service skills and a great attitude towards helping others Successful candidates will be required to provide a current and satisfactory Criminal Reference Check/Vulnerable Sector Search issued no later than six (6) months preceding your start date 3 professional references YMCA BC is committed to creating an inclusive, accessible environment where all members of our community feel valued, respected, and supported. We encourage applications from the diverse communities in which we live and serve, including but not limited to people of colour, Indigenous people, persons with disabilities, and persons of any sexual orientation or gender identity. We have established policies, procedures, and practices to meet accessibility standards throughout the hiring process. Should you require any accommodation throughout the recruitment process, please do not hesitate to contact our Human Resources department. Application Deadline: Ongoing Thank you for your interest and application. Due to the high volume of applications received, only short-listed candidates will be contacted.\",\n            \"location\": \"W th Ave, Vancouver, BC\"\n        },\n        {\n            \"id\": \"BD3A8B275556246F94115F81FCAD3F87\",\n            \"cityName\": \"Vernon, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fb437fb3925f0190\",\n            \"jobName\": \"Call Center Representative\",\n            \"companyName\": \"Fox Plumbing Heating Cooling Electrical\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694312133632,\n            \"dateOfPosted\": 1693455840827,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.2670137,\n                    \"lon\": -119.2720107\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vernon\",\n                \"formattedAddress\": \"Vernon, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"North Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vernon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Call Center Representative in Vernon, BC at FOX Plumbing Heating Cooling Electrical WHO YOU ARE You're not just a Call Center Representative – you're the voice of exceptional service and customer satisfaction. Your passion for building genuine rapport, coupled with your effective communication skills, make you a valued team member. Whether addressing inquiries or resolving issues, your authenticity shines through, creating memorable interactions. At FOX, we're excited to have you join us as a pivotal part of our customer-centric team. A DAY IN THE LIFEConvert incoming customer calls into meaningful service appointments, delivering an authentic and personable experienceEngage customers with call scripts that resonate and leave a positive impressionRespond promptly to customer requests, efficiently resolving concerns and promoting the FOX brandCultivate professionalism and rapport, fostering repeat business and creating strong customer relationshipsParticipate in training to optimize booking calls and enhance outbound calling skillsAdhere to the company's customer complaint resolution plan, ensuring swift and favorable outcomesMaintain an updated customer database with accurate information for streamlined service delivery WHAT YOU BRINGA track record of delivering exceptional customer service and fostering positive interactionsIT proficiency, strong typing skills, and familiarity with phone systemsStrong organizational skills with an unwavering commitment to task follow-throughExcellent verbal and written communication abilitiesA knack for building trust, demonstrating empathy, and creating lasting customer relationshipsAdaptability to a fast-paced, goal-oriented environment, contributing both individually and as a team playerMotivation, flexibility, and a positive outlook that resonates with your team and customers WHAT'S IN IT FOR YOUCompetitive Compensation and Bonuses: Rewarding your dedication and hard work with competitive wages and performance bonuses.Comprehensive Health Benefits: Access robust health, dental, and vision benefits to ensure the well-being of both you and your family.Work-Life Balance: Enjoy a set schedule with no evenings, weekends, or holidays required, allowing you to cherish time with loved ones.Birthday \\\"PAID\\\" Holiday: Celebrate your special day with a paid holiday, showcasing our commitment to your well-being.Dynamic Work Environment: Thrive in a fast-paced setting, surrounded by a supportive family atmosphere.Daily Support and Training: Receive ongoing coaching and training to enhance your skills and foster your professional growth.Family-Centered Culture: Engage in fun, company-wide events that foster camaraderie and a strong sense of community.Full-Time Employment: Benefit from full-time work, providing stability and consistency.Work/Life Balance: Embrace a healthy balance between your work responsibilities and quality time with friends and family.Peak Time Flexibility: Alternate shift options during peak periods, ensuring adaptability while maintaining overall work-life harmony. ABOUT US FOX Plumbing Heating Cooling Electrical is more than a company – it's a community dedicated to growth and excellence. With a legacy spanning over two decades, we're a trusted name in the Vernon home service industry. Our team is committed to exceeding expectations, delivering 5-star service, and creating an environment where you can thrive. As a Call Centre Representative at FOX, you're joining a community that values your contributions and invests in your success. Your commitment to exceptional service aligns perfectly with our mission to raise the bar in customer experiences. Join us for a journey of learning, achievement, and industry excellence. At FOX, you're not just an employee – you're part of a family that is dedicated to your success and prioritizes your growth. Apply now and let's talk!\",\n            \"location\": \"Vernon, BC\"\n        },\n        {\n            \"id\": \"B9B80089D87CE0CECE014ECA5FFA535E\",\n            \"cityName\": \"Terrace, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6c113b2ccd01304d\",\n            \"jobName\": \"Call Center Rep\",\n            \"companyName\": \"Grand Techx Group\",\n            \"rowSalary\": \"$73,763–$84,107 a year\",\n            \"date\": 1694311247070,\n            \"dateOfPosted\": 1693452705586,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.5181925,\n                    \"lon\": -128.6031539\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Terrace\",\n                \"formattedAddress\": \"Terrace, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kitimat-Stikine\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Terrace\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 73763.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    73763.0\n                ],\n                \"range\": {\n                    \"gte\": 73763.0,\n                    \"gt\": null,\n                    \"lte\": 73763.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Thank you for taking a moment to look into our Call Center Program. This is a unique opportunity to join an exceptional team and gain hands-on experience at a high-growth company. This program gives you the chance to learn the steps and systems to efficiently run, market and ultimately grow a business. The primary function of the call center rep is to provide a wide range of strategic, organizational and administrative support to our most premier clientele and business partners. You'll engage with customer through a digital communication center where you can schedule zoom meetings, line up phone calls and streamline email conversations.Requirements:An upbeat, positive attitudeWillingness to go that extra mile for your team and our customersMath/Accounting skills are a plus!Must have experience with Microsoft/ExcelPrior customer service/sales experience is a plusEssential Functions:Book zoom meetings and educate/troubleshoot questions with clienteleWork cooperatively between customers, service providers and other departmentsCommunicate with customers and vendors in a clear, effective, and professional mannerReceive customer inquiries, issues, or challenges and follow-through to resolutionBasic filing and data entryHere’s why you should apply:Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingWe promote from within and are proud to be a company that embraces diversity and inclusion. Please apply with a current resume and be on the lookout for a message from one of our area managers.Job Types: Full-time, CasualSalary: $73,763.00-$84,107.00 per yearBenefits:Casual dressCompany eventsCompany pensionDental careDisability insuranceDiscounted or free foodEmployee assistance programExtended health careFlexible scheduleOn-site gymOn-site parkingPaid time offProfit sharingRRSP matchStore discountVision careWellness programSchedule:Day shiftMonday to FridayMorning shiftNight shiftSupplemental pay types:Bonus payOvertime payRetention bonusSigning bonusTipsWork Location: In person\",\n            \"location\": \"Terrace, BC\"\n        },\n        {\n            \"id\": \"2126479F8A9C6AFBCEE838DE18F2866F\",\n            \"cityName\": \"240 Richmond Street West, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4a6e4b868ca43bb7\",\n            \"jobName\": \"Customer Service Representative (Csr)\",\n            \"companyName\": \"Harwood Sales Group\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694310984683,\n            \"dateOfPosted\": 1693447771440,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6478501,\n                    \"lon\": -79.3958828\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Richmond St W, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond St W, Toronto, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a sales and marketing company based out of Toronto Ontario, looking for motivated and passionate Customer Service Representatives that want to make a difference! Looking for full time schedules, Monday to Friday. Please review the following info for more details!Customer Service Representative Job Responsibilities:Serves customers by providing product and service information and resolving product and service problems.Attracts potential customers by answering product and service questions and suggesting information about other products and services.Maintains financial accounts by processing customer adjustments.Recommends potential products or services to management by collecting customer information and analyzing customer needs.Prepares product or service reports by collecting and analyzing customer information.Contributes to team effort by accomplishing related results as needed.Customer Service Representative Qualifications / Skills:Customer serviceProduct knowledgeMarket knowledgeQuality focusProblem solvingDocumentation skillsPhone skillsListeningJob Type: Full-timeSalary: $20.00-$22.00 per hourBenefits:Flexible scheduleOn-site gymOn-site parkingPaid time offFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Overtime payAbility to commute/relocate:Toronto, ON M5V 1V6: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Richmond St W, Toronto, ON\"\n        },\n        {\n            \"id\": \"F144EFC4C49ADD2017CA02E48A63E288\",\n            \"cityName\": \"6260 Thorold Stone Rd, Niagara Falls, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=297001d35fa3bde4\",\n            \"jobName\": \"Customer Service And Sales Associate\",\n            \"companyName\": \"Party Connection\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694310972836,\n            \"dateOfPosted\": 1689720287733,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.11450360000001,\n                    \"lon\": -79.12803939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara Falls\",\n                \"formattedAddress\": \"Thorold Stone Rd, Niagara Falls, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Niagara Falls\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a sales associate to join our Event Team - friendly and eager to learn. We sell party supplies, helium balloons, party & event decor and party rentals including tents. We pride ourselves in our customer service over the past 38 years in Niagara Falls. You will help our customers who are planning life's special moments. Using your product knowledge, you will showcase our products and services. You will also be required to take phone orders, complete sales, price and put out merchandise, inflate balloons and assist in creating balloon sculptures. A familiarity with computers is helpful in cashing out sales and printing & processing online orders. We have flexible work hours from Monday to Saturday. We are closed on Sundays. If you enjoy a fast paced environment and interacting with people, consider \\\"partying\\\" for a living.Job Types: Full-time, Part-time, PermanentPart-time hours: 20-40 per weekSalary: From $15.50 per hourShift:8 hour shiftCOVID-19 considerations:You are free to wear a mask if you are more comfortable with this protection. Otherwise, we follow covid protocols that are mandated. Ability to commute/relocate:Niagara Falls, ON L2J 1A7: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Thorold Stone Rd, Niagara Falls, ON\"\n        },\n        {\n            \"id\": \"12ABF5BECEDD20DDD3C4F857F768732E\",\n            \"cityName\": \"16610 59a Street NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b7e3f35478e4807a\",\n            \"jobName\": \"Sales Associate/Customer Service\",\n            \"companyName\": \"Circle K\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694310785676,\n            \"dateOfPosted\": 1693449898274,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5225151,\n                    \"lon\": -113.6241906\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"8882 170 St NW, Edmonton, AB T5T 4J2, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"West Edmonton Mall, AB\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative Operate cash registerProvide advice about merchandiseConduct sales transactions through Internet-based electronic commerceGreet customers and discuss type, quality and quantity of merchandise or services sought for purchase, rental or leaseMaintain sales records for inventory controlAssist in display of merchandiseWork Conditions and Physical CapabilitiesFast-paced environmentRepetitive tasksHandling heavy loadsStanding for extended periodsBending, crouching, kneelingWork RemotelyNoJob Types: Full-time, Part-timePart-time hours: 25-30 per weekSalary: $16.00 per hourBenefits:On-site parkingStore discountDay range:Monday to FridayWeekends as neededShift:4 hour shift8 hour shiftDay shiftEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"West Edmonton Mall, AB\"\n        },\n        {\n            \"id\": \"E994D081C4462C68A813D5FB13FCDE29\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b17bcfdedd3afc21\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"Fast Drywall Ltd\",\n            \"rowSalary\": \"$34 an hour\",\n            \"date\": 1694310695349,\n            \"dateOfPosted\": 1688987824361,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 34.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    34.0\n                ],\n                \"range\": {\n                    \"gte\": 34.0,\n                    \"gt\": null,\n                    \"lte\": 34.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 2 years to less than 3 yearsWork site environment Outdoors Noisy Work setting Construction Inspection Willing to relocate Installation Commercial Industrial Institutional Maintenance Residential Repair Tasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Oversee apprenticeship training Recruit and hire workers and carry out related staffing actions Train or arrange for training Estimate costs and materials Ensure health and safety regulations are followed Read blueprints and drawings Requisition or order materials, equipment and supplies Supervision 5-10 people Drywall installers and finishers Apprentices Trades helpers Labourers Transportation/travel information Own vehicle Work conditions and physical capabilities Work under pressure Overtime required Own tools/equipment Steel-toed safety boots Hard hat Safety glasses/goggles Personal suitability Excellent oral communication Organized Reliability Team playerWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"4368AE13D8E8419BCD40641029300BBB\",\n            \"cityName\": \"Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f0b3a74df01fe55e\",\n            \"jobName\": \"Central Dispatcher/Customer Service Kelowna\",\n            \"companyName\": \"Mario's Towing Ltd\",\n            \"rowSalary\": \"$20–$25 an hour\",\n            \"date\": 1694310575988,\n            \"dateOfPosted\": 1694310575738,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8879519,\n                    \"lon\": -119.4960106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Kelowna, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Salary: $20-$25.00 per hour DOE  Central Dispatch Person required Responsibilities: Answering phones, emails Working directly with customers to book tows Working directly with drivers in all locations, giving call information and clearing Maintaining Customer Service with Team Members and Customer's Requirements: Vehicle knowledge an asset. Must have computer skills Able to work under busy conditions Have excellent communication skills dealing with customers, drivers, co-workers, team members and management. Able to work without supervision. Able to work within a team environment Strong Multitasker and Positive Attitude Strong Organizing Skill Criminal Record Check required yearly Extended Health Benefits after 3 months. Job Types: Full-time Job Duties: Answer incoming customer inquiries Offer support and solutions to customers in accordance with the company's customer service policies Job Type: Full-time Wage: $20-$25.00 per hour Benefits: Casual dress Dental care Extended health care Paid time off RRSP match Vision care Schedule: 8 hour shift Day shift Afternoon shift Holidays Weekend availability Experience: Language: English (Required)\",\n            \"location\": \"Kelowna, BC\"\n        },\n        {\n            \"id\": \"656017B782F5CFA53C9D2DA82B8A7C62\",\n            \"cityName\": \"Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=23df94e904bdc54f\",\n            \"jobName\": \"Call Center Representative\",\n            \"companyName\": \"Jetfx Solutions\",\n            \"rowSalary\": \"$53,244–$74,016 a year\",\n            \"date\": 1694310274013,\n            \"dateOfPosted\": 1692552366145,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8879519,\n                    \"lon\": -119.4960106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Kelowna, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 53244.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    53244.0\n                ],\n                \"range\": {\n                    \"gte\": 53244.0,\n                    \"gt\": null,\n                    \"lte\": 53244.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"If you're looking to join a company that has won back-to-back awards for their company culture and workplace vibe, look no further! We’re making a massive expansion throughout the state and giving a handful of candidates the chance to launch the career of a lifetime.I'm sure you have some questions. No worries! Upon being chosen to move forward in the hiring process, you'll receive a full company overview to make sure you have everything you need to know about this opportunity. With our whole company now working remote, a call center job has never been more convenient or more lucrative!Why work here?Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingRequirements:An upbeat, positive attitudeWillingness to go that extra mile for your team and our customersMath/Accounting skills are a plus!Must have experience with Microsoft/ExcelPrior customer service/sales experience is a plusEssential Functions:Book zoom meetings and educate/troubleshoot questions with clienteleWork cooperatively between customers, service providers and other departmentsCommunicate with customers and vendors in a clear, effective, and professional mannerReceive customer inquiries, issues, or challenges and follow-through to resolutionBasic filing and data entryWe are an Equal Opportunity Employer. We promote from within and are proud to be a company that embraces diversity and inclusion. Our approach to training and ongoing mentorship is what has led us to be ranked as a top workplace, top office culture, and put on the Forbes list as one of the happiest companies to work for. Please apply with a recent resume and lookout for email correspondence from our area managers.Job Types: Full-time, Permanent, CasualSalary: $53,244.00-$74,016.00 per yearBenefits:Casual dressCompany eventsCompany pensionDental careDisability insuranceDiscounted or free foodEmployee assistance programExtended health careLife insuranceOn-site gymOn-site parkingPaid time offProfit sharingStore discountTuition reimbursementVision careWellness programSchedule:Evening shiftMonday to FridayMorning shiftSupplemental pay types:Bonus payCommission payOvertime payRetention bonusSigning bonusTipsWork Location: In person\",\n            \"location\": \"Kelowna, BC\"\n        },\n        {\n            \"id\": \"0E4C52552A58E36A14577585DED8F8B9\",\n            \"cityName\": \"145 Idema Rd, Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a25cebcd9f06985d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Ventmere\",\n            \"rowSalary\": \"$15.50–$18.00 an hour\",\n            \"date\": 1694310257543,\n            \"dateOfPosted\": 1693448391805,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8162561,\n                    \"lon\": -79.3510552\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Markham\",\n                \"formattedAddress\": \"Idema Rd, Markham, ON L3R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Idema Road, Markham, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job descriptionCOMPANYVentmere is a fast-growing start-up specializing in online marketing and ecommerce. We make use of the latest web-based technologies and platforms to boost online sales. Ventmere offers a vast catalog of products across all major online marketplaces on the planet.DUTIES AND RESPONSIBILITIESSolve customer inquiry tickets on ZendeskAnswer emails, phone calls and chat inquiriesProvide product troubleshooting and recommendations in audio, tools, small appliances, etcMake decisions on returns, refunds and warranty claimsIdentify potential product flaws and raise them to manufacturersIdentify opportunities to improve the efficiency of customer servicesCOMPETENCIES AND QUALIFICATIONSGreat personality and communication skillsExcellent professional phone and email etiquetteFluent in English, verbally and writtenCustomer service experience preferredAble to learn and understand product functionalities and troubleshootingBilingual in French, Spanish, German or Chinese is a great assetJob Types: Full-time, PermanentSalary: $15.50-$18.00 per hourBenefits:Dental careDiscounted or free foodExtended health careOn-site parkingVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Overtime payWork Location: In person\",\n            \"location\": \"Idema Road, Markham, ON\"\n        },\n        {\n            \"id\": \"189A382D6381FDB0AAAAD0A94E1E1CFE\",\n            \"cityName\": \"30 Capilano Way, New Westminster, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d55b8d4709320842\",\n            \"jobName\": \"Junk Removal - General Labourer / Driver/ Customer Service\",\n            \"companyName\": \"First Choice Junk Removal\",\n            \"rowSalary\": \"$19–$25 an hour\",\n            \"date\": 1694310232842,\n            \"dateOfPosted\": 1663260714526,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2248876,\n                    \"lon\": -122.8845709\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"New Westminster\",\n                \"formattedAddress\": \"Capilano Way, New Westminster, BC V3L, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"New Westminster\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"APPLY TODAY & START AS SOON AS NEXT WEEK!First Choice Junk Removal is growing and looking for positive, physically fit people to join our Truck Teams.Every day is a new adventure when it comes to the removal industry. We work together as a team, keeping a positive mental attitude. We create the atmosphere needed to have fun while working. This environment allows us to service the customer, give them a great experience; therefore, we are the first and only choice they consider using junk removal services. You'll get to travel around the nicest areas of the Greater Vancouver Area while taking away customer’s unwanted items. Variety is the spice of life!Truck Team Member – General Labour / Customer Service / DriverFull-Time & Part-TimeAt First Choice Junk Removal, we take measures to ensure our team members have access to the recommended health and safety precautions to provide this essential service. Our Safety Focus Areas are healthy teams, physical distance, safety equipment and training, and refusal of service.Compensation:Truck Team Member - General Labour / Customer Service / DriverHiring Immediately for Full-Time and Part-TimePay: Starting Base Pay $16.5 for Navigators Average pay is between $19-$25/hr all-in (inclusive of hourly pay, bonuses, and tips- paid every paycheck)We offer performance-based and promotion-based pay raises as you stay and grow on the team.Schedules that work:We offer full-time or part-time hours (as long as you can work at least 2-days per week).We can accommodate students looking for weekend workShort term work; summers/waiting for work to start up againAbout you:Valid driver’s license (no special license required to drive our trucks)A positive, friendly attitudePhysically capable of lifting 50lbs+ repeatedlyGood verbal and written communication skillsPrevious general labor or customer service experience a plus!https://www.icbc.com/driver-licensing/getting-licensed/Pages/Your-driving-record.aspxJob Types: Full-time, Part-timeSalary: $19.00-$25.00 per hourFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftDay shiftOvertimeWeekend availabilitySupplemental pay types:Bonus payOvertime payTips\",\n            \"location\": \"Capilano Way, New Westminster, BC\"\n        },\n        {\n            \"id\": \"050A6594B3019C9A4ED6DC90CD31372E\",\n            \"cityName\": \"1415 Alberni Highway, Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4a9f65f27a74d2b8\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mid Island Liquor\",\n            \"rowSalary\": \"From $17.75 an hour\",\n            \"date\": 1694310157345,\n            \"dateOfPosted\": 1694310157157,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3045941,\n                    \"lon\": -124.3349719\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Parksville\",\n                \"formattedAddress\": \"Alberni Hwy, Parksville, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Parksville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Liquor is looking for part-time Customer Service Representatives at our Parksville Liquor Store.Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you!Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in the operations of the store, including but not limited to handling customer transactions, responding to customer questions and concerns in a professional manner, creating displays and stocking shelves, and ensuring store and merchandise are neat and organized.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Representative today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. Previous retail experience is preferred, and you must have a valid Serving it Right Certificate (or be willing to get certified prior to your first day).Who we are:Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve.Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op).We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.Job Types: Permanent, Part-timeSalary: From $17.75 per hourBenefits:Employee assistance programFlexible scheduleOn-site parkingStore discountSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Alberni Highway, Parksville, BC\"\n        },\n        {\n            \"id\": \"FBF86AB346423BFA3FC5CFECDF5130D1\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c5dbca2a9db438db\",\n            \"jobName\": \"Customer Service Representative Supervisor\",\n            \"companyName\": \"Rcspl Canada Inc.\",\n            \"rowSalary\": \"$28.50 an hour\",\n            \"date\": 1694310147275,\n            \"dateOfPosted\": 1686806332848,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 29.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    29.0\n                ],\n                \"range\": {\n                    \"gte\": 29.0,\n                    \"gt\": null,\n                    \"lte\": 29.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsHealth benefits Dental plan Health care planWork Term: PermanentWork Language: EnglishHours: 32 hours per week\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"250381D77C03D83BF9178B44D9924EA6\",\n            \"cityName\": \"The Village Store in Athens, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=36a48b206da5a2cf\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"The Village Store\",\n            \"rowSalary\": \"From $32,000 a year\",\n            \"date\": 1694309925017,\n            \"dateOfPosted\": 1689525193992,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6265326,\n                    \"lon\": -75.95113839999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Athens\",\n                \"formattedAddress\": \"Athens, ON K0E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Leeds and Grenville United Counties\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Athens\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 32000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    32000.0\n                ],\n                \"range\": {\n                    \"gte\": 32000.0,\n                    \"gt\": null,\n                    \"lte\": 32000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Village Store is a family-owned and operated grocery business. We're committed to providing a truly exceptional grocery experience, where customers get exceptional value, great service, and great selection.Greet customers and offer exceptional customer service.Scan, process and bag customer orders accurately and with careHandle cash and EFT transactions accuratelyProvide customers with information on our unique items, sales items and up-sellingShare customer feedback with managementMaintain a clean and safe workplace, adhering to sanitation policiesAdditional duties as requiredJob RequirementsPrevious experience working as a Cashier or Service in a grocery store is preferredPassionate about customer service; approachable and enjoys helping customersHealth and safety orientated adhering to food, safety and sanitation standardsExcellent manual dexterity; comfortable standing, bending, walking and light lifting for long periods of timeOpen availability; must be flexible to work all shifts including days, evenings and weekends.Job Types: Full-time, Part-timePart-time hours: 35 per weekSalary: From $32,000.00 per yearDay range:HolidaysMonday to FridayWeekends as neededShift:8 hour shiftDay shiftNight shiftCOVID-19 considerations:Public health guidelines are followed as requiredExperience:sales: 1 year (preferred)customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Athens, ON\"\n        },\n        {\n            \"id\": \"4F0C5CA328926069FA1AF6BB211BACEC\",\n            \"cityName\": \"6941 Steeles Ave W, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a2107e33268b2f5b\",\n            \"jobName\": \"Customer Service Representative With Sales Experience\",\n            \"companyName\": \"Melodia Homecare\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694309872378,\n            \"dateOfPosted\": 1669046159272,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7737989,\n                    \"lon\": -79.5298064\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Steeles Ave W, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Looking for Customer Service Agent that has at least one year of sales experience.Job Type: Full-timeSalary: From $16.00 per hourSchedule:8 hour shiftDay shiftMonday to FridayWeekend availabilitySupplemental pay types:Commission payAbility to commute/relocate:NOBLETON, ON: reliably commute or plan to relocate before starting work (required)Education:DCS / DEC (preferred)Experience:Customer service: 1 year (preferred)Work Location: Hybrid remote in Toronto, ON\",\n            \"location\": \"Steeles Avenue West, Toronto, ON\"\n        },\n        {\n            \"id\": \"4A946BEF71CA22CEBE4D003F0A40D870\",\n            \"cityName\": \"110-6711 MacLeod Trail SW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ec2c4d32f4c76208\",\n            \"jobName\": \"Customer Service Representative (Part Time)\",\n            \"companyName\": \"Homes Alive Pets\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694309686341,\n            \"dateOfPosted\": 1694309686151,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.9702696,\n                    \"lon\": -114.0714787\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Macleod Trail SW, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Why Homes Alive Pets? This isn't your average pet store. You'll feel it when you walk through our door. It's more than beautifully-designed locations and friendly staff – it's a belief in a higher standard for pet care. Our stores are community hubs – somewhere to come and share an experience with your pet. You'll immediately notice a refreshing shopping experience at Homes Alive because we take a brand-agnostic, knowledge-over-upselling approach. Rather than pushing a certain product or feeling pressured to meet sales quotas, our team's attention is solely focused on getting to know you and your pet and empowering you to make confident decisions. Our Mission is to add value to every life. When we say every life, we include guests and their pets. Employees and co-workers. Brand reps and vendors. Even our communities. There is life all around us, and it is our mission to add value qualitatively and quantitatively. In the qualitative sense, it is our mission to elevate every life as important and worthwhile. In the quantitative sense, and in the context of our business, it is also our mission to add value, discounts, and a fair balance of price and quality for our guests. This is how we will make a positive impact in our communities and world. Job Title Customer Service Representative Direct Report Store Manager Department Store Operations Location 110-6711 Macleod Trail SW Calgary AB, T2H 2T3 Summary Customer Service Representatives are the first point of contact for customers and strive to ensure that each customer has a positive shopping experience. Responsibilities of Customer Service Representatives include operating cash registers and handling money, providing customers with information about products offered in the store, and maintaining a clean and organized work environment. The ideal Customer Service Representative has excellent communication and people skills, experience in customer service or a willingness to learn, and a passion for pets. Core Competencies A Positive and Hardworking Attitude. A willingness to go the extra mile to provide customers with the best possible shopping experience. Strong Communication Skills. Ability to clearly communicate with customers and other staff. Resilience. Ability to remain calm and navigate through high stress situations Behaviour & Skills Customer Service Excellent time management & attention to detail Excellent teamwork & collaborative abilities Confident & articulate communication Trustworthy & positive attitude Understanding of pet nutrition & needs Ability to lift 50lbs Job Responsibilities Customer Service Representatives are responsible for these 5 areas of store functions in order of Priority with objectives: Customer Service To serve and learn the immediate needs of customers and offering honest and sincere advice, as well as welcoming them to the culture of the Homes Alive community. Operate cash registers and accurately handle cash. Store Appearance Maintain stock on the shelves, product detail communication for your specific section (ie. Price tags, sales signs, etc.), clean and face products and shelves to provide the highest quality of solo shopping experience for the customer. Employee Service Self-initiate service to co-workers and leaders to assist with any projects or tasks to develop a culture and community of servantship and improve the quality of life of those around you. System Maintenance Complete routine tasks specified in checklists & delegated by leaders and follow proper system procedures for efficiency, effective communication, and accuracy of inventory. Self-Development Take initiative in any possible opportunities to learn and develop skills or knowledge in any area within Homes Alive to develop yourself to become a servant leader (a leader that goes the extra mile to serve others). A Day in the Life of a Customer Service Representative Each day as a Customer Service Representative will be dynamic and unique. A typical day will involve you helping customers find the supplies they need for their pets, providing them with information about pet care and nutrition, and assisting them at the cash register. You will also work to make sure your store looks clean and presentable and that inventory on the shelves is full and well organized. As customers often bring their pets into the store, you will also get plenty of opportunity to interact with dogs and cats (and even hand out treats!) Schedule Part-time Guest Service Representatives work up to 30 hrs./week, at the discretion of the Store Manager. Shifts may be morning, afternoon, or evening, Monday to Sunday. Compensation $16.00/hr.\",\n            \"location\": \"S Macleod Trl, Calgary, AB\"\n        },\n        {\n            \"id\": \"9B605CB0A49EA295187BB1EEAE820E5B\",\n            \"cityName\": \"Dollard-Des Ormeaux, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=22279517b8debb0f\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Starbucks Des Sources\",\n            \"rowSalary\": \"From $14.90 an hour\",\n            \"date\": 1694309679236,\n            \"dateOfPosted\": 1648560395532,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4895636,\n                    \"lon\": -73.8205567\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dollard-Des Ormeaux\",\n                \"formattedAddress\": \"Dollard-Des Ormeaux, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dollard-Des Ormeaux\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Great work environment with a friendly staff!Barista tasks include:- Preparing beverages- Creating best moments with customers- Drive thru fun- Basic cleaning tasksOperating hoursMonday - Friday: 5:30-22:30Saturday- Sunday: 6:30-22:30Job Types: Full-time, Part-timePart-time hours: 20 per weekSalary: From $14.90 per hourBenefits:Dental careExtended health carePaid time offRRSP matchVision careSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payOvertime payTipsAbility to commute/relocate:Dollard-Des Ormeaux, QC H9B 1Z9: reliably commute or plan to relocate before starting work (required)\",\n            \"location\": \"Dollard-Des Ormeaux, QC\"\n        },\n        {\n            \"id\": \"9D84C3265DF973D5C959FF78FBCB00F6\",\n            \"cityName\": \"6016 Yonge Street, North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cfc069e3d4e3d2a2\",\n            \"jobName\": \"Bi-Lingual Customer Service Representative (Korean And English)\",\n            \"companyName\": \"Hans Lee Insurance Agency\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694309489414,\n            \"dateOfPosted\": 1666209012530,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7542766,\n                    \"lon\": -79.40866609999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Yonge St, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Insurance office is looking for a candidate to fill a part time position. Candidate must be fluent in English and Korean.Candidate will be responsible for assisting clients with their insurance matters. No prior experience required, however previous office experience will be an asset.Candidate must have excellent computer and phone skills.All training will be provided on the job.Job Type: Part-timeSalary: From $16.00 per hourSchedule:Day shiftMonday to FridayNo weekendsLanguage:Korean (required)\",\n            \"location\": \"Yonge Street, North York, ON\"\n        },\n        {\n            \"id\": \"8C722000192FFE2A38D326E2856A3AD3\",\n            \"cityName\": \"6720 Highway 35, Coboconk, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b18a66516e6c6ed3\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Shell Gas Station Coboconk\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694309250136,\n            \"dateOfPosted\": 1656196808824,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.66080950000001,\n                    \"lon\": -78.80183939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kawartha Lakes\",\n                \"formattedAddress\": \"Coboconk, Kawartha Lakes, ON K0M, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Kawartha Lakes\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kawartha Lakes\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job DescriptionCome and join a winning team with strong family values that has exciting expansion plans. Our company has a great culture where we put the customer at the heart of everything we do!Our Values - Honour: Respect: Honesty: Integrity: Ethics Is this something that you would like to be part of?We are currently hiring at our Shell Gas Station and Convenience Store located in Coboconk.Full time or Part time hours available.What are we looking for?You will have:A positive attitude to working with a team outstanding customer service skills.Your own transportation and be flexible when it comes to working within a business that operates from 5am to 10pm all year round (Holiday hours apply at Christmas time)No Experience necessary. Training will be provided.We offer:Competitive salary ratesSafe environments to workCareer opportunities with a growing businessNew Uniform including safety PPEFull & Part Time Positions availableGreat working culture!Please send us your resume... we'd love to hear from you!'Don't delay...apply today'Job Types: Full-time, Part-timeSalary: $14.00 to $16.00 /hourJob Types: Full-time, Part-timeSalary: $14.00 to $16.00 /hourPart-time hours: 17-35 per weekJob Types: Full-time, Part-time, PermanentSalary: $14.00-$16.00 per hourCOVID-19 considerations:All current COVID-19 Protocols in force at this time.Job Types: Permanent, Part-time, Full-timePart-time hours: 20 - 40 per weekSalary: $15.00-$16.00 per hourSchedule:8 hour shiftAbility to commute/relocate:Coboconk, ON K0M 1K0: reliably commute or plan to relocate before starting work (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)\",\n            \"location\": \"Coboconk, ON\"\n        },\n        {\n            \"id\": \"29DA9BE3375CE282DB170C675BA8E75E\",\n            \"cityName\": \"Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b686e53ce34f1c75\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Alarme Sentinelle / Sentinel Alarm\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694308920898,\n            \"dateOfPosted\": 1693447816110,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4503213,\n                    \"lon\": -73.7500486\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Established in 1978, Alarme Sentinelle is a privately held full-service security company with a ULC listed and Five Diamond monitoring station providing customized solutions to customer in the greater Montreal region. With over 100 years of combined experience amongst our bilingual staff we are able to maintain high value service to our customers.We are looking for a new detail-oriented member to join our team to take the reigns as Customer Service and Sales Support. You will be reporting directly to the former support specialist, who will be moving to another position, and will work closely with the sales department, the installation/service departments and central station manager.If you cannot speak both English andFrench, please do not applyThe following list is not exhaustive, other duties may be assigned by managementResponsibilities· Verify all documents are collected and open customer files accordingly· Prepare contracts and send online using Adobe Sign· Process client inquires over the phone, through email, online chat· Upsell through cancellations and customer feedback· Follow up on potential cancellation and forward to sales team for retention· Process cancellations· Manage social media and website· Perform any other tasks that may be assigned to you from time to timeRequirements· Oral and written fluency in French and English· Ability to provide outstanding customer service· Knowledge of Microsoft Office products· Knowledge of social media platforms· Industry experience is an asset· Confidence to upsell new services to clients· Resourceful with a self-starter attitude· Ability to work under pressure and meet time sensitive deadlines· Ability to work in a teamJob Type: Full-timeSalary: From $18.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingVision careSchedule:8 hour shiftNo weekendsSupplemental pay types:Signing bonusAbility to commute/relocate:Dorval, QC: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Language:English (required)French (required)Work Location: In person\",\n            \"location\": \"Dorval, QC\"\n        },\n        {\n            \"id\": \"87E6B0815F4B196804AEEDE7CFDC2308\",\n            \"cityName\": \"26 Thomas Raddall Dr Suite 182, Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5df08e041e300fbe\",\n            \"jobName\": \"Customer Service Coordinator (Two Positions)\",\n            \"companyName\": \"Canada Games Centre\",\n            \"rowSalary\": \"$42,000–$58,000 a year\",\n            \"date\": 1694308840782,\n            \"dateOfPosted\": 1693447678579,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.65802,\n                    \"lon\": -63.66342119999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax\",\n                \"formattedAddress\": \"Thomas Raddall Dr, Halifax, NS B3S, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Thomas Raddall Dr, Halifax, NS\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Canada Games Centre (CGC) is a vibrant multi-sport community and recreation centre in Halifax, Nova Scotia. We are a 176,000 sqft facility operated by a non-profit society committed to promoting physical literacy, fitness and wellness, and to supporting the needs of high performance sport & athlete development. The Centre runs sport and recreation programs, camps, fitness classes and so much more in an inclusive environment. Located in Mi’kma’ki, the ancestral and traditional lands of the Mi’kmaq people, the CGC acknowledges the Peace & Friendship Treaties signed in this Territory and recognizes that we are all Treaty People. Together, we inspire healthy active living. Position Summary We are looking for two (2) enthusiastic, recreation/sports-minded, positive individuals to provide leadership in delivering exceptional customer service and support to our members and guests. This position is responsible to work alongside another Customer Service Coordinator for the overall day-to-day supervision and training of the Canada Games Centre Customer Service and Membership teams. Strong communication skills and relationship building are key to success in this role. The Coordinator will work within our Service Operations department to ensure members and guests have a quality experience in our Centre. This position will report directly to the Manager, Service Operations and will aid in providing support and leadership to a staff team consisting of Customer Service staff, Membership Assistants, Gate Monitors, and Child Minding staff. In addition to a commitment to exceptional customer service and a positive customer experience, the Customer Service Coordinator must be highly organized, sales focused, manage time effectively, and complete correspondence with members and users in a timely, efficient, and professional manner. This is a client facing role where professionalism and building rapport are the keys to success. ResponsibilitiesHours will consist of flexible daytime, evening, and weekend hoursOrganize and administer customer service protocols and proceduresEnsure staff scheduling for appropriate coverage and keep within budgetary allowancesIdentify training needs and build/conduct training as necessary for staff regarding memberships, service delivery, paperwork completion, and other relevant topicsAssist with member services including, but not limited to check-ins, membership sales, daily cash-outs, facility tours, paperwork, and end of shift reconciliationsAssist with member adherence to the User Code of Conduct for the facility and provide counselling for behaviour improvement and/or disciple when necessaryRespond to inquiries – on-site, emails, and phone calls/textsCommunicate policies, procedures, updates, and all other required information to guestsAssist in the growth and development of memberships for the facility including the corporate membership programAccept and process paymentsReceive and manage all customer complaints or concerns (either directly or through other departments, depending on the specific issue)Act as the lead point of contact for Customer Management Software (Legend) at Customer ServiceDay-to-day coaching, recruitment, hiring, training, and development of part-time and full-time Membership, Customer Service, Child Minding and Gate Monitor staffAdminister the organizations Performance Management system with all members of the Customer Service business unitResponsible for ensuring that staffing levels are appropriate for fluctuating business needsAssist in the planning and implementation of member appreciation events and marketing events to promote membership growthAssist in developing and expanding any procedural documents and training materials necessary for end-users and staffAssist in the organization’s member retention strategy, including working with the Marketing department on member communications, following up on cancellations,Maintaining inventory and ordering supplies for areaUnderstanding and coordination of all financial responsibilities associated with Customer Service, including but not limited to ensuring change/cash floats are monitored and replenished, investigating discrepancies in staff daily balance sheets and payrollLiaise with all Canada Games Centre departments to ensure key messages are received and communicated to the Customer Service teamServe as an after-hours point of contact for Customer Service staff and provide desk coverage when neededWork in conjunction with other Canada Games Centre staff to develop best practices to maximize use of the CentreCommunicate effectively and in a timely manner with public, user groups and staffProcess payments and perform invoicing where necessaryPrepare and submit payrollComplete additional projects and tasks as assigned by Manager, Service OperationsQualifications Education & ExperienceDegree in Business Administration, Recreation Management, or equivalent combination of relevant education and experienceTwo (2) years’ experience in supervisory role in similar environmentExperience in cash handling and revenue reportingExperience working with the public in a customer service focused role including in conflict situationsExperience and comfort using computers and various software programsExperience processing financial transactionsExperience in staff training and coaching for successUnderstand and appreciate the important role that sport, and recreation plays in healthy communitiesStrong interpersonal and communication skillsStrong listening skillsDetail and solution orientedGood decision-making skillsExperience dealing with various publics (individuals, families, corporate, seniors, youth, etc.)Schedule flexibility required – weekdays and weekends + day and evening shiftsWorking ConditionsThis position requires full-time work, 35+ hours per week, with flexibility for working hours between 5:30am and 10:00pm, Monday through Sunday, mornings, evenings, and weekends. This includes the potential to be on call when required by facility operations and schedule demands and to serve as the Person on Duty (POD) on our duty schedule with other facility Coordinators/Supervisors/Assistants.Working conditions in general, subject to seasonal programs, evening meetings, budgetary planning exercises or individual projects or events. May require evening hours for internal meetings or other community meetingsThis position may include heavy lifting of supplies and equipment and may be exposed to loud noises and will require an individual to be able to concentrate in a busy environmentPsychological Demands: Potentially high stress environment due to multi-task requirement and customer expectationsNotesCriminal Record & Child Abuse Registry checks will be required as part of the hiring processWhat’s in it for you?Group benefits and RRSP planEducation allowanceFree facility membershipFree parking and close proximity to Halifax TransitAmazing team environmentOrganization committed to extraordinary staff and customer experienceCompensation Salary will be based on a range from $42,000–$58,000 commensurate with education and level of experience. Applications Instructions To apply, please submit a cover letter and resume, outlining how you meet the specific qualifications listed in the job posting to Wasan Nayfeh at careers@canadagamescentre.ca by Friday, September 29th, 2023. Please include your full name and the position you are applying for in the subject line. Failure to properly identify your application or attach working documents may result in your application being omitted. We are a welcoming and supportive environment whose goal is to be a diverse workplace representative of the citizens we serve. Indigenous people, persons with disabilities, African Nova Scotians, racially visible persons, women in occupations where they are under-represented, and the LGBTQIA2S+ community are encouraged to self-identify on your application.\",\n            \"location\": \"Thomas Raddall Dr, Halifax, NS\"\n        },\n        {\n            \"id\": \"5DC8C81E7E400E7F79067B10B8DD679B\",\n            \"cityName\": \"FAS GAS Plus South Avenue in Spruce Grove, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c0dea4fea545d00c\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Fas Gas Plus South Avenue\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694308534844,\n            \"dateOfPosted\": 1671090684452,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5411191,\n                    \"lon\": -113.9101291\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Spruce Grove\",\n                \"formattedAddress\": \"Spruce Grove, AB T7X, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Spruce Grove\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Company descriptionFAS GAS Plus South Avenue,REDDI MARTConvenience store + Gas stationJob descriptionJob requirements Languages English Education Secondary (high) school graduation certificate Experience 2 years to less than 3 years Specific Skills Sell merchandise; Prepare reports on sales volumes, merchandising and personnel matters; Authorize payments by cheque; Authorize return of merchandise; Assign sales workers to duties; Resolve problems that arise, such as customer complaints and supply shortages; Organize and maintain inventory Additional SkillsEstablish work schedules; Hire and train or arrange for training of staffWork Conditions and Physical CapabilitiesFast-paced environment; Attention to detailPersonal SuitabilityEffective interpersonal skills; Flexibility; Accurate; ReliabilityIndustry: RetailJob Types: Full-time, TemporarySalary: $15.00 per hourSchedule:EveningsWork Location: In person\",\n            \"location\": \"Spruce Grove, AB\"\n        },\n        {\n            \"id\": \"CDF169B8716E4DCB6A17B3007421715F\",\n            \"cityName\": \"Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=69cdb16d0708465d\",\n            \"jobName\": \"Call Center Agent\",\n            \"companyName\": \"Orange Dot Clean\",\n            \"rowSalary\": \"$19.80–$25.50 an hour\",\n            \"date\": 1694308530848,\n            \"dateOfPosted\": 1692606882001,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:Interact with all customers in a friendly and courteous mannerMust be able and willing to receive a high amount of inbound callsPerform a variety of tasks associated with customer and client servicesThorough documentation of all contacts within the customer management systemHandle interactions via phone, chat, or emailUnderstand and adhere to all rules of conductQualifications:High School Diploma or combination of education and experienceHigh-speed internet connection (if working remotely)Excellent verbal and written communication skillsBasic understanding of windows base systemsAbility to read, understand, and follow oral and written instructionsStrong attention to detailJob Types: Full-time, Part-timePart-time hours: 20 per weekSalary: $19.80-$25.50 per hourBenefits:Company pensionDental careLife insurancePaid time offSchedule:Monday to FridaySupplemental pay types:Commission payAbility to commute/relocate:Hamilton, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"129BE0B2EE65873E8EE2BD20CF3A88A7\",\n            \"cityName\": \"478 Woody Rd, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2abd8364feb03115\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"U-Haul\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694307457652,\n            \"dateOfPosted\": 1661368312355,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.467517,\n                    \"lon\": -79.6876659\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"START TODAY, GET PAID TODAY! New hires eligible for BONUS!Are you a people person? Do you love helping others? U-Haul is in search of friendly, motivated people for the position of Customer Service Technician. As a Customer Service Technician, you will work as part of a supportive team to be the face of U-Haul’s exceptional service, ensuring customers get all the help they need on their journeys.U-Haul Offers Customer Service Representative:Paid holidays, vacation, and sick daysCareer stabilityOpportunities for advancementValuable on-the-job trainingComplete Benefit Plan if eligibleRRSP payroll deduction planDeferred profit-sharing plan if eligible.Discounts on Dell computers, hotels, and moreCustomer Service Representative Responsibilities:Assist customers inside and outside U-Haul Center with U-Haul products & servicesUse smartphone-based U-Scan technology to manage rentals and inventoryMove and hook up U-Haul trucks and trailersClean and inspect equipment on the lot including checking fluid levelsAnswer questions and educate customers regarding products and servicesPrepare rental invoices and accept equipment returned from rentalCustomer Service Representative Minimum Qualifications:Valid driver’s license and ability to maintain a good driving recordHigh School Diploma or equivalentWork Environment:The work involves moderate risks or discomforts which require special safety precautions, e.g., working around moving parts or machines, fumes, or irritant chemicals. May be required to use protective clothing, or gear such as masks, goggles, gloves or shields.Physical Demands:The work requires some physical exertion such as long periods of remaining stationary, moving around an office and occasionally outdoors, positioning oneself to reach objects at varying heights, and moving equipment weighing a minimum of 50 lbs. assisted or unassisted.U-Haul is an equal opportunity employer. All applications for employment will be considered without regard to race, color, religion, sex, national origin, physical or mental disability, veteran status, or any other basis protected by applicable federal, provincial, state, or local law. Individual accommodations are available on requests for applicants taking part in all aspects of the selection process. Information obtained during this process will only be shared on a need to know basis.Job Type: Part-timePart-time hours: 30 per weekSalary: $17.00-$18.00 per hourSchedule:8 hour shiftAbility to commute/relocate:Oakville, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)\",\n            \"location\": \"Oakville, ON\"\n        },\n        {\n            \"id\": \"73BC01456EEA301CD4AE1F728DE6D3F9\",\n            \"cityName\": \"High Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e12c0ead00297621\",\n            \"jobName\": \"Customer Service Associate - High Prairie\",\n            \"companyName\": \"Peavey Industries Lp\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694307296148,\n            \"dateOfPosted\": 1693450116049,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.43289910000001,\n                    \"lon\": -116.4886918\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"High Prairie\",\n                \"formattedAddress\": \"High Prairie, AB T0G 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 17\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"High Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate Type of Employment: Part time Location: High Prairie  With its Corporate office in Red Deer, Alberta and its Regional office in London Ontario, Peavey Industries LP is the corporate parent to retail brands Peavey Mart, MainStreet Hardware, and Ace Canada. We are 100% Canadian and employee owned.  Peavey is an engaging workplace. We are proud to promote from within and provide training to make this possible. We offer flextime and comprehensive benefits.  We are committed to our customers and the communities and agricultural regions we serve every day. Job Overview: The Customer Service Associate is a customer service specialist. Customer Service Associates are responsible for advising customers and processing customer purchases/returns. When not attending to a customer, the Customer Service Associate stocks shelves, assists in setting up displays, prices product, and maintains the cleanliness of the store. Ideal Candidate: The ideal candidate has experience working with the public and has excellent customer service skills.  Responsibilities Warmly approaching and greeting customers.Advising customers on products and suggesting solutions to their needs.Providing a high level of customer service.Encouraging further business by thanking customers and asking for them to come back.Help customers with concerns and put them in contact with a Supervisor as needed.Answering the telephone in a warm and friendly mannerLearn and maintain a product knowledge of store merchandiseHelping to set up displays as directed by store management teamProvide customer carry outs and load products for customers. Use Team Lift when needed.Weigh, measure, and cut merchandise to fill customer orders.Establishing/identifying prices for itemsKeying or scanning merchandise for customer purchaseTotal and receive payment for merchandiseIssue receipts, refunds, credits, or change due to customers per policyEnsuring proper return and refund policy is followed, including Management sign-offWrapping or bagging merchandise purchased by the customerCount money in cash drawers at the beginning of shifts to verify accuracyManager on duty verifies opening and closing cash countsStocking/Re-stocking merchandise as neededMaintaining cleanliness of the store and checkout areaMerchandising, pricing and tasking the point of purchase area when there are no customers in lineHelp with receiving on an as needed basisUse safe work procedures while setting a good example to fellow employeesCarry out work in a manner that will not create a hazard to themselves or othersWork with co-workers and members of the Safety Committee to help create a safe working environment by making safety suggestions and recommendationsReport any accidents, incidents, near misses, injuries, and/or occupational health concerns to a safety committee memberFollow Peavey Industries LP medical and first aid proceduresPositively communicate and demonstrate the company’s Core Values Qualifications On the job training or previous experience Employee Perks Employee DiscountInclusive work cultureLaid back atmosphereWork-life balanceOnly those selected for an interview will be contacted. Peavey Industries LP is committed to creating a diverse environment and is proud to be an equal opportunity employer. All qualified applicants will receive equal consideration for employment, and we welcome the unique contributions that you can bring in terms of education, culture, ethnicity, race, sex, gender identity and expression, nation of origin, age, languages spoken, veteran’s status, colour, religion, disability, sexual orientation and beliefs.\",\n            \"location\": \"High Prairie, AB\"\n        },\n        {\n            \"id\": \"2D1A7E544CD5169DBF61FA1DA9CB8F9B\",\n            \"cityName\": \"High Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3f23a16c1a9d827c\",\n            \"jobName\": \"Customer Service Associate - High Prairie\",\n            \"companyName\": \"Peavey Industries Lp\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694306872467,\n            \"dateOfPosted\": 1693450106216,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.43289910000001,\n                    \"lon\": -116.4886918\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"High Prairie\",\n                \"formattedAddress\": \"High Prairie, AB T0G 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 17\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"High Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate Type of Employment: Full time Location: High Prairie, AB  With its Corporate office in Red Deer, Alberta and its Regional office in London Ontario, Peavey Industries LP is the corporate parent to retail brands Peavey Mart, MainStreet Hardware, and Ace Canada. We are 100% Canadian and employee owned.  Peavey is an engaging workplace. We are proud to promote from within and provide training to make this possible. We offer flextime and comprehensive benefits.  We are committed to our customers and the communities and agricultural regions we serve every day. Job Overview: The Customer Service Associate is a customer service specialist. Customer Service Associates are responsible for advising customers and processing customer purchases/returns. When not attending to a customer, the Customer Service Associate stocks shelves, assists in setting up displays, prices product, and maintains the cleanliness of the store. Ideal Candidate: The ideal candidate has experience working with the public and has excellent customer service skills.  Responsibilities Warmly approaching and greeting customers.Advising customers on products and suggesting solutions to their needs.Providing a high level of customer service.Encouraging further business by thanking customers and asking for them to come back.Help customers with concerns and put them in contact with a Supervisor as needed.Answering the telephone in a warm and friendly mannerLearn and maintain a product knowledge of store merchandiseHelping to set up displays as directed by store management teamProvide customer carry outs and load products for customers. Use Team Lift when needed.Weigh, measure, and cut merchandise to fill customer orders.Establishing/identifying prices for itemsKeying or scanning merchandise for customer purchaseTotal and receive payment for merchandiseIssue receipts, refunds, credits, or change due to customers per policyEnsuring proper return and refund policy is followed, including Management sign-offWrapping or bagging merchandise purchased by the customerCount money in cash drawers at the beginning of shifts to verify accuracyManager on duty verifies opening and closing cash countsStocking/Re-stocking merchandise as neededMaintaining cleanliness of the store and checkout areaMerchandising, pricing and tasking the point of purchase area when there are no customers in lineHelp with receiving on an as needed basisUse safe work procedures while setting a good example to fellow employeesCarry out work in a manner that will not create a hazard to themselves or othersWork with co-workers and members of the Safety Committee to help create a safe working environment by making safety suggestions and recommendationsReport any accidents, incidents, near misses, injuries, and/or occupational health concerns to a safety committee memberFollow Peavey Industries LP medical and first aid proceduresPositively communicate and demonstrate the company’s Core Values Qualifications On the job training or previous experience Employee Perks (FT/Permanent) Employee Ownership ProgramEmployee DiscountRRSP Matching ProgramCompetitive Group BenefitsInclusive work cultureLaid back atmosphereWork-life balanceOnly those selected for an interview will be contacted. Peavey Industries LP is committed to creating a diverse environment and is proud to be an equal opportunity employer. All qualified applicants will receive equal consideration for employment, and we welcome the unique contributions that you can bring in terms of education, culture, ethnicity, race, sex, gender identity and expression, nation of origin, age, languages spoken, veteran’s status, colour, religion, disability, sexual orientation and beliefs.\",\n            \"location\": \"High Prairie, AB\"\n        },\n        {\n            \"id\": \"5107EE42F5A36DC1F1E088D05AC7F142\",\n            \"cityName\": \"15110 54a Ave, Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9b9679b94f0c2298\",\n            \"jobName\": \"Customer Service/Key Holder\",\n            \"companyName\": \"Elevation Fitness\",\n            \"rowSalary\": \"$17–$20 an hour\",\n            \"date\": 1694306733266,\n            \"dateOfPosted\": 1689721263149,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1901012,\n                    \"lon\": -122.8503845\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"13438 Central Ave, Surrey, BC V3T 0N2, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Elevation Fitness is looking to hire Customer Service Representatives to join our team!2 Postions: Full time morning 5 am to 1pm and 2nd position is evenings and weekends.Please indicate which position you are applying for.Duties:Service staff are responsible for front desk duties, giving tours, juice bar duties. and providing excellent customer service to members and guests of Elevation Fitness.Qualifications:The ideal candidate will have a background in customer service experience, have a passion for helping others and will be a great team member! Other qualities we are looking for in a candidate include: positive attitude, strong communication skills, self-motivation and dependability.We look forward to hearing from you!Job Type: Full-timeSalary: $17.00-$20.00 per hourSchedule:Evening shiftMorning shiftEducation:Secondary School (preferred)Experience:Microsoft Office: 1 year (preferred)Work Location: In person\",\n            \"location\": \"A  Ave, Surrey, BC\"\n        },\n        {\n            \"id\": \"0AE7E796D7C51764E698EAF49DE182C4\",\n            \"cityName\": \"Lethbridge, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4ff63f5c22735599\",\n            \"jobName\": \"Call Center Rep\",\n            \"companyName\": \"Two Links Solutions\",\n            \"rowSalary\": \"$63,548–$87,321 a year\",\n            \"date\": 1694306187466,\n            \"dateOfPosted\": 1692552257063,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.6955856,\n                    \"lon\": -112.8451364\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lethbridge\",\n                \"formattedAddress\": \"Lethbridge, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 2\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lethbridge\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 63548.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    63548.0\n                ],\n                \"range\": {\n                    \"gte\": 63548.0,\n                    \"gt\": null,\n                    \"lte\": 63548.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"What you get from us:Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeBonusesResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingPrimary Responsibilities:Trained in and proficient in responding to inquiries about varies programs and benefitsIdentify customer needs and expectationsResponsible for promptly and accurately addressing customer inquiriesServe as primary contact for inbound customer issues.Escalate more technical product-related issues to the proper support departmentUpdate customer information and ensure accurate entry of contact informationMaintain quality service by following established policies and proceduresEnsure proper security procedures are followed on all customer interactionsWe are an Equal Opportunity Employer and prohibit discrimination and harassment of ANY KIND: We are committed to the principle of equal employment opportunity for all employees and to providing employees with a work environment free of discrimination and harassment. We hope you take the time to apply today and may we have the chance to speak with each other in the near future.Job Type: Full-timeSalary: $63,548.40-$87,321.30 per yearBenefits:Casual dressCompany carCompany eventsCompany pensionDental careDisability insuranceDiscounted or free foodEmployee assistance programExtended health careFlexible scheduleOn-site gymOn-site parkingPaid time offProfit sharingRRSP matchStore discountTuition reimbursementVision careWellness programSchedule:8 hour shiftDay shiftMonday to FridayMorning shiftSupplemental pay types:Bonus payOvertime paySigning bonusWork Location: In person\",\n            \"location\": \"Lethbridge, AB\"\n        },\n        {\n            \"id\": \"387E750C23651D7E07A200F99652274D\",\n            \"cityName\": \"1782 Baron Rd, Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8924db79cf1d6cdd\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Platos Closet Kelowna\",\n            \"rowSalary\": \"$17.68–$18.20 an hour\",\n            \"date\": 1694305832112,\n            \"dateOfPosted\": 1691455552347,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.88296889999999,\n                    \"lon\": -119.4274829\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Baron Rd, Kelowna, BC V1X, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate / Buyer - Full-time or 3/4 timePlato’s Closet Kelowna is a locally-owned resale business that is all about being fashion savvy and shopping smart. We’re an unique gently used retail store specializing in buying and selling current fashions from petite to plus sizes for teens to young adults.POSITION DESCRIPTIONPresent a high level of customer service by ensuring customers are assisted in an enthusiastic, timely, and knowledgeable manner. Promote all aspects of the business including but not limited to buying, selling, pricing, and merchandising. Work with the team and store management in daily operations of the store.RESPONSIBILITIESGreet customers immediately, determine their needs and handle all transactions in a professional and enthusiastic mannerExhibit appropriate selling and buying procedures and effectively communicate to all customers our Buy Policy as well as our inventory needsBecome familiar with products, brands, and prices and make recommendations of products, including their features and benefits, to suit customers’ needsBecome certified in the buying processPrice and tag all items based on pricing and buying guidelines. Restock store following merchandising plan. Maintain store displays and follow store housekeeping and maintenance standards and proceduresDevelop proficiency in operating computerized Point of Sale (POS) system for all sales transactions, buys, returns, etc.Achieve store sales goals by applying sound customer service and sales protocolQUALIFICATIONSPlato’s Closet Kelowna is looking for high-energy customer service-oriented associates to join our team. We offer a fun, fast-paced family-oriented environment with lots of variety in the role. The right candidate will be available to work flexible hours and meet the following criteria:Proven customer service skillsRetail and Merchandising experience an assetKey Holder experience an assetFlexible availability for day, evening and weekend shiftsAbility to work independently as well as in a team and take direction from supervisorsExcellent communication and interpersonal skillsAbility to work at a fast pace with accuracy (multi-tasking is essential)Basic math skills essentialSales and goal drivenPHYSICAL REQUIREMENTSAbility to stand and walk for long periods of time, up to 8 hours a day.Lift up to 40 lbs. without assistanceBending, rotating, and reaching customary to a retail environment; including receiving, pricing, and stocking/back stocking merchandiseExposure to typical retail environment conditions and noise levelsCOMPENSATIONWage to be discussed, great employee discount and we promote from withinWe thank all applicants for their interest however only those candidates selected for an interview will be contacted. If you meet the above requirements and are interested in joining our team please apply today or stop by the store with your resume.Plato’s Closet Kelowna1782 Baron Rd., Kelowna, BC V1X 7G9Job Types: Full-time, PermanentSalary: $17.68-$18.20 per hourBenefits:Store discountDay range:Monday to FridayWeekends as neededShift:4 hour shift8 hour shiftDay shiftEvening shiftExperience:Fashion retail: 3 years (required)Key Holder: 2 years (preferred)customer service: 3 years (required)Work Location: In person\",\n            \"location\": \"Baron Road, Kelowna, BC\"\n        },\n        {\n            \"id\": \"DD2340282A31676AB1AD01B2A68AC5B2\",\n            \"cityName\": \"2633 Viking Way, Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5edc135b117e2808\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Motostarz\",\n            \"rowSalary\": \"$19.50 an hour\",\n            \"date\": 1694305480221,\n            \"dateOfPosted\": 1665776888686,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1904602,\n                    \"lon\": -123.0733212\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Viking Way, Richmond, BC V6V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for motivated staff to assist customers with motorcycles parts and accessories inquiry. Also, this job is specifically geared towards someone that has a passion for motorcycles. Basic knowledge of motorcycles is a MUST.Some requirements:Assist customers in a friendly and professional manner.Maintain a clean and organized storefront.Receive and issue paymentsWebsiteResponding to emails and shipping orders. Training is provided on the job.No experience needed as long as you know a lot about motorcycles.We are considering Full-time applicants and will provide training for the right candidate.We are open 5 days a week, shifts are from 10-6 pmJob Type: Full-timeJob Types: Full-time, PermanentSalary: $19.50 per hourBenefits:Store discountSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsOvertimeEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)\",\n            \"location\": \"Viking Way, Richmond, BC\"\n        },\n        {\n            \"id\": \"FEE8C5C4A37C3DC191DABA96E001A6E4\",\n            \"cityName\": \"7013 Thunder Bay St, Powell River, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7d08e045cbc4eb08\",\n            \"jobName\": \"Cashier And Customer Service\",\n            \"companyName\": \"Pacific Point Market And Suites\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694305453300,\n            \"dateOfPosted\": 1689526828042,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8037035,\n                    \"lon\": -124.5149188\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Powell River\",\n                \"formattedAddress\": \"Thunder Bay St, Powell River, BC V8A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"qathet Regional District\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Thunder Bay St, Powell River, BC Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Pacific Point MarketWage negotiable – part or full time permanentPacific Point Market and Suites has openings for Part or Full Time Permanent Employees. These roles are available in all areas of the Market.Job Duties and Responsibilities could includeCustomer Service, cash handling, health & safety, receiving and stocking shelves, deli prep, produce, receiving freight etc.Cash register operationProvide superior customer service to all customersEnsure a clean and sanitary environmentTo perform other duties and tasks assigned or required as consistent with the nature and scope of the positionSkills and Qualifications:Must be available to work during day and closing shifts.Previous retail or customer service experience in a grocery setting an assetLotto and/or food safe certification an assetWork well in a fast paced environmentSuperb customer service skills with a desire to provide a great shopping experience for every customerWillingness and availability to work a variety of shifts, including: Mornings, Afternoons, Evenings & WeekendsAbility to work in a safe and responsible mannerDemonstrated high level of communication, interpersonal & conflict resolution skillsProven track record as a self-starter; dedicated and reliablePhysical ability to stand, lift, and handle up to 50 pounds on a regular basisAbility to follow established company policiesExcellent command of the English language both verbal and writtenIf you feel you are the this person and want to join a great Team of people, please drop Resume off at Pacific Point Market and Suites or by emailJob Types: Full-time, Part-timePart-time hours: 24 - 40 per weekSalary: $16.00-$20.00 per hourDay range:HolidaysWeekend availabilityShift:Evening shiftAbility to commute/relocate:Powell River, BC V8A 1E3: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)customer service: 1 year (preferred)Shift availability:Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Thunder Bay St, Powell River, BC\"\n        },\n        {\n            \"id\": \"C57802ADCB4C062474EB12D0988A3AF1\",\n            \"cityName\": \"1402 Douglas St, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=017101dbd4fb32a2\",\n            \"jobName\": \"Cannabis Customer Service Associate (Budtender)\",\n            \"companyName\": \"The Original Farm Ltd.\",\n            \"rowSalary\": \"$19.07–$19.57 an hour\",\n            \"date\": 1694305443049,\n            \"dateOfPosted\": 1693447763075,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4295924,\n                    \"lon\": -123.3645015\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Douglas St, Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Since 2015, FARM has been providing safe access to cannabis in a discreet and professional environment remaining client focused and service minded in a high volume retail setting. Budtenders at FARM interact with customers seeking information on the range of available cannabis products and are essential for the front of house (FOH) customer service team. Individuals in this position educate and train new hires ensuring that quality and efficiency standards are met for all customers.PRINCIPLE DUTIES/RESPONSIBILITIES:Ensuring quality assurance and excellent customer service;Maintaining knowledge of a wide range of products and accessories;Providing customer education on FARM’s range of products;Providing a smooth full-spectrum customer experience;Maintaining a pleasant and organized environment;Strict adherence to all policy and compliance, including The Original FARM’s internal policies, Provincial, and Federal; andOther duties as required.QUALIFICATIONS AND SKILLS:Strong customer service skillsWorking knowledge of POS systems, Word, and ExcelStrong communication skills, time management, and problem-solving skillsWorks well in high volume, high level of care, retail environmentAble to work as a member of a teamStrong cannabis knowledge and passion requiredBC Selling it Right CertificateTERMS OF EMPLOYMENT:Part-time ranging from 10 - 30 hours weeklyMust be willing to sign FARM’s terms of employment contractMust be able to work a variety of night/weekend shifts when requiredMust be willing to cover shifts in the event of sick days/ leaves of colleaguesReports to: Assistant Front of House Managers and Store ManagerDirect Reports: NoFARM adheres to BC Employment Standards law for hiring and terminationJob Type: Part-timePart-time hours: 10-30 per weekSalary: $19.07-$19.57 per hourBenefits:Dental careExtended health careLife insuranceOn-site parkingStore discountSchedule:8 hour shiftDay shiftEvening shiftSupplemental pay types:Overtime payTipsWork Location: In person\",\n            \"location\": \"Douglas St, Victoria, BC\"\n        },\n        {\n            \"id\": \"25C1A2895DEE9F66115F2F5348B0E8D8\",\n            \"cityName\": \"555 W 12th Av, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f64fabca286cdef0\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Vancouver Hot Yoga 101\",\n            \"rowSalary\": \"$15.65–$17.00 an hour\",\n            \"date\": 1694305426004,\n            \"dateOfPosted\": 1671486236843,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2674848,\n                    \"lon\": -123.1094236\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W 4th Ave, Vancouver, BC V5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Hot Yoga 101 | Inferno Hot Pilates Vancouver is seeking a part-time Front Desk Customer Experience and Sales Rep to join our team!We are looking for someone motivated, energetic and friendly to go above and beyond to enhance the customer experience. This is a customer service and sales oriented position. You must be confident in explaining and selling memberships to new and returning students. Previous sales experience is desirable, but we will train the right candidate.The Front Desk Customer Service Team Member is also responsible for ensuring a clean and presentable studio at all times. Cleaning duties are required. This is a part-time position, and will be for our studio inside City Square Mall at Cambie and West 12th.What we are looking for:Enjoys yoga and fitnessFun, friendly and personableSales oriented (sales experience a bonus)Ability to multi-task and prioritize workStrong problem solving abilities (understanding customer needs)Works well in a team environmentExcellent communication skillsAttention to detailIf you are a customer service and sales driven individual, with a passion for yoga, we invite you to apply with your resume via email. Please enter the following in your subject line: \\\" Front Desk Application\\\"Only qualified candidates will be contacted. Please do not call the studio. Applications will only be considered via online process.Job Type: Part-timePart-time hours: 8-20 per weekSalary: $15.65-$17.00 per hourSchedule:HolidaysMonday to FridayWeekend availabilityWork Location: In person\",\n            \"location\": \"W th Ave, Vancouver, BC\"\n        },\n        {\n            \"id\": \"2EA03E917ABF476385E8B55635E57D39\",\n            \"cityName\": \"Lower Sackville, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b0ae1078712f1d99\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Money Direct\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694305322437,\n            \"dateOfPosted\": 1691455532933,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.7763767,\n                    \"lon\": -63.6775544\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lower Sackville\",\n                \"formattedAddress\": \"Lower Sackville, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lower Sackville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Would you like to be part of a fun, friendly, management team? Money Direct is a Canadian owned and operated company with 9 Canadian branches, so we are a very close knit accessible team!Job Description What do you do?In the Customer Service Representative role you will do it all, sales, customer service, local area marketing, collections, security of your store, and the list goes on. Your primary function in the CSR role is to provide excellent customer service through the provision of Money Direct Financial Services.Duties/Responsibilities· Provide and ensure quality Customer Service is consistently delivered .· Complete all product and service transactions in the Point of Sale system.· Enter customer information completely and accurately into the Point of Sale system.· Issue Loans quickly and efficiently ensuring risk assessment strategies are utilized· Cross-selling additional products and services to all customers.· Respond to customer complaints and provide resolution.· Ensure store appearance is maintained in adherence to company standards.· Adhere to and ensure proper operational policy/procedures are followed.· Adhere to and ensure proper Security and cash management policy/procedures are followed.· Maintain all audit/compliance policy/procedures· Carry out chargeback/collection activity and complete all collection related tasks assigned.· Ensure financial goals/targets are met for the store.· Maintain proper accounting procedures and ensure all reporting is completed in a timely fashion.· Successfully, open and close the store and complete all paperwork accurately.· Maintain cash and inventory accuracy/controls and effectively control cash variances.· Drive revenue through the implementation of company-wide marketing plans and execution of promotions as well as through other local area marketing efforts.· All other job related duties as directed by Management.Qualifications/Skills:· High School Diploma· 1-2 years customer service and cash handling· Experience in the financial services industry highly desirable.· Friendly, outgoing, confident / problem solver, flexible, self-motivated, team player.· Customer Service Orientation· Accountability· OrganizationWe invest in our employees, and offer extensive training, and development programs to set you up for future success. If we sound like a fit and you’re ready to start an exciting career with an organization that encourages employee growth, apply today! We look for bright, energetic, motivated individuals who are interested in learning and developing their careerJob Types: Full-time, PermanentJob Type: Full-timeSalary: From $15.50 per hourBenefits:Dental careExtended health careFlexible scheduleLife insuranceOn-site parkingPaid time offSchedule:Day shiftEvening shiftWeekend availabilitySupplemental pay types:Bonus payCOVID-19 considerations:Consistent sanitizing of all high touch surfaces.Education:DCS / DEC (required)Experience:Customer service: 2 years (required)Work Location: In person\",\n            \"location\": \"Lower Sackville, NS\"\n        },\n        {\n            \"id\": \"470BAF0AD80D6C04AC30441BC811A543\",\n            \"cityName\": \"Kuujjuaq, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=517a722e0b3924e4\",\n            \"jobName\": \"Tamaani – Customer Service Representative\",\n            \"companyName\": \"Kativik Regional Government\",\n            \"rowSalary\": \"$38,651 a year\",\n            \"date\": 1694305302609,\n            \"dateOfPosted\": 1664881404540,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 58.102996,\n                    \"lon\": -68.41883899999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kuujjuaq\",\n                \"formattedAddress\": \"Kuujjuaq, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Nord-du-Québec\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kuujjuaq\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 38651.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    38651.0\n                ],\n                \"range\": {\n                    \"gte\": 38651.0,\n                    \"gt\": null,\n                    \"lte\": 38651.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Kativik Regional Government (KRG), a supra municipal body with jurisdiction over the  territory located north of the 55th parallel, is now looking for a self-motivated and dynamic individual interested in joining the KRG to work in the capacity of:TAMAANI – CUSTOMER SERVICE REPRESENTATIVE  (TEMPORARY, FULL-TIME POSITION) The Customer Services Representative is the front line support for Tamaani Internet customers.  He/she has to ensure that Tamaani Internet’s clients receive support to connect to Internet. Under  the supervision of the Internet Services Coordinator, the Customer Services Representative has  responsibility for the following duties:   Assist new customers to activate their Internet service;   Provide basic technical support to existing customers when they have problems related to the Internet;   Assist local Tamaani agents in each village in the troubleshooting and support of remote customers;   Provide support to customers over the phone and sometime go on client’s premises to provide support;   Manage customer’s email accounts (creation, deletion, modifications and passwords management);   Maintain hardware/software inventories of Tamaani’s equipment;   Assist with the maintenance of Tamaani’s Network under the supervision of the Senior Network administrator;   Creating or maintaining support documentation up to date;   Provide assistance to the Senior Accounting Clerk with basic accounting and clerical tasks;   Carry out any work related tasks as requested by the Internet Services Coordinator.QUALIFICATIONS   Pertinent computer training or equivalent;   Possess troubleshooting abilities with computers;   Experience providing services to customers;   Definite interest in computer related activities;   Written and oral working knowledge of at least two (2) of the following languages: Inuktitut, English and French;   Excellent communication skills;   Good organization skills;   Good moral character.Place of employment: KuujjuaqSalary: Min. $38 651 yearly to a Max. $62 638 yearly (E5) Other Benefits: Cost-of-living differential: minimum $8 500 annually; Food allowance: minimum $3 453 annually;  Annual leave trips: maximum of 3 per person annually;  RRSP: 6% employer, 4% employee; Group Insurance;  Vacation: 20 days/year; Statutory Holidays: 19 days including 10 during Christmas  holidays.Please send your résumé to: Human Resources Department Kativik Regional Government P.O. Box 9 Kuujjuaq QC J0M 1C0 Fax: 819-964-2975 E-mail : humanresources@krg.ca* An employee is entitled to receive at least the Northern benefits allocated to an employee without dependants. An employee with dependants is entitled to benefits for her/his spouse and eligible dependants. The KRG is an equal opportunity employer. In accordance with this and with the James Bay and Northern Québec Agreement, conditions may vary to promote the employment of Inuit candidates. Only candidates selected for an interview will be contacted.\",\n            \"location\": \"Kuujjuaq, QC\"\n        },\n        {\n            \"id\": \"48A1B50C8D3BB4F44D166CDD1BC9D7BC\",\n            \"cityName\": \"#550 Rue De Boucherville, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a10048b610c825ff\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Canada-Europe Ltée / Canada-Europe Ltd.\",\n            \"rowSalary\": \"$17–$22 an hour\",\n            \"date\": 1694305254235,\n            \"dateOfPosted\": 1689719095005,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"International trading company (wholesale distributor) is looking for a B2B Customer Service Representative who is passionate about providing excellent inbound customer service to our clients and who will maintain and increase customer satisfaction. Training offered. You will liaise with a Sales Representative and work closely with a Manager, our office and warehouse teams.Main Responsibilities:Respond to existing and prospective inquiries to house accounts, customers and Sales RepresentativeProvide superior B2B customer service (incoming calls, emails, and new quotes)Provide knowledgeable answers to questions about products, pricing, availability and understand each customer's needsUpdate existing customer database, to ensure all communications are logged and identifiedCoordinate communication strategy for Sales Representative and marketingAbout you:Excellent organizational and time-management skillsExcellent communicator and listenerProven ability to effectively manage multiple projects and prioritiesExcellent email communication and note takingSelf-motivated and collaborativeQualifications:Previous experience (2-5 years) with B2B Customer service, inbound sales rolesPrevious experience in Retail hardware and/ or Industrial distribution channelsMust be bilingual and be proficient in French and EnglishGood knowledge of MS (Word, Excel, PowerPoint)Experience in project management and Sales CRMTeam player with excellent interpersonal skillsSchedule:9 am to 5 pm75% desk position (no remote working), 25% on-site with VPWorking at Condor ...Friendly and dynamic teamCasual dress codeLaid back cultureGrowth opportunitiesCompetitive salaryOn-site parkingLocation:Company located at the corner of Notre-dame street East and highway 25 service road. Accessible by public transportation.Metro L'Assomption and bus #33or Metro Langelier and bus #22Starting date: as soon as possibleJob Types: Permanent, Full-timeSalary: $17.00-$22.00 per hourBenefits:Paid time offFlexible Language Requirement:English not requiredSchedule:Monday to FridaySupplemental pay types:Bonus payCOVID-19 considerations:Wearing a mask and social distancing.Application question(s):Do you live in Montreal ?Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"5F0CDE9FDAA3E95F49C015E44FF54A17\",\n            \"cityName\": \"Saint-Augustin-de-Desmaures, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8592a0cae97132e0\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Louis Garneau Sports Inc.\",\n            \"rowSalary\": \"$22.29–$34.02 an hour\",\n            \"date\": 1694305244287,\n            \"dateOfPosted\": 1686955502342,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.747041,\n                    \"lon\": -71.459344\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saint-Augustin-de-Desmaures\",\n                \"formattedAddress\": \"Saint-Augustin-de-Desmaures, QC G3A 2E3, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Québec\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saint-Augustin-de-Desmaures\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: BilingualHours: 37.5 hours per weekEducation: College, CEGEP or other non-university certificate or diploma from a program of 1 year to 2 yearsExperience: 7 months to less than 1 yearWork setting Private sector Bicycle store Tasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for refunds and credits Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Perform general office duties Receive and log complaints Answer written and oral inquiries Computer and technology knowledge Internet MS Excel MS Outlook MS Word Work conditions and physical capabilities Attention to detail Fast-paced environment Tight deadlines Personal suitability Punctuality Client focus Excellent oral communication Excellent written communication Organized Reliability Team player Initiative Judgement Screening questions Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? What is the highest level of study you have completed? Workplace information Remote work available Health benefits Dental plan Disability benefits Health care plan Paramedical services coverage Vision care benefits Long term benefits Deferred Profit Sharing Plan (DPSP) Life insurance Registered Retirement Savings Plan (RRSP) Other benefits Free parking available On-site recreation and activities Paid time off (volunteering or personal days) Parking available\",\n            \"location\": \"Saint-Augustin-de-Desmaures, QC\"\n        },\n        {\n            \"id\": \"6F695D2F5F138B49D98870A3889FB1E3\",\n            \"cityName\": \"210 McLeod Avenue, Spruce Grove, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4bcd89f114d632b9\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Stony Plain Dry Cleaners/Grove Fashion Cleaners\",\n            \"rowSalary\": \"$15–$18 an hour\",\n            \"date\": 1694305094515,\n            \"dateOfPosted\": 1686791782967,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.542311,\n                    \"lon\": -113.9063023\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Spruce Grove\",\n                \"formattedAddress\": \"McLeod Ave, Spruce Grove, AB T7X, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Spruce Grove\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mature person needed for part time customer service work in a dry cleaning plant.-Must be outgoing and good with customer interaction.-Must be organized and able to work alone.-Computer knowledge is an asset.Job Type: Part-timePart-time hours: 16 per weekSalary: $15.00-$18.00 per hourDay range:Monday to FridayWeekend availabilityShift:4 hour shift8 hour shiftAfternoon shiftDay shiftWork Location: In person\",\n            \"location\": \"McLeod Avenue, Spruce Grove, AB\"\n        },\n        {\n            \"id\": \"7BDAFEDC5722BC85323D4DA1B9400866\",\n            \"cityName\": \"3555 Johnston Road, Port Alberni, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f3f75a57aa88e2a0\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"A&W\",\n            \"rowSalary\": \"$15.65–$16.40 an hour\",\n            \"date\": 1694305070395,\n            \"dateOfPosted\": 1642462961646,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2631393,\n                    \"lon\": -124.7980987\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Port Alberni\",\n                \"formattedAddress\": \"Johnston Rd, Port Alberni, BC V9Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Alberni-Clayoquot\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Port Alberni\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"You are an enthusiastic individual who works hard to deliver exceptional service to every guest, every time. As a Kitchen Crew Member/Front Crew Member, you are proud to serve great tasting food, made with care. You are a team player that arrives to work energized and motivated and you thrive in a fun, fast paced work environment.What we can offer you:A flexible working schedule;• Employee discounts; • Great training and transferable skills; • Opportunities for advancement • Competitive wage depending upon experience. Apply for this job if you: • Have a passion for guest service and creating exceptional guest experiences; • Enjoy working in a fast-paced environment • Have excellent communication skills; • Enjoy learning new things; • Have a ready smile and a warm personality; You can be part of the changing face of fast foodWork RemotelyNoJob Types: Full-time, Part-time, PermanentPart-time hours: 20-40 per weekSalary: $15.65-$16.40 per hourBenefits:Discounted or free foodOn-site parkingSchedule:8 hour shiftDay shiftHolidaysMonday to FridayNight shiftWeekend availabilityExperience:A&W: 1 year (preferred)customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)\",\n            \"location\": \"Johnston Rd, Port Alberni, BC\"\n        },\n        {\n            \"id\": \"BCAF1975D6E0EA45D3E6F5BAE145D052\",\n            \"cityName\": \"1729 Powell St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=378f84a9022144cb\",\n            \"jobName\": \"Inside Sales / Customer Service\",\n            \"companyName\": \"Signamara Vancouver\",\n            \"rowSalary\": \"$17–$22 an hour\",\n            \"date\": 1694305037904,\n            \"dateOfPosted\": 1689719274760,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827482,\n                    \"lon\": -123.0843227\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Powell St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you a highly motivated and results-driven individual with a passion for sales and a flair for creativity? If so, this is the perfect opportunity for you to unleash your potential and become an integral part of our thriving team at Sign A Rama Vancouver!About Us:At Sign A Rama Vancouver, we take immense pride in being a pioneer in the signage industry for over 17 years. Our commitment to using state-of-the-art computer technology to craft customized and eye-catching designs has earned us a reputation as a top-notch, full-service sign company.Why Join Us:A Culture of Excellence: Joining our team means being part of a culture that celebrates excellence and innovation. You'll be surrounded by a talented group of professionals who are passionate about what they do and committed to achieving outstanding results.Endless Growth Opportunities: As a Sales Representative, you'll have the chance to truly shine and grow in your career. We believe in providing ample opportunities for skill development and career advancement, so you can constantly elevate your performance and reach new heights and positions.Unleash Your Creativity: At Sign A Rama Vancouver, we believe that creativity is the key to crafting remarkable signage solutions. As a sales rep, you'll collaborate with our skilled design team to bring unique and captivating visions to life for our clients, leaving a lasting impression.What We're Looking For:We are seeking a sales rep who is not just another employee but a dynamic go-getter who can drive our business forward. The ideal candidate will:Be a Sales Superstar: You will be the driving force behind our business expansion, generating, prospecting, qualifying, and closing leads. Your passion for sales and your ability to build strong relationships will be key to your success.Exude Charisma: Your outgoing personality will shine through as you interact with clients, leaving them with a positive and memorable experience.Embody Professionalism: As the face of our company, you will represent us with professionalism and integrity, creating trust and credibility with our valued customers.*Qualifications:Some Previous Sales Experience requiredHave Great Attention to Detail with an ability to multi-taskHave a Positive AttitudeBe able to build and maintain lasting relationships with customersPossess professional and organized follow-up skillsHave good organization skills to grow and manage a territoryBe a strong problem solver with good objection handling skillsHave an incredible work ethic willing to do what it takes to succeedHave great people skills and enjoy assisting clientsMust have a great verbal and written communications skillsJoin Our Team Today!If you are ready to embark on an exciting journey of growth and success, we welcome you to join our passionate and dynamic team at Sign A Rama Vancouver. Together, let's make an impact and redefine the world of customized signage and designs. Apply now and let your sales prowess and creativity shine!Job Type: Full-timeSalary: $17.00-$22.00 per hourBenefits:Dental careExtended health careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Commission payAbility to commute/relocate:Vancouver, BC V5L 1H6: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Retail sales: 1 year (preferred)sales: 1 year (preferred)Licence/Certification:Driving Licence (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Powell St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"8DA2B3CA675ED984DE3AFBD4C3D54CE9\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5612f6c741a88652\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Bottleworks Liquor Store\",\n            \"rowSalary\": \"From $17.25 an hour\",\n            \"date\": 1694305023858,\n            \"dateOfPosted\": 1693447877576,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Bottleworks Customer Service RepresentativeAboutWith several locations across the lower mainland, the Kooner Hospitality Group has been an innovator and pioneer in the industry for over 10 years. We offer a fun and energetic work atmosphere, competitive wages, staff discounts, staff incentives, product knowledge training, and an opportunity for advancement.You’ll find us at the King George hub just steps away from the King George Skytrain Station.Our liquor store boasts an incredible selection of boutique wines, craft beers and specialty spirits, including products that you won’t find anywhere else. We are looking for energetic, outgoing and positive people to join our team.TypeStart Date: TBD Hours: Full-time, Part-timeSalary/Hourly: $17.25/hr Average Gratuities: $1-2/hourWho You AreYou are an outgoing, energetic and positive person.You take pride in providing exceptional customer service.You enjoy being part of a team, can work independently and have a strong work ethic.You thrive working in a fast-paced environment, have a sense of urgency, and can multitask.You enjoy beer, wine and spirits and want to learn more about them.You want flexible hours and a positive working environment.Position ResponsibilitiesEnsure exceptional customer service is provided.Assist with the everyday tasks including stocking, building displays and assisting customers.Perform general cleaning and maintenance including dusting, sweeping floors and putting away orders.Representing the team in a professional manner.What We OfferA great working environment.Room to advance within our growing company.A team member discount at all of our locations.To be eligible, applicants must meet the following qualification requirements:Be at least 19 years of age.A valid Serving it Right Certificate.Are able to lift 50lbs.Excellent customer service and interpersonal skills.Must be flexible and be able to work evenings and weekends.Knowledge of beer, wine, and spirits is an asset.If you are interested in the position, apply now, and tell us a bit about yourself!Job Types: Full-time, Part-timeSalary: From $17.25 per hourBenefits:Store discountFlexible Language Requirement:French not requiredSchedule:Day shiftEvening shiftHolidaysMonday to FridayWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Surrey, BC V3T 0P9: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"968EA6BEF34E4AA2C30FB916431E5ED8\",\n            \"cityName\": \"80 Westcreek Blvd, Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0b5cfa9778618c63\",\n            \"jobName\": \"Cash Management (Call Centre Agent)\",\n            \"companyName\": \"Aeolus Freight Solutions Inc.\",\n            \"rowSalary\": \"$16–$21 an hour\",\n            \"date\": 1694304747740,\n            \"dateOfPosted\": 1665518130484,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6796058,\n                    \"lon\": -79.7034733\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Westcreek Blvd, Brampton, ON L6T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are searching for a remarkable INBOUND CUSTOMER SERVICE REPRESENTATIVE - CONTACT CENTER to join our passionate teamGrowing your career as a Full Time INBOUND CUSTOMER SERVICE REPRESENTATIVE - CONTACT CENTER is a fantastic opportunity to develop productive skills.REQUIREMENTS- 2-3 years of experience in customer service inbound.Education • Secondary (high) school graduation certificateExperience Work SettingPrivate sector TasksAccess and process informationAddress customers' complaints or concernsAnswer inquiries and provide information to customersMaintain records and statisticsReceive and log complaints Computer and Technology KnowledgeSalesforceDatabase softwareInternetMS OutlookMS Windows Security and SafetyCriminal record check Work Conditions and Physical CapabilitiesAttention to detailFast-paced environmentHand-eye co-ordinationRepetitive tasksTight deadlinesWork under pressure Personal SuitabilityPunctualityClient focusEffective interpersonal skillsExcellent oral communicationExcellent written communicationFlexibility • Organized • Reliability • Team player ExperienceJob Type: Full-timeSalary: $16.00-$21.00 per hourSchedule:10 hour shift8 hour shiftSupplemental pay types:Overtime pay\",\n            \"location\": \"Westcreek Blvd, Brampton, ON\"\n        },\n        {\n            \"id\": \"0F2C8B01DC92336BBE375F53F01CAE2E\",\n            \"cityName\": \"80 Westcreek Blvd, Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=765a2e580b7466a6\",\n            \"jobName\": \"Call Centre Agent (A/R, A/P)\",\n            \"companyName\": \"Aeolus Freight Solutions Inc.\",\n            \"rowSalary\": \"$16–$21 an hour\",\n            \"date\": 1694304002482,\n            \"dateOfPosted\": 1668146998410,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6796058,\n                    \"lon\": -79.7034733\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Westcreek Blvd, Brampton, ON L6T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are searching for a remarkable INBOUND CUSTOMER SERVICE REPRESENTATIVE - CONTACT CENTER to join our passionate teamGrowing your career as a Full Time INBOUND CUSTOMER SERVICE REPRESENTATIVE - CONTACT CENTER is a fantastic opportunity to develop productive skills.REQUIREMENTS- 2-3 years of experience in customer service inbound.Education • Secondary (high) school graduation certificateExperience Work SettingPrivate sector TasksAccess and process informationAddress customers' complaints or concernsAnswer inquiries and provide information to customersMaintain records and statisticsReceive and log complaints Computer and Technology KnowledgeSalesforceDatabase softwareInternetMS OutlookMS Windows Security and SafetyCriminal record check Work Conditions and Physical CapabilitiesAttention to detailFast-paced environmentHand-eye co-ordinationRepetitive tasksTight deadlinesWork under pressure Personal SuitabilityPunctualityClient focusEffective interpersonal skillsExcellent oral communicationExcellent written communicationFlexibility • Organized • Reliability • Team player ExperienceJob Type: Full-timeSalary: $16.00-$21.00 per hourSchedule:10 hour shift8 hour shiftSupplemental pay types:Overtime payAbility to commute/relocate:Brampton, ON: reliably commute or plan to relocate before starting work (preferred)\",\n            \"location\": \"Westcreek Blvd, Brampton, ON\"\n        },\n        {\n            \"id\": \"E2CD725C7766C589F3AB2A1D887D1407\",\n            \"cityName\": \"10406 184 Street NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a69699ac20ceb5fb\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Kms Tools & Equipment Edmonton West\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694303673164,\n            \"dateOfPosted\": 1693446810274,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.6065656,\n                    \"lon\": -113.3801256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"24a St NW, Edmonton, AB T5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"KMS Tools Edmonton West is looking for a Cashier to add to our team. Applicants must be dependable, friendly, detail oriented and focused on customer service. Ability to handle high volume of orders and customers. We are closed Sundays and Holidays. Working Saturdays is required. Competitive benefits offered.Job Types: Full-time, PermanentSalary: From $15.00 per hourBenefits:Dental careOn-site parkingPaid time offStore discountDay range:Every WeekendMonday to FridayShift:8 hour shiftDay shiftCOVID-19 considerations:Personal protective equipment provided or required Plastic shield at work stations Social distancing guidelines in place Sanitizing, disinfecting, or cleaning procedures in placeApplication question(s):Are you currently working? If so - when would you be able to start?Do you have any schedule restrictions?What is your expected starting pay based on your experience?Experience:customer service: 1 year (preferred)Cashiering: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Street NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"3C1157758A602525A111097B56800DD9\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=99ae976b98fbb3bd\",\n            \"jobName\": \"Customer Service/Inside Sales Representative (Maternity Leave)\",\n            \"companyName\": \"Heidelberg Materials Us, Inc.\",\n            \"rowSalary\": \"$58,104–$81,346 a year\",\n            \"date\": 1694303625215,\n            \"dateOfPosted\": 1690387767529,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 58104.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    58104.0\n                ],\n                \"range\": {\n                    \"gte\": 58104.0,\n                    \"gt\": null,\n                    \"lte\": 58104.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"AutoReqId: 18300BRPay Class: Salaried Non-ExemptDepartment: SalesJob Posting:Heidelberg Materials provides the materials to build our future. Our future is sustainable. Our future is digital. And it goes beyond cement, aggregates, and ready-mixed concrete. Heidelberg Materials North America, previously known as Lehigh Hanson, operates more than 450 locations with approximately 9,000 employees in the U.S. and CanadaHeidelberg Materials is seeking a Temporary Inside Sales Representative (Maternity Leave Coverage) to join the local team in Edmonton, AB. Reporting to the Customer Service Manager the Inside Sales Representative will be responsible for receiving and processing of cement and fly ash sales orders. This opportunity is perfect for the sales professional who is looking to grow their career with an industry leader. While focusing on growing existing and prospective customers to increase market share and improve profit margins, you will begin your career with a proven leader in the cement and construction materials industry.What you'll get to do:Leads the order process assuring accurate, courteous, and timely scheduling and data input of customer phone, online, and email orders.Work with carriers to schedule and dispatch delivery to customers on an on-time basis.Ensure all incidents or issues regarding quality, customer complaints or delivery are entered into database.Prioritize customer needs to provide superior customer service and support.Develop and maintain customer relationships.Work closely with sales department in identifying customer needs and wants.Essential Experience & Skills:Minimum high school diploma. Preference will be given to candidates who possess a post-secondary educationPrevious administration or inside sales experience an assetExcellent customer relations and communication skillsProblem solver with an aptitude for focusing on customer requirementsWorking knowledge of Microsoft Office products.Ability to work independently as required and under time and scheduling pressuresKnowledge of the trucking industryStrong organizational skillShift work, rotating 12-hour shiftsPreferred Experience and SkillsCDM Order Management experience is an assetSAP experience is an asset\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"892FE30DFA5B73422751468698600A31\",\n            \"cityName\": \"Sherwood Park, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4d8b2a7502127b59\",\n            \"jobName\": \"Customer Service Representative - Insurance\",\n            \"companyName\": \"Chowdhury Insurance Ltd.\",\n            \"rowSalary\": \"$23.18 an hour\",\n            \"date\": 1694303529804,\n            \"dateOfPosted\": 1692449695959,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5411916,\n                    \"lon\": -113.2957355\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sherwood Park\",\n                \"formattedAddress\": \"Sherwood Park, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sherwood Park\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsor equivalent experience Work setting Insurance company Tasks Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Explain the type and cost of services offered Order office supplies and maintain inventory Perform general office duties Answer written and oral inquiries Health benefits Dental plan Health care plan Vision care benefitsWork Term: PermanentWork Language: EnglishHours: 37.5 to 40 hours per week\",\n            \"location\": \"Sherwood Park, AB\"\n        },\n        {\n            \"id\": \"B29B3CC3182C721632C9C67408D63DC4\",\n            \"cityName\": \"1053 Carling Avenue, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0c41bd776a2743bc\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Second Cup Cafe\",\n            \"rowSalary\": \"$16.28 an hour\",\n            \"date\": 1694303396220,\n            \"dateOfPosted\": 1693447896405,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.35917600000001,\n                    \"lon\": -75.79599209999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Carling Ave, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Duties of a Barista Customer servicePreparing specialty drinksFood preparationAll General cleaningJob Type: Part-timePart-time hours: 16-20 per weekSalary: $16.28 per hourBenefits:Dental careDiscounted or free foodPaid time offTuition reimbursementFlexible Language Requirement:French not requiredSchedule:Monday to FridayShift availability:Day Shift (required)Work Location: In personExpected start date: 2023-09-05\",\n            \"location\": \"Carling Avenue, Ottawa, ON\"\n        },\n        {\n            \"id\": \"7ECDEBAF131FCBCD8C013E51790E6F56\",\n            \"cityName\": \"6506 Norwest Bay Rd, Sechelt, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1a4b4187b2dab182\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Mason Place Market\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694303394753,\n            \"dateOfPosted\": 1691497625599,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a small family run business and would love to welcome more people to our team!We are looking for people who are super friendly and energetic, extremely reliable and responsible and able to stand on their feet for long periods. We can teach the rest!The days and hours of work are flexible! We are mostly looking to cover the hours from 3pm until 9:30 pm, 7 days a week.Please drop off your resume at the store; 6506 Norwest Bay RdJob Type: Part-timePart-time hours: 20-36 per weekSalary: $17.00-$19.00 per hourBenefits:On-site parkingDay range:HolidaysMonday to FridayWeekends as neededShift:4 hour shift8 hour shiftAfternoon shiftEvening shiftWork setting:Convenience storeWork Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"BCB7B6359CC576A402CE37B19335A5A0\",\n            \"cityName\": \"Rocky View, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=042b87658fcc7386\",\n            \"jobName\": \"Customer Service Representative - 203\",\n            \"companyName\": \"Copart\",\n            \"rowSalary\": \"$22.38 an hour\",\n            \"date\": 1694303110450,\n            \"dateOfPosted\": 1686166990692,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.2086495,\n                    \"lon\": -113.9815345\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Rocky View County, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service Representative (CSR) provides exceptional customer service to internal and external customers of Copart. Through a thorough understanding of Copart practices, the CSR offers solutions that aid and facilitate a unique customer service experience. The CSR provides general administrative support while multi-tasking in hectic and stressful situations. In addition, the CSR will be the face of the Company through face-to-face and vocal interactions with all levels of customers which range from the general public to high-level managers of organizations.Receive and process payments.Update lot (vehicle) notes in the system.Answer multi-line telephone in a professional manner.Face-to-face customer interaction.Use company resources to gather information and offer solutions to meet customer needs.Contact clients to obtain vehicle pick-up information.File documents according to criteria.Process mail incoming and outgoing per criteria.Read and interpret various reports and documents.Proper completion of sale documents.Other duties as assigned.Required Skills & Experience:One year of office support experience in a customer service role preferredHigh School diplomaExcellent customer service skills and attitudeExcellent written and verbal skillsProficient with office equipmentAttention to detailProblem-solvingComputer proficiency - MS SuiteTyping speed 45WPMProfessional appearanceAbility to multi-task in a fast-paced environmentBilingual skills a plusOccasional overtime as neededFor 40 years, Copart has led its industry in innovation and customer service, enabling it to grow profitably in markets across the globe. Our success is the direct result of the skills and efforts of our talented and diverse employees. Our mindset? It's never just a \\\"job\\\" when your coworkers are like family - it's like coming home.Location: Rocky View,AB,Canada, AlbertaLocation: Rocky View,AB,Canada, AlbertaJob Type: Full-timePay: $22.38 per hour\",\n            \"location\": \"Rocky View, AB\"\n        },\n        {\n            \"id\": \"40D158562EB45C4F09E31ED870DEFFB4\",\n            \"cityName\": \"Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=10bda59da0472794\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Service Experts\",\n            \"rowSalary\": \"$15–$19 an hour\",\n            \"date\": 1694302954500,\n            \"dateOfPosted\": 1598544655638,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Service Experts Heating & Air Conditioning, we believe in doing what’s right for our customers and our employees. We offer the stability of working for a national industry leader but we also treat our people like family. Our team is made up of the very best, and we provide ongoing training, support, and opportunities for unlimited professional growth.What we can offer:Competitive wages and vacation timeBenefits after 3 months of employment which includes medical, dental, short-term and long-term disability, vision care, and life insuranceCompany RRSP match available after 6 months of employmentEmployee Assistance ProgramEmployee Referral BonusExtensive training and long-term career opportunitiesPersonal Protection Equipment provided, including safety bootsHoliday and vacation payRelocation expenses for the right candidateThe Customer Service Specialist handles customer questions, complaints, and billing inquiries with the highest degree of courtesy and professionalism to resolve customer issues with one-call resolution.QualificationsMust be able to work from 3-11 PM on Monday and FridaysHigh school diploma or equivalent (post-secondary education preferred)Previous customer service experienceExcellent interpersonal skillsExceptional verbal communicationStrong computer software skillsWillingness to work with and assist co-workers as needed, in addition to working occasional overtime and weekend hours as requiredResponsibilitiesAnswering incoming phone calls from customers and other office duties as assignedMaintaining good customer relations and ensuring that all calls meet Service Experts’ standardsHandling and resolving a variety of customer concerns, complaints, and questions by phone, email, and in-person (questions may include billing inquires, technician ETA, scheduling issues, and general company product and service questions)Ability to accept empowerment and to be prepared to make decisions regarding customer satisfaction with confidenceResolving problems by clarifying issues, researching, exploring answers/alternative solutions, implementing solutions, and escalating unresolved issuesMaintaining customer records by updating account informationWorking with Dispatch to improve accuracy in scheduling and speed of responseCommunicating with customers on the status of service callsAssisting with dispatching as neededPerforming outbound calls to schedule preventative maintenances and tune-upsEnsuring that customers are contacted in a timely manner to schedule preventative maintenanceWorking with General Manager/Operations Manager to ensure that capacity demands are metContinually maintain working knowledge of all company products, services, and promotionsAll employees must be able to pass our background check criteria.Join the team of Experts and realize your full potential.Service Experts is an Equal Opportunity Employer.Service Experts is committed to an inclusive, barrier-free recruitment process. We will accommodate the needs of applicants under the Ontario Human Rights Code and the Accessibility for Ontarians with Disabilities Act (AODA)Job Types: Full-time, PermanentSalary: $15.00-$19.00 per hourBenefits:Company eventsDental careDisability insuranceEmployee assistance programLife insuranceOn-site parkingPaid time offRRSP matchTuition reimbursementVision careSchedule:8 hour shiftMonday to FridayExperience:call center: 1 year (Required)customer service: 1 year (Required)Education:Secondary School (Required)Job Duties:Answer incoming customer inquiriesCollaborate with key stakeholders and teams to stay updated on new products, services, and policiesRecord and modify customer information within the databaseEngage with clients in a friendly and professional manner while actively listening to their concernsOffer support and solutions to customers in accordance with the company's customer service policiesOther duties as requestedWork remotely:No\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"87F9CF55384F598F2011225E0A0DCEB5\",\n            \"cityName\": \"2032 Boul Curé Labelle, Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dc565ca2e01b8043\",\n            \"jobName\": \"Call Center Representative\",\n            \"companyName\": \"Auto Primo, Laval\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694302811274,\n            \"dateOfPosted\": 1693448587961,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6110486,\n                    \"lon\": -73.7922317\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Bd du Curé-Labelle, Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laval\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Description complète du posteAuto Primo est un concessionnaire automobile connaissant une grande croissance avec plus de 200 véhicules en inventaire.Vous devez etre dynamique, professionnel et proactif.Fonction du poste;Répondre aux appels de nouveau clients et répondre à leur besoinsPrendre des rendez-vous pour le département des ventesÉcoutez les clients et les accompagner durant toute la transactionAssister les vendeurs dans leurs suivis et tachesQualification:Expérience dans le travail à commission;Experience dans l'automobile (Non obligatoire)Connaissance basique (Suite google) ;Comfortable de travailler dans un centre d'appel actifÊtre capable de creer des relations rapides aux téléphonesBonne orginisation afin de faire les suivis nécessaireDemandes:Blilingue (Francais et anglais);Qualité interpersonnel;Facilitié à travailler en équipe;Avoir de l'aisance et être extraverti ;)Porfessionnel, organisé et courtoisConditions:Poste temps plein et permanent;Possibilité de travail en fin de semaine;Rabais pour employs;Ambiance d'équipe super jeune;Équipe accès sur les résultats;____________________Full job descriptionAuto Primo is a fast growing car dealership with over 200 vehicles in inventory.You must be dynamic, professional and proactive.Job function;Answer calls from new customers and respond to their needsMake appointments for the sales departmentListen to customers and accompany them throughout the transactionAssist sales people in their follow-ups and tasksQualifications:Experience in commission work;Experience in the automotive industry (Not required)Basic knowledge (google suite);Comfortable working in an active call centerAbility to build rapport quickly on the phoneGood orginization in order to do the necessary follow-upsDemands:Blilingual (French and English);Interpersonal skills;Ability to work in a team;Comfortable and outgoing ;)Professional, organized and courteousConditions:Full-time, permanent position;Possibility of working on weekends;Discounts for employees;Young team atmosphere;Team access on results;Job Type: Full-timeSalary: $18.00-$25.00 per hourBenefits:Dental careDisability insuranceExtended health careLife insuranceVision careSchedule:8 hour shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payCommission payOvertime payTipsEducation:Secondary School (preferred)Experience:Sales: 1 year (preferred)Customer service: 3 years (preferred)Work Location: In person\",\n            \"location\": \"Boulevard Curé-Labelle, Laval, QC\"\n        },\n        {\n            \"id\": \"085705EC73907140D2D0EA07F3F3E8AB\",\n            \"cityName\": \"London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=695937cf4223d28f\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Talbot Marketing\",\n            \"rowSalary\": \"$19–$21 an hour\",\n            \"date\": 1694302719698,\n            \"dateOfPosted\": 1692242128052,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9849233,\n                    \"lon\": -81.2452768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Talbot Marketing is a leader in the Canadian promotional products industry. Talbot has stood the test of time because we continue to invest, innovate and bring value to our customers and to the promotional product marketplace. Talbot is one of the largest providers of promotional products and corporate apparel in Canada. We specialize in solutions to leverage the power of a company’s brand.We aspire to become a company where our employees and clients are proud to call themselves a part of Talbot Marketing. Our corporate values include: to improve the lives of all those around us, operate with integrity, embrace diversity, make it fun and earn a fair profit. Talbot is a family oriented organization that treats everyone associated with Talbot with empathy, trust, fairness, and respect.We are looking for a Customer Service Representative to join our growing team. Candidates with customer service experience and the interest to develop and grow your skills thru learning and mentorship within the customer service team would be considered an asset as we grow our team.We offer a competitive compensation and benefit package – including 2 retirement programs with company contributions, company paid health & dental benefits and an employee assistance program. Employee sick days and vacation time above ESA standards.Job DescriptionThe purpose of this position is to maintain superior support of the sales representatives by ensuring that orders, quotations and sourcing are processed and produced in a timely and efficient manner. The incumbent must be able to knowledgably answer questions from sales representatives, end users, suppliers and fellow employees on a timely basis.Duties· Answer all communication from sales agents, suppliers and end users providing information and assistance as and when necessary.· To act as liaison between supplier and sales associates regarding items such as proof approvals, extra charges, ordering samples (and returning as needed), generate spec samples and ensuring deliveries are on track (by utilizing open order report). Email artwork/embroidery discs when required, resolve discrepancies between end user, sales associate and supplier.· Review supplier acknowledgements for correctness and noting supplier confirmation on system in a timely fashion.· Source products for sales associates and prepare formal quotations when required. Assist sales associates with creative selling ideas.· Attend various outside/inside trade shows and supplier product knowledge sessions.· Prioritize and organize effectively to maximize use of time to meet workload volume.· Other duties as requiredSkills· Excellent knowledge of Windows, Excel, Word, PowerPoint, etc· Strong in customer service and communication· Organizing / Prioritizing· Team Player (offer assistance, actively listen, respect others, be a problem solver, celebrate team successes)· Positive attitude, motivated, compassionate· Results orientatedEducation and Experience· Completion of a Community College program (concession may be considered based upon an individual’s job experience).· One year of industry related experience or a minimum of three years of customer service experience, is necessary to carry out the Customer Service Associate role.To learn more about Talbot Marketing visit our website at www.talbot-promo.com.Job Types: Full-time, PermanentSalary: $19.00-$21.00 per hourBenefits:Casual dressCompany eventsCompany pensionDental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offRRSP matchVision careWellness programFlexible Language Requirement:French not requiredSchedule:Monday to FridayOvertimeSupplemental pay types:Bonus payOvertime payWork Location: In person\",\n            \"location\": \"London, ON\"\n        },\n        {\n            \"id\": \"19FE975DEC40DDBEFE0205B80CA55155\",\n            \"cityName\": \"1867 Ashburnham Dr, Peterborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8a9f5436ac1befdf\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Peterborough Utilities Group\",\n            \"rowSalary\": \"$25.66–$36.58 an hour\",\n            \"date\": 1694302667021,\n            \"dateOfPosted\": 1693447899436,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2945085,\n                    \"lon\": -78.2994973\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Peterborough\",\n                \"formattedAddress\": \"Ashburnham Dr, Peterborough, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Peterborough County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Peterborough\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 26.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    26.0\n                ],\n                \"range\": {\n                    \"gte\": 26.0,\n                    \"gt\": null,\n                    \"lte\": 26.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative - Full Time Union Reports to: Supervisor, Customer Service Department: Customer Service Location: 1867 Ashburnham Dr., Peterborough Rate: $25.66 - $36.58 per hour, 37.5 hours per week JOB PURPOSE: The Customer Service Representative utilizes skills by dealing effectively and in a friendly, professional manner with internal and external customers by telephone and in person regarding all aspects of utility services to include billing, credit, collections, and service order processing. Receive and reply to verbal and written customer inquiries and be involved in a broad range of customer service office responsibilities. Process, monitor and adjusts business transactions as well as conducts daily, weekly, and monthly processes required to accurately bill utility customer accounts. MAIN ACCOUNTABILITIES:Process customer requests for new applicants, changes in service, account closures, book appointments and document pertinent customer dealings.Inbound/Outbound - Communicate directly with the customer to obtain all necessary and relevant information and reach a mutual agreement for payment of their debt. Ensure a balance between quality customer service and effective collections techniques.Make needed adjustments to customer records and transactions as necessary to ensure accurate billing, collecting and receipt of service.In compliance with the Policies and Practices, identify appropriate conditions for discontinuing service and initiating action.Deal with external contractors and internal operations staff regarding delivery of notices, collection of arrears and process all attendant forms and service orders.Receive and process customer, finance, and zoo payments. Balance and create daily deposit for banking. Investigate misapplied or unidentified customer payments.Take customers calls for water heater investigations, new installs and removals. Obtain signed contract for water heater rental, create/resolve service orders, enter inventory into the billing system, scrap inventory, approve payment of invoices and scan contracts.Investigate consumption issues; leaks, zero consumption, stopped meters and resolve the issue.Process and investigate high bill inquiries, and correct billing system errors and warnings, no application for service, duplicate payments/duplicate banking information on multiple accounts, incorrect phone number, email bounce back, refunds with no forwarding address etc.Answer customer inquiries from info at and Customer Self ServiceShare knowledge on various procedures as requested with other representatives.Responsible for personal safety and the safety of others that is dependent upon their actions. Report hazards and unsafe acts or conditions encountered on the job to fellow workers and supervisors.Assist with projects, programs and miscellaneous assignments as required including cross department workflow. Consult with and share information with all departments for the purpose of monitoring and correcting transactionsDaily processing of manual and electronic reads that fail validation to ensure that reads are available for billing: Review and estimate/approve water reads based on historical dataCreate and resolve service ordersCorrect billed reads, add customer bill messages, and cancel/rebillQUALIFICATIONS Post secondary education in related discipline (Business Administration, Office Administration, Customer Service) A minimum of one (1) years of experience involved with customer service and collection in a call centre environment. TECHNCIAL SKILLS Demonstrated ability to work in fast paced, high pressure, high stress situations.Strong written and oral communications and customer service skills.Being understanding, helpful, cooperative, sensitive to needs and feelings of others while maintaining composure in difficult situations.Demonstrated ability to analyze multiple sources of information to determine best course of action.Demonstrated initiative, good judgment, integrity, and stability in executing duties.Demonstrated techniques in collections.Must be willing to work in an environment that requires heavy phone-based customer interaction.Previous computer experience within in a Microsoft office software environment. Experience working with a Customer Information System Demonstrated knowledge on regulations, guidelines, and programs.Demonstrated ability to process work in an accurate, efficient, and timely manner.Demonstrated excellent safety record and attitude and attendance record.Demonstrated ability to deal with personal information in a confidential, ethical, and professional manner.All applications must be submitted by end of day September 15th, 2023. Please indicate in your cover letter if you are interested in a full time position, contract position or both.\",\n            \"location\": \"Ashburnham Drive, Peterborough, ON\"\n        },\n        {\n            \"id\": \"F8FD0A64971F94DC812E20EEA1A94EE5\",\n            \"cityName\": \"114 Sydenham St, Flesherton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ff408608f685a78a\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Country Style & Mr. Sub\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694302554076,\n            \"dateOfPosted\": 1691497521642,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2648914,\n                    \"lon\": -80.5533015\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Flesherton\",\n                \"formattedAddress\": \"Sydenham St, Flesherton, ON N0C 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Flesherton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"$16.50/HR“ LOCAL CANDIDATES ONLY “Apply Now! Hiring Now! All training will be provided.ESSO Gas Station in Flesherton is hiring Customer Service Representatives to join its team - opening or closing shifts, weekdays or weekends. No experience necessary. Previous gas station or convenience store experience is always an asset. Full Training will be provided.Send resume online or welcome to stop by at the store.Job Types: Full-time, Part-time, PermanentSalary: From $16.50 per hourFlexible Language Requirement:French not requiredAbility to commute/relocate:Flesherton, ON N0C 1E0: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Sydenham St, Flesherton, ON\"\n        },\n        {\n            \"id\": \"B9C534C72D6A493AB8E5F33A1411EFBB\",\n            \"cityName\": \"1867 Ashburnham Dr, Peterborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=48b266a32cbe5f46\",\n            \"jobName\": \"Contract Customer Service Representative\",\n            \"companyName\": \"Peterborough Utilities Group\",\n            \"rowSalary\": \"$25.66–$36.58 an hour\",\n            \"date\": 1694302369088,\n            \"dateOfPosted\": 1693448328849,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2945085,\n                    \"lon\": -78.2994973\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Peterborough\",\n                \"formattedAddress\": \"Ashburnham Dr, Peterborough, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Peterborough County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Peterborough\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 26.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    26.0\n                ],\n                \"range\": {\n                    \"gte\": 26.0,\n                    \"gt\": null,\n                    \"lte\": 26.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative - 1 Year Contract Reports to: Supervisor, Customer Service Department: Customer Service Location: 1867 Ashburnham Dr., Peterborough Rate: $25.66 - $36.58 per hour, 37.5 hours per week JOB PURPOSE: The Customer Service Representative utilizes skills by dealing effectively and in a friendly, professional manner with internal and external customers by telephone and in person regarding all aspects of utility services to include billing, credit, collections, and service order processing. Receive and reply to verbal and written customer inquiries and be involved in a broad range of customer service office responsibilities. Process, monitor and adjusts business transactions as well as conducts daily, weekly, and monthly processes required to accurately bill utility customer accounts. MAIN ACCOUNTABILITIES:Process customer requests for new applicants, changes in service, account closures, book appointments and document pertinent customer dealings.Inbound/Outbound - Communicate directly with the customer to obtain all necessary and relevant information and reach a mutual agreement for payment of their debt. Ensure a balance between quality customer service and effective collections techniques.Make needed adjustments to customer records and transactions as necessary to ensure accurate billing, collecting and receipt of service.In compliance with the Policies and Practices, identify appropriate conditions for discontinuing service and initiating action.Deal with external contractors and internal operations staff regarding delivery of notices, collection of arrears and process all attendant forms and service orders.Receive and process customer, finance, and zoo payments. Balance and create daily deposit for banking. Investigate misapplied or unidentified customer payments.Take customers calls for water heater investigations, new installs and removals. Obtain signed contract for water heater rental, create/resolve service orders, enter inventory into the billing system, scrap inventory, approve payment of invoices and scan contracts.Investigate consumption issues; leaks, zero consumption, stopped meters and resolve the issue.Process and investigate high bill inquiries, and correct billing system errors and warnings, no application for service, duplicate payments/duplicate banking information on multiple accounts, incorrect phone number, email bounce back, refunds with no forwarding address etc.Answer customer inquiries from info at and Customer Self ServiceShare knowledge on various procedures as requested with other representatives.Responsible for personal safety and the safety of others that is dependent upon their actions. Report hazards and unsafe acts or conditions encountered on the job to fellow workers and supervisors.Assist with projects, programs and miscellaneous assignments as required including cross department workflow. Consult with and share information with all departments for the purpose of monitoring and correcting transactionsDaily processing of manual and electronic reads that fail validation to ensure that reads are available for billing: Review and estimate/approve water reads based on historical dataCreate and resolve service ordersCorrect billed reads, add customer bill messages, and cancel/rebillQUALIFICATIONS Post secondary education in related discipline (Business Administration, Office Administration, Customer Service) A minimum of one (1) years of experience involved with customer service and collection in a call centre environment. TECHNCIAL SKILLS Demonstrated ability to work in fast paced, high pressure, high stress situations.Strong written and oral communications and customer service skills.Being understanding, helpful, cooperative, sensitive to needs and feelings of others while maintaining composure in difficult situations.Demonstrated ability to analyze multiple sources of information to determine best course of action.Demonstrated initiative, good judgment, integrity, and stability in executing duties.Demonstrated techniques in collections.Must be willing to work in an environment that requires heavy phone-based customer interaction.Previous computer experience within in a Microsoft office software environment. Experience working with a Customer Information System Demonstrated knowledge on regulations, guidelines, and programs.Demonstrated ability to process work in an accurate, efficient, and timely manner.Demonstrated excellent safety record and attitude and attendance record.Demonstrated ability to deal with personal information in a confidential, ethical, and professional manner.All applications must be submitted by end of day September 15th, 2023. Please indicate in your cover letter if you are interested in a full time position, contract position or both.\",\n            \"location\": \"Ashburnham Drive, Peterborough, ON\"\n        },\n        {\n            \"id\": \"9581E0AF944D927A91ECBD1BF422D10B\",\n            \"cityName\": \"5516 Spring Garden Rd, Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bc402247bd8a8828\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Highmart Store\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694302290652,\n            \"dateOfPosted\": 1692242113886,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Store Associates must have cash knowledge, some computer knowledge, good customer service, be punctual, and self motivated. Reliability is extremely important. We are a fast-paced store, so the ability to multi task is a must. Daily tasks include but are not limited to : Cash duties, selling to customers, receiving stock and merchandising the store, cleaning and maintaining cleanliness of store. Must be able to stand, and lift up to 50lbs.Job Types: , Part-time, PermanentSalary: From $15.00 per hourJob Types: Permanent, Full-timeSalary: From $15.00 per hourDay range:Monday to FridayWeekends as neededShift:8 hour shiftEvening shiftMorning shiftWork setting:Convenience storeSpecialty storeWork Location: In personExpected start date: 2023-08-17\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"3191FD46A790D1AB6F3D941ACB22E34A\",\n            \"cityName\": \"850 Powell St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d9be26328b306359\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Starbucks Coffee Canada- Powell Street Drive-Thru\",\n            \"rowSalary\": \"$16.30–$18.85 an hour\",\n            \"date\": 1694302086584,\n            \"dateOfPosted\": 1650263504099,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827482,\n                    \"lon\": -123.0843227\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Powell St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Starbucks is looking for partners to join our team at our Powell Street Drive-Thru location (located in Strathcona neighbourhood- accessible by transit buses 4, 7, 14, 20). We are looking for both baristas for flexible, full time or part time shifts.Our barista position is our entry level role and requires no experience.We offer a competitive total pay package, excellent perks and benefits and have many opportunities for career development and growth. Partners that work at least 20 hours a week are eligible for our full benefits package, including medical and dental. We have opportunities for shifts during all day parts, starting as early as 4:30am and as late as 9pm.If you are interested in exploring opportunities with Starbucks, please submit your application! More details on all of our roles can be found at www.starbucks.ca/careers and apply online and select store 4502- Powell Street location or drop by with your resume at 850 Powell Street or call 604 215-0711Job Types: Full-time, Part-timeSalary: $16.30-$18.85 per hourCOVID-19 considerations:All partners have the option to wear a mask; CoVid safety check done before all shifts; partners work behind plexi barriers to ensure physical distancing; high touch areas sanitized on a timely basisJob Types: Full-time, Part-time, PermanentSalary: $16.30-$18.85 per hourJob Types: Full-time, Part-time, PermanentPart-time hours: 20-30 per weekSalary: $16.30-$18.85 per hourBenefits:Casual dressDental careDisability insuranceDiscounted or free foodEmployee assistance programEmployee stock purchase planExtended health careFlexible scheduleLife insuranceOn-site parkingPaid time offRRSP matchStock optionsStore discountTuition reimbursementVision careWellness programSchedule:Day shiftHolidaysMonday to FridayNight shiftOvertimeWeekend availabilitySupplemental pay types:Overtime payTipsAbility to commute/relocate:Vancouver, BC V6A 1H8: reliably commute or plan to relocate before starting work (required)\",\n            \"location\": \"Powell St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"C456E995639BD08E623817AEA2956FB6\",\n            \"cityName\": \"1410 Elmwood Dr, Moncton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6fe611341e00b305\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Needs/Fast Fuel Moncton\",\n            \"rowSalary\": \"From $13.75 an hour\",\n            \"date\": 1694301780619,\n            \"dateOfPosted\": 1667532942368,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.13788400000001,\n                    \"lon\": -64.7721581\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Elmwood Dr, Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"WE ARE LOOKING FOR “PART-TIME CASHIER”The cashier is responsible for providing exceptional customer service in a high energy, demanding environment. Cashiers are required to process credit/debit card and cash transactions using an electronic register. Other responsibilities include daily store maintenance, unpacking and stocking merchandise, store cleaning (inside and outside), counting products and cash floats, as well as other store specific duties.JOB DUTIES & RESPONSIBILITIESPerform visual checks of store (inside and outside)Provide prompt, personalized and courteous customer serviceCash Handling, use of POS System and Inventory Monitoring/ BalancingAbide by all policies, procedures, operational guidelines, and government regulationsPrepare ice, drink (coffee, slushies), and food.Execute daily store cleaning maintenance (e.g. mopping, sweeping, dusting, emptying garbage, etc)Any task required by management in order to run the business efficientlyEXPECTATIONSStrong verbal and written communication skillsExceptional customer service skillsAccountable and DependableAttention to detailAble to work effectively in groups, as well as independentlyExcellent organization skillsStrong work ethic and positive team attitudeAbility to multitaskAble to work a flexible schedule including days, evenings, and weekends (scheduling will be discussed at interview).Job Types: Permanent, Part-timeSalary: From $13.75 per hourShift:8 hour shiftAbility to commute/relocate:Moncton, NB: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)\",\n            \"location\": \"Elmwood Dr, Moncton, NB\"\n        },\n        {\n            \"id\": \"7F0971D60053BD82823E5399BECB2718\",\n            \"cityName\": \"3381 Steeles Avenue, Suite 200, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=33040768d405745a\",\n            \"jobName\": \"Customer Service Representative I\",\n            \"companyName\": \"Global Payments\",\n            \"rowSalary\": \"$17.05 an hour\",\n            \"date\": 1694301755334,\n            \"dateOfPosted\": 1665752766809,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.577719,\n                    \"lon\": -79.831102\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halton Hills\",\n                \"formattedAddress\": \"Steeles Ave, Halton Hills, ON L0P, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halton Hills\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Every day, Global Payments makes it possible for millions of people to move money between buyers and sellers using our payments solutions for credit, debit, prepaid and merchant services. Our worldwide team helps over 3 million companies, more than 1,300 financial institutions and over 600 million cardholders grow with confidence and achieve amazing results. We are driven by our passion for success and we are proud to deliver best-in-class payment technology and software solutions. Join our dynamic team and make your mark on the payments technology landscape of tomorrow. Who We Are Every day, the people of TSYS (A Global Payments’ Company) improve lives and businesses around the globe through our payment processing capabilities and Customer Service. We make it possible for millions of people to move money between buyers and sellers using our payments solutions including credit, prepaid, and merchant services. We are People-Centered Payments®, and our team has the unique opportunity to help create a world in which payments make people’s lives easier and better. This is both a tremendous honour and important responsibility for those who accept the challenge. If you are looking to make a valuable difference for people everywhere – and for yourself – TSYS may be the right place for you!Why Us? What We Offer Full-time, permanent employment with a predictable and stable schedule $17.05/hour Work from Home position – we supply the equipment! Opportunities for over-time Shift premiums available Competitive benefits that include extended health care, dental, and vision care Retirement Savings Plan (employer match up to 5%) Employee Stock Purchase Plan Paid Training (during daytime hours only) Employee Assistance Program available for your use as early as your first day on the job What Role Will You Play? As a Customer Service Representative, you would: Respond to customer inquiries via telephone, email, SMS and Chat to provide problem resolution in accordance with the organization's service standards. Receive and/or place telephone calls which are predominantly routine, but may require deviation from standard screens, scripts, and procedures. Answer customer telephone inquiries, orders, service needs and complaints, respond where applicable or direct to technical/service areas. Maintain detailed and current knowledge of the company's/assigned client's products and services. Analyze customer service needs for communication to service and technical departments, when applicable Who You Are: People and Customer Oriented : You are not only great at talking on the phone, but you are friendly, personable, and a natural-born problem solver A Team Player : You’re ready to join a tight-knit team that works closely with one another to meet and exceed the expectations of our customers Organized: You can calmly and positively handle conversations with real people, all while multitasking efficiently Education: You have a minimum of a High School Diploma (or equivalent) or higher Ready for a New Challenge: No relevant experience is required for the role, we offer comprehensive training to build on your current skills to help you excel in this role. Do you think you’ve found your calling? Apply to this posting today! TSYS and Global Payments Inc. is an equal opportunity employer. We provide equal employment opportunities to all employees and applicants for employment without regard to race, color, religion, sex (including pregnancy), national origin, ancestry, age, marital status, sexual orientation, gender identity or expression, disability, veteran status, genetic information or any other basis protected by law. Those applicants requiring reasonable accommodation to the application and/or interview process should notify a representative of the Human Resources Department. Global Payments Inc. is an equal opportunity employer. Global Payments provides equal employment opportunities to all employees and applicants for employment without regard to race, color, religion, sex (including pregnancy), national origin, ancestry, age, marital status, sexual orientation, gender identity or expression, disability, veteran status, genetic information or any other basis protected by law. Those applicants requiring reasonable accommodation to the application and/or interview process should notify a representative of the Human Resources Department.\",\n            \"location\": \"Steeles Ave, Hornby, ON\"\n        },\n        {\n            \"id\": \"0DDCAF84D35AF8487838AA221ECE5A51\",\n            \"cityName\": \"530 Portland St, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c1dd064786867d2b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Co-Operators Insurance & Financial Services\",\n            \"rowSalary\": \"$35,000–$40,000 a year\",\n            \"date\": 1694301331758,\n            \"dateOfPosted\": 1693438646160,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6705489,\n                    \"lon\": -63.5360417\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Portland St, Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Portland St, Dartmouth, NS\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position: Customer Service RepresentativeJob Description:The Customer Service Representative is ensuring our daily administrative activities are handled in a timely and accurate manner. They manage agency administrative processes and ensure the agency stays on track for daily and annual goals.The Customer Service Representative is the team’s first point-of-contact for our clients. They should take pride in delivering and servicing client inquiries and have the ability and initiative to take on new and challenging assignments. They should also be able to work cooperatively, with our team, to accomplish objectives.This is a full-time position: Monday to Friday, 9:00-5:00pm. The office is in Dartmouth, Nova Scotia and our Customer Service Representative is required to work in the office every day.Roles and responsibilities:· First responder to client walk-ins, phone calls and Group email and assisting them accordingly.· Manage the agency’s leads.· Take payments, balance daily.· Responsible for filing paperwork for all lines of business.· Call clients to remind them of renewals.· Manage Policy Centre activities and assign them accordingly.· Manage all Billing Centre activities daily.· Manage all incoming, outgoing mail, and returned mail.· Book Client Reviews for the agency.· Any other duties necessary to reach the agency objectives.Working Conditions:· Regular office environment.Qualifications and Skills:· Skilled in communication (verbal and written)· Strong interpersonal skills.· Strong organizational and time management skills.· Candidate must be comfortable in a technology-dependent environment including proficiency with Microsoft Office and other corporate software (training in-house)· The successful candidate shall be subject to a Criminal Record and Consumer History background check as a condition of employment.Experience required:· Minimum 2 years working in Administration in an office environment.Job Types: Full-time, PermanentSalary: $35,000.00-$40,000.00 per yearBenefits:Dental careDisability insuranceEmployee assistance programOn-site parkingPaid time offVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsSupplemental pay types:Bonus payAbility to commute/relocate:Dartmouth, NS B2Y 4V6: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Office Administration: 2 years (required)Customer service: 2 years (required)Shift availability:Day Shift (preferred)Work Location: In personApplication deadline: 2023-09-08Expected start date: 2023-10-02\",\n            \"location\": \"Portland St, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"F11E20882C55B2DF10B92E414B85DFE5\",\n            \"cityName\": \"Bow SS Agency. in Windsor, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=399f9b1602b7e150\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Bow Ss Agency.\",\n            \"rowSalary\": \"$45,000–$50,000 a year\",\n            \"date\": 1694300363116,\n            \"dateOfPosted\": 1687800200458,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.3149367,\n                    \"lon\": -83.03636329999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Windsor\",\n                \"formattedAddress\": \"Windsor, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Essex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Windsor\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Benefits of working with us:Weekly Pay and Uncapped CommissionHybrid office with remote flexibility$60k plus first year average incomeBonusesResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingWhat are we looking for from you?Strong communication and interpersonal skillsA positive attitude and results-oriented work ethicAn ability to self-monitor progress on project goals and employ corrective actions as necessaryDemonstrated problem-solving skillsResults-oriented work ethicAble to work both independently and within a team environmentJob Requirements:Help customers using zoom, facetime, over the phone or in personServe as a customer service professional inputting order information, pricing, product information and catalog requestsEnsure delivery of excellent customer service through timely, accurate and professional communicationWork alongside executive staff members to streamline effortsLearn our ERP systemIf you feel that you possess the qualities that we are looking for and would like to see if you are a fit for our company, apply now! I will set you up with an interview at the soonest available date. We will email you back promptly, so please check your emails for a response.Job Types: Full-time, PermanentSalary: $45,000.00-$50,000.00 per yearBenefits:Dental careEmployee assistance programExtended health careOn-site parkingPaid time offRRSP matchSchedule:Monday to FridaySupplemental pay types:Bonus payCommission payOvertime payTipsEducation:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Windsor, ON\"\n        },\n        {\n            \"id\": \"0A31FA82AD95B15AF2DA01FFB4BA7360\",\n            \"cityName\": \"Greater Sudbury, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4814f519f43230ad\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Pinchman's Cafe & Bakery\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694300325825,\n            \"dateOfPosted\": 1694300325624,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.4917317,\n                    \"lon\": -80.99302899999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Greater Sudbury\",\n                \"formattedAddress\": \"Greater Sudbury, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Greater Sudbury Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Greater Sudbury\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"APPLICANTS MUST BE AVAILABLE TO WORK MORNING/LUNCH/DAY SHIFTS DURING THE WEEK. BUSY BAKERY IN THE SOUTH END OF SUDBURY, PINCHMANS HAS A SOLID REPUTATION FOR FRENCH AND INTERNATIONAL BAKED GOODS. COME AND DISCOVER THE BENEFITS OF WORKING FOR A LOCALLY, INDEPENDENTLY OWNED BUSINESS.Job Types: Permanent, Full-timeSalary: From $16.00 per hourExpected hours: 20 – 35 per weekBenefits:Discounted or free foodOn-site parkingStore discountSchedule:Day shiftSupplemental pay types:TipsCOVID-19 considerations:YESEducation:Secondary School (required)Shift availability:Day Shift (required)Work Location: In personExpected start date: 2023-09-19\",\n            \"location\": \"Greater Sudbury, ON\"\n        },\n        {\n            \"id\": \"0ED548825D2C04AE7439C9FDCDFCE52E\",\n            \"cityName\": \"1888 West Broadway, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3ca140ba3644d2fc\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Le Coq Frit\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694299680524,\n            \"dateOfPosted\": 1670761444528,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.26376459999999,\n                    \"lon\": -123.14866\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Broadway, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"-serving-bussing-phone orders for take-out-POS system, 3rd party delivery tablet, payment processing-take-out prep for packaging orders-cleaning duties-various other related dutiesMust be able to work during weekday(Monday - Friday between 11-9pm)Job Types: Permanent, Part-timeSalary: From $16.00 per hourSchedule:HolidaysMonday to FridayMorning shiftSupplemental pay types:TipsCOVID-19 considerations:Required to wear a mask. Sanitize surfaces after use.Work Location: In person\",\n            \"location\": \"Broadway WR\"\n        },\n        {\n            \"id\": \"840D5EA76DF2E534234A571BED1E6F7B\",\n            \"cityName\": \"3901 11 Ave NE, Salmon Arm, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0ca5916b0d132cf0\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Enterprise Holdings\",\n            \"rowSalary\": \"$18.40 an hour\",\n            \"date\": 1694299483712,\n            \"dateOfPosted\": 1692374137337,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.7529838,\n                    \"lon\": -119.2594938\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Salmon Arm\",\n                \"formattedAddress\": \"73 Ave NE, Salmon Arm, BC V1E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Columbia-Shuswap\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Salmon Arm\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" The Customer Assistance Representative Sr (CAR Sr) will provide a high level of customer service by assisting both internal and external customers, primarily face-to-face, supporting their branch and rental needs. The CAR Sr will gain knowledge through local training and hands-on experience to provide administrative support, service customers, and act as a rental back-up in a large home city branch or airport location.  Opening available at the following branch location: 3901 11 Ave Ne, Salmon Arm, BC. V1E 2S2 This is a full time position that pays $18.40 / hour We offer:  Paid time off Employee discount Retirement savings plan Extended Health Benefits (Medical, Prescription Drug, Dental and Vision) Life Insurance Training and development Schedule Monday-Friday: 8am-5pm Responsibilities: Take incoming calls- reservations, rate quotes, general questions and answers, provide information and resolution for customers, other branches, insurance companies, dealerships, repair shops and other vendors  Manage outgoing calls for callback management, A/Rs and miscellaneous calls as assigned  Provide a high level of customer service by assisting customers and assessing their rental needs in person and over the phone  Meet and greet customers in a friendly and timely manner  Provide directions and general assistance  Assist to assess condition of rental upon return  Process returns, check-ins and exit kiosk transactions  Effectively market the company while picking up customers up and/or dropping off customer in a safe and courteous manner and assisting customers as needed  Understand and communicate rental terms and conditions, vehicle features and other services  May sell optional protection products, upgrades, fuel options and other additional equipment  Responsible for notifying Management of any known vehicle problems and any required vehicle maintenance  Clean vehicle interior and exterior by hand or by operating washing equipment when needed  Perform various administrative and basic accounting functions such as: research and billing support tasks, accounts receivables, transfer and key logs, run miscellaneous reports, supply maintenance, process customer billing  Perform miscellaneous and backup duties job-related duties as assigned  Equal Opportunity Employer/Disability/Veterans Qualifications: Must be at least 18 years of age. High school diploma or above required; some college preferred Must have at least 1 year prior customer service, retail, or administrative support experience Must have a valid Class 5 drivers license with no more than 2 moving violations and/or at-fault accidents on driving record in the past 3 years No drug or alcohol related conviction on driving record in the past 5 years Must be authorized to work in Canada and not require work authorization sponsorship by our company for this position now or in the future.  Apart from religious observation, must be able to work the following schedule(s):  Monday-Friday 8am-5pm\",\n            \"location\": \"Ave NE, Salmon Arm, BC\"\n        },\n        {\n            \"id\": \"4805B38E5FBBE36EA956CBB3911E1376\",\n            \"cityName\": \"231 Lombard St, Smiths Falls, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=41fc43654c3d11af\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Peavey Industries (Peavey Mart)\",\n            \"rowSalary\": \"Up to $15.50 an hour\",\n            \"date\": 1694299332430,\n            \"dateOfPosted\": 1652194775677,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.8872851,\n                    \"lon\": -76.033272\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Smiths Falls\",\n                \"formattedAddress\": \"Lombard St, Smiths Falls, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Lanark County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Smiths Falls\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Corporate Office and Distribution CentreRegional Office and Distribution Centre 7740 40 Avenue, Red Deer, AB T4P 2H9 1000 Clarke Road, London, ON N5V 3A9Tel: 403.346.8991 Tel: 519.453.5270Customer Service Associate Reports to: Department Lead, Supervisor, Store Management TeamDepartment: RetailJob Overview: The Customer Service Associate is a customer service specialist. Customer Service Associates are responsible for advising customers and processing customer purchases/returns. When not attending to a customer, the Customer Service Associate stocks shelves, assists in setting up displays, prices product, and maintains the cleanliness of the store.Responsibilities Warmly approaching and greeting customers.Advising customers on products and suggesting solutions to their needs.Providing a high level of customer service.Encouraging further business by thanking customers and asking for them to come back.Help customers with concerns and put them in contact with a Supervisor as needed.Answering the telephone in a warm and friendly mannerLearn and maintain a product knowledge of store merchandiseHelping to set up displays as directed by store management teamProvide customer carry outs and load products for customers. Use Team Lift when needed.Weigh, measure, and cut merchandise to fill customer orders.Establishing/identifying prices for itemsKeying or scanning merchandise for customer purchaseTotal and receive payment for merchandiseIssue receipts, refunds, credits, or change due to customers per policyEnsuring proper return and refund policy is followed, including Management sign-offWrapping or bagging merchandise purchased by the customerCount money in cash drawers at the beginning of shifts to verify accuracyManager on duty verifies opening and closing cash countsStocking/Re-stocking merchandise as neededMaintaining cleanliness of the store and checkout areaMerchandising, pricing and tasking the point of purchase area when there are no customers in lineHelp with receiving on an as needed basisUse safe work procedures while setting a good example to fellow employeesCarry out work in a manner that will not create a hazard to themselves or othersProud to be 100% Canadian and Employee Owned Corporate Office and Distribution CentreRegional Office and Distribution Centre 7740 40 Avenue, Red Deer, AB T4P 2H9 1000 Clarke Road, London, ON N5V 3A9Tel: 403.346.8991 Tel: 519.453.5270Work with co-workers and members of the Safety Committee to help create a safe working environment by making safety suggestions and recommendationsReport any accidents, incidents, near misses, injuries, and/or occupational health concerns to a safety committee memberFollow Peavey Industries LP medical and first aid proceduresPositively communicate and demonstrate the company’s Core Values.Supervisory Responsibilities NoneKnowledge, Skills, and Abilities Required Maintaining a customer first, positive attitudeHigh attention to detailAbility to count, total, and work with numbersAbility to learn and operate till technologyStaying calm and attentive in a busy environmentAbility to approach customers, listen attentively, and use suggestive selling.Ability to multi-taskQualifications On the job training or previous experienceWorking Conditions Standing for extended periods, walking long distances to move/handle merchandise and provide customer serviceLifting up to 40lbs. and maintaining fitness level to perform all functions as set forth aboveOperating keyboard, scanning, and touch screen till technology in a repetitive mannerJob Type: Part-timePart-time hours: 20 per weekSalary: Up to $15.50 per hourSupplemental pay types:Bonus payEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)\",\n            \"location\": \"Lombard Street, Smiths Falls, ON\"\n        },\n        {\n            \"id\": \"F2DAE9E117814CB901FAAD05F02E2F15\",\n            \"cityName\": \"Canada\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6433a2e03f7b5eaa\",\n            \"jobName\": \"Bilingual Customer Service Specialist\",\n            \"companyName\": \"Bpa International Inc\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694299277768,\n            \"dateOfPosted\": 1692357148334,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.83385,\n                    \"lon\": -119.5236098\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Okanagan Lake, British Columbia, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Bilingual Customer Service SpecialistRemote Work from Home Position, Canada*Overview of Job Function*Conducting outbound call surveys to customers who recently received services from our client. You will receive training in conducting the surveys and responding to general questions. Your survey results will be compiled to provide our client with insights on the customers’ feedback in order to help them improve customer satisfaction.*Principal Duties and Essential Responsibilities*Attending training program and calibration sessionsConduct a survey with the customer and document detailed customer feedback, maintaining a high level of quality.Demonstrate identified winning behaviors.Successfully navigate the customer software applications and systems.Ensure all surveys are completed in a timely manner and in accordance with the project requirements.Ensure compliance with all up-to-date health and safety regulations and procedures maintaining a safe working environment.Comply with all BPA policies and procedures and maintain the highest standards of Client and information confidentiality.*Job Requirements*Bi-lingual Canadian French and EnglishA passion for customers and the ability to recognize excellent customer service.Excellent communication skillsDesire to develop skills in providing clear, objective, feedback to our clients.Focus and attention to detail to provide accurate assessments to our clients.Comfortable navigating and learning computer programs/systemsAbility to work to tight targets and deadlines.Fast, reliable, internet connectionAs a homeworker, a dedicated space where you can focus and provide accurate assessments is required.Comfortable troubleshooting basic internet and computer issues*Preferred Requirements*Call Center experienceOutbound Call Surveyor experience*About Us*At BPA Quality, we believe customer engagement is at the core of every successful global brand. Our mission is to help organizations discover opportunities to connect to their customers positively and efficiently. We hire innovators with a passion for customers and drive for quality. Our commitment is to attract and retain talented, diverse and engaged teams that create a collaborative environment that openly celebrates all cultures and affords personal and professional growth opportunities.*More Information*As an equal opportunity employer, BPA Quality prides itself on providing employees with a work environment in which all individuals are treated with respect and dignity. This means we are committed to providing equal opportunity to all qualified employees and applicants for employment without regard to one’s race, color, religion, national origin, age, sex (including pregnancy, sex stereotyping, gender identity, gender expression, or transgender status), disability, alienage or citizenship status, marital status, creed, genetic predisposition or carrier status, sexual orientation, Veteran status, political affiliation or any other classification or characteristic protected by applicable federal, state or local laws. This policy applies to all terms and conditions of employment including but not limited to hiring, placement, promotion, compensation, training, leave of absence or termination.*Job Info*Job Schedule: Full and Part TimeLocation: Remote Homeworker, CanadaStatus: Non- Exempt/ HourlyStarting Salary-18 per hour*Spécialiste du Service à la Clientèle Bilingue - Télétravail*Télétravail, Canada*Aperçu des descriptions de tâches*Mener des sondages téléphoniques auprès des consommateurs qui ont récemment reçu des services de notre client. Vous recevrez une formation dans le but d’effectuer des sondages et répondre aux questions générales. Les résultats du sondage seront compilés pour fournir un aperçus des commentaires des consommateurs afin d’aider notre client à améliorer la satisfaction de la clientèle.*Fonctions principales et responsabilités essentielles*Assister au programme de formation et aux séances d’échantillonnage.Mener des sondages auprès des consommateurs et documenter les commentaires détaillés, en maintenant un haut niveau de qualité.Démontrer un comportement positif.Naviguer avec succès dans le système de gestion du consommateur.S’assurer que tous les sondages soient réalisés en temps opportun et conformément aux exigences du projet.Assurer le respect de tous les réglementations et procédures de santé et sécurité afin de maintenir un environment de travail sécuritaire.Respecter les procédures de BPA. Maintenir les normes et les informations confidentiel du client.*Compétences Requises*Bilingue Français et Anglais CanadienÊtre passionné et avoir la capacité de reconnaître un excellent service à la clientèle.Excellente faculté à communiqué.Une désir de développer des compétences pour fournir une rétroaction claire et objective à nos clients.Attention et souci du détail pour fournir une évaluation précise à nos clients.Naviguer confortablement et apprendre les programmes/systèmes du logiciel.Capacité à travailler aves des objectifs et des délais serrés.Connection internet rapide et fiable.Pour le Télétravail dédié un espace où vous pouvez vous concentrer et fournir une évaluation précise est nécessaire.À l’aise pour résoudre les problèmes de base liés à Internet et à l’ordinateur*Exigences Requises*Expérience en centre d’appelsExpérience en sondages téléphoniqueÀ propos de nousChez BPA Quality, nous croyons que l’engagement du client est au coeur de toute compagnie mondiale prospère. Notre mission est d’aider les organizations à découvrir des opportunités de se connecter à leurs clients de manière positive et efficace. Nous embauchons des innovateurs passionnés pour les consommateurs et soucieux de la qualité. Notre engagement est d’attirer et de retenir des équipes talentueuses, diversifiées et engagées qui créent un environment collaboratif qui célèbre ouvertement toutes les cultures et offre des opportunités de croissance personnelle et professionnelle.*Plus d’informations*En tant qu’employeur équitable, BPA Quality est fière d’offrir à ses employés un environnement de travail dans lequel tous les individus sont traités aves respect et dignité. Cela signifie que nous nous engageons à offrir des chances égales à tous les employés qualifiés et candidats à l’emploi sans égard à la race, la couleur, la religion, nationalité, l’âge, le sexe (incluant grossesse, les stéréotype sexuels, l’identité de genre, l’expression de genre ou le statu transgenre) handicap, aliénation ou statut citoyen, état matrimonial, croyance, prédisposition génétique ou statut de porteur, orientation sexuelle, Vétéran, affiliation politique ou classification ou caractéristique protégée par les lois fédérales, les états ou locales. Cette politique s’applique à toutes les conditions d’emploi, y compris, mais sans limiter, l’embauche, le placement, la promotion, la rémunération, la formation, les congés ou la démission.*Information sur l’emploi*Horaire: Temps plein et temps partielLieu: Télétravail, CanadaStatus: Non exonéré/ l’heureSalaire débutant à 18$/hrsType d'emploi : Temps PleinRémunération : 18,00$ par heure\",\n            \"location\": \"Okanagan\"\n        },\n        {\n            \"id\": \"A8374FB95DEE31F8CB676CDC518BD54B\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=54eca50df33eef7d\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Thai Express\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694299247277,\n            \"dateOfPosted\": 1664104548424,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Richmond Hillcrest mallSzechuan(Chinese Fast food Restaurant)hiring a full/part timecashier or Counter helpwelcome student employment !9350 yonge st Richmond hill.(16th and Yonge Streets )Tel James Yao :4168285850职位类型：全职, 兼职, 临时工, 合同工兼职小时数： 每周 30-40薪资： 每小时$16.00预期开始日期： 25-09-2022\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"38D4C4C72DB1E14270D98D7048781E79\",\n            \"cityName\": \"Richmond Hill, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dc21de333931e14f\",\n            \"jobName\": \"Customer Service Supervisor (Except Financial Services)\",\n            \"companyName\": \"Media Technologies\",\n            \"rowSalary\": \"$28.25–$30.00 an hour\",\n            \"date\": 1694298944538,\n            \"dateOfPosted\": 1692353458812,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8828401,\n                    \"lon\": -79.4402808\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond Hill\",\n                \"formattedAddress\": \"Richmond Hill, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond Hill\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 29.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    29.0\n                ],\n                \"range\": {\n                    \"gte\": 29.0,\n                    \"gt\": null,\n                    \"lte\": 29.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College/CEGEPExperience: 1 year to less than 2 yearsTasks Conduct performance reviews Perform same duties as workers supervised Co-ordinate, assign and review work Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Examine and verify accuracy of work and authorize routine deposits and withdrawals Identify training needs and train workers in job duties and company policies Resolve work-related problems and prepare and submit progress and other reports Supervision Customer service clerk 1 to 2 people Work conditions and physical capabilities Attention to detail Fast-paced environment Large workload Tight deadlines Work under pressure Personal suitability Accurate Client focus Dependability Efficient interpersonal skills Excellent oral communication Excellent written communication Initiative Interpersonal awareness Judgement Organized Reliability Team playerWork Term: PermanentWork Language: EnglishHours: 30 hours per week\",\n            \"location\": \"Richmond Hill, ON\"\n        },\n        {\n            \"id\": \"CA227E9EA661F4F89744912AE807D2E9\",\n            \"cityName\": \"503 Centennial Road North, Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=733045b4fe5ec279\",\n            \"jobName\": \"Customer Service Operator\",\n            \"companyName\": \"Answer North America\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694298898419,\n            \"dateOfPosted\": 1692281088038,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7935509,\n                    \"lon\": -79.1533266\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Centennial Rd N, Toronto, ON M1C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Centennial Road North, Scarborough, ON Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Part-time work required in a call centre from the hours of 3pm-11pm on Thursdays, Fridays, Saturdays, and Sundays. Potential other shift available at the same time on Mondays-Wednesdays. You will be required to answer phone calls for a number of companies and dispatch calls/messages out as required for each client.Ideally, you will have strong customer service skills and are able to listen to callers to determine what they need and provide top notch service. Typing proficiency is a plus as you will relay messages through typing emails to clients, as well as some computer skills (Microsoft Office).Training will be conducted in our office in Scarborough. You must be able to work 3pm-11pm, preference will be given to anyone who is able to work occasional overnight shifts, approximately two per month as well as occasional back-up or coverage shifts. Our office is open 365 days of the year, so you may be required to work some holidays.For the quickest response, call us at 416-724-8333!Job Type: Part-timePart-time hours: 20-30 per weekSalary: $16.50 per hourSchedule:8 hour shiftEvening shiftNight shiftWork Location: In person\",\n            \"location\": \"Centennial Road North, Scarborough, ON\"\n        },\n        {\n            \"id\": \"AC0B705D19223E0609B72E6C3381675B\",\n            \"cityName\": \"7 Copeland Street, East York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c23757eafe001f37\",\n            \"jobName\": \"Customer Service Representative/Receptionist\",\n            \"companyName\": \"My Storage\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694298546930,\n            \"dateOfPosted\": 1693427319621,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7114575,\n                    \"lon\": -79.3535203\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Copeland St, Toronto, ON M4G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Copeland Street, East York, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Hourly pay rate plus commission and travel payJob Responsibilities include;- Managing/maintaining a facility(s) and completing site checks, sweeping halls, and cleaning storage units- Provide assistance to customers, taking payments, move in's, etc..- Completing daily and weekly reports pertaining to your site(s)- Cleaning office space daily after use, mopping, disinfecting, cleaning windows, dusting, etc.. as well as keeping facility up to standards- Have a vehicle and valid drivers license to complete bank runs- Be able to go to different GTA Locations and perform same tasks at each site- digital content creation, run kijij ads, promotions, post on social mediaEmployees need to be;- Punctual and reliable- have full availability including weekends- computer literate, customer service capabilities, phone etiquette- Great communication skills while handling customers and working in an office aloneAll candidates can forward a copy of their resume via email and will be contacted for a interview meeting through zoom.Job Types: Full-time, PermanentSalary: $18.00-$22.00 per hourSchedule:10 hour shift8 hour shiftEvery WeekendWeekends as neededSupplemental pay types:Commission payCOVID-19 considerations:All customers need to wear masks and maintain social distance, sanitize space after use.Application question(s):Do you have your own vehicle to travel to different facilities? MandatoryEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Copeland Street, East York, ON\"\n        },\n        {\n            \"id\": \"E93153BD3FE3FCF3CC4212747C37879D\",\n            \"cityName\": \"Vanderhoof, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dda9d0001d41a774\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Ymca Of Northern Bc\",\n            \"rowSalary\": \"$16.20 an hour\",\n            \"date\": 1694298346526,\n            \"dateOfPosted\": 1667018546571,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.01397979999999,\n                    \"lon\": -124.0129801\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vanderhoof\",\n                \"formattedAddress\": \"Vanderhoof, BC V0J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Bulkley-Nechako\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vanderhoof\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Health, Fitness, and Aquatics  Employment Opportunities P.O. Box 1808 • 2020 Massey Drive • Prince George • BC • V2L 4V7 | 250 562 9341 | nbc.ymca.ca Customer Service Representative Responsibilities and abilities  The Customer Service Representative, reporting to the Centre Manager,  is responsible for delivering excellent service through our SAM  Standards. The Customer Service Representative ensures that the front  counter is welcoming, friendly and operated in a clean, efficient and  effective manner. Fostering a culture of continuous improvement to delivering a 5  star customer service experience. Detail oriented, self-starter and organized. Excellent communication skills. Excellent time management and teamwork abilities. Occasional participation in Y community events. Location  Vanderhoof Aquatic CentreHours  Flexible Hours Part-time and Full-time positionsWhat you will gain  $16.20/hr starting wage YMCA Membership Health, Fitness, and Aquatics  Employment Opportunities P.O. Box 1808 • 2020 Massey Drive • Prince George • BC • V2L 4V7 | 250 562 9341 | nbc.ymca.ca Flexibility required to meet changing demands. Qualifications A combination of experience and training related to customer service. Experience working within a customer service orientated setting is preferred. Current First Aid and CPR certification or willingness to complete. Satisfactory criminal record check and clear vulnerable sector search. 3 satisfactory professional references Competencies  In addition to bringing a commitment to YMCA vision and values, and an orientation  to service, the candidate should possess the following competencies: 1. Leadership/Coaching – Ability to direct and develop performance of others to achieve desired  result. 2. Negotiation/Communication/Interpersonal Skills Able to speak, write, listen, and secure  information in a variety of settings. Ability to cooperate with others to achieve results. Ability to  create and build relationships inside and outside the organization. 3. Planning/Organizing – Ability to establish a clearly defined and effective course of action for self  and others to accomplish short and long term goals. 4. Problem Solving – Ability to identify an issue, gathers and processes relevant information,  determine possible solutions, selects appropriate responses and implements and evaluates  them. 5. Service Strategy – Ability to identify the needs and wants of members/participants as a priority  and respond in an effective and timely manner to enhance every person’s YMCA experience. 6. Community Awareness and Understanding – Demonstrates and promotes a personal  understanding of and appreciation for the vision, mission, and values of the organization.How to apply The YMCA thanks all those interested in this position.  Only those selected for an interview will be contacted. Please apply with cover letter, resume, and  application (found at nbc.ymca.ca) to: Sara Lungtoo  Centre Manager- Vanderhoof Aquatic Centre and  Integris Community Centre  sara.lungtoo@nbc.ymca.ca\",\n            \"location\": \"Vanderhoof, BC\"\n        },\n        {\n            \"id\": \"880AEB8542E54B5C7E875C2B240346CE\",\n            \"cityName\": \"25515 Township Road 500, Leduc, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a36000d76d9d1f0c\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Raodia Agency\",\n            \"rowSalary\": \"$45,000–$55,000 a year\",\n            \"date\": 1694298271686,\n            \"dateOfPosted\": 1687800194572,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.2704335,\n                    \"lon\": -113.5669902\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Leduc\",\n                \"formattedAddress\": \"5406 Discovery Way Unit 101a, Leduc, AB T9E 8L9, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Leduc County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Leduc\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Here’s why you should apply:Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingPrimary Functions:Serve as the information center for all customers, community contacts, and other company representativesMust be aware of daily activities and administrative responsibilitiesInteract with customers to provide information in response to inquiries, concerns and requests about products and servicesMust professionally handle all phone calls and route callersAnswers questions in a timely and courteous mannerProduce reports, forms, correspondence, orders and other materials as neededPerform other duties as assigned.QualificationsSolid organization and active listening skillsRazor sharp attention to detail with fast and accurate data entryCustomer service focused with creative problem solving skillsAbility to anticipate and advocate for your customers needsAbility to multi-task, prioritize and adjust to changing needsJust like your resume, a job description never tells the full story. Apply today and if you've got what it takes, we'd love to discuss everything in further detail. We know there's a lot more you'd like to know, why wait? Apply today!Job Types: Full-time, PermanentSalary: $45,000.00-$55,000.00 per yearBenefits:Dental careExtended health careOn-site parkingPaid time offFlexible Language Requirement:English not requiredFrench not requiredSchedule:8 hour shiftMonday to FridayWeekend availabilitySupplemental pay types:Bonus payOvertime payTipsEducation:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Township Road, Leduc, AB Canada\"\n        },\n        {\n            \"id\": \"2CDC68C7339DD889CE8D060370FE941F\",\n            \"cityName\": \"700 3rd Line, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=eebaaceaceea26b7\",\n            \"jobName\": \"Customer Service/Administrative Assistant\",\n            \"companyName\": \"Beauty First\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694298222489,\n            \"dateOfPosted\": 1693421901653,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4283542,\n                    \"lon\": -79.73036499999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Third Line, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"rd Line, Oakville, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OverviewBeauty First Spa is committed to giving our guests an inclusive, unique experience at every visit to one of our spas. The happiness of our guests is our priority, and it’s what keeps our guests coming back to us. Our employees build meaningful relationships with each one of our guests to ensure we are always prioritizing their needs.Major ResponsibilitiesDo admin duties like filing and updating POS system· Engage in incoming and outgoing calls to Pre-book future appointments.· Answering phones and working different shifts and weekend.· Learn about the products inside and out to be able to answer any questions from customers.· Resolve customer complaints/queries via phone, email, mail, or social media (Google, Facebook, Instagram, Whatsapp)· To handle multiple tasks and Utilize computer technology to manage day to day business.· Various administrative duties as required.· Flexibility in hours (Evenings/Weekends)Experience & Skills RequiredHigh-school diploma.Excellent verbal and written communication skills.Passion for finding solutions and providing the best possible customer experience.* Must have proficiency in Excel*· Ability to multitask and communicate with multiple customers at one time.Extremely strong conversational phone skills.Minimum 1-year customer service-related experience.Job Type: 1 Part-time applicant & 1 Full Time applicant requiredSalary: $17.00 per hourJob Types: Full-time, Part-timeSalary: From $17.00 per hourSchedule:8 hour shiftEvening shiftMonday to FridayMorning shiftWeekends as neededAbility to commute/relocate:Oakville, ON L6L 4B1: reliably commute or plan to relocate before starting work (preferred)Education:Secondary School (preferred)Experience:Front desk: 1 year (preferred)Administrative experience: 1 year (preferred)Work Location: In person\",\n            \"location\": \"rd Line, Oakville, ON\"\n        },\n        {\n            \"id\": \"8D23F590328DC000CA25E3EA811936BB\",\n            \"cityName\": \"Nova Scotia\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=77ac2046b6dcbf8f\",\n            \"jobName\": \"Remote Customer Service Agent (Work At Home)\",\n            \"companyName\": \"Mci Careers\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694298077557,\n            \"dateOfPosted\": 1667989583883,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.68198659999999,\n                    \"lon\": -63.744311\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax Regional Municipality\",\n                \"formattedAddress\": \"Nova Scotia, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halifax Regional Municipality\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" LOCATION: Remote Work-at-Home JOB TYPE: Full-Time PAY TYPES: Hourly + Bonus SALARY: $14.50 / hour BENEFITS & PERKS: REMOTE REPRESENTATIVE: Work-From-Home, Paid Training, Paid Time Off, Medical, Dental, Vision, Life Insurance, Retirement, Flexible Schedules, Company Laptop, Daily Contests, Prizes, Casual Dress Code, Regular Raises APPLICATION DETAILS: No Resume Required, Phone Interview POSITION OVERVIEW:  Remote Customer Service Agent, Work at Home, Bring Your Own Device Looking to work for a fast growing company? In these challenging times, we are offering work at home positions with flexible schedules.  The compensation is competitive. Benefits include paid vacation, variable bonus, and contest incentives.  Your own working PC device and internet broadband at home are required. All it takes to get started is for you to complete an easy online application and an informal interview with a talent acquisition specialist.  -:  POSITION RESPONSIBILITIES:  WHAT DOES A WORK AT HOME CONTACT CENTER REPRESENTATIVE DO? This position supports customer service and sales interactions. This role requires you to interact with hundreds of customers each week across the country to resolve support issues, sell new products and services, and ensure best in class customer experience. In addition to being the best in the business when it comes to customer interactions, you will need to be confident, fully engaged, a team player, and dedicated to bringing a positive and enthusiastic outlook to work each day.  Our entry-level Contact Center Representatives are responsible for the following tasks: Listen to customers, understand their needs, and resolve customer issues Utilize systems and technology to complete account management tasks Recognize sales opportunity and apply sales skills to upgrade Explain and position the products and processes with customers Appropriately escalate customer dissatisfaction with managerial team Ensure first call resolution through problems solving and effective call handling CANDIDATE QUALIFICATIONS:  WONDER IF YOU ARE A GOOD FIT? MCI provides all new employees with world-class training, so all positive, driven, and confident applicants are encouraged to apply. Ideal candidates for this position are highly motivated, energetic, and dedicated.Qualifications Must be 18 years of age or older High school diploma or equivalent Excellent organizational, written, and oral communication skills The ability to type swiftly and accurately (20+ words a minute) Basic knowledge of Microsoft Office Suite (Excel, PowerPoint, Word, Outlook) Basic understanding of Windows operating system Highly reliable with the ability to maintain regular attendance and punctuality The ability to evaluate, troubleshoot, and follow-up on customer issues An aptitude for conflict resolution, problem solving and negotiation Must be customer service oriented (empathetic, responsive, patient, and conscientious) Ability to multi-task, stay focused and self manage Strong team orientation and customer focus The ability to thrive in a fast-paced environment where change and ambiguity prevalent Excellent interpersonal skills and the ability to build relationships with your team and customers CONDITIONS OF EMPLOYMENT: Must be authorized to work in their country of residence (The United States or Canada) Must be willing to submit up to a LEVEL II background and/or security investigation with a fingerprint. Job offers are contingent on background/security investigation results COMPENSATION DETAILS:  WANT AN EMPLOYER THAT VALUES YOUR CONTRIBUTION? We believe that hard work should pay off, so we make sure that our compensation and total rewards are competitive. Standard starting compensation is commensurate with experience. Regular reviews and raises are awarded based on tenure and performance, so our employees make more each year. Employees earn paid time off as well as paid holidays and paid training opportunities. Regular daily, weekly and monthly incentives are part of the overall compensation our team members enjoy and include monetary incentive and prizes such as computers, tablets, phones, TV’s, trips, tickets, and even cars. In addition to our standard group benefits offering for full-time employees following 90-days of employment, all employees are eligible to opt for our MEC medical plan after only 30-days of employment. Benefits options and plans vary slightly by location. JUST A FEW OF THE BENEFITS Medical, Dental, and Vision Coverage Options Paid Time-Off Advancement Opportunity Fun, Engaging Work Environment Casual Dress Code Cash and Prize Contests PHYSICAL REQUIREMENTS:  This job operates in a professional office environment. While performing the duties of this job, the employee will be largely sedentary and will be required to sit/stand for long periods while using a computer and telephone headset. The employee will be regularly required to operate a computer and other office equipment, including a phone, copier, and printer. The employee may occasionally be required to move about the office to accomplish tasks; reach in any direction; raise or lower objects, move objects from place to place, hold onto objects, and move or exert force up to forty (40) pounds.  REASONABLE ACCOMMODATION:  Consistent with the Americans with Disabilities Act (ADA) it is the policy of MCI and affiliates to provide reasonable accommodation when requested by a qualified applicant or employee with a disability unless such accommodation would cause undue hardship. The policy regarding requests for reasonable accommodation applies to all aspects of employment. If reasonable accommodation is needed, please contact Kate Murph, Vice President of Human Resources.  DIVERSITY AND EQUALITY:  At MCI and its subsidiaries, we embrace differences and believe diversity is a benefit to our employees, our company, our customers, and our community. All aspects of employment at MCI are based solely on a person's merit and qualifications. MCI maintains a work environment free from discrimination, one where employees are treated with dignity and respect. All employees share in the responsibility for fulfilling MCI's commitment to a diverse and equal opportunity work environment. MCI does not discriminate against any employee or applicant on the basis of age, ancestry, color, family or medical care leave, gender identity or expression, genetic information, marital status, medical condition, national origin, physical or mental disability, political affiliation, protected veteran status, race, religion, sex (including pregnancy), sexual orientation, or any other characteristic protected by applicable laws, regulations, and ordinances. MCI will consider for employment qualified applicants with criminal histories in a manner consistent with local and federal requirements. MCI will not tolerate discrimination or harassment based on any of these characteristics. We adhere to these principles in all aspects of employment, including recruitment, hiring, training, compensation, promotion, benefits, social and recreational programs, and discipline. In addition, it is the policy of MCI to provide reasonable accommodation to qualified employees who have protected disabilities to the extent required by applicable laws, regulations, and ordinances where an employee works. ABOUT MCI (PARENT COMPANY):  MCI helps customers take on their CX and DX challenges differently, creating industry-leading solutions that deliver exceptional experiences and drive optimal performance. MCI assists companies with business process outsourcing, staff augmentation, contact center customer services, and IT Services needs by providing general and specialized hosting, software, staff, and services.  In 2019 Marlowe Companies Inc. (MCI) was named by Inc. Magazine as Iowa’s Fastest Growing Company in the State of Iowa and was named the 452nd Fastest Growing Privately Company in the USA, making the coveted top 500 for the first time. MCI’s subsidiaries had previously made Inc. Magazine's List of Fastest-Growing Companies 15 times respectively. MCI has fifteen business process outsourcing service delivery facilities in Iowa, Georgia, Florida, Texas, Massachusetts, New Hampshire, South Dakota, New Mexico, California, Kansas, and Nova Scotia.  Driving modernization through digitalization, MCI ensures clients do more for less. MCI is the holding company for a diverse lineup of tech-enabled business services operating companies. MCI organically grows, acquires, and operates companies that have a synergistic products and services portfolios, including but not limited to Automated Contact Center Solutions (ACCS), customer contact management, IT Services (IT Schedule 70), and Temporary and Administrative Professional Staffing (TAPS Schedule 736), Business Process Management (BPM), Business Process Outsourcing (BPO), Claims Processing, Collections, Customer Experience Provider (CXP), Customer Service, Digital Experience Provider (DXP), Account Receivables Management (ARM), Application Software Development, Managed Services, and Technology Services, to mid-market, Federal & enterprise partners. MCI now employs 10,000+ talented individuals with 150+ diverse North American client partners across the following MCI brands: GravisApps, Mass Markets, MCI Federal Services (MFS), The Sydney Call Center, OnBrand24, and Valor Intelligent Processing (VIP). DISCLAIMER:  The purpose of the above job description is to provide potential candidates with a general overview of the role. It's not an all-inclusive list of the duties, responsibilities, skills, and qualifications required for the job. You may be asked by your supervisors or managers to perform other duties. You will be evaluated in part based upon your performance of the tasks listed in this job description. The employer has the right to revise this job description at any time. This job description is not a contract for employment, and either you or the employer may terminate employment at any time, for any reason. REGARDING COVID-19:  As an employer supporting critical Federal, State, Provincial, and Commercial clients, we have taken steps to ensure that we remain operational while taking every precaution possible to prevent the spread of COVID-19 and keep our employees safe. Measures include social distancing for those working on-site, frequent deep cleaning and disinfecting of workstations and common areas, daily contactless temperature checks for those essential employees working on-site, travel policies limiting travel and mandatory quarantine, reporting and quarantine processes and policies for those exposed, and requesting masks to be worn when on-site employees are not at their workstation.REGARDING MASKS To help protect our candidates and employees, we are REQUESTING that all on-site candidates wear a mask to interviews and training. In locations where state or local government has mandated the use of masks, we will abide by the mandate, and REQUIRE masks be worn when on-location. For more information on MCI’s response to COVID-19 please visit www.mci.world/covid-19.\",\n            \"location\": \"Nova Scotia\"\n        },\n        {\n            \"id\": \"9B32476F0CE8163544FBF13D5D573FA5\",\n            \"cityName\": \"88 W Pender St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a67cdbc09b45ea20\",\n            \"jobName\": \"Customer Service And Cooking On Flat Grill\",\n            \"companyName\": \"Milaty Grill\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694298069228,\n            \"dateOfPosted\": 1668245657914,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.28590639999999,\n                    \"lon\": -123.1167774\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Pender St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Must have Foodsafe level 1 taking order from customers, taking payment and cooking there meal on the flat grill , cutting vegetables and meat , washing dishes cleaning up the kitchenJob Type: Part-timeSalary: From $17.00 per hourSchedule:4 hour shiftAbility to commute/relocate:VANCOUVER, BC: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Pender St E, Vancouver, BC\"\n        },\n        {\n            \"id\": \"9F5AD1B2A30A3C389BB96A661F30FDE0\",\n            \"cityName\": \"10505 20 Ave, Blairmore, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=eb0a859823aa1478\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"A & B Liquor Store\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694298035765,\n            \"dateOfPosted\": 1688662982149,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.60809889999999,\n                    \"lon\": -114.4394835\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"12305 20 Ave, Blairmore, AB T0K 0E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Crowsnest Pass\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Part time permanent casual position. Average of 2 shifts per week. Possibility of more shifts throughout the summer. Must be physically fit and able to lift repetitively. Must have no prior injuries. Must be available for shifts in the day, evening and weekends. Must live locally. Must have ProServe.Specific Skills - Operate POS System, process money and credit/debit transactions, scan items, count and reconcile float at the end of shift, stock shelves and coolers, help keep the store clean, and greet and assist customers.Business Equipment - POS System, credit/debit machine, price scanner, calculator and fax machine.Essential Skills - Mature, reliable, trustworthy, standing for extended periods, reading text, numeracy, problem solving, decision making, computer use, lifting up to 25lbs., communication, working well with others and alone. Must be flexible about working different shifts, evenings, weekends, and occasional days.Job Types: Part-time, PermanentSalary: $16.00 per hourJob Types: Part-time, Permanent, casualSalary: $16.00 per hourJob Type: Part-timeSalary: $16.00 per hourBenefits:Store discountSchedule:Day shiftEvening shiftWeekend availabilityExperience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Ave, Blairmore, AB\"\n        },\n        {\n            \"id\": \"2B9EA6D7B6C7D6879B0D6C6790A279E1\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=20853ed7f8e44053\",\n            \"jobName\": \"Game Presenter - French Speaking - Customer Service\",\n            \"companyName\": \"Evolution Americas\",\n            \"rowSalary\": \"$17–$24 an hour\",\n            \"date\": 1694297989030,\n            \"dateOfPosted\": 1689698929272,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Company Description  Evolution is a market-leading developer and provider of products and services for online casino entertainment. Our excellence is driven by over 17,000 EVOlutioneers across 30 markets worldwide, working in product innovation, software development, IT solutions, game hosting and business support. Evolution's dynamic and creative environment creates a unique opportunity for personal and professional growth. Our integrated business-to-business solutions guarantee that our clients can always provide an unrivalled online entertainment experience to their players globally. We thrive on remaining an award-winning digital powerhouse of entertainment products and services with an ever-expanding line-up of product brands: Evolution Live, NetEnt, Red Tiger, Ezugi, Big Time Gaming, Nolimit City and DigiWheel. Evolution is a Swedish company founded in 2006 and listed on Nasdaq Nordic (EVO). Job Description  Showcase your vivacious personality as Evolution’s Online Casino Dealer! Rotate between morning and evening shifts from the comfort of our private, state-of-the-art studio located in New Westminster. You’ll host iconic casino games like Blackjack, Poker and Roulette, provide customer service with unlimited virtual players – with the chance to earn unlimited tips. We Offer Generous Compensation Package including: Earn from $17.00 - $24.00 per hour plus monthly performance bonus. Extended Health and Benefit Plan 15 Days Paid Vacation 8 Paid Personal Days 2 Paid Evo Day What You’ll Do Enthusiastically introduce players, the rules of the game and the winners Deal cards, spin a wheel, and announce winners Use quick and accurate handling of cards Research appropriate topics and trivia to discuss with the audience Follow and supervise the updates and amendments in the game Engage in friendly conversation, without offering your opinion (sports, music, and trivia facts) Be presentable and confident in front of the camera Provide Customer Service to players Always use a positive parting remark to end the game conversation Our Benefits At and After Work Work for a casino without smoking, alcohol, loud music, and health hazards Toast your successes on treat days and holiday events Collaborate with approachable, diverse and global co-workers Security-protected office with no physical players in the studio Paid vacation time and paid breaks No experiences required as we will provide paid in-house trainings Company-assistance to obtain Provincial Gaming License Enhanced Covid-19 safety protocols implemented to ensure a safe work environment. Receive up to $750 per employee referral Loyalty Incentives and Employee Discounts Complimentary Night shift taxi drop off service Fun and Engaging Company sponsored Team-building Events Qualifications  Age 19+ High school diploma or equivalent Experience in customer service and hospitality Professional and service-minded with good communications skills Must be able to work a flexible schedule, evenings, weekends and holidays Must be able to obtain Provincial Gaming License (sponsored by the company) Wear an assigned uniform and maintain professional appearance standards Must be comfortable wearing theatrical make-up (foundation, blush) Fluent in French, working knowledge of English Additional Information  #EVOHP About Us Evolution is a market-leading developer and provider of products and services for online casino entertainment. Our excellence is driven by over 17,000 EVOlutioneers across 30 markets worldwide, working in product innovation, software development, IT solutions, game hosting and business support. Evolution's dynamic and creative environment creates a unique opportunity for personal and professional growth. Our integrated business-to-business solutions guarantee that our clients can always provide an unrivalled online entertainment experience to their players globally. We thrive on remaining an award-winning digital powerhouse of entertainment products and services with an ever-expanding line-up of product brands: Evolution Live, NetEnt, Red Tiger, Ezugi, Big Time Gaming, Nolimit City and DigiWheel. Evolution is a Swedish company founded in 2006 and listed on Nasdaq Nordic (EVO).\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"820011F7A45DCAF151416B2528CF532F\",\n            \"cityName\": \"2435 4 St SW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=88f4d9b32753cac0\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"La Boulangerie Bakery Cafe\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694297895859,\n            \"dateOfPosted\": 1662646022251,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.02468200000001,\n                    \"lon\": -114.093319\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Alfege St SW, Calgary, AB T2T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"La Boulangerie bakery cafe is looking for friendly Barista and food counter attended to work in a fast paced environment.The job includes: taking orders ,making coffee sandwiches and crepes .Please apply if you are able to work in a full time job .You can drop off resume (please not on lunch time ) or send us emailWork RemotelyNoJob Types: Full-time, PermanentSalary: $15.00 per hour\",\n            \"location\": \"St SW, Calgary, AB\"\n        },\n        {\n            \"id\": \"2C995A2CC17B55260142617D93260CE9\",\n            \"cityName\": \"97 Saramia Cres Unit 2, Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7887fa531531450f\",\n            \"jobName\": \"Customer Service Representative / Admin. Assistant\",\n            \"companyName\": \"Chemsyn Services Inc.\",\n            \"rowSalary\": \"$40,000–$43,000 a year\",\n            \"date\": 1694296651486,\n            \"dateOfPosted\": 1693424110681,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8150008,\n                    \"lon\": -79.5263283\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"60 Saramia Crescent #1, Concord, ON L4K 4J7, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saramia Cres Unit, Concord, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job SummaryCustomer Service / Admin will be responsible for providing administrative and clerical support. The candidate will provide administrative support in a dynamic environment, and function with a high degree of attention to detail, quality, accuracy and prioritization of work autonomously. The Customer Service / Admin will also have the key responsibility to liaise customers and employees and as such is expected to provide the highest level of customer service addressing all inquiries in a timely and professional manner.Minimum EducationHigh School Diploma or GED requiredMinimum ExperienceFive (5) years experience required in clerical support or related area; two (2) of those years as an Office Administrator II or equivalent administrative experience supporting a manager-level or district staff position.Responsibilities· Provide a variety of complex and time sensitive administrative duties within tight time frames.· Communicate (including phone, email, and direct face to face) with the Company employees and customers in a timely and professional manner· Greet people and direct them to contacts or service areas· Assists with creation of reports, presentations, etc., including researching, compiling, analyzing and/or developing necessary information and materials· Ensures the efficient daily operation of the office and department functions, including maintenance of supplies and equipment· Support The Sales and Service Team daily.· Draft documents, responses, memorandums while ensuring accuracy using intermediate skills in relevant software applications (Word, Excel, Power Point.)Qualifications· Excellent written and verbal communication skills· Coordinates travel arrangements, meetings, updates and maintains calendar appointments.· Prepares required materials for conferences, meetings, calls, and various appointments· Excellent organization and time management skills with an ability to effectively manage complex tasks simultaneously· Ability to deal effectively with multiple priorities and possess tact and diplomacy in dealing with inquiries and requests for information· Demonstrates initiative, high degree of accuracy, and ability to handle a complexity of tasks simultaneously· Strong problem solving skills with an ability to identify problems/issues and take necessary steps to resolve them· Professional and customer service oriented with an ability to work with individuals across all levels of the organization· Self-directed, detail oriented, dependable, and resourceful· Performs other duties as assigned.Schedule:Monday to FridayCOVID-19 considerations:All interviews will be conducted via Zoom or MS TeamsAdditional SkillsTrain other workersIntermediate computer skills, including Microsoft Word, Excel and OutlookPersonal SuitabilityCustomer Service OrientedFlexibilityAccurateTeam playerExcellent oral communicationExcellent written communicationReliabilityOrganizedAbility to multi-taskWe thank everyone for taking the time to apply; only selected candidates will be contacted.Job Type: PermanentSalary: $40,000.00-$43,000.00 per hourJob Types: Full-time, PermanentSalary: $40,000.00-$43,000.00 per yearBenefits:Extended health careSchedule:8 hour shiftWork Location: In person\",\n            \"location\": \"Saramia Cres Unit, Concord, ON\"\n        },\n        {\n            \"id\": \"86C1CA354E32E5CB2CB17748C89B6705\",\n            \"cityName\": \"20330 88 Avenue, Langley, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a54d42d7556b6c04\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Meridian Meats & Seafood Ltd.\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694296162867,\n            \"dateOfPosted\": 1691454540048,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.10396770000001,\n                    \"lon\": -122.6631466\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Langley\",\n                \"formattedAddress\": \"20200 56 Avenue Sunshine Hills Surrey, 102-20200 56 Ave, Langley, BC V3A 851, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Langley\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service ACE (Ambassador of Customer Experience)Join our growing family business! Enjoy a 30% Employee Discount, Benefits, and Flexible Hours.Meridian ACEs give people the best possible experience through serving them well and personally connecting with friendly hospitality.You’ll LOVE this job if you:Have the ability to connect with people in ways that help them feel welcomed, valued, and appreciatedEnjoy being there for others, serving, and providing assistance.No previous experience required.This role is for you if you have:Strong interpersonal skillsAbility to learn quicklyKnowledge of the retail environmentEffective communication skillsAbility to work as part of a teamAbility to lift up to 50 lbs continuously.Ability to work on your feet all day, bending, leaning, crouching, and walking.Ability to work for extended periods of time, in a refrigerated environment (cooler or freezer)Deli or kitchen experience is a plus.Weekday, daytime availability is a must!Job Type: Full & Part-time Positions availableSchedule:20-35 hours per week4–8-hour shiftsDay shifts and/or closing shiftsWage/Salary:starting at $16.75 per hour (dependent upon experience)Bi-annual wage increasesAdvancement opportunitiesBenefits:30% Employee Discount on in-store purchasesHealth & Dental carePaid Sick TimeFlexible ScheduleMeridian is an equal opportunity employer of all qualified individuals. Our workplace is welcoming to people of all backgrounds, orientations, and diversities, and we encourage all to apply.Job Types: Full-time, Part-time, PermanentPart-time hours: 15 - 35 per weekSalary: From $16.75 per hourBenefits:Extended health careOn-site parkingStore discountFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftDay shiftEvening shiftMonday to FridayWeekend availabilitySupplemental pay types:Overtime payAbility to commute/relocate:Langley, BC: reliably commute or plan to relocate before starting work (required)Application question(s):Are you able to work during the Day come September?Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Avenue, Langley, BC\"\n        },\n        {\n            \"id\": \"6C112ACB1E0D9AFB6321C37CA7F0C25F\",\n            \"cityName\": \"2287 Commercial Dr, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bf69c3ea47d7b4d6\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Express News Convenience\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694295842022,\n            \"dateOfPosted\": 1692208843103,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2838641,\n                    \"lon\": -123.0703588\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Commercial Dr, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position: Customer Service RepresentativeJob Description:The Customer Service Representative will play a key role in the success of our organization. This position is responsible for answering phone calls, responding to emails, and providing customer service support to our sales team. The CSR will also serve as the main point of contact for customer questions and inquiries. The position requires a high level of attention to detail, excellent organizational skills, the ability to think critically and maintain a positive attitude during fast-paced situations.Core Duties & Responsibilities:Greet and assist customers in a warm and welcoming manner.Provide product information and help customers make informed purchasing decisions.Operate the cash register and handle transactions accurately.Maintain a clean and organized store environment, including restocking shelves and ensuring product availability.Address customer inquiries, concerns, and complaints professionally and promptly.Follow store policies and procedures to ensure smooth operations.Promote store loyalty programs and special promotions to customers and UPSELL.Collaborate with team members to ensure a positive and cohesive work environment.Requirements:Strong communication skills – face-to-faceStrong attention to detailAbility to work independently as well as in a team environmentHighly motivated with a positive attitudeAbility to multi-task, prioritize, and manage time effectivelyKnowledge of operation systems or tools used in office settings (e.g., CRM, G-Suite) is a plus!Express News Convenience is an equal opportunity employer. All qualified applicants will receive consideration for employment without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, disability or protected veteran status.Job Type: Part-timePart-time hours: 20 per weekSalary: $16.75 per hourSchedule:Every WeekendMonday to FridayEducation:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Ability to Commute:Vancouver, BC V5N 4B6 (preferred)Ability to Relocate:Vancouver, BC V5N 4B6: Relocate before starting work (preferred)Work Location: In personApplication deadline: 2023-08-17Expected start date: 2023-08-21\",\n            \"location\": \"Commercial Dr, Vancouver, BC\"\n        },\n        {\n            \"id\": \"1CE78175287C6EE3C86EAA6C044323C6\",\n            \"cityName\": \"90 Inglis St Unit A005, Sydney, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cec4cc6284a53663\",\n            \"jobName\": \"Customer Service Representative (Full-Time)\",\n            \"companyName\": \"Mci Careers\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694295634087,\n            \"dateOfPosted\": 1625167774802,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.14031689999999,\n                    \"lon\": -60.1832895\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sydney\",\n                \"formattedAddress\": \"Inglis St, Sydney, NS B1P, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Cape Breton Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sydney\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" LOCATION: Sydney, NS SALARY: $14.50 / hour POSITION OVERVIEW:  CALL CENTER REPRESENTATIVE SUPPORTING COMMERCIAL AND PUBLIC SECTOR CLIENTS We are looking for call center representatives to support inbound and outbound customer service and sales projects for a wide variety of clients. In this role, you will handle inbound inquiries, make outbound calls to existing customers to assist with customer service questions and upsell customers on new products and services. There are a wide variety of project openings on government program as well as some of the most recognizable brands in the world. Candidates should have excellent communication skills, willing to learn on the job and be highly reliable. Schedules vary by site and project however we can usually find something that works for everyone. This is an entry-level position with competitive compensation commensurate with experience. While prior contact center experience isn't required, Experience in customer service, technical support, inside sales, or back-office support in a contact center environment is a plus.  -:  POSITION RESPONSIBILITIES:  WHAT DOES SOMEONE IN THIS ROLE ACTUALLY DO? This position supports customer service, technical support, and customer sales interactions. This role requires you to interact with hundreds of customers each week across the country to resolve support issues, sell new products and services, and ensure a best-in-class customer experience. In addition to being the best in the business when it comes to customer interactions, you will need to be confident, fully engaged, a team player, and dedicated to bringing a positive and enthusiastic outlook to work each day. Essential Duties Handle inbound and outbound contacts in a courteous, timely, and professional manner Listen to customers, understand their needs, and resolve customer issues Research systems to find missing information as applicable; coordinate with other departments to resolve issues as applicable Follow the processes of the Client program and perform all tasks in a courteous and professional manner Utilize systems and technology to complete account management tasks Accurately document and process customer claims in appropriate systems Follow all required scripts, policies, and procedures Utilize knowledge base and training to accurately answer customer questions Comply with requirements surrounding confidential information and personal information Appropriately escalate customer issues with the managerial team Escalate customer issues to the appropriate staff and managerial for resolution as needed. Ensure first call resolution through problems solving and effective call handling Attend meetings and training and review all new training material to stay up-to-date on changes to program knowledge, systems, and processes Adhere to all attendance and work schedule requirements CANDIDATE QUALIFICATIONS:  WONDER IF YOU ARE A GOOD FIT? It's about building relationships and turning the knowledge you gain in training into customer wins. Representatives make a difference to customers and the company, providing over-the-phone customer service, sales, and technical support. We provide all new employees with world-class training, so all positive, driven, and confident applicants are encouraged to apply. Ideal candidates for this position are highly motivated, energetic, and dedicated. Required Must be 18 years of age or older High school diploma or equivalent Experience with data-entry utilizing a computer The ability to read and speak English fluently Have a wired, high-speed internet connection (Download speed of 20Mbps+) Excellent organizational, written, and oral communication skills The ability to type swiftly and accurately (20+ words a minute) Ability to work regularly scheduled shifts within our hours of operation including the training period. Basic knowledge of Microsoft Office Suite (Excel, PowerPoint, Word, Outlook) Familiarity with computer and Windows PC applications and the ability to learn new and complex computer system applications Highly reliable with the ability to maintain regular attendance and punctuality The ability to evaluate, troubleshoot, and follow-up on customer issues An aptitude for conflict resolution, problem solving and negotiation Must be customer service oriented (empathetic, responsive, patient, and conscientious) Ability to multi-task, stay focused, and self-manage Strong team orientation and customer focus The ability to thrive in a fast-paced environment where change and ambiguity are prevalent Excellent interpersonal skills and the ability to build relationships with your team and customers Preferred (Not Required) One (1) year of experience in customer service, technical support, inside sales, back-office, chat, or administrative support in a contact center environment Work at home experience State or Federal work experience CONDITIONS OF EMPLOYMENT: Must be authorized to work in their country of residence (The United States or Canada) Must be willing to submit up to a LEVEL II background and/or security investigation with a fingerprint. Job offers are contingent on background/security investigation results COMPENSATION DETAILS:  WANT AN EMPLOYER THAT VALUES YOUR CONTRIBUTION? We believe that hard work should pay off, so we make sure that our compensation and total rewards are competitive. Standard starting compensation is commensurate with experience. Employees earn paid time off as well as paid holidays and paid training opportunities. Regular daily, weekly and monthly incentives are part of the overall compensation our team members enjoy and include monetary incentive and prizes such as computers, tablets, phones, TV’s, trips, tickets, and even cars. In addition to our standard group benefits offering for full-time employees following 90-days of employment, all employees are eligible to opt for our MEC medical plan after only 30-days of employment. Benefits options and plans vary slightly by location. JUST A FEW OF THE BENEFITS Medical, Dental, and Vision Coverage Options Paid Time-Off Regular Raises Advancement Opportunity Fun, Engaging Work Environment Casual Dress Code Cash and Prize Contests PHYSICAL REQUIREMENTS:  This job operates in a professional office environment. While performing the duties of this job, the employee will be largely sedentary and will be required to sit/stand for long periods while using a computer and telephone headset. The employee will be regularly required to operate a computer and other office equipment, including a phone, copier, and printer. The employee may occasionally be required to move about the office to accomplish tasks; reach in any direction; raise or lower objects, move objects from place to place, hold onto objects, and move or exert force up to forty (40) pounds.  REASONABLE ACCOMMODATION:  Consistent with the Americans with Disabilities Act (ADA) it is the policy of MCI and affiliates to provide reasonable accommodation when requested by a qualified applicant or employee with a disability unless such accommodation would cause undue hardship. The policy regarding requests for reasonable accommodation applies to all aspects of employment. If reasonable accommodation is needed, please contact Kate Murph, Vice President of Human Resources, kate.murph@mci.world.  DIVERSITY AND EQUALITY:  At MCI and its subsidiaries, we embrace differences and believe diversity is a benefit to our employees, our company, our customers, and our community. All aspects of employment at MCI are based solely on a person's merit and qualifications. MCI maintains a work environment free from discrimination, one where employees are treated with dignity and respect. All employees share in the responsibility for fulfilling MCI's commitment to a diverse and equal opportunity work environment. MCI does not discriminate against any employee or applicant on the basis of age, ancestry, color, family or medical care leave, gender identity or expression, genetic information, marital status, medical condition, national origin, physical or mental disability, political affiliation, protected veteran status, race, religion, sex (including pregnancy), sexual orientation, or any other characteristic protected by applicable laws, regulations, and ordinances. MCI will consider for employment qualified applicants with criminal histories in a manner consistent with local and federal requirements. MCI will not tolerate discrimination or harassment based on any of these characteristics. We adhere to these principles in all aspects of employment, including recruitment, hiring, training, compensation, promotion, benefits, social and recreational programs, and discipline. In addition, it is the policy of MCI to provide reasonable accommodation to qualified employees who have protected disabilities to the extent required by applicable laws, regulations, and ordinances where an employee works. ABOUT MCI (PARENT COMPANY):  MCI helps customers take on their CX and DX challenges differently, creating industry-leading solutions that deliver exceptional experiences and drive optimal performance. MCI assists companies with business process outsourcing, staff augmentation, contact center customer services, and IT Services needs by providing general and specialized hosting, software, staff, and services.  In 2019 Marlowe Companies Inc. (MCI) was named by Inc. Magazine as Iowa’s Fastest Growing Company in the State of Iowa and was named the 452nd Fastest Growing Privately Company in the USA, making the coveted top 500 for the first time. MCI’s subsidiaries had previously made Inc. Magazine's List of Fastest-Growing Companies 15 times respectively. MCI has fifteen business process outsourcing service delivery facilities in Iowa, Georgia, Florida, Texas, Massachusetts, New Hampshire, South Dakota, New Mexico, California, Kansas, and Nova Scotia.  Driving modernization through digitalization, MCI ensures clients do more for less. MCI is the holding company for a diverse lineup of tech-enabled business services operating companies. MCI organically grows, acquires, and operates companies that have a synergistic products and services portfolios, including but not limited to Automated Contact Center Solutions (ACCS), customer contact management, IT Services (IT Schedule 70), and Temporary and Administrative Professional Staffing (TAPS Schedule 736), Business Process Management (BPM), Business Process Outsourcing (BPO), Claims Processing, Collections, Customer Experience Provider (CXP), Customer Service, Digital Experience Provider (DXP), Account Receivables Management (ARM), Application Software Development, Managed Services, and Technology Services, to mid-market, Federal & enterprise partners. MCI now employs 10,000+ talented individuals with 150+ diverse North American client partners across the following MCI brands: GravisApps, Mass Markets, MCI Federal Services (MFS), The Sydney Call Center, OnBrand24, and Valor Intelligent Processing (VIP). DISCLAIMER:  The purpose of the above job description is to provide potential candidates with a general overview of the role. It's not an all-inclusive list of the duties, responsibilities, skills, and qualifications required for the job. You may be asked by your supervisors or managers to perform other duties. You will be evaluated in part based upon your performance of the tasks listed in this job description. The employer has the right to revise this job description at any time. This job description is not a contract for employment, and either you or the employer may terminate employment at any time, for any reason. REGARDING COVID-19:  As an employer supporting critical Federal, State, Provincial, and Commercial clients, we have taken steps to ensure that we remain operational while taking every precaution possible to prevent the spread of COVID-19 and keep our employees safe. Measures include social distancing for those working on-site, frequent deep cleaning and disinfecting of workstations and common areas, daily contactless temperature checks for those essential employees working on-site, travel policies limiting travel and mandatory quarantine, reporting and quarantine processes and policies for those exposed, and requesting masks to be worn when on-site employees are not at their workstation. For more information on MCI’s response to COVID-19 please visitwww.mci.world/covid-19.\",\n            \"location\": \"Inglis St Unit A, Sydney, NS\"\n        },\n        {\n            \"id\": \"E18DC05A0D6AE4443EFBF7D05872C1CA\",\n            \"cityName\": \"120 Boul Ste Rose, Laval-ouest, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1d8d5b314434cf5f\",\n            \"jobName\": \"Bilingual Customer Service Representative - Remote\",\n            \"companyName\": \"Assistance Services Group\",\n            \"rowSalary\": \"$15.00–$17.05 an hour\",\n            \"date\": 1694295627037,\n            \"dateOfPosted\": 1692300109537,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5517876,\n                    \"lon\": -73.8703587\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Laval-Ouest, Laval, QC H7R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laval\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval-ouest, QC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"100% Online Application. Virtual Interview.Bilingual Inbound Customer Assistance Representative - RemoteWhen you're good at what you do, you can Work from Home.When you're the best at what you do, come work with us!Start Date:Various - August, September, OctoberLocation:Work from Home - CanadaEmployment Type:Permanent Full-Time, Part, Time and Contract roles availableApplication Closing Date:14 April 2023About UsWe provide expert assistance for moments that matter.Now part of Sitel Group, Assistance Services Group (ASG) is committed to building positive and lasting relationships with our clients' customers, associates, and citizens. For over 66 years, we have provided enterprise-wide services addressing needs across various industries, including automotive, healthcare, insurance and legal. But regardless of the industry, our goal remains the same: to provide timely assistance and information for the moments that matter most. Whether it's car trouble in the middle of nowhere or a child's fever in the middle of the night, we pride ourselves on being there 24/7 with prompt, professional and experienced help.We believe in relationships, value, change and YOU.What Can We Offer YOU!With the rising cost of Gas Prices, what better way to ease the Day's stress than by Working from Home. Benefits include saving time, money, and the environment.Hands-on paid virtual classroom-style training.Company-sponsored benefits include medical, dental, life and vision insurance, company-matched RRSP contribution and paid vacation time.Don't have the equipment needed to do the job? Don't worry; we will send you what you need.Bilingual (French/English) associates are paid an additional $2.50 per hour.When work seems fun, you must be working from home.Customer AssistanceAs a full-time Work from Home Bilingual Customer Assistance Representative, you will work with our incredible Roadside Assistance team to dispatch roadside services quickly and efficiently to our members in difficult and stressful situations. They could be stuck on a busy highway, in the middle of an intersection, or alone late at night in an empty parking lot.With empathy, reassurance, and a sense of urgency, you will ensure they're safe, determine their exact location using mapping software, and quickly dispatch an authorized service provider to help. Your calm, soothing voice and can-do attitude make all the difference, and their gratitude is your reward.What You Bring!You currently reside in CanadaHigh School graduates or equivalentMust have at least three (3) months of working experience in the customer service fieldKnowledge of MS Office 365, MS TEAMS and a Microsoft Windows environment.Must have a good command of English and spoken FrenchYou'll need to be able to work varying shifts in our 24/7 operationProblem-Solving, Empathy, Adaptability and ReliabilityWhat You Can Offer US!A desk, comfortable chair, access to a quiet home office space, high-speed internet (minimum of 10 mbops download and 5 mbps upload), and the ability to hardwire your internet modem to the equipment we supply.Follow ASG on Social MediaLOVE YOUR CAREER!Sitel Group is committed to Global Ethics and is an equal opportunity employer. We are committed to fostering a diverse, inclusive and equitable work environment where all associates are represented, supported and treated with fairness and respect. We believe in selecting, developing and rewarding the best candidate for the job based on the requirements and responsibilities of the role. If you are contacted for any opportunity with us and require any accommodation during the recruitment and selection process please be sure to communicate your needs with your recruiter. Any information shared will be treated confidentially and will only be shared in order to provide a positive and accessible candidate experience.Job Type: Full-timeSalary: $15.00-$17.05 per hourBenefits:Dental careExtended health careLife insurancePaid time offRRSP matchWork from homeSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayMorning shiftNight shiftWork Location: Hybrid remote in Laval-Ouest, QC H7R 1R2\",\n            \"location\": \"Laval-ouest, QC\"\n        },\n        {\n            \"id\": \"6A0D987A8DA663E5AFD0520AC1482323\",\n            \"cityName\": \"100 Aldersmith Pl, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=baa340935f59dd66\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Domino's Pizza | 655069 Bc Ltd\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694295609392,\n            \"dateOfPosted\": 1692266470696,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4487147,\n                    \"lon\": -123.4287257\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"View Royal\",\n                \"formattedAddress\": \"Aldersmith Pl, View Royal, BC V9A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"View Royal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Hot job opening, fresh out of the Oven! The Customer Service Representative's role is crucial within the Domino's system! We pride ourselves on offering fast and friendly service with a smile, and our CSRs lead the way in doing so. Within our fast paced environment, the role is primarily to offer top quality customer service by phone and in person at the counter. Customer Service Representatives are expected to know Domino's products and the current offers in order to provide customers with the correct order and best value based on their needs. Customer Service Representatives will take orders by phone-in customers, as well as customers at the store. They are expected to manage the cash drawer when accepting payment for orders and returning change. CSRs will also handle customer concerns using the approach taught during Domino's onboarding and orientation. In secondary roles, Customer Service Representatives will help make quality products, label boxes, cut pizzas and prepare orders for delivery or to be served to in-store customers. CSRs also help in maintaining the store's professional image by participating in the cleaning tasks assigned to all team members. Benefits of working with Domino's Pizza include: Flexible schedules Competitive wages Staff pizzas Career growth opportunities A uniform is provided, and wages start at $15.65 plus $1.50 - $ 3.50/hour in tips. Customer Service Representatives are expected to be presentable by following Domino's personal image and grooming standards. Domino's is an equal opportunity employer. REQUIREMENTS Previous experience preferred Friendly and well spoken Good math skills to handle cash handling for in-store customer payments Speak English fluently in order to serve customers Focus on cleanliness and personal hygiene At Domino's Pizza, Our Most Important Ingredient is Our People! We offer employment opportunities within our franchise stores. Take the first step in joining our team, and you'll find opportunities you won't find anywhere else in the industry!\",\n            \"location\": \"Aldersmith Pl, Victoria, BC\"\n        },\n        {\n            \"id\": \"C875A44034D761DDDB9ED9E819198C63\",\n            \"cityName\": \"1360 Boul René Lévesque O, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7001d5e0de8d9bd8\",\n            \"jobName\": \"Food Preparation And Customer Service\",\n            \"companyName\": \"Cultures Restaurant\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694295583171,\n            \"dateOfPosted\": 1691469923719,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4980208,\n                    \"lon\": -73.5709092\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Boulevard René-Lévesque O, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking to fill in the position for food preparation and customer service.From Monday to Friday from 8:00 to 15:00.Job Type: Full-timeSalary: $17.00-$19.00 per hourSchedule:Day shiftMonday to FridaySupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"René-Lévesque Boulevard West, Montréal, QC\"\n        },\n        {\n            \"id\": \"859602944C0C9FEAA93914C6FE714F48\",\n            \"cityName\": \"Smiths Falls, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=524881204cc7031d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Wetrentals Inc.\",\n            \"rowSalary\": \"$15–$20 an hour\",\n            \"date\": 1694295538341,\n            \"dateOfPosted\": 1623804750302,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.903748,\n                    \"lon\": -76.02161889999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Smiths Falls\",\n                \"formattedAddress\": \"Smiths Falls, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Lanark County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Smiths Falls\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Boat Delivery & Customer Service Company descriptionWetRentals is a local Seadoo and other boat rental company. We offer rentals at a reasonable rate and they are delivered to our customers docks or doors.Job descriptionJob Title: Boat Delivery and Customer ServiceReports To: Sales ManagerJob Overview:As a Boat Delivery & Customer Service Representative, you will be required to deliver our boats to our customers dock or door. Once delivered, the boats must be unloaded and the customers must be briefed on the safety and operations of the boat. Customer service is key. Once the boats are fully delivered, the job duties are finished until the boats are required to be picked up. On pickup the boats must be inspected and returned to our location. Deliveries take place all over Ottawa, Kingston and Perth.A TRUCK IS REQUIRED (you will be paid $.58c/ km)Responsibilities and Duties- Rent Seadoo's to customers- Upsell our boats and accessories- Complete transactions- Collect deposits and signed contracts- Give safety briefings- Deliver Boats- Clean down boats, check for damage.- Answer questions as needed.Qualifications- Minimum of 18 Years of age- Sales experience is an asset- Boat knowledge is an asset- Local knowledge is an asset- Boaters licence is a must.- Truck or large vehicle is a must.HoursHours vary based on rentals. Our rentals are 9am-5pm. Deliveries and pickups happen at 9am and 5pm.The Perfect HireOur perfect hire is an energetic, outgoing individual who is looking to help grow our small business. The hire will have to be able to back up a trailer with boats and unload them proficiently. Customer service is a must as the hire must be able to fully explain how our boats work.Contract length: 2 monthsApplication deadline: 2021-06-20Expected start date: 2021-07-01Job Types: Full-time, TemporarySalary: $15-$20 per hourCOVID-19 considerations:All employees are required to wear a face covering while the government regulations are in place. Hand sanitizer and cleaning supplies are available 24/7Contract length: 2 monthsPart-time hours: 20 per weekExpected start date: 2021-07-01WetRentals Inc. provided the following inclusive hiring information:We are an equal opportunity employer and considers all qualified applicants equally without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, veteran status, or disability status.Job Types: Part-time, TemporarySalary: $15.00-$20.00 per hourApplication question(s):Do You Own A Large SUV or Truck?Education:Secondary School (preferred)Experience:customer service: 1 year (preferred)\",\n            \"location\": \"Smiths Falls, ON\"\n        },\n        {\n            \"id\": \"107AAA3BD6E6DB0E41D033E313E06BAC\",\n            \"cityName\": \"GTA Kitchen Remodeling inc. in Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=772b2e417b735975\",\n            \"jobName\": \"Customer Service Assistant\",\n            \"companyName\": \"Gta Kitchen Remodeling Inc.\",\n            \"rowSalary\": \"$38,386–$50,000 a year\",\n            \"date\": 1694295532867,\n            \"dateOfPosted\": 1638402492269,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7315479,\n                    \"lon\": -79.7624177\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Brampton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 38386.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    38386.0\n                ],\n                \"range\": {\n                    \"gte\": 38386.0,\n                    \"gt\": null,\n                    \"lte\": 38386.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our company is looking for a full time Retail Sales Specialist to join our team in Mississauga. This job is a fantastic opportunity for an individual who can work effectively with store management to increase retail sales and execute client-driven merchandising that meet the client’s expectations. The sales representative will need to be outgoing, friendly, and be able to drive sales and brand awareness for our client’s products at major retail locations. You will be engaging and educating the customers on their next purchase of some of the leading brands in retail. The ideal candidate is independent, self-motivated, ambitious, and driven to succeed. When you join the Company, you will receive top-notch training and competitive pay rates.Responsibilities:Meet client and Company objectives by maintaining full distribution on all authorized SKU’s.Must have the ability to communicate effectively both internally with The Company management and externally with all Customers.Perform sales skills through continuously creating sale opportunities to reach goalsEnsure that communication between the client and all post sales follow-ups are met and upt date such as delivery status and deadlines.Will complete accurate and timely paperwork and reports, recaps, itineraries, timesheets, expense reports, etcQualificationsSales experience of at least 1 year.Must have a vehicleJob Types: Full-time, PermanentSalary: $38,386.00-$50,000.00 per yearSchedule:8 hour shiftEducation:Bachelor's Degree (preferred)Experience:customer service: 1 year (preferred)Work remotely:No\",\n            \"location\": \"Brampton, ON\"\n        },\n        {\n            \"id\": \"1EACDBF7D6261C69843E0260721C7FF4\",\n            \"cityName\": \"11819 111 Ave NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2601b70efe2cedee\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Spec Hardware\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694295457519,\n            \"dateOfPosted\": 1668223544451,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5862898,\n                    \"lon\": -113.402279\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Henry Ave NW, Edmonton, AB T5A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Spec Hardware is Edmonton’s one stop shop for all specialty hardware for indoor, outdoor, residential and commercial spaces.Spec Hardware assists customers, interior designers, architects, builders, renovators, and millworkers in the selection of the architectural hardware for their upcoming projects. We have a vast selection of door, cabinet, bath, and exterior hardware readily available. We are always bringing in new hardware displays and partnering with new suppliers to keep our competitive edge on our products.We are looking for an outgoing individual who is passionate about home design to join our team!You will be a customer facing associate charged with working with our clientele to meet their design needs. Your primary responsibility will focus on providing exceptional customer service while professionally representing Spec. You will be responsible for daily administrative duties; knowing our products and selection, providing a positive customer experience, completing customized sales orders, as well as other duties assigned.RequirementsWorking knowledge/understanding of hardware and designComputer literacy with POS systems and Microsoft OfficeExcellent Customer Service skills – ability to deal effectively with customers in person and on the phoneFlexible with the ability to multi-task and work effectively handling multiple job functionsMust be able to work varying hours and shifts to reflect Specs Hardware operating hoursResponsibilitiesExhibits a high level of activity, passion and energy, while providing an expert level of product knowledgeProvide detailed product information to customers and peersPromoting and recommending products and plans that match customer needsPrepare Quotes for sales TeamTake initiative to elevate personal knowledge of all product categories in current and future merchandise and maintains awareness of store promotions, pricing and special eventsAnticipate customer needs and follow up on all leadsAll other duties as assignedJob Types: Full-time, PermanentSalary: $19.00-$22.00 per hourSchedule:8 hour shiftEducation:Bachelor's Degree (preferred)Experience:customer service: 3 years (preferred)\",\n            \"location\": \"Ave NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"E67203083B08DECF0BCAE998217A46C0\",\n            \"cityName\": \"Au Canada Apparel in Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=01beb7221457b3b0\",\n            \"jobName\": \"Au Canada Apparel Fulfillment, Social Media & Customer Service Associate\",\n            \"companyName\": \"Au Canada Apparel\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694295052817,\n            \"dateOfPosted\": 1663414267405,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8879519,\n                    \"lon\": -119.4960106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Kelowna, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We're a small online business located in Kelowna, BC looking for an easy-going, yet hard-working member to add to small family team!If you're looking for flexible part time hours, keep reading!You'll have the opportunity to work with us and make sure our customers have the best experience with our brand!With this position, you'll ship out our customer's orders over the holiday season. It also includes a customer service role (responding to emails), and could grow into inventory management and getting new designs made for our apparel. (Don't worry, you won't have to design it, you'll just have to facilitate it!).We're also looking for someone to post images and reels on our social media.Requirements & Details:You must have a car to get to and from the storage unitFlexible, part-time hoursPacking is done in our studioPost images & videos on our social mediaIf you're interested we'd love to hear from you! Please respond and let us know if you'd like to work with Au Canada Apparel!www.aucanadaapparel.comJob Types: Part-time, Casual, Seasonal, Internship / Co-opContract length: 3 monthsPart-time hours: 10 per weekSalary: $17.00 per hourSchedule:4 hour shiftDay shiftMonday to FridayNo weekendsAbility to commute/relocate:Kelowna, BC V1V0C6: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Application deadline: 2022-09-24\",\n            \"location\": \"Kelowna, BC\"\n        },\n        {\n            \"id\": \"2C688F663279C7F6F7CC1672DDA7732B\",\n            \"cityName\": \"250 Teakwood Pl, Waterloo, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e062f20136132f38\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Ventigo Publications\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694295052722,\n            \"dateOfPosted\": 1662728952440,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4642578,\n                    \"lon\": -80.5204096\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Waterloo\",\n                \"formattedAddress\": \"Waterloo, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Waterloo, Ontario, Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Company descriptionFounded in 2017, Ventigo Publications specializes in multi-language novel translation and publication. With hundreds of published titles and a large customer base, the business continues to see accelerating growth.Job descriptionWe are seeking for an enthusiastic Customer Service Representative to join our growing team and to push our business forward.Responsibilities1. Respond to customer support tickets2. Resolve customer requests via email in a timely manner3. Monitor and report site reliability issues4. Accelerate customer experience and provide feedback to improve customer satisfactionSkills Requirement1. 1 year of customer service experience2. Excellent team player with a high sense of responsibility3. Experience with communication platforms such as Discord and familiarity with webtools in the ecommerce industry4. Proficiency with MS Word and Excel5. Strong grasp of English and Mandarin Chinese6. Strong communications skills and a quick learner7. Fast typer职位类型：全职, 终身制薪资： 每小时$15.50\",\n            \"location\": \"Waterloo, Ontario, Canada\"\n        },\n        {\n            \"id\": \"EEA9DB42EB487EE825B7BE1A35FA2B2E\",\n            \"cityName\": \"St. Catharines, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bf68bf5301e21a25\",\n            \"jobName\": \"Retail Customer Service & Sales Associate\",\n            \"companyName\": \"Essential Hr\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694294758848,\n            \"dateOfPosted\": 1694239233667,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We envision a world where everyone has access to clean water! By actioning our core values of Respect, Connection, Ambition and Value our team stives to achieve this goal..... one client at time. At Water Superstore (St. Catharines) we value YOU and the skills and experience you have to contribute. We are looking for passionate individuals who value the opportunity to learn about the growing health and water industry, love interacting with people , and have a positive attitude ! JOB DETAILS Primary Responsibilities : Accurately complete point of sale transactions in the retail store Serve clients through our drive thru, which involves lifting 50-pound water bottles Recommend and sell water filtration systems and water accessories Opening and closing the retail store Receiving/Inventory management Merchandising Book service and sales appointments Maintaining a clean retail work space Schedule  Full-time and part-time roles are available. The successful candidate must have flexibility in scheduling and be able to work shifts that accommodate our hours (Monday to Saturday, 10am - 6pm) Compensation  Starting at $16.50/hour. \",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"87DDEB9CEDE9854EB28C3B654D738C3B\",\n            \"cityName\": \"34 Futurity Gate, Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=43ea4fe877203ecf\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Ecotech Windows & Doors\",\n            \"rowSalary\": \"$35,000–$45,000 a year\",\n            \"date\": 1694294627183,\n            \"dateOfPosted\": 1668088665424,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.798329,\n                    \"lon\": -79.5079073\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Concord, Vaughan, ON L4K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Concord, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Ecotech Windows and Doors is seeking an ambitious and detail oriented individual with a drive to provide the highest level of internal and external customer care in this fast paced industryServes customers by providing product and service information and resolving product and service problems.Attracts potential customers by answering product and service questions and suggesting information about other products and services.Maintains customer records by updating account information.Resolves product or service problems by clarifying the customer’s complaint, determining the cause of the problem, selecting and explaining the best solution to solve the problem, expediting correction or adjustment, and following up to ensure resolution.Listen to customer concerns and complaints with the goal of identifying the causes of the problemContact clients as needed to ensure payment of outstanding invoicesQualificationsCustomer support experienceOver-achieving quotaStrong phone contact handling skills and active listeningFamiliar with CRM systems and practicesCustomer orientation and ability to adapt/respond to different types of charactersExcellent communication and presentation skillsAbility to multi-task, prioritize and manage time effectivelyHigh school diploma or equivalent; college degree preferredJob Type: Full-timeSalary: $35,000.00-$45,000.00 per yearBenefits:Casual dressDental careDisability insuranceExtended health careFlexible scheduleLife insuranceVision careSchedule:8 hour shiftSupplemental pay types:Bonus payEducation:Secondary School (preferred)Experience:Customer service: 1 year (required)\",\n            \"location\": \"Concord, ON\"\n        },\n        {\n            \"id\": \"65427E5B6DD07FA6F561ECFEA39ECF38\",\n            \"cityName\": \"Mission, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=62c15242acdea61d\",\n            \"jobName\": \"Order Desk & Customer Service\",\n            \"companyName\": \"Talentnest On Demand\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694294588590,\n            \"dateOfPosted\": 1694215082806,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Order Desk and Customer Service We are seeking an enthusiastic and detail-oriented Administrative Assistant to join our team and assist with our order desk and customer support services. The ideal candidate will have exceptional customer service skills, excellent computer knowledge, and experience with bookkeeping and some accounting. Responsibilities: Answering phone calls, emails and responding to inquiries or complaints in a timely, professional, and courteous manner Taking customer orders via phone, email, or post and processing them accurately and efficiently Handling inquiries and complaints with tact and diplomacy to ensure customer satisfaction Providing alternative suggestions to products that may be out of stock or unsuitable for the customer Promoting sales by highlighting discounts and sales to increase revenue Reaching out to customers via social media, email, and phone to ensure customer satisfaction Keeping accurate records of customer interactions and transactions Supporting the sales team and other departments as needed Requirements: Excellent customer service skills with a customer-focused mindset and exceptional communication skills Strong computer skills, including proficiency with Microsoft and Google Drive functions Experience with bookkeeping and accounting is a plus Proactive and able to take initiative, with excellent organizational skills Comfortable working as part of a team and independently Fluent in English with excellent verbal and written communication skills Able to think quickly and creatively in interactions with customers to provide a positive brand image Education and Training: High school diploma or equivalent Experience with mass-email software programs is preferred If you are passionate about providing exceptional customer service and enjoy working in a dynamic team environment, please apply. While we appreciate all applications, only successful applicants will be contacted. Starting $20 / hour\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"AC8736B390C8A9FEFC88F1718A6D95D9\",\n            \"cityName\": \"2731 Mountain Rd, Moncton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9c48dc4fd19e3ffd\",\n            \"jobName\": \"Customer Service/Cashier Part Time\",\n            \"companyName\": \"Magnetic Hill Irving\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694294372480,\n            \"dateOfPosted\": 1692207174266,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.1175797,\n                    \"lon\": -64.84080349999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Mountain Rd, Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usMagnetic Hill Irving is owned and operated by Power Plus Technology Inc based out of Moncton, NB. Power Plus Technology Inc also ownes and operates Carrefour a Cap-Pele and Crossroads at Hanwell and employs approximately 40 people.We are looking for energetic and responsible individuals to join our team of Customer Service Associates. The successful candidates will be responsible for operating a cash register and dealing with customers on a regular basis. The ideal candidates have experience with retail environments, quick decision-making skills and the ability to work in fast-paced environments.Responsibilities:Provide customer service to each customer quickly and efficiently.Interact with customers in a friendly manner.Answer customers' questions about products and offering suggestions to help them find what they are looking for.Receiving orders, stockingDaily store maintenance and cleaning inside and outside(e.g. sweeping/mopping, garbages, washrooms etc)Full Service gas attendant duties when requiredJob Types: Part-time, PermanentPart-time hours: 20 per weekSalary: From $15.00 per hourBenefits:On-site parkingDay range:HolidaysWeekend availabilityShift:8 hour shiftAfternoon shiftDay shiftEvening shiftMorning shiftWork setting:Convenience storeAbility to commute/relocate:Moncton, NB: reliably commute or plan to relocate before starting work (required)Experience:Retail sales: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Mountain Rd, Moncton, NB\"\n        },\n        {\n            \"id\": \"8BABB2EBE5330658A35873E0A8863ACA\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=948e688ae145cc1c\",\n            \"jobName\": \"Customer Service Sales Representative\",\n            \"companyName\": \"United West Mississauga\",\n            \"rowSalary\": \"$620–$1,050 a week\",\n            \"date\": 1694294370812,\n            \"dateOfPosted\": 1691410529201,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 620.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    620.0\n                ],\n                \"range\": {\n                    \"gte\": 620.0,\n                    \"gt\": null,\n                    \"lte\": 620.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you looking for a supportive, collaborative workplace with great teams and inspiring leaders? You’ve come to the right place. We’re looking for ambitious people who share our values and want to make every day better for people around the world. If this sounds like you, and the career below sounds exciting, we’d like to hear from you. As a Customer Service Sales Representative , you will be the face of our clients. You will interact with customers to bring our clients products and services to life! You will create effective sales opportunities with each customer using the skills provided in our intensive training model. You will establish sales objectives which will contribute towards the overall success of the business. We have relationships with numerous high-profile associations and external businesses; therefore, you can directly impact the Company’s reputation, profitability and image.Key Accountability:Meet sales, service, quality and productivity objectivesResponsible for interacting with new and existing customers and clientsConduct needs analysis and provide advice to customers by effectively communicating the value and benefits of the products and services offered by our clientsProvide a high level of service, build relationships and provide accurate information and the appropriate solutions to new and existing customersRaise issues, concerns and trends to the leadership teamMaintain a high level of product knowledge, operational process and servicesAs our ideal candidate, you make valuable contributions in your ability to communicate effectively with people. You have a high-energy level and a desire to become part of a globally dynamic organization offering long-term career opportunities.Qualifications:Experience in a retail, customer service or sales rolePost-secondary degree or equivalent work/business experienceDemonstrated ability to persuade and negotiate and must possess active listening skillsEffective client record management, with attention to detailAbility to work in a fast-paced environment and manage multiple day-to-day tasksStrong computer skills, and a general knowledge level of the MS Office suite of productsJob Type: Full-timeSalary: $620.00-$1,050.00 per weekFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayWeekends as neededAbility to commute/relocate:Mississauga, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"45C7B369585593F1A0A6233DE4ABD5BB\",\n            \"cityName\": \"975 Wilkinson Ave, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7edcb5f34bf86a27\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Needs/Shell\",\n            \"rowSalary\": \"$13.60 an hour\",\n            \"date\": 1694293136481,\n            \"dateOfPosted\": 1666633379957,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.7146169,\n                    \"lon\": -63.5683191\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Wilkinson Ave, Dartmouth, NS B3B, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full time job is available at Needs/Shell Gas Station & Convenience. **Shifts are available for weekdays and weekends 12pm-8pm or 1pm-9pm**Looking for someone who is able to work Weekends. Some duties include but are not limited to:- Serving and assisting customers with fuel and grocery based transactions- Maintain store cleanliness in efforts to meet and exceed customer expectations- Ensure food safety compliance by maintaining temperature logs- Ensure customer satisfaction by keeping shelves and coolers full of product-Handle and resolve customer issues and complaints- Having knowledge of product and location of product within store to meet customers needs- Ensure legal age requirements for customers purchasing lotto & tobacco productsIdeal candidate would be someone who is punctual and reliable, someone who possesses a natural customer service ability with a friendly attitude and someone who takes pride in their work that shows in terms of store condition. Previous experience in customer service is not needed but is considered an asset. Qualified candidates will be reached out to for an interview.Full time: 30-37.5 hr/weekJob Types: Full-time, PermanentSalary: $13.60 per hourDay range:HolidaysMonday to FridayWeekend availabilitySchedule:8 hour shiftMonday to FridayNight shiftWeekend availabilityShift:8 hour shiftDay shiftEveningsEvening shiftAbility to commute/relocate:Dartmouth, NS B3B 0J4: reliably commute or plan to relocate before starting work (preferred)Experience:Cash handling: 1 year (preferred)gas: 1 year (preferred)\",\n            \"location\": \"Ave Wilkinson, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"3AF82A99E801577187A3E583B58A1689\",\n            \"cityName\": \"855 Industrial Ave Unit 13, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ab8f01fc6c175428\",\n            \"jobName\": \"Call Centre Representative With Golfworks Canada\",\n            \"companyName\": \"Golfworks Canada\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694293028819,\n            \"dateOfPosted\": 1694211477798,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"GolfWorks Canada is hiring for their call centre in Ottawa, at 855 Industrial AvenueThe position is available right away40 hours per week.Typical hours are Monday to Friday 9am-5pmResponsibilities include answering phones, processing customer orders and other customer supportGolf knowledge is requiredCustomer service experience is preferredJob Type: Full-timeSalary: From $17.00 per hourSchedule:8 hour shiftDay shiftMonday to FridayExperience:customer service: 1 year (preferred)Golf: 2 years (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"8BC366372B6866C9AD8B56ADB1883384\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dd7270fc5b52d522\",\n            \"jobName\": \"Customer Service - Vehicle Replacement Specialist\",\n            \"companyName\": \"Solera\",\n            \"rowSalary\": \"$19–$21 an hour\",\n            \"date\": 1694292810515,\n            \"dateOfPosted\": 1694207942801,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The RoleServe as the primary point of contact for insurance clients requesting a vehicle replacement report for a total loss claim.Responsible for handling frontline inbound telephone calls and or electronic inquiries from customers (insurance companies) regarding the vehicle replacement product. The VRS1 agent will be responsible for entering or updating automotive, boat, equipment, and other vehicles total loss replacement reports on behalf of our insurance clients.Our agents make an important contribution to customer satisfaction by providing a prompt, efficient and courteous service.What You Will DoAccurately produce vehicle replacements for regular passenger vehicles; by conducting online research, utilizing our internal resources, and making outbound calls to dealerships.Provides level one support by assisting clients with entering a new request for a vehicle replacement report or update an existing one.Provides level one support by answering questions or guiding clients to understand the content of the report.Accurately assesses the customer's concerns.Asks the client well thought out or detailed questions and carefully listens to the user's response to fully comprehend the need, product issue, and best approach for resolving the problem.Take responsibility for all duties relating to compliance proceduresUse internal knowledgebase to resolve issues. Keeps current on most recent changes and/or upgrades.Communicates issues clearly and effectively to clients; documents all customer interactions consistently, thoroughly, and free of grammatical errors.Documents customer issues clearly and accurately when escalating to Tier 2 support to minimize resolution time for customer.Participates in continuous training programs to improve product knowledge and service skills, as well as learning in an ever-changing environment with different vehicles introduced every year.Deliver an amazing customer experience to clients requesting and updating reports through phone and electronic support.Performs all other duties as assigned.What You Will BringTo perform this job successfully, an individual must be able to perform each essential duty satisfactorily. The requirements listed below are representative of the knowledge, skill, and/or ability required. Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions.High School diploma or GED equivalent required, College diploma or University degree preferred.1-2 years customer service experience. (Required)Bilingual (French/English Required)Sales experience is a plus.Required Skills and AbilitiesMust have an aptitude for math.Analytical and naturally inquisitive with good questioning skills and good attention to detailsDesire to go the extra mile for the customers, and take personal responsibility for resolving issuesAbility to effectively communicate with others at all levels of the Company and the public, both verbally and in writing.Ability to demonstrate a courteous, tactful, and professional approach with employees and external customers and vendors.Ability to accurately complete tasks and projects, within allowable timeframes.Ability to perform special assignments as requested by the management team.Ability to work both independently and as part of a team.Ability to multi-task and switch between tasks seamlessly within a fast-paced environment.Must be able to always maintain confidentiality.Excellent written and oral communication skillsKnowledge and experience with Windows Operating systemsExcellent computer skills (Microsoft office, SharePoint, mobile applications, etc.)Knowledge to work in a dealership environment, auto insurance, or related is a plus.PHYSICAL DEMANDSThe physical demands described here are representative of those that must be met by an employee to successfully perform the essential functions of this job. Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions.Required to sit for extended periods of time.Required to wear a telephone headset to interact with clients over the phone for 7+ hours a day.Required to type for extended periods of time.Required to work with digital displays for 7+ hours a day.WORK ENVIRONMENTThe work environment characteristics described here are representative of those an employee encounters while performing the essential functions of this job. Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions.Work from the office.Flexibility if required to work shifts and or weekends.ACCOUNTABILITYDetailed description of responsibility including subordinates and functional responsibility.This position does not have any subordinates. It is an entry level position, independent contributor.Decisions are escalated to a senior level.Job Type: Full-timePay: $19.00-$21.00 per hourBenefits:Dental careExtended health careLife insurancePaid time offVision careSchedule:8 hour shiftDay shiftMonday to FridayOvertimeWeekends as neededSupplemental pay types:Bonus payExperience:Customer service: 1 year (required)Language:French (required)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"0EC3E6C2E94E0648CEBE38962F43DEC1\",\n            \"cityName\": \"Blue Mountains, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6314087d163acfe0\",\n            \"jobName\": \"Barista/Customer Service *** Saturday & Sunday 7am -2pm*****\",\n            \"companyName\": \"Royal Majesty Espresso Bar Bakery\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694292775863,\n            \"dateOfPosted\": 1694204506635,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Royal Majesty Espresso Bar Bakery - Blue Mountains. $18-$20/per hour~Im much rather hang out in a a cafe~Hello EveryoneIf you are a morning person - WE ARE YOUR PEOPLEIf you love coffee - WE ARE YOUR PEOPLEIf you want to learn how to make Lattes and Cappuccinos - WE ARE YOUR PEOPLEShifts available : Saturday and Sunday 7am-2pm. - GOOD VIBES ONLYWe look forward to meeting everyone !Job Type: Part-timePart-time hours: 15 per weekSalary: $18.00-$20.00 per hourSchedule:Weekends as neededWork Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"A81139F939A9CDD6A3ED3DB46060DC12\",\n            \"cityName\": \"Speedy Cash in North Battleford, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fbf79648cfa2a65d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Speedy Cash\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694292572978,\n            \"dateOfPosted\": 1694239244825,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Canadian-operated, Speedy Cash is a strong leader in the financial services industry. Founded in 1998, Speedy Cash currently operates over twenty branch locations across Canada. We are building a dynamic team of business professionals and can provide the right candidate with significant opportunities for career growth and job satisfaction.If you’re looking for a fun, energized environment where we support each other, as a team, to create a rewarding workplace and deliver amazing customer service, then look no further, Speedy Cash is the place for you!Perks and BenefitsWelcome BonusCompetitive wages, bonuses, and benefitsHands-on and continual training in transferable skillsBirthdays off, annual fun day for each storeIncredible support systemA team environment that makes work satisfying and funRRSP matchingOpportunities for growth. We promote from within!You are a Champion of Change; you will help motivate the team to increase sales, minimize bad debt and adapt to the ever-changing regulatory environment. You have a strong sense of curiosity and have a passion for learning; you are proactive and look for ways to be more efficient in your day-to-day work. You inspire your teammates with your innovative and resourceful way of thinking. Your attention to detail and exceptional organizational skills will ensure that the day-to-day operations of the store run smoothly. You can work independently as you pursue excellence while taking pride in your achievements, supporting company initiatives, and accomplishing the work that needs to be done in the store. An interest in travel would be considered an asset as from time to time support in other stores in the network is needed.Job ResponsibilitiesBuilding customer relationships while providing exceptional customer serviceIdentifying and meeting the customer’s financial needs in order to process loan applicationsCollecting on delinquent accounts in the interest of minimizing bad debtConveying information through in-person, telephone, and email communicationsAiding in loan sales, cheque cashing, and in-store promotionsHandling and balancing daily cash and debit transactionsPerforming all daily operations of the storeRequirementsValid Government Issued Photo IDClean Criminal RecordHigh School Diploma or EquivalentWageSalary commensurate with experienceFor more information about Speedy Cash check out our website at www.speedycash.ca/careersJob Type: Full-timeSalary: From $16.00 per hourBenefits:Dental careExtended health carePaid time offRRSP matchVision careSchedule:Monday to FridayWeekends as neededEducation:Secondary School (preferred)Work Location: In personApplication deadline: 2023-09-30\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"7F9AB219F131C04A5A92F420831DF836\",\n            \"cityName\": \"12015 Main St, Winchester, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5e538498594b89b2\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Winchester Foodland\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694292296066,\n            \"dateOfPosted\": 1692278921655,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.1768527,\n                    \"lon\": -75.28705889999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cornwall\",\n                \"formattedAddress\": \"Main St, North Dundas, ON K0C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Stormont, Dundas and Glengarry United Counties\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cornwall\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We at Winchester Foodland pride ourselves with providing our customers with excellent care and friendly service. The Front End Customer Experience is key to building a strong customer relationship within our community and beyond. Our courteous, efficient and caring Cashiers play such an important role in the success of our store. Full training is provided for this position.***If you have applied for this position in the past please feel free to apply again as we navigate through the hiring process. ***Experience· No previous experience requiredKey Responsibilities· Upholds and complies with company procedures, standards and policies in all situations· Greets customers in a polite and friendly manner· Demonstrates superior customer service in accordance with Company’s programs· Process cash register payments by cash, cheque, credit card, gift card and debit· Wrap and place merchandise in bags / carts· Maintain cleanliness of check stands· Stock various product in check stand areaKnowledge, Skills and Abilities Required· Ability to learn quickly· Ability to work in a fast paced environment· Highly motivated and team oriented· Ability to communicate clearly and concisely in both oral and written form· Possess strong customer service qualities· Works in a safe and responsible manner· Available to work flexible hours· Day, Evening and Weekend availability is a MUSTMust have or be able to get SmartServeJob Type: Part-timeBenefits:On-site parkingStore discountDay range:Monday to FridayWeekend availabilityFlexible Language Requirement:French not requiredShift:Day shiftEvening shiftWork Location: One locationJob Type: Part-timePart-time hours: 15-32 per weekSalary: From $15.50 per hourDay range:Monday to FridayWeekends as neededFlexible Language Requirement:French not requiredShift:Day shiftEvening shiftMorning shiftWork setting:Grocery storeWork Location: In person\",\n            \"location\": \"Main St, Winchester, ON\"\n        },\n        {\n            \"id\": \"68C28E23476755C01ABD0279A4783322\",\n            \"cityName\": \"580 Adelaide St N, London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=64e73716f1eb4a8e\",\n            \"jobName\": \"Customer Service/Food Preparation\",\n            \"companyName\": \"Marshalls Pasta & Bakery\",\n            \"rowSalary\": \"$16.55–$18.00 an hour\",\n            \"date\": 1694292214110,\n            \"dateOfPosted\": 1694223940052,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usMarshalls Pasta & Bakery is a small business operating in London, ON for over 25 years.We are customer-centric, fast-paced catering company and retail store. We specialize in making home made Italian food. We make all types of fresh pasta and sauces on site. We also bake our own bread. We are the leading supplier of school hot lunches in the city. We also catering to many sport teams in London and from out of town.Our work environment includes:Food providedMarshall's Pasta is looking for an experienced individual in the food service sector. We are very customer oriented so we are looking for someone who is friendly and outgoing. This new hire must be fluent in English. Your job description includes, using the cash register, preparing meals, helping to prep food in the kitchen, taking catering orders and kitchen maintenance. Kitchen maintenance includes mopping and dishes. We are looking for someone who can work days from 2:00 pm to 7:00pm and Saturdays from 9 to 5. We are closed Sundays and all Stat holidays.Job Type: Part-timePart-time hours: 24 per weekSalary: $16.55-$18.00 per hourBenefits:Discounted or free foodFlexible scheduleStore discountFlexible Language Requirement:French not requiredSchedule:Every WeekendMonday to FridayWeekends as neededSupplemental pay types:TipsApplication question(s):Are you able to work Saturdays?Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Language:English (preferred)Licence/Certification:Food Handler Certification (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"CF24B256B04B04483F145328226143C1\",\n            \"cityName\": \"2 Robert Speck Pky Ste 620, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=06b210f64287e7f1\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Remitbee Inc\",\n            \"rowSalary\": \"$15.59–$20.00 an hour\",\n            \"date\": 1694292159314,\n            \"dateOfPosted\": 1692327367253,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5977341,\n                    \"lon\": -79.6362388\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Robert Speck Pkwy, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About RemitbeeRemitbee is online money transfer and currency exchange platform. Customers can send money to over 90 countries from Canada using web and mobile devices. We are just at the beginning of our growth and have ambitious plans to bring our service to all the countries on Earth.https://www.remitbee.com/aboutAbout the role:At Remitbee, we value customer care and satisfaction greatly. We are therefore looking for a part time outgoing and enthusiastic individuals for our customer service representative roles. As a bilingual customer service representative, you will be responsible for managing and directing inbound/outbound communication and customer service interaction, with a specific emphasis on the Spanish language.Additional description:Part time position for 6 months with the scope of converting into full time permanent position.Answer inquiries through the intended method of communication graciously and in a customer-oriented mannerUnderstand the needs of customers and provide quotes through phone or email communicationGuide and instruct customers when they are navigating Remitbee platformsEfficiently and effectively follow up with customers, companies and other leads to maintain relationshipsExhibit exceptional negotiation and conflict resolution skills when communicating with irritated customersMaintain detailed and organized documentation of communicated inquiries and conversationsApplicant RequirementsMust be able to communicate in Spanish with at least professional work proficiency (fluent)Ability to commute to work location.Weekend AvailabilityMust hold a High School Diploma2+ years of customer service experience preferredExceptional verbal and written communication skillsAble to effectively manage time and keep organizedAdvanced critical-thinking and problem-solving skillsProficient in required programs and softwaresBenefits package offeredMonthly Uber eats creditExtended health insurance (Drugs, Vision, Dental)Education creditApplyingWe look forward to hearing from you, but please note that due to the volume of applications that we usually receive for our job positions, only those shortlisted for next steps will be contacted.To stay in touch with Remitbee and keep up to date on all open opportunities, follow us on LinkedIn!Tipo de puesto: Medio tiempoSalario: $15,00 - $20,00 la horaPregunta(s) de postulación:Have you submitted the resume in English language ?Are you available to work on Weekends ?Experiencia:customer service: 1 año (Obligatorio)Idioma:Spanish (Obligatorio)Job Type: Full-timeSalary: $15.59-$20.00 per hourBenefits:Dental careSupplemental pay types:Overtime payAbility to commute/relocate:Mississauga, ON L4Z 1H8: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)\",\n            \"location\": \"Robert Speck Parkway East, Mississauga, ON\"\n        },\n        {\n            \"id\": \"8A396AD87878FAF84713F8720BDA54AE\",\n            \"cityName\": \"423 Elizabeth Street, Burlington, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=20dd64468c309f25\",\n            \"jobName\": \"Barista/Customer Service - Fall Availability Required\",\n            \"companyName\": \"Lola Choco Bar\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694292121702,\n            \"dateOfPosted\": 1690501285768,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.3265888,\n                    \"lon\": -79.796796\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burlington\",\n                \"formattedAddress\": \"Elizabeth St, Burlington, ON L7R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burlington\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Lola Choco Bar and Sweet House is located in Village Square in downtown Burlington. We are looking for an enthusiastic, and friendly barista to work on a part time basis (20-30 hours per week; shifts will include day, evening and weekend hours).Skills Required:Candidates must have exceptional customer service skills, and be extremely reliable and responsible.have a positive, outgoing and energetic attitude and love interacting with otherswork well and efficiently in a team environment and have strong communication skillsable to prioritize and multi task jobs on your ownare thorough and detailed orientedhave the ability to work well under pressureavailable to work a flexible schedule Monday through Sunday (including both morning and afternoon/evening shifts)able to maintain a clean and organized work environmentDuties include but not limited to:- Greeting customers with a positive and welcoming demeanor- Preparing and serving hot and cold beverage orders (previous barista and Espresso machine experience is an asset)- Taking and processing orders- Cleaning tasks and maintaining an organized work environmentJob Type: Part-timePart-time hours: 20-30 per weekSalary: From $15.50 per hourBenefits:Casual dressSchedule:Day shiftMonday to FridayMorning shiftWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Burlington, ON L7R 2L8: reliably commute or plan to relocate before starting work (required)Experience:Barista: 1 year (preferred)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Elizabeth St., Burlington, ON\"\n        },\n        {\n            \"id\": \"7DA57691B97E34E031BE2ACC09230928\",\n            \"cityName\": \"Downsview, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d9b79b31ff183c9a\",\n            \"jobName\": \"Customer Service Agent 3 -Downsview - Part Time - Perm - Bilingual (French And English)\",\n            \"companyName\": \"Serco North America\",\n            \"rowSalary\": \"$21.18 an hour\",\n            \"date\": 1694291947543,\n            \"dateOfPosted\": 1690362582393,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7266992,\n                    \"lon\": -79.4820609\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Downsview, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Position Description :  This role has a starting hourly rate of $21.18!  Serco Canada Inc. operates all the DriveTest Centres across Ontario on behalf of the Ministry of Transportation. As a customer service agent with Serco Canada Inc., you will be based out of one of our 56 Ontario DriveTest Centres. If you are a positive and professional team player who enjoys working with the public in a high energy environment, rewarding job opportunities await you at Serco Canada Inc.  Customer service agents are responsible for providing information and assisting members of the public at various stages of the driver’s licensing process. Some of the work includes responding to customer inquiries in person and on the telephone, providing information about licence rules and regulations, verifying driver records, taking applicant photos, scheduling road test appointments, collecting applicable fees, and preparing reports. Customer service agents must have excellent time management and organizational skills and exercise superior judgment skills. We require individuals who can work independently, meet deadlines, and strive to achieve customer satisfaction in all aspects of their work.  Purpose of the Job: Provides information and assistance related to driver examination services. Reviews information, determines test(s) requirements, and conducts/processes transactions and exams inside the DriveTest Centre. Assists in the smooth and efficient administration of examinations, including preparation of test takers entry, invigilating, the distribution of exam materials, and the collection of examinations. Ensures the fair and proper conduct of examinations. Creates a calm, professional, and supportive environment that enables applicants to perform to the best of their abilities. Provides Security Guard Testing (SGT) examination services support. Primary Duties and Responsibilities: Responds to inquiries related to driver licensing, determines applicant status, and provides information regarding test/re-test procedures and regulations relating to all classes of licences. Distributes and verifies application forms for accuracy and completeness. Investigates problems or errors in licence records and initiates corrections. Captures applicant photos, administers vision tests to ensure minimum requirements are met, and provides referrals to vision specialists. Collects applicable fees accurately. Conducts and processes knowledge tests, dispatches road test appointments, provides results, issues temporary driver’s licences, and processes licensing changes. Identifies licence exchange privileges and/or test requirements for driver’s licence applicants from other countries, provinces, and jurisdictions; assesses foreign licence eligibility, translations, and letters of authentication from other countries. Contacts members of the public to communicate information and correct errors. Administers commercial licence renewals, including accepting medical examination reports and criminal record checks. Escalates customer concerns and redirects customers to other government agencies, when required. Qualifications :  To be successful in this role, you must have:  Fluency level in French and English. Valid Ontario class “G” of licence is required. 1-4 years of customer service experience in a service environment is preferred to include, but not required:  Airline Industry Financial Industry Banking Industry Federal and Local Government Services Healthcare Industry Must have and maintain an acceptable driving record. Intermediate-level computer skills in Microsoft Office are required. Touch-typing and data entry. Must be able to perform physical duties of the position, this may include sitting or standing for extended periods of time and entering and existing vehicles up to 30 times per shift. Must pass Criminal Record Check (CPIC); Fingerprint Criminal Record Check. **Employee hours vary based on customer demand and location’s operating hours. **This position may require extended shift hours and possibly Saturday hours (depending on location) during certain periods of the year when Drive Test Centre volume is higher. **This position requires the attendance of a formal training session, which includes classroom instruction with experienced and qualified trainers and on-the-job shadowing at a Drive Test Centre facilitated by a coach. If you are unsuccessful at any stage of the training, your employment will end effective immediately. If you are interested in supporting and working with our Customer Service professionals and a passionate Serco team- then submit your application now for immediate consideration. It only takes a few minutes and could change your career! Company Overview :  Serco Inc. (Serco) is the Americas division of Serco Group, plc. In North America, Serco’s 9,000+ employees strive to make an impact every day across 100+ sites in the areas of Defense, Citizen Services, and Transportation. We help our clients deliver vital services more efficiently while increasing the satisfaction of their end customers. Serco serves every branch of the U.S. military, numerous U.S. Federal civilian agencies, the Intelligence Community, the Canadian government, state, provincial and local governments, and commercial clients. While your place may look a little different depending on your role, we know you will find yours here. Wherever you work and whatever you do, we invite you to discover your place in our world. Serco is a place you can count on and where you can make an impact because every contribution matters.  To review Serco benefits please visit: https://www.serco.com/na/careers/benefits-of-choosing-serco. If you require an accommodation with the application process please email: careers@serco-na.com or call the HR Service Desk at 800-628-6458, option 1. Please note, due to EEOC/OFCCP compliance, Serco is unable to accept resumes by email.  Candidates may be asked to present proof of identify during the selection process. If requested, this will require presentation of a government-issued I.D. (with photo) with name and address that match the information entered on the application. Serco will not take possession of or retain/store the information provided as proof of identity. For more information on how Serco uses your information, please see our Applicant Privacy Policy and Notice.  Serco does not accept unsolicited resumes through or from search firms or staffing agencies without being a contracted approved vendor. All unsolicited resumes will be considered the property of Serco and will not be obligated to pay a placement or contract fee. If you are interested in becoming an approved vendor at Serco, please email Agencies@serco-na.com.  Serco is an equal opportunity employer. We evaluate qualified applicants without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, disability, veteran status, and other legally protected characteristics. \",\n            \"location\": \"Downsview, ON\"\n        },\n        {\n            \"id\": \"E01E76DD5D08C48CE87CA2D78A928121\",\n            \"cityName\": \"1411 Avenue Dollard, Lasalle, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b29466a14d21282e\",\n            \"jobName\": \"Reception/Customer Service\",\n            \"companyName\": \"Salon De Bronzage Suntan\",\n            \"rowSalary\": \"$14.25 an hour\",\n            \"date\": 1694291478865,\n            \"dateOfPosted\": 1670761538414,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4309034,\n                    \"lon\": -73.63370909999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Av Dollard, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service/Receptionfront deskJob Types: Part-time, PermanentPart-time hours: 14 per weekSalary: $14.25 per hourBenefits:Casual dressFlexible scheduleOn-site parkingStore discountSchedule:Day shiftEvery WeekendWeekends onlySupplemental pay types:Commission payAbility to commute/relocate:Lasalle, QC: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Av Dollard, Lasalle, QC\"\n        },\n        {\n            \"id\": \"9F66A76DBBBB354763E70023BD4867CC\",\n            \"cityName\": \"46 Wright Ave, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0b4c72fdcae9107b\",\n            \"jobName\": \"Warehouse Assistant - Customer Service\",\n            \"companyName\": \"Happy Harry's\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694291337870,\n            \"dateOfPosted\": 1669262763200,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.7083211,\n                    \"lon\": -63.5827791\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Wright Ave, Dartmouth, NS B3B, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Description: This position has the primary function of working in the warehouse to complete customer orders to their exact specifications; assist with loading orders; and, installing window inserts; and re-stocking products. This position also has responsibility of obtaining and delivering product to and from the warehouse. This position is also responsible for ensuring that all merchandise and work areas are maintained in a clean and safe manner.DUTIES AND RESPONSIBILITES· Abide by and adhere to all tasks and procedures outlined in the HH Distributing Company Limited Employee Manual and any other distributed documents.· Comply with all health and safety regulations and wearing appropriate personal protective equipment as required.· Report for work as scheduled wearing the appropriate clothing and logoed HH Distributing Company Limited attire as may be required.· Processing door orders by checking and ensuring the dimensions are correct.· Installing window inserts ensuring orders are correct.· Loading product for customers and checking off the product loaded to the sales ticket.· Assisting customers with returns when necessary.· Loading and unloading product from the warehouse to restock inventory as required.· Maintain outside areas and ensure they are neat, tidy and safe always.· Cleaning washrooms when assigned, signing off the schedule and following requested appropriate procedures.· Assisting co-workers with their tasks during slow periods or by sharing product knowledge, etc.· Communicate with other stores/door plant/suppliers as necessary.· Clean up work area daily, ensuring site is always kept tidy and safe.· Perform any other tasks as assigned by supervisors.Tools & EquipmentCompany specified tools for this position include but are not limited to:· Drills· Knife· Hand Saw· Measuring tape· Calculator· Shovel, broom, mop, etc.· Pallet jack· Forklifts· Carts· Ladders· Electrical SawSkills· Completion of High School or equivalent.· Certifications in WHMIS and First Aid would be considered an asset.· Strong technical knowledge in carpentry/construction products and processes; application of products and processes; math skills; occupational health and safety.· Previous experience in sales would be considered an asset.· Ability to communicate clearly and concisely in English both verbally and in writing.· Excellent analytical and problem-solving skills.· Ability to be self-motivated.· Strong organizational skills and must be detail oriented and flexible.· Ability to work as part of a team and be a team player.· Ability to lift 50 to 75 pounds on a repetitive basis.· Ability to provide clean drivers abstract and criminal records background check.Decision MakingThis position makes decisions only within the scope of the job description and/or specific instructions from his supervisors. This position is accountable for the decisions he makes.Inside/Outside RelationshipsThis position deals with customers, co-workers, suppliers on a regular basis and must always be able to maintain a professional and business-like attitude.Position ConditionsThis position works both inside and outside and must monitor and adhere to various safety guidelines. This position must have the flexibility to stand, sit, walk, climb, twist or bend as required and must be able to lift 50 to 75 pounds on a repetitive basis. This position has some exposure to dust, dirt, fumes, heat, cold, noise, and inclement weather. This position requires visual concentration to complete daily tasks. This position requires good hearing to listen for unusual sounds in equipment and site management.FinancialThis position does not have any financial responsibility.Supervisory/ManagementThis position has no supervisory responsibility.Job Type: Full-timeSalary: $17.00-$18.00 per hourBenefits:On-site parkingStore discountSchedule:Monday to FridayWeekend availabilityCOVID-19 considerations:All customers are required to wear a mask while in our warehouseExperience:warehouse: 1 year (preferred)warehouse worker: 1 year (preferred)Expected start date: 2022-11-28\",\n            \"location\": \"Wright Ave, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"190AFCACD1F5CA02B8D36D9B8AFF764F\",\n            \"cityName\": \"London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=96bbdab0413740f7\",\n            \"jobName\": \"Lumber Yard Customer Service\",\n            \"companyName\": \"Copp Building Materials Limited\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694291151071,\n            \"dateOfPosted\": 1659423385018,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9849233,\n                    \"lon\": -81.2452768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Family owned and operated through four generations, Copp’s Buildall has played a prominent role in the city of London’s building industry for over 140 years. We have four locations within London and supply to both contractor and retail customers. We are currently seeking Customer Service Representatives to provide support in our Lambeth Lumber Yard A Yard Associate will be responsible with assisting customers with fast and friendly service and general yard maintenance. Daily tasks include assisting customers throughout their experience in our yard with both knowledge on our products, helping with loading and unloading materials from vehicles, and keeping the yard in pristine shape. RESPONSIBILITIES: Proper stocking of materials Assisting customers with their purchases Responsible for maintaining branch appearance according to branch standards guidelines Ensures machinery maintenance by completing daily checks Contributes to a positive team environment within the branch and throughout the company QUALIFICATIONS: A basic knowledge of building materials Forklift experience General math skills Ability to lift heavy materials / objects Able to work independently and accurately Ability to work outdoors in all weather conditions Customer focused WHY JOIN US? Family owned and operated company with a long standing history in the city Career advancement opportunities Employee discount Dynamic work environment Diverse culture and family values Excellent benefit package Copp’s Buildall is an equal opportunity employer valuing equality and diversity. Job Type: Full-time Salary: $15.50-$16.50 per hour\",\n            \"location\": \"London, ON\"\n        },\n        {\n            \"id\": \"D98F2C2727DCFC8DB2F2BB7832DD04C0\",\n            \"cityName\": \"Cedarbrae Eye Doctors in Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e61fa4aa379cd2d3\",\n            \"jobName\": \"Optometric Assistant Office Advisor And Front Desk Customer Service\",\n            \"companyName\": \"Cedarbrae Eye Doctors\",\n            \"rowSalary\": \"$15–$18 an hour\",\n            \"date\": 1694290853443,\n            \"dateOfPosted\": 1626675462808,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"customer service work with patientsAnswer calls and book appointmentsperform pretests with patients (will train)Answer questions about procedures and productsDo computer billing deal with OHIPother office dutiesReference ID: 11Job Type: Full-timeSalary: $15.00-$18.00 per hourBenefits:On-site parkingSchedule:Monday to FridayEducation:DCS / DEC (required)Work remotely:No\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"C7C4012E506A534DA1D7F83D46D79396\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6342b30256cd438a\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"Batista Properties Inc\",\n            \"rowSalary\": \"$34 an hour\",\n            \"date\": 1694290848726,\n            \"dateOfPosted\": 1686938945551,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 34.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    34.0\n                ],\n                \"range\": {\n                    \"gte\": 34.0,\n                    \"gt\": null,\n                    \"lte\": 34.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 2 years to less than 3 yearsTasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Oversee apprenticeship training Recruit and hire workers and carry out related staffing actions Train or arrange for training Set up machines and equipment Estimate costs and materials Ensure health and safety regulations are followed Recommend personnel actions Requisition or order materials, equipment and supplies Work conditions and physical capabilities Work under pressure Overtime required Personal suitability Excellent oral communication Organized Reliability Team playerWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"68B45FAB869D48286BE6DFD486DCB1E0\",\n            \"cityName\": \"Niagara-on-the-Lake, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3972b687167d5a31\",\n            \"jobName\": \"Inside Phone Sales\",\n            \"companyName\": \"Empowerment Technologies Inc.\",\n            \"rowSalary\": \"$23–$25 an hour\",\n            \"date\": 1694290784988,\n            \"dateOfPosted\": 1692278918669,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2549988,\n                    \"lon\": -79.0772616\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara-on-the-Lake\",\n                \"formattedAddress\": \"Niagara-on-the-Lake, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Niagara-on-the-Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"**This role is in office within our Niagara-on-the-Lake site.**Who We Are:For 20 years, we’ve been leaders in the baby safety (Levana) and DIY security space (Defender), creating ground-breaking consumer electronics that bring peace of mind to millions of people all over the world. Selling directly through our brand websites, Amazon, and our retail partners such as Walmart, Costco, and Home Depot, we are growing fast and are looking for new team members to join us on this journey. For those looking to join a passionate and collaborative team that challenge conventional methods, take risks, and settle for nothing but excellence, you’ve found the right place!Who Are You?You are a fast paced, results driven, and experienced Inside Salesperson with a successful sales track record, you have a high degree of self-motivation and resilience within a sales environment. Using your strong interpersonal skills and entrepreneurial mind set, you strategically use various contact methods to maximize your communication efforts and close sales. This role operates out of our Head Office in Niagara-on-the-Lake.Perks of This Role:Full time, 40 hours per weekScheduled shifts are days, Monday – Friday with weekend availability requiredWage is $23.00-$25.00 per hourImmediately receive 2 weeks vacation (no waiting period)Comprehensive Health Benefits program after 60 daysWork in an office environment (we are NOT a call centre)50% product discount for friends and familyWork directly for the brand owners and not a 3rd partyBe involved in new product testingQualifications:1 year of sales experience with a high focus on sales targets and customer engagementStrong attention to detail and ability to multitaskExcellent organizational, time management and communication skillsFlexible/creative approach to problem solving with the ability to simplify/detangle issues to their core factorsEmotional Intelligence: self-awareness - have a strong desire to develop and improve yourself and know when to seek out expertise; self-regulation - knowing when to push and when to stop; motivation – remain motivated while creating a strong desire to achieve in others; empathy – understand and care about people’s current reality; social skills – understand people, develop trust and help themHigh School Diploma (OSSD)Our Core ValuesExcellence - We never settle for “good enough.Results - The path to success is paved with our dedication.Love - Challenges are no match for our hearts and minds.Learning - Experimentation and curiosity are part of our DNA.Simplicity - We strip away the non-essentials to get to what really matters.Job Types: Full-time, PermanentSalary: $23.00-$25.00 per hourBenefits:Casual dressDental careExtended health careOn-site parkingPaid time offStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededCOVID-19 considerations:COVID-19 vaccination is required. We have put measures in place, such as daily office sanitization, socially distant desk spaces, and providing masks.Ability to commute/relocate:Niagara-on-the-Lake, ON: reliably commute or plan to relocate before starting work (required)Experience:phone sales: 1 year (required)B2B sales: 1 year (required)Work Location: In person\",\n            \"location\": \"Niagara-on-the-Lake, ON\"\n        },\n        {\n            \"id\": \"3669C67731359298E4C96E04F3E202C7\",\n            \"cityName\": \"8488 Main St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2b189c90b59ef011\",\n            \"jobName\": \"Customer Service Representative - Order Fulfillment\",\n            \"companyName\": \"Coast Appliances\",\n            \"rowSalary\": \"$17–$20 an hour\",\n            \"date\": 1694290737656,\n            \"dateOfPosted\": 1693421108447,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2457108,\n                    \"lon\": -123.101237\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Main St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Main St, Vancouver, BC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Coast Appliances is a great place to work. We are an ambitious organization, investing in technology, process, and most importantly, dynamic PEOPLE! With an energized team that stretches across Canada, we are invested in growing our team members as we grow our business.Our Order Fulfillment Specialists are responsible for processing online orders, communicating with customers and supporting the sales cycle of the selling staff . This position will be responsible to order review invoices for completeness, order product, secure final payment, schedule deliveries and be the main contact with customers regarding delivery and post-delivery follow-up, ensuring customer satisfaction and reducing delivery issues/errors.ResponsibilitiesTo improve Customer Service while increasing Profitability by reducing company losses (non-deliveries, shipping costs, unnecessary clearance product, etc.) for Retail invoices:Answer incoming customer inquiriesCollaborate with key stakeholders and teams to stay updated on new products, services, and policiesRecord and modify customer information within the databaseEngage with clients in a friendly and professional manner while actively listening to their concernsOffer support and solutions to customers in accordance with the company's customer service policiesOther duties as requestedApply now and grow with us!We thank all applicants for their time. Pease note, only applicants under consideration will be contacted.Coast is an Equal Employment Opportunity Employer. We celebrate diversity and are committed to creating an inclusive environment.Employment decisions are based on merit and business needs, and not on race, color, creed, age, sex, gender, sexual orientation, national origin, religion, marital status, medical condition, physical or mental disability, military service, pregnancy, childbirth and related medical conditions or any other classification protected by federal, provincial and local laws and ordinances. Reasonable accommodation is available for qualified individuals with disabilities, upon request. This Equal Employment Opportunity policy applies to all practices.Location: 8488 Main Street, Vancouver, British Columbia V5X 3L8Job Type: Full-timeSalary: $17.00-$20.00 per hour\",\n            \"location\": \"Main St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"4952318BE5EF55FDAE6C59479CD3505A\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=405250e6ffe7a817\",\n            \"jobName\": \"Sales And Customer Service Associate - Remote (In Calgary)\",\n            \"companyName\": \"7x Powered Inc\",\n            \"rowSalary\": \"$35,000–$55,000 a year\",\n            \"date\": 1694290693887,\n            \"dateOfPosted\": 1671603032590,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Sales and Customer Service Associate – Work from Home / Fully Remote (Calgary) Location: Work from home (Must live in Calgary) Do you love the idea of being part of a team that will forever change the way Canadians interact with our favourite brands? Do you enjoy working in an entrepreneurial environment, where quick decision-making enables meaningful and measurable progress? Are you always striving to be a top performer in anything you put your mind to? Does the prospect of joining a disruptive (but proven) business, with tons of growth potential, excite you? We've already hired 200+ Calgarians, and we're just getting started! Grow with us! Actually build a career at 7x, and gain access to our world-class compensation package including: 100% Health and Dental Coverage package, on day 1 Total cash compensation of 20-40% higher than other similar roles in Calgary Predictable scheduling and office hours Disrupt an industry together, with our proven recipe! If you answered yes to the questions above, then we’d love to hear from you! About 7x 7x was founded on the basic premise that most contact centers suck, resulting in painful client interactions with some of the world’s most recognized consumer brands. We set out to reinvent the industry, shifting focus towards co-creating delightful experiences to drive brand affinity, loyalty and conversion, for our client brands. We’ve now proven, with one of Canada’s largest Telcos, that this approach drives exponential results! Our unique engagement model involves a more customized and collaborative approach to designing, building, and operating omnichannel contact centers for the world’s coolest customer-centric brands. We help our clients redefine industries – from top to bottom and inside out. Delivering a world-class experience requires that we look at the world in a whole new way. Using kick-ass technology, and insights gleaned from rich data, we create exceptional, fully customized, experiences that go well beyond what anyone thought possible. Key Responsibilities Demonstrated ability to effectively implement a consultative and solutions-based sales and/or methodology. Thrive in a fast-paced environment and meet established sales targets. Multi-task in various systems to ensure the customers transaction is completely quickly and accurately. Demonstrate ability to positively influence customers (propose options/solutions). Act as an ambassador for our clients and provide their customers with a superior experience. Required qualifications Only four real requirements: You're an Ace at navigating software systems: Exceptional multitasking skills with productivity tools such as MS Office and Microsoft Windows. You know how to be real: You have the patience to listen attentively, solve creatively and create strong human connections. You're an upbeat, self-motivated, tenacious team player who is a fast learner, and has the ability to work independently. You have stronger-than-average English language skills (verbal and written communication) that translate well across communication channels (i.e. Phone, Email, and SMS). A couple “nice to have” items: Telephone sales or service experience is nice, but not required. Telecommunications industry experience is nice, but not required. Job Types: Full-time, Permanent Salary: $35,000 - $55,000 per year Benefits: Casual dress Dental care Extended health care Paid time off Vision care Schedule: Monday to Friday\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"B54CF47CA083F2D58E970BCD096FD15D\",\n            \"cityName\": \"1801 Harwood Avenue North, Ajax, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=48a32f62a614188b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Insurance Brokerage (Ajax)\",\n            \"rowSalary\": \"$40,000–$45,000 a year\",\n            \"date\": 1694290629831,\n            \"dateOfPosted\": 1690310199978,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8794663,\n                    \"lon\": -79.0269648\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ajax\",\n                \"formattedAddress\": \"Harwood Ave N, Ajax, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ajax\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position OverviewOur Successful Brokerage is seeking a qualified professional to join our team for the role of Customer Service Representative. We seek an energetic professional interested in helping our business grow through value-based conversations and remarkable customer experience. If you are a motivated self starter who thrives in a fast-paced environment, then this is your opportunity for a rewarding career with excellent income and growth potential.ResponsibilitiesEstablish customer relationships and follow up with customers, as needed. Such as payments, pending requests or follow up on emails.Provide prompt, accurate, and friendly customer service. Preparing new business applications, ordering abstracts & scanning.RequirementsExcellent communication skills - written, verbal and listeningSelf-motivated. Prior customer service experience (2yrs). Insurance Experience preferred.Experience in a variety of computer applicationsJob Types: Full-time, PermanentSalary: $40,000.00-$45,000.00 per yearSchedule:8 hour shiftSupplemental pay types:Commission payCOVID-19 considerations:We have complied and have taken extra precautions with regards to Covid-19 pandemic. And currently operating by appointment only for all our customers.Work Location: In person\",\n            \"location\": \"Harwood Ave N, Ajax, ON\"\n        },\n        {\n            \"id\": \"9FED08FB61713376AC389B4624C19DDE\",\n            \"cityName\": \"114 Sydenham St, Flesherton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ac6a298f221d9151\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Country Style & Mr. Sub\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694290579254,\n            \"dateOfPosted\": 1692315096353,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2648914,\n                    \"lon\": -80.5533015\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Flesherton\",\n                \"formattedAddress\": \"Sydenham St, Flesherton, ON N0C 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Flesherton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"“ LOCAL CANDIDATES ONLY ”Customer Service Representative$16.50/HRNo experience necessary..All Training will be providedApplicants should be:-Mature-Responsible-Punctual-A Team PlayerApply ASAP online or drop resume in person at the store to be hired!Job Types: Full-time, Part-time, Permanent, CasualSalary: From $16.50 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftEvening shiftHolidaysMonday to FridayMorning shiftWeekends as neededWork Location: In person\",\n            \"location\": \"Sydenham St, Flesherton, ON\"\n        },\n        {\n            \"id\": \"1220D36AD1EC6E86AEF94C70696E7520\",\n            \"cityName\": \"245 West Hunt Club Road, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=800cef8f638b7991\",\n            \"jobName\": \"Customer Service Representative: Adoptions (Part Time)\",\n            \"companyName\": \"Ottawa Humane Society\",\n            \"rowSalary\": \"$20.32–$24.72 an hour\",\n            \"date\": 1694290571033,\n            \"dateOfPosted\": 1693408859624,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.3228772,\n                    \"lon\": -75.7673026\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"W Hunt Club Rd, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"West Hunt Club Rd, Ottawa, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Ottawa Humane Society is a non-profit, community-based organization and a registered charity. Since 1888, we have been the leading organization providing a safe haven for sick, injured and homeless animals in Ottawa. For more information on the Ottawa Humane Society, visit us at: http://www.ottawahumane.ca.The Customer Service Representative (CSR): Adoptions is responsible for assisting the public through the process of adopting Ottawa Humane Society (OHS) animals.Job Details:Position: CSR: Adoptions Hourly wage range: $20.32/hr - $24.72/hrWork schedule: given belowStart date: ASAPThis is a part time position with a 4 week repeating schedule with 34.5 hours biweekly:Week 1 - Friday 3:30pm to 8:30pmWeek 2 - Thursday & Friday 3:30pm to 8:30pm , Saturday & Sunday 9am to 6 pm,Week 3 - Saturday & Sunday 11am to 5 pmWeek 4 - Tuesday 11am to 8:30 pm, Saturday & Sunday 9 am to 6 pmWhat would you do?Provide consultation and support for OHS clients seeking to adopt an animalProvide information to OHS clients on good animal care practicesMonitor the health and safety of animals available for adoptionProvide adoption follow-up servicesSupport operations in the Buddy and Belle retail boutique by processing sales transactions, maintaining and organizing stock, and promoting OHS goods for saleMaintain the Adoption Centre and Buddy and Belle boutique area, facilities, and equipmentEnsure appropriate fees are collected and accounted forEnter data and maintain data integrity in ChameleonSupport the activities of coworkers, volunteers, students and work placements and provide orientation and training as requiredBe thoroughly familiar with pertinent legislation, regulations, guidelines, OHS policies, procedures, collective agreement, and good animal care practicesProduce and maintain accurate reports, records, and filesParticipate in supervision, evaluation, training and other meetings as requiredParticipate in the identification and evaluation of OHS program goals and objectivesParticipate in professional development opportunitiesRepresent the OHS in a professional mannerParticipate in public relations and promotional activities as requiredWill be required to assume some of the responsibilities of CSR: IntakeMay be required to assume some of the responsibilities of the Supervisor: Customer Service or Coordinator: PALQualifications:Secondary school diploma or equivalentMinimum of one year experience in customer serviceAnimal handling experience preferredProficiency in Microsoft Office SuiteProfessional working proficiency in spoken and written English is requiredEssential Duties and Working Conditions:Employee may be required to work evening, holiday and weekend shiftsEmployment is conditional upon the ability to provide services in a safe manner, including, but not limited to, lifts and transfers of large animals and interaction with potentially aggressive animalsEmployee will be required to wear a uniform designated by the employerEmployment is conditional upon maintaining confidentiality of OHS informationEmployment is conditional upon the ability to work around all species of animals safelyThe Ottawa Humane Society is an equal opportunity employer. The OHS offers accommodation for applicants with disabilities in its recruitment processes. If you are contacted by the OHS regarding a job opportunity, please advise prior to the interview if you require accommodation. We thank all applicants for applying, however, only candidates selected for interviews will be contacted.Job Type: Part-timeSalary: $20.32-$24.72 per hourEducation:Secondary School (required)Experience:Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"West Hunt Club Rd, Ottawa, ON\"\n        },\n        {\n            \"id\": \"57D94456A1C982E4FBA7F885E0778CED\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3f6aec862b2b65f6\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Good To Great Solutions\",\n            \"rowSalary\": \"$38,000–$43,000 a year\",\n            \"date\": 1694290540149,\n            \"dateOfPosted\": 1693410238083,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 38000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    38000.0\n                ],\n                \"range\": {\n                    \"gte\": 38000.0,\n                    \"gt\": null,\n                    \"lte\": 38000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Good to Great Solutions, We strive for excellence and are the leaders in consulting and customer acquisition across North York. We are looking for an entry-level Customer Service Representative who will play a valuable support role by providing a superior level of service to all customers to help them achieve their individual goals. As an entry-level Customer Service Representative, you'll be responsible for delivering effective direct communication with clients and consumers. You will execute this by using knowledge of our client's history, products, and services.Our mission is to create a distinctive culture and career development for our Customer Service Representative team. With the passion for driving excellence, never allowing our team to hit the ceiling but only the ability to surpass expectations is why we have become so successful. Collaborative success is our main priority for our Customer Service Representatives because culture and teamwork are at the heart of our work. We offer the ability to grow from entry-level on and the opportunity to advance your professional skill set.Customer Service Representative Responsibilities:Effectively solve customer inquiries and find the best solution possible to fir the customer's needsGenerate long-term customer satisfaction by building genuine relationshipsCross-selling and up-selling by assisting customers in finding a product that satisfies their needsThe ability to be successful independently as well as collaborating with internal Customer Service teams, clients, and partners on market strategyCollect accurate and updated customer information in our internal databaseIdentify market trends and key opportunities for innovation to enhance the customer experienceImpact client experience positively with knowledgeable information about our clientele.Advocate for customers by identifying trends in issues and suggesting improvements to processes, policies, and productsRequirements:High school diploma or equivalentExquisite communication and people skillsCreative thinking skills, good problem-solving skills, ability to think outside the boxExceptional self-management skillsExcellent planning and organizational skills with demonstrated multi-tasking abilitiesGoal-driven with the ability to work under pressureTeam playerPerks for you!Holiday closuresDiverse and open environment where your ideas are encouragedOpportunity for career advancement into a team lead or supervisor positionsBonuses and incentives will be provided for our top performersTeam building activities with a diverse cultureJob Type: Full-timeSalary: $38,000.00-$43,000.00 per yearSchedule:Monday to FridayWeekend availabilityApplication question(s):Do you have availability to commute to M2H 2N8 on a daily basis?Work Location: In person\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"400E84D8837DF7E7B4D47600B55BB9C4\",\n            \"cityName\": \"1600 32 St, Vernon, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2b1edf484dc3e945\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Jim’s Place\",\n            \"rowSalary\": \"$17–$22 an hour\",\n            \"date\": 1694289635446,\n            \"dateOfPosted\": 1694289635264,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.2670137,\n                    \"lon\": -119.2720107\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vernon\",\n                \"formattedAddress\": \"Vernon, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"North Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vernon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Jim's Place Pizza is a popular local pizzeria.We are searching for a new person to join our awesome family. The staff culture is great and we would love to have you be a part of it.Your position would be at the front helping customers and taking phone and online orders. Strong customer service skills are a must. It’s a fun & fast paced environment and we have an incredible staff.Hours are flexible, we have people that are both part time and full time.Job Types: Full-time, Part-timePart-time hours: 10-40 per weekSalary: $17.00-$22.00 per hourFlexible Language Requirement:French not requiredSupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Vernon, BC\"\n        },\n        {\n            \"id\": \"0622E10E16444B963B42B229584E1E74\",\n            \"cityName\": \"Abbotsford, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9331b08b625e24bd\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Meridian Farm Market\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694289447768,\n            \"dateOfPosted\": 1694289447549,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.0504377,\n                    \"lon\": -122.3044697\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Abbotsford\",\n                \"formattedAddress\": \"Abbotsford, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Fraser Valley\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Abbotsford\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service ACE (Ambassador of Customer Experience) Join our growing family business! Enjoy a 30% Employee Discount, Benefits, and Flexible Hours. Meridian ACEs give people the best possible experience through serving them well and personally connecting with friendly hospitality. You'll LOVE this job if you: Have the ability to connect with people in ways that help them feel welcomed, valued, and appreciated Enjoy being there for others, serving, and providing assistance. No previous experience required. This role is for you if you have: Strong interpersonal skills Ability to learn quickly Knowledge of the retail environment Effective communication skills Ability to work as part of a team Ability to lift up to 50 lbs continuously. Ability to work on your feet all day, bending, leaning, crouching, and walking. Ability to work for extended periods of time, in a refrigerated environment (cooler or freezer) Deli or kitchen experience is a plus. Weekday, daytime availability is a must! Job Type: Full & Part-time Positions available Schedule: 20-35 hours per week 4-8-hour shifts Day shifts and/or closing shifts Wage/Salary: starting at $16.75 per hour (dependent upon experience) Bi-annual wage increases Advancement opportunities Benefits: 30% Employee Discount on in-store purchases Health & Dental care Paid Sick Time Flexible Schedule _Meridian is an equal opportunity employer of all qualified individuals. Our workplace is welcoming to people of all backgrounds, orientations, and diversities, and we encourage all to apply._ Job Types: Full-time, Part-time, Permanent Part-time hours: 15 - 35 per week Salary: From $16.75 per hour Benefits: Extended health care On-site parking Store discount Flexible Language Requirement: French not required Schedule: 4 hour shift 8 hour shift Day shift Evening shift Monday to Friday Weekend availability Supplemental pay types: Overtime pay Ability to commute/relocate: Abbotsford, BC V2S 5A1: reliably commute or plan to relocate before starting work (required) Education: Secondary School (preferred) Experience: Customer service: 1 year (preferred) Shift availability: Day Shift (preferred) Work Location: In person\",\n            \"location\": \"Abbotsford, BC\"\n        },\n        {\n            \"id\": \"E4609080A808861B203E48CD77E038BB\",\n            \"cityName\": \"39 Martin Rd, Bowmanville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a51d85d7824f9f06\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Circle K\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694289185705,\n            \"dateOfPosted\": 1692207173086,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.9023127,\n                    \"lon\": -78.6982075\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bowmanville\",\n                \"formattedAddress\": \"Martin Rd, Bowmanville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Martin Rd, Bowmanville, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"You'll be working as a cashier. We are looking for 1 person to cover the night shift.- Monday to Thursday 11 pm - 7 amWe are looking for people aged 19 or older since you'll be dealing with cigarettes, smoking products, lottery, etc.If you are interested please bring in your resume we would be happy to have you on our team.Job Types: Full-time, PermanentSalary: $15.50 per hourDay range:HolidaysMonday to FridayShift:8 hour shiftNight shiftCOVID-19 considerations:All employees and customers must wear masks at all times while in the store.Application question(s):Do you have a form of transportation to the job?Work Location: In person\",\n            \"location\": \"Martin Rd, Bowmanville, ON\"\n        },\n        {\n            \"id\": \"5816F5CB4FF354DD78261A9AFF784885\",\n            \"cityName\": \"7667 County Rd 56, Utopia, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=da21dc1bb26e45db\",\n            \"jobName\": \"General Labour/Customer Service\",\n            \"companyName\": \"Country Meat Cuts\",\n            \"rowSalary\": \"$15.50–$19.00 an hour\",\n            \"date\": 1694289123219,\n            \"dateOfPosted\": 1692297909513,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.3378348,\n                    \"lon\": -79.81922279999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Utopia\",\n                \"formattedAddress\": \"8807 Simcoe County Rd 56, Utopia, ON L0M 1T0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Utopia\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"PLEASE READ the description of the job carefully, and ensure that ALL of the aspects are a fit for you, BEFORE you apply. We are an extremely busy place. Hard work and a high quality of work are essential to us.* Lifting 40 lbs many times each day.* Ability to multitask.* Standing for long periods and moving quickly in a fast paced environment.* Comfortable spending a lot of time in the freezer organizing and re-stocking.* Reliability and consistency is crucial to this job.* Able to work 8 ½ hour shifts, 5 days a week.* Comfortable conversing with customers and providing excellent customer service.* Do you cook? Have a good knowledge of meat? This is essential when serving our customers.* Willingness to participate in every aspect of running the shop, including cleaning, packaging, customer service, and so much more.* Food handling certificate is an asset.We are a small family run butcher store that has been in business for 50 years. We are a close knit group. Providing a happy, healthy work environment is extremely important to us. When our employees work hard for us, we take good care of them. Please note that we are located rurally, in Utopia and there is no public transportation. Hours and days of work will be various shifts Tuesdays - Saturdays, 8am - 6pm. Working every Saturday is guaranteed.The salary for this position will depend on experience, and ability to check all of the boxes that we are looking for. Competitive wages will be offered to the right candidate. Experience in the industry is an asset, but we are willing to train, if you are willing to work hard.If this position sounds like a good match to you, please email your resume to: brandyrafeekcmc@gmail.com. Please do not apply any other way.Country Meat Cuts7667 County Rd. 56 Utopia, ON L0M 1T0705-424-2447 - countrymeatcuts.comJob Type: Full-timeSalary: $15.50-$19.00 per hourAbility to commute/relocate:Utopia, ON L0M 1T0: reliably commute or plan to relocate before starting work (required)Application question(s):This job will require lifting 40+ lbs many, many times a day. Is this something that you are comfortable with?This job will require spending several hours each day inside a heavy duty freezer, re-stocking and re-organizing. Is this something that you are comfortable with?Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"County Rd, Utopia, ON\"\n        },\n        {\n            \"id\": \"3CA9AEB9EE8C7950CCCB90DCFE6C3E69\",\n            \"cityName\": \"252 Main St, Kentville, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=65127225c31d81f1\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Needs Convenience\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694288952139,\n            \"dateOfPosted\": 1692278995430,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.07587820000001,\n                    \"lon\": -64.4911615\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kentville\",\n                \"formattedAddress\": \"Main St, Kentville, NS B4N, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Kings County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kentville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate will be responsible to carry out full range of duties:Provide customer service to meet customer needs and process customer transactionsMaintain an accurate cash drawer while following company policies and proceduresStocking products and maintaining products displaysEnsure everything is clean and tidy in store and back storage roomOther duties as requiredRequirements :Ability to lift or move 5-25 lbsStanding long hoursAbility to work independently in fast paced environmentFlexibility to work a variety of hours on weekdays and weekendOpen availability - Seven days in weekPresently in CanadaJob Type: Full-timeSalary: $14.50 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftEvening shiftEvery WeekendMonday to FridayMorning shiftWeekends as neededWork Location: In person\",\n            \"location\": \"B- Main St, Kentville, NS\"\n        },\n        {\n            \"id\": \"9D572A1F9D545580FDD5DA2A21E6846B\",\n            \"cityName\": \"852 Ontario St, Stratford, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f5ef6a272d37e5be\",\n            \"jobName\": \"Customer Service Representative Meal Advisor\",\n            \"companyName\": \"M&M Food Market Stratford\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694287714818,\n            \"dateOfPosted\": 1694287714629,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.3711286,\n                    \"lon\": -80.96233149999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Stratford\",\n                \"formattedAddress\": \"Ontario St, Stratford, ON N5A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Perth County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Stratford\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title– Customer Service RepresentativeCompany– M&M Food Market StratfordLocation– Stratford, ONSalary– $15.50 per hourJob type– Part-timeJob DescriptionM&M Food Market is a food retailer unlike any other; we don’t just sell products, we offer meal solutions and a unique shopping experience that helps to make customer’s everyday lives a little easier. We’ve been helping customers make delicious meals and entertain with ease for over 40 years!Our Customer Service Associates – known as Meal Advisors in our stores – are truly the face of M&M Food Market. If you have passion for food, can deliver exceptional customer service, and are willing to learn about our incredible lineup of wholesome and delicious products, we'd love to hear from you! We offer competitive wages, a welcoming, \\\"small team\\\" environment and flexible hours that allow you to balance your personal and professional needs. To learn more about M&M Food Market, we invite you to visit www.mmfoodmarket.comTHE POSITIONReporting to the Store Manager, the Customer Service Associate/Meal Advisor exhibits positive energy, provides knowledgeable service, and ensures a welcoming environment is presented to customers at all times. They are responsible for learning about products and promotions, receiving and organizing inventory, preparing product for customer sampling and light cleaning duties within the store.THE PERSONIs a people-person and can create a friendly, professional rapport with everyone they meet.Takes a genuine interest in customers and creating a delightful in-store experience, always taking into consideration the brand promise to help customers.Is hard-working and has a positive, can-do attitude towards working as part of the store team.Knows about and enjoys eating and preparing food! Can speak intelligently about food and meal preparation.Understands the challenges that time-starved, busy consumers face and can provide great meal and entertaining ideas/advice.Can operate a Point of Sale system and use Windows-based computer programs.Can meet the physical demands of the job, including lifting/carrying boxes weighing up to 40 lbs, standing for extended periods of time, and working within a freezer environment.We thank all applicants for their interest in this opportunity, however only those selected for an interview will be contacted.Job Type: Part-time 14 - 20 hours per week ( evenings and weekends)Salary: $15.50 /hourApplicant Qualifications– High School, we provide trainingHires Needed: 1 hireApply method : Drop resume at the store 852 Ontario St.Work RemotelyNoJob Types: Part-time, PermanentPart-time hours: 14-20 per weekSalary: $15.50 per hourBenefits:Store discountSchedule:Monday to FridayWeekendsWork Location: In person\",\n            \"location\": \"Ontario St, Stratford, ON\"\n        },\n        {\n            \"id\": \"562E969426AB4B77E22401504021E97E\",\n            \"cityName\": \"970 Nelson Street, Oshawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9942f156b1553aa3\",\n            \"jobName\": \"Customer Service Representative - Automotive\",\n            \"companyName\": \"Fix Auto\",\n            \"rowSalary\": \"$20–$25 an hour\",\n            \"date\": 1694287692299,\n            \"dateOfPosted\": 1692207248013,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.875179,\n                    \"lon\": -78.83734799999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oshawa\",\n                \"formattedAddress\": \"Nelson St, Oshawa, ON L1H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oshawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Fix Auto is looking for a Customer Service Representative!If you are a people person and are looking to evolve in a fast-paced work environment, then this could be your ticket to a great career. As a Customer Service Representative, you will act as brand ambassador and provides positive brand experience to all customers.A day in the Life of a Customer Service Representative at Fix AutoEffectively manage front office operations to ensure efficient organization and support of the sales functionProvide service to customers by reviewing the services offered and cross-sell different programs by explaining the advantage of our multiple service offerings.Collaboration with production manager and sales managers to ensure vehicles are on track for timely and flawless deliveryCommunicate and interact with clients throughout the different technologies such as text messages, emails, online videocall, etc.As required, assign the work order to technicians.Our ideal candidate is someone with:Extensive experience in Customer Service.Experience working in an administration or data entry role preferredComputer literateStrong work ethic, quality oriented and a positive team attitudeWhy join Fix Auto ?You will join a dynamic and super motivatedteam in a fast-paced work environment. Fix Auto is part of the Fix Network, one of the world’s largest automotive aftermarket services providers. Celebrating more than 28 years of excellence, each of our over 900 Fix Auto Centre is owned and operated locally offering a wealth of opportunity for personal growth and development. Throughout your journey with us, you will sharpen your skills.If you want to be part of the fastest growing collision repair brands in North America, Apply now!Location: 970 Nelson Street, Oshawa, Ontario L1H 8L6Job Type: Full-timeSalary: $20.00-$25.00 per hourWork Location: In person\",\n            \"location\": \"Nelson Street, Oshawa, ON\"\n        },\n        {\n            \"id\": \"474DC389240C89679F2E734CFB669BFB\",\n            \"cityName\": \"2 Conception Bay Highway, Conception Bay, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bc7ddcd1fb8a2b42\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Marshall`s Cornerstop\",\n            \"rowSalary\": \"From $14 an hour\",\n            \"date\": 1694287379323,\n            \"dateOfPosted\": 1676745498800,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.5083178,\n                    \"lon\": -52.9940605\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Conception Bay South\",\n                \"formattedAddress\": \"Conception Bay South, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 1\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Conception Bay South, NL\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"General cashier duties including serving customers, answering calls and stocking shelves. Must have customer service experience!Job Types: Part-time, PermanentPart-time hours: 30 per weekSalary: From $14.00 per hourBenefits:Dental careOn-site parkingVision careDay range:HolidaysMonday to FridayWeekend availabilityFlexible Language Requirement:French not requiredShift:8 hour shiftDay shiftNight shiftWork setting:Convenience storeAbility to commute/relocate:South River, NL: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In personExpected start date: 2023-02-22\",\n            \"location\": \"Conception Bay South, NL\"\n        },\n        {\n            \"id\": \"62095A72976A21C24BE94A8434C31515\",\n            \"cityName\": \"Penticton, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=61704d53feffe4f0\",\n            \"jobName\": \"Customer Service Representative - Financial Services\",\n            \"companyName\": \"Speedy Cash Canada\",\n            \"rowSalary\": \"$18.75 an hour\",\n            \"date\": 1694287362888,\n            \"dateOfPosted\": 1693422585780,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.4991381,\n                    \"lon\": -119.5937077\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Penticton\",\n                \"formattedAddress\": \"Penticton, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Okanagan-Similkameen\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Penticton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsHealth benefits Dental plan Health care plan Paramedical services coverage Vision care benefits Financial benefits BonusWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Penticton, BC\"\n        },\n        {\n            \"id\": \"1BDF1372F2633A826F65D0876F75AD62\",\n            \"cityName\": \"39 King St E, Cobourg, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c8c94ebc67d8b46a\",\n            \"jobName\": \"Customer Service/Cashier\",\n            \"companyName\": \"The Market & Smør\",\n            \"rowSalary\": \"$15.50–$18.00 an hour\",\n            \"date\": 1694287334305,\n            \"dateOfPosted\": 1692199251522,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.9639213,\n                    \"lon\": -78.1483111\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cobourg\",\n                \"formattedAddress\": \"King St E, Cobourg, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Northumberland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cobourg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position title: Market CashierReports to: Front of House ManagerBrief Company SummaryWelcome, we are so happy to have you here!The Market & Smør is Cobourg’s downtown fresh market. We are a leader in customer experience and exceptional, quality foods and produce.The Market puts customer experience and exceptional foods at the heart of our brand. We operate in a zero food-waste capacity. We have proven that people can shop in a beautiful space with the best foods and that employees can work in a professional, career-driven atmosphere while being challenged and doing what they love. Opening in 2019 and serving hundreds of customers since, we are looking for someone to help us continue succeeding in what we do best.What a Customer Cashier doesAs the Customer Service Cashier for The Market & Smør, you’ll have an impact on hundreds of people in your community each week. Your goal is to make people feel better than when they came in as you help them purchase what will nourish them, their families, and their friends. You will use food to connect to people and you will be an integral part of a 7 department company that works in unison to provide the most exceptional services to all of our guests. Your success will have a direct impact on our customers and community.Working with The Market & Smør, you are provided with a host of benefits. These include full benefits for full-time employees, a supportive atmosphere that strives to reach goals and succeed as a team, multiple departments to work in, respect and value for open communication and learning opportunities that will enhance your career. Other bonuses include on-site parking, casual dress, store discount and more.To be considered for this role, here are the skills that we are looking for:At least one year in a similar role with similar responsibilitiesYou must be an excellent communicator and quick thinking, someone who understands the experience of a shopper and their connection to food and serviceYou must be able to understand the impact that food has on peopleYou must be able to cash people out properly and quickly and balance tils at the end of the nightYou must understand the importance of thorough product knowledgeCore Job ResponsibilitiesAs a Market & Smør Customer Service Cashier, you’ll be on your feet, meeting the needs of our guests and ensuring that they are being rung through and going home with the best quality foods. You will be responsible for:Provides a positive customer experience with fair, friendly, and courteous service.Memorizes top 40 PLUs and uses them properlyRegisters sales on a cash register by scanning items, itemizing and totaling customers’ purchases.Resolves customer issues and answers questions.Order Fresh FlowersProcesses return transactions.Follows through on Opening and Closing List with efficiency and completelyEnsures tags are in good shape and prices are correct.Works with other departments to ensure proper sale prices are communicated on a daily basis.Itemizes and totals purchases by recording prices, departments, taxable and nontaxable items; and operating a cash register.Thinks quickly on the spot to fix problemsCommunicates clearly with Inventory Manager about prices, scanned items and inventory changesDiscounts purchases by redeeming coupons.Collects payments from customers and makes change for cash.Verifies credit acceptance by reviewing the debit machine before the customer leaves.Balances the cash drawer by counting cash at opening and closing.Provides pricing information by answering questions.Maintains checkout operations by following policies and procedures and reporting needed changes.Maintains a safe and clean working environment by complying with procedures, rules, and regulations.Contributes to team effort by accomplishing related results as needed.Has a thorough understanding of fresh produce and what to do with it.Memorizes The Welcome and walks new customers through The Market with it.Utilizes First In, First Out (FIFO) systems.Stocks items efficiently and effectively minimizing wasteTakes pride in product knowledge, community partners that we work with and can communicate this with customers effectively.QualificationsQualifications include:Attention to detailExcellent communication skillsQuick thinkingAbility to work with minimal functional directionAbility to work quickly and efficientlyWorking conditionsThis is a retail environment. There are many hours standing on your feet while being customer-facing.There are many hours with the public coming in and out of the retail with many different interactions.Physical requirementsThe physical requirements of a Market Cashier include:Regularly required to walk or stand;Regularly lift and/or move up to 23kg (50lbs.);Will be required to perform tasks involving firm grasping;Occasionally be required to bend, twist or squat.Will be involved in frequent repetitive hand actions.Will be required to reach above shoulder height and below waist level.We look forward to hearing from you!Job Types: Full-time, Part-timePart-time hours: 28 per weekSalary: $15.50-$18.00 per hourBenefits:Dental careOn-site parkingStore discountVision careDay range:Monday to FridayWeekends as neededFlexible Language Requirement:French not requiredShift:8 hour shiftDay shiftWork setting:Grocery storeSpecialty storeAbility to commute/relocate:Cobourg, ON K9A 1K6: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"King St E, Cobourg, ON\"\n        },\n        {\n            \"id\": \"E0A68C1E751166F8B5F525F98D364CC0\",\n            \"cityName\": \"8069 River Way, Delta, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=07a26a645d6ad382\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Acumen Logistics Ltd\",\n            \"rowSalary\": \"$20–$21 an hour\",\n            \"date\": 1694287323040,\n            \"dateOfPosted\": 1693421121621,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.147112,\n                    \"lon\": -122.98955\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Delta\",\n                \"formattedAddress\": \"River Way, Delta, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"River Way, Delta, BC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Acumen Logistics is one of the respected names in the logistics and supply chain industry. We are a one-stop solution for Transportation, Warehousing and Fulfillment services. We have a very diverse customer portfolio, which makes us a unique service provider servicing all industry types!We are looking for a motivated, reliable, and experienced CSR to join our team! We are looking for someone who can work with transporters or carriers, customers, and third-party logistics companies. The candidate will communicate with both internal and external stakeholders, handles day-to-day pick-ups, deliveries, follows up until the delivery is done and monitors other daily operations.Responsibilities· Communicate with customers via phone, email and chat· Provide knowledgeable answers to questions about product, pricing and availability· Work with internal departments to meet customer's needs· Data entry in various platformsQualifications· High school diploma, secondary education level or equivalent· Legally entitled to work in Canada· At least 2 - 3 years' of relevant work experience - Sales force· Excellent phone etiquette and excellent verbal, written, and interpersonal skills· Ability to multi-task, organize, and prioritize work· Ability to use Microsoft Office and Outlook· Punctuality to work (Working hours 8.00 am to 4.00, unless notified otherwise)Job Type: Full-timeSalary: $20.00-$21.00 per hourSchedule:8 hour shiftAbility to commute/relocate:Delta, BC: reliably commute or plan to relocate before starting work (required)Experience:logistics: 1 year (preferred)Work Location: In personApplication deadline: 2023-09-10Expected start date: 2023-09-15\",\n            \"location\": \"River Way, Delta, BC\"\n        },\n        {\n            \"id\": \"7ED124DA8AF68EF45705ACE83F80689B\",\n            \"cityName\": \"5 Northtown Way, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8f6b221506007449\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Monga Fired Chicken\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694287245054,\n            \"dateOfPosted\": 1686876726290,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto, ON Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for more great people to join our teams in North York Toronto!Location:5 Northtown way Unit16&17, M2N7L4-Motivated and passionate individuals-Detail-oriented and attentive-Fast learner and be able to work under fast-paced environment that demands accuracy, speed and professionalism with every order-Quick learner-Co-operation and teamwork-Good time management-Hourly pay rateJob Types: Part-timeJob Type: Part-timePart-time hours: 20 per weekSalary: From $15.50 per hourBenefits:On-site parkingStore discountFlexible Language Requirement:French not requiredExperience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"6EF7F43984B270521191EDC4EB7739E8\",\n            \"cityName\": \"Manitoba\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fba5773d7dc89d40\",\n            \"jobName\": \"Full-Time Remote Customer Service Representative (Manitoba)\",\n            \"companyName\": \"Mci Careers\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694287125200,\n            \"dateOfPosted\": 1665853900987,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.7608608,\n                    \"lon\": -98.8138762\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Manitoba, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" LOCATION: Remote Work-at-Home JOB TYPE: Full-Time PAY TYPES: Hourly + Bonus SALARY: $14.50 / hour BENEFITS & PERKS: REMOTE REPRESENTATIVE: Work-From-Home, Paid Training, Paid Time Off, Medical, Dental, Vision, Life Insurance, Retirement, Flexible Schedules, Company Laptop, Daily Contests, Prizes, Casual Dress Code, Regular Raises APPLICATION DETAILS: No Resume Required, Phone Interview POSITION OVERVIEW:  FULL-TIME REMOTE CUSTOMER SERVICE REPRESENTATIVE (MANITOBA) We are looking for full-time customer service representatives to support inbound customer service, help desk, and back-office processing representatives for commercial and public sector support positions. In this role, you will handle inbound calls, troubleshoot basic technical issues, build strong relationships with customers while professionally representing some of the most recognizable brands in the world.  Schedules vary by site and project; however, we can usually find something that works for everyone. This is a wonderful opportunity for you to start your career with our growing team, and with our industry-leading training, you are sure to grow. We offer many advancement opportunities, including Supervisor, Trainer, Talent Acquisition, and Operations Management.  To be considered for this position, you must complete a full application on our company careers page, including screening questions and a brief pre-employment test. -:  POSITION RESPONSIBILITIES:  WHAT DOES A WORK AT HOME CONTACT CENTER REPRESENTATIVE DO? This position supports customer service, technical support, and customer sales interactions. This role requires you to interact with hundreds of customers each week across the country to resolve support issues, sell new products and services, and ensure best in class customer experience. In addition to being the best in the business when it comes to customer interactions, you will need to be confident, fully engaged, a team player, and dedicated to bringing a positive and enthusiastic outlook to work each day.  Our entry-level Contact Center Representatives are responsible for the following tasks: Listen to customers, understand their needs, and resolve customer issues Utilize systems and technology to complete account management tasks Recognize sales opportunity and apply sales skills to upgrade Explain and position the products and processes with customers Appropriately escalate customer dissatisfaction with managerial team Ensure first call resolution through problems solving and effective call handling CANDIDATE QUALIFICATIONS:  WONDER IF YOU ARE A GOOD FIT? MCI provides all new employees with world-class training, so all positive, driven, and confident applicants are encouraged to apply. Ideal candidates for this position are highly motivated, energetic, and dedicated.Qualifications Must be 18 years of age or older High school diploma or equivalent Excellent organizational, written, and oral communication skills The ability to type swiftly and accurately (20+ words a minute) Basic knowledge of Microsoft Office Suite (Excel, PowerPoint, Word, Outlook) Basic understanding of Windows operating system Highly reliable with the ability to maintain regular attendance and punctuality The ability to evaluate, troubleshoot, and follow-up on customer issues An aptitude for conflict resolution, problem solving and negotiation Must be customer service oriented (empathetic, responsive, patient, and conscientious) Ability to multi-task, stay focused and self manage Strong team orientation and customer focus The ability to thrive in a fast-paced environment where change and ambiguity prevalent Excellent interpersonal skills and the ability to build relationships with your team and customers CONDITIONS OF EMPLOYMENT: Must be authorized to work in their country of residence (The United States or Canada) Must be willing to submit up to a LEVEL II background and/or security investigation with a fingerprint. Job offers are contingent on background/security investigation results COMPENSATION DETAILS:  WANT AN EMPLOYER THAT VALUES YOUR CONTRIBUTION? We believe that hard work should pay off, so we make sure that our compensation and total rewards are competitive. Standard starting compensation is commensurate with experience. Regular reviews and raises are awarded based on tenure and performance, so our employees make more each year. Employees earn paid time off as well as paid holidays and paid training opportunities. Regular daily, weekly and monthly incentives are part of the overall compensation our team members enjoy and include monetary incentive and prizes such as computers, tablets, phones, TV’s, trips, tickets, and even cars. In addition to our standard group benefits offering for full-time employees following 90-days of employment, all employees are eligible to opt for our MEC medical plan after only 30-days of employment. Benefits options and plans vary slightly by location. JUST A FEW OF THE BENEFITS Medical, Dental, and Vision Coverage Options Paid Time-Off Advancement Opportunity Fun, Engaging Work Environment Casual Dress Code Cash and Prize Contests PHYSICAL REQUIREMENTS:  This job operates in a professional office environment. While performing the duties of this job, the employee will be largely sedentary and will be required to sit/stand for long periods while using a computer and telephone headset. The employee will be regularly required to operate a computer and other office equipment, including a phone, copier, and printer. The employee may occasionally be required to move about the office to accomplish tasks; reach in any direction; raise or lower objects, move objects from place to place, hold onto objects, and move or exert force up to forty (40) pounds.  REASONABLE ACCOMMODATION:  Consistent with the Americans with Disabilities Act (ADA) it is the policy of MCI and affiliates to provide reasonable accommodation when requested by a qualified applicant or employee with a disability unless such accommodation would cause undue hardship. The policy regarding requests for reasonable accommodation applies to all aspects of employment. If reasonable accommodation is needed, please contact Kate Murph, Vice President of Human Resources, kate.murph@mci.world.  DIVERSITY AND EQUALITY:  At MCI and its subsidiaries, we embrace differences and believe diversity is a benefit to our employees, our company, our customers, and our community. All aspects of employment at MCI are based solely on a person's merit and qualifications. MCI maintains a work environment free from discrimination, one where employees are treated with dignity and respect. All employees share in the responsibility for fulfilling MCI's commitment to a diverse and equal opportunity work environment. MCI does not discriminate against any employee or applicant on the basis of age, ancestry, color, family or medical care leave, gender identity or expression, genetic information, marital status, medical condition, national origin, physical or mental disability, political affiliation, protected veteran status, race, religion, sex (including pregnancy), sexual orientation, or any other characteristic protected by applicable laws, regulations, and ordinances. MCI will consider for employment qualified applicants with criminal histories in a manner consistent with local and federal requirements. MCI will not tolerate discrimination or harassment based on any of these characteristics. We adhere to these principles in all aspects of employment, including recruitment, hiring, training, compensation, promotion, benefits, social and recreational programs, and discipline. In addition, it is the policy of MCI to provide reasonable accommodation to qualified employees who have protected disabilities to the extent required by applicable laws, regulations, and ordinances where an employee works. ABOUT MCI (PARENT COMPANY):  In 2019 Marlowe Companies Inc. (MCI) was named by Inc. Magazine as Iowa’s Fastest Growing Company in the State of Iowa and was named the 452nd Fastest Growing Privately Company in the USA, making the coveted top 500 for the first time. MCI’s subsidiaries had previously made Inc. Magazine's List of Fastest-Growing Companies 15 times respectively. MCI is headquartered in Iowa City, IA, and has nine customer contact management centers, IT services, and business process outsourcing service delivery facilities in Iowa, Georgia, Florida, Massachusetts, New Hampshire, Nova Scotia, and South Dakota.  Driving modernization through digitalization, MCI ensures clients do more for less. MCI is the holding company for a diverse lineup of tech-enabled business services operating companies. MCI organically grows, acquires and operates companies that have a synergistic products and services portfolios, including but not limited to Automated Contact Center Solutions (ACCS), customer contact management, IT Services (IT Schedule 70), and Temporary and Administrative Professional Staffing (TAPS Schedule 736), Business Process Management (BPM), Business Process Outsourcing (BPO), Claims Processing, Collections, Customer Experience Provider (CXP), Customer Service, Digital Experience Provider (DXP), Account Receivables Management (ARM), Application Software Development, Managed Services, and Technology Services, to mid-market, Federal & enterprise partners.  MCI now employs 2,500+ talented individuals with 150+ diverse North American client partners across the following MCI brands: GravisApps, Mass Markets, MCI Federal Services (MFS), The Sydney Call Center, OnBrand24, and Valor Intelligent Processing (VIP).  MCI provides products and services under the following NAICS Codes: 511210 Software Publishers, 518210 Data Processing, Hosting, and Related Services, 519190 All Other Information Services, 524291 Claims Adjusting, 524292 Third Party Administration of Insurance and Pension Funds, 541511 Custom Computer Programming Services, 541512 Computer Systems Design Services, 541519 Other Computer Related Services, 541519 Information Technology, and Value Added Resellers, 541611 Administrative Management and General Management Consulting Services, 541613 Marketing Consulting Services, 541690 Other Scientific and Technical Consulting Services, 541990 All Other Professional, Scientific, and Technical Services, 561110 Office Administrative Services, 561320 Temporary Help Services, 561330 Professional Employer Organizations, 561421 Telephone Answering Services, 561422 Telemarketing Bureaus and Other Contact Centers, 561431 Private Mail Centers, 561440 Collection Agencies, 561499 All Other Business Support Services, 561990 All Other Support Services, 611430 Professional and Management Development Training.  DISCLAIMER:  The purpose of the above job description is to provide potential candidates with a general overview of the role. It's not an all-inclusive list of the duties, responsibilities, skills, and qualifications required for the job. You may be asked by your supervisors or managers to perform other duties. You will be evaluated in part based upon your performance of the tasks listed in this job description. The employer has the right to revise this job description at any time. This job description is not a contract for employment, and either you or the employer may terminate employment at any time, for any reason. REGARDING COVID-19:  As an employer supporting critical Federal, State, Provincial, and Commercial clients, we have taken steps to ensure that we remain operational while taking every precaution possible to prevent the spread of COVID-19 and keep our employees safe. Measures include social distancing for those working on-site, frequent deep cleaning and disinfecting of workstations and common areas, daily contactless temperature checks for those essential employees working on-site, travel policies limiting travel and mandatory quarantine, reporting and quarantine processes and policies for those exposed, and requesting masks to be worn when on-site employees are not at their workstation.REGARDING MASKS To help protect our candidates and employees, we are REQUESTING that all on-site candidates wear a mask to interviews and training. In locations where state or local government has mandated the use of masks, we will abide by the mandate, and REQUIRE masks be worn when on-location. For more information on MCI’s response to COVID-19 please visit www.mci.world/covid-19.\",\n            \"location\": \"Manitoba\"\n        },\n        {\n            \"id\": \"CAC7EDD49355EFBFCB23BA7169789A69\",\n            \"cityName\": \"BLENZ falsecreek in Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4772fca28007a97d\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Blenz Falsecreek\",\n            \"rowSalary\": \"$15.20–$16.00 an hour\",\n            \"date\": 1694287072006,\n            \"dateOfPosted\": 1622794285777,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"LOOKING FOR HARDWORKING, MULTITASKING BARISTAS.HOURS DAILY 6AM - 6PM.EXCELLENT COMMUNICATION SKILLS ARE A MUST.E- MAIL RESUME OR DROP BY.Part-time hours: 20-40 per weekJob Types: Full-time, Part-time, PermanentSalary: $15.20-$16.00 per hourBenefits:Discounted or free foodFlexible scheduleStore discountSchedule:Day shiftHolidaysMonday to FridayNight shiftWeekendsWork remotely:No\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"91A5A166E33344969E4C72D76E7DCC9C\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0d4d3ec7c678c00e\",\n            \"jobName\": \"Call Centre Advisor\",\n            \"companyName\": \"Banque Laurentienne\",\n            \"rowSalary\": \"From $21.22 an hour\",\n            \"date\": 1694285714543,\n            \"dateOfPosted\": 1693421107230,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Montreal  Call centre Full Time  26392  30 March 2023  Laurentian Bank. Seeing beyond numbers Building a better and different financial institution Financial Benefits Working Environment Commuting and Travelling Food and Drinks Nice to have Financial BenefitsPension planGroup InsuranceStock purchase programMortgage, Line of Credit, Personal Loan, ...at low interest ratesIncentive compensationSeeing beyond numbers.TM At Laurentian Bank, we believe we can change banking for the better. Founded in Montreal in 1846, Laurentian Bank helps families, businesses and communities thrive. Today, we have over 3, 000 employees working together as One Team, to provide a broad range of financial services and advice-based solutions for customers across Canada and the United States. We drive results by placing our customers first, making the better choice, acting courageously, and believing everyone belongs.  This role sits within Laurentian Bank.  When you wake up in the morning, you'll be excited to start the day because you and team are empowered to make a difference for a client.  This position is ideal for anyone looking to start their career in the banking industry! Responsibilities You will support our customers in their daily transactional needs. You will also work in collaboration with the Consultants, Personal Services working in branch. You would support your colleagues in their advisory and business development roles in order to provide clients with the opportunity to improve their overall financial health. As such, your mandate will be to serve customers calling their customer contact center and meet their needs. Working Hours: 37.5 / week teleworking. You should be available Monday to Friday between 7am and 9pm QualificationsSix months to one year of customer service and sales experienceExperience in a call center, an assetAny other combination of training and experience deemed relevantTalented in communication and interpersonal skillsGood knowledge of MS Office (Word, Excel, Outlook)Ability to work simultaneously with multiple software and IT tools while communicating effectively with the clientTeam spirit, sense of organization, courtesy, empathy and excellent customer serviceRequired Qualification - Professional working proficiency in French and English languages required as position involves frequent written and oral communication on complex matters with internal and external parties in both languagesKnowledge of another language an assetWhat Laurentian Bank offersHourly rate starting at $21.22 with eligibility for a bonusCurrently 100% teleworkingSocial benefits (health, dental and life insurance, retirement plan, vacations and floating holidays, free teleconsultation appointments)Opportunity to join a program of share purchasesPreferential rates on our banking services (reduction on the rate of your mortgage loan, reduction on the rate in effect for your Laurentian Bank Visa card, your banking transactions at reduced prices ... and more)Are you interested in the challenge? Please submit your application today!Inclusion and Accessibility At Laurentian Bank, we believe everyone belongs. We are committed to fostering an inclusive work environment that reflects the diversity of our customers and our communities and where everyone feels like they belong and can thrive. To this end, we encourage applications from individuals from equity-deserving groups, including Indigenous persons, racialized and persons with disabilities, marginalized genders and the 2SLGBTQIA+ community. We strive to offer a flexible and accessible work experience that is inclusive of everyone. If at any time you need an accommodation, please let us know. PIPEDAWe may collect, use or disclose your personal information for the purpose of establishing an employment relationship with you. #LI-Remote  #LI-MLP \",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"747BAE9FBF082A001FEF6CDA161F2EB8\",\n            \"cityName\": \"100 13571 Verdun Place, Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=156159faa71facd4\",\n            \"jobName\": \"Customer Service/Front Counter\",\n            \"companyName\": \"Fred Holmes Fuel Injection\",\n            \"rowSalary\": \"From $22 an hour\",\n            \"date\": 1694285371420,\n            \"dateOfPosted\": 1692228065640,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal, QC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service RepresentativeStart at 8am and end at 5pm, 2 coffee breaks and 1 lunch break. Need to have strong English skills and be able to fluently communicate. Must be able to lift boxes and parts weighing 60 pounds from time to time. Training will be provided. Looking for someone to work long-term in our company.Responsibilities:- Provide exceptional customer service and support to clients- Answer incoming calls and respond to customer inquiries- Assist customers with product information, pricing, and order status- Resolve customer complaints or issues in a professional and timely manner- Process orders, returns, and exchanges accurately- Maintain customer records and update information as needed- Collaborate with other team members to ensure customer satisfaction- Conduct outbound calls to follow up with customers or provide additional informationExperience:- Previous experience in a customer service role preferred- Excellent communication skills, both verbal and written- Strong problem-solving abilities and attention to detail- Ability to multitask and prioritize tasks effectively- Proficient in using computer systems and software applications- Knowledge of CRM software is a plusJoin our team as a Customer Service Representative and be part of a dynamic and supportive work environment. We offer competitive compensation, opportunities for growth, and a positive company culture. Apply today to start your career in customer service!Job Types: Full-time, PermanentSalary: From $22.00 per hourBenefits:Casual dressCompany eventsDental careOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payApplication question(s):Are you willing to work at our facility for long term?Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Licence/Certification:Forklift Licence (preferred)Shift availability:Day Shift (required)Ability to Commute:Richmond, BC (required)Ability to Relocate:Richmond, BC: Relocate before starting work (preferred)Work Location: In personExpected start date: 2023-08-21\",\n            \"location\": \"Montréal, QC\"\n        },\n    ],\n    \"count\": 2546\n}"}],"_postman_id":"b81f8c43-99ba-4e58-baa0-50b33f8eda0a"},{"name":"Long Paged List of Jobs","event":[{"listen":"test","script":{"id":"ace8ada4-0ae4-411f-9b25-279e88e044c0","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()).to.have.property('data');","pm.expect(pm.response.json()).to.have.property('count');","","//  data","pm.expect(pm.response.json()['data'][0]).to.have.property('id');","pm.expect(pm.response.json()['data'][0]).to.have.property('cityName');","pm.expect(pm.response.json()['data'][0]).to.have.property('jobUrl');","pm.expect(pm.response.json()['data'][0]).to.have.property('jobName');","pm.expect(pm.response.json()['data'][0]).to.have.property('companyName');","pm.expect(pm.response.json()['data'][0]).to.have.property('rowSalary');","pm.expect(pm.response.json()['data'][0]).to.have.property('date');","pm.expect(pm.response.json()['data'][0]).to.have.property('dateOfPosted');","pm.expect(pm.response.json()['data'][0]).to.have.property('loc');","","// loc","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('geo');","pm.expect(pm.response.json()['data'][0]['loc']['geo']).to.have.property('lat');","pm.expect(pm.response.json()['data'][0]['loc']['geo']).to.have.property('lon');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('country');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('locality');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('formattedAddress');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('mostlyMatchedLocation');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('country_code');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('state');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('state_code');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('postalTown');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('county');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('cbsa');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('allocated');","pm.expect(pm.response.json()['data'][0]['loc']).to.have.property('location');","","// location","pm.expect(pm.response.json()['data'][0]['loc']['location']).to.have.property('name');","pm.expect(pm.response.json()['data'][0]['loc']['location']).to.have.property('type');","","pm.expect(pm.response.json()['data'][0]).to.have.property('salaryOriginal');","","// salary original","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('type');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('currency');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('period');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('salaryFrom');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('salaryTo');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('salaries');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']).to.have.property('range');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']['range']).to.have.property('gte');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']['range']).to.have.property('gt');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']['range']).to.have.property('lte');","pm.expect(pm.response.json()['data'][0]['salaryOriginal']['range']).to.have.property('lt');","pm.expect(pm.response.json()['data'][0]).to.have.property('description');","pm.expect(pm.response.json()['data'][0]).to.have.property('location');","});"],"type":"text/javascript"}}],"id":"1af3627b-833b-4c8e-bf78-af711ea683ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"CA\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"20000\",\n                \"10000000\"\n            ],\n            \"parameterType\": \"range\",\n            \"parameterKey\": \"jobSalary\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n        {\n            \"parameterValue\": [\n                \"phone sales\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"call center\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"call centre\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"telephone sales\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"customer service\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}"},"url":"//demandData/listDataApi/:page","description":"<p>This endpoint is another extension of the previous <a href=\"#list-of-jobs\">List of Jobs</a> endpoint. This endpoint returns the same information, but with 100k results divided into a maximum of 10 pages. Each page contains a maximum of 10k results; enter a whole number value 1-10 at the end of the path to return the 10k results associated with that page.</p>\n<p><em>UPDATE: Sending requests from one Bearer token to this endpoint must be spaced out to have</em> <em><strong>at least 10 seconds in between requests</strong></em>.</p>\n<p>Here is a description of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to use to create one.</p>\n<p><strong>Claro will show a maximum of 100k job postings per /listDataApi/ query. Replace :page at the end of the path with a whole number 1-10 to successfully return data.</strong></p>\n<p>Below is a sample query that will return a list of telemarketing job postings in Canada:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"CA\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"50000\",\n                \"10000000\"\n            ],\n            \"parameterType\": \"range\",\n            \"parameterKey\": \"jobSalary\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n        {\n            \"parameterValue\": [\n                \"phone sales\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"call center\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"call centre\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"telephone sales\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"customer service\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}\n\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["demandData","listDataApi",":page"],"host":["/"],"query":[],"variable":[{"id":"9a54ba28-a8ef-48ae-b74c-2fe3f397d256","description":{"content":"<p>Page number [min: 1, max: 10] (Required)</p>\n","type":"text/plain"},"type":"string","value":"1","key":"page"}]}},"response":[{"id":"0273a67b-3dbc-48e3-bf85-dca64f9b43a9","name":"Telemarketing Jobs Canada (long pages)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"CA\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"20000\",\n                \"10000000\"\n            ],\n            \"parameterType\": \"range\",\n            \"parameterKey\": \"jobSalary\"\n        },\n        {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n        {\n            \"parameterValue\": [\n                \"phone sales\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"call center\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"call centre\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"telephone sales\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"customer service\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\"\n        },\n        {\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}"},"url":{"raw":"//demandData/listDataApi/:page","host":["/"],"path":["demandData","listDataApi",":page"],"variable":[{"key":"page","value":"1","description":"Page number (Required)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 21 May 2020 12:06:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"596e2bb96eb3ffdc-VNO"},{"key":"Content-Encoding","value":"br"},{"key":"cf-request-id","value":"02d8b9a7e40000ffdcc38c3200000001"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"9FF035E31C8171819269CF32F24E1B3F\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=82f248fc951641aa\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Applied Medical\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694548693829,\n            \"dateOfPosted\": 1688898891657,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" _________________________________________________________________________________:  Applied Medical is a new generation medical device company with a proven business model and commitment to innovation fueled by rapid business growth and expansion. Our company has been developing and manufacturing advanced surgical technologies for over 35 years and has earned a strong reputation for excellence in the healthcare field. Our unique business model, combined with our dedication to delivering the highest quality products, enables team members to contribute in a larger capacity than is possible in typical positions. Position Description:  As a Customer Service Representative, you will be responsible for working within the framework of a team and performing the following activities:  Deliver exceptional customer service by consistently providing high-quality assistance, resolving customer inquiries, and ensuring their satisfaction throughout the interaction Execute order processing tasks including accurately entering customer orders, comprehending Customer Service department procedures, and conducting inventory checks for efficient and smooth operations Handle customer communication through various channels such as phone and email, promptly addressing their concerns, and maintaining a record of interactions for future reference Keep customers informed about their orders by providing order confirmations and timely updates on the status of their requests Collaborate with both external customers and internal departments like Credit, Sales Operations, and Shipping to effectively resolve customer issues and streamline processes Support additional tasks and projects as required, demonstrating flexibility and adaptability in contributing to team objectives Adhere to company policies and safety regulations, ensuring full understanding and compliance for a safe and productive work environment Position Requirements:  This position requires the following skills and attributes:  Bachelor’s degree in a related field Demonstrated proficiency in customer service, with at least one year of experience in a call center setting, preferably within a manufacturing environment Proficiency in using Microsoft Excel and Outlook Preferred:  The following skills and attributes are preferred:  Experience with SAP software Minimum of one year of experience in a manufacturing environment call center setting Benefits:  The base compensation range for this role is $18 - $25 / hour CAD for the position in Mississauga, Ontario, Canada. Actual compensation packages are based on several factors that are unique to each candidate, including but not limited to skill set, depth of experience, certifications, and specific work location. The range displayed reflects the minimum and maximum target for new hire salaries in Mississauga, Ontario, Canada based on the date of this job posting. Your recruiter can share more about the specific salary range compensation package during your hiring process.  Please understand that the compensation range may be modified in the future. Each amount of pay is considered to be wages or compensation once such amount is earned and determinable. The amount and availability of any bonus, commission, benefit or any other form of compensation may be modified at the Company’s sole discretion, consistent with the law.  The total compensation package for this position may also include [bonuses and/or other applicable incentive compensation plans].  Our total reward package also includes the following:  Training and mentorship with ongoing learning and development courses Benefits Allowance for supplemental health insurance coverage, in the absence of a group plan or similar benefits Generous vacation accrual and paid holiday schedule Equal Opportunity Employer  Applied Medical is an Equal Opportunity Employer. All qualified applicants will receive consideration for employment without regard to age, ancestry, color, disability (mental and physical), exercising the right to family care and medical leave, gender, gender expression, gender identity, genetic information, marital status, medical condition, military or veteran status, national origin, political affiliation, race, religious creed, sex (including pregnancy, childbirth, breastfeeding and related medical conditions), or sexual orientation, or any other status protected by federal, state or local laws in the locations where Applied Medical operates. \",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"282E75157AFB05A15DD0CC2D7D0F977A\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3d8bf283d90258f2\",\n            \"jobName\": \"Customer Service Manager - Automobiles\",\n            \"companyName\": \"Carzone Motors Ltd\",\n            \"rowSalary\": \"$32.50 an hour\",\n            \"date\": 1694548660417,\n            \"dateOfPosted\": 1688059795365,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 33.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    33.0\n                ],\n                \"range\": {\n                    \"gte\": 33.0,\n                    \"gt\": null,\n                    \"lte\": 33.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Manage staff and assign duties Study market research and trends to determine consumer demand, potential sales volumes and effect of competitors' operations on sales Determine merchandise and services to be sold Implement price and credits policies Locate, select and procure merchandise for resale Develop and implement marketing strategies Plan budgets and monitor revenues and expenses Determine staffing requirements Resolve problems that arise, such as customer complaints and supply shortages Plan, organize, direct, control and evaluate daily operations Recruit, hire and supervise staff and/or volunteers Supervision 3-4 people 5-10 people Work conditions and physical capabilities Fast-paced environment Work under pressure Attention to detail Combination of sitting, standing, walking Personal suitability Hardworking Positive attitude Time management Client focus Efficient interpersonal skills Excellent oral communicationWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"E1B815E2898C21D060318E4C59FD6EB4\",\n            \"cityName\": \"Petawawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d08f7e899375acb8\",\n            \"jobName\": \"Customer Service Representative - Personal Lines\",\n            \"companyName\": \"Mcdougall Insurance And Financial\",\n            \"rowSalary\": \"$40,000–$48,000 a year\",\n            \"date\": 1694548362173,\n            \"dateOfPosted\": 1694548361981,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.8982631,\n                    \"lon\": -77.2828772\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Petawawa\",\n                \"formattedAddress\": \"Petawawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Renfrew County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Petawawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"_McDougall Insurance is now the largest insurance brokerage in Eastern Ontario. We represent over 50 insurance companies, giving us the ability to offer optimal selection and competitive rates. Here at McDougall we have created an Employee Promise. The leadership of McDougall Insurance promises to foster an environment of support, empowerment and inclusion, while investing in our employee's future with McDougall Insurance. In turn, our employees promise to treat others with dignity and respect and strive to approach each day with a positive attitude and willingness to learn. Together, we promise to deliver Legendary Service to our customers and apply the McDougall principals of Trust, Honesty and Integrity with a goal of building strong lasting relationships. The result is our staff is engaged, accountable and professional._ _At McDougall Insurance and Financial we offer our employees; a comprehensive benefits package, McDougall pension plan, staff appreciation days, social events, a branch-wide yearend bonus, a competitive salary and paid vacation time starting at 3 weeks._ Our growing team is looking for a Customer Service Representative in Personal Lines to join our team in Petawawa, Ontario! Are you looking to start a new career? Do you have strong customer service skills? If so, this might be the perfect opportunity for you. We provide you with all the tools, knowledge and training you need to be successful in this role. Responsibilities: To provide legendary service directly to the client, after the sale by the Sales Executive. Communicate with the client in person, by phone, email, text, etc. to answer all of their questions/inquiries, provide professional advice or recommendations regarding their coverage, and collect relevant information. Process additions, deletions or changes to their policy on the appropriate broker management system (EPIC) Ensure all transactions and renewals are accounted for and processed accurately and on a timely basis. Provide quotations or estimates to clients on premiums, update information, and confirm data and coverage and to record appropriate changes or adjustments. Communicate with insurance company personnel as required. As an independent broker working for your client, acts as liaison with the insurer and balances the interests of the client, McDougall Insurance and the insurance company in force. Function as part of a team responsible for assisting in the collection of accounts receivable and in any other area as required. Where appropriate, procure a sale, normally through upgrading and bundling coverage for personal lines clients Qualifications: Must have exceptional customer service and communication skills. Acts in a professional manner at all times and maintains a position of trust and confidentiality. Acts in an open, respectful, honest and helpful manner with all team members, clients and other staff. Ability to work effectively in a fast-paced environment Must be willing and eligible to obtain a RIBO license RIBO stands for the Registered Insurance Brokers of Ontario. RIBO regulates the licensing, professional competence, ethical conduct and insurance related financial obligations of all independent general insurance brokers in the province of Ontario. To learn more please visit What We Offer: Dedication to investing in our employees' future by offering RIBO, CAIB, and other designation education reimbursement A supportive and inclusive culture where diversity is valued A competitive employee health and dental benefits program including long term disability A competitive pension plan Paid vacation time Access to ongoing training and development through our McDougall training team McDougall Insurance and Financial is proud to be an equal opportunity employer. We aim to find individuals who are passionate about their work and treat others with dignity and respect. If you need assistance or an accommodation, you may reach out to our Human Resources Department through our website: Job Types: Full-time, Permanent Salary: $40,000.00-$48,000.00 per year Benefits: Company events Company pension Dental care Disability insurance Employee assistance program Extended health care Life insurance Paid time off Vision care Schedule: Day shift Monday to Friday Supplemental pay types: Bonus pay Work Location: In person\",\n            \"location\": \"Petawawa, ON\"\n        },\n        {\n            \"id\": \"81189E4A9C755893B156B70D6AE54218\",\n            \"cityName\": \"120 Lowson Cres, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4001639707a94203\",\n            \"jobName\": \"E-Store Customer Service Representative\",\n            \"companyName\": \"The Quark Group\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694548266185,\n            \"dateOfPosted\": 1694548266010,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8357439,\n                    \"lon\": -97.20617569999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Lowson Cres, Winnipeg, MB R3P, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"In Office Position:The E-Store Customer Service Representative performs the daily functions of the Quarks E-Store: Upload merchandise details to the website, generating picking information for the stores, and handle troubleshooting, complaints, returns, and phone orders with exceptional customer service skills.ResponsibilitiesE store Customer Service:· Respond to email and telephone queries.· Handle customer complaints, provide appropriate solutions and alternatives within the time limits; follow up to ensure resolution.· Process special orders, exchanges and returns.Website Updates:· Upload images and group merchandise for the E-Store.\\\\· Communicate with vendors to receive images in advance of upcoming season.- Various other website maintenance dutiesOrder Fulfillment:· Generate picking info to stores.· Supply shipping information to stores.Other:· Adhere to all applicable federal and provincial regulations and company policies.· Consistently look for operational improvements.· Other duties, relevant to the position, shall be assigned as required.Requirements· 1 Year of proven customer support experience or experience as a client service representative.· Strong phone contact handling skills and active listening.· Ability to multi-task, prioritize, and manage time effectively.· Excellent communication skills.· Proficient with Microsoft Excel, Word and Outlook. Knowledge of Imagine is an asset.· Team oriented, and able to manage stress.· Bilingual is an asset.Job Type: Full-timeSalary: $16.50 per hourBenefits:Dental careExtended health carePaid time offSchedule:8 hour shiftEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Lowson Cres, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"B36CDADB489AFEB981B4FB0262F8DEB2\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d1e2d29650fe80c1\",\n            \"jobName\": \"Call Centre Agent - Customer Service\",\n            \"companyName\": \"Silverberry Travels Inc.\",\n            \"rowSalary\": \"$24 an hour\",\n            \"date\": 1694548111279,\n            \"dateOfPosted\": 1690809440670,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Experience an assetTasks Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for refunds and credits Explain the type and cost of services offered Maintain records and statistics Perform general office duties Receive payments Act as spokesperson for an organization Train and supervise staffWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"01A8616636887E540E732ABE5ACD3CE9\",\n            \"cityName\": \"6227 2 St SE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b3d587b31006e569\",\n            \"jobName\": \"Entry-Level Customer Service Representative\",\n            \"companyName\": \"Affinity 1:1\",\n            \"rowSalary\": \"$700–$1,200 a week\",\n            \"date\": 1694547852396,\n            \"dateOfPosted\": 1694547852218,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.96843759999999,\n                    \"lon\": -113.9758168\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"40 St SE, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 700.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    700.0\n                ],\n                \"range\": {\n                    \"gte\": 700.0,\n                    \"gt\": null,\n                    \"lte\": 700.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"POSITION DESCRIPTION: Customer Service Representative with excellent communication skillsWe are looking for full time and part time self-motivated and dependable Customer Service Representatives to join our team!The Customer Service Representative will serve as the primary contact for local communities. They are responsible for not only maintaining strong relationships with potential customers but also serve as a conduit between the customer and the client.POSITION SUMMARY:Working alongside clients through team based community engagement programs on behalf of different client communication campaigns throughout the year. Technical input of data and processing customer transactions. Answer questions and provide high level customer service response to inquries.WHAT WE ARE LOOKING FOR:· Highly motivated individuals· A team player, willing to go out of your way to help, support and coach your team.· Integrity – Honesty – Drive – Reliability – Hard Working – Ambition – Professionalism· Excellent interpersonal and communication skills to effectively build relationships· Ability to effectively interact with people at all levels· A self-starter who can operate with minimal supervision and is motivated to find solutions to challenges as they occur.We value our team members and their right to medical privacy. Personal health information will not be a deciding factor for employment consideration. All applicants are welcome.The health and safety of our team members, candidates and communities is our top priority. We are committed to act responsibly and have numerous health and safety protocols and precautions in place to stop the spread of COVID-19Job Types: Full-time, PermanentSalary: $700.00-$1,200.00 per weekCOVID-19 considerations:Personal preferenceJob Type: Full-timeSalary: $700.00-$1,200.00 per weekBenefits:Company eventsFlexible scheduleOn-site parkingFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payRetention bonusWork Location: In person\",\n            \"location\": \"St SE, Calgary, AB\"\n        },\n        {\n            \"id\": \"80CF7CD3F9C9853A83DF782BC5FC2A94\",\n            \"cityName\": \"6150 Highway 7, Vaughan, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7c7ba1590be7b96c\",\n            \"jobName\": \"Financial Customer Service Representative\",\n            \"companyName\": \"Pay2day\",\n            \"rowSalary\": \"From $17.55 an hour\",\n            \"date\": 1694547820383,\n            \"dateOfPosted\": 1694547820201,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.800579,\n                    \"lon\": -79.499136\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Keele St at Highway 7, Vaughan, ON L4K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you interested in growth, development, and a great team environment? If you are, join our team because you are exactly who we’re looking for! Pay2Day is a rapidly growing company with endless opportunities for career advancement. We offer alternative financial solutions and are looking for people who are client-focused, highly skilled problem solvers, and dedicated to success.Candidates must have a broad availability as this is a 7 day a week operation. Must be available to work mornings, afternoons, evenings and weekends to meet our client’s business needs.Why work for Pay2Day?· You’ll be a part of a company our customers LOVE, and we love them! Check us out on Google and Trust Pilot. We focus on doing what’s right for our clients, not what is easy.· You’ll have opportunities for advancement and development. We love developing our team, and when positions become available, we ALWAYS look internally, first.· You’ll be part of a great team. We all succeed together and want the best for everyone. Check out our Indeed reviews! We’re happily rated 4.6 stars.· You’ll have a platform to share your ideas; your voice will impact internal changes. Team members at all levels have an open-door policy. Feedback makes us stronger as individuals and employees.· You’ll have flexible, varying shifts. Our Stores are open 7 days a week with varying hours. Our team members need to be available for varying shifts throughout the week.Essential duties & responsibilities:Cash handling/teller responsibilitiesOpening/closing the branchPerforming daily calls to remind clients of payment arrangements.Reviewing applicants/completing financial risk assessment to determine approvals.Responding to client inquiries/Information requests by both in store and virtual clientsCollaborate with various departments to maximize profit while focusing on exceptional customer service and sales.Focusing on client retentionMarketing/growing the business.Additional perks:Health, Vision & Dental BenefitsAccess to an external EAPCompany events and incentivesPositive and supportive teamOpportunity for career advancementPay2Day welcomes and encourages applications from people with disabilities. Accommodations are available upon request for candidates taking part in all aspects of the selection process.For more information about our company, visit www.pay2day.ca and check out our locationsJob Types: Full-time, PermanentSalary: From $17.55 per hourBenefits:Company eventsDental careEmployee assistance programExtended health careFlexible scheduleLife insuranceVision careWellness programSchedule:10 hour shift8 hour shiftDay shiftEvening shiftHolidaysWeekends as neededEducation:Secondary School (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Highway , Vaughan, ON\"\n        },\n        {\n            \"id\": \"7C9257E9CD6EDB275EA96A8F018380EB\",\n            \"cityName\": \"1 Bass Pro Mills Drive, Vaughan, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=13f73888b8d874bb\",\n            \"jobName\": \"Teller/Customer Service Representative\",\n            \"companyName\": \"Calforex Currency Exchange\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694547812362,\n            \"dateOfPosted\": 1694547812170,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.82184669999999,\n                    \"lon\": -79.5393173\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Bass Pro Mills Dr, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Location: Vaughan Mills MallCalforex is a Canadian leader in Foreign Exchange services operating 10 retail locations in Canada. At Calforex we take pride in offering our clients competitive personalized foreign exchange services and providing unmatched customer service. Calforex is seeking motivated, talented team members who are dedicated to providing a welcoming and professional environment for our clients and fellow employees.The position of teller is of a front-line ambassador to both our local clientele and tourists from across the globe. Success at Calforex relies on the following:· Providing a welcoming and cheerful environment for clients during their transactions in branch and while interacting with clients by phone and email.· Engaging with clients to accurately determine their needs and offer appropriate products and services.· An aptitude for problem solving and responding flexibly to new challenges.· Communicating effectively and professionally with clients regarding Calforex policy and Federal or Provincial regulations for Money Service Businesses.· Commitment to on-going training for Anti-Money Laundering and Anti-Terrorist Financing legislation and regulatory requirements.Required Qualifications:· High school diploma or equivalent.· Confident in use of computers, email programs, and basic internet usage skills.· Advanced verbal and written communication skills in the following languages: English/French· Minimum 2 years of professional customer service experience.· Minimum 2 years of professional cash handling experience.· Reliable transportation or ability to commute during Branch hours.· Ability to pass a Police Clearance Report.Calforex is committed to providing an inclusive and equitable workplace for all team members and clients. We seek applicants who are committed to upholding these values.Job Type: Part-timePart-time hours: 20-40 per weekSalary: From $17.00 per hourSchedule:8 hour shiftExperience:Cash handling: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Bass Pro Mills Dr, Vaughan, ON\"\n        },\n        {\n            \"id\": \"6EBDABB132C68B136FEB70215088E11C\",\n            \"cityName\": \"126 Bridge St, Bradford, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9fe92a7b87405258\",\n            \"jobName\": \"Financial Customer Service Representative\",\n            \"companyName\": \"Pay2day\",\n            \"rowSalary\": \"From $17.55 an hour\",\n            \"date\": 1694547806010,\n            \"dateOfPosted\": 1694547805843,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.114523,\n                    \"lon\": -79.5509839\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bradford West Gwillimbury\",\n                \"formattedAddress\": \"Bridge St, Bradford West Gwillimbury, ON L0G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bradford West Gwillimbury\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you interested in growth, development, and a great team environment? If you are, join our team because you are exactly who we’re looking for! Pay2Day is a rapidly growing company with endless opportunities for career advancement. We offer alternative financial solutions and are looking for people who are client-focused, highly skilled problem solvers, and dedicated to success.Candidates must have a broad availability as this is a 7 day a week operation. Must be available to work mornings, afternoons, evenings and weekends to meet our client’s business needs.Why work for Pay2Day?· You’ll be a part of a company our customers LOVE, and we love them! Check us out on Google and Trust Pilot. We focus on doing what’s right for our clients, not what is easy.· You’ll have opportunities for advancement and development. We love developing our team, and when positions become available, we ALWAYS look internally, first.· You’ll be part of a great team. We all succeed together and want the best for everyone. Check out our Indeed reviews! We’re happily rated 4.6 stars.· You’ll have a platform to share your ideas; your voice will impact internal changes. Team members at all levels have an open-door policy. Feedback makes us stronger as individuals and employees.· You’ll have flexible, varying shifts. Our Stores are open 7 days a week with varying hours. Our team members need to be available for varying shifts throughout the week.Essential duties & responsibilities:Cash handling/teller responsibilitiesOpening/closing the branchPerforming daily calls to remind clients of payment arrangements.Reviewing applicants/completing financial risk assessment to determine approvals.Responding to client inquiries/Information requests by both in store and virtual clientsCollaborate with various departments to maximize profit while focusing on exceptional customer service and sales.Focusing on client retentionMarketing/growing the business.Additional perks:Health, Vision & Dental BenefitsAccess to an external EAPCompany events and incentivesPositive and supportive teamOpportunity for career advancementPay2Day welcomes and encourages applications from people with disabilities. Accommodations are available upon request for candidates taking part in all aspects of the selection process.For more information about our company, visit www.pay2day.ca and check out our locationsJob Types: Full-time, PermanentSalary: From $17.55 per hourBenefits:Company eventsDental careEmployee assistance programExtended health careFlexible scheduleLife insuranceVision careWellness programSchedule:10 hour shift8 hour shiftDay shiftEvening shiftHolidaysWeekends as neededEducation:Secondary School (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Bridge Street, Bradford, ON\"\n        },\n        {\n            \"id\": \"A95762D4CEDD3D1F79EBC6E4C0D4A678\",\n            \"cityName\": \"Moncton Area, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=718bc24b4dc0cab8\",\n            \"jobName\": \"Mini-Split And Duct Cleaning Technician - Customer Service Focused\",\n            \"companyName\": \"Hydrokleen Atlantic\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694547578863,\n            \"dateOfPosted\": 1694547578689,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.0878165,\n                    \"lon\": -64.7782313\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"* No Experience Required *Are you a customer service superstar looking for a new career that's more than \\\"just a job\\\"?Operating since 2018, HydroKleen Atlantic is a growing service company offering the cleaning of mini-split heat pumps, air exchanger systems, dryer vent ducts, and other HVAC systems. Our primary goals are to deliver the most thorough cleaning and the best customer service our clients can get. We have hundreds of 5-star reviews across different platforms!Our unique and proven system allows our HydroKleen technicians to provide superior cleaning without taking any system apart. No experience necessary! We are offering full training to the right candidate.What makes this a great job?- Operate your own service vehicle- Excellent work-life balance- Work independently- Stay active- Consistent support from the admin staff and other service technicians- Work in different locations every day- Interact with clients- Provide meaningful services- Represent a trustworthy brand- Competitive wages- Bonuses- No trade certification is requiredSend us your resume if you- Have excellent customer service skills- Can provide a clean driving record and clean background check- Have a valid class 5 driver's license- Have an eye for small details- Find satisfaction in being thorough- Can work efficiently with little supervision- Are highly self-motivated- Enjoy interacting with people- Have a high level of professionalism- Can lift to 50 lbs.- Want a long-term career with great pay and a supportive environmentFrench is not required but is an asset.Some marketing will be required between jobs and during quieter times of the year, i.e. door hangers, putting up flyers, approaching nearby businesses.The main job area includes Moncton and the surrounding regions. However, parts of Nova Scotia and Prince Edward Island may be included occasionally.The hours will be full-time for the most of the year, but could be less if demand slows down during the winter months.Fuel and vehicle supplied.Job Types: Full-time, Part-time, Permanent, CasualPart-time hours: 15-40 per weekSalary: From $18.00 per hourBenefits:Company carStore discountSchedule:Day shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payExperience:Customer service: 1 year (preferred)Licence/Certification:Class 5 Driver's License (required)Work Location: In person\",\n            \"location\": \"Moncton, NB\"\n        },\n        {\n            \"id\": \"F2A69D4EC3D0832FBA9A326A249FEC45\",\n            \"cityName\": \"534 17 Av SW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e40b8b3c7e9c7b03\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Affinity One To One\",\n            \"rowSalary\": \"$700–$1,200 a week\",\n            \"date\": 1694547568055,\n            \"dateOfPosted\": 1691698097870,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0696021,\n                    \"lon\": -114.2048762\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Cougar Ridge Ave SW, Calgary, AB T3H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 700.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    700.0\n                ],\n                \"range\": {\n                    \"gte\": 700.0,\n                    \"gt\": null,\n                    \"lte\": 700.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"POSITION DESCRIPTION: Customer Service Representative with excellent communication skillsWe are looking for full time and part time self-motivated and dependable Customer Service Representatives to join our team!The Customer Service Representative will serve as the primary contact for local communities. They are responsible for not only maintaining strong relationships with potential customers but also serve as a conduit between the customer and the client.POSITION SUMMARY:Working alongside clients through team based community engagement programs on behalf of different client communication campaigns throughout the year. Technical input of data and processing customer transactions. Answer questions and provide high level customer service response to inquries.WHAT WE ARE LOOKING FOR:· Highly motivated individuals· A team player, willing to go out of your way to help, support and coach your team.· Integrity – Honesty – Drive – Reliability – Hard Working – Ambition – Professionalism· Excellent interpersonal and communication skills to effectively build relationships· Ability to effectively interact with people at all levels· A self-starter who can operate with minimal supervision and is motivated to find solutions to challenges as they occur.We value our team members and their right to medical privacy. Personal health information will not be a deciding factor for employment consideration. All applicants are welcome.The health and safety of our team members, candidates and communities is our top priority. We are committed to act responsibly and have numerous health and safety protocols and precautions in place to stop the spread of COVID-19Job Types: Full-time, PermanentSalary: $700.00-$1,200.00 per weekCOVID-19 considerations:Personal preferenceJob Type: Full-timeSalary: $700.00-$1,200.00 per weekBenefits:Company eventsFlexible scheduleOn-site parkingFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payRetention bonusWork Location: In person\",\n            \"location\": \"Av SW, Calgary, AB\"\n        },\n        {\n            \"id\": \"ED118D83C561FF4C7C2D9068E775B12C\",\n            \"cityName\": \"110 Copper Creek Drive, Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=572cbb005d81415f\",\n            \"jobName\": \"Receptionist And Customer Service Representative\",\n            \"companyName\": \"Oak Ridges Vision Centre\",\n            \"rowSalary\": \"$15.50–$26.04 an hour\",\n            \"date\": 1694547521619,\n            \"dateOfPosted\": 1694547521426,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.87072740000001,\n                    \"lon\": -79.2209562\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Markham\",\n                \"formattedAddress\": \"Copper Creek Dr, Markham, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Markham\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We have an opening for a Part Time . receptionist/customer service representative in our optical/optometrist's office. This position combines the responsibilities of managing the front desk, assisting with eyewear sales and administrative patient duties. We are seeking to grow our team by adding a dedicated and outgoing person who has a strong desire to learn and a great aptitude for fashion. Being computer savvy, having great interpersonal skills and a passion for providing superb patient care is an asset.Previous optical & administrative experience is preferred, but not necessary.Primary Responsibilities and Duties: *will include but not be limited to*· General reception duties including scheduling appointments, invoicing, insurance billing, answering phones calls/emails, taking payments, etc.· Assisting patients with frame selection and lens recommendations based on the prescription written by the Optometrist· Staying current on product knowledge and fashion trends in order to accurately guide the patient· Pretesting patients using automated equipment prior to seeing the Optometrist· Miscellaneous in-office duties as assignedIf you feel you would be an asset to our team, please forward your resume and a cover letter through the link below.Job Types: Full-time, Part-time, PermanentPart-time hours: 24 per weekSalary: $16.50-$21.56 per hourBenefits:Dental careExtended health careStore discountVision careSchedule:8 hour shiftDay shiftMonday to FridayWeekend availabilitySupplemental pay types:Bonus payCommission payOvertime payAbility to commute/relocate:Markham, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Front desk: 1 year (preferred)Administrative experience: 1 year (preferred)Work Location: In personJob Type: Part-timePart-time hours: 24-40 per weekSalary: $15.50-$26.04 per hourBenefits:Dental carePaid time offFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededSupplemental pay types:Overtime payAbility to commute/relocate:Markham, ON L6B 0P9: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Front desk: 1 year (preferred)Administrative experience: 1 year (preferred)Language:Mandarin (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Copper Creek Drive, Markham, ON\"\n        },\n        {\n            \"id\": \"2DFBBDD1CE858E453B4190DCE8E35262\",\n            \"cityName\": \"Oldcastle, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f0c07c998d1a2cfa\",\n            \"jobName\": \"Customer Service Representative/Inside Sales\",\n            \"companyName\": \"Morton Food Service\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694547437029,\n            \"dateOfPosted\": 1694547436867,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.226672,\n                    \"lon\": -82.95950200000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Tecumseh\",\n                \"formattedAddress\": \"Oldcastle, Tecumseh, ON N0R 1L0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Essex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Tecumseh\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"SUMMARYThe foundation of Morton Food Service lies in our strong relationships with our customers, driven by our ‘Customer First’ philosophy. The Customer Service Representative (CSR) is responsible for providing a high level of customer service to Morton Food Service customers while supporting the initiatives/goals of the Sales Team and the organization. The CSR will be responsible for handling general inquiries, placing accurate orders, communicating with customers, and facilitating communications though all levels of the organization.The CSR is an extension of the Morton Sales Team and is a point of contact for Morton Food Service customers both internal and external. This position plays a critical role in ensuring our customers experience the highest quality of customer service through our customer first focus. Integrity, vision, professionalism, and passion are key components to the success of a Morton Customer Service Representative.CORE COMPETENCIESDetail OrientedTime Management & MultitaskingCreative and Innovative ThinkingDevelopment and Continuous LearningProblem SolvingAccountability and DependabilityDecision Making and JudgementOperating Office EquipmentEthics and IntegrityPlanning and organizingAccuracyEnforcing Policy, Rules, RegulationsNegotiation SkillsExceptional CommunicationCustomer Focused (Internal & External)TeamworkJOB DUTIESRespond to customer service calls in a courteous and professional manner.Process client orders into the company ERP/Business system with accuracy and in a timely manner.Assist customers and the sales department with orders, inquiries, and issues/concerns in a timely manner.Refer customer calls to appropriate manager where necessary (Regional Sales and Business Development Manager or Director of Sales)Investigate and troubleshoot customer service issues.Appropriately communicate brand identity and corporate position.Assist customers with standard account-related inquiries.Provide information about company products and our service.Update the company ERP/Business system (i.e., CRM) with accurate messages regarding transactions.Coordinate and follow-up on customer orders and inquiries on behalf of the Territory Sales Manager when Sales team members are unavailable (i.e., vacation coverage).Conduct call-backs to ensure customer satisfaction, as necessary.Provide customer reports to Sales as needed, including velocity reports.Ensure that Territory Sales Managers are informed of customer interactions and to work as a team to provide our customers with the best service.CSR to generate various velocity reports for customers & vendors as needed with proper approvals.Produce order confirmations and follow-up on shortages by recommending substitutions.CSR to regularly attend General Sales Meetings, product sessions and stay up to date with product knowledge.CSR to ride with Territory Sales Managers to build effective relationships with customers.Embody the Morton Food Service, Customer First philosophy.Other responsibilities may be assigned as required.REQUIREMENTSSecondary School Diploma or General Equivalency Degree required.2-5 years' experience in Customer Service preferred.Administrative skills are an asset.Previous food service experience is an asset.Working knowledge Microsoft Office applications (Outlook, Excel, Word).Excellent communication skills both oral & written.WORKING CONDITIONSManual dexterity is required to operate telephone, computer, and peripherals.Interacts with employees, management, and the customers at large.Repetitive work environmentIrregular hours, various days of the week and overtime will be required as needed.Multi-tasking, detail orientated, sometimes stressful environment.Job Type: Full-timeSalary: $18.00-$20.00 per hourBenefits:Company eventsDental careDiscounted or free foodExtended health careLife insuranceOn-site parkingVision careSchedule:8 hour shiftDay shiftHolidaysMonday to FridayOvertimeWeekends as neededSupplemental pay types:Overtime payAbility to commute/relocate:Oldcastle, ON N9G 0B8: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:customer service : 2 years (required)food service: 2 years (preferred)Work Location: In personApplication deadline: 2023-09-22Expected start date: 2023-10-02\",\n            \"location\": \"Oldcastle, ON\"\n        },\n        {\n            \"id\": \"EE3210874C562EE3364D475D11B7A63D\",\n            \"cityName\": \"More Gate Digital Group in Oshawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0ea6daef1ee43c77\",\n            \"jobName\": \"Customer Service Assistant\",\n            \"companyName\": \"More Gate Digital Group\",\n            \"rowSalary\": \"$45,000–$55,000 a year\",\n            \"date\": 1694547369720,\n            \"dateOfPosted\": 1694547369531,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8970929,\n                    \"lon\": -78.86579119999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oshawa\",\n                \"formattedAddress\": \"Oshawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oshawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Here’s why you should apply:Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingPrimary Functions:Serve as the information center for all customers, community contacts, and other company representativesMust be aware of daily activities and administrative responsibilitiesInteract with customers to provide information in response to inquiries, concerns and requests about products and servicesMust professionally handle all phone calls and route callersAnswers questions in a timely and courteous mannerProduce reports, forms, correspondence, orders and other materials as neededPerform other duties as assigned.QualificationsSolid organization and active listening skillsRazor sharp attention to detail with fast and accurate data entryCustomer service focused with creative problem solving skillsAbility to anticipate and advocate for your customers needsAbility to multi-task, prioritize and adjust to changing needsJust like your resume, a job description never tells the full story. Apply today and if you've got what it takes, we'd love to discuss everything in further detail. We know there's a lot more you'd like to know, why wait? Apply today!Job Types: Full-time, PermanentSalary: $45,000.00-$55,000.00 per yearBenefits:Dental careEmployee assistance programExtended health careOn-site parkingPaid time offFlexible Language Requirement:English not requiredFrench not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payOvertime payTipsEducation:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Oshawa, ON\"\n        },\n        {\n            \"id\": \"6764E0077CCB61873C6B8D19A16AE439\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=20879eef2776156f\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"Heed Consturction Group Ltd\",\n            \"rowSalary\": \"$35 an hour\",\n            \"date\": 1694547250165,\n            \"dateOfPosted\": 1691672910659,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 35.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35.0\n                ],\n                \"range\": {\n                    \"gte\": 35.0,\n                    \"gt\": null,\n                    \"lte\": 35.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 2 years to less than 3 yearsTasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Train or arrange for training Ensure health and safety regulations are followed Recommend personnel actions Read blueprints and drawings Requisition or order materials, equipment and suppliesWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"9CAB91B26CE97972C6D0CC760904FE4A\",\n            \"cityName\": \"3003 Grandview Highway, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=11f0937e070e39db\",\n            \"jobName\": \"Customer Service/Sales Representative\",\n            \"companyName\": \"Weserve Marketing Inc.\",\n            \"rowSalary\": \"$800–$1,500 a week\",\n            \"date\": 1694547131931,\n            \"dateOfPosted\": 1694547131701,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2582225,\n                    \"lon\": -123.0348704\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Grandview Hwy, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 800.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    800.0\n                ],\n                \"range\": {\n                    \"gte\": 800.0,\n                    \"gt\": null,\n                    \"lte\": 800.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you experienced in the Customer Service and Sales field and looking to utilize your customer-centric approach to business development?Ace Management Group is one of Toronto’s leading firms in Customer Service, Sales, and Business Development. We are dedicated to providing our clients with the utmost care and have a history of delivering profitable results and exceeding expectations in a vastly growing consulting industry. Utilizing this customer-centric and consultative approach is a cornerstone in how our Customer Service and Sales Team works together to create a dynamic, diverse and collaborative workspace.We emphasize our employee’s goals, growth, and leadership development to foster this atmosphere. As part of our Customer Service Sales Representative team, you would become an expert in all areas of consulting, customer service, sales, and leadership development. The ideal candidate is undeniably dedicated to advancing our core mission of innovation and inclusiveness. The right candidate for our Customer Service Sales Representative role is also a communications expert, empathetic towards people, and is exceptional at delivering results on behalf of our renowned clientele. If you are confident and possess these traits, joining our Customer Service Sales Representative team would be ideal for you.Customer Service Sales Representative Responsibilities:· Articulate the features and benefits of our client’s products and services directly to our customers and possess the knowledge to answer any additional questions they may have· Build rapport and long-lasting relationships with our customers to help ensure repeat business and brand loyalty· Complete the sales process with any qualifying customer who meets the client’s parameters and maintains the ability to lead with the client brand, not discounts· Support the rest of our Entry Level Customer Service Representatives and Sales teams with remaining daily responsibilities including but not limited to, compliance, product delivery tracking, and quality assurance· Drive customer engagement and satisfaction from initial contact through the point of sale to delivery of products to further help scale acquisition growth and longevity· Effectively and efficiently communicate with customers to handle all inquiries, resolve issues, and overturn any objections while completing the sales processCustomer Service Sales Representative Qualifications:· 1 year of experience in an entry-level or introductory position within the field of customer service and/or sales is preferred· A self-motivated individual dedicated to utilizing their existing skills and have a student mentality to learn new skillsets· Strong leadership skills and capability to mentor other members of the Customer Service Sales Representative and sales teams· Exceptional communication skills, both written and verbal· Tenacious and dedicated to reinforcing the core values of unbelievable customer serviceJob Types: Full-time, Part-time, Permanent, FreelancePart-time hours: 40 per weekSalary: $800.00-$1,500.00 per weekBenefits:Dental carePaid time offSchedule:Monday to FridayWeekends as neededSupplemental pay types:Commission payEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Grandview Highway, Vancouver, BC\"\n        },\n        {\n            \"id\": \"F799A9839C01D61C9260E600624B00B6\",\n            \"cityName\": \"3405 Rue F. X. Tessier, Vaudreuil-Dorion, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=53455374cb858bb2\",\n            \"jobName\": \"Administrative Assistant -Customer Service - Nfh - Adjointe Administrative-\",\n            \"companyName\": \"New Roots Herbal Inc.\",\n            \"rowSalary\": \"$20.00–$23.50 an hour\",\n            \"date\": 1694547129939,\n            \"dateOfPosted\": 1694547129705,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4112764,\n                    \"lon\": -74.0547111\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaudreuil-Dorion\",\n                \"formattedAddress\": \"Rue F.-X.-Tessier, Vaudreuil-Dorion, QC J7V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montérégie\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaudreuil-Dorion\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Administrative Assistant and Customer ServiceAre you looking to kickstart your career in this dynamic environment, Join our team as a Administrative Assistant and customer service, to gain valuable experience and develop versatile skills within the administration realm. You'll be contributing to projects that make a real impact while learning from experienced professionals in a supportive environment.Main Responsibilities✔ Take phone orders/web orders/email orders✔ Enter sales orders in SAP✔ Processing client invoices✔ Process customers’ returns, damages, and pricing errors✔ Handle company invoicing (vendors)✔ Handle client accounts, and customer complaints, issues or questions✔ Handle simple accounting transactions✔ Assist in tasks related to marketing and promotion✔ Help organize and distribute marketing materials✔ Report to the general director and handle calendar, reminders, and ongoing tasks✔ Provide monthly sales reports✔ Assist in organizing events and trips✔ Translate different documents✔ Assist in various office tasksSkills & Qualifications✔ Excellent oral and written communication skills in English and French (90 % of the calls are in English)✔ Minimum of one (1) year of experience in customer service✔ Computer proficiency with MS Office✔ Experience with SAP✔ Excellent interpersonal and communication skills✔ Team-player✔ Be organized and detail oriented✔ Experience with natural health products (an asset)✔ Naturopathic practitioner (an asset)--------------------------------------------------------------------------------------------Adjointe administrative et service à la clientèleVous souhaitez démarrer votre carrière dans un environnement dynamique ? Rejoignez notre équipe en tant qu'assistant administratif et service à la clientèle, afin d'acquérir une expérience précieuse et de développer des compétences polyvalentes dans le domaine de l'administration. Vous contribuerez à des projets qui ont un impact réel tout en apprenant auprès de professionnels expérimentés dans un environnement favorable.Principales tâches et responsabilités✔ Prendre les commandes téléphoniques/en-ligne/courriel✔ Saisir les commandes dans SAP✔ Traiter les factures✔ Gérer les retours d’articles, les dommages et les erreurs de prix des clients✔ Gérer la facturation des fournisseurs✔ Gérer les dossiers des clients, les questions ou les plaintes✔ Gérer la facturation de la compagnie✔ Traiter des transactions comptables simples✔ Assister dans les tâches reliées au marketing et aux promotions✔ Aider à organiser et à distribuer le matériel promotionnel✔ Se rapporter au chef de l’exploitation et gérer le calendrier, les rappels et les tâches en cours✔ Fournir des rapports de ventes mensuels✔ Aider à l'organisation d'événements et de voyages d’affaires✔ Traduire différents documents✔ Aider avec autres tâches de bureauCompétences et qualifications✔ Excellente communication écrite et verbale en anglais et en français (90 % des appels sont en anglais)✔ Minimum d’un (1) an d’expérience au service à la clientèle✔ Maîtrise de la suite MS Office✔ Expérience avec le logiciel SAP✔ Être doué pour la communication et les relations interpersonnelles✔ Détenir un bon esprit d’équipe✔ Être organisé et avoir le souci du détail✔ Expérience dans le domaine des produits naturels (un atout)✔ Naturopathe (un atout)Job Type: Full-timeSalary: $20.00-$23.50 per hourBenefits:Dental carePaid time offVision careSchedule:8 hour shiftDay shiftMonday to FridayAbility to commute/relocate:Vaudreuil-Dorion, QC J7V 5V5: reliably commute or plan to relocate before starting work (required)Education:DCS / DEC (preferred)Experience:Front desk: 1 year (required)Administrative experience: 1 year (required)Language:English (required)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Rue F. X. Tessier, Vaudreuil-Dorion, QC\"\n        },\n        {\n            \"id\": \"FD29D714365D87F48DEE694DBD46F26A\",\n            \"cityName\": \"London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=18ec8f7acb66185d\",\n            \"jobName\": \"Customer Service Representative - Revenue (C0746)\",\n            \"companyName\": \"City Of London\",\n            \"rowSalary\": \"$40,064–$58,655 a year\",\n            \"date\": 1694547115785,\n            \"dateOfPosted\": 1694547115602,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9849233,\n                    \"lon\": -81.2452768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40064.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40064.0\n                ],\n                \"range\": {\n                    \"gte\": 40064.0,\n                    \"gt\": null,\n                    \"lte\": 40064.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Summary of DutiesReports through the Senior Customer Service Representative - Revenue or Senior Cashier to the Manager of Customer and Assessment Services or the Supervisor of Taxation and Revenue. Provides information to the public concerning property taxes and related legislation. Receives and processes payments.Work PerformedReceives and responds to public inquires relating to property taxes at the tax counter, by telephone, or in written form. Informs the public about legislation changes, rebate programs and appeal procedures. Receives, records and deposits all revenues due to the Corporation. Processes tax payment stubs and cheques through automated payment processor in order to generate batch summaries, tapes for mainframe update and related records. Ensures accuracy of data processed. Maintains daily record of revenues received and ensures that cash and cheques reconcile to documents. Controls and files receipts. Provides back-up to the Senior Cashier as required for regular daily duties such as petty cash reimbursements and daily deposits. Researches tax accounts requiring special attention, i.e. cheques do not match remittances, account paid twice. Provides clerical assistance in the issuing of tax bills and receipts for tax payments. Assists in the processing of tax payments received in person, by mail, or by agencies including postdated cheques during installment period. Completes standard form letters as required. Assists Data Entry Transfer Clerk and Tax Certificate Clerk as required. Performs related duties as assigned.Qualifications/ExperienceOne year of a two year Community College Business Administration Diploma. One to two years' related experience.Specialized Training & LicensesSkills and abilities in the following areas are necessary: Unit 1 of the Municipal Tax Administration ProgramCompensation and Other Information$40,064 - $58,655 (Level 7) This position is being filled on a temporary basis for up to 2 years. Current hours of Work: Monday - Friday from 8:30am - 4:30pm These hours of work are subject to change in accordance with the Collective Agreement and may include evening hours and Saturdays. NOTE: Applicants may be required to complete a job related test.As an inclusive employer, we are committed to providing a fully accessible recruitment process. Please contact us at any time during the recruitment process and let us know what accessible supports you may need. FILE NUMBER COL01652  SERVICE AREA Finance Supports  DIVISION Financial Services  CLOSE DATE 19-Sep-2023  POSITION TYPE Temporary - Full Time  EMPLOYEE GROUP CUPE Local 101\",\n            \"location\": \"London, ON\"\n        },\n        {\n            \"id\": \"3601907235DFE4D630ED679DA1E4EFE3\",\n            \"cityName\": \"105 Akerley Blvd, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6d2835c5166d7d95\",\n            \"jobName\": \"Customer Service Coordinator\",\n            \"companyName\": \"Mother Hubbard's Kitchens\",\n            \"rowSalary\": \"$42,549–$56,064 a year\",\n            \"date\": 1694547036251,\n            \"dateOfPosted\": 1694547036067,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.7218486,\n                    \"lon\": -63.58213800000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Akerley Blvd, Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42549.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42549.0\n                ],\n                \"range\": {\n                    \"gte\": 42549.0,\n                    \"gt\": null,\n                    \"lte\": 42549.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job DescriptionMother Hubbard's Kitchens is looking for a full-time Customer Service Manager to join our team. The Customer Service Manager will be responsible for the day-to-day operations of the customer service department. The ideal candidate will have a background in customer service and experience in a fast-paced environment. This position will also be responsible for ensuring that all customers are satisfied with their orders, and that the company is meeting its commitments to quality, customer service, and shipping deadlines.ResponsibilitiesManage incoming calls, emails, and chats from customersRespond to customer questions and requests via phone or emailRespond to customer concerns with appropriate solutions and solutions alternativesRespond to customer complaints in a timely mannerCommunicate with customers about product information, pricing, discounts, and other products as neededBuild long-term relationships with customers by taking the time to understand their specific needsCommunicate with customers about new products and special offersMaintain records of customer interactions and issues in our CRM systemManage the company’s commitments to quality, customer service, and shipping datesKeep up-to-date on changes in policies and procedures related to the day-to-day operations of the companyStay up to date on new products and services we offer through our website or through other marketing channels (ex. TV ads)Other duties as assigned by managementSkills & Qualifications Previous experience in a customer service role (preferred)Strong phone presence; must be able to take control of the phone while maintaining good etiquette with all parties involved (customers, sales reps, management)Ability to multi-task in a fast-paced environment while maintaining patience and professionalism (customers, sales reps, management)Ability to work well under pressure while also being able to prioritize tasks (customers, sales reps, management)Ability to prioritize tasks based on importance while maintaining flexibility (customers, sales reps, management)Job Type: Full-timeSalary: $42,549.42-$56,063.74 per yearBenefits:Casual dressExtended health careLife insuranceOn-site parkingStore discountSchedule:Monday to FridaySupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Dartmouth, NS B3B 1R7: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 3 years (required)Shift availability:Day Shift (required)Work Location: In personExpected start date: 2023-09-25\",\n            \"location\": \"Akerley Blvd, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"F8FF6F701831FD05244547A16A379BF5\",\n            \"cityName\": \"526 Regent Street, Niagara-on-the-Lake, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e98f0b495831a664\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Vintage Hotels\",\n            \"rowSalary\": \"$16.65–$17.53 an hour\",\n            \"date\": 1694547030831,\n            \"dateOfPosted\": 1694547030637,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2525129,\n                    \"lon\": -79.0753177\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara-on-the-Lake\",\n                \"formattedAddress\": \"Regent St, Niagara-on-the-Lake, ON L0S 1J0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Niagara-on-the-Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Vintage Hotels is currently seeking full time Luxury Spa and Travel Advisors to join our growing Reservations team!Situated in the heart of Niagara, this is your chance to gain valuable experience within a collection of Niagara's top hotels!What you'll be doing:Answers the telephone, takes reservations, referring calls to the appropriate person/departments as necessary.Responds to Guest concerns and makes reservations for accommodations, spa, dining and theatre tickets.Performs accounting duties related to credit card approvals for reservations and daily cash reports as needed.Performs sales functions, processes expectancy reports, in-house daily lists, group rooming lists and occupancy reports.Process spa bookings and packages as required.Process forms and assist in booking purchase gift letters and donations.Processes mass mail outs for brochures, promotions, confirmation letters and special occasions for Lais Hotel Properties Limited.Respond to Guest complaints, requests and referrals as necessary.Reserve services/ amenities in conjunction with other packages being purchased.What You'll bring to the team:Excellent computer skills.Pleasant and professional telephone manner.Excellent communication skills both written and oral.Proven ability to provide excellent Guest service.Previous up-selling and/or sales experience is considered an asset.What's in it for you:Benefits & RRSP MatchingProfit SharingCareer advancement opportunitiesA tenured team to support your learning and developmentFree mealsCompany wide discountsTuition reimbursementWhile we encourage all interested candidates to apply, please note that only those selected for an interview will be contacted.Accommodations can be provided throughout the recruitment process upon request.Job Types: Full-time, PermanentSalary: $16.65-$17.53 per hourBenefits:Company eventsDiscounted or free foodEmployee assistance programLife insuranceOn-site parkingProfit sharingRRSP matchStore discountSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayWeekends as neededAbility to commute/relocate:Niagara-on-the-Lake, ON: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Regent Street, Niagara-on-the-Lake, ON\"\n        },\n        {\n            \"id\": \"2E2F3E037A758EB1459BA4FC1B93394F\",\n            \"cityName\": \"Purewater in Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=be62e0e3c390f8ac\",\n            \"jobName\": \"Customer Service Advisor (Permanent Full-Time)\",\n            \"companyName\": \"Purewater\",\n            \"rowSalary\": \"$18–$23 an hour\",\n            \"date\": 1694546879371,\n            \"dateOfPosted\": 1694546879174,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Purewater is Ottawa’s leading specialist in the service and maintenance of pools, hot tubs, and billiard tables, providing years of expertise and quality customer service. Purewater offers one of the largest selections of games tables, darts, chemicals, and parts.As a Purewater employee, you are a partner in our company's success. You will be a part of a fast-paced environment that is collaborative, challenging, and exciting.To keep up with growing demand, our service department is looking to add to their team. We are seeking a Customer Service Advisor to assist clients with troubleshooting, service requirements, and parts for their hot tub, pool, or billiard table. Using our state-of-the-art software system, you will schedule service calls, review sales orders, process transactions, and manage inventory.With in-house training and support, you will develop industry product knowledge that will ensure you can confidently assist our customers.Customer Service Advisorresponsibilities;Greet customers with a friendly attitude as they contact the service department by phone, email, or in personProvide customers with information about parts and service optionsConduct clerical duties, including filing, answering phone calls, responding to emails, and preparing documentsReview technicians' sales orders, process transactions, and send invoicesContact customers to remind them of upcoming service appointmentsHelp customers troubleshoot their technical issuesCustomer Service Advisorskills;Sound organizational skills and attention to detailExcellent verbal and written communication skillsStrong listening and comprehension skillsAbility to lift boxes up to 40lbsAdaptive and flexible in a fast-paced environmentProficient with computers and comfortable with learning new softwareProfessional phone etiquetteExceptional time managementPositive attitudeFrench is an asset, but not requiredWork RemotelyNoJob Types: Full-time, PermanentSalary: $18.00-$23.00 per hourSchedule:8 hour shiftMonday to FridaySupplemental pay types:Commission payWork Location: In person\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"AA823011BD3915ABF8E06E49D733B4D3\",\n            \"cityName\": \"48 Heritage Gate SE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=138b2990cd6acd4b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Perfect Home\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694546811255,\n            \"dateOfPosted\": 1694546811030,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.98854739999999,\n                    \"lon\": -114.0441291\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Heritage Gate SE, Calgary, AB T2H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Perfect Home is now seeking the right candidate for a full-time position as an Customer Service Representative at our Calgary location 3 days a week and 2 days in our Airdrie location.Applicants must be:Comfortable working in an exciting, fast-paced retail environmentHighly skilled in customer service (both by phone and email)Extremely organizedSkilled in time management and staying up to date with in-process files and follow upPassionate about providing excellent customer serviceAble to work independently and as a part of a teamReliableExperience in Customer service in a similar retail field (Furniture, appliances, high-end electronics sales, etc...Job duties include:Answering phones and assisting customers in-store with inquiries or directing incoming calls to the appropriate personsUpdating customers with ETA's on the arrival of their ordersData Entry using QuickbooksFilingPrinting price tagsOrganizing fabric samplesGeneral upkeep of floor detailJob Type / CategoryAs a thriving retailer in the fast-paced furniture industry, the role of Customer Service Representative is critical in ensuring our operations run smoothly and efficiently. The person in this position should have a desire to be a part of a winning team who is willing to go above and beyond to help drive our company toward further success and customer satisfaction.Job Types: Full-time, PermanentSalary: $18.00-$20.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftSupplemental pay types:Overtime payWork Location: In personApplication deadline: 2023-09-16Expected start date: 2023-09-22\",\n            \"location\": \"Heritage Gate SE, Calgary, AB\"\n        },\n        {\n            \"id\": \"C7847D70A24591F4AD6875D295AE6B0F\",\n            \"cityName\": \"6016 Yonge Street, North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=beabcd5e17f3e0a6\",\n            \"jobName\": \"Bi-Lingual Customer Service Representative (Korean And English)\",\n            \"companyName\": \"Hans Lee Insurance Agency\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694546617744,\n            \"dateOfPosted\": 1688059901930,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7542766,\n                    \"lon\": -79.40866609999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Yonge St, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Insurance office is looking for a candidate to fill a full time position. Candidate must be fluent in English and Korean.Candidate will be responsible for assisting clients with their insurance matters. No prior experience required, however previous office experience will be an asset.Candidate must have excellent computer and phone skills.All training will be provided on the job.Job Types: Full-time, PermanentSalary: From $17.00 per hourBenefits:Dental careExtended health careOn-site parkingSchedule:Day shiftMonday to FridayNo weekendsWork Location: In person\",\n            \"location\": \"Yonge Street, North York, ON\"\n        },\n        {\n            \"id\": \"2A91FB5BE94FD6019D1FD47EDF7A98DD\",\n            \"cityName\": \"Antigonish, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1c1b56e5ed91d71a\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"St. Francis Xavier University\",\n            \"rowSalary\": \"$15.93–$19.47 an hour\",\n            \"date\": 1694546281761,\n            \"dateOfPosted\": 1694546281429,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.62266049999999,\n                    \"lon\": -61.9928026\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Antigonish\",\n                \"formattedAddress\": \"Antigonish, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Antigonish County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Antigonish\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Posted: August 28, 2023 Application Deadline (extended): September 18, 2023 Customer Service Representative StFX Store NSGEU Regular Full-TimeClassification: Band 2Salary Rate: $15.93-19.47 (Based on 35 hours per week) Overview StFX is a top ranking Canadian university and we are seeking a Customer Service Representative to be a part of the team at the STFX Store and Academic Services. This opening is for a permanent, full time position. Reporting to the Manager, StFXStore, and operating in conjunction with co-workers within the store, the Customer Service Representative will be responsible for serving various needs of customers and clients of the store. Occasional overtime and alternating weekend work is expected. Responsibilities: Assisting customers in locating desired textbooks, trade books and supplies and in selecting a wide variety retail merchandise, including X-Rings Processing the sale of items via our POS System (BookLog) with timeliness, professionalism, and accuracy Answering phone and email inquiries and / or directing inquiries to appropriate personnel Maintaining a clean and tidy work and display environment. Building retail displays, stocking shelves and packing books and other merchandise for shipment. Providing service support and backfilling for the various store divisions as requested. Providing feedback to management, and area supervisors, arising via customer interaction. Qualifications/Skills: Excellent customer service skills with a focus on professionalism and quality control Excellent time management and organizational skills. Knowledge of Windows XP and MS Office Suite; proficiency in Outlook and Internet Explorer Must be able to work extended hours without sitting and able to lift 25-50lb. Commitment to learn and comply with both University and StFX Store Policies. Ability to work well with others in a cooperative, and often fast-paced, environment. Successful completion of at least one (1) year of post-secondary education would be an asset and a minimum of one (1) year experience in a similar retail environment is required. Application Instructions Closing date for applications is September 18, 2023 at 5:00pm. To apply please submit a letter of application and a resume in confidence to Human Resources, StFX University at careers@stfx.ca. Only those selected for an interview will be contacted. St. Francis Xavier University is located in Mi'kma'ki, the ancestral and unceded territory of the Mi'kmaq People. Our institution is committed to upholding the values of equity, diversity, inclusion and accessibility. We encourage applications from members of groups that have been historically disadvantaged and marginalized, including Indigenous persons (especially Mi'kmaq), racialized persons (especially African Nova Scotians), persons with disabilities, those who identify as women and/or 2SLGBTQIA+ and any others who would contribute to the diversity of our community. Please note that all qualified candidates are encouraged to apply; however, applications from Canadians and permanent residents will be given priority. We are also committed to the elimination of barriers to participation for persons with disabilities. Should you require an accommodation during the recruitment process, please contact Human Resources at hr@stfx.ca or 902-867-5038. About the StFX Store The STFX Store is the principal location for purchasing textbooks for all courses offered by StFX University, including distance courses offered by Continuing Education and Distance Education. The StFX Store also proudly offers a large assortment of StFX crested gifts, books by local authors, and adult and children's clothing. About St. Francis Xavier University Established in 1853, St. Francis Xavier University (StFX) is consistently recognized as one of the best universities in Canada. StFX exceeds the needs of today's undergraduates through providing the very best academic experience - outstanding teaching, exceptional hands-on research opportunities, and global exchanges - all within Canada's most vibrant and inspiring residential campus. Here, the focus is on the academic and the personal development of every student, making community and social engagement a large part of the learning experience. Our students are academically strong and highly engaged in every aspect of life, determined to make a positive impact on the world. In 2022, Maclean's annual university rankings put StFX #1 in student satisfaction and #2 in reputation across Canada in the primarily undergraduate category. For more, visit www.stfx.ca About Antigonish, Nova Scotia The beautiful and historic town of Antigonish is located within the northeastern corner of Nova Scotia. Only a 15-minute drive from the ocean and a two-hour drive to major urban centres, Antigonish is a family-friendly community with a diverse and growing population and provides access to excellent education at all levels. The town is surrounded by rolling countryside and beautiful beaches and is a hotspot for outdoor recreation, sports and other active lifestyle activities. Antigonish supports a vibrant culture in the arts with music, performing arts, visual arts and crafts, and fabulous festivals happening throughout the year. For more information visit www.townofantigonish.ca or www.visitantigonish.ca.\",\n            \"location\": \"Antigonish, NS\"\n        },\n        {\n            \"id\": \"405B7BC35C6C0E12575C235005C28D26\",\n            \"cityName\": \"3019 66 St NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5d53755dbe59db01\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Sweet Castle Bakery\",\n            \"rowSalary\": \"$15–$18 an hour\",\n            \"date\": 1694545108431,\n            \"dateOfPosted\": 1692846934383,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.6065656,\n                    \"lon\": -113.3801256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"24a St NW, Edmonton, AB T5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usSweet Castle Bakery is a small business in Edmonton, AB T6L 4B2. We are social, demanding, fast-paced, and our goal is to Join the Sweet Castle Bakery family, where French-inspired delights meet Edmonton's finest flavors. As the pioneer bakery in the city, we're renowned for crafting exquisite pastries and confections that evoke both nostalgia and innovation. If you're passionate about delivering unparalleled quality and service, and want to contribute to our legacy of delighting loyal customers while enchanting new ones, come be a part of our team and share in the artistry of baking excellence..Our work environment includes:Modern office settingFood providedCustomer Service RepresentativeResponsibilities:- Provide exceptional customer service to clients via phone, email, and chat- Respond to customer inquiries and resolve issues in a timely and professional manner- Analyze customer needs and recommend appropriate products or services- Process orders, returns, and exchanges accurately and efficiently- Maintain customer records and update information as needed- Collaborate with other team members to ensure customer satisfaction- Perform outbound calling to follow up on customer inquiries or resolve any outstanding issuesExperience:- Previous experience in a customer service role preferred- Strong communication skills, both verbal and written- Excellent problem-solving abilities- Ability to multitask and prioritize tasks effectively- Proficient in using computer systems and software applicationsIf you are a motivated individual with a passion for providing exceptional customer service, we would love to hear from you. Join our team and be part of a company that values its employees and offers opportunities for growth.Please note that this position may require occasional evening or weekend availability.To apply, please submit your resume and cover letter detailing your relevant experience. Only qualified candidates will be contacted for an interview.Job Type: Part-timePart-time hours: 25-30 per weekSalary: $15.00-$18.00 per hourBenefits:Store discountDay range:Monday to FridayWeekends as neededFlexible Language Requirement:French not requiredShift:Day shiftAbility to commute/relocate:Edmonton, AB T6L 4B2: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Street NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"D7C45ADFE9CB30AB128870353A47DDEF\",\n            \"cityName\": \"20 Marriott Drive, Moncton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=35d231e84a5c00dd\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Iaa, Inc.\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694544510380,\n            \"dateOfPosted\": 1688061060321,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.0878165,\n                    \"lon\": -64.7782313\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton, NB\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Urgently Hiring, Bilingual French-English, Permanent Full-Time $17/hrIAA, Inc., a leading provider of loss recovery services to the insurance industry in Canada, has an opening for a Customer Service Representative I at our facility in Moncton, NB.IAA is Canada's leading live and live-online salvage vehicle auction company with auction facilities across British Columbia, Alberta, Ontario, Quebec, and Atlantic Canada. IAA's national service offering allows sellers to standardize processes across the country and provides buyers with Canada's most extensive selection of salvage vehicles. IAA (NYSE: IAA) has nearly 4,000 talented employees and more than 200 facilities throughout the US, Canada, and the United Kingdom.The Customer Service Representative addresses all customer inquiries under the direction of the Office Supervisor, including all clerical duties needed in the office.Responsibilities include (but are not limited to the following):Apply knowledge of organization, product services and policies to provide a variety of customer support through mail, telephone and direct personal contactProcess orders and assignmentsEnter data into computer systemReference pricing and delivery informationPerform word processing assignments, filing and related clerical dutiesRespond to customer questions, complaints and requestsSet up new records and maintain existing recordsPerform word processing assignments, filing and related clerical dutiesProcess all necessary paperwork in preparation for auction day, securing necessary approvalsPerforms other duties as assignedEducation & Experience:High School diploma or equivalent experience preferred0-2 years’ previous work experienceJob Requirements:Able to communicate effectively with customersBilingual in English/FrenchAbility to function well as part of a teamBasic computer skillsTime management skillsPositive attitudeAbility to work independentlyClear communication skillsProfessional and clean appearance18 years of age or olderIn return for your excellent skills and abilities, we offer a benefits package including: health insurance, RRSP Employer Matching Contributions, STD/LTD, Life Insurance/AD&D, Employee Stock Purchasing Options.IAA is committed to providing equal employment opportunities regardless of race, religion, creed, color, sex, age, national origin, disability, sexual orientation, gender identity, genetic information, veteran status, citizenship status, or marital status.IAA is a drug-free workplace. EEOE#LI-AS1Job Types: Full-time, PermanentPay: $17.00 per hourBenefits:Dental careEmployee assistance programExtended health careLife insuranceVision careSchedule:8 hour shiftMonday to FridayEducation:Secondary School (preferred)Experience:Customer Support & Client Services Occupations: 1 year (required)Language:French (required)Work Location: In person\",\n            \"location\": \"Moncton, NB\"\n        },\n        {\n            \"id\": \"A49332E29F2B0C8ADA0A672E0A1D7FD4\",\n            \"cityName\": \"1415 Alberni Highway, Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7188c1e6a97f8f54\",\n            \"jobName\": \"Customer Service Supervisor\",\n            \"companyName\": \"Mid Island Liquor\",\n            \"rowSalary\": \"From $19.25 an hour\",\n            \"date\": 1694544207636,\n            \"dateOfPosted\": 1694544207454,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3045941,\n                    \"lon\": -124.3349719\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Parksville\",\n                \"formattedAddress\": \"Alberni Hwy, Parksville, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Parksville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Liquor is looking for a full-time Customer Service Supervisor at our Parksville Liquor Store.Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you!The Customer Service Supervisor position is a developmental role whereby the aim is to move the successful candidate to an Assistant Store Manager (ASM) position within a 12-18 month timeframe (term will be extended in the event there are no ASM positions available within 12-18 months).Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in organizing and directing the activities and operations of the store including but not limited to ordering/receiving merchandise and supplies, organizing and conducting inventory, staff supervision and training, and acting as Health and Safety Committee Liaison.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Supervisor today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. You have a minimum of 1 year liquor retail experience and a valid Serving it Right Certificate (or be willing to get certified prior to your first day).Who we are:Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve.Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op).We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.Job Types: Full-time, Fixed term contractContract length: 12-18 monthsSalary: From $19.25 per hourBenefits:Company pensionDental careDisability insuranceEmployee assistance programExtended health careLife insuranceOn-site parkingPaid time offStore discountTuition reimbursementVision careSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Alberni Highway, Parksville, BC\"\n        },\n        {\n            \"id\": \"6B7A0768C0DCF0C88DB0F4CAA50D06B0\",\n            \"cityName\": \"95 Brown's Line, Etobicoke, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3006e073b47fca5a\",\n            \"jobName\": \"Part Time Call Center Agent\",\n            \"companyName\": \"Brink's Canada Limited\",\n            \"rowSalary\": \"$22–$23 an hour\",\n            \"date\": 1694544181573,\n            \"dateOfPosted\": 1694544181377,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.60122810000001,\n                    \"lon\": -79.54501859999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Brown's Line, Toronto, ON M8W, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Summary:The Brink’s National Client Services (BNCS) department is dedicated to putting the customer at the centre of everything we do while ensuring we deliver Best in Class customer experiences! We are looking for individuals to join our team who are passionate about customers, like to solve problems and offer effectivesolutions.Availability: Monday-Sunday - 10:00-18:00, 11:00-19:00 and 13:00-21:00 shifts and either a Saturday or Sunday shift each week.Location: Etobicoke OntarioKey Responsibilities:Handle inquiries from our internal and external customers relating to our products and services via phone and emailTrouble shoot technical issues with both customers and crew members on a wide range of issues critical to business continuanceEngage with a variety of internal partners to find timely resolution on customer requests and concernsWork within a specified framework and processes to diagnose and resolve issuesExecute the delivery of specific reports through the dayBe engaged to support adhoc projects and be the primary point of contact for customer outreachMust Have Qualifications:A passion for delivering exceptional serviceA positive attitude and a desire to seek ways to improve processes and offer suggestions on how to make things better for all2+ years' experience in a Call Centre, Customer Facing role or Help desk environmentCalm demeanor with the ability to work under pressure and deliver on tight timelinesThe ability to quickly pivot from a technical issue to a billing concern, a phone call to an emailYou are a team player who believes that we win as a team or not at allSome technical savvy and the ability to walk a customer through to a solution over the phoneEffective communication skills both verbal and written – can deliver a message in a concise and easily digestible manner for a wide audienceAbility to work in a 24/7/365 day operation where shifts are scheduled based on business needsExperience working with technologyNice to Have Qualifications:Experience working within the transportation/security industryJob Type: Part-timePart-time hours: 25 per weekSalary: $22.00-$23.00 per hourSchedule:Day shiftEvening shiftMonday to FridayMorning shiftNight shiftWeekends as neededAbility to commute/relocate:Etobicoke, ON M8W 3S2: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (required)Work Location: In person\",\n            \"location\": \"Brown's Line, Toronto, ON\"\n        },\n        {\n            \"id\": \"D74DF14A681AAEC18B0F5EC36405BD6D\",\n            \"cityName\": \"144 Charles St W, Kitchener, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=08aa0ed8b7aa3c4c\",\n            \"jobName\": \"Part-Time U-Haul Rental/Customer Service Representative\",\n            \"companyName\": \"U-Haul Moving & Storage Of Kitchener\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694544175462,\n            \"dateOfPosted\": 1648574413036,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4504563,\n                    \"lon\": -80.4941865\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kitchener\",\n                \"formattedAddress\": \"Charles St W, Kitchener, ON N2G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kitchener\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking a part time Customer Service Representative with flexible hoursMUST have a valid drivers license, minimum G2Primary responsibilities include:Support the site manager with facility operationsAnswer phone inquiries from active and prospective customersShow storage units and explain terms of rental agreementPrepare rental contracts for customersPerform general routine property clean up and minor repair workEnsure all vacant storage units are clean, dry, secure, and available for new customersClick on the link below to learn more about the job.https://www.youtube.com/embed/Z7bFOd9Y2ZUU-Haul offers:Very Competitive PayFlexible HoursUniforms ProvidedRequirements:2+ years of customer service experienceBasic computer skills and knowledgeWell-developed oral, written, and presentation skills, as well as the ability to interact with othersAbility to speak clearly and persuasively in positive or negative situations and responds well to questionsValid driver’s license and the ability to maintain a good driving record to operate commercial motor vehiclesAdhere to all local state and federal vehicular regulations while drivingEducation/Training:High School Diploma or equivalentWork Environment:The work involves moderate risks or discomforts which require special safety precautions, e.g., working around moving parts or machines, fumes or irritant chemicals. May be required to use protective clothing, or gear such as masks, goggles, gloves or shields.Physical Demands:The work requires some physical exertion such as long periods of standing, walking, recurring bending, crouching, stooping, stretching, reaching or similar activities, and lifting a minimum of 50 lbs assisted or unassisted.U-Haul is an equal opportunity employer. All applications for employment will be considered without regard to race, color, religion, sex, national origin, physical or mental disability, veteran status, or any other basis protected by applicable federal, provincial, state, or local law. Individual accommodations are available on requests for applicants taking part in all aspects of the selection process. Information obtained during this process will only be shared on a need to know basis.COVID-19 precaution(s):Personal protective equipment provided or requiredPlastic shield at work stationsSocial distancing guidelines in placeSanitizing, disinfecting, or cleaning procedures in placeJob Duties:Answer incoming customer inquiriesRecord and modify customer information within the databaseEngage with clients in a friendly and professional manner while actively listening to their concernsOffer support and solutions to customers in accordance with the company's customer service policiesOther duties as requestedWork RemotelyNoJob Types: Part-time, PermanentSalary: From $16.00 per hourSchedule:8 hour shiftMonday to FridayWeekend availabilityCOVID-19 considerations:All customer are required to wear a mask, sanitizer available for all customers and staffApplication question(s):Drivers license is requiredEducation:Secondary School (required)Experience:customer service: 1 year (preferred)Licence/Certification:drivers license (required)\",\n            \"location\": \"Charles St W, Kitchener, ON\"\n        },\n        {\n            \"id\": \"0036371CF53397DBA6F937B6DFC2A2BA\",\n            \"cityName\": \"6555 Ch De La Côte De Liesse, Saint-Laurent, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a97de4bbbaea51ff\",\n            \"jobName\": \"Sale/Purchasing And Customer Service Support\",\n            \"companyName\": \"Montreal Polymers\",\n            \"rowSalary\": \"$21–$25 an hour\",\n            \"date\": 1694544086729,\n            \"dateOfPosted\": 1693696247618,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4636212,\n                    \"lon\": -73.7202654\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Ch De La, 10592 De la Côte-de-Liesse Rd, Lachine, QC H8T 1A4, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:· Works under the direction of the CEO and Sales and Purchasing Manager· Assists CEO with sales and marketing efforts to ensure wider reach to clients and potential suppliers· Identifies new markets and potential customers/suppliers, finds new leads· Works in ERP system and ensures accurate data entering,· Manages CRM pipeline for sales and purchasing.· Attends plastic exhibitions, conferences and meetings under the direction of the CEO and Sales/Purchasing Managers. Goes on trips with CEO and Sales/Purchasing Managers to acquire new suppliers and customers· Develops positive relationship with clients and suppliers· Ensures the execution of sales and purchasing deals· Performs other duties as assigned by managementThis description reflects the general details and should not be considered as a detailed description of all work requirements that may inherent in the job nor shall be construed as giving exclusive title to every function described.Qualification & Experience Requirements:· Demonstrated ability to learn software applications and spreadsheet processes and performing maintenance of production data files required.· Intermediate to advances skills with Excel required· Good knowledge of the supply chain processes· Project management experience, experienced use of ERP systems· Must have strong math skills· Ability to work with little supervision while handling multiple prioritiesMust have well developed telephone skills and etiquette and present high level of professionalismRequired Competences:· Good coordination and organizational abilities· Excellent written and verbal communication in English and French· Decisive, assertive, detail oriented, accurate, analytical, deadline-oriented· Customer focused· Excellent problem solving skills· Project management skillsJob Type: Full-timeSalary: $21.00-$25.00 per hourExpected hours: 40 per weekSchedule:Monday to FridayAbility to commute/relocate:Saint-Laurent, QC: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:Sales: 1 year (preferred)Language:English, French (required)Willingness to travel:25% (preferred)Work Location: In person\",\n            \"location\": \"Ch De La Côte De Liesse, Saint-Laurent, QC\"\n        },\n        {\n            \"id\": \"5C21969AB4DD85A00D3D216C667B5064\",\n            \"cityName\": \"579 Kerr St, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a4c95fb3663676a7\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Popeyes Louisiana Kitchen\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694544063453,\n            \"dateOfPosted\": 1659656452705,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4453934,\n                    \"lon\": -79.6845634\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Kerr St, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*The Team member with Popeyes will have skills and behaviors to create memorable experiences for our Guests. A Team member is passionate about providing Guests with the best experience possible. Must be able to follow Cajun Hospitality: Smile, make eye contact, greet the Guest, repeat the order, and thank the Guest. Team members must enjoy working with people who take food seriously yet have fun preparing and serving it. Must be committed to contributing to the collaborative spirit of the team, be energized by the opportunity to learn, grow, and explore your career potential.Essential Duties and ResponsibilitiesGreets Guests with a smile while receiving orders and processing paymentsPrepares and packages food and drink productsResponsible for maintaining the cleanliness of the restaurant, including dining room, restroom & exteriorMaintains health and safety standards in work areasDemonstrate knowledge of the brand and menu itemsCheck food quality and food temperature throughout the day to ensure the food is fresh and safe to serveUnloads and stocks inventory items as neededPrompt and regular attendance on assigned shiftsActs with integrity and honesty, and promotes the culture of PopeyesQualifications and skillsMust be at least sixteen (16) years of ageComfortable working in a fast paced environmentAbility to interact in a positive and professional manner with Guests and coworkersWillingness to learn all areas of restaurant operations & work multiple stationsAvailable to work evenings, weekends and holidaysJob Types: Full-time, PermanentSalary: $15.00-$17.00 per hourAdditional pay:Bonus payTipsBenefits:Company eventsDental careDiscounted or free foodExtended health careFlexible scheduleLife insuranceOn-site parkingProfit sharingStore discountJob Types: Full-time, Part-timeSalary: $15.00-$16.00 per hourBenefits:Dental careDiscounted or free foodExtended health careOn-site parkingVision careFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftEvening shiftSupplemental pay types:TipsAbility to commute/relocate:Oakville, ON: reliably commute or plan to relocate before starting work (required)\",\n            \"location\": \"Kerr St, Oakville, ON\"\n        },\n        {\n            \"id\": \"A2ACA65D29CC0129E2F4F4A9887B1EC0\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cec8d4d48b17dc50\",\n            \"jobName\": \"Mandarin/English Bilingual Customer Service/Scheduler\",\n            \"companyName\": \"Growth Generation Academy\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694544057069,\n            \"dateOfPosted\": 1694544056897,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Requirements:* Chinese/English Bilingual fluently is a must* Experienced in educational organization as an administrator or scheduler at least one year* Familiar with wechat, classin, zoom, google classroom, whatsapp and other app or platform* Good at communication with teachers, tutors and students, parents* Good team player* Detail, specific and accurate* Good at quick respond to customer needs* Good at use of computer and relevant app.* A quick learnerJob requirements:* Communicate between teacher and students, parents for the students' homework, teaching plan, scheduling and specific teaching requirements.* other related tasks* Manage students' homework situation and communicate with parents* Working hour: Monday to Friday at 7am-10am, 6:30pm-9:30pm. Saturday: 7am-10am, 6:30pm-8:30pmJob Type: CasualSalary: $15.50-$16.50 per hourSchedule:Monday to FridayMorning shiftNight shiftWeekends as neededApplication question(s):Do you write and speak English and Mandarin fluently?Do you do job accurately?* Are you good at communication with people？Did you ever work as customer service in educational organization or scheduler, administrator before?Do you do job detail, specific and accurateCan you work: Monday to Friday at 7am-10am, 6:30pm-9:30pm. Saturday: 7am-10am, 6:30pm-8:30pmEducation:Bachelor's Degree (preferred)Experience:scheduler, administrator, customer service: 1 year (preferred)Work Location: Remote\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"BAD6C370AF56BB921FD00913FF4AC7C6\",\n            \"cityName\": \"771 Bedford Highway, Bedford, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e6bce8503cf641db\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Route 66 North\",\n            \"rowSalary\": \"$14.50–$15.00 an hour\",\n            \"date\": 1694543895947,\n            \"dateOfPosted\": 1690835398507,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.72157869999999,\n                    \"lon\": -63.6713822\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bedford\",\n                \"formattedAddress\": \"Bedford Hwy, Bedford, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bedford\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usRoute 66 North is a Veteran-owned and operated motorcycle clothing & accessories store in Bedford, NS. We are innovative, customer-centric, and fun.Our work environment includes:Regular social eventsCasual work attireRelaxed atmosphereOn-the-job trainingCompany perksFlexible working hoursSafe work environmentLively atmosphereOur organization is seeking a Customer Service Representative to join our friendly team. The ideal candidate will take ownership over their work and enjoy the challenge of working in a dynamic and busy office environment. The successful candidate will be responsible for answering customer questions regarding our products and services, helping solve challenges they may be experiencing and prioritizing support requests.Responsibilities:Handle all customer inquiries in a timely and effective manner.Assess and resolve customers' issues, complaints, and problems.Provide regular feedback to management regarding customer satisfaction levels.Gather data on customer satisfaction levels.Use and train on all applicable software packages used by the organization.Verify the facts in situations to ensure they are correct and verifiable.Must be at least 19 years of age (to serve alcohol on our waterfront patio)Other duties as required.Job Types: Part-time, Casual, SeasonalContract length: 2 monthsPart-time hours: 24-30 per weekSalary: $14.50-$15.00 per hourBenefits:Casual dressCompany eventsDiscounted or free foodOn-site parkingSchedule:Day shiftWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Bedford, NS B4A 1A4: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Bedford Highway, Bedford, NS\"\n        },\n        {\n            \"id\": \"C4DAEA62FA15ECCAE1EE18E6F0810808\",\n            \"cityName\": \"637 Berford St, South Bruce Peninsula, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e9d61b430d09d129\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"New Orleans Pizza\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694543721583,\n            \"dateOfPosted\": 1690812654279,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.7375266,\n                    \"lon\": -81.1405109\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Wiarton\",\n                \"formattedAddress\": \"Berford St, Wiarton, ON N0H 2T0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Bruce County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Wiarton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"I am seeking part time help for days, evenings and weekends. 4-5 shifts a week, more hours available if you are willing to work days and nights. 15-20+ hours available. Candidates will be required to work as a team. Previous experience handling money would be an asset.Job Type: Part-timePart-time hours: 15-20 per weekSalary: From $17.00 per hourWork Location: In person\",\n            \"location\": \"BERFORD ST, Wiarton, ON\"\n        },\n        {\n            \"id\": \"10D7F0E095AADE7C8C711330ED20A7E6\",\n            \"cityName\": \"6380 50 Avenue, Red Deer, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fe0683610fc653c5\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Sobeys\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694543679941,\n            \"dateOfPosted\": 1693697584497,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.2720364,\n                    \"lon\": -113.8025523\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Red Deer\",\n                \"formattedAddress\": \"5301 46 Ave, Red Deer, AB T4N 3N3, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Red Deer\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate / CashierWe offer competitive salary and opportunities for professional growth.The cashiers responsibility is mainly to help customers during the checkout process. As a cashier, your job will be serving customers, handling money, counting change, accepting coupons, bagging, collecting carts, and occasional courtesy tasks. We require all staff to maintain a clean and tidy workspace at all times.As a team we must stay professional at all times, calm down situations, and always make the customers feel welcome. Job Types: Casual, Part-timePart-time hours: 20-32 per weekSalary: From $15.00 per hourExpected hours: 20 – 32 per weekBenefits:On-site parkingDay range:HolidaysMonday to FridayWeekends as neededFlexible Language Requirement:French not requiredShift:4 hour shift8 hour shiftAfternoon shiftDay shiftEvening shiftMorning shiftWork setting:Grocery storeAbility to commute/relocate:Red Deer, AB T4N 4C6: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (required)Night Shift (required)Work Location: In person\",\n            \"location\": \"Avenue, Red Deer, AB\"\n        },\n        {\n            \"id\": \"396820766ED15A2C082ACD845CF1A1BA\",\n            \"cityName\": \"CHC Paint & Body Shop Supplies in Woodbridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a82e8ceb3da53454\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Chc Paint & Body Shop Supplies\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694543662244,\n            \"dateOfPosted\": 1694543662053,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7761753,\n                    \"lon\": -79.60924299999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Woodbridge, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usCHC Paint & Body Shop Supplies is a small business in Woodbridge, ON L4L 4Y4. We are professional, agile, innovative, and our goal is to Here we believe that you will grow with the company. We will provide you with the training and tools you need to become the best version of yourself as it fits with the CHC culture and mold. We’re only successful when you are. .In your role as Customer Sales Rep you will be answering incoming customer phone calls and taking orders. You’ll also be serving walk-in customers throughout the day. You’ll need to be able to answer a basic range of questions on products and their use. You will be responsible for utilizing the POS & inventory system to complete day-to-day tasks. You will be directing all incoming and outgoing activity in the branch. Overseeing drivers, managing inventory, and maintaining a positive attitude are all essential to this position.Job Type: Full-timeSalary: From $18.00 per hourBenefits:Company eventsDental careOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Woodbridge, ON L4L 4Y4: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Licence/Certification:Driving Licence (required)Work Location: In person\",\n            \"location\": \"Woodbridge, ON\"\n        },\n        {\n            \"id\": \"53B7DD2250EEFDCC7C79AC47C7682B8E\",\n            \"cityName\": \"1200 Speers Road, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b5e0956d9a11ec85\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Chc Paint & Body Shop Supplies\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694543659311,\n            \"dateOfPosted\": 1694543659105,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4274228,\n                    \"lon\": -79.70875029999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Speers Rd, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usCHC Paint & Body Shop Supplies is a small business in Woodbridge, ON L4L 4Y4. We are professional, agile, innovative, and our goal is to Here we believe that you will grow with the company. We will provide you with the training and tools you need to become the best version of yourself as it fits with the CHC culture and mold. We’re only successful when you are. .In your role as Customer Sales Rep you will be answering incoming customer phone calls and taking orders. You’ll also be serving walk-in customers throughout the day. You’ll need to be able to answer a basic range of questions on products and their use. You will be responsible for utilizing the POS & inventory system to complete day-to-day tasks. You will be directing all incoming and outgoing activity in the branch. Overseeing drivers, managing inventory, and maintaining a positive attitude are all essential to this position.Job Type: Full-timeSalary: From $18.00 per hourBenefits:Company eventsDental careOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Oakville, ON L6L 2X4: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Licence/Certification:Driving Licence (required)Work Location: In person\",\n            \"location\": \"Speers Rd, Oakville, ON\"\n        },\n        {\n            \"id\": \"89586E33CC45C0BF6FD7FD398CCD44A2\",\n            \"cityName\": \"50 Kennedy Rd S, Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bad28675e043a4ec\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"D Light Inc.\",\n            \"rowSalary\": \"$16.00–$20.99 an hour\",\n            \"date\": 1694543658623,\n            \"dateOfPosted\": 1694543658431,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6560885,\n                    \"lon\": -79.6955164\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Kennedy Rd S, Brampton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usD LIGHT INC. is a small business in Brampton, ON L6W 3R7. We are professional, agile and our goal is to D-LIGHT INC is located in Kennedy Square mall (Brampton), Toronto, Mississauga and CherryHill Village Mall (London) is happy to offer its expertise in providing the best quality of TV SERVICE. Our tried and true system is based on many years of cumulative experience. We pride ourselves on setting up our clients for success..Our work environment includes:Modern office settingFood providedJob Title: Customer Service RepresentativeResponsibilities:- Provide exceptional customer service by responding to customer inquiries and resolving issues in a timely and professional manner- Handle a high volume of incoming calls and emails from customers- Assist customers with product information, order status, and general inquiries- Process orders, returns, and exchanges accurately and efficiently- Maintain customer records and update information as needed- Collaborate with other departments to ensure customer satisfaction- Stay up-to-date on product knowledge and company policies to provide accurate information to customers- Identify opportunities for process improvements to enhance the customer experience- Can handle store and over the phone customer-FLEXIBLE TO WORK IN OTHER BRANCH OF THE COMPANY- TECH SAVY IS A PLUSQualifications:- High school diploma or equivalent required; associate's degree preferred- Previous experience in customer service or a related field is a plus- Excellent communication skills, both verbal and written- Strong problem-solving skills and the ability to think quickly on your feet- Ability to multitask and prioritize tasks in a fast-paced environment- Attention to detail and accuracy in data entry and order processingWe offer competitive pay, comprehensive training, and opportunities for career growth within our organization. If you are passionate about providing exceptional customer service and enjoy working in a dynamic team environment, we would love to hear from you.To apply, please submit your resume and cover letter highlighting your relevant experience and why you are interested in this position.Job Type: Part-timePart-time hours: 8-25 per weekPay: $16.00-$20.99 per hourBenefits:Store discountSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayMorning shiftNight shiftOn callOvertimeWeekends as neededSupplemental pay types:Bonus payCommission payOvertime paySigning bonusTipsExperience:Call center: 1 year (required)Customer service: 1 year (required)Work Location: In personExpected start date: 2023-09-18\",\n            \"location\": \"Kennedy Rd S, Brampton, ON\"\n        },\n        {\n            \"id\": \"149742B5A6F82AD3F2A34161E04C4BAF\",\n            \"cityName\": \"759 Yates St, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dc38e8ceb6bbd640\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Peninsula Co-Op\",\n            \"rowSalary\": \"$17.00–$20.44 an hour\",\n            \"date\": 1694543658153,\n            \"dateOfPosted\": 1694543657968,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4255171,\n                    \"lon\": -123.3574492\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Yates St, Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Join our Team! Peninsula Co-op, with a central support office in Victoria, British Columbia and locations throughout Vancouver Island, is a dynamic Co-operative with annual sales in excess of $260 million. As we’ve grown and evolved, our collective roots now date back nearly 60 years, yet we remain a locally-focused Co-op with more than 116,000 members and ambitious plans to continue growing the business. Today Peninsula Co-op encompasses 18 retail gas centres, 9 Liquor Stores, aFood Centre, Commercial Cardlocks and Home Heating services.Peninsula Co-op is inviting applications for the position of Customer Service Representative at our newly acquired Yates Liquor Store (formally Liquor Express) located at 759 Yates Street, Victoria. This is a permanent, part-time role, 8-24 hours each week, applicants must be available for evenings and weekends.Applicants must be at least 19 years of age. WHO WE’RE LOOKING FOR We are a customer first liquor store looking for an individual to join our committed and engaged environment. We have an open, team, and customer-oriented culture that offers career growth and professional development. We are looking for an enthusiastic customer service professionals who:Always look for ways to be helpful and go out of their way to assist others; consistently politeGood with numbers and can handle cash and other basic numerical calculations quickly and accuratelyScan items and process transactions in an accurate and efficient manner including cash, credit and debit transactions and gift card activationsLook out for their safety and the safety of othersValues integrity and honesty; someone to admire and emulateUse your product knowledge to assist customers and answer questionsMust be able to pass a criminal record check.Serving it right certificate required.WHAT YOU’LL BE DOING Besides working with the best group of team mates and serving fantastic customers, you will be cleaning, and stocking the store, and generally ensuring our customers are taken care of and the location is clean and safe. We’ll also train and develop you for Shift Supervisor, Assistant Manager, and Site Manager opportunities if you are looking for advancement! We love to promote from within & over 70% of our leaders started with our organization in roles just like this one!WHAT WE OFFER In addition to a starting wage between $17.00 – $20.44 per hour (experience-based), Peninsula Co-op provides a competitive total compensation package that includes:Great careers and long-term opportunity for personal and professional growthProfit sharing paid four times a year!D 100 - 2261 Keating X Road, Saanichton, BC, V8M 2A5Tel 250.652.5752 peninsulaco-op.comMoving ahead, by giving back EFAPHealth & Wellness reimbursements (gym membership, yoga class, art classes etc.)Educational assistance & tuition reimbursement (100% covered)Social events (Sporting events and concert tickets, company outings)Volunteer opportunities supporting our local community events and charities!Peninsula Co-op is an equal opportunity employer. We take great pride in being a safe and inclusive workplace; supporting and celebrating the diversity of our team. We are committed to every staff member enjoying their experience working with Peninsula Co-op. We reward hard work, commitment, and results.HOW TO APPLY Any way you like! On-line through Indeed, or at www.peninsulaco-op.com. or Jen in Human Resources, 778-426-8120 if you have any questions. Posted: September 12, 2023D 100 - 2261 Keating X Road, Saanichton, BC, V8M 2A5Tel 250.652.5752 peninsulaco-op.comMoving ahead, by giving back Job Types: Part-time, PermanentPart-time hours: 8-24 per weekSalary: $17.00-$20.44 per hourBenefits:Company eventsEmployee assistance programProfit sharingTuition reimbursementWellness programSchedule:Evening shiftEvery WeekendNight shiftAbility to commute/relocate:Victoria, BC V8W 0E2: reliably commute or plan to relocate before starting work (required)Application question(s):Do you have Serving it Right Certification?Are you legally entitled to work in Canada?Work Location: In person\",\n            \"location\": \"Yates St, Victoria, BC\"\n        },\n        {\n            \"id\": \"699996A6B9DF1E3D0A8D7723443ED515\",\n            \"cityName\": \"4700 Kingsway, Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=770c4757b88c183f\",\n            \"jobName\": \"Castella Cheesecake Hiring Cashiers/Customer Service\",\n            \"companyName\": \"Castella Cheesecake Inc.\",\n            \"rowSalary\": \"$17.50–$20.00 an hour\",\n            \"date\": 1694543628632,\n            \"dateOfPosted\": 1694543628439,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.22315889999999,\n                    \"lon\": -122.9831859\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Kingsway, Burnaby, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Locations for hiring:Castella Cheesecake Metrotown StoreWith the rapid expansion of the company.Our little bakery brand is hiring Front Cashier/Customer Service. We are looking for experienced people join in our team.Job Description: -Will be working as store front staff (cashier/customer service）Salary：Starting Hourly wage 17.50-20 /hr (tips included) based on experienceExtended health, dental and vision benefit available after 12 months.Responsibilities· Manage transactions with customers using card machine· Sell goods and ensure pricing is accurate· Collect payments whether credit or debit· Issue receipts, refunds or change· Cross-sell products and introduce new ones· Resolve customer complaints, guide them and provide relevant information· Greet customers when entering or leaving the store· Maintain clean and tidy checkout areas· Track the inventory daily· Bag, box or gift-wrap packagesRequirements:Holding work permit or PR or CitizenAble to work full day shifts ( 5 days full time 8hr/day). Available to work over-time when required.Able to work both weekend.Have access to a daily vehicle or can transit to work on timeObtained Food Safe Level 1 or plan to obtain one on your own within first one months of hiring.Speaking English fluently.Passion to pursue your career as an entrepreneur. Work conscientiously and responsibly.Willing to learn new skill sets and subjects constantly.Please apply by email. ( Include your resume + state your availability and length of time intended to work)Potential applicants will be contacted by text message/call to schedule for an interview. Thanks!Job Types: Permanent, Full-timeSalary: $17.50-$20.00 per hourBenefits:Store discountFlexible Language Requirement:French not requiredShift:8 hour shiftExperience:food and beverage customer service: 2 years (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In personExpected start date: 2023-09-20\",\n            \"location\": \"Kingsway, Burnaby, BC\"\n        },\n        {\n            \"id\": \"BF648A77D81727602AB57816C27FB4EA\",\n            \"cityName\": \"517 King St, Bridgewater, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=046430a0811bee71\",\n            \"jobName\": \"Customer Service Assistant\",\n            \"companyName\": \"Northwood Custom Jewelry\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694543052021,\n            \"dateOfPosted\": 1694543051845,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.3850772,\n                    \"lon\": -64.5265088\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bridgewater\",\n                \"formattedAddress\": \"King St, Bridgewater, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bridgewater\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Overview: We're searching for a dedicated and charismatic individual to join our team as a full-time Customer Service Representative. This role is the heart of our operation, ensuring that every customer feels the warmth and care that defines our brand. If you have a passion for helping customers, an interest in learning about our unique products, and can handle multiple tasks reliably, we want you to be part of our team.Key Responsibilities:Customer Care: Provide exceptional customer service in person, over the phone, and via email, creating a welcoming and inclusive atmosphere.Shipping and Receiving: Manage shipping and receiving processes with precision to ensure the safe arrival of our beautiful jewelry.Order Organization: Maintain order organization within the office to streamline daily operations.Showroom Care: Contribute to the presentation of our jewelry cases and showroom, creating a captivating experience for our customers.Miscellaneous Tasks: Be ready to assist with various duties, including inventory, pricing, and store setup/display creation.Online Tools: Utilize various online tools for shipping, communication, and organization, with a willingness to adapt to new platforms.Communication Skills: Demonstrate excellent verbal and written communication skills to engage effectively with customers and team members.Self-Sufficiency and Time Management: The ideal candidate should possess strong organizational skills and self-discipline to efficiently manage their daily tasks. You will be responsible for various aspects of customer service, office organization, and more. Being able to prioritize and manage your workload independently is a crucial skill to thrive in this role.Reliability: Commit to a full-time schedule, Monday to Friday, from 9:00 AM to 5:30 PM, ensuring consistent and dependable presence.Additional Considerations:We are a jewelry store that sells many custom wedding and engagement rings. We often work with same sex couples and any employee must be able to serve all couples with the same care and enthusiasm. Love is love.We have a 40lb dog that works with us at the location. She is hypo-allergenic and very friendly, and she will want to be part of your day.About Us: Since our founding in 2012, Northwood Custom Jewelry has been crafting fine jewelry with a focus on ethical materials. Located on the picturesque south shore of Nova Scotia in Bridgewater, we are a small, close-knit team dedicated to celebrating love in all its forms. From crafting custom wedding and engagement rings to serving diverse couples, we believe that love knows no bounds.If you're ready to be part of our authentic and passionate team, where each day brings opportunities to create something special, we invite you to apply. Join us in spreading love through the artistry of custom jewelry while enjoying a reliable full-time schedule.Please reply with your resume along with a short introduction on why you feel you'd be a good fit for this position.Job Type: Full-timeSalary: $17.00 per hourBenefits:Dental careExtended health careOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Bridgewater, NS: reliably commute or plan to relocate before starting work (required)Application question(s):Can you tell us why you're interested in this position and why you feel you'd be a good fit with our team?Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"King St, Bridgewater, NS\"\n        },\n        {\n            \"id\": \"F6384D67F9776B36921174FCB0F33862\",\n            \"cityName\": \"Happy Valley-Goose Bay, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=689e917569a63b1d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Enterprise Holdings\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694543042060,\n            \"dateOfPosted\": 1694543041881,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.3016826,\n                    \"lon\": -60.3260842\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Happy Valley-Goose Bay\",\n                \"formattedAddress\": \"Happy Valley-Goose Bay, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 10\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Happy Valley-Goose Bay\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" The Customer Service Representative will provide a high level of customer service by assisting both internal and external customers, primarily face-to-face, supporting their branch and rental needs. The CAR Sr will gain knowledge through local training and hands-on experience to provide administrative support, service customers, and act as a rental back-up in a large home city branch or airport location. This role is available as regular part time  Opening available at the following branch location: 6 Vulcan Rd, Happy Valley-Goose Bay, NL A0P 1C0 This is a part time position that pays $19.00 / hour We offer:  Employee discount Retirement savings plan Training and development Responsibilities: Take incoming calls- reservations, rate quotes, general questions and answers, provide information and resolution for customers, other branches, insurance companies, dealerships, repair shops and other vendors  Manage outgoing calls for callback management, A/Rs and miscellaneous calls as assigned  Provide a high level of customer service by assisting customers and assessing their rental needs in person and over the phone  Meet and greet customers in a friendly and timely manner  Provide directions and general assistance  Assist to assess condition of rental upon return  Process returns, check-ins and exit kiosk transactions  Effectively market the company while picking up customers up and/or dropping off customer in a safe and courteous manner and assisting customers as needed  Understand and communicate rental terms and conditions, vehicle features and other services  May sell optional protection products, upgrades, fuel options and other additional equipment  Responsible for notifying Management of any known vehicle problems and any required vehicle maintenance  Clean vehicle interior and exterior by hand or by operating washing equipment when needed  Perform various administrative and basic accounting functions such as: research and billing support tasks, accounts receivables, transfer and key logs, run miscellaneous reports, supply maintenance, process customer billing  Perform miscellaneous and backup duties job-related duties as assigned  Equal Opportunity Employer/Disability/Veterans Qualifications: Must be at least 18 years of age. High school diploma or above required; some college preferred Must have at least 1 year prior customer service, retail, or administrative support experience Must have a valid Class 5 drivers license with no more than 2 moving violations and/or at-fault accidents on driving record in the past 3 years No drug or alcohol related conviction on driving record in the past 5 years Must be authorized to work in Canada and not require work authorization sponsorship by our company for this position now or in the future. \",\n            \"location\": \"Happy Valley-Goose Bay, NL\"\n        },\n        {\n            \"id\": \"B8AB639B0C25DF8AC31894FED2F5F0FE\",\n            \"cityName\": \"2190 Boul Le Corbusier, Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bf46a31f2dcd3f77\",\n            \"jobName\": \"Customer Service Representative/Sales Associate\",\n            \"companyName\": \"Lierre Import & Export Inc.\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694543022376,\n            \"dateOfPosted\": 1694543022206,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.57645549999999,\n                    \"lon\": -73.7428297\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Boul le Corbusier, Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Lierre.ca is looking for a candidate who has experience in customer service or has held a position as sales in the retail industry. The ideal candidate must be detail oriented, a fast learner, collaborative and can work with least supervisionMain Responsibilities:You will be responsibility of overseeing customer service including answering customer’s questions by phone, email and through our online customer service system.Be responsible for company correspondence both incoming and outgoingManaging practitioner’s schedules: booking appointments, answering questions, and receiving paymentsAssist inventory management including stock inventory receiving, incoming orders from our manufacturers, and cross-checking information.Introduce our products and help with sales service in show roomEnsure the reception and show room is clean and organizedPerforming other miscellaneous office tasks as assigned.Knowledge and Skills Required:At least 3 years previous experience in a customer service/secretary /sale in retail stores, e-commerce business or medical clinic is an assetsStrong computer proficiency and knowledge with Windows 10, Word, Excel, and other office software.Must be a fast learner and have the capacity of working with minimal supervisionStrong communication and interpersonal skills are a mustMust be able to work under pressure and in fast pace environmentMust be able to multi-task as well as a collaborative work capacity is a mustMust be fully bilingual (English and French), writing skills are requiredBenefits:- Competitive salary- Health insurance options- Paid time off- Retirement savings plan- Opportunities for career growth and advancementIf you are a motivated individual with a passion for providing exceptional customer service, we would love to hear from you. Apply now to join our team as a Customer Service Representative!Représentant(e) du service client/ventesLierre.ca est à la recherche d'un(e) candidat(e) ayant de l'expérience en service à la clientèle ou ayant occupé un poste de vendeur dans le secteur du commerce de détail. Le(la) candidat(e ) idéal(e) doit être soucieux(se) du détail, apprendre vite, collaborer et pouvoir travailler avec un minimum de supervision.Principales responsabilités:Vous serez responsable de prendre en charge le service client, notamment en répondant aux questions des clients par téléphone, par courriel et via notre système de service client en ligne.Être responsable de la correspondance de l'entreprise, autant entrante que sortanteGestion des plannings des praticiens: prise de rendez-vous, réponse aux questions et réception des paiements.Aider à la gestion des stocks, y compris la réception des stocks, les commandes entrantes de nos fabricants et la vérification croisée des informations.Présenter nos produits et aider au service de vente dans la boutique.S'assurer que la réception et la boutique sont propres et organisées.Effectuer diverses autres tâches de bureau assignées.Connaissances et compétences requises:Au moins 3 ans d'expérience au service à la clientèle/secrétariat/vente dans un magasin de détail, une entreprise de commerce électronique ou une clinique médicale est un atout.Solide maîtrise de l'informatique et connaissance de Windows 10, Word, Excel et autres logiciels de bureau.Doit apprendre vite et avoir la capacité de travailler avec un minimum de supervision.De solides compétences en communication et en relations interpersonnelles sont indispensables.Doit être capable de travailler sous pression et dans un environnement à rythme rapide.Doit être capable d'effectuer plusieurs tâches à la fois et le fait d’avoir une capacité de travail collaboratif est indispensable.Doit être entièrement bilingue (anglais et français), des compétences rédactionnelles sont requises.Pour postuler:Si vous êtes intéressé, veuillez nous soumettre votre CV, une lettre de motivation et votre salaire attendu.Job Types: Permanent, Full-timeSalary: $16.00-$20.00 per hourBenefits:Casual dressCompany eventsOn-site parkingStore discountSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Laval, QC H7S 2C9: reliably commute or plan to relocate before starting work (required)Education:DCS / DEC (preferred)Shift availability:Day Shift (preferred)Work Location: In personExpected start date: 2023-10-02\",\n            \"location\": \"Boulevard Le Corbusier, Laval, QC\"\n        },\n        {\n            \"id\": \"DE809E25D101CE0B210915E433EED3D9\",\n            \"cityName\": \"Peace River, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3de4f616ea4f33c8\",\n            \"jobName\": \"Customer Service/Office Assistant\",\n            \"companyName\": \"Rendez Vous Rv Park\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694542739249,\n            \"dateOfPosted\": 1692846382916,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 56.2331099,\n                    \"lon\": -117.3340936\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Peace River\",\n                \"formattedAddress\": \"Peace River, AB T0H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 19\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Peace River\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Rendez Vous RV Park and East Side Storage is seeking a friendly, customer-service orientated individual to fill a full-time position for the rest of the Summer that progresses into a part-time position for the Winter. This position is the Customer Service Office Assistant position located at the RV Park in Northern Sunrise County.If you enjoy meeting people from all over the world, have a creative mind, are comfortable in a changing pace environment and can work independently, then this is the job for you.Position Overview:Completing reservations for campground, Uhaul and storage facilityTelephone/reception dutiesCampground AuditsWeekly Storage AuditsCollection callsPromoting and advertising park and storage facility social media sites (create posts)Welcoming guests and helping to optimize their vacation experienceResponsible for providing service to self-storage customers and processing of U-Haul rentals.Promote tourism in our areaHandling cash and doing a daily cash out reportInventory updates and auditsOur ideal candidate will have strong initiative, confidence and possess excellent written and verbal communication skills. They will demonstrate an active interest in the company’s well-being. Be friendly and committed to providing each guest with exceptional customer service. They will be organized, eager to learn, able to work well in a team environment and must be able to work with minimal supervision. Have experience with social media posts advertising. Exceptional time management and organizational skills, react well to challenges, and anticipate needs.All service functions are automated, so comfort with computers is essential to this role. Experience with a computer-based point of sale system, hospitality & tourism is an asset. Keep in mind thisposition also requires candidate to work evenings and weekends and has some hands on/physical tasks.Required Education:Grade 12 DiplomaPrevious office experienceCustomer Service ExperienceSalary: Based on experience starting at $17/hrWe thank all applicants for their interest in the position, however, only those selected for interview will be contacted. Position will remain opened until a qualified candidate is hired.Apply on indeed or Send resume to support@rvpeaceriver.com or drop resume off at the RV park 950 Woods Road – Behind Northern Sunrise County Administration BuildingJob Types: Full-time, Part-time, Permanent, CasualPart-time hours: 20-25 per weekPay: $17.00-$19.00 per hourBenefits:Casual dressCompany eventsFlexible scheduleOn-site parkingFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftEvening shiftHolidaysMorning shiftWeekends as neededAbility to commute/relocate:Peace River, AB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Peace River, AB\"\n        },\n        {\n            \"id\": \"84761174B270F488AAD13535F6525633\",\n            \"cityName\": \"13 Harbour View Dr, Shediac, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=52943ba21cc8e674\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Enterprise Holdings\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694542724961,\n            \"dateOfPosted\": 1688898817311,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.2056036,\n                    \"lon\": -64.5692511\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Shediac\",\n                \"formattedAddress\": \"Harbour View Drive, Shediac, NB E4P, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Shediac\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Harbour View Dr, Shediac, NB Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" The Customer Service Representative Sr (CAR Sr) will provide a high level of customer service by assisting both internal and external customers, primarily face-to-face, supporting their branch and rental needs. The CAR Sr will gain knowledge through local training and hands-on experience to provide administrative support, service customers, and act as a rental back-up in a large home city branch or airport location. This role is available as regular full time.  Opening available at the following branch location: 13 HARBOURVIEW DRIVE, SHEDIAC, NB E4P 8T8This is a full time position that pays $ 17.00 / hour We offer:  Paid time off Employee discount Retirement savings plan Extended Health Benefits (Medical, Prescription Drug, Dental and Vision) Life Insurance Training and development Schedule Monday - Friday: 7:30am - 5:00pm Responsibilities: Take incoming calls- reservations, rate quotes, general questions and answers, provide information and resolution for customers, other branches, insurance companies, dealerships, repair shops and other vendors  Manage outgoing calls for callback management, A/Rs and miscellaneous calls as assigned  Provide a high level of customer service by assisting customers and assessing their rental needs in person and over the phone  Meet and greet customers in a friendly and timely manner  Provide directions and general assistance  Assist to assess condition of rental upon return  Process returns, check-ins and exit kiosk transactions  Effectively market the company while picking up customers up and/or dropping off customer in a safe and courteous manner and assisting customers as needed  Understand and communicate rental terms and conditions, vehicle features and other services  May sell optional protection products, upgrades, fuel options and other additional equipment  Responsible for notifying Management of any known vehicle problems and any required vehicle maintenance  Clean vehicle interior and exterior by hand or by operating washing equipment when needed  Perform various administrative and basic accounting functions such as: research and billing support tasks, accounts receivables, transfer and key logs, run miscellaneous reports, supply maintenance, process customer billing  Perform miscellaneous and backup duties job-related duties as assigned  Equal Opportunity Employer/Disability/Veterans Qualifications: Must be at least 18 years of age. High school diploma or above required; some college preferred Must have at least 1 year prior customer service, retail, or administrative support experience Must have a valid Full Class 5 Canadian drivers license with no more than 2 moving violations and/or at-fault accidents on driving record in the past 3 years No drug or alcohol related conviction on driving record in the past 5 years Must be authorized to work in Canada and not require work authorization sponsorship by our company for this position now or in the future.  Apart from religious observation, must be able to work the following schedule: Monday - Friday: 7:30am - 5:00pm\",\n            \"location\": \"Harbour View Dr, Shediac, NB\"\n        },\n        {\n            \"id\": \"6C2C80DD3DC3B8CBC44F2834585FD3B8\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5e377b3e2dbcf641\",\n            \"jobName\": \"Représentant Bilingue Du Service à La Clientèle / Bilingual Customer Service Rep\",\n            \"companyName\": \"Voxdata\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694542662469,\n            \"dateOfPosted\": 1694542662274,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*English version to follow* *NB : Nous n'acceptons que les candidatures provenant de la grande région de Montréal car la formation se fait à partir du bureau.* *Nous exigeons que nos candidats parlent anglais car certains de nos clients sont à l'extérieur du Québec et ne parlent que l'anglais.* Prêt à vous joindre à l'un des plus importants centres d'appels de Montréal ! VOXDATA vous attend ! Nous cherchons à agrandir notre équipe avec de nouveaux membres qui sont prêts à devenir nos prochains experts en offrant la meilleure expérience client possible ! Pour avoir une meilleure idée de notre entreprise et de nos valeurs, vous pouvez consulter notre site web ici ! https://www.voxdata.com/ Voici quelques raisons pour lesquelles il fait bon travailler chez VOXDATA : Une variété de types de postes, allant du service à la clientèle aux ventes, en passant par le soutien technique, avec des rôles uniquement en anglais ou bilingues et des options d'horaire variées - nous voulons mettre en valeur vos compétences uniques dans un poste qui vous convient le mieux !Un bureau facilement accessible et convoité au cœur du centre-ville de Montréal, et la possibilité de travailler à domicile pour nos postes hybrides !Un environnement de travail diversifié, positif et encourageant, notre objectif étant d'aider nos agents à briller et à réussir au maximum de leur potentiel !Les avantages et les bénéfices pour les employés tels que les plans de primes inclus dans nos postes, les primes supplémentaires pour les personnes les plus performantes (comme des cartes cadeaux et de l'argent supplémentaire !), les couvertures d'assurance, et les primes de recommandation des employés qui peuvent aller jusqu'à 1000 $ par personne !La possibilité d'évoluer et de développer vos compétences par le biais de réunions d'équipe, de séances de coaching individuel et d'évaluations des performances, toutes conçues pour vous aider à renforcer vos capacités et à devenir un maître dans votre travail !Des opportunités de développement interne ouvertes à tous - avec des rôles tels que chef d'équipe, coach, formateur, mentor et même des postes administratifs, nous sommes fiers de toujours nous tourner vers le personnel que nous avons déjà avec nous pour le promouvoir lorsque l'occasion se présente !Pour ce poste, vous travaillerez avec une société d'aviation bien établie. Vos tâches spécifiques seront les suivantes : Fournir un service à la clientèle de premier ordre à chaque interaction avec les clients.Répondre aux appels entrants des clients pour les aider à effectuer des réservations une fois qu'elles ont été achetées.Résoudre les problèmes liés à l'accès aux billets et à la navigation sur le site web.Répondre aux questions concernant les informations sur les billets ou aux questions générales sur les réservations.Ready to join one of the leading call centers in Montreal?! VOXDATA is waiting for you! We're looking to expand our team with new members who are ready to become our next experts in delivering the best customer experience possible! To get a better idea of our company and values, you can check out our website here! https://www.voxdata.com/ Here's a few reasons why it's great to work at VOXDATA: A variety of position types, ranging from customer service, sales, and technical support, with English-only or bilingual roles and ranging scheduling options – we want to highlight your unique skillset in a position that is best suited to you!An easily accessible and coveted office location in the heart of Downtown Montreal, and the option to work from home with our hybrid roles!A diverse, supportive, and encouraging work environment, our goal is to help our agents shine and succeed to their fullest potential!Employee benefits and perks such as bonus plans included into our positions, additional bonuses for top performers (like gift cards and extra money!), insurance coverages, and employee referral bonuses that can go up to $1000 per person!The chance to grow and develop your skills through team meetings, individual coaching sessions, and performance reviews; all designed to help you further strengthen your abilities and become a master at your job!Internal growth opportunities that are open to everyone – with roles like team leader, coach, trainer, mentor, and even administrative positions; we pride ourselves on always looking to the staff we already have with us to promote when the occasion arises!For this role, you will be working with an established aviation company. Your specific tasks will include: Providing top-tier customer service to clients in every interaction.Answering inbound calls from customers to assist with bookings/reservations after they have been purchased.Resolving issues relating to ticket access and website navigation.Answering questions regarding ticket information, or general questions about bookings/reservations.Requirements Qu'est-ce qui fait de quelqu'un un excellent candidat ? Nous recherchons des personnes qui : Disponible pour travailler 40 heures par semaine, du lundi au dimanche, de 7h00 à minuit, de préférence le soir et le week-end.Ont déjà travaillé dans le service à la clientèle, les ventes ou les centres d'appels, ou ont une expérience traduisible dans d'autres secteurs.Sont bilingues en français et en anglais.Vous pouvez apprendre à utiliser et à faire fonctionner plusieurs programmes informatiques avec facilité.Être disponible pour travailler le soir et le week-end si la campagne est opérationnelle pendant ces périodes.Avoir obtenu un diplôme de fin d'études secondaires ou un diplôme équivalent.Se considèrent comme des personnes capables de résoudre des problèmes, de s'adapter à des situations changeantes et sont motivées pour être les meilleures des meilleures !What do we think makes someone a great candidate?! We're looking for people who:Are available to work 40 hours/week within the operational hours of Monday to Sunday, between 7:00 AM to 12:00 AM (midnight), evening and weekend availability is preferred.Have worked in customer service, sales, or call centers before; or have translatable experience from other industries.Are bilingual in French and English.Can learn how to use and operate multiple computer programs with ease.Have graduated high school or have an equivalent diploma.Consider themselves to be problem-solvers, adaptable to changing situations and are motivated to be the best of the best!Benefits Soumettez votre candidature dès maintenant pour lancer le processus d'embauche et voyez par vous-même pourquoi il est formidable d'être un agent VOXDATA !Ce poste est assorti d'un salaire de base de 17,00 $/heure. Submit an application now to get the hiring process started and see for yourself why its great to be a VOXDATA agent! *This position has a base salary of $17.00/hour.*\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"D31E0751E52C34628DDEC118A0DD5AE7\",\n            \"cityName\": \"Coquitlam, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d3708956fdd4fae6\",\n            \"jobName\": \"Customer Service/Inside Sales\",\n            \"companyName\": \"Waste Control Services\",\n            \"rowSalary\": \"$45,000–$50,000 a year\",\n            \"date\": 1694542590634,\n            \"dateOfPosted\": 1694542588403,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2837626,\n                    \"lon\": -122.7932065\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Coquitlam\",\n                \"formattedAddress\": \"Coquitlam, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Coquitlam\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Waste Control Services, we understand the responsibility in front of us and the torch we hold in our line of work. Calling Greater Vancouver, British Columbia our home is a privilege in that we are surrounded by sustainability changemakers – groups who understand the impact they have on the world around them, and are deeply passionate about being a part of that positive change and making waves. In that same vein, WCS is the most comprehensive recycling collection and post-collection company in the region, and we are a recognized industry leader in helping customers achieve their sustainability goals. Our Sales department is undergoing a rapid transformation, and we are currently seeking a dedicated, confident, and enthusiastic individual looking for an opportunity to learn our industry. The Customer Service/Inside Sales Role is a fast-paced, customer satisfaction-driven position within the department, and offers the potential for career growth and future opportunities within the Sales team. The successful candidate will be responsible for providing exceptional customer service and assisting new clients with services available. If your values align with ours and you enjoy a challenge, this is the role for you. Responsibilities:Answer incoming customer calls quickly and efficiently.Respond to questions and concerns about service via phone, email, fax.Consult with customers and evaluate needs to determine best options.Build sustainable relationships and trust with customers through open and interactive communication.Handle customer complaints, provide appropriate solutions and alternatives as quickly as possible.Keep records of customer interactions.Go the ‘extra mile’ to engage customers.Escalate issues as required, i.e., to Operations Manager/Sales Manager.Provide additional service options where appropriate.Assist with inputting and processing contracts and service change forms as needed.Respond to leads that come into the Sales office via online and phone inquiries – identifying customer needs, qualifying them into the proper services, preparing and providing rate quotations.Performing site checks for customers that have come in through leads.Preparing and signing contracts for leads that have agreed to start service with us and collecting keys/fobs as needed for site access prior to service commencement.Processing service changes for new accounts that the Inside Salesperson has onboarded.Obtaining and/or processing service increases for House and Property Management accounts handled by the Sales office in response to driver issues, overweight charges, etc.Assisting with RFP ('Request For Proposal') or tender response preparation for Property Management accounts handled by the Sales office.Other duties as assigned. To be Successful:Must possess a valid Class 5 BC driver’s license.Exceptional written and verbal communication skills.Ability to multi-task, prioritize and manage time effectively.Strong attention to detail and excellent organizational skills, while being adaptable to changing priorities.Customer orientation and ability to adapt/respond to different types of characters.Demonstrate empathy, sincerity and integrity when interacting with customers.Display a positive, ‘can do’ attitude towards your work.Self-motivated, goal oriented while having the ability to work independently and in a team environment with the desire to go above and beyond to contribute to the Team’s successes. What we offer:Great Company culture, employee of the month/year, monthly events, etc. This is a permanent, full-time position that works Monday through Friday.$45,000-$50,000 per yearCompetitive benefits package including premiums paid for by the CompanyDPSP/GRRSPWork in a dynamic, collaborative, progressive and high-performing teamWaste Control Services has been a reputable employer for 29 years - come join our team and work with positive people who love what they do! We thank all applicants who have shown an interest in this position. However, we will only be contacting those candidates who are under further consideration.\",\n            \"location\": \"Coquitlam, BC\"\n        },\n        {\n            \"id\": \"19415C20CB58FF5C8FDF38F87CA116C3\",\n            \"cityName\": \"1a-1881 Steeles Ave W, North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=09d21fee2ff7097a\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Ups Canada\",\n            \"rowSalary\": \"$15.50–$16.00 an hour\",\n            \"date\": 1694541392750,\n            \"dateOfPosted\": 1694416794581,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:Primary responsibility is to deliver world-class customer service to customers. This requires strong interpersonal skills, effective oral/written communication skills and the ability to work well with others.Computer application knowledge, including Microsoft Office (Word and Excel), is recommended and may be required.Knowledge of Internet applications is preferred.Job Types: Part-time, Full-timePart-time hours: 20 per weekSalary: $15.50-$16.00 per hourSchedule:4 hour shift8 hour shiftMonday to FridayWeekends as neededAbility to commute/relocate:North York, ON: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"031E1C81D5314EB506F7843709D839C9\",\n            \"cityName\": \"2020 Rte Transcanadienne, Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a35b68fa6cb59aaa\",\n            \"jobName\": \"Inside Phone Sales Associate\",\n            \"companyName\": \"Assante Wealth Management Ltd\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694541329437,\n            \"dateOfPosted\": 1660324508513,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4903742,\n                    \"lon\": -73.7495411\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Rte Transcanadienne, Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Assante Capital Management Ltd. is one of Canadas largest independent investment firms.This is a great opportunity to join our expanding inside sales team. We are looking for motivated sales reps to generate new prospective clients for our financial advisors.Qualifications:Experience in cold calling a must.Must be assertive and well-spoken.Bilingual preferred but English only accepted.Sales driven with a positive attitude.Ability to work independently.Lead list is provided.This is a permanent part time position that may lead to full time pending results.Start date is immediate.We offer excellent salary plus bonus for qualified candidates.Hours are Monday to Thursday 5:00 p.m. to 9:00 p.m.Serious candidates only please contact 514 832 5148 to arrange for interview.Work remotelyTemporarily due to COVID-19Job Types: Part-time, PermanentSalary: $18.00-$25.00 per hourBenefits:Casual dressOn-site parkingSchedule:No weekendsSupplemental pay types:Bonus pay\",\n            \"location\": \"Rte Transcanadienne, Dorval, QC\"\n        },\n        {\n            \"id\": \"E3E0620CAEAAF6214C6F10EDC5123B47\",\n            \"cityName\": \"Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f113ff2e4eadffa1\",\n            \"jobName\": \"Customer Service Agent Outbound (Remote) - Nova Scotia\",\n            \"companyName\": \"National Diabetes Trust\",\n            \"rowSalary\": \"$15.70 an hour\",\n            \"date\": 1694541110611,\n            \"dateOfPosted\": 1694239174331,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our Organization The National Diabetes Trust is Canada’s largest charitable clothing and small household good collection service. With more than 5,000 donations bins and an active home pick-up service in communities across Canada (excluding Quebec), we collect unwanted gently used clothing and household items, using them to raise much-needed funds for Diabetes Canada.  Each year, the program diverts more than 100 million pounds of clothing and household items from landfill sites across Canada. As an employee on the National Diabetes Trust team, you are part of our national coverage in 2,500 communities, with 28 operations and 100 trucks. Join a team that is making a difference raising money for life altering charitable programs, all while helping the environment. What We Offer:Work from the comfort of your own homeEmployee Assistance Program (EAP)Registered Pension Plan (100% Employer-paid) once eligibility criteria are metCorporate discounts through Perkopolis, Value Village and GoodLife FitnessHours of Work* This role will work up to 29 hours per week in 6-hour daily time blocks, including weekends. A consistent schedule will be developed in collaboration with operational needs.  About the Outbound Customer Service Agent Role Reporting to the Virtual Contact Centre Supervisor, this role is responsible for soliciting, scheduling and confirming donation pick ups of reusable clothing and small household goods from the public. While there is no sales component to this role – we are seeking outgoing individuals with a focus on providing a “best in class” customer experience. Highlights of the role include:To solicit, schedule and/or confirm donations of reusable clothing and miscellaneous itemsThis is accomplished by reading from a standardized script to verify donor informationTo meet or exceed KPI targets and/or productivity standards as outlined by the SupervisorTo understand and promote the mission of Diabetes Canada and the National Diabetes Trust to the general publicProvide potential donors with a high level of customer service by demonstrating a professional manner, discipline and strong organizational skillsInform the Supervisor of any system or process discrepanciesMaintain accurate and up to date recordsAttend all scheduled shifts, training, and meetings as determined by the SupervisorMaintain confidentiality of donor informationAdditional duties as required, ensuring the effective operation of the Virtual Contact Centre function About You The selected candidate for this role will meet the following minimum requirements: Minimum High School Diploma6+ months of experience in customer service and/or a call centre environmentMust have in working order at all times a PC home computer, direct connect (wired) high speed internet (no Wi-Fi/router), a USB noise cancelling headset, and either an All-in-One Printer (copier, scanner, printer) OR the ability to sign documents electronically.Must have full availability between the hours of Monday-Friday 3pm-9pm EST and Saturdays and Sundays 11am -5pm EST.Strong computer skills and experience with computer databases (mouse, keyboarding, opening/closing programs, locating files, installing/uninstalling programs, updating software, basic troubleshooting)Intermediate web and email skills (internet, downloading, logging on/off, clearing history, sending, and receiving email messages, (attaching/saving/opening files), message boards, instant messagingDisciplined and organized self-starter who can succeed in a fast-paced, high volume call environment, while being able to manage multiple tasksBasic competency in Microsoft Office and AdobeAdvanced Oral and Written communication -  Diversity, Equity and Inclusion Statement At National Diabetes Trust, we are guided by our values of Accountability, Teamwork, Integrity, and Respect. We believe in the importance of Diversity, Equity and Inclusion (DEI). We are committed to bringing people together in a respectful, inclusive and supportive environment, no matter their age, gender, identity, race, ethnicity, religion, income, sexual orientation, or where they live. In July of 2020, we signed the BlackNorth Initiative CEO pledge and will hold ourselves accountable in meeting those commitments.  How to Apply Must be legally eligible to work in Canada and, where applicable, must have a valid work permit or study permit that allows the candidate to fulfill the requirements of the role.NDT welcomes applications from all qualified candidates, including women, Indigenous peoples, persons with disabilities, and members of visible minorities. We value a diverse workforce that reflects the communities we serve.We are committed to accommodating people with disabilities as part of our hiring process. If you have special requirements, please advise us during the recruitment process.We thank all interested applicants; however, only those selected for an interview will be contacted. INDNDTL\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"375E6204B9804552C5AE4D5511E5C66B\",\n            \"cityName\": \"211 Carlton Street, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ac1e6f33afdc13b4\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Capital Dodge\",\n            \"rowSalary\": \"$16–$18 an hour\",\n            \"date\": 1694540110931,\n            \"dateOfPosted\": 1666513918762,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.66338409999999,\n                    \"lon\": -79.3721451\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Carlton St, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking to hire conscientious, detail-orientated and responsible individuals for the vacant position of a Customer Service Representative. The successful candidates will provide exceptional customer service to current and potential customers, assisting in customer connections and sales, account establishment, maintenance, etc.Job duties include, but are not limited to the following:Answering inbound phone calls and/or live chats to provide awesome customer serviceMaking outbound warm calls to our customers to help with their inquiriesProviding excellent customer service by guiding and helping others with a friendly attitudeEffectively utilizing and navigating internal resources to arrive at the right solution for the client (e.g. computer systems, online resources)Participating in training and certification coursesQualifications:Strong interpersonal skills, including the ability to communicate effectively, both verbally and in writingDemonstrated ability to set deadlines, manage, prioritize, and plan effectively.Must be articulate and have an excellent command of the English languageMust demonstrate a high level of professionalism with excellent typing, communication, and computer skillsAbility to communicate with co-workers and other departments with professionalism and respectJob Type: Full-timeSalary: $16.00-$18.00 per hourBenefits:Dental careLanguage training providedFlexible Language Requirement:French not requiredSchedule:8 hour shiftSupplemental pay types:Bonus payWork Location: Remote\",\n            \"location\": \"Carlton St, Toronto, ON\"\n        },\n        {\n            \"id\": \"74D48C5135CFE032F63864EC7BE12B8A\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1ebef99a9514943f\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Diamond Delivery\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694539379005,\n            \"dateOfPosted\": 1631254248732,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Diamond Delivery in Surrey, BC is seeking a Full-time or Part-time Customer Service Representative to join our team! Our rapidly growing business is looking for hardworking, motivated, friendly individuals who have a passion for delivering exceptional customer service.  An example of duties include; answering a high volume of inbound calls, order entry, customer service resolutions, driver paperwork maintenance, customer rate quotes.  Desired qualifications: Previous inbound call-centre experienceExcellent customer service skills and a positive attitudeAbility to multi-task and to thrive in a fast-paced environmentCapable of maintaining a calm & collected demeanor when under pressureMotivated to find solutions to challenges that occur, with a focus on follow-throughExceptional communication skillsStrong computer skills with a minimum keyboarding speed of 35 WPM Industry knowledge would be an asset, although training will be provided. We offer a competitive wage based upon experience with benefits after 3 months to full time employees.  Job Duties: Answer incoming customer inquiriesCollaborate with key stakeholders and teams to stay updated on new products, services, and policiesEngage with clients in a friendly and professional manner while actively listening to their concernsOffer support and solutions to customers in accordance with the company's customer service policiesOther duties as requested Please send resume to aholland@rdiamondgroup.com. \",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"E538D69041F8368298151953B0DD8E24\",\n            \"cityName\": \"London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=00e95391d5e07eec\",\n            \"jobName\": \"Customer Service Agent 3 - London - Full Time - Perm - Bilingual (French & English)\",\n            \"companyName\": \"Serco North America\",\n            \"rowSalary\": \"$21.86 an hour\",\n            \"date\": 1694538945534,\n            \"dateOfPosted\": 1691660607138,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9849233,\n                    \"lon\": -81.2452768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Position Description :  This role has a starting hourly rate of $21.86!  Serco Canada Inc. operates all the DriveTest Centres across Ontario on behalf of the Ministry of Transportation. As a customer service agent with Serco Canada Inc., you will be based out of one of our 56 Ontario DriveTest Centres. If you are a positive and professional team player who enjoys working with the public in a high energy environment, rewarding job opportunities await you at Serco Canada Inc.  Customer service agents are responsible for providing information and assisting members of the public at various stages of the driver’s licensing process. Some of the work includes responding to customer inquiries in person and on the telephone, providing information about licence rules and regulations, verifying driver records, taking applicant photos, scheduling road test appointments, collecting applicable fees, and preparing reports. Customer service agents must have excellent time management and organizational skills and exercise superior judgment skills. We require individuals who can work independently, meet deadlines, and strive to achieve customer satisfaction in all aspects of their work.  Purpose of the Job: Provides information and assistance related to driver examination services. Reviews information, determines test(s) requirements, and conducts/processes transactions and exams inside the DriveTest Centre. Assists in the smooth and efficient administration of examinations, including preparation of test takers entry, invigilating, the distribution of exam materials, and the collection of examinations. Ensures the fair and proper conduct of examinations. Creates a calm, professional, and supportive environment that enables applicants to perform to the best of their abilities. Provides Security Guard Testing (SGT) examination services support. Primary Duties and Responsibilities: Responds to inquiries related to driver licensing, determines applicant status, and provides information regarding test/re-test procedures and regulations relating to all classes of licences. Distributes and verifies application forms for accuracy and completeness. Investigates problems or errors in licence records and initiates corrections. Captures applicant photos, administers vision tests to ensure minimum requirements are met, and provides referrals to vision specialists. Collects applicable fees accurately. Conducts and processes knowledge tests, dispatches road test appointments, provides results, issues temporary driver’s licences, and processes licensing changes. Identifies licence exchange privileges and/or test requirements for driver’s licence applicants from other countries, provinces, and jurisdictions; assesses foreign licence eligibility, translations, and letters of authentication from other countries. Contacts members of the public to communicate information and correct errors. Administers commercial licence renewals, including accepting medical examination reports and criminal record checks. Escalates customer concerns and redirects customers to other government agencies, when required. Qualifications :  To be successful in this role, you must have:  Fluency level in French and English. Valid Ontario class “G” of licence is required. 1-4 years of customer service experience in a service environment is preferred to include, but not required:  Airline Industry Financial Industry Banking Industry Federal and Local Government Services Healthcare Industry Must have and maintain an acceptable driving record. Intermediate-level computer skills in Microsoft Office are required. Touch-typing and data entry. Must be able to perform physical duties of the position, this may include sitting or standing for extended periods of time and entering and existing vehicles up to 30 times per shift. Must pass Criminal Record Check (CPIC); Fingerprint Criminal Record Check. **Employee hours vary based on customer demand and location’s operating hours. **This position may require extended shift hours and possibly Saturday hours (depending on location) during certain periods of the year when Drive Test Centre volume is higher. **This position requires the attendance of a formal training session, which includes classroom instruction with experienced and qualified trainers and on-the-job shadowing at a Drive Test Centre facilitated by a coach. If you are unsuccessful at any stage of the training, your employment will end effective immediately. If you are interested in supporting and working with our Customer Service professionals and a passionate Serco team- then submit your application now for immediate consideration. It only takes a few minutes and could change your career! Company Overview :  Serco Inc. (Serco) is the Americas division of Serco Group, plc. In North America, Serco’s 9,000+ employees strive to make an impact every day across 100+ sites in the areas of Defense, Citizen Services, and Transportation. We help our clients deliver vital services more efficiently while increasing the satisfaction of their end customers. Serco serves every branch of the U.S. military, numerous U.S. Federal civilian agencies, the Intelligence Community, the Canadian government, state, provincial and local governments, and commercial clients. While your place may look a little different depending on your role, we know you will find yours here. Wherever you work and whatever you do, we invite you to discover your place in our world. Serco is a place you can count on and where you can make an impact because every contribution matters.  To review Serco benefits please visit: https://www.serco.com/na/careers/benefits-of-choosing-serco. If you require an accommodation with the application process please email: careers@serco-na.com or call the HR Service Desk at 800-628-6458, option 1. Please note, due to EEOC/OFCCP compliance, Serco is unable to accept resumes by email.  Candidates may be asked to present proof of identify during the selection process. If requested, this will require presentation of a government-issued I.D. (with photo) with name and address that match the information entered on the application. Serco will not take possession of or retain/store the information provided as proof of identity. For more information on how Serco uses your information, please see our Applicant Privacy Policy and Notice.  Serco does not accept unsolicited resumes through or from search firms or staffing agencies without being a contracted approved vendor. All unsolicited resumes will be considered the property of Serco and will not be obligated to pay a placement or contract fee. If you are interested in becoming an approved vendor at Serco, please email Agencies@serco-na.com.  Serco is an equal opportunity employer. We evaluate qualified applicants without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, disability, veteran status, and other legally protected characteristics. \",\n            \"location\": \"London, ON\"\n        },\n        {\n            \"id\": \"BCB9CB48F2BF84686F7E2F2799D10F84\",\n            \"cityName\": \"286 Rue Gladstone, Greenfield Park, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dd67454a09d37f2e\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Brossard Bagel Inc.\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694537677368,\n            \"dateOfPosted\": 1692841854417,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4925641,\n                    \"lon\": -73.4805987\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Longueuil\",\n                \"formattedAddress\": \"Rue Gladstone, Longueuil, QC J4V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montérégie\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Rue Gladstone, Greenfield Park, QC Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position: Customer Service RepresentativeLocation: Greenfield Park, QCJob Description:The Customer Service Representative will interact with customers to ensure a positive customer experience.Qualifications:High School Diploma or equivalent required.Must possess the ability to problem solve, multitask, and prioritize tasks.Must be able to work independently with little supervision.Make sandwiches , make orders for ubereats , skip & doordashShift: Mondays to Fridays 12pm -8pmResponsibilities:Provide a positive customer experience.Manage customer complaints in a polite and professional manner.Benefits:Job Type: Full-timeSalary: $15.50 per hourExpected hours: 40 per weekBenefits:Language training providedStore discountFlexible Language Requirement:English not requiredSchedule:Day shiftMonday to FridaySupplemental pay types:TipsAbility to commute/relocate:Greenfield Park, QC J4V 2P7: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Rue Gladstone, Greenfield Park, QC\"\n        },\n        {\n            \"id\": \"2E5814EB21D1DDEF6D4C46DD0F6D4DC9\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d260a0faa0373795\",\n            \"jobName\": \"Customer Service Supervisor - Retail\",\n            \"companyName\": \"Rms Enterprises Ltd.\",\n            \"rowSalary\": \"$28 an hour\",\n            \"date\": 1694537672048,\n            \"dateOfPosted\": 1690809426314,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 28.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    28.0\n                ],\n                \"range\": {\n                    \"gte\": 28.0,\n                    \"gt\": null,\n                    \"lte\": 28.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Order merchandise Establish work schedules Sell merchandise Organize and maintain inventory Supervise and co-ordinate activities of workers Supervise staff (apprentices, stages hands, design team, etc.) Supervision 1 to 2 people Transportation/travel information Public transportation is available Work conditions and physical capabilities Fast-paced environment Personal suitability Team playerWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"EC8CB5D2B61AD01BED424052FAEFD601\",\n            \"cityName\": \"7315 Avenue Mountain Sights, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=072a84f946b99c10\",\n            \"jobName\": \"Customer Service/Sales Advisor\",\n            \"companyName\": \"Canada Tire Inc.\",\n            \"rowSalary\": \"From $825 a week\",\n            \"date\": 1694537527978,\n            \"dateOfPosted\": 1693690070980,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4927947,\n                    \"lon\": -73.6457968\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Ave Mountain Sights, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 825.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    825.0\n                ],\n                \"range\": {\n                    \"gte\": 825.0,\n                    \"gt\": null,\n                    \"lte\": 825.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"La Cie Canada Tire is a leader in the Eastern Canada tire distriution businessThe applicant must be a customer-oriented individual who thrives on offering exceptional serviceMust have customer service experience in the automotive or related industry within Canada.Retail sales experience in a fast-paced tire and mechanical service center is an asset.Ability to adapt and cope with challenging and changing situationsAbility to multi-task and work in a fast-paced environmentMust be computer literateKnowledge of the Autoleap operating system is an assetBackground in managing people in the workplace is an assetExcellent potential to be promoted to a managerial positionJob Types: Permanent, Full-timeSalary: From $825.00 per weekBenefits:Casual dressExtended health careOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededSupplemental pay types:Commission payCOVID-19 considerations:We are a Covid conscience company and follow all protocols required.Experience:Automotive Customer Service: 3 years (required)Work Location: In personExpected start date: 2023-09-11\",\n            \"location\": \"Avenue Mountain Sights, Montréal, QC\"\n        },\n        {\n            \"id\": \"F3697ECF2B7FD4B01638E8D84BD5019F\",\n            \"cityName\": \"680 Progress Avenue, Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8b658464a970cdc3\",\n            \"jobName\": \"Sales And Customer Service Associate\",\n            \"companyName\": \"Salonbrandz.com\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694537288966,\n            \"dateOfPosted\": 1692846829460,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7789414,\n                    \"lon\": -79.2568878\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Progress Ave, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full Time: $17/hr StartingExcellent Hours: Monday - Friday From 9am -5pmClosed on the Weekends,Recently graduated International Students & Immigrants are welcome must be fluent in english and computer literateSalonbrandz.com. - Scarborough, ONSalonbrandz.comis an independent, privately-owned Canadian distributor of professional salon products. We are dedicated to offering a wide variety of high quality, value-added products for our clients. Through inspiration, education and leadership, our ultimate goal is to help the professional enhance their business by assisting them in making their clients feel good and look beautiful.We are currently looking to hire Sales & Order Entry Associates to join our team. We want you to bring your talents, experience, and enthusiasm to a team-oriented and dynamic environment. We believe that our success is based primarily on the quality and hard work of our valued team members to bring the Beauty world to our customers._______________________________________________________Responsibilities:Assist customers with knowledge, empathy and sincerity by directing them to products an explaining product features.Record all sales in the Point of Sale System and handle all monetary transactions accurately and effectively.Maintain excellent store appearance and assist with store merchandising to provide a positive shopping experience for our customers.Ability to explain intermediate computer tasks to non-technical usersExcellent English communication skills (verbal and written)Outstanding organizational skills and an ability to juggle multiple tasksQualifications:Strong and dependable work ethic, with a drive to uphold our Culture of Can DoPossess a passion for the beauty industry with the desire to teach our customers about our products.Self-starter with a drive to continuously learn and develop in their careerMust be 18 years of age of olderPrevious sales and/or cosmetology experience preferred but not required. Work where we treat you and our customers as a priority.Opportunities to grow your career within the companyOn-going product knowledge programs and customer experience coachingWork in an environment focused on and surrounded by beautyJob Type: Full-timeSalary: $17.00-$18.00 per hourExpected hours: 37.5 per weekSchedule:Monday to FridayWork Location: In personApplication deadline: 2023-08-30\",\n            \"location\": \"Progress Ave, Toronto, ON\"\n        },\n        {\n            \"id\": \"EBA43019CCBB47C47FCD583EFAB9AB40\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=62a977b1eedbb7e4\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Point Grey Veterinary Hospital\",\n            \"rowSalary\": \"From $21 an hour\",\n            \"date\": 1694537262705,\n            \"dateOfPosted\": 1692844949693,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Do you want to have fun and laugh with your team while utilizing the skills you have? We can help. We are always looking for rock stars to join our team.You must be problem solvers, outside-the-box thinkers, self-motivators, and all-around superstars to hit the ground running.We are looking for enthusiastic and dedicated individuals who thrive on providing excellent customer service, embracing change, and using their smarts to better our everyday work to deliver the best experience to our clients.Company:Point Grey Veterinary HospitalOur Purpose/Cause/PassionSupportive and Inspiring Environment of GrowthNiche:Providing Genuine Veterinary Care and Client EducationWhat makes us unique:Fear-Free CertifiedKnowledgeable StaffStandard of CareMust Haves:Fluent in English.Bubbly PersonalityDesire to learnAbility to Multitask and retain informationLocation: UBC areaSalary: $21 per hourSchedule: Mon, Tues, Thurs, Fri, SatKindly note that the schedule will be 5 days a week, 8 hours each day, up until January. Starting in January, it will switch back to 4 days: Monday, Tuesday, Friday, and Saturday.Job Type: Full-timeSalary: From $21.00 per hourBenefits:Dental careDisability insuranceExtended health careLife insurancePaid time offVision careSchedule:10 hour shift8 hour shiftApplication question(s):Please acknowledge: Kindly note that the schedule will be 5 days a week, 8 hours each day, up until January. Starting in January, it will switch back to 4 days: Monday, Tuesday, Friday, and Saturday.Work Location: In person\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"568F7A4D50AC48B8AA9F3EE5FBB9AB6E\",\n            \"cityName\": \"Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=06646db9ba820760\",\n            \"jobName\": \"Customer Service Sales Clerk\",\n            \"companyName\": \"Can-Tek Distribution Inc\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694536928678,\n            \"dateOfPosted\": 1690809441590,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsor equivalent experience Tasks Provide advice about merchandise Assist in display of merchandise Estimate or quote prices, credit or contract terms, warranties and delivery dates Greet customers and discuss type, quality and quantity of merchandise or services sought for purchase, rental or lease Prepare merchandise for purchase, rental or leaseWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"BBB2C06866D909D8B3106D6437EA818D\",\n            \"cityName\": \"1269 College St, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a91f120c90eb4c54\",\n            \"jobName\": \"Receptionist/Customer Service\",\n            \"companyName\": \"Papa John's\",\n            \"rowSalary\": \"Up to $15.50 an hour\",\n            \"date\": 1694536848859,\n            \"dateOfPosted\": 1669997754412,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6557161,\n                    \"lon\": -79.411386\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"College St, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"HideDo you like people? Do you like pizza? We are searching for just the right person to join our team at Papa John's Pizza in college and Landsdowne.To join our team, two things are vital; First, and most importantly, you must be friendly! Second, you must be willing to work hard, support your fellow team members, and learn quickly.CSRs must be able to work at least two of Friday, Saturday and Sunday shifts.Customer Service Representatives will take orders by phone-in customers, as well as customers at the store. They are expected to manage the cash drawer when accepting payment for orders and returning change. CSRs will also handle customer concerns using the approach taught during Papa John's onboarding and orientation.We expect the standard professionalism from our team members including arriving on time in complete uniform with a positive attitude. There are other duties a CSR may be asked to perform outside of the above description.In secondary roles, Customer Service Representatives will help make quality products, label boxes, cut pizzas and prepare orders for delivery or to be served to in-store customers. CSRs also help in maintaining the store's professional image by participating in the cleaning tasks assigned to all team members.Benefits of working with Papa John’s Pizza include:Flexible schedulesCompetitive wagesCareer growth opportunitiesREQUIREMENTSPrevious papa John's experience, or experience making pizzas is beneficial. Restaurant experience is required.Friendly and well spokenGood math skills to handle cash handling for in-store customer paymentsSpeak English fluently in order to serve customersFocus on cleanliness and personal hygieneMust live in Toronto, Etobicoke, ScarboroughMust speak EnglishMust be legally permitted to work in CanadaMust be able to work at weekends and holiday shiftsServing communities across Southern Ontario.please contact for more information 416-538-7272 or 647-274-1587 (AJ)Papa John's PizzaJob Types: Full-time, Part-time, PermanentSalary: Up to $15.50 per hourFlexible Language Requirement:English not requiredSchedule:10 hour shift12 hour shift8 hour shiftEveningsNight shiftAbility to commute/relocate:Toronto, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Front desk: 1 year (preferred)Administrative experience: 1 year (preferred)Work Location: In person\",\n            \"location\": \"College St, Toronto, ON\"\n        },\n        {\n            \"id\": \"B97B5786C308312D5B41A3AB0D680E17\",\n            \"cityName\": \"1600 Regent Ave W, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2895b9d34fd415ba\",\n            \"jobName\": \"Customer Service Specialist/Host\",\n            \"companyName\": \"Reality Drop\",\n            \"rowSalary\": \"$15.00–$18.50 an hour\",\n            \"date\": 1694536466674,\n            \"dateOfPosted\": 1690809238727,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.89536890000001,\n                    \"lon\": -97.03688799999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Regent Ave W, Winnipeg, MB R2C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usWelcome to REALITY DROP, where cutting-edge technology meets immersive entertainment! As Winnipeg’s first Virtual Reality Escape Room business, we take pride in providing unparalleled experiences that transport our customers into thrilling virtual worlds.At REALITY DROP, we are passionate about revolutionizing entertainment by merging the real and virtual dimensions. If you're ready to unleash your creativity and be part of something extraordinary, come \\\"Dive into the future\\\" with us at REALITY DROP, where the extraordinary awaits!Customer Service Representative (CRS) responsibilities are but not limited to:Respond to customer inquiries in a timely and professional mannerProblem-solving abilities to resolve issues and provide technical assistance to customers who might experience difficulties with the virtual reality equipment, software, or platformStrong organizational skills to manage scheduling and ensure smooth operationsManage bookings, appointments, and customer databases and perform administrative duties, such as record-keeping, updating customer databases, cash outRegularly clean and disinfect the virtual reality headsets, controllers, and other equipment between each customer use to maintain a hygienic environmentProvide feedback to management on customer service issuesDo you have these qualities?Fun & Motivated?Passionate &Enthusiastic?Multitasker & Detail orientated?Friendly & Charming?Good listener & Problem Solver?Tech Savvy & possess the ability to work in a fast passed environment?If yes, you might just be the right fitJob Types: Permanent, Part-time, Full-timePart-time hours: 24 per weekSalary: $15.00-$18.50 per hourBenefits:Casual dressDiscounted or free foodPaid time offFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftEvening shiftEvery WeekendHolidaysOn callOvertimeSupplemental pay types:Bonus payOvertime payEducation:Secondary School (preferred)Experience:Customer service: 2 years (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In personExpected start date: 2023-09-18\",\n            \"location\": \"Regent, MB\"\n        },\n        {\n            \"id\": \"FDD97B5430C09F21BFF6DA185A525D43\",\n            \"cityName\": \"303 Prince Albert Rd, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c96d8c4740d3566a\",\n            \"jobName\": \"Customer Service Associate / Cashier\",\n            \"companyName\": \"Needs Fast Fuel\",\n            \"rowSalary\": \"From $13.35 an hour\",\n            \"date\": 1694536188256,\n            \"dateOfPosted\": 1659577322288,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6760278,\n                    \"lon\": -63.55868719999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Prince Albert Rd, Dartmouth, NS B2Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cashier/Customer Service 303 Prince Albert RoadDartmouth NS.B2Y 1N1We are seeking a cashier customer service, mature and reliable individual to become integral part of our team. Must be able to work well in a fast paced environment and have your own transportation if possible. This position will include day/evening/weekend shifts. Serious inquiries only, unfortunately this position is not open to students returning to school in September. Please drop off resume in store FastFuel 303 Prince Albert road Dartmouth NSResponsibilities and AccountabilitiesProvide customer service to meet customer needs – solution selling and customer product awarenessProcess customer transactionsMaintain an accurate cash drawer while following company policies and proceduresMaintain store Merchandising and process inventoryAdhere to, and implement all applicable company standardsAdaptability/FlexibilityDependabilityProductivityMaintain a clean and safe work environment according to Health and Safety standards TeamworkEnthused SellingAll other duties as requiredWorking ConditionsRetail storeMay be required to lift up to 50lbsTwo person lift required for weights exceeding 50 lbsAbility to stand for long periods of timePhysical work including; but not limited to bending, lifting, and reachingExposure to varying temperatures over short periods of timecommunicating with one or more people at a time in an everyday and at time in occasionally unpredictable contexts using a wide variety of formats and styles, and dealing with minor conflictsPrioritize and multitask across various dutiesExposure to sanitation and cleaning chemicalsJob Type: Part Time to Full-timeWe offer the A.I.P. designation program.Salary: Starting at minimum wage $13.35 /hour with potential for increase depending on performance and tenure.Work RemotelyNoJob Types: Full-time, Part-time, PermanentPart-time hours: 20-40 per weekSalary: From $13.35 per hourCOVID-19 considerations:The health and wellbeing of our customers, teammates and partners is our top priority.We recommend our customers continue wearing a mask, physical distance and sanitize hands while in the store. we are as well following the government issued guidelines.Application deadline: 2022-08-31Expected start date: 2022-08-04\",\n            \"location\": \"Prince Albert Rd, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"6AB274AFBFA83C85DBE512CDA277B217\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=67cb88c5a22a2c6d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Virtualy Possible\",\n            \"rowSalary\": \"$56,613–$63,263 a year\",\n            \"date\": 1694535453340,\n            \"dateOfPosted\": 1694535451839,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 56613.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    56613.0\n                ],\n                \"range\": {\n                    \"gte\": 56613.0,\n                    \"gt\": null,\n                    \"lte\": 56613.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a motivated and well-spoken inside sales representative to join our sales team. The inside sales representative will be responsible for developing new leads, communicating with customers, understanding their needs, and ensuring a smooth sales process. You should be able to close sales and meet targets.To be successful as an inside sales representative you should be able to build instant rapport and achieve customer satisfaction. A top inside sales representative should also be very competitive and a good listener.Inside Sales Representative Responsibilities:Communicating with customers, making outbound calls to potential customers, and following up on leads.Understanding customers' needs and identifying sales opportunities.Answering potential customers' questions and sending additional information per email.Keeping up with product and service information and updates.Creating and maintaining a database of current and potential customers.Explaining and demonstrating features of products and services.Staying informed about competing products and services.Upselling products and services.Researching and qualifying new leads.Closing sales and achieving sales targets.Inside Sales Representative Requirements:High school diploma/GED.Previous experience in an outbound call center or a related sales position preferred.Proficiency in Microsoft Office and CRM software such as Salesforce.com.Excellent communication skills, both verbal and written.Good organizational skills and the ability to multitask.Excellent phone and cold calling skills.Exceptional customer service skills.Strong listening and sales skills.Ability to achieve targets.Job Type: Full-timePay: $56,613.00-$63,263.00 per yearBenefits:Flexible schedulePaid time offSchedule:Day shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payCommission payExperience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"151475AB1CB7036954F187B73F5DF8F3\",\n            \"cityName\": \"4914 48 Ave, Red Deer, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=016e63054c8efb27\",\n            \"jobName\": \"Customer Service - Licensing\",\n            \"companyName\": \"The City Of Red Deer\",\n            \"rowSalary\": \"$34.40–$36.22 an hour\",\n            \"date\": 1694534317190,\n            \"dateOfPosted\": 1692836225648,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.293905,\n                    \"lon\": -113.8163378\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Red Deer\",\n                \"formattedAddress\": \"6841 52 Ave bay 1, Red Deer, AB T4N 4L2, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Red Deer\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 35.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35.0\n                ],\n                \"range\": {\n                    \"gte\": 35.0,\n                    \"gt\": null,\n                    \"lte\": 35.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Opportunity: This position is the first level of contact for customer requests and complaints for City Bylaw infractions related to licensing and other related queries via telephone, e-mail or in person at the counter. This position would be expected to address all complaints and inquiries as per departmental guidelines/policy including the associated financial processing, administrative tasks and responding to the customers. Makes recommendations and decisions on Licensing Bylaw matters and prepares various responses and documentation related to those decisions. This position would also provide coverage on our main floor for Customer Service. As our preferred candidate, you will have: One (1) year certificate in a business or legal program with minimum 2 years related customer service or legal experience in bylaw review or equivalent. Knowledge of the licensing bylaws or bylaws in general. Ability to accurately type 30 wpm and input data into a computer working with various applications. Ability to understand and communicate various bylaws, acts, manuals, etc. as required. Ability to deal effectively face to face, over the phone and in writing with difficult customers. Resolving conflict in public situations. Ability to work as a team player and work independently with a high degree of accuracy, attention to detail and in accordance with policies and procedures. Demonstrate ability to manage time with a wide range of challenges and high volume of work with frequent interruptions and conflicting priorities. Experience with financial software and Microsoft Office applications. Ability to learn and apply various internal computer programs in day-to-day operations. Ability and creativity to take customer suggestions and provide internal feedback in order to enhance department and corporate procedures. Ability to be innovative and assist with the creation of efficiencies and process improvements for the department. Affiliation: Canadian Union of Public Employees, Local 417 Remuneration: $34.40 to $36.22 per hour. Hours of Work: 75 hours biweekly; Monday to Friday. Some evening and weekend work may be required. We thank you for your application. Only those selected for an interview will be contacted.\",\n            \"location\": \"Ave, Red Deer, AB\"\n        },\n        {\n            \"id\": \"502E6DBB7904219BB3446CE2C37E6325\",\n            \"cityName\": \"Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e742197f45e193b0\",\n            \"jobName\": \"Customer Service RepresentAtive - Work At Home\",\n            \"companyName\": \"Inspire Direct Marketing\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694533699722,\n            \"dateOfPosted\": 1690812675150,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.64876350000001,\n                    \"lon\": -63.5752387\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax Regional Municipality\",\n                \"formattedAddress\": \"Halifax Regional Municipality, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halifax Regional Municipality\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative - Work at Home$20.00-$24.00/hour + Benefits.Quit your day job, come help us save the world!If you are a mature sales or call centre representative, come join our team of professional fundraising agents to elevate your career and use your skills to help make our world a better place.We are a Canadian agency on a mission to inspire fundraising. We provide a warm and friendly voice to the largest and most respected charities in Canada. Our team is passionate, engaged and extremely effective. We call existing supporters to raise funds for important causes around the globe. So while there are no cold calls or high-pressure tactics, we are a performance team and results matter. We hope they motivate you as well.This is a full-time, outbound, work-from-home position.Job Description:Inspire fundraisers connect with, laugh with and uplift the lives of our client's donors - even if just for a few moments. Their work goes beyond raising funds for some of the world's most worthwhile causes; it's about creating a human connection with every donor. They enjoy being able to deliver world-class results autonomously, while representing great causes and being part of a passionate team.Each day and each call can be different. We find new child sponsors, welcome new donors, renew event participants, and invite donors to give monthly. We thank, connect, engage and inspire. We look for creative new ways to delight on every call. We are all about teamwork, customer connections and most importantly, having fun while we do it.Some of the Benefits:Permanent, full-time employment with consistent hours and growth opportunities Premium wages, $20.00 - $24.00 hourly w bonuses Engagement with world-class charitable organizations 100% paid training and health benefits (at 3 months) Trip incentives (to visit child sponsor communities), bonuses and rewards Training opportunities, lunch-and-learns, workshops Team culture and activities, ice breakers, community eventsTo be an Inspire Fundraiser:You should bring:A minimum of 2 years' customer service and call centre experience You love talking to people and are a great communicator You are looking for full-time hours, 40 hours a week Availability to work evenings (1:00PM - 10:00PM EST Mon -Thu, 10:00AM - 7:00PM EST Fri) Availability to work occasional Saturday shifts (10:00AM to 5:00PM) You are technically savvy and self-reliantYou should have:A professional work from home office space newer-version Windows PC or laptop computer (Apple or Mac are not supported) High-speed cabled internet connection (min 25 mbps down/5 mbps up) A USB headset and webcamIf you are looking to be part of something bigger than yourself and to join a mature call centre team with opportunities to grow and support your peers; we would love to hear from you.Inspire is committed to Employment Equity and Diversity. We do not discriminate against any employee or applicant for employment because of national origin, race, religion, ethnicity, age, disability, sex, sexual orientation, gender identity, veteran status or any other federal, provincial, or local protected class. We welcome and encourage applications from persons with disabilities. Accommodations are available upon request for candidates who participate in all aspects of the selection process.Please note: We thank everyone for their interest however only the best qualified candidates may be contacted.\",\n            \"location\": \"Halifax, NS\"\n        },\n        {\n            \"id\": \"9E5D2ED1588D4EC82F79A63296F8F3B2\",\n            \"cityName\": \"Sainte-Anne-des-Monts, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c0ca291c9080c296\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Pâtisserie-Boulangerie Marie 4 Poches s.a.\",\n            \"rowSalary\": \"$15.25–$17.00 an hour\",\n            \"date\": 1694533430204,\n            \"dateOfPosted\": 1690809427136,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.12229199999999,\n                    \"lon\": -66.4924319\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sainte-Anne-des-Monts\",\n                \"formattedAddress\": \"Sainte-Anne-des-Monts, QC G4V 2L4, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"La Haute-Gaspésie Regional County Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sainte-Anne-des-Monts\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Experience an assetor equivalent experience Work setting Rural area Tourism Business Staff accommodation available Tasks Receive payments Sell merchandise Take customers' orders Stock refrigerators and salad bars Serve food and beverages Describe menu items including daily specials for customers Transportation/travel information Own transportation Own vehicle Work conditions and physical capabilities Attention to detail Fast-paced environment Physically demanding Repetitive tasks Standing for extended periods Personal suitability Client focus Efficient interpersonal skills Excellent oral communication Reliability Team player Judgement Ability to multitask Screening questions Are you available for the advertised start date? Are you currently a student? Are you currently legally able to work in Canada? Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Green job Involves duties and responsibilities that lead to positive environmental outcomes Long term benefits Other benefits Registered Retirement Savings Plan (RRSP) Other benefits Free parking available Learning/training paid by employer On-site amenities On-site housing options Team building opportunitiesWork Term: PermanentWork Language: FrenchHours: 20 to 40 hours per week\",\n            \"location\": \"Sainte-Anne-des-Monts, QC\"\n        },\n        {\n            \"id\": \"89F93998066B43553A583F4FF7C4375B\",\n            \"cityName\": \"688 Richmond Street West, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=632bc9c05889c691\",\n            \"jobName\": \"Junior Customer Service And Fulfillment Associate\",\n            \"companyName\": \"Tonic Blooms\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694533307108,\n            \"dateOfPosted\": 1694533306915,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6478501,\n                    \"lon\": -79.3958828\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Richmond St W, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About Us:Tonic Blooms is on a mission to bring the joy back to sending flowers across Canada. We’re an on-demand service delivering petal-packed perfection on your schedule! We focus all our energy to ensure that our customers and their lucky recipients are delighted from the moment they land on the website until they get that coveted \\\"thank you!\\\" phone call. We're here to assist in making someone's day, every step of the way. Happiness guaranteed!Why work with us? You'll get to be in a fast-paced and very fun environment (never a dull moment!), learn the ins and outs of the flower industry and gain valuable insight into a dynamic, exciting young company. Plus, you'll be surrounded by beautiful flowers while making peoples' days - what could be better?!What you’ll do:Customer Service:Be knowledgeable in and confident speaking to the brand and productsAcknowledge and assist every customer (via phone, email, text or in person) promptly with exceptional care; answer questions, recommend products and ensure the entire customer experience is engaging, empathetic and efficient.Notify customers of potential order changes or delivery delays and resolve them promptlyCommunicate with delivery drivers via driver phone line, text and Onfleet messaging, monitoring their progress at all times to ensure deliveries are being made efficiently, troubleshooting problems and working quickly to resolve themFulfill and print order tickets via Shopify, sorting them according to delivery window and driverCollaborate with the customer service manager to ensure seamless operations and efficient workflow.Fulfillment:Thoroughly conduct quality control checks for each bouquetNeatly wrap bouquets according to standard and aesthetic, ensuring correct note card and address label is applied to each packageAssist with packaging prep, i.e. constructing flower cartons, cutting denim squares and ribbon for bouquet wrapping, preparing vases with flower food, etc.Studio Maintenance:Ensure studio, packing area and fridge is neat, tidy and sanitizedUnpack packaging supplies and organize hard goods, ensuring they are clean before going into inventoryParticipate in monthly hardgoods inventoryRequired Skills:Highly organized, meticulous, and detail-orientedStrong verbal and written communication skillsStrong computer skills required, able to operate via several web-based applicationsAdaptable to fast-paced environments with the ability to work collaboratively with a teamPunctual and reliable for time-sensitive servicesStrong problem-solving and critical thinking skillsShopify experience preferred though not requiredBasic knowledge of Excel / Google Sheets requiredFamiliarity of GTA and surrounding areas requiredPassionate about flowers and interacting with customersPrior customer service experience is preferred though not required; what’s more important is someone with a positive attitude, a can-do mindset and eager to learn!Additional Info:This is a part-time position. Although our operating hours vary, the hours for this position are planned to operate Monday - Friday between 3:30 p.m. and 8:00 p.m. Availability during holiday weekends and company blackout periods (i.e. the lead-up to and including Valentine’s Day, International Women’s Day, Mother’s Day, Thanksgiving, etc.) is mandatory.This position requires frequent lifting of buckets and boxes that weigh up to 40 lbs, standing for extended periods (up to 12 hours per day), constantly working with your hands and frequent exposure to cold temperatures from our cooler of 3-6 degreesThis position is in downtown Toronto; proximity to our studio or a manageable commute is preferredJob Types: Full-time, PermanentSalary: $20.00-$22.00 per hourBenefits:Casual dressCompany eventsDental careExtended health careOn-site parkingPaid time offStore discountVision careSchedule:Monday to FridaySupplemental pay types:Bonus payCOVID-19 considerations:Mandatory full Covid-19 vaccination (including booster). Mask to be worn inside the studio at all times.Ability to commute/relocate:Toronto, ON M6J 1C5: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:customer service: 2 years (required)Language:English (required)Work Location: In person\",\n            \"location\": \"Richmond St W, Toronto, ON\"\n        },\n        {\n            \"id\": \"F2CE776B37A6E30E5886A363389B5A31\",\n            \"cityName\": \"150 New Huntington Rd, Woodbridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7de32b34be91c119\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Hls Linen Services\",\n            \"rowSalary\": \"$60,000–$70,000 a year\",\n            \"date\": 1694533290081,\n            \"dateOfPosted\": 1694533289901,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.77436669999999,\n                    \"lon\": -79.6438821\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"New Huntington Rd, Vaughan, ON L0J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 60000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    60000.0\n                ],\n                \"range\": {\n                    \"gte\": 60000.0,\n                    \"gt\": null,\n                    \"lte\": 60000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*HLST Linen Services is looking to fill a role of Customer Service Representative (CSR)/Quality Control Administrator , the primary responsibility is maintaining positive relationships with our valued customers by providing exceptional, over the phone and in person customer service. The CSR must thrive in an extremely fast paced work environment with high deliverables. Must assist with Administrative task as needed.Some of your responsibilities will include but not limited tooBe proactive in following up with customers to discuss the status and progress of service if there is a delay in delivery.Maintain strong working relationships within our valuable customers and productionAct as the primary contact for conflict resolution by demonstrating strong listening and negotiation skills while speaking with irate customers to reduce escalation and increase customer satisfactionMust have vehicleMust be willing to travel to Customer’s sitesYou will also be responsible for Quality Control and assures product quality by monitoring and auditing the quality of processed linen as well as all operational procedures in processing the linen and delivering the linen to the customer. Assures product quality by monitoring and auditing the quality of product as well as all operational procedures in processing linen.Ensures that quality assurance activities are directed towards process improvement, continuous quality improvement, cost effectiveness of processes, systems and procedures, and positive preventative corrective action. Oversees development and implementation of standards, methods and procedures for inspecting, testing and evaluating for precision, accuracy and reliability of company products and services.Conducts random quality checks on product and/or procedures to ensure proper standards are maintained.We offer an excellent benefit package. Must have a minimum of (2) covid vaccines.Job Type: Full-timeSalary: $60,000.00-$70,000.00 per yearBenefits:Dental careExtended health careLife insuranceOn-site parkingPaid time offRRSP matchFlexible Language Requirement:French not requiredSchedule:Monday to FridayAbility to commute/relocate:Woodbridge, ON L4H 4N4: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:customer service in person: 3 years (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"New Huntington Road, Vaughan, ON\"\n        },\n        {\n            \"id\": \"BACC4316A52E8D6EB971A40C77AC5F29\",\n            \"cityName\": \"65 Bessemer Road, London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=816f6c9d8637e482\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Partify\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694533289896,\n            \"dateOfPosted\": 1694533289692,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9302214,\n                    \"lon\": -81.2121738\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"Bessemer Rd, London, ON N6E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a family-owned automotive parts company based in London, Ontario (headquarters), and Michigan, USA. Our company specializes in custom-painted car parts for consumers. Additionally, we sell unpainted auto parts, such as headlights and grilles. The company currently has a combined total of over 50 employees and is looking to grow even further. The company website is https://partify.ca/.Position SummaryThe role of a Customer Service Representative is to help customers with all inquiries before and after placing their orders through calls, emails, chats, texts, social media, or in person. A Customer Service Representative also handles concerns, complaints, and other issues. Their goal is to ensure customer satisfaction throughout their entire interaction with the company.OverviewCollaborate well with team members in a fast-paced environment.Interact with employees in both locations.Learn to use platforms like Shopify, Ring Central, and Gorgias to complete tasks and answer calls.Learn to identify customer needs or desires to recommend the appropriate product or service.Develop a good understanding of the products we supply to answer customers' questions accurately.Provide written communication to customers that is free of spelling and grammatical errors.Work with colleagues when necessary to resolve customer complaints by providing solutions promptly to ensure customer satisfaction.Strong organizational skills.Provide answers to all customer inquiries and requests and conduct follow-ups on time.Roles & ResponsibilitiesRespond to customer inquiries and assist them with placing their orders.Provide information regarding parts and give quotations.Update customers regarding order statuses.Assist customers with tracking their shipments.Resolve order issues and reach out to customers regarding their orders.Updating orders and sending customer invoices.Issuing refunds and following up with customer concerns.Contacting dealerships and shipping companies to facilitate the order process for customers.Responding to reviews and questions.Keeping track of orders to ensure the orders are fulfilled on time.Fulfilling local orders.Maintain files, documentation, and databases.Other Duties as assigned.RequirementsBachelor’s DegreeStrong communication and interpersonal skills.Strong verbal and written skills.A minimum of 55 words per minute.Proficient with Microsoft Office, and other Office applications.Works and communicates well individually and in a team environment.Excellent organization and prioritization skills.Time management skills to multitask in a high volume, rapidly changing work environment.Job Types: Full-time, PermanentSalary: $20.00 per hourBenefits:Casual dressCompany eventsDental careDiscounted or free foodLife insuranceOn-site parkingStore discountVision careSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsAbility to commute/relocate:London, ON N6E 2G1: reliably commute or plan to relocate before starting work (required)Application question(s):Can you type 55 words per minute? This is a requirement.How would you describe customer service?Work Location: In person\",\n            \"location\": \"Bessemer Road, London, ON\"\n        },\n        {\n            \"id\": \"B2158E32FB5AA90051966DFAD946E100\",\n            \"cityName\": \"1400 Weber St E, Kitchener, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=950dbca2d58286ae\",\n            \"jobName\": \"Cannabis Customer Service Representative\",\n            \"companyName\": \"Cannabis Supply Company\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694533274784,\n            \"dateOfPosted\": 1694533274576,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4401555,\n                    \"lon\": -80.4629593\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kitchener\",\n                \"formattedAddress\": \"Weber St E, Kitchener, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kitchener\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Basic Function:Under the direction of the Store Manager, the main role of this position is to provide a superior customer service experience to every person that enters the store. You will be responsible for greeting each customer, inquiring about their needs, providing the education they require to make a well-informed purchase. The expectation is that every customer will be 100% satisfied, guaranteed to return. This position may rotate from floor to checkout, therefore accurate entry of orders into the POS system, dispensing change and receipts and balancing the till at the end of the shift is required.Responsibilities & Tasks:1. Develop and maintain strong customer service skills.2. Maintain up to date knowledge of all products being sold in the store so that you can educate customers on cannabis products and accurately relay information.3. Maintain confidentiality and privacy of company business and customer information.4. Double check every order for accuracy with the customer.5. Navigate the POS system, provide accurate change and receipts and balance till.6. Sign in and out of shift to ensure proper reconciliation of hours.7. Comply with all company policies and procedures, code of conduct and government legislations.8. Promote the safe use of cannabis.9. Contribute to the cleanliness of store by assisting with shift cleaning tasks.10. Maintain a healthy and safe workplace at all times or take corrective action.11. Work co-operatively with others in a team orientated approach.12. Participates in training and professional development as required.13. Represent the company in a professional manner at all times.14. Participates in team meetings.15. Participates in monthly meeting with supervisor.16. Communicate in a professional manner at all times.17. Utilize the problem solving model to address any conflicts that may arise.18. Remain abreast on all internal communication forums.**VALID CANNSELL AND CRIMINAL BACKGROUND CHECK REQUIRED BEFORE START DATE.Job Types: Part-time, PermanentPart-time hours: 10-30 per weekSalary: $17.00 per hourBenefits:Company eventsOn-site parkingStore discountFlexible Language Requirement:French not requiredSchedule:10 hour shift4 hour shift8 hour shiftMonday to FridayWeekend availabilitySupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Weber St E, Kitchener, ON\"\n        },\n        {\n            \"id\": \"1B7A4F2C0025F8F8D6FB13FB4E6B1345\",\n            \"cityName\": \"Goderich, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9e8abc2d2b1cf649\",\n            \"jobName\": \"Customer Service Rep\",\n            \"companyName\": \"Novalink Marketing Inc\",\n            \"rowSalary\": \"$50,000–$75,000 a year\",\n            \"date\": 1694533270414,\n            \"dateOfPosted\": 1694533270219,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7428345,\n                    \"lon\": -81.7138942\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Goderich\",\n                \"formattedAddress\": \"Goderich, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Huron County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Goderich\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you looking for a new career? Do you like helping people? Do you feel like you are a great communicator? Trying to do something more in your life in a competitive, fast - paced, customer focused environment?Novalink Marketing is looking for full-time Customer Service and Sales Reps for our new customer service and sales team. These are IN-PERSON positions, not remote.We are looking for associates with great communication skills who can add to our team. We are located in Goderich, Ontario and are looking for people that are fun and outgoing that want to excel.We work with large companies looking to expand into the Canadian market. English is required as is Canadian work authorization. Additional languages is a plus.*Daily duties include:-Sales presentations-Customer service and retention-Face to face marketing-Training presentations and development programsCandidates who excel in this position are:- competitive spirit, team oriented-have a high school education-Motivated by growth-Written and oral communication skills-Available full timeWe are looking for someone who can start within the next 1-2 weeks.We have been tasked with adding a minimum of 2 new customer service and sales agents by the end of the month and are looking for people that would be the right fit for our team.Job Type: Full-timeSalary: $50,000.00-$75,000.00 per yearBenefits:Flexible scheduleFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftDay shiftSupplemental pay types:Bonus payCommission payAbility to commute/relocate:Goderich, ON: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Licence/Certification:Driving Licence (preferred)Work Location: In person\",\n            \"location\": \"Goderich, ON\"\n        },\n        {\n            \"id\": \"0FFDDE17C482D25DF3B0E0EA405B0439\",\n            \"cityName\": \"420 Richards St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=82447b06f50dfae6\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"The Poke Guy\",\n            \"rowSalary\": \"$17–$20 an hour\",\n            \"date\": 1694532839558,\n            \"dateOfPosted\": 1693686479134,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2788687,\n                    \"lon\": -123.1197521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Richards St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"JOB TITLE: CUSTOMER SERVICE:Provides exceptional customer service and accurately assists in the assembly of menu items.Cleans and maintains dining area in accordance with restaurant policiesKEY RESPONSIBILITIES • Greet all guests in a polite and courteous mannerProvides exceptional customer service and assists customers in the preparation of their poke bowls in accordance with restaurant plating standards and portionsMaintain accurate knowledge of menu items, potential allergens and working knowledge of the history and origins of PokeAccurately enter all orders into the Point of Sale (POS) and take payment from customersAssist with the opening and closing of the till as needed • Assists with food preparation as needed under direct supervision of the cooks or managerKnows and complies with Vancouver Coastal Health food safe practices to ensure safe food handling and sanitizingStocks and maintains sufficient levels of paper products and cutlery at all condiment stations and dining tablesReport any inventory shortages to kitchen managerMaintain a clean and sanitary dining area which includes but is not limited to:-Floors swept on a regular basis and mopped daily,-Windows and all glass are wiped and cleaned,-Bathroom is serviced daily .REQUIREMENTSWillingness to learn, experience not necessaryStrong communication skillsBe able to work in a standing position for long periods of timeMaintain exceptional hygiene and presentationHigh School or equivalent educationFood safe certification is an asset but not a requirement.Job Types: Full-time, Part-time, Permanent, Casual, SeasonalPart-time hours: 20-40 per weekSalary: $17.00-$20.00 per hourSchedule:8 hour shiftDay shiftHolidaysMonday to FridayNight shiftWeekends as neededSupplemental pay types:Bonus payTipsCOVID-19 considerations:To keep all members safe, we have set barriers to keep customers and members 6 ft apart. Masks, gloves, and sanitizer are provided.Ability to commute/relocate:Vancouver, BC V6B 2Z3: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Richards Street, Vancouver, BC\"\n        },\n        {\n            \"id\": \"2AA36E9833A8A6601CBF829D1798E89E\",\n            \"cityName\": \"2121 Carling Avenue, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=df39726578590cfc\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Lifemark Health Group\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694532325067,\n            \"dateOfPosted\": 1691653777951,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.35917600000001,\n                    \"lon\": -75.79599209999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Carling Ave, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative – Lifemark Physiotherapy Carlingwood Mall Location: 2121 Carling Avenue  Ottawa, Ontario  Employment status: Permanent Part-Time  Rate compensation: $17.00 per hour  Do you thrive on having the satisfaction of being on a driven team of industry experts and building a reputation for being one of the best in the industry with exceptional standards of work and quality? If so, join us at Lifemark Physiotherapy Carlingwood Mall, a Lifemark Health Group company, Canada’s premier, largest, and most comprehensive healthcare management organization. We believe when you move better, you feel better. This is at the heart of everything we do, and we are seeking a Customer Service Representative who shares this same philosophy. At Lifemark, we walk the talk of our company's Core Values: \\\"We have fun,\\\" We strive for simplicity,\\\" We trust each other to do the right thing,\\\" We go the extra kilometre,\\\" and \\\"We belong here.\\\" Why Lifemark? Opportunity to work with a multi-disciplinary team of clinicians and the satisfaction of being on a driven team. Flexibility in building your perfect schedule with our understanding Clinic Director. Competitive compensation with an excellent benefits package for permanent employees. Shoppers Drug Mart 30% Employee discount. Employee Stock Purchase Plan. Paid Vacation days. Employee Referral Bonus Program. Pathways for leadership opportunities. Opportunities for mentorship as well as a positive and comforting work environment. Nationally recognized brand with a strong digital presence. Qualifications & Core Competencies: High School Diploma, G.E.D. or equivalent. Excellent customer service skills and telephone etiquette. A high degree of organizational and multi-tasking skills in a busy and fast-paced work environment, preferably with 1-3 years of work experience in a private rehabilitation clinic. Excellent communication and interpersonal skills. Knowledgeable in the LPS system is a definite advantage. Computer savvy and data entry skills in a physiotherapy clinic setting will be an asset but not required. Flexible and adaptable to change. New Graduates are welcome to apply. Key Functions and Responsibilities: Answer telephone calls, greet patients and visitors upon arrival, and provide excellent customer service for all questions or concerns. Coordinate a detailed and accurate intake of information on the patient's first visit to the clinic and throughout their treatment plan. Assist patients with completing paperwork at the clinic to avoid errors and inaccurate information. Coordinate scheduling of patient appointments and maintain the patient's medical record. Collect payment at the time of service. Track coverage for all funding streams to ensure approval Complete data entry and billing Coordinate courier packages (in or outgoing) and process incoming and outgoing emails, mail and faxes. Provide administrative support to the Care Coordinator Manager and Clinic Director. We have gone above and beyond to ensure the safety of our patients and employees with PPE provided, the spacing of patients, screening, and more. Extensive safety protocols and procedures have been put into place and are mandatory. Lifemark welcomes and encourages applications from people with disabilities. Accommodations are available on request for candidates taking part in all aspects of the selection process. Lifemark promotes equal employment opportunities for all job applicants, including that self-identifying as a member of the following groups: Indigenous peoples, Newcomers to Canada, and Visible minorities. Apply today! Visit www.lifemark.ca/careers\",\n            \"location\": \"Carling Avenue, Ottawa, ON\"\n        },\n        {\n            \"id\": \"EB14F7C5A3FD7A6A8F00F1CFDB4D81B6\",\n            \"cityName\": \"1801 Lakeshore Road West, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=05ab2d46042ab44e\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Turtle Creek Cards And Gifts\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694532315042,\n            \"dateOfPosted\": 1674161961338,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5308514,\n                    \"lon\": -79.6082911\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Lakeshore Rd W, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Shipping parcels within Canada,USA and internationally.selling canadapost authorized products,stamps.selling gift itemsTaking passport photosJob Type: Fixed term contractContract length: 12 monthsSalary: From $15.50 per hourSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsCOVID-19 considerations:Wear a maskKeep distance Use sanitizer Ability to commute/relocate:Mississauga, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In personApplication deadline: 2023-01-31\",\n            \"location\": \"Lakeshore Rd W, Mississauga, ON\"\n        },\n        {\n            \"id\": \"76CBFAE213E483AB0EC0C99602A00F5B\",\n            \"cityName\": \"Quebec City, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=264eb584bec13257\",\n            \"jobName\": \"Bilingual Customer Service Representative (Remote)\",\n            \"companyName\": \"Medavie Blue Cross\",\n            \"rowSalary\": \"$21.45 an hour\",\n            \"date\": 1694532216311,\n            \"dateOfPosted\": 1691653738580,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.8138783,\n                    \"lon\": -71.2079809\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Quebec City\",\n                \"formattedAddress\": \"Quebec City, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Québec\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Quebec City\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title: Bilingual Customer Service Representative Department: Member Experience Competition: 86272Internal/External: Internal/External Employment Type: Full Time Permanent Location: Remote Québec Salary: 21,45$ per hour/ comprehensive benefits/ bonus Reports To: Team Leader Starting date : Classes starting: September 11th 2023 and October 16th 2023Referral Bonus Eligible Amount: $1000The opportunity before you We are hiring monthly classes in August, September and October – let us know when you’d like to start!  We are looking for Customer Service Representatives who are critical thinkers, who want to help our members on a daily basis, who have the ability to work in a fast-paced environment, and who are enthusiastic about acting as our company's first point of contact. Our award-winning company culture, caring managers, training and unparalleled support are all ways to ensure your success. Here's what we offer:No weekends or overnights – your shift will end at 8pm!We offer a variety of work options: Remote, Onsite or a combination of Hybrid – let us know what works for you!A stable schedule, established according to shifts from Monday to Friday from 8 a.m. to 8p.m.;A comprehensive health and dental plan, fully paid by the employer, in effect one month after your first day on the job;A comprehensive virtual training program that prepares you for work and call taking;Opportunities for career advancement and development;Work-life balance, wellness benefits, health resources and discounts for select fitness centres;A great work environment, exceptional colleagues and supportive leaders to help you succeed!Our team's star employees:Answer questions about health benefits and plan eligibility, payment inquiries and other general questions;Quickly assess and resolve problematic situations and provide effective strategies for resolution on first call;Are dedicated to customer service excellence and demonstrate a high level of commitment in all areas.Skills needed to succeed:Previous call centre experience is not required, however, candidates who have demonstrated excellent skills in serving clients over the telephone, have the ability to multi-task while providing excellent customer service, and demonstrate an eye for detail are highly successful in this position;Loving helping people is a non-negotiable requirement;Be fluently bilingual (English-French); In order to meet the needs of the English-speaking clientele, this position requires bilingualismBe a good communicator both on the phone and by email. Speaks in a clear, concise and friendly manner;Have the desire to go to the end of things and enjoy new challenges;Relevant training, education or work experience in the areas of customer service or health;Excellent technical skills, ability to manage multiple tasks at once and switch between software without difficulty, while simultaneously continuing to assist the caller;Be able to answer both difficult and easy calls;Be an expert in problem solving, understand the needs of members and quickly learn how to achieve the best results in all settings;A little information about Medavie Blue Cross: For more than 75 years, Medavie Blue Cross has been a recognized health and wellness partner for individuals, employers and governments across Canada. As a not-for-profit organization, we are proud to give back to the communities in which we operate and to build on a collaborative culture to help our employees thrive. Medavie Blue Cross was recognized as having one of Canada's most admired corporate cultures and was named a Caring Company, a title given to national leaders in community investment and social responsibility.  Our team of 2,100 professionals is spread across six provinces. We excel through our shared values: compassion, responsibility, adaptability, innovation and community. We value the health and well-being of our employees and their families, as well as personal and professional development, which is why we offer a wide range of programs and resources at all levels of the company.  Together with Medavie Health Services, Medavie Blue Cross is part of Medavie, a national healthcare company with more than 6,400 employees. Together, our mission is to improve the well-being of Canadians. #CBM1Medavie Blue Cross is an equal opportunity employer. Medavie Blue Cross strives to foster a culture where everyone is enabled to achieve their full potential — a culture of diversity, equity and inclusion (DEI) where we live our values every day in the way we treat each other, our members and the communities we serve. Accessibility is a top priority.  For applicants with disabilities, we provide accommodations throughout the recruitment, selection and/or assessment process. If selected to participate in the recruitment, selection and/or assessment process, please inform Medavie Blue Cross Human Resources staff of the nature of any accommodation(s) that you may require in respect of any materials or processes used to ensure your equal participation. All personal information is collected under the authority of the Municipal Freedom of Information and Protection of Privacy Act.  We would like to thank all candidates for expressing interest. Please note only those selected for interviews will be contacted. Job Segment: Customer Service Representative, Call Center, Equity, Customer Service, Finance\",\n            \"location\": \"Quebec City, QC\"\n        },\n        {\n            \"id\": \"57677F11364896B72987E8B6BA89DFBE\",\n            \"cityName\": \"6133 University Blvd, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2e261f6998dfec68\",\n            \"jobName\": \"Customer Service Representative - Grand Noodle Emporium\",\n            \"companyName\": \"Alma Mater Society Of Ubc Vancouver\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694531962738,\n            \"dateOfPosted\": 1692840343205,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2637763,\n                    \"lon\": -123.2182635\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"University Blvd, Vancouver, BC V6T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Alma Mater Society (AMS) is the University of British Columbia’s (UBC) student society, and works to improve the academic, social and personal lives of the 56,000 UBC students at its Vancouver campus. The AMS also runs nine food and beverage outlets, a catering and conference operation, and the AMS Student Nest, providing on-campus employment opportunities and generating revenue that goes directly back into supporting the students at UBC. Position title: Customer Service Representative Department: Food & Beverage Reports to: Outlet Manager Employee status: Part Time Hours per week: As available (must have morning availability) Compensation: $17.00 per hour  The Customer Service Representative is the first point of contact in all our venues and gives the first impression to our guests. They greet our guests and achieve sales goals through recommendation and suggestive sales techniques, resulting in superior guest service. They handle cash transactions while staying focused and levelheaded even under pressure. We are looking for outgoing, friendly candidates who enjoy dealing with people while being hands on.  Duties & Responsibilities Provide excellent guest serviceMeet and exceed sales goals through suggestive sales techniquesDemonstrate and apply exceptional product knowledge resulting in sales increasesWork in a fast paced environment to complete POS transactions correctly according to AMS proceduresProduce products to AMS standards applying AMS proceduresMaintain a clean and safe work environmentFollow the AMS food safety procedures at all timesWork with the AMS mission statement and values to operate a successful departmentOther duties as required Qualifications & Experience Ability to stand for extended periods of timeAbility to lift up to 20kgs (44 lbs)Ability to do shift work (daytime, evenings, weekends and holidays)Ability to complete small monetary calculation for POS transactionAbility to learn quickly and work as part of a teamPrevious experience in a food service environment an assetFood Safe certification an assetTO APPLY: Please submit your resume (include term 1 availability).  The Alma Mater Society of UBC is an equal opportunity employer and all qualified applicants will receive consideration for employment without regard to race, national or ethnic origin, colour, religion, age, sex, sexual orientation, gender identity or expression, marital status, family status or any other characteristic protected by law. We invite all qualified candidates to apply online with their resume and cover letter. Due to the large volume of resumes we receive at the AMS, we are only able to contact those we are interested in interviewing and cannot reply to email/phone/walk-in inquiries regarding application status.\",\n            \"location\": \"University Blvd, Vancouver, BC\"\n        },\n        {\n            \"id\": \"AE0045996AF2BE5C88CEB9A4AE480923\",\n            \"cityName\": \"UW Calgary in Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=458cec2864f0d999\",\n            \"jobName\": \"Customer Service Assistant\",\n            \"companyName\": \"Uw Calgary\",\n            \"rowSalary\": \"$15–$18 an hour\",\n            \"date\": 1694531937737,\n            \"dateOfPosted\": 1688059934709,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"UW Calgary specializes in client acquisition and business development with a passion for providing exceptional customer service. The UW Calgary team shares a passion for giving back; both to our fellow teammates and to our community. Our team enjoys problem-solving and to continue our efforts in the local area and keep up with client demand, we are hiring a Customer Service Assistant immediately.The Customer Service Assistant will act as the first point of contact with existing customers. They will assist with organizing our sales team and reporting back to the Executive Sales Manager. The Customer Service Assistant will receive hands-on training on all sales and marketing techniques, brand management strategies, territory management, and compliance standards as well as coaching, mentoring, and career development. The ideal candidate will have exceptional communication skills and be genuinely excited to grow with a company.Customer Service Assistant Responsibilities:Meeting planned sales goalsSetting individual sales targets with the sales team.Tracking sales goals and reporting results as necessaryOverseeing the activities and performance of the sales team.Develop and deliver informative sales presentations based on individual customer needs to maximize market shareParticipate in continuous training opportunities with the intent to increase qualified customer contacts, enhance relationships and advance the sales process.Customer Service Assistant Qualifications:Previous experience in marketing, promotions, sales, or account management preferredComfortable taking on a leadership role and support role within a team (must work well with others)Strong interpersonal skillsExperience in customer relationship management (preferred, not required)Experience in a management or leadership roleExcellent written and verbal communication skills.Dedication to providing great customer serviceJob Type: Full-timeSalary: $15.00-$18.00 per hourSchedule:8 hour shiftMonday to FridayWeekend availabilityAbility to commute/relocate:Calgary, AB T2B 1K7: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"8F94546B9F4D1C892895F16F1C60BF00\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a08e53d26950f35d\",\n            \"jobName\": \"Customer Service Supervisor - Retail\",\n            \"companyName\": \"Hns Hannam Supermarket Robson\",\n            \"rowSalary\": \"$22–$25 an hour\",\n            \"date\": 1694531767026,\n            \"dateOfPosted\": 1691653703604,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Assign sales workers to duties Hire and train or arrange for training of staff Authorize payments by cheque Authorize return of merchandise Establish work schedules Resolve problems that arise, such as customer complaints and supply shortages Supervise and co-ordinate activities of workers Health benefits Health care planWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"F7FE05C9C3164C62FEF34B5804BAA032\",\n            \"cityName\": \"10017 Main St N, Winfield, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=af5ea2ecb262c38d\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Iga\",\n            \"rowSalary\": \"$16.75–$18.00 an hour\",\n            \"date\": 1694530504777,\n            \"dateOfPosted\": 1692830611712,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.0221636,\n                    \"lon\": -119.4040817\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lake Country\",\n                \"formattedAddress\": \"Main St, Lake Country, BC V4V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lake Country\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Locally owned and operated IGA in Lake Country is looking for outgoing, customer focused individuals to join the team. If you want to be a part of one of the best Grocery stores within the Okanagan this is the job for you. Duties include, but not limited to: providing exceptional customer service, knowing all produce codes, weighing items to determine price, scanning prices of marked items, resolving pricing issues by requesting price checks, redeeming coupons, gift certificates, receiving cash, making correct change, processing debit and credit cards and bagging products appropriately. Flexible availability required.Drop off resume at store, ask for LauraJob Type: Part-timeSalary: $16.75-$18.00 per hourBenefits:On-site parkingStore discountDay range:Weekends as neededShift:4 hour shift8 hour shiftDay shiftEvening shiftWork setting:Grocery storeWork Location: In person\",\n            \"location\": \"Main St N, Winfield, BC\"\n        },\n        {\n            \"id\": \"0774BD8DEC87E8D9F63116A05F624F18\",\n            \"cityName\": \"50 Church Street, St. Catharines, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1e78e0af642918f7\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"City Of St. Catharines\",\n            \"rowSalary\": \"$29.64 an hour\",\n            \"date\": 1694530300576,\n            \"dateOfPosted\": 1690799639000,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1628678,\n                    \"lon\": -79.2432424\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St. Catharines\",\n                \"formattedAddress\": \"Church St, St. Catharines, ON L2R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"St. Catharines\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 30.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    30.0\n                ],\n                \"range\": {\n                    \"gte\": 30.0,\n                    \"gt\": null,\n                    \"lte\": 30.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"THIS IS A TEMPORARY PART TIME POSITION FOR APPROXIMATELY SIX (6) MONTHSSummary:As a key member of the City of St. Catharines’ Citizens First Program, you are responsible for receiving, answering and referring all calls associated with the City’s Customer Service Division. Additionally, you provide a variety of City transactional services on behalf of all City Departments at the Customer Service Counter.Duties and Responsibilities:(These set out the principal functions of the position, and shall not be considered as a detailed description of all the work requirements).Act as primary contact for the City with the public from a variety of channels; telephone, email and counter.Process a variety of financial transactions for City services and programs including cash, debit and credit cards following department designated collection procedures and payment options.Receive, assess, refer and answer inquiries related to all departments of the City such as tax, water, parking, forestry, roads maintenance, traffic operations, culture and recreation.Prepare daily, weekly and monthly financial reporting, inventory reporting and prepare the required general ledger journal entries.Triage requests, determining information needs and entering information in a variety of computer-based software applications.Enter and maintain online requests, paper files and logs related to service requests.Self-monitor and measure performance against written guidelines to ensure the desired level of customer satisfaction and service using tools available.Recognize trends or changes in types of calls or questions that callers have.React to situational changes by ensuring that appropriate persons are notified.Participate in on-going monitoring of telephone calls to ensure standards are being met.Report regularly on the status of results and performance.Research, prepare, apply and submit adjustments for various departments regarding parking fines, tax accounts, recreation programs, and facility booking and revenue distribution journals.Position Requirements:Minimum of a Grade 12 Diploma plus additional courses in Customer Service and Administration.Experience in a customer service related position is essential.Experience with cash-handling or related functions is an asset.Dynamic customer service skills including well-developed empathy and intuitive skills to be able to assess customer's sometimes unspoken needs and quickly match up those needs with available resources.Established written and verbal communication skills including effective use of grammar and spelling.Proven ability to work within a fast-paced, multi-tasking team environment while maintaining a positive demeanour.Expert awareness of current events related to public health and safety, public programs, flyer distribution, snow removal, cultural events such as festivals, parades, and street fests; public meetings such as Council and public information sessions.Excellent interpersonal and conflict resolution skills.Creativity and flexibility in order to persuade and educate customers.Excellent telephone etiquette; good voice quality, diction and articulation.Ability to work with figures and an understanding of business accounting concepts.Ability to conduct internet searches.Proven experience in Microsoft Word, Excel, and Outlook.Proven completion of Ministry of Labour Worker Health and Safety Awareness training.A demonstrated commitment to enhancing a safety culture.Hourly Rate: $29.64Expected Work Location: City HallHours of Work: Various shifts Monday - Friday, up to 24 hours per weekTHIS IS A TEMPORARY PART TIME POSITION FOR APPROXIMATELY SIX (6) MONTHSApplications will be accepted online at www.stcatharines.ca/jobs. Applications received any other way will not be accepted.The City of St. Catharines is an equal opportunity employer committed to inclusive, barrier-free recruitment and selection processes and work environments. We will accommodate the needs of applicants under the Ontario Human Rights Code and the Accessibility for Ontarians with Disabilities Act (AODA) throughout all stages of the recruitment and selection process. Please advise the Human Resources Division to ensure your accessibility needs are accommodated throughout this processJob Types: Part-time, Fixed term contractContract length: 6 monthsPart-time hours: 24 per weekSalary: $29.64 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftWork Location: In person\",\n            \"location\": \"Church Street, St. Catharines, ON\"\n        },\n        {\n            \"id\": \"9CC8B81C44F59ADF9ABB5C418C46D978\",\n            \"cityName\": \"Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=840645bd8312e2cb\",\n            \"jobName\": \"Testing Centre Invigilator - Casual Part Time/On Call\",\n            \"companyName\": \"Mohawk College\",\n            \"rowSalary\": \"$17.60 an hour\",\n            \"date\": 1694530014068,\n            \"dateOfPosted\": 1693682578540,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2557206,\n                    \"lon\": -79.8711024\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Testing Centre Invigilator - Casual Part Time/On Call Status: Casual Part Time/ On CallHours: Up to 24 hours/weekHome Campus: Fennell, Stoney Creek, IAHSRate of Pay: $17.60Posting Date: August 23rd, 2023Closing Date: Posted until filledWe support and encourage the contributions of our diverse employees. We are committed to nurturing an equitable, diverse and inclusive (EDI) environment for everyone who learns and works at Mohawk College. We believe the rich diversity among our students and the communities we serve should be reflected within our workforce. As educators we believe it is important to act and show leadership in advancing the principles of equity, diversity and inclusion in our community. Mohawk College is currently recruiting for our nextTesting Centre InvigilatorUnder the direction of the Manager, Testing Centres, as a professional staff member, the Invigilator oversees the organization and management of the testing. They are also responsible for proctoring and administering tests to groups, learners, applicants and students while maintaining a quiet atmosphere for testing. The Invigilator is also responsible for following Mohawk Testing Centre’s testing protocol as required by faculty or staff.As the majority of testing will be administered in-person, this position will be on campus. Evening and weekend work required. Candidate must be willing to work or travel to satellite Mohawk College campuses to deliver testing as needed.Responsibilities:This position works with students, faculty and staff on a regular basis and requires the incumbent to use tact and diplomacy in carrying out his or her day-to-day activities. The duties associated with this position will involve considerable exposure to confidential records and student information. Specific responsibilities include: Maintaining an ongoing knowledge of tests administered to ensure efficiencies in testing processes; Ensure the fair and proper conduct in the testing environment that enables a student to perform at their best; Proctoring assessments and tests to ensure academic honesty; Relaying testing instructions to a student as provided by the instructor; Reviewing all accommodations with the student in a discrete and confidential manner; Maintain a quiet and secure atmosphere for testing; Maintain confidentiality and security of all test materials and other test documents; Troubleshooting various minor technical problems that occur with software programs and computers in the Testing Centre and in a remote environment; Reading testing material or scribing answers for students that require this function as a part of their testing accommodation; Office duties such as preparing paperwork, setting up computers, maintaining testing area; Is punctual for duty and reliable; Performs other duties and tasks as required.Invigilator availability must be open for exam periods as outlined in the Mohawk College academic calendar: https://www.mohawkcollege.ca/academic-and-important-datesQualifications:The successful candidate will have:Have a secondary school diploma, or equivalent and more than one year and up to three years of practical experience in a related area.Possess excellent interpersonal, oral and written communications skills; be self-directed; have the ability to work with minimal supervision.Have a positive and friendly attitude and project self-confidence.Be able to work in a team environment with others.Maintain attention to detail, organized work environment and show respect and sensitivity.Knowledge of standard office practices and procedure, and standardized testing tools.Experience with virtual meeting platforms, such as Zoom and Microsoft Teams.Ability to problem solve in a fast-paced environment and access assistance from staff as required.Demonstrate his or her understanding and ability to adhere to the College policies, procedures and/or associated legislation related to privacy and confidentiality of information.Flexibility in scheduling is required (evening and weekend work is required).Be available to work at any of the three Mohawk College campuses (Fennell, Stoney Creek and McMaster) therefore, applicant must have access to a vehicle and a valid driver’s license.Demonstrated commitment and understanding of human rights, equity, diversity and inclusion with the ability to communicate and work effectively with diverse groups of students, employees and the community.Mohawk College prioritizes recruiting and retaining diverse employees. With this in mind, the College is committed to fostering inclusive and barrier-free recruitment and selection processes.Should you require accommodation through any stage of the recruitment process, please contact the Human Resources Department at (905) 575 - 2047.Mohawk College is strongly committed to diversity within its community and especially welcomes applications from racialized persons, women, Indigenous people, persons with disabilities, S2LGBTQIA+ persons, and others who may contribute to the further diversification of ideas.For more information concerning the Mohawk College strategic plan, please see: strategicplan.mohawkcollege.ca/\",\n            \"location\": \"Hamilton, ON\"\n        },\n        {\n            \"id\": \"C2C62907B6AE2109ADB05731641133FE\",\n            \"cityName\": \"1645 Queensway East, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1a5d66e1b9b3d0c0\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Prismaflex Inc\",\n            \"rowSalary\": \"$35,000–$45,000 a year\",\n            \"date\": 1694529706412,\n            \"dateOfPosted\": 1694529706245,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5917384,\n                    \"lon\": -79.5883487\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Queensway E, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job descriptionPrismaflex Inc. is a large format print company that is looking for an energetic and detailed oriented person to work in our CSR department. They will report to Operations and will work closely with Production. This is a very fast paced company where being able to multitask is a prerequisite.Candidate is required to have 2 years progressive customer service experience. Must work well under pressure, be able to juggle many projects simultaneously, and have excellent interpersonal and communication skills. Must also have an excellent sense of priorities.Experience in the print industry would be a plus but not mandatorySkills Required:Good communication skills – verbal and written, with exceptional computer skillsMust be able to work with clients at all levelsFocused and results orientedMust work well with others and independentlyAttention to detail and accuracy, and able to multi task and meet deadlinesOverview of Duties:Receives, processes, and verifies the accuracy of orders from customers utilizing the organization’s internal systems and customer purchase orders and update any changes in customer orders to appropriate departments.Answer calls for the Company and forward to appropriate personnel; attend to customer inquiries as requiredResponsible for notifying administration of any required updates of customer records on the organization’s internal database.Tracking your customer's jobs through production, from order entry to shippingProvide back-up support to other group members in the performance of job duties as required.Performs other related duties as assigned by managementJob Type: Full-timeSalary: $35,000.00-$45,000.00 per yearBenefits:Dental careExtended health careLife insuranceVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayEducation:Secondary School (preferred)Experience:customer service: 2 years (preferred)Work Location: In person\",\n            \"location\": \"Queensway E, Mississauga, ON\"\n        },\n        {\n            \"id\": \"F027325AFCA09F9C684872666F11B7B9\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a0d3d931d6e81b54\",\n            \"jobName\": \"Inbound Customer Service Representative\",\n            \"companyName\": \"Contactpoint 360\",\n            \"rowSalary\": \"$15.25 an hour\",\n            \"date\": 1694529705599,\n            \"dateOfPosted\": 1694529705422,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Inbound Customer Service RepresentativeOperations · Montreal, QuebecJoin our CP360 Family, today!Who We Are:Welcome to ContactPoint 360, the world’s fastest-growing global BPO. At our roots, we are a Canadian privately-owned family company where entrepreneurial spirit and cherished family values come together. With 8 years of remarkable growth, our team has expanded to over 3500+ passionate and successful individuals across Canada, the US, Colombia, Mexico, Jamaica, India, Greece and the Philippines. Our achievements are grounded in an award-winning culture that fosters innovation and empowers every team member, earning us global recognition as a certified Great Place to Work.At ContactPoint 360 Inc., we deeply understand the meaning of family and values. As a family-owned company, we cherish a sense of unity and support that extends beyond the workplace. Our commitment to hiring the best talent is driven by our belief in the importance of family-like bonds within the organization.We empower forward-thinkers and value our team. Together, we enhance interactions, build strong connections, and constantly innovate to deliver exceptional people and customer experiences, putting the human experience first.Our Purpose:Is to create the best human experience, ensuring the highest client satisfaction, and transforming clients’ customers into loyal advocates for life.Check out our YouTube video: https://youtu.be/AsPjX-5uyQQContactPoint 360 provides a career opportunity in Customer Service and Sales with stable shifts and full-time hours. We are seeking motivated self-starters, who thrive on a fast-paced environment and have excellent customer service skills and sales abilities. It is a Remote position while we have isolation measures in place and then it will be completed at our Montreal office.What we offer:A paid learning and development training program.We offer competitive insurance coverage, incentives, and two weeks’ vacation time off after 90 days! Plus surprise perks you'll love.Medical and Dental Insurance after 3 months (Family Plans available)Paid Vacation TimeReferral Bonuses (Earn up to $250 per referral)Opportunities for growth! (You can graduate into a Tier 2 program with a wage increase as quickly at 2 weeks of production!)You MUST have reliable high-speed internet and able to connect directly to the Modem.Equipment can be provided (excluding headset) if located in Montreal QC Area.Responsibilities:Providing outstanding customer service by helping clients with their needs.Upselling/Cross Selling on all inbound customer service calls.Use critical thinking to remain solution focused.Retain and De-escalate customers to ensure an overall positive experience.This is a transitional campaign, with extensive training moments to build a foundational knowledge of systems, processes and customer service expectations. Once a strong foundation has been built the next step to your career begins to a tier two program!Who we are looking for:Candidates must be above the age of 18.Fluent in English and excellent communication and listening skills.High school education or equivalentAbility to pass a background check with a Government Valid IDSolid computer skills and an aptitude for learning new software.Minimum of 1 year working in the Customer Service industryMinimum of 1 year Sales experienceExtras:We are looking for a strong team-player, bringing in a high level of enthusiasm and energy. With a motivation to learn and provide exceptional customer service by using skills such as Empathy and Kindness.Weekly Hours:40 hours, with opportunities for over-timeStart your amazing career with CP360 today!Follow us on:LinkedIn: ContactPoint 360Facebook: ContactPoint 360Instagram: ContactPoint 360Twitter: ContactPoint 360Représentant du service à la clientèleOpérations - Montréal, QuébecJoignez-vous à la famille CP360 dès aujourd'hui !Qui nous sommes:Bienvenue à ContactPoint 360, le BPO mondial à la croissance la plus rapide au monde. À nos racines, nous sommes une entreprise familiale privée canadienne où l'esprit d'entreprise et les valeurs familiales chères se rejoignent. Avec 8 ans de croissance remarquable, notre équipe s'est élargie à plus de 3500 personnes passionnées et prospères à travers le Canada, les États-Unis, la Colombie, le Mexique, la Jamaïque, l'Inde, la Grèce et les Philippines. Nos réalisations sont fondées sur une culture primée qui encourage l'innovation et responsabilise chaque membre de l'équipe, ce qui nous vaut une reconnaissance mondiale en tant que Great Place to Work certifié.Chez ContactPoint 360 Inc., nous comprenons profondément la signification de la famille et des valeurs. En tant qu'entreprise familiale, nous chérissons un sentiment d'unité et de soutien qui s'étend au-delà du lieu de travail. Notre engagement à embaucher les meilleurs talents est motivé par notre conviction en l'importance des liens familiaux au sein de l'organisation.Nous responsabilisons les avant-gardistes et apprécions notre équipe. Ensemble, nous améliorons les interactions, créons des liens solides et innovons constamment pour offrir aux personnes et aux clients des expériences exceptionnelles, en accordant la priorité à l'expérience humaine.Notre but:Est de créer la meilleure expérience humaine, d'assurer la plus grande satisfaction des clients et de transformer les clients des clients en fidèles défenseurs de la vie.Découvrez notre vidéo YouTube: https://youtu.be/AsPjX-5uyQQContactPoint 360 offre une opportunité de carrière dans le service à la clientèle et les ventes avec des horaires stables et à temps plein. Nous recherchons des personnes motivées et autonomes, qui s'épanouissent dans un environnement en constante évolution et qui possèdent d'excellentes compétences en matière de service à la clientèle et de vente. Il s'agit d'un poste à distance pendant que nous mettons en place des mesures d'isolation, puis il sera complété à notre bureau de Montréal.Ce que nous offrons :Un programme de formation et de développement rémunéré.Nous offrons une couverture d'assurance concurrentielle, des incitatifs et deux semaines de vacances après 90 jours ! De plus, nous offrons des avantages surprenants que vous aimerez.Assurance médicale et dentaire après 3 mois (régimes familiaux disponibles)Vacances payéesPrimes de recommandation (gagnez jusqu'à 250 $ par recommandation)Possibilités de croissance ! (Vous pouvez passer à un programme de niveau 2 avec une augmentation de salaire dès 2 semaines de production !)Vous DEVEZ disposer d'une connexion Internet haute vitesse fiable et être en mesure de vous connecter directement au modem.L'équipement peut être fourni (à l'exception du casque d'écoute) si vous êtes situé dans la région de Montréal QC.Responsabilités :Fournir un service à la clientèle exceptionnel en aidant les clients à répondre à leurs besoins.Vous êtes en charge de l'organisation et de la mise en œuvre de l'ensemble des activités de l'entreprise.Faire preuve d'esprit critique pour rester centré sur les solutions.Vous devez être capable de conserver et de désamorcer les clients afin d'assurer une expérience positive globale.Il s'agit d'une campagne de transition, avec des moments de formation intensive pour acquérir une connaissance fondamentale des systèmes, des processus et des attentes en matière de service à la clientèle. Une fois que vous aurez acquis des bases solides, la prochaine étape de votre carrière consistera à passer à un programme de niveau 2 !Qui recherchons-nous ?Les candidats doivent être âgés de plus de 18 ans.Parler couramment l'anglais et avoir d'excellentes capacités de communication et d'écoute.Diplôme d'études secondaires ou équivalent.Capacité à passer un contrôle d'antécédents avec une pièce d'identité valide du gouvernement.Solides compétences en informatique et aptitude à apprendre de nouveaux logiciels.Au moins un an d'expérience dans le secteur du service à la clientèle.Minimum d'un an d'expérience dans la venteExtras :Nous recherchons une personne ayant un fort esprit d'équipe, apportant un haut niveau d'enthousiasme et d'énergie. Avec une motivation pour apprendre et fournir un service client exceptionnel en utilisant des compétences telles que l'empathie et la gentillesse.Heures hebdomadaires :40 heures, avec possibilité de temps supplémentaireCommencez votre carrière avec CP360 dès aujourd'hui !Suivez-nous sur :LinkedIn : ContactPoint 360Facebook : ContactPoint 360Instagram : ContactPoint 360Twitter : ContactPoint 360Job Types: Full-time, PermanentSalary: $15.25 per hourBenefits:Dental careExtended health careTuition reimbursementApplication question(s):Are you comfortable working within the Hours of Operation Mon-Sun 6am EST - 10pm EST?Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Work Location: In personExpected start date: 2023-10-09\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"5336CF1931D9ABB2D364F4D30AA618A4\",\n            \"cityName\": \"916 Windsor Back Rd, Three Mile Plains, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3966228590a213af\",\n            \"jobName\": \"Telephone Sales / Business Development\",\n            \"companyName\": \"Pure Paint Laboratories\",\n            \"rowSalary\": \"$15–$17 an hour\",\n            \"date\": 1694529068974,\n            \"dateOfPosted\": 1667626088630,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.96926999999999,\n                    \"lon\": -64.106021\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Three Mile Plains\",\n                \"formattedAddress\": \"Three Mile Plains, NS B0N 2T0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"West Hants\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Three Mile Plains, NS\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a positive, self motivated sales person to be a part of our dynamic team with endless possibilities for growth. Come on board with our group of hardworking, goal orientated go-getters and work for one of the most sustainable manufacturers in North America, based out of Windsor, NS.We are a high quality luxurious paint manufacturer looking for part-time sales professionals leading to full time.DescriptionService customers by selling product and meeting customer needsService existing accountsObtain ordersEstablish new accountsOrganize daily work load/ schedule to call on existing or potential salesBuild high quality customer relationshipsMeet/exceed sales goalsSelf motivatedResponsible for knowledge of companyEnsure CRM tool is up to dateQualificationsCall centre or direct sales experienceFluent in Word/ Excel/ AdobeComputer and internet connectionQuiet/ private workspaceConfident and outgoing personalityGoal and deadline motivatedReliableJob Type: Part-timePart-time hours: 15 per weekSalary: $15.00-$17.00 per hourSchedule:4 hour shiftMorning shiftNo weekendsSupplemental pay types:Commission payAbility to commute/relocate:Three Mile Plains, NS: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Three Mile Plains, NS\"\n        },\n        {\n            \"id\": \"56457A9C7BB421DF4612855441490125\",\n            \"cityName\": \"3330 Gaetz Avenue, Red Deer, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=771cc233f26143ce\",\n            \"jobName\": \"Cashier/Customer Service/Gas Station Attendant\",\n            \"companyName\": \"Petro Canada\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694528947063,\n            \"dateOfPosted\": 1670453682149,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.257636,\n                    \"lon\": -113.8141506\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Red Deer\",\n                \"formattedAddress\": \"Gaetz Ave, Red Deer, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Red Deer\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Petro Canada (3330 Gaetz Ave, Red Deer)*Hiring for 2 Positions*- Overnight Shifts- Day ShiftsLooking for individuals with superb customer service and excellent work ethics. Work experience in Retail would be an asset.Job duties include processing sales transactions while providing great service to our customers, cleaning and stocking the interior and exterior of the store and capable to work in a fast paced environment.Medical Benefits are provided to full time employees after completion of 6 months.Drop off your resume at 3330 Gaetz Ave or email your resume.Job Types: Full-time, PermanentSalary: $15.00 per hourBenefits:Dental careVision careShift:8 hour shiftWork Location: In person\",\n            \"location\": \"Gaetz Ave, Red Deer, AB\"\n        },\n        {\n            \"id\": \"81D4A2E42CEA50A98EFF3065B045BDEC\",\n            \"cityName\": \"Barriefield Market in Kingston, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=403c29223a8c92e3\",\n            \"jobName\": \"Meat Cutter Customer Service\",\n            \"companyName\": \"Barriefield Market\",\n            \"rowSalary\": \"$18–$21 an hour\",\n            \"date\": 1694528553566,\n            \"dateOfPosted\": 1694528552198,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2311717,\n                    \"lon\": -76.4859544\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kingston\",\n                \"formattedAddress\": \"Kingston, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Frontenac County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kingston\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Barriefield Market currently has an opening for a full and part time meat customer service applicants . We are looking for someone with a positive and outgoing attitude who would love to educate our customers about all the fresh and delicious meats we offer. We are committed to engaging each customer, understanding their needs, and offering information and suggestions that will help them make great choices. And nowhere is this more important than in the meat dept where there is so much good stuff to choose from! In this role you will spend about 60% of your time at the meat counter, which is all about fulfilling orders, product preparation, display, maintenance of product quality, answering questions, and most important of all - getting to know our repeat customers. The other 40% of your time will be spent cleaning up, stocking the area, or prepping food in the back – the behind the scenes work to make sure our meat department is setup for success. There is lots to do in this job – so you’ll find that time flies - and there’s lots to learn too. Thefull-time position will provide approximately 35-40 hours per week,and part time 24 to 30 consisting of days, and weekend shifts.Our ideal candidate will have these qualifications: High School Diploma  Good verbal communication skills Strong organization and planning skills  Strong initiative ability, excellent work ethic and sense of urgency Ability to work in a fast-paced environment  Flexibility – Ability to adapt quickly to new situations, as well as new and changing processes, programs, and services Strong customer service skills.Job Type: Full-timeSalary: $18.00-$21.00 per hourBenefits:Store discountSchedule:8 hour shiftDay shiftMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Kingston, ON\"\n        },\n        {\n            \"id\": \"3A6C690A6A9F2347093E98324BA8D7DC\",\n            \"cityName\": \"209 4 Av SE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=685d47a07178d612\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Brwd Yyc\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694528539554,\n            \"dateOfPosted\": 1693679417259,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0377538,\n                    \"lon\": -113.9657643\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"17 Ave SE, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a locally owned and operated coffee shop from Regina, Saskatchewan (Brewed Awakening) and have opened up our very first location in Calgary, Alberta! We are located downtown inside the Delta.We are currently looking for a couple more baristas to join our growing team!- Candidates must provide outstanding customer service with enthusiasm, kindness, and a big smile!- Candidates must be able to consistently serve up premium quality food and beverages.- Candidates must have passion to learn and grow in a fun and collaborative team environment.- Candidates must be able to also well work independently.- Candidates MUST be available weekends.Previous barista training is an asset. Training will be provided.We're looking forward to meeting you!Job Types: Full-time, PermanentSalary: From $15.00 per hourBenefits:Casual dressSchedule:Day shiftMorning shiftWeekends as neededSupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Av SE, Calgary, AB\"\n        },\n        {\n            \"id\": \"200FF99CE6043C4152250F58B53C1A64\",\n            \"cityName\": \"Saskatoon, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=656470152351c8ab\",\n            \"jobName\": \"Dispatcher/Customer Service\",\n            \"companyName\": \"Quick Apex Trucking Ltd.\",\n            \"rowSalary\": \"$15–$25 an hour\",\n            \"date\": 1694528308241,\n            \"dateOfPosted\": 1623842505386,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.157902,\n                    \"lon\": -106.6701577\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saskatoon\",\n                \"formattedAddress\": \"Saskatoon, SK, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saskatoon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Quick Apex Trucking is looking for a Dispatcher to support the drivers and meet customer scheduling needs.The successful candidate for this position needs to be able to adjust to last minute changes and work withdrivers to schedule pick-up or delivery for new or established clients. A good fit for this role will becustomer service focused, have a strong understanding of heavy equipment and able to work understressful conditions. This role will require someone to be on call based on a schedule that will able you tohave a work life balance.Daily duties:➢ Answer the phones to receive, schedule and enter loads.➢ Dispatch drivers shipment pick-ups and deliveries.➢ Update shipment tracking system in timely fashion.➢ Manage 15 plus drivers.➢ Manage Phone calls and will be able to get the load when required➢ Market and route intelligence is must to receives and coordinates emergency responsecustomer callsExperience and Skills required:➢ Strong understanding of heavy equipment.➢ Has previous 1A Driving experience and equipment hauling experience is an asset.➢ 2 plus years in a Dispatcher or similar role.➢ Leadership capabilities, ability to manage people.➢ High attention to detail, extremely organized, problem solver.➢ Adaptable, ability to adjust based on the immediate needs.➢ Clear, professional verbal and written communication.➢ Approachable, customer serviced orientated.➢ Marketing skills to get new business.Expected start date: 2021-07-01Job Type: PermanentSalary: $15.00-$25.00 per hourBenefits:Extended health careSchedule:8 hour shiftExperience:dispatch: 1 year (preferred)dispatching: 1 year (preferred)\",\n            \"location\": \"Saskatoon, SK\"\n        },\n        {\n            \"id\": \"E247717050EF05CB708F722627B7BC13\",\n            \"cityName\": \"Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6de96bd2aaac5250\",\n            \"jobName\": \"Customer Service Assistant\",\n            \"companyName\": \"Ocean Star Ltd\",\n            \"rowSalary\": \"$19.50 an hour\",\n            \"date\": 1694526277607,\n            \"dateOfPosted\": 1692830747300,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Bachelor's degreeExperience: 3 years to less than 5 yearsWork setting Private sector Tasks Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Explain the type and cost of services offered Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Sell merchandise Advise clients on advertising or sales promotion strategies Answer written and oral inquiries Supervision 1 to 2 people Computer and technology knowledge Internet MS Excel MS Outlook MS Word MS PowerPoint Social Media Area of work experience Marketing Transportation/travel information Own transportation Work conditions and physical capabilities Attention to detail Fast-paced environment Tight deadlines Work under pressure Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Judgement Ability to multitask Green job Involves duties and responsibilities that lead to positive environmental outcomes Involves supporting green economy sectors Other benefits Parking availableWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"A468858FC2DDFA795460115997973A62\",\n            \"cityName\": \"Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c6c8d8728ffc0557\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Fix Auto Scarborough Village\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694524711865,\n            \"dateOfPosted\": 1652789245689,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service Representative (CSR) is responsible for serving customers in person and via the telephone. The CSR is accountable for dealing with customer service, selling of services and processing transactions. CSR follows all procedures and policies when providing customer service. The CSR understands his/her role as brand ambassador and provides positive brand experience to all customers.Core Competencies· Customer Focus· Communication· Energy & Stress Management· Teamwork· Quality Orientation· Problem Solving· Accountability and Dependability· Operating Equipment· Ethics and Integrity· Results Oriented· NegotiationJob Duties· Ensure excellence in the delivery of the customer experience as outlined in Fix Auto best practices and measured by CSI results· Effectively manage front office operations to ensure efficient organization and support of the sales function· Collaboration with production manager and sales manager to ensure vehicles are on track for timely and flawless delivery· Provide regular and standard reporting to production and sales managers to ensure awareness on key performance metrics· Provide service to customers by reviewing the services offered and cross-sell different programs by explaining the advantage of our multiple service offerings.· Sell the Fix Auto Services and provide an outstanding customer service, in order to build strong and long-lasting relationships with clients.· Communicate and interact with clients throughout the different technologies such as text messages, emails, online videocall, etc.· As required, assign the work order to technicians.· Set convenient appointments with the customers, based on the shop availability.· Keep the customer data base up to date to ensure efficiency.· Other related tasks as required.Requirements· High school diploma or GED required· Strong customer service and troubleshooting skills· Experience working as a customer service representative for a body shop preferred· Exceptional conflict resolution, negotiation, and objection handling skills· Highly flexible, with solid interpersonal skills that allow one to work effectively in a diverse working environment· Able to effectively communicate both verbally and in writing· Able to deal with people sensitively, tactfully, diplomatically, and professionally at all times· Computer literate, including effective working skills of MS Word, Excel and e-mail· Professional appearance and manners· Strong work ethic and positive team attitudeWorking Conditions· Manual dexterity required to use desktop computer and peripherals· Overtime as required· Lifting or moving up to 50 lbs may be requiredJob Type: Full-timeSalary: $19.00-$22.00 per hourBenefits:Company eventsOn-site parkingStore discountSchedule:8 hour shiftDay shiftAbility to commute/relocate:Scarborough, ON M1J 2E5: reliably commute or plan to relocate before starting work (preferred)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"0079BE957619E7F33C7F0E8E5EC7AA62\",\n            \"cityName\": \"10828 Hurontario St, Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=755146a8a00df86c\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Brampton Brick\",\n            \"rowSalary\": \"$37,838–$45,000 a year\",\n            \"date\": 1694524518616,\n            \"dateOfPosted\": 1692830606319,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7056942,\n                    \"lon\": -79.7868214\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Hurontario St, Brampton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 37838.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    37838.0\n                ],\n                \"range\": {\n                    \"gte\": 37838.0,\n                    \"gt\": null,\n                    \"lte\": 37838.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service RepresentativeJob PurposeThe Customer Service Representative will work cooperatively with customers, sales representatives, as well as the logistics and technical teams, to ensure that Brampton Brick’s customers receive quality product and service in a timely and professional manner.Primary Duties & ResponsibilitiesProviding product and technical information to customers and sales team in a timely mannerCommunicate with customers and co-workers via phone/email/salesforce/faxAccurately process customer transactions such as orders, picks, packs, and returnsObtain accurate information from clients relating to their orders and projectsManage orders to ensure accurate and timely delivery of productIdentify, research, and resolve customer inquiry and order statusCoordinate the transfer of products from other locations as neededWork closely with other locationsMonitoring inventory and allocationsInter-company billing, inter-branch billing, track customer owned inventoryReporting, analyzing, and performing other duties as assigned.Some travel may be required from time to timeQualifications / ExperienceMinimum high school graduate, post secondary training is an assetExperience in customer service environmentsProficient in the use of Microsoft Office, and capable to quickly gain working knowledge of software applicationsExcellent interpersonal, listening and communication skillsExcellent organizational and time-management skillsStrong problem solving skills; ability to make timely but sound decisionsStrong numerical and analytical skillsManage changing priorities, demands and constant interruptionsAbility to work under pressure, multi-task and meet deadlinesTeam player, but is able to work independentlyFluency in French (written and oral) an assetWork flexible hoursJob Types: Full-time, PermanentSalary: $37,838.00-$45,000.00 per yearBenefits:Dental careVision careSchedule:8 hour shiftMonday to FridayEducation:Secondary School (preferred)Experience:customer service: 3 years (required)Work Location: In person\",\n            \"location\": \"Hurontario St, Brampton, ON\"\n        },\n        {\n            \"id\": \"ABFC4AA81C34D14B871C8B690FDE893D\",\n            \"cityName\": \"5014 49 St, Leduc, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4b812d151fbc7dfe\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Jukebox Diner\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694523362855,\n            \"dateOfPosted\": 1691631177563,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.2646889,\n                    \"lon\": -113.5527442\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Leduc\",\n                \"formattedAddress\": \"Leduc, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Leduc County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Leduc\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate / CashierResponsibilities:- Provide exceptional customer service by greeting and assisting customers in a friendly and professional manner- Process customer transactions accurately and efficiently using the cash register- Handle cash, credit, and debit card transactions with precision- Maintain a clean and organized checkout/kitchen- Answer customer inquiries and resolve any issues or complaints in a timely manner- Collaborate with team members to ensure a positive shopping experience for customersExperience:- Excellent communication skills in English, both verbal and written- Strong organizational skills to manage multiple tasks effectively- Previous experience in customer service or retail is preferred but not required- Technical sales knowledge is a plus- Ability to handle cash transactions accurately and efficiently- Time management skills to prioritize tasks and meet deadlinesWe offer competitive pay, flexible scheduling. Join our team if you are committed to providing exceptional customer service.To apply, please submit your resume highlighting your relevant experience and qualifications. Only qualified candidates will be contacted for an interview.Job Type: Part-timePart-time hours: 20-25 per weekSalary: From $15.00 per hourBenefits:Store discountDay range:Monday to FridayFlexible Language Requirement:English not requiredShift:4 hour shiftAfternoon shiftDay shiftEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Licence/Certification:FoodSafe (preferred)Shift availability:Day Shift (preferred)Ability to Commute:Leduc, AB T9E 6W8 (required)Ability to Relocate:Leduc, AB T9E 6W8: Relocate before starting work (preferred)Work Location: In person\",\n            \"location\": \"Leduc, AB\"\n        },\n        {\n            \"id\": \"4BE88141E5527CC72E2D3A72FFC3A12B\",\n            \"cityName\": \"22740 Dewdney Trunk Rd, Maple Ridge, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1087e5d4d5fe4281\",\n            \"jobName\": \"Service Counter - Lumber / Customer Service\",\n            \"companyName\": \"Haney Builders Supplies (1971) Ltd.\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694521422786,\n            \"dateOfPosted\": 1692825116849,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2202754,\n                    \"lon\": -122.5360144\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Maple Ridge\",\n                \"formattedAddress\": \"Dewdney Trunk Rd, Maple Ridge, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Maple Ridge\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"SUMMARY : Sales Counter Representative is responsible for assisting customers to determine their needs, answer their questions about our products and recommend the right solutions. You should also be able to promptly resolve customer complaints and ensure maximum client satisfaction. Other companies may refer to this job as Customer Service, Inside Sales, Service Advisor, Sales Associate or Store Associate.ESSENTIAL DUTIES AND RESPONSIBILITIES : Responsibilities include but are not limited to:Greet customers and ensure a good customer experienceAssess customer needs and provide expert advice on store productsPresent and demonstrate the product highlighting its positive features and suggest complementary productsProcess Invoices, credits and special orders for customersActively participate in achieving store sales objectivesKeep up to date with new products and their functionsDevelop a basic knowledge of all the departments in the storeBe aware of current promotions and flyersComply with policies and procedures regarding loss prevention, breakage of goods and health and safetyPerform other duties as requested by the supervisor.QUALIFICATIONSKnowledge of lumber, building supply and construction industrySolid communication and interpersonal skillsSpecific area knowledge in plumbing, paint, electrical, and general DIY is a plusA friendly and energetic personality with customer service focusBe able to work well as part of a teamBENEFITS (including but not limited to):Competitive wages based on experienceHealth, Dental, Group Life Insurance (once 3-month probation has been completed)Deferred Profit Sharing Plan and RRSP Deduction Plan (after 12 months FT employment)Job Types: Full-time, PermanentSalary: From $17.00 per hourBenefits:Employee assistance programProfit sharingStore discountSchedule:8 hour shiftWeekends as neededSupplemental pay types:Bonus payOvertime payCOVID-19 considerations:Cleaning staff thoroughly clean our premise each day, plastic barriers between customers and service counter, PPE available to all staff, and more.Experience:customer service: 2 years (preferred)Work Location: In person\",\n            \"location\": \"Dewdney Trunk Road, Maple Ridge, BC\"\n        },\n        {\n            \"id\": \"BF300050E638372ACAB0B142DED53C05\",\n            \"cityName\": \"4412 14th Avenue, Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=14f87b6bf6b62a7d\",\n            \"jobName\": \"Customer Service & Quoting Specialist\",\n            \"companyName\": \"Microart Services Inc.\",\n            \"rowSalary\": \"From $80,000 a year\",\n            \"date\": 1694521326552,\n            \"dateOfPosted\": 1692828546838,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8511546,\n                    \"lon\": -79.27180589999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Markham\",\n                \"formattedAddress\": \"14th Ave, Markham, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Markham\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 80000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    80000.0\n                ],\n                \"range\": {\n                    \"gte\": 80000.0,\n                    \"gt\": null,\n                    \"lte\": 80000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer satisfaction. Everything we do is focused on building and sustaining our customers’ trust, confidence and loyalty.ABOUT MICROART:We are an electronic manufacturing company with a focus in producing PCBS (Printed Circuit Boards). Microart Services Inc. is an ISO9001, ISO13485 & AS9100 registered corporation servicing markets worldwide. Our continued commitment to servicing the prototype to mid-volume clientele has awarded us with strong, stable growth over 40 successful years and many valued long-term partnerships.Job Title: Customer Service and Quoting SpecialistReports To: Supply Chain DirectorDepartment: Supply ChainShift: 8:30 AM – 5:00 PMKey Responsibilities:1. Client Requisition Processingo Ensure customer files are saved and organized in compliance with Microart document control standards.o Ensure customer’s requests for quotes are processed as follows:o Create templates same day quote request is receivedo Replies to “Consigned customers” within 24 hourso Replies for “Boards only” within 48 hourso “New Customers” response within 3 dayso “Turnkey orders” within 5 dayso Track obsolescence and NCNR (Non-returnable, non-cancellable) components; convey reports to customers, and provide solution.o Ensure customer’s purchase orders are processed daily, and delivery confirmed within 24 hours.o Update and ensure the accuracy of Dynamic datao Client information – Address, contact names, products sold, special requests.o Sales Order, Production Order, Finished Good Item Card is complete and updated.o Respond to all client enquiries in a timely manner.o Identify large volume customers, and bring to the attention of your manager.o Proactively solicit and action customer feedback.2. Procurement and Quoting of Materialso Verify customer’s most up-to-date information on file, and import BOMs.o Ensure material orders are placed in a timely manner, committing to your LPIH (Last Part in House) date.o Update MSI BOM on the fileserver to reflect spending.o Apply JIT inventory methodology, and reduce stocked inventory.o Perform MRO (Maintenance, repair and operations) purchasing on an ongoing basis.3. Other duties as assigned by management team.Qualifications:1-2 years customer service work experience, ideally in electronics manufacturing environmentAble to work in a high changed / fast-paced environment under tight deadlinesExperience with MRP systems (ideally Dynamics)Knowledge of MS Office (Excel skills)Effective communication skills to interact effectively with all levels of the organizationEffective organizational, time management and interpersonal skillsExcellent analytical skills and attention to detailDedicated, professional attitude; enthusiastic and willing to learnBonus if completed or aiming to complete PMAC/CGP or other related supply chain/logistics coursesMicroart Services is committed to providing accommodation in its recruitment processes to applicants with disabilities, upon request, taking into account the applicant's accessibility needs. If you require accommodation at any time during the recruitment process please email us at aoda@microartservices.com.To bend over backwards for our customers and to grow our family of people, customers and supply partners treating all with care & attention.Job Type: Full-timeWork Location: In person\",\n            \"location\": \"th Avenue, Markham, ON\"\n        },\n        {\n            \"id\": \"FD8A5D2DA66E447868D625AE5FE66B98\",\n            \"cityName\": \"680 Progress Avenue, Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e018d2fda91a03cb\",\n            \"jobName\": \"Picker Packer And Customer Service Associate\",\n            \"companyName\": \"Salonbrandz.com\",\n            \"rowSalary\": \"$15.75–$16.50 an hour\",\n            \"date\": 1694521307489,\n            \"dateOfPosted\": 1694521306076,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7789414,\n                    \"lon\": -79.2568878\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Progress Ave, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full Time: $15.75-16.50/hr StartingExcellent Hours: Monday - Friday From 9am -5pmClosed on the Weekends,Recently graduated International Students & Immigrants are welcome must be fluent in english and computer literateSalonbrandz.com. - Scarborough, ONSalonbrandz.comis an independent, privately-owned Canadian distributor of professional salon products. We are dedicated to offering a wide variety of high quality, value-added products for our clients. Through inspiration, education and leadership, our ultimate goal is to help the professional enhance their business by assisting them in making their clients feel good and look beautiful.We are currently looking to hire Picker Packer & Sales Entry Associates to join our team. We want you to bring your talents, experience, and enthusiasm to a team-oriented and dynamic environment. We believe that our success is based primarily on the quality and hard work of our valued team members to bring the Beauty world to our customers._______________________________________________________Responsibilities:Pick and pack orders for customers and for online orders.Face to face sales for walk-in customers by directing them to products an explaining product features.Maintain excellent store appearance and assist with store merchandising to provide a positive shopping experience for our customers.Ability to explain intermediate computer tasks to non-technical usersExcellent English communication skills (verbal and written)Outstanding organizational skills and an ability to juggle multiple tasksQualifications:Strong and dependable work ethic, with a drive to uphold our Culture of Can DoPossess a passion for the beauty industry with the desire to teach our customers about our products.Self-starter with a drive to continuously learn and develop in their careerMust be 18 years of age of olderPrevious sales and/or cosmetology experience preferred but not required. Work where we treat you and our customers as a priority.Opportunities to grow your career within the companyOn-going product knowledge programs and customer experience coachingWork in an environment focused on and surrounded by beautyJob Type: Full-timeSalary: $15.75-$16.50 per hourExpected hours: 37.5 per weekSchedule:Monday to FridayWork Location: In personApplication deadline: 2023-09-15\",\n            \"location\": \"Progress Ave, Toronto, ON\"\n        },\n        {\n            \"id\": \"8F74665808ED19216FEF3A039C1C567A\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e658388367b3870e\",\n            \"jobName\": \"Customer Service And Rentals CoordinAtor At Place Dorchester\",\n            \"companyName\": \"Cogir\",\n            \"rowSalary\": \"$40,000 a year\",\n            \"date\": 1694521145016,\n            \"dateOfPosted\": 1668220829241,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Every day, our team of enthusiasts makes a difference to residents. The “human for human” relationship is at the heart of our approach and corporate philosophy. Moreover, the success of COGIR Immobilier is based on the good teamwork between the various departments and on all the people who have joined the company for more than 25 years. POSITION DESCRIPTION: The Place Dorchester building located downtown is currently looking for a Customer Service and Rentals Coordinator. Are you a sales ace? Proactive, with innovative sales-marketing ideas? We have the opportunity for you waiting for you! ROLE AND GENERAL RESPONSIBILITIES:Coordinate with the property manager the interventions requiring a specific action plan.Ensure the provision of high level customer serviceFollow-up of rental filesFulfill leasesManage the collection of rents and the making of deposits according to the standards in forcePlan the arrivals and departures of tenants and ensure the optimal progress of these activities, while maintaining the security of the building and its occupantsPreparation and follow-up of movesRespond to customer inquiries, email follow-upsRespond to rental requests (email follow-ups, Facebook, ILS, etc.)See to the management of the repair work according to the requests of the tenants with the members of the maintenanceUpdate the various administrative reportsUpdate the various rental reportsWork with the property manager for rent collectionEXPERIENCE AND QUALIFICATIONS:Availability as soon as possibleBENEFITS:Rental bonusesCellular providedPossibility of advancementGroup insuranceFloating days offSocial leaveEmployee Assistance ProgramVacationWelcome and integration ProgramA welcoming and tight-knit team!Salary of $40,000 rental commissionsJOB STATUS: Permanent: Full Time JOB SCHEDULE: Day time \",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"2ADB5AB37690962CAB51A5247115BF27\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=80dc7e2936fd85bf\",\n            \"jobName\": \"Customer Service Supervisor - Retail\",\n            \"companyName\": \"Ontario Impex Of Canada Inc.\",\n            \"rowSalary\": \"$21.50 an hour\",\n            \"date\": 1694521063849,\n            \"dateOfPosted\": 1692824922012,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsWork setting Manufacture Tasks Assign sales workers to duties Hire and train or arrange for training of staff Authorize return of merchandise Establish work schedules Prepare reports on sales volumes, merchandising and personnel matters Organize and maintain inventory Resolve problems that arise, such as customer complaints and supply shortages Supervise and co-ordinate activities of workers Supervise staff (apprentices, stages hands, design team, etc.) Supervision 3-4 people Work conditions and physical capabilities Fast-paced environment Work under pressure Tight deadlines Attention to detail Manual dexterity Personal suitability Accurate Client focus Efficient interpersonal skills Excellent oral communication Flexibility Organized Team player Excellent written communication Dependability JudgementWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"38B635CFC446218C72E6D415AD5E7C8D\",\n            \"cityName\": \"Salonbrandz.com in Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b9974f56949a57cb\",\n            \"jobName\": \"Customer Service Sales & Packer\",\n            \"companyName\": \"Salonbrandz.com\",\n            \"rowSalary\": \"$16–$17 an hour\",\n            \"date\": 1694520995549,\n            \"dateOfPosted\": 1694520994366,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We’re an independent, family-owned business, located in Scarborough, Ontario, with an ambitious growth plan. A rapidly expanding company within the Professional Beauty space, with distribution across Canada, the USA and Europe. Extremely social media savy and connected to all major hairstylists around the world.Responsibilities: This individual will be working in a beauty supply store, with customer service, picking/ packing as well as computer orientied in making invoices and bills . The successful candidate must be reliable and detail oriented. We are looking for someone who works well under pressure and who is willing to make positive contributions which will enable our team to work with optimum efficiency.Responsibilities and DutiesDuties: * Pick, Pack and Process orders * Moving and lifting of product, not heavy * General invoicing * Other warehouse duties as needed * Qualifications and SkillsTechnical Skills: * Ability to lift and carry product up to 20-40 lbs. * Attention to detail and a high level of accuracy * Ability to work in a fast paced environment * Ability to work independently or in a team environment * Some computer skills required * Required to stand and walk for long periods of time * Education & Experience: * Warehouse picking/shipping experience is an asset * G.E.D or equivalentBenefitsExcellent work/life balance with a Mon-Fri, 37½ hour work week * Staff discountsMaintains excellent writing and language skills.Ability to work independently while following the overall management strategy.Tech-savvy.Ability to adapt and respond to multiple incoming requests and shifting priorities.Own day-to-day Seller Central account managementSubmit cases and investigate issues with AmazonWeekly reportingCoordinating inventoryInterested, qualified candidates should submit their resume in confidence - Please no phone calls.We thank all candidates for their interest, but only those selected for interview will be contacted3 month probationary period.Masks are to be worn at all time. Daily screening. Not open to public.Job Type: PermanentSchedule:8 hour shift (Mornings)Monday to FridayNo weekendsOvertimeExperience:warehouse: 1 year (preferred)warehouse worker: 1 year (preferred)Work remotely:NoJob Types: Full-time, PermanentSalary: $16.00-$17.00 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In personApplication deadline: 2023-09-15Expected start date: 2023-09-15\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"B7B5202A40D33DE6239AFB55DB54F1FC\",\n            \"cityName\": \"360 Old Airport Road, Yellowknife, NT\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8955d2195fef9307\",\n            \"jobName\": \"Automotive Customer Service Advisor\",\n            \"companyName\": \"Yellowknife Motors\",\n            \"rowSalary\": \"$60,000–$70,000 a year\",\n            \"date\": 1694519518625,\n            \"dateOfPosted\": 1689747458469,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 62.45464380000001,\n                    \"lon\": -114.4074368\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Yellowknife\",\n                \"formattedAddress\": \"Old Airport Rd, Yellowknife, NT X0E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Northwest Territories\",\n                \"state_code\": \"NT\",\n                \"postalTown\": null,\n                \"county\": \"Fort Smith Region\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Yellowknife\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 60000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    60000.0\n                ],\n                \"range\": {\n                    \"gte\": 60000.0,\n                    \"gt\": null,\n                    \"lte\": 60000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"SummaryThe Service Advisor is responsible for creating great first impressions and guides the customers through the maintenance scheduling process and repair of their vehicles.The Service Advisor is a great listener and is a master at executing all the service processes with due diligence and customer service and safety in mind. The Service Advisor has a keen eye for \\\"the details\\\" and strives to be a product knowledge expert ensuring the dealership provides each customer with a personalized service experience.The Service Advisor builds strong relationships with customers in an effort to achieve service targets and utilizes the tools provided to ensure all customers keep coming back to the dealership.The Service Advisor upholds the dealerships’ standards and values so that the customer is completely satisfied through every interaction with the service department. As a team player, Service Advisors foster excellent relationships with personnel in all areas of the dealership.The DetailsDevelop Strong Relationships with Customer and continue to develop the Relationship:· Greet customers on the phone or in the Dealership promptly and in a courteous manner.· Address customer questions/needs promptly and professionally.· Schedule appointments based on service calls.· Provide customers with personalized service.· Ensure comprehensive re-delivery check of customer vehicle, ensuring cleanliness and that all items identified for service/repair have been carried out appropriately on time.· Assist customers in scheduling appointments for routine maintenance and needed repairs.· Handle customer complaints and ensures high customer satisfaction standards.Service Experience· Identify service needs of customer vehicle based upon historical service data.· Asks appropriate questions to ensure the vehicle to be serviced is diagnosed correctly.· Provide repair and maintenance recommendations to the customer.· Advise customers of estimated service and repair costs and review details of service/repair invoice with customer to gain their understanding of all services provided.· Explain the nature of all repairs.· Determine progress of repair/service orders and inform customer accordingly.· Handle phone inquiries regarding work-in-progress, appointments and return phone messages promptly.· Advise customers on the care of their cars and value of maintaining their vehicle in accordance with manufacturer’s specifications and warranty maintenance.Be detailed oriented· Actively maintain the cleanliness of personal and team workspaces.· Maintain a high level of grooming, hygiene and professional appearance.· Ensure all documentation/paperwork is completed in an accurate and timely manner.· Keep service department forms, menus and pricing guides up to date.· Ensure vehicles are parked in assigned areas, make sure they are locked and all key are marked and put away correctly.· Document customer’s routine maintenance or vehicle problems accurately and clearly on repair orders.Commit to the Dealership Brand· Stay up-to-date on all dealership training requirements.· Understand and sell in-dealership manufacturer service promotions.· Be knowledgeable about new features, specials and updates.· Be a champion for delivering excellent service at all times.· Actively promote and develop new business.Develop and maintain full knowledge about the Industry· Keep up to date with products, accessories, prices, and key features of major competitors.Specific Skills· Excellent interpersonal skills with an upbeat and engaging attitude.· Customer relationship skills including listening and the ability to communicate effectively.· Excellent verbal communication and writing skills.· Problem solving and critical thinking skills.· Basic computer skills.· Good math skills.· Organized and pays attention to detail.· Flexible and open to change; take on special tasks as needed.· Conscientious.· Ability to negotiate win-win scenario’s for the customer.· Results oriented and accountable.· Ability to work independently or within a team.· Able to operate manual and automatic transmissions.· Adaptable to work evening and weekend shifts as scheduled.Education & Experience· Minimum Grade 12 High School Diploma.· A fundamental understanding of automotive mechanical fundamentals.· Adaptable to work evening and weekend shifts as scheduled.Background check requiredJob Type: Full-timeSalary: $60,000.00-$70,000.00 per yearBenefits:Extended health careSchedule:Monday to FridayWeekends as neededAbility to commute/relocate:Yellowknife, NT X1A 3T4: reliably commute or plan to relocate before starting work (required)Experience:service advisor: 1 year (required)Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Old Airport Road, Yellowknife, NT\"\n        },\n        {\n            \"id\": \"EB1D7ED7D18151E9DBAB57D781EC3EF3\",\n            \"cityName\": \"90 Admiral Blvd, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b091f652a4198bd8\",\n            \"jobName\": \"Warehouse/Customer Service Team Lead\",\n            \"companyName\": \"Bolloré Logistics Canada\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694519399919,\n            \"dateOfPosted\": 1692825785566,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6477712,\n                    \"lon\": -79.6963243\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Admiral Blvd, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:Handle customer complaints by providing solutions, often within a time limit to ensure the customers is satisfied.· Learn to identify customer needs or desires in order to provide the appropriate service.Responsible for the operational stock balance between the WMS and Customer System.·Will act as WMS key-user and learn the software systems used by the customer to be able to communicate effectively with the customer or staff issues/inquiries.·Be able to process orders, or requests sent by the customer.·Work with colleagues when necessary to resolve customer complaints.Learn about the products inside and out to be able to answer any questions and processes.Would need to step in at times to cover / perform the job al his/her respective staff .Will be the liaison with the customers’ team with matters of inbound, inventory, and outbound.Will take part in the daily customer operational calls to identify any obstacle that may not allow Bolloré to meet the set operational deadlines.Manage, with his/her team, all administrative aspects of the operations / activities.Assists in training, evaluation of staff, and provides end users performance reviews to manager.Maintains professional and technical knowledge of department staff by consulting with workers, and managers to ensure the procedures are maintained; staff are trained on internal process, and in compliance with safety and occupational guidelines regarding material handling, shipping and receiving of inventory.Updates job knowledge by participating in educational opportunities; reading technical publications.Accomplishes warehouse and organization mission by completing related results as neededMay compile worksheets per customer specifications.Ensures all Company QHSE rules and regulations are followed and abided by all, including oneself.Experience:- Five to then years experience in a customer service role is required- Proven leadership skills with the ability to motivate and inspire a team- Strong communication and interpersonal skills- Excellent problem-solving abilities- Familiarity with order picking, loading/unloading, RF scanners, shipping/receiving, picking/packing, pallet jacks, package building, and mechanical knowledge is preferredWe offer competitive pay and benefits package. Join our team today and make a difference in our customers' experience!Job Type: Full-timeSalary: $20.00-$22.00 per hourBenefits:Company pensionDental careExtended health careOn-site parkingPaid time offRRSP matchTuition reimbursementFlexible Language Requirement:French not requiredSupplemental pay types:Overtime payAbility to commute/relocate:Mississauga, ON L5T 2W1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:warehouse: 1 year (preferred)Licence/Certification:Class 5 Licence (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Admiral Blvd, Mississauga, ON\"\n        },\n        {\n            \"id\": \"6E45FC511F992B4313D66F2988A92859\",\n            \"cityName\": \"9936 109 Street NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=48481aafd114557e\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Petro Canada/ 846840 Alberta Ltd\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694518421682,\n            \"dateOfPosted\": 1692824096470,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.6065656,\n                    \"lon\": -113.3801256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"24a St NW, Edmonton, AB T5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are hiring Cashier(s) at the following Petro-Canada locations:9936 109 Street, EdmontonAfternoon shift, schedule is posted 1 week in advance. Days vary, weekends and holidays required.Working alone and as part of the team required. Must be mature, and expected follow all safety and service policies. Part time and full time required.We require a confident, outgoing and smart person to join our team, all training and uniforms are provided. Advancement opportunities available for fast learners. We strive to deliver exceptional Guest service through:SERVICE-ORIENTATIONPutting the Guest first by providing fast, friendly and responsive service.Responding to Guest complaints by Listening with empathy, taking action and wrapping up.COMPOSUREThe ability to maintain composure and objectivity in difficult situationsSELLING SKILLSSuggest products that will meet the needs of the Guest.Can explain the benefits for these add on items.INITIATIVEActive attempts to achieve set goals over and above what is required and expected.ADAPTABILITYThe ability to adjust to changing situations (ie: tasks, responsibilities and groups.)WORK STANDARDSSetting high goals or standards of performance for self and others.CO-OPERATION AND TEAMWORKWorking with others to achieve a common goal.Maintaining a positive attitude.JOB MOTIVATIONWork-related tasks are similar to tasks that the person enjoys doing or takes pride in doing in their personal life. *Follow the site housekeeping standards to ensure the Guest has a best experience.COMMUNICATIONEffectively interacts with individuals or in group situations.Listens, ensures understanding.ENERGYMaintaining a high activity level.Qualifications : Neatly groomed, Dependable, Ability to build proficiency on the POS equipment of the site including Bulloch, lotto, car wash (if applicable).Maturity in dealing with a large variety of Guests—different ages and personalities.Able to embrace the Service Hero Mindset and Culture Passionate about the job.Fast Friendly Responsive Fun Informed and Empowered.DUTIES : Serve needs of Guests at PaypointCleaning and stocking.Maintenance and general upkeep.Suggestive selling.Other locations:174 St. Albert Trail; St Albert143 St Albert Trail; St albert770 St Albert Trail; St Albert9936-109 St; Edmonton810 Webber Greens Drive; Edmonton16951 109 Ave; Edmonton100 Kings Link, Spruce Grove;4205 SouthPark Drive, Stony PlainJob Types: Part-time, Full-timeSalary: From $15.00 per hourDay range:HolidaysWeekends as neededShift:8 hour shiftWork setting:Convenience storeWork Location: In person\",\n            \"location\": \"Street NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"5AD38815634EDDC3618F68B067B4B841\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6036a7720e760c5a\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Abstract Management Group\",\n            \"rowSalary\": \"$40,000–$50,000 a year\",\n            \"date\": 1694518301128,\n            \"dateOfPosted\": 1692830229776,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Abstract Management Group is a well-renowned customer acquisition, customer support, and business development service provider across the North York area. We firmly believe that personalized client and customer interactions bring a world of possibilities, brand loyalty, increased sales revenue, and customer retention. Our Customer Service Representative is the heart of what we do for our clients!The main goal of our Entry Level Customer Service Representative is to ensure excellent customer service standards, appropriately and accurately answer inquiries, and complete sales / contract transactions to those inquiring customers. Our Entry Level Customer Service Representative thinks fast on their feet, possesses contagious energy, and maintains a high level of confidence in their knowledge and expertise with people.Entry Level Customer Service Representative Core Responsibilities:Identify our customer's needs and recommend appropriate products and services that are individualized to their preferencesSustain and maintain relationships with all customer accounts based on trust and loyaltyBe an expert in all product and service offerings, to better ensure appropriate customer support in handling questions and concernsKeep a spotless record of client and customer interactions and maintain records in accordance with company policy using our CRM softwareWork cohesively with other Entry Level Customer Service Representatives and other internal team members to ensure all goals are metCharacter Traits of our Next Entry Level Customer Service Representative:Initiative: ethical, optimistic, adaptable, self-starterOrganization Skills: attention to detail, time management, self-managementLearning: student mentality, learning attitude, learns from other Customer Service RepresentativesPeople Skills: professional, exemplary written and verbal, customer focusedExperience and Education Requirements We ask our Entry Level Customer Service Representative to have:A High School Diploma or GED equivalent is a must1+ years of experience is highly recommended, but not requiredConfident in an entry-level position and a learning environment with mentorship from other Entry Level Client Service Trainees and upper-level managementExperience in a hospitality, warehouse, or team-focused environment is highly desirableComfortability in a fast-paced environmentJob Type: Full-timeSalary: $40,000.00-$50,000.00 per yearFlexible Language Requirement:French not requiredSchedule:Monday to FridayWeekend availabilityWork Location: In person\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"B6CA12B7B351EF9F214A6673C96C3868\",\n            \"cityName\": \"Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8e4223e7a0a0bcc4\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"Acd Electric & Plumbing Ltd.\",\n            \"rowSalary\": \"$38.50 an hour\",\n            \"date\": 1694518260956,\n            \"dateOfPosted\": 1692828418864,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8561002,\n                    \"lon\": -79.3370188\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Markham\",\n                \"formattedAddress\": \"Markham, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Markham\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 39.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    39.0\n                ],\n                \"range\": {\n                    \"gte\": 39.0,\n                    \"gt\": null,\n                    \"lte\": 39.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: EnglishHours: 30 hours per weekEducation: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsor equivalent experience Work site environment Outdoors Noisy At heights Work setting Construction Maintenance Residential Tasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Recruit and hire workers and carry out related staffing actions Train or arrange for training Set up machines and equipment Estimate costs and materials Recommend personnel actions Read blueprints and drawings Requisition or order materials, equipment and supplies Leading/instructing individuals Supervision Floor covering installers Working groups Plasterers Roofers Kitchen cupboard and vanity installers Trades helpers Labourers Transportation/travel information Valid driver's licence Own vehicle Own transportation Work conditions and physical capabilities Work under pressure Own tools/equipment Steel-toed safety boots Hard hat Safety glasses/goggles Tools Personal suitability Excellent oral communication Organized Reliability Team player Screening questions Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Workplace information On the road job Other benefits Parking available\",\n            \"location\": \"Markham, ON\"\n        },\n        {\n            \"id\": \"A76FF3DA5FF6CC0AFFF10969BD58A13D\",\n            \"cityName\": \"St. Catharines, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5c87f9a372604244\",\n            \"jobName\": \"Wfh Customer Service Representative/Collector\",\n            \"companyName\": \"Ncri Inc.\",\n            \"rowSalary\": \"$18–$19 an hour\",\n            \"date\": 1694518189640,\n            \"dateOfPosted\": 1688065090928,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1593745,\n                    \"lon\": -79.2468626\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St. Catharines\",\n                \"formattedAddress\": \"St. Catharines, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"St. Catharines\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"NCRI is growing stronger and is seeking a WFH Customer Service Representative/Collector to join our motivated and growing family. Our future colleagues will be team-oriented, performance-driven, and outside-the-box thinkers. Home Office Equipment Requirements:Equipment will be provided by the companySuccessful candidates will be pre-screened by our Tech Support team to ensure they meet all requirements to proceed, prior to being invited to the training.High-speed internet with hardwired connection from the computer to the modem. Speed should be 50 MPBS download and 20 MPBS Upload. Requirements:Communicate with customers for all outstanding amountsEstablish a solid professional relationship with customers and educate them on best practicesNegotiate the best payment arrangement to help resolve customers’ billsMaintains a high level of professionalismA background and credit check will be required. Bring it! You're qualified if you: Call center experienceCollections experience is an assetAttention to detailExceptional verbal & written communication skills in EnglishProfessional phone etiquetteProven ability to achieve targetsDedication to maintaining a superior customer experienceEnthusiastic and a positive \\\"can do\\\" attitudeAbility to pass a background check What we offer:Competitive base pay, plus uncapped performance-based commission!Competitive insurance coverage, incentives, paid training, and breaksOutstanding referral bonus programFun perks: Holiday events, food days, giveaways, prizes, themed events, and more! As our Call Center expands, we will need to grow our leadership team! We'll show you a clear career path and provide the tools you need to earn more responsibilities and promotions. Nothing more satisfying than seeing your career grow within a caring organization. We are committed to providing the best work environment you’ve ever experienced!! Start your amazing career with NCRI today!\",\n            \"location\": \"St. Catharines, ON\"\n        },\n        {\n            \"id\": \"74F0E0F16B0D7F9AB87ED9AEBE7C262C\",\n            \"cityName\": \"Quebec City, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ca2054c00f60e51a\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"Québec Loisirs\",\n            \"rowSalary\": \"$15.25 an hour\",\n            \"date\": 1694518174652,\n            \"dateOfPosted\": 1694518174420,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.8138783,\n                    \"lon\": -71.2079809\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Quebec City\",\n                \"formattedAddress\": \"Quebec City, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Québec\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Quebec City\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsScreening questions Are you available for the advertised start date? Are you currently a student? Are you currently legally able to work in Canada? Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Health benefits Dental plan Disability benefits Health care plan Paramedical services coverage Vision care benefits Financial benefits Bonus Other benefits Parking availableWork Term: PermanentWork Language: FrenchHours: 20 to 30 hours per week\",\n            \"location\": \"Quebec City, QC\"\n        },\n        {\n            \"id\": \"DADBB3FB2EF9534FD75A8C476DCFB4A3\",\n            \"cityName\": \"791 Highway 6, Caledonia, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=aef1cbbe1730b87d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Wally Parr Sausage\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694517954977,\n            \"dateOfPosted\": 1694215053213,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Wally Parr Sausages takes the next step in the specialty food retail industry by getting back to the basics within a \\\"Sizzle Style\\\" customer service environment. We recognize that every Team Member is part of our family and brings something special and unique to Wally Parr Sausage.We are currently looking for full-time, high energy, experienced people who see themselves in an Customer Service Representative role at our Caledonia, ON location.Why Join us? The perks!Competitive Wages!! Starting at $17 per hour!Bonus Opportunities!Grocery Discounts!Comprehensive Paid training programClean, safe environmentFun, worry free atmosphereA company built on family values with a great reputation!What You Bring to the team:Sizzle Service: Build and maintain positive relationships with customers by exercising our Sizzle Service to its fullest. Proactively engage customers on the sales floor, offering assistance and initiating conversations. Seek opportunities to enhance the customer experience and exceed their expectations.Product Knowledge: Develop a comprehensive understanding of our product offerings, including features, ingredients, and pricing.Cashing out and returns: Process customer orders efficiently and accurately using our cashier point-of-sale (POS) system. Handle returns, exchanges, and refunds professionally, adhering to established guidelines.Product Knowledge: Develop a comprehensive understanding of our product offerings, including features, ingredients, and pricing.Store Maintenance: Maintain a clean and organized store environment, including restocking shelves, arranging displays, and monitoring inventory levels.Teamwork: Teamwork with colleagues is essential in our culture which affects our operations and provides Sizzle customer service.Must be legally eligible to work In CanadaWe value a good atmosphere, an above and beyond guest experience, and a strongly interconnected team. Apply today and join the Wally Parr family!About Wally Parr Sausage:Wally Parr Sausage has been family operated for over fifty-years and two generations; handing down carefully guarded recipes, as well as innovating new recipes bursting with irresistible flavour throughout the years. Our signature sausages, home meal kits, and wide-range of premium ingredient choices and flavours will bring your taste-buds to nirvana. We will forever honour our Team for their dedication and passion in Wally Parr’s growth in the community.Job Types: Permanent, Full-timeSalary: From $17.00 per hourBenefits:Flexible scheduleOn-site parkingStore discountSchedule:Day shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payApplication question(s):How many kilometres do you live from Caledonia, ONExperience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"1C52AEF7D50A606EC23D91F04B0ACC4C\",\n            \"cityName\": \"Tec Vanlife LTD. in Delta, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=761ce118068d5d38\",\n            \"jobName\": \"Customer Service/Sales Representative\",\n            \"companyName\": \"Tec Vanlife Ltd.\",\n            \"rowSalary\": \"$19.50–$22.00 an hour\",\n            \"date\": 1694517705446,\n            \"dateOfPosted\": 1692826092858,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.09521549999999,\n                    \"lon\": -123.0264758\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Delta\",\n                \"formattedAddress\": \"Delta, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Delta\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service/Sales RepresentativeAre you passionate about the recreational vehicle industry and providing exceptional customer service? Tec Vanlife is seeking a dynamic and motivated individual to join our team as a Customer Service/Sales Representative. In this role, you will play a pivotal role in assisting customers with their inquiries, providing expert answers, and driving sales through excellent service.Responsibilities:Manage inbound calls, emails, and chats with efficiency and professionalism.Understand customer needs and address inquiries regarding our products and services.Collaborate with the sales team to drive revenue growth by identifying upselling and cross-selling opportunities.Maintain accurate records of customer interactions and sales transactions.Qualifications:Minimum of two years of proven customer service experience.Strong communication skills and ability to handle challenging customer interactions.Knowledge of the automotive industry and a passion for vehicles is preferred.Join our team and be a part of a company that values customer satisfaction and expertise in the automotive realm. If you are dedicated, customer-focused, and ready to contribute to our success, apply now!To apply, please submit your resume and a cover letter detailing your relevant experience to email@example.com.Job Type: Full-timeSalary: $19.50-$22.00 per hourExpected hours: 40 per weekBenefits:Dental careExtended health careLife insuranceOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Commission payAbility to commute/relocate:Delta, BC V4K 5B8: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (required)Shift availability:Day Shift (preferred)Work Location: In personApplication deadline: 2023-09-15\",\n            \"location\": \"Delta, BC\"\n        },\n        {\n            \"id\": \"ABAC0778183941A76C1EA83377EA2EA5\",\n            \"cityName\": \"3245 Harvester Road, Burlington, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b67b2428b11aeecd\",\n            \"jobName\": \"Auction House Customer Service Representative & Data Coordinator\",\n            \"companyName\": \"Emedals Inc.\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694517660740,\n            \"dateOfPosted\": 1693672364458,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.3703112,\n                    \"lon\": -79.7752874\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burlington\",\n                \"formattedAddress\": \"Harvester Rd, Burlington, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burlington\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"eMedals INC is the largest online auction house of its kind in North America. With a growing global web-based presence, we are in search of a point customer service representative who will also assist in creating our online auctions on our new, upcoming platform.Responsibilities:As our Customer Service Representative, you will be an integral part of our team and responsible for the following:Answering Phones: Handle incoming calls from clients, potential buyers, and sellers in a friendly and professional manner. Provide accurate information about our auctions, services, and products.Call Direction: Ensure that calls are directed to the appropriate department or team member to address specific inquiries or concerns promptly.Assisting with Order Processing: Collaborate with our sales and operations team to facilitate the seamless processing of orders, bids, and purchases made during auctions. Ensure that all transactions are accurately recorded and processed in a timely manner.Customer Support: Offer personalized assistance and support to clients throughout their auction journey. Address questions, concerns, and requests with tact and efficiency, leaving a positive impression on each interaction.Problem Resolution: Take ownership of customer issues and follow through to resolution. This may involve coordinating with various internal departments to address any challenges or discrepancies that arise.Client Relations: Build and maintain strong relationships with our esteemed clientele, fostering loyalty and satisfaction.Auction Creation: In addition to customer service responsibilities, our newest team member will also be responsible for creating digital online auctions and populating our website with new product. This will be carried out on a new customized platform, due to launch August 21st of this year.This process will include amalgamating research and photography completed by our inhouse team, and producing an online auction listing.Requirements:Previous experience in a customer service role is preferred.Excellent verbal and written communication skills.Strong interpersonal skills and the ability to handle diverse customer personalities.Organized, detail-oriented, and capable of multitasking in a fast-paced environment.Proficiency in using computer systems and various software applications.A passion for providing exceptional customer service and a genuine interest in the auction industry.A passion for history is an asset.The positions offered by eMedals INC. are unique. We offer a rare workplace environment where history is a pillar of everyday workflow and overall success. Team work is an essential element to our office and we look forward to meeting our newest partner.Thank you to all interested candidates. Please note that only those candidates selected for further discussion will be contacted. Please apply via email and include a CV.Job Type: Full-timeSalary: From $20.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceOn-site parkingPaid time offVision careFlexible Language Requirement:French not requiredSchedule:Monday to FridayAbility to commute/relocate:Burlington, ON L7N 3T7: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Work Location: In personExpected start date: 2023-09-01\",\n            \"location\": \"Harvester Rd., Burlington, ON\"\n        },\n        {\n            \"id\": \"FB4078A8ACEC0B9645C7603128F69D1A\",\n            \"cityName\": \"101 Main St, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2bd19a4c5383d78b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Aabel Fuels Ltd\",\n            \"rowSalary\": \"$15–$17 an hour\",\n            \"date\": 1694517594425,\n            \"dateOfPosted\": 1692825251491,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6863286,\n                    \"lon\": -63.5210113\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Main St, Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative Responsibilities include, but are not limited to: Answering phones & assisting walk in customers. Taking and inputting walk-in, call-in and website orders & payments. Dispatch & communication with drivers. Use of Excel and other Microsoft Office programs. Strong customer service, communication & multi-tasking skills in a fast paced environment required.Job Type: Full-timeSalary: $15.00-$17.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceOn-site parkingVision careSchedule:Day shiftExperience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Main St, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"73DD2CD230A74CC6E0C4A15BB86F7A16\",\n            \"cityName\": \"1888 West Broadway, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5c2f5bbcff5aaeb2\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Le Coq Frit\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694517389643,\n            \"dateOfPosted\": 1673963273417,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.26376459999999,\n                    \"lon\": -123.14866\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Broadway, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"-serving-bussing-phone orders for take-out-POS system, 3rd party delivery tablet, payment processing-take-out prep for packaging orders-cleaning duties-various other related dutiesMust be able to work during weekday(Monday - Friday between 11-9pm)Job Types: Permanent, Part-timePart-time hours: 25 per weekSalary: From $16.00 per hourSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayMorning shiftSupplemental pay types:TipsCOVID-19 considerations:Required to wear a mask. Sanitize surfaces after use.Work Location: In person\",\n            \"location\": \"Broadway WR\"\n        },\n        {\n            \"id\": \"8F6A14017EFD704972153CD304D6C3B1\",\n            \"cityName\": \"12366 Coleraine Dr, Bolton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=54a9162ca268411a\",\n            \"jobName\": \"Customer Service Agent (1 Year Contract) Mid-Day Shift 11:00 Am - 7:00 Pm\",\n            \"companyName\": \"Dsv Global Transport And Logistics\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694516427171,\n            \"dateOfPosted\": 1692826417092,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8559705,\n                    \"lon\": -79.7292586\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bolton\",\n                \"formattedAddress\": \"Coleraine Dr, Bolton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bolton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"JOB SUMMARY:Core Purpose and Essence of the Position:The Customer Service Agent is responsible for carrying out all customer service activities such as responding to inquiries, processing orders, and handling complaints, in a prompt courteous and effective manner.ESSENTIAL DUTIES AND RESPONSIBILITIES: Respond to Customer inquiries, complaints, inventory status, status of orders, etc., in a prompt, courteous and effective manner. Generate all related paperwork and necessary information required for customer work orders and checking all orders for special requests. Oversee all paperwork associated with orders and maintain the corresponding files. Prepare any reports concerning customer service activates as required by manager. Report customer feedback to management, including any signs of customer dissatisfaction. Maintain damage records and back-order logs. Initiate and maintain a good working relationship with the customer(s). Track on-time shipping other performance measures. Assure the integrity of the inventory and assist in conducting physical inventories.  Ensure the optimal utilization of space through warehouse consolidation. Assist in the physical operations as needed. Adhere to all company policies, procedures, and guidelines, such as Code of Conduct, assigned work schedules, and attendance requirements. Provide input into the performance evaluation system Perform other duties as assigned. Collaborate closely with other departmental staff to coordinate account activities. Maintain a clean, neat, and orderly work area Performs other duties as requiredPRIMARY INTERACTIONS:The primary exchange will be working with the Operations Manager, Supervisor, Team Lead, and Warehouse Operators.COMPETENCIES, SKILLS, ATTRIBUTES REQUIRED: Direct warehouse-related experience in customer service Excellent judgment and initiative Excellent communication skills to establish working relationships Excellent verbal and written communication skills Excellent relationship building skills Excellent listener Demonstrated ability to work in a complex matrix environment -- must work well across multiple units across the company Both a team builder and a team player Must work well under pressure as a self-starter, handling multiple tasks -- ability to work across many accounts, projects, and/or issues and prioritize effectively Internally motivated, self-starter with ability to plan, organize and establish priorities to meet goals and achieve results.MINIMUM EDUCATION and/or EXPERIENCE: High School diploma. A minimum of 3 years’ experience in manufacturing environment. Possess basic computer skillsWORK ENVIRONMENT:Work is generally sedentary in nature, but may require standing and walking for up to 10% of the time.The physical demands and work environment characteristics described above are representative of those an employee encounters while performing the essential functions of this job. Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions.COMPENSATION:Competitive base salary for the position in the Greater Toronto Area with a very generous benefit package.DISCLAIMER:The preceding job description has been designed to indicate the general nature and level of work performed by employees within this classification. It is not designed to contain nor be interpreted as a comprehensive inventory of all duties, responsibilities, and qualifications required of employees assigned to this jobJob Type: Full-timeSalary: $19.00 per hourBenefits:Casual dressDental careExtended health careRRSP matchVision careSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Bolton, ON L7E 3A9: reliably commute or plan to relocate before starting work (required)Education:Secondary School (required)Experience:Customer service: 3 years (required)Work Location: In person\",\n            \"location\": \"Coleraine Dr, Bolton, ON\"\n        },\n        {\n            \"id\": \"72749001C8F800851BA9C8F1F47DAFA3\",\n            \"cityName\": \"Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=162834edc5057418\",\n            \"jobName\": \"Clerk, Customer Service\",\n            \"companyName\": \"Centre Dianostic Et Performance\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694516216278,\n            \"dateOfPosted\": 1692819867402,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4503213,\n                    \"lon\": -73.7500486\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: No degree, certificate or diplomaExperience: 1 year to less than 2 yearsGreen job Involves duties and responsibilities that lead to positive environmental outcomes Involves supporting green economy sectors Other benefits Free parking available Parking availableWork Term: PermanentWork Language: BilingualHours: 30 to 40 hours per week\",\n            \"location\": \"Dorval, QC\"\n        },\n        {\n            \"id\": \"25CF93D48847CC2E3EAE41B173AE6801\",\n            \"cityName\": \"2555 Port Alberni Highway, Port Alberni, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=eda3d1f85d61617a\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Alberni Toyota\",\n            \"rowSalary\": \"$17–$25 an hour\",\n            \"date\": 1694516183588,\n            \"dateOfPosted\": 1692824265997,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2558825,\n                    \"lon\": -124.7776082\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Port Alberni\",\n                \"formattedAddress\": \"Port Alberni Hwy, Port Alberni, BC V9Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Alberni-Clayoquot\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Port Alberni Highway, Port Alberni, BC Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"You will be Alberni Toyota’s online and phone representative handling a variety of contact points with our customers including but not limited to:· Service customers for booking appointments and follow-up.· Sales customers that need to be informed on their current vehicleThis is a great opportunity for you if;· Are confident and have professional verbal and written skills· Have good computer skills and organizational abilities· Excel in a team environment· Have been successful in a previous customer relations position.This is a position where you will have the opportunity to help us shape and develop our plan for ultimate success and growth.This is a full-time position and we can offer you;· A positive and supportive workplace that provides opportunities for internal growth.· Comprehensive Health Care and Benefits package.· Very competitive wages and bonuses.Job Type: Full-timeSalary: $17.00-$25.00 per hourBenefits:Dental careExtended health careOn-site parkingSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payAbility to commute/relocate:Port Alberni, BC: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Port Alberni Highway, Port Alberni, BC\"\n        },\n        {\n            \"id\": \"1AF7E7F4870A5E18ED5C9F1D20EE0C1C\",\n            \"cityName\": \"Penticton, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f113eb21347d9f5b\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Executive Aviation\",\n            \"rowSalary\": \"$17–$20 an hour\",\n            \"date\": 1694515660315,\n            \"dateOfPosted\": 1691600912535,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.4991381,\n                    \"lon\": -119.5937077\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Penticton\",\n                \"formattedAddress\": \"Penticton, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Okanagan-Similkameen\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Penticton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Here we grow again! Do you want to be part of an amazing team of customer service specialists who work together to provide exemplary service? Is going above and beyond in your DNA? Does the opportunity to provide exemplary service to passengers on some of Canada’s best airlines appeal to you? Are you someone who is known for reliability and flexibility? Come join us! Executive Aviation is hiring a part time Customer Service agent at the Penticton Airport (YYF) who love working in the tourism industry. This role reports directly to an amazing Customer Service Coordinator who is there to support you. What do we offer? Executive Aviation is proud to have very progressive wage ranges with lots of earning potential. The range of salary for this position is $17.00-$20.00/hour. We offer comprehensive Health benefits for all part- and full-time team members. We also have fantastic flight benefits with the airlines that we support. We want to see you grow and reach your goals! The sky's the limit with Executive Aviation. Responsibilities Our customer service agents are responsible for creating a safe and stress-free experience for travelers as they begin and end their journeys: Helping passengers check-in Supporting self-serve kiosks Preparing aircraft for on-time departures Facilitating deplaning and boarding of passengers Greeting passengers who are arriving from flights Following airline specific check-in policies and procedures Positively work airline crew Light grooming duties Kindly enforce airline and airport policies and procedures to passengers And more! Qualifications You are a true customer service champion with a minimum of two years’ in a customer-facing role You bring a proven track record of punctuality and reliability and understand that performing on time is a cornerstone of airline service You love to multi-task and are comfortable in a fast-paced where time pressures are a way of life You are a great communicator in both individual and group settings and have a demonstrated proficiency with computers and software. Completion or working towards completion of Travel and Tourism Diploma, Marketing or Business Diploma Previous airport experience would be considered an asset Flexible availability to work shift work which includes early mornings, days, late evenings, weekends and/or holidays An ability to meet all conditions of employment:  Restricted Area pass issued by Transport Canada A criminal background check Hold a valid driver’s licenseYcmjDoEF2c\",\n            \"location\": \"Penticton, BC\"\n        },\n        {\n            \"id\": \"0F25CD7188159785A97650CF766D0C39\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=eabc407fc4ea67ff\",\n            \"jobName\": \"Customer Service Associate - 28455\",\n            \"companyName\": \"Exela Technologies\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694515408627,\n            \"dateOfPosted\": 1692820356550,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Run Company Store - Maintain inventory ordering supplies and stocking shelves.· Small cash and card sales.· Reception backfill - Answering the phone, checking in customers and employees. Create and issue ID badge access as required.· Performs an acceptable volume of work in timely, efficient, and accurate manner and in order of scheduled priorities to meet or exceed client expectations.· Performs verification duties as required.· Demonstrates high levels of safety awareness and notifies supervisor of potential hazards· Follows the security and privacy policies, standards and guidelines in order to protect the informational assets of both the company and their customers· Performs other duties as required· Repetitive motion is required: may require twisting/bending/climbing.· Required to stand, walk, reach with hands and arms.· Required to lift up to 55lbs unassisted.“The pay range for this position starts at $18; however, base pay offered may vary depending on job-related knowledge, skills, and experience. Bonus opportunities may be provided as part of the compensation package, in addition to a full range of medical, financial, and/or other benefits, dependent on the position offered.”Job Types: Full-time, Fixed term contractPay: $18.00 per hourShift:8 hour shiftExperience:Customer service: 1 year (preferred)\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"B0C6320FEC7DFBB6FAF51F0166B5EFEE\",\n            \"cityName\": \"Best Burners Ltd. in Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=aab17a7fb9df9d39\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Best Burners Ltd.\",\n            \"rowSalary\": \"$15–$17 an hour\",\n            \"date\": 1694515204603,\n            \"dateOfPosted\": 1692826333678,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6660885,\n                    \"lon\": -63.56756309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Company descriptionOur family owned & operated company, Best Burners, is looking for an energetic & positive individual with strong multi-tasking abilities in a fast paced environment. Phone etiquette & communication skills are also a must.Job descriptionCustomer Service Representative Responsibilities include, but are not limited to: Answering phones & assisting walk in customers. Taking and inputting walk-in customer appointments & payments. Dispatch & communication with technicians. Use of Excel and other Microsoft Office programs. Strong customer service, communication & multi-tasking skills in a fast paced environment required.Job Types: Full-time, PermanentSalary: $15.00-$17.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceVision careSchedule:Day shiftMonday to FridayExperience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Dartmouth, NS\"\n        },\n        {\n            \"id\": \"9CBE8003233A5F863FF63593CBCD894A\",\n            \"cityName\": \"1644 Hillside Ave, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=284b604dbe2a149e\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Tim Hortons\",\n            \"rowSalary\": \"From $16.78 an hour\",\n            \"date\": 1694515142958,\n            \"dateOfPosted\": 1691632166082,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.440015,\n                    \"lon\": -123.3545002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Hillside Ave, Victoria, BC V8T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Hillside Mall Tim Horton's is NOW HIRING for Full time and Part Time shifts. All training is done in restaurant so no experience is necessary. Hiring position requires guest service, light cleaning, cash handling, food prep and team work. We have great benefits and competitive wages to offer, apply today and start tomorrowJob Types: Full-time, Part-time, PermanentPart-time hours: 20 - 40 per weekSalary: From $16.78 per hourBenefits:Dental careOn-site parkingStore discountVision careDay range:Monday to FridayNo weekendsWeekends as neededWeekends onlyFlexible Language Requirement:French not requiredShift:4 hour shift8 hour shiftAbility to commute/relocate:Victoria, BC V8T 4Y3: reliably commute or plan to relocate before starting work (preferred)Work Location: In person\",\n            \"location\": \"Hillside Ave, Victoria, BC\"\n        },\n        {\n            \"id\": \"A873C159B2B0C79E4BD811B99E98D6D4\",\n            \"cityName\": \"46 Warne Cres, Kingston, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7805a06079fa6cb0\",\n            \"jobName\": \"Customer Service Technician\",\n            \"companyName\": \"Mr. Lube\",\n            \"rowSalary\": \"$16.50–$17.50 an hour\",\n            \"date\": 1694514950011,\n            \"dateOfPosted\": 1673980696401,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2668755,\n                    \"lon\": -76.50108589999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kingston\",\n                \"formattedAddress\": \"Warne Crescent, Kingston, ON K7K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Frontenac County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kingston\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*NEW LOCATION OPENING SOON*Hiring for our current location and new location opening soon. All discussed in the sit down interview.We're not looking for someone who \\\"needs a job.\\\" We're looking for someone who can make a difference in our customers' experience, learn some skills and earn an income. Sales experience is preferred.Job Overview: Ready for a Change?Named one of Canada's Best Managed Companies & 10 Most Admired Corporate Cultures, Mr. Lube offers a fun work environment, competitive wages, and the best paid training and advancement program in the industry for our employees.Customer Service RepresentativeIn this role, you'll get to take full ownership over the complete customer experience. We will provide full training so you can confidently work directly on a customer's car and be in control of the entire customer service and sales cycle; from walking a customer through the services on a car to completing the tasks and sale.A Customer Service Representative at Mr. Lube spends:70% of their time providing Customer Service:Greeting customersDiscussing products and services with customersProviding recommendations based on vehicle assessmentsSuggesting new products and servicesWorking with a close knit team and communicating with Lower Technicians30% of their time completing Mechanical Duties:Oil and filter changesReplacement of vital car fluids (e.g. coolant, transmission, and transfer case fluid)Replacement of parts under the hood (e.g. air filters, headlights, taillights and wiper blade replacements)Refilling performance enhancers to ensure the car runs smoothly (e.g. engine stop leak, oil treatment, and valve cleaner)Performing courtesy checks on all vehicles (e.g. topping up fluid levels, cleaning windows and checking tire pressure)Performing tire changes and rotationsWhat else can you expect from a career at Mr. Lube?A fun environment with the best paid training in the industry Excellent employee incentives and recognition. With constant learning and growth opportunities. A company, management and team that cares. If you have a positive attitude, flexible availability, are driven to succeed, have a willingness to learn, and genuinely like interacting with people, put yourself in the driver's seat at Mr. Lube!Job Type: Full-timeSalary: $16.50-$17.50 per hourBenefits:Dental careExtended health careOn-site parkingPaid time offSchedule:10 hour shift8 hour shiftSupplemental pay types:Bonus payCommission payOvertime payTipsExperience:Customer Service Sales: 1 year (required)Work Location: In person\",\n            \"location\": \"Warne Cres, Kingston, ON\"\n        },\n        {\n            \"id\": \"B11F4E1BAA45ACDA93BB01EEFB24E14E\",\n            \"cityName\": \"106 9th St W, Meadow Lake, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1cb39406a22fe6b4\",\n            \"jobName\": \"Kfc Team Members, Cashier/Customer Service\",\n            \"companyName\": \"Kfc Canada - Blco - Store 1k076-001\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694514947183,\n            \"dateOfPosted\": 1648193395075,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.1248957,\n                    \"lon\": -108.4431272\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Meadow Lake\",\n                \"formattedAddress\": \"5 St W, Meadow Lake, SK S9X, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Meadow Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Location: 106 9th Street W, Meadow Lake, SK THE COLONEL NEEDS YOU!Great culture, join our team!Our busy KFC locations are looking for full time or part time Team Members to join our growing team! Rate starts at $15 for full-time employees!About the company:BLCO is a large KFC and Taco Bell franchise operator in Western Canada. We currently own and operate 23 KFC and Taco Bell restaurants across British Columbia, Alberta and Saskatchewan. BLCO is a division of the C21 Development Group and proud to employ more than 700 team members.What’s in it for you:Health and dental benefits (for full-time team members)Award winning training for new employeesA great working culture, team environment, tenured staffOpportunity for quarterly bonuses based on performanceOpportunity for advancement in business operations - we’re constantly growing!What we’re looking for:Someone with a friendly, enthusiastic attitudeSomeone that loves to help and serve others (both customers and team members)Able to work in a fast-paced, dynamic environmentDuties include:Make and prepare guest orders with accuracy and efficiency.Provide a top-notch guest experience that includes friendly interactions, hot & fresh meals and a commitment to cleanliness.Contribute to the overall positive and collaborative family environment.Make our world-famous chicken at the highest quality standard.Partner with other Team Member to manage the products needed to fulfill guest orders.We look forward to hearing from you!\",\n            \"location\": \"th St W, Meadow Lake, SK\"\n        },\n        {\n            \"id\": \"A3445F3B2E27B940F23198D971CC2FA8\",\n            \"cityName\": \"732 Bank Street, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=37acb168b51bf9b4\",\n            \"jobName\": \"Pet Salon- Experienced Admin / Receptionist / Customer Service\",\n            \"companyName\": \"Purrdy Paws Pet Grooming Spa\",\n            \"rowSalary\": \"$16.00–$19.60 an hour\",\n            \"date\": 1694514663957,\n            \"dateOfPosted\": 1692819878549,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4209477,\n                    \"lon\": -75.70115419999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Bank St, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Purrdy Paws Pet Grooming Spa is hiring an experienced Receptionist at both our Bank St and Beechwood Location in Ottawa, ON!Do you love animals, have some experience with them and wish to contribute meaningfully to a team while working in one of the best parts of the city, the Glebe?! and equally so Beechwood?! Keep reading if so!The ideal candidate will have:5+ years customer service & reception experience with a diverse community1 year min dog/cat experience (unfortunately, having your own furry friend doesn't count!)Some experience with client managementAbility to multi task in a fast paced environmentDemonstrates high level of professionalismCan work independently and part of a teamBe extremely organized and have excellent time management skillsProficient in decision-making and team managementPossess excellent communication skills both verbal and writtenBe able to go up and down stairs and lift up to 50 lbsHas attention to detailBonus: has some social media and/or marketing experience!Duties include but not limited to:Answering multiple phone lines booking appointmentsHandling client inquiries in-person and over the phone re: their pets and appointmentsEducating clients about pet care as it pertains to coat maintenance, and various services Purrdy Paws offersSelling retail product and assisting walk in clients as neededAssisting groomers with checking in and out their dogsOrganizing paperwork, sending invoices, and taking messages effectivelyPosting on company social media pagesCleaning of the front retail/reception area of the salon and more....Our ideal candidate is a permanent full time employment with room for growth. We are looking for a person who has a passion for a career in the pet care industry and a strong interest in animal health and well-being, as well as strong administrative/reception skills to bring our team together! This position can lead to a management role for the right candidate.This candidate will be creative and have new and fresh ideas to bring to the table and have a desire to help grow and expand the business with our fantastic management team.This candidate will enjoy working with a diverse sector of pets and their human companions and enjoy a leadership type of role within the company.TO APPLY:*Please submit all of the information below via Indeed1> updated resume2> cover letter explaining why you feel you would be an ideal candidate for the position (please be specific in your cover letter about your experience with animals as it pertains to their care) (should Indeed not allow you to send a cover letter, please email it- head to our website to get our email!)3> three valid referencesJob Types: Full-time, Part-time, PermanentSalary: From $16.00 - $19.60 per hour commiserate upon experienceJob Type: Full-timeSalary: $16.00-$19.60 per hourBenefits:Dental careDisability insuranceExtended health careFlexible scheduleLife insuranceStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Ottawa, ON k1s 3v4: reliably commute or plan to relocate before starting work (required)Education:Secondary School (required)Experience:Customer service: 5 years (required)work: 3 years (required)professional pet: 1 year (preferred)fast-paced work: 2 years (required)Work Location: In person\",\n            \"location\": \"Bank Street, Ottawa, ON\"\n        },\n        {\n            \"id\": \"8838429C1AB55D465ACDD72E29D7500B\",\n            \"cityName\": \"8555 Keele St, Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=84d0e7fc808385be\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Esso/ Circle K\",\n            \"rowSalary\": \"$15.50–$15.51 an hour\",\n            \"date\": 1694514563108,\n            \"dateOfPosted\": 1692826437844,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8086703,\n                    \"lon\": -79.50147179999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Keele St, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"looking for experience candidates for Esso CircleK gas station.Job Types: Full-time, Part-timeSalary: $15.50-$15.51 per hourFlexible Language Requirement:French not requiredAbility to commute/relocate:Concord, ON L4K 2N1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Keele St, Concord, ON\"\n        },\n        {\n            \"id\": \"F6B35270EDED963628FB7A04176C2861\",\n            \"cityName\": \"Orangeville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=168507b479463675\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Jiggin Jodys Seafood\",\n            \"rowSalary\": \"$600 a week\",\n            \"date\": 1694514177570,\n            \"dateOfPosted\": 1623789670913,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.9199788,\n                    \"lon\": -80.0943113\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Orangeville\",\n                \"formattedAddress\": \"Orangeville, ON L9W, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Dufferin County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Orangeville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 600.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    600.0\n                ],\n                \"range\": {\n                    \"gte\": 600.0,\n                    \"gt\": null,\n                    \"lte\": 600.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"$600/week. Full-time preferred. Wednesday to Sunday 11am-7pm. Must be able to work weekends/evenings and lift up to 40lbs. Retail experience and knowledge of seafood is a plus. Two locations, 92 Trafalgar road in Hillsburgh and 634041 Hwy10 in Orangeville.Telephone: 709-746-8069Job Types: Full-time, PermanentSalary: $600.00 per weekBenefits:Casual dressSchedule:8 hour shiftExperience:sales: 1 year (preferred)customer service: 1 year (preferred)Work remotely:No\",\n            \"location\": \"Orangeville, ON\"\n        },\n        {\n            \"id\": \"B96598C3487677C12CDB8981073E43FF\",\n            \"cityName\": \"Fort McMurray, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7dcf8500c64da168\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Fort Mckay A&W\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694514168959,\n            \"dateOfPosted\": 1691622513715,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 56.7266598,\n                    \"lon\": -111.3790441\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fort McMurray\",\n                \"formattedAddress\": \"Fort McMurray, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 16\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fort McMurray\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job descriptionCashier & Customer Service RepresentativeJob location: Fort McKay, ABShift: VariesWe Provide transportation for employees but are also looking for people with class 5 drivers license and own transportation as wellCompany Summary:Based out of Fort McKay, AB, we are a high traffic fast food restaurant providing services to our customers. When you join our team, you join a family of employees dedicated to a safe, enjoyable, and positive work environment. We offer competitive wages and seek candidates that are seeking secure, long-term employment.Job Summary:Reporting to the Manager and operating from the Fort McKay Industrial Park, the cashier and customer service representative is responsible for providing customers with professional, efficient and friendly service. The individual in this position must be able to multi-task efficiently in a fast-paced environment.Duties and Responsibilities:All general duties that are required of a Cashier/Customer Service Representative specifications follow but are not limited to:· Provide fast accurate orders using POS ordering software· Maintain a clean, safe, and well stocked environment· Willingness to learn· Assemble food items for packaging or serving.· Willing to work all required shifts (morning, evenings and weekends)Follow all procedures, policies, and practices· Multi-task efficiently in a Fast-paced environment· Must have basic math & English communication skills as well as basic physical ability.· Must be legally able to work in Canada.Qualifications:· Excellent communication and organization skills· Excellent Interpersonal and customer service skills· Team player and Punctual· Ability to work well without supervisionAdditional Incentives:· Company Health Benefits (eligible after 90 days)We thank you for your interest in A&W Fort McKay and remind all candidates that only successful applicants will be contacted. Based on equal qualifications, preference will be given to local candidates.A&W Fort McKay follows all Covid 19 Public Health Measures, advice and restrictions.Job Types: Permanent, Full-timeSalary: $19.00 per hourBenefits:Dental careDisability insuranceDiscounted or free foodExtended health careLife insuranceVision careSchedule:8 hour shiftDay shiftEvening shiftSupplemental pay types:Overtime payExperience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Fort McMurray, AB\"\n        },\n        {\n            \"id\": \"498FE1C6038A6EBDB9E2428A18B9C6C1\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=93f8fe906c1c191f\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"Redline Trucking\",\n            \"rowSalary\": \"$23.18 an hour\",\n            \"date\": 1694514066157,\n            \"dateOfPosted\": 1686989004224,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Experience an assetTasks Access and process information Answer inquiries and provide information to customers Explain the type and cost of services offered Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Receive credit and employment applications Computer and technology knowledge MS Excel MS Word Work conditions and physical capabilities Attention to detail Fast-paced environment Repetitive tasks Personal suitability Flexibility Organized Reliability Team player AccurateWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"C19C069F478434A6E396AB6FBC714D07\",\n            \"cityName\": \"3065 Palladium Dr, Kanata, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=701ec548a82ee163\",\n            \"jobName\": \"Cashier & Customer Service Outfitter\",\n            \"companyName\": \"Cabelas Canada\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694514017179,\n            \"dateOfPosted\": 1693666418627,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.2959318,\n                    \"lon\": -75.92584579999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Palladium Dr, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Summary:Reporting to the Group Sales Manager – Front End-Receiving, Cashiers will greet and engage customers during the checkout process, process customer funds accurately and appropriately, while explaining additional Cabela’s services and processes.Responsibilities:Greet and engage customers in a friendly and enthusiastic mannerProvide a legendary experience for every customer and promoting Bass Pro Shops & Cabela’s programsUse Point-Of-Sale and Inventory (SAP) computer systems to accurately and quickly complete customer transactions following all policies, including those requiring identification and age checksProcess customer payment using debit, credit card, gift cards, and cashRespond and resolve customer issues by using good judgment and logic in solving problems and making decisions within the job scopeAssist asset protection in following all procedures and policies, including checking inside products, checking for price switches, remove and retain security devicesSave customers who are not happy or did not have a good experience by correcting the problem, or notify a Manager on Duty of the issueOpening and closing duties when necessary: empty trash, stock bags, supplies, cash wraps, dust and wipe counter, organization of drawer suppliesAssist in other areas of the store when business needs dictateQualifications:One or more years’ experience in a sales or service environment is preferredHigh school diploma or equivalent is preferredAbility to provide superior customer service and exceed customer’s expectationsAbility to use good judgment and logicExperience in a related field or outdoor lifestyleKnowledge of Bass Pro Shops & Cabela’s specific products is an assetBass Pro Shops & Cabela’s welcomes applications from people with disabilities.Accommodations are available upon request during the assessment and selection process.Job Type: Part-timeSalary: From $16.75 per hourExpected hours: No more than 29 per weekBenefits:On-site parkingStore discountDay range:Weekends as neededFlexible Language Requirement:French not requiredShift:Afternoon shiftEvening shiftWork setting:Department storeApplication question(s):Do you have the ability to reliably commute to 3065 Palladium Drive; Kanata, ON?Please list any days/times that you would be unavailable throughout the week.Work Location: In person\",\n            \"location\": \"Palladium Dr, Kanata, ON\"\n        },\n        {\n            \"id\": \"688A6580094DFA5B5C87A13498D45652\",\n            \"cityName\": \"Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f4e8d9828b18e3a9\",\n            \"jobName\": \"Construction Customer Service Administrator\",\n            \"companyName\": \"Reliance Impact\",\n            \"rowSalary\": \"$50,000–$55,000 a year\",\n            \"date\": 1694513908378,\n            \"dateOfPosted\": 1691622522403,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2557206,\n                    \"lon\": -79.8711024\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job DescriptionReliance Impact is seeking a full-time Customer Service Administrator with construction industry experience in Hamilton. The ideal candidate will have experience in the construction industry and be able to work independently as well as within a team.Duties & Responsibilities:Receive, document, and communicate new home purchasers’ inquiries to appropriate trades and departmental associates to provide timely responses to new home customerCoordinate follow up activities with customers, the construction team, and the service/warranty team for service warranty issuesEngage managers for escalations and schedule touchpoints accordinglyEnter and complete work orders in NewStar programsQualifications:2+ years of customer service and/or administrative experienceStrong customer service skills, problem solving and organizational time management skillsTarion Warranty knowledge an assetJob Type: Full-timeSalary: $50,000.00-$55,000.00 per yearSchedule:Monday to FridayAbility to commute/relocate:Hamilton, ON: reliably commute or plan to relocate before starting work (preferred)Experience:Construction: 1 year (required)Work Location: In person\",\n            \"location\": \"Hamilton, ON\"\n        },\n        {\n            \"id\": \"44D6205008BC7F47988AFAD87EC7AF07\",\n            \"cityName\": \"123 Hespeler Rd, Cambridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8b73da2fa6637cbe\",\n            \"jobName\": \"Customer Service Rep\",\n            \"companyName\": \"H2o4life\",\n            \"rowSalary\": \"$65,000–$75,000 a year\",\n            \"date\": 1694513844284,\n            \"dateOfPosted\": 1693670794201,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4199052,\n                    \"lon\": -80.32845449999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cambridge\",\n                \"formattedAddress\": \"Hespeler Rd, Cambridge, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cambridge\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 65000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    65000.0\n                ],\n                \"range\": {\n                    \"gte\": 65000.0,\n                    \"gt\": null,\n                    \"lte\": 65000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Details: H2O4Life is pleased to be expanding our team in the Cambridge/Kitchener/Waterloo region and we are looking for great individuals to join our team! We are looking for motivated and enthusiastic people to fill positions within our growing company. This position will involve going to pre-arranged customer appointments and conducting an inspection and presenting cost effective solutions. All appointments are PRE-ARRANGED through the office for our team members. There is no door knocking involved. We work MONDAY to FRIDAY and there are NO QUOTAS. So don't worry you won't be under the gun to reach targets. We are looking for great people who love to represent a great company and are willing to help our customers with their needs and help the environment too. About Us: H2O4Life is a Canadian owned and operated company that specializes in water purification for both home and business. We provide premium water treatment systems manufactured by Canadians for Canadians. We genuinely care about each other, and we’re committed to fostering an inclusive and diverse workplace, so all of our team members can take part and have pride in their work. We all bring something different, and we know what makes you different makes us great. We invest in our people, to unleash their potential so we can win as a team! As part of the team, you will have access to a ton of amazing resources. We like fun and we involve all of our team members in company sponsored team building events. We go paintballing, go karting, Raptor and Leaf games in the corporate box, movie premieres, dinner events and much more! As part of our team, you will get the benefit of these events as all of our team members are part of our team building events. Although we like to have fun, we like making money too and we award our team, so we all benefit from our success! Compensation Package: Great salary plus Bonus pay.Comprehensive Employee Benefits Package.Promotions are being offered based on performance and ability, not tenure.We motivate you daily with tremendous growth opportunities within our company to elevate your income and your career. Full Company Training for All Individuals: No Experience NecessaryWe provide Full Sales TrainingWe have an extensive Training and Mentorship program conducted by individuals with years of experience We have an amazing mentorship program and management team to help provide training for rapid advancements with our company. Every environmental analysis has its own one-of-a-kind qualities and presents its own challenges. Our team can adapt to any challenges and anticipate giving our customers the most ideal arrangement at a focused cost. It's unlikely that you will have an issue that we haven't needed to manage before. So not to worry, with our mentorship program you will be fully trained to handle any issues that may arise. Summary: Job Type: Full-timeSchedule: Monday to Friday.Salary $65,000 - $75,000 per year plus bonusesBenefits: Full company benefits.Experience: NO EXPERIENCE NECESSARYTraining: FULL TRAINING OFFEREDRequirements: Must have your own vehicle.Location: Modern and bright office atmosphere located in Cambridge, Ontario.THIS IS NOT A REMOTE JOB POSITION If this position interests you, please apply today as positions are limited and we are looking to hire immediately.\",\n            \"location\": \"Hespeler Rd, Cambridge, ON\"\n        },\n        {\n            \"id\": \"D8EC8E09A193FCD3272E09A899203EDC\",\n            \"cityName\": \"Kitimat, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=23a496ef59a42219\",\n            \"jobName\": \"Clk 12r - Customer Service Representative\",\n            \"companyName\": \"Bc Public Service\",\n            \"rowSalary\": \"$52,803–$59,608 a year\",\n            \"date\": 1694513792928,\n            \"dateOfPosted\": 1694513791011,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.049366,\n                    \"lon\": -128.6283529\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Terrace\",\n                \"formattedAddress\": \"Kitimat, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kitimat-Stikine\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Terrace\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 52803.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    52803.0\n                ],\n                \"range\": {\n                    \"gte\": 52803.0,\n                    \"gt\": null,\n                    \"lte\": 52803.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Posting Title  CLK 12R - Customer Service Representative  Position Classification  CLBC Clerk R12  Union  GEU  Work Options  On-Site  Location  Kitimat, BC V8C 2N1 CA (Primary)  Salary Range  $52,803.18 - $59,607.79 annually  Close Date  9/25/2023  Job Type  Regular Full Time  Temporary End Date  Ministry/Organization  BC Public Service -> Citizens' Services  Ministry Branch / Division  Service Delivery/Service BC  Job Summary Apply your expertise and passion for innovation to this rewarding career opportunityMINISTRY OVERVIEWDedicated to making life better for British Columbians, the Ministry of Citizens’ Services (CITZ) delivers key services that people rely on. CITZ delivers accessible, multi-channel services, through a single-point-of-contact service approach to people in urban and rural communities through Service BC, and delivers the digital face of government at www.gov.bc.ca. CITZ also provides support for the expansion of high-speed internet connectivity throughout the province, leadership across government to modernize information management and technology resources, trusted data services to government agencies, prompt, and relevant responses to freedom of information requests, and statistical and economic research, information and analysis to businesses and the public sector. In addition, the ministry manages the Province’s real estate assets, technology systems and equipment, and leverages procurement to increase business opportunities and create rewarding jobs that contribute to local economies and benefit individuals, families, and communities.A service-focused organization, CITZ strives to be a great place to work, where all employees feel both engaged and motivated to do their best.DIVISIONAL OVERVIEWService BC is government’s chief provider of services to B.C. residents and businesses. The work of the division enables the design and delivery of accessible, responsive, and cost-effective services, making it easier for British Columbians and businesses to interact with government. Through a provincial network of 65 in-person offices and the Provincial Contact Center, Service BC provides approximately 300 government services for more than 40 partner ministries and agencies. Our team member’s unwavering commitment to an ethic of service has driven consistently high people and business satisfaction rates. In support of the division’s overarching goal of providing residents and businesses with seamless, multi-service access to government programs, the Division’s service offerings are marketed to partner ministries and the broader public sector to expand our continuum of services and leverage common platforms.Within Service BC, our vision is to deliver innovation, value, and service excellence to the people of British Columbia, with the aspirational goal of becoming a best-in-class public service delivery organization. Our people and our culture are important to us. As a team, we are motivated to deliver an excellent service experience to British Columbians, businesses, colleagues, peers, clients, and partners. We believe in being kind and helpful, and are committed to delivering “Service with Heart”.JOB OVERVIEWThe Service BC Customer Service Representative (CSR) maintains a positive, empathetic, and professional attitude when providing service and answering enquires. It requires the ability to identify and assess peoples’ needs to effectively and efficiently deliver an excellent customer service experience.The CSR provides services in-person, by phone, and through digital channels. The ability to provide clerical and administrative support such as data entry, reviewing applications for completeness, handling payments, and providing appropriate solutions, within government guidelines to a diverse population of people is essential to this role.Job Requirements:Minimum Grade 12 graduation or equivalent (GED).Experience providing inclusive customer service to diverse clienteles. Experience using digital applications to search for and record information. Preference may be given to applicants with one (1) or more of the following:Multiple years of experience in any of the above requirements.Experience providing in-person customer service.Experience providing customer service though phone or digital channels.Experience delivering customer service in a high volume, fast-paced, rapidly changing environment.Experience with conflict resolution and de-escalating situations.Experience providing services to a diverse population some of whom may be experiencing poverty issues, substance use, or mental health concerns.Experience maintaining administrative files and record keeping.Experience delivering service in a regulated or legislated environment following processes and procedures.Customer Service training and/or education.Experience handling financial transactions.Willingness Statements:Willingness to travel occasionally to provide relief coverage to other work sites (Service BC Centres, exam locations, etc.) Successful completion of security screening requirements of the BC Public Service, which may include a criminal records check, and/or Criminal Records Review Act (CRRA) check, and/or enhanced security screening checks as required by the ministry (Note: It is important that you read the job posting carefully to understand the specific security screening requirements pertaining to the position). For questions regarding this position, please contact melody.olsen@gov.bc.ca.About this Position: An eligibility list may be established to fill future temporary and permanent vacancies across the Ministry of Citizens' ServicesThis position has full time on-site requirements.Employees of the BC Public Service must be located in BC at the time of employment.Kitimat is by the Kitimat River, resulting in a wide range of water activities, such as kayaking, canoeing, boating, and visiting hot springs. Surrounded by beautiful forests and mountains, it is perfect for hiking, rock climbing, snowmobiling, and cross country skiing. Kitimat regularly hosts community events, such as fishing derbies and Winterfest celebrations.Working for the BC Public Service:The BC Public Service is committed to creating a diverse workplace to represent the population we serve and to better meet the needs of our citizens. Consider joining our team and being part of an innovative, inclusive and rewarding workplace.The Indigenous Applicant Advisory Service is available to applicants that self-identify as Indigenous (First Nations, status or non-status, Métis, or Inuit) seeking work or already employed in the BC Public Service. For guidance on applying and interviewing, please contact IndigenousApplicants@gov.bc.ca or 778-405-3452.The BC Public Service is an award-winning employer and offers employees competitive benefits, amazing learning opportunities and a chance to engage in rewarding work with exciting career development opportunities. For more information, please see What We Offer.How to Apply: Your application must clearly demonstrate how you meet the job requirements listed above.Cover Letter: NO - Please do not submit a cover letter as it will not be reviewed.Resume: YES - A resume is required as part of your application, however, it may not be used for initial shortlisting purposes.Questionnaire: YES - You will need to complete a comprehensive questionnaire to demonstrate how you meet the job requirements. Include all relevant information about your educational accomplishments and employment history including job titles, start and end dates (month and year) of your employment, and how you obtained your relevant experience. The questionnaire will take approximately 60 minutes to complete.Helpful tips, videos and more regarding the application process can be found on the Your Job Application page of MyHR. If you are experiencing technical difficulty applying, e-mail BCPSA.Hiring.Centre@gov.bc.ca, before the stated closing time, and we will respond as soon as possible.Additional Information: A Criminal Record Check (CRC) will be required.Applicants selected to move forward in the hiring process may be assessed on the Knowledge, Skills, Abilities and Competencies as outlined in the attached Job Profile located at the bottom of the posting.Applications will be accepted until 11:00 pm Pacific Standard Time on the closing date of the competition. Job Category  Administrative Services \",\n            \"location\": \"Kitimat, BC\"\n        },\n        {\n            \"id\": \"9FEEB2C01E3AC24E46AB6924B9669C29\",\n            \"cityName\": \"11528 Eburne Way, Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c5fd57f5666083c8\",\n            \"jobName\": \"Csr (Customer Service Representative-Mandarin Or Cantonese Speaker)\",\n            \"companyName\": \"Donald's Fine Foods\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694513774327,\n            \"dateOfPosted\": 1692823051458,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2014566,\n                    \"lon\": -123.0962888\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Eburne Way, Richmond, BC V6V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full Job DescriptionDuties and Responsibilities· Provide exceptional customer service to all customers in a professional and courteous manner· Provide support to the Sales Team in fulfilling orders· Work with other Customer Service Representatives to ensure correct orders are communicated to the logistics team for order picking and delivery.· Collaborate with cross-functional teams on inventory, customer complaints, and promotional salesAn Ideal CandidateMust speak Cantonese or MandarinMinimum 1-year experience working in a busy office environment and high school graduateExcellent customer service, detailed-orientation, and problem-solving skillsGood understanding of the English and Cantonese and/or Mandarin language, both oral and writtenIntermediate levels working with Microsoft Office (Word, Excel, Outlook)Can work on Tues-Sat 9am-6pm or 8am-5pmWhat we offer:Full-time employment (40 hours per week)Shift flexibility – Monday to Friday or Tuesday to Saturday work weeksMedical, Dental, AD&D, and Life Insurance benefits upon completion of probationEmployer matching RRSPAnnual incentive planEmployee discount purchase programTraining and developmentOpportunity for growthAnnual Family Days and Christmas PartyJob Types: Full-time, PermanentSalary: From $18.00 per hourBenefits:Casual dressCompany eventsDental careDisability insuranceDiscounted or free foodExtended health careLife insuranceOn-site parkingPaid time offRRSP matchVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMorning shiftOvertimeSupplemental pay types:Overtime payCOVID-19 considerations:All external applicants applying are required to be fully vaccinated as a condition of hire and subject to this policy as a condition of ongoing employment.Ability to commute/relocate:Richmond, BC: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Eburne Way, Richmond, BC\"\n        },\n        {\n            \"id\": \"04AC6A792A811A7CC4448F0887FA7CE5\",\n            \"cityName\": \"Moncton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c0392a40e0c83d94\",\n            \"jobName\": \"Customer Service Representative Supervisor\",\n            \"companyName\": \"Troy Soontiens & Associates Inc.\",\n            \"rowSalary\": \"$23.50 an hour\",\n            \"date\": 1694513698533,\n            \"dateOfPosted\": 1694513697956,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.0878165,\n                    \"lon\": -64.7782313\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Conduct performance reviews Recruit and hire staff Co-ordinate, assign and review work Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Examine and verify accuracy of work and authorize routine deposits and withdrawals Identify training needs and train workers in job duties and company policies Resolve work-related problems and prepare and submit progress and other reports Supervision 3-4 people Computer and technology knowledge MS Office Work conditions and physical capabilities Attention to detail Fast-paced environment Tight deadlines Work under pressure Personal suitability Accurate Client focus Dependability Efficient interpersonal skills Excellent oral communication Excellent written communication Initiative Interpersonal awareness Judgement Organized Reliability Team player Health benefits Health care plan Long term benefits Life insurance Other benefits Free parking availableWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Moncton, NB\"\n        },\n        {\n            \"id\": \"7342B5843C181691CCAD6DDD3482FA6F\",\n            \"cityName\": \"Saint John, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f09f9a2e93717e2d\",\n            \"jobName\": \"Monitoring Station Call Centre Operator - Bilingual (English/French)\",\n            \"companyName\": \"Firetronics 2000 Inc.\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694512103293,\n            \"dateOfPosted\": 1693665548352,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.2733153,\n                    \"lon\": -66.06330799999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saint John\",\n                \"formattedAddress\": \"Saint John, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Saint John County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saint John\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OverviewAt Firetronics 2000 Inc. safety is our number one concern. We specialize in installing, maintaining and monitoring ULC fire alarm systems. We stand by our services and products, ensuring adherence to all applicable regulations, industry standards and guidelines. One of our principal goals is to be a dependable and trusted partner to our clients, authorities and associations.Find out more information about Firetronics 2000 Inc. by visiting our website at www.firetronics.ca.Duties and ResponsibilitiesMonitor fire and security alarm systems utilizing specialized monitoring software and equipmentHandle all telephone calls efficiently and in a professional mannerNotify appropriate contacts or emergency authorities such as Fire Department, Police, Emergency Medical Services in a prompt and efficient manner following strict proceduresDiligently keep required records and filesPrepare and distribute reports internally and to external parties as requiredFollow all established procedures, regulations and guidelinesOther related duties as may be assignedPlease note that this is not a remote positionQualificationsVerbal and written fluency in both English and FrenchEducation: secondary school diploma minimumPreferred a minimum of 1 year experience in the same or similar role such as 911 Operator/Dispatcher, Customer Service Representative (CSR), Telephone Operator/Agent, Call Centre Operator/Agent, Answering Service Operator/Agent, etc.Excellent telephone and communication skillsFlexibility to work 12-hour rotating shifts (days and nights required)Advanced computer proficiency with strong data entry/keyboarding skillsAbility to work under pressureAttention to detail is requiredAbility to stay focused at all times during working hours.Passing criminal record checkWorking ConditionsFriendly team environmentCareer growth opportunitiesContinuous operations (24/7)12-hour rotating shifts (4 on- 4 off Schedule)Participation in On Call Schedule is requiredOffice environment with semi-open workstationsLocated close to major highways and public transitJob Types: Full-time, PermanentSalary: $20.00-$22.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offVision careSchedule:12 hour shiftSupplemental pay types:Overtime payAbility to commute/relocate:Saint John, NB E2L 4L1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer Service: 1 year (preferred)Language:English fluently (required)French fluently (required)Work Location: In personView public job pageJob Types: Full-time, PermanentSalary: From $20.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offVision careSchedule:12 hour shiftOn callSupplemental pay types:Overtime payAbility to commute/relocate:Saint John, NB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Language:French (required)Work Location: In person\",\n            \"location\": \"Saint John, NB\"\n        },\n        {\n            \"id\": \"EBEC08F9A55D38DCC9B2DA9730CEBB4B\",\n            \"cityName\": \"Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ff878545338167d8\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Mhm Direct\",\n            \"rowSalary\": \"$800–$1,200 a week\",\n            \"date\": 1694511550542,\n            \"dateOfPosted\": 1675891522656,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.64876350000001,\n                    \"lon\": -63.5752387\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax Regional Municipality\",\n                \"formattedAddress\": \"Halifax Regional Municipality, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halifax Regional Municipality\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 800.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    800.0\n                ],\n                \"range\": {\n                    \"gte\": 800.0,\n                    \"gt\": null,\n                    \"lte\": 800.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full Job DescriptionMHM Direct is hiring for outside sales and customer service in Halifax, NS. Bonus compensation is completely based on performance.The average wage of our representatives in this role is $38,400+ and top performers earn $57,600+ per year in this entry level position.OTHER BENEFITS:Paid 1 week of in house training on our sales process, and ride-along with successful sales and technical team membersRESPONSIBILITIES:Present/sell company products and services to new and existing customersResolve customer inquiries and complaintsAccess and process payment informationQUALIFICATIONS:Self-motivated, results-driven with excellent time management skillsCommit to skill development through weekly practice/coaching sessions that are customized to improve their current skill setPossess a positive and professional presence, exceptional communication skillsWork well in a team environmentJob Types: Full-time, Part-time, Seasonal, PermanentSchedule:Fixed hours of 12:30pm - 8:30pm, Monday-FridayAbility to commute:Halifax, NS: reliably commute, no remote options(required)Experience:Previous experience in retail, sales, serving or bartending is preferred, but we are willing to train the right candidate who has no experience.Job Types: Seasonal, Permanent, Part-time, Full-timePart-time hours: 20-40 per weekSalary: $800.00-$1,200.00 per weekBenefits:Profit sharingSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Halifax, NS\"\n        },\n        {\n            \"id\": \"15332E04751BE195CCCD53C503F6A4D8\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7dcb528bd623cffc\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"Trigrand Inc.\",\n            \"rowSalary\": \"$34–$36 an hour\",\n            \"date\": 1694510311361,\n            \"dateOfPosted\": 1688899109497,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 34.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    34.0\n                ],\n                \"range\": {\n                    \"gte\": 34.0,\n                    \"gt\": null,\n                    \"lte\": 34.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 1 year to 2 yearsExperience: 1 year to less than 2 yearsTasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Recruit and hire workers and carry out related staffing actions Train or arrange for training Estimate costs and materials Ensure health and safety regulations are followed Read blueprints and drawings Requisition or order materials, equipment and suppliesWork Term: PermanentWork Language: EnglishHours: 30 hours per week\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"3051120983A4A8B1518AC0F496C04C41\",\n            \"cityName\": \"Newmarket, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c3e8a6058748a477\",\n            \"jobName\": \"Real Estate Customer Service Administrator\",\n            \"companyName\": \"Kw Realty Centres\",\n            \"rowSalary\": \"$35,000–$40,000 a year\",\n            \"date\": 1694509141368,\n            \"dateOfPosted\": 1658504218961,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.05918700000001,\n                    \"lon\": -79.46125599999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Newmarket\",\n                \"formattedAddress\": \"Newmarket, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Newmarket\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a dynamic individual who will maintain a positive, empathetic, and professional attitude toward customers at all times; creating an experience when attending to clients' and associates’ needs in such a way that they walk away with a great impression. This individual will be responsible for the appearance of the Market Centre common areas. They will ensure the office is neat and prepared for business at all times. They will greet everyone with a smile and warmth as they enter the office. They will be as helpful as possible without neglecting the phones. Telephone calls are answered as promptly and politely as possible. They will assist in the management of the office by providing support and feedback to the Executive Assistant to the Team Leader, and the Market Centre Administrator. Compensation: $35,000 - $40,000 yearly Responsibilities: Answering the phone courteously, correctly, and ensuring that all calls are properly routed Promptly and accurately page agent messages as required Greeting everyone in a positive and professional manner Maintain appearance of the reception area and common areas of the Market Centre Provide detailed and timely responses to all associates, clients, brokerage, and staff questions and concerns Responsible for the front desk aspects of the listing process from new listing until the firm offer is received Book and confirm showing appointments with sellers, and other brokerages in a timely, accurate, and professional manner All required front desk TRREB reporting and updates in a timely and accurate manner Accurate receipt preparation, and distribution of deposit cheques Posting on private and public KWRC facebook Qualifications: People-oriented, positive, high energy Strong work ethic Dependable Team Player Experience with Broker Bay an asset Understanding of real estate administrative practices an asset Ability to be efficient and effective in a very fast-paced environment Ability to work at KWRC locations (Keswick, Newmarket, Aurora) Excellent computer skills Great communication skills Excellent administrative skills Neat, clean, professional appearance About Company Frequently recognized as the most innovative and agent-friendly brokerage in Canada, KW Realty Centres Aurora/Newmarket is a busy well-established office with over 230 agents. We are #1 in market share in our area. KW Realty Centres is a positive environment that will push you to great potential. Here you can make an impact; help people create wealth and make a difference in the community!\",\n            \"location\": \"Newmarket, ON\"\n        },\n        {\n            \"id\": \"5778A3714AF7DED58CCB5F8EDD52E236\",\n            \"cityName\": \"Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1514568d8d5162a5\",\n            \"jobName\": \"Customer Service - Parts Advisor (Automotive Retail)\",\n            \"companyName\": \"Alpha Auto Group\",\n            \"rowSalary\": \"$18–$21 an hour\",\n            \"date\": 1694508947787,\n            \"dateOfPosted\": 1692794012046,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Alpha Auto Group (\\\"AAG\\\") is a growing and nationally focused auto dealer group based in Toronto, with various locations across Canada and the USA. AAG’s mission is deeply rooted in delivering best in class service for our valued customers by putting our customers first through world class service.In order to meet this mission, it’s important that the successful candidate bring a high level of service, skill, willingness to grow and collaborate and drive, set and meet goals, both personally and collaboratively.With the ever increasing demand for support and service in the auto industry, some of our Ottawa locations are looking for Parts Advisors to join our team.ResponsibilitiesWorking directly with customers, suppliers and technicians to ensure that there is ongoing communication and effective operations within the parts department.Always working towards improving operational efficiencies.Order parts for customers' repair needs.Maintain and nurture ongoing rapport and relationships with business partners.Oversee and maintain parts inventory.QualificationsPrevious parts advisor experience. (min 1 yr)Deep passion and interest in human centered customer experiences.High attention to detail and able to work with minimal supervision.Comfort working with all levels of staff and customers.Strong verbal and written skills and proficiency in English.Proficient in Microsoft Office Applications. (Excel, Word, Outlook)Strong interpersonal skills.Job Types: Permanent, Full-timeSalary: $18.00-$21.00 per hourBenefits:Extended health careSchedule:Day shiftMonday to FridayWeekends as neededAbility to commute/relocate:Ottawa, ON: reliably commute or plan to relocate before starting work (required)Experience:Automotive Parts: 1 year (required)Customer Service: 3 years (required)Language:English (required)Licence/Certification:Drivers License (required)Work Location: In person\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"4466DC61418CBBEEF053F3297F53E688\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8047ec214dd9941b\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Dynadot Llc\",\n            \"rowSalary\": \"$16.50–$19.50 an hour\",\n            \"date\": 1694507899523,\n            \"dateOfPosted\": 1693658482618,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Dynadot is a top-rated web host and domain name registrar founded in 2002. We are growing rapidly, and provide our employees with ample opportunity to learn new skills and develop their careers. Our head office is located in the heart of Silicon Valley, California.Our team is expanding and we are looking for top-notch representatives to give our customers the exceptional service that we are known for. We offer competitive pay, medical benefits, generous paid time off, and a fun team-based work environment. We are looking for several full-time customer service representatives.This position is in our Toronto, Ontario office. The shift time is from 9am - 6pm PST (12pm - 9pm EST) either Sunday to Thursday or Tuesday to Saturday (one weekend day is required).Responsibilities:Respond to customer emails, online chats, and message board postings.Write knowledge-base articles for our help site and our FAQs.Work with our engineering team to troubleshoot bugs in our system.Answer technical support questions regarding DNS, Web Hosting, SSL certificates, and any other issues as they arise.Keep up-to-date with the changing policies and procedures of the domain name industry.Required Qualifications:A passion for providing excellent support.Strong written and verbal communication skills.Strong problem-solving skills.Hardworking, motivated, reliable, detail-oriented.Ability to work independently as well as with a team.Must be available to work weekends and some holidays.Benefits:Full-time positionCompetitive salaryDental careVision care4 weeks paid time off per year.Fun team-based work environment.Team-bonding activities.Job Type: Full-timeSalary: $16.50-$19.50 per hourBenefits:Casual dressDental careVision careFlexible Language Requirement:French not requiredWork Location: In personApplication deadline: 2023-09-15Expected start date: 2023-10-01\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"1571FF23404ADF7541EC30EB5285E2CC\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fa7c65cede5f9c9d\",\n            \"jobName\": \"Dental Administrator / Call Center Agent\",\n            \"companyName\": \"Dmd Family Dental & Orthodontics\",\n            \"rowSalary\": \"$20–$25 an hour\",\n            \"date\": 1694507055971,\n            \"dateOfPosted\": 1693653749772,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a positive, enthusiastic Customer Service Representative / Call Center Agent to join our growing team! A few of the many benefits of working with us!We are located in Guildford, very centralPositive and supportive office cultureExceptional team of professionalsConsistent schedule of hoursMedical & Dental Benefits The ideal candidate must have:A minimum of 1 year experience in the dental industry (either as dental receptionist or a dental assistant)Customer Service Skills – must be able to provide excellent patient service to ensure their dental needs are being met.Multi-Tasking Skills – ability to prioritize and address multiple demands concurrently.General passion for Dentistry and preventive careOrganized and computer proficientExcellent verbal and written communication skillsConfidentiality – Maintain patient, team member and employer confidentialityMust be available to work weekends (Saturdays and Sundays) #HRIC\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"BB1566B4CEB139B210E1853ADAA91656\",\n            \"cityName\": \"Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=86e4cfa8d6c2471f\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Wetrentals Inc.\",\n            \"rowSalary\": \"$15–$20 an hour\",\n            \"date\": 1694506927568,\n            \"dateOfPosted\": 1623804686446,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Boat Delivery & Customer Service Company descriptionWetRentals is a local Seadoo and other boat rental company. We offer rentals at a reasonable rate and they are delivered to our customers docks or doors.Job descriptionJob Title: Boat Delivery and Customer ServiceReports To: Sales ManagerJob Overview:As a Boat Delivery & Customer Service Representative, you will be required to deliver our boats to our customers dock or door. Once delivered, the boats must be unloaded and the customers must be briefed on the safety and operations of the boat. Customer service is key. Once the boats are fully delivered, the job duties are finished until the boats are required to be picked up. On pickup the boats must be inspected and returned to our location. Deliveries take place all over Ottawa, Kingston and Perth.A TRUCK IS REQUIRED (you will be paid $.58c/ km)Responsibilities and Duties- Rent Seadoo's to customers- Upsell our boats and accessories- Complete transactions- Collect deposits and signed contracts- Give safety briefings- Deliver Boats- Clean down boats, check for damage.- Answer questions as needed.Qualifications- Minimum of 18 Years of age- Sales experience is an asset- Boat knowledge is an asset- Local knowledge is an asset- Boaters licence is a must.- Truck or large vehicle is a must.HoursHours vary based on rentals. Our rentals are 9am-5pm. Deliveries and pickups happen at 9am and 5pm.The Perfect HireOur perfect hire is an energetic, outgoing individual who is looking to help grow our small business. The hire will have to be able to back up a trailer with boats and unload them proficiently. Customer service is a must as the hire must be able to fully explain how our boats work.Contract length: 2 monthsApplication deadline: 2021-06-20Expected start date: 2021-07-01Job Types: Full-time, TemporarySalary: $15-$20 per hourCOVID-19 considerations:All employees are required to wear a face covering while the government regulations are in place. Hand sanitizer and cleaning supplies are available 24/7Contract length: 2 monthsPart-time hours: 20 per weekExpected start date: 2021-07-01WetRentals Inc. provided the following inclusive hiring information:We are an equal opportunity employer and considers all qualified applicants equally without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, veteran status, or disability status.Job Types: Part-time, TemporarySalary: $15.00-$20.00 per hourBenefits:Company eventsWork from homeSchedule:HolidaysMonday to FridayOn callWeekendsSupplemental pay types:Commission payTipsApplication question(s):Do You Own A Large SUV or Truck?Education:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work remotely:No\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"7DD20A9A6D0BF5AAD6D244FC2332268C\",\n            \"cityName\": \"245 West Hunt Club Road, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0e498d869e7add93\",\n            \"jobName\": \"Customer Service Representative: Intake\",\n            \"companyName\": \"Ottawa Humane Society\",\n            \"rowSalary\": \"$20.32–$24.72 an hour\",\n            \"date\": 1694506712598,\n            \"dateOfPosted\": 1689722653284,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.3228772,\n                    \"lon\": -75.7673026\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"W Hunt Club Rd, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative: IntakeThe Ottawa Humane Society is a non-profit, community-based organization and a registered charity. Since 1888, we have been the leading organization providing a safe haven for sick, injured and homeless animals in Ottawa. For more information on the Ottawa Humane Society, visit us at: http://www.ottawahumane.ca.Under the direction of the Supervisor: Customer Service, the Customer Service Representative: Intake is responsible providing consultation and support for OHS clients seeking OHS lost and found services and services of the Municipal Animal Shelter (MAS).The hourly wage range is $20.32 - $24.72 as per our collective agreement.What would you do?Ensure professional intake and discharge of animalsAssess and document the health and behavior of incoming animalsExamine all in-coming animals are thoroughly for identificationResearch all possible avenues to match an animal to its ownerBe aware , and make use, of relevant online and community resourcesMaintain the MAS area, facilities and equipmentAccept and manage OHS payments and donations as requiredEnter and maintain data integrity in Raiser’s Edge and ChameleonSupport the activities of coworkers, volunteers , students and work placements a provide orientation and training as requiredBe thoroughly familiar with pertinent legislation, regulations, guidelines, OHS policies and good animal care practicesProduce and maintain accurate reports, records and filesParticipate in supervision, evaluation, training and other meetings as requiredParticipate in the identification and evaluation of OHS program goals and objectivesParticipate in professional development opportunitiesRepresent OHS in a professional mannerParticipate in public relations and promotional activities as requiredWill be required to assume some of the responsibilities of Customer Service Representative: AdoptionsMay be required to assume some of the responsibilities of the Supervisor: Customer Service or Coordinator: PALWhat are we looking for?Secondary school diploma or equivalentMinimum of one year experience in customer serviceAnimal handling experience preferredProficiency in Microsoft Office SuiteProfessional proficiency in spoken and written English and French is preferredWorking Conditions/Physical Requirements:Employee may be required to work evening, holiday and weekend shiftsEmployment is conditional upon the ability to provide services in a safe manner, including , but not limited to, lifts and transfers of large animals and interaction with potentially aggressive animalsEmployee will be required to wear a uniform designated by the employerEmployment is conditional upon maintaining confidentiality of OHS informationEmployment is conditional upon the ability to work around all species of animals safelyJob Type: Full-timeSalary: $20.32-$24.72 per hourAbility to commute/relocate:Ottawa, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (required)Work Location: In person\",\n            \"location\": \"West Hunt Club Rd, Ottawa, ON\"\n        },\n        {\n            \"id\": \"86285C1389AB4B9B99C7623AF58A9029\",\n            \"cityName\": \"Woodstock, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bff5092d0bd643a5\",\n            \"jobName\": \"Customer Service Supervisor (Except Financial Services)\",\n            \"companyName\": \"Holiday Inn Express & Suites Woodstock South\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694506575786,\n            \"dateOfPosted\": 1688038453554,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1314966,\n                    \"lon\": -80.74716509999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Woodstock\",\n                \"formattedAddress\": \"Woodstock, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Oxford County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Woodstock\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 3 months to less than 1 yearExperience: 7 months to less than 1 yearTasks Perform same duties as workers supervised Recruit and hire staff Co-ordinate, assign and review work Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Identify training needs and train workers in job duties and company policies Resolve work-related problems and prepare and submit progress and other reports Work conditions and physical capabilities Attention to detail Work under pressure Personal suitability Client focus Interpersonal awareness Organized Reliability Team playerWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Woodstock, ON\"\n        },\n        {\n            \"id\": \"4250FB91C01BAEBF8AC27ABC2E01C7B8\",\n            \"cityName\": \"5565 Ch De La Côte De Liesse, Saint-Laurent, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5e8976f78ff37ef8\",\n            \"jobName\": \"Customer Care Specialist/ Spécialiste Service Clientèle\",\n            \"companyName\": \"Crownring™ (La Bague Couronnée)\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694505246072,\n            \"dateOfPosted\": 1691617451872,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4636212,\n                    \"lon\": -73.7202654\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Ch De La, 10592 De la Côte-de-Liesse Rd, Lachine, QC H8T 1A4, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"SummaryAre you looking for a new challenge? We'd like to hear from you! CrownRing Bridal House is a fast-growing Canadian wholesale company looking for motivated, trustworthy, dedicated employees to join our team. As Canada’s leading bridal jewelry designer and manufacturer, we strive to maintain a professional work environment, both in our image and quality of work. We are looking for passionate, driven employees that are true believers in our immense potential.The PositionThe Customer Experience Specialist will be a detail-oriented, positive, hardworking individual. This person enjoys talking on the phone, administrative work and being in an office environment. This position requires a team player that has experience multi-tasking, working under stress and problem solving. They enjoy working in a fast-paced environment and love challenges.- Taskso Deliver the ultimate customer service experience to our retail partnerso Provide helpful and professional service by phone/e-mail. Requests will include:o Placing orderso Giving price quotes on regular and customized productso Providing status on pending orderso Assisting customers with orders under a tight deadlineo Issuing Return Authorization numbers- Requirementso Strong verbal and written communication skills in English to be part of our North American Team.o Career oriented individualo 2-3 years experience working in a similar position in an office settingo Professional E-mail communication experienceo High attention to detail with ability to catch errorso Strong computer skills (Microsoft Office Suite)Working at CrownRingWe aspire to empower our employees through multiple paths for growth within our modern company. We also offer health, dental, and vision benefits for you and your family.Availability: Monday – Thursday 9am – 6pm & Friday 9am – 3:30pmJobType: Full time (40h/week)Compensation: Based on experienceEmployee health benefit program will take effect after probation period.We are an equal-opportunity employer and value diversity at our company. We do not discriminate based on race, ethnicity, religion, gender, sexual orientation, age, or disability status.________________________________________________________________________________________________RésuméVous cherchez un nouveau défi ? Nous aimerions avoir de vos nouvelles ! CrownRing Bridal House est une entreprise canadienne de gros en pleine croissance à la recherche d'employés motivés, dignes de confiance et dévoués pour rejoindre notre équipe. En tant que principal concepteur et fabricant de bijoux de mariée au Canada, nous nous efforçons de maintenir un environnement de travail professionnel, tant dans notre image que dans la qualité de notre travail. Nous recherchons des employés passionnés et motivés qui croient fermement en notre immense potentiel.Le PosteLe Spécialiste du service à la Clientèle sera une personne attentive aux détails, positive et travailleuse. Cette personne apprécie les conversations téléphoniques, le travail administratif et l'environnement de bureau. Ce poste requiert un esprit d'équipe ayant de l'expérience dans la gestion de plusieurs tâches, travaillant sous pression et résolvant des problèmes. Ils aiment travailler dans un environnement rapide et sont friands de défis.Tâcheso Offrir l'expérience ultime de service à la clientèle à nos partenaires de vente au détailo Fournir un service utile et professionnel par téléphone/courriel. Les demandes incluront :o Passer des commandeso Donner des devis de prix sur des produits réguliers et personnaliséso Fournir l'état des commandes en attenteo Aider les clients avec des commandes sous contrainte de délaio Émettre des numéros d'autorisation de retourExigenceso Solides compétences en communication verbale et écrite en anglais afin de faire parti de notre équipe Nord Américaineo Individu axé sur la carrièreo 2 à 3 ans d'expérience dans un poste similaire en milieu de bureauo Expérience professionnelle en communication par courrielo Grande attention aux détails avec la capacité de repérer les erreurso Solides compétences en informatique (suite Microsoft Office)Travailler chez CrownRingNous aspirons à autonomiser nos employés grâce à plusieurs voies de croissance au sein de notre entreprise moderne. Nous offrons également des avantages en matière de santé, de soins dentaires et de vision pour vous et votre famille.Disponibilité : du lundi au jeudi de 9h00 à 18h00 et le vendredi de 9h00 à 15h30.Type de poste : Temps plein (40 heures/semaine)Rémunération : Basée sur l'expérienceLe programme d'avantages sociaux pour les employés entrera en vigueur après la période de probation.Nous sommes un employeur qui valorise la diversité et sommes attachés à l'égalité des chances. Nous ne discriminons pas sur la base de la race, de l'origine ethnique, de la religion, du genre, de l'orientation sexuelle, de l'âge ou du statut de handicap.Type de poste : Temps pleinSalaire : À partir de 18,00 $ de l'heureAvantages :Tenue décontractée Soins dentaires Soins de santé étendus Soins de la vueHoraire :Quart de 8 heuresLieu de travail : En personneJob Type: Full-timeSalary: From $18.00 per hourBenefits:Casual dressDental careExtended health careVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftSupplemental pay types:Overtime payWork Location: In person\",\n            \"location\": \"Ch De La Côte De Liesse, Saint-Laurent, QC\"\n        },\n        {\n            \"id\": \"C2139FA136F12A16CE544DB1EC0A43E4\",\n            \"cityName\": \"4500 Oak Street, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f399277e84d58a22\",\n            \"jobName\": \"Manager, Call Centre, Housekeeping Services, Inter-Campus Operations\",\n            \"companyName\": \"Phsa\",\n            \"rowSalary\": \"$86,398–$124,197 a year\",\n            \"date\": 1694505011872,\n            \"dateOfPosted\": 1692811036312,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.232599,\n                    \"lon\": -123.1280661\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Oak St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 86398.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    86398.0\n                ],\n                \"range\": {\n                    \"gte\": 86398.0,\n                    \"gt\": null,\n                    \"lte\": 86398.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Manager, Call Centre, Housekeeping Services, Inter-Campus Operations Children's & Women's Health Center  Vancouver, BC  In accordance with the Mission, Vision, Values and strategic direction of PHSA, safety, including both patient and employee safety, is a priority and a responsibility shared by everyone at PHSA. As such, the requirement to continuously improve quality and safety is inherent in all aspects of this position.  Reporting to the Director, Housekeeping Services, the Manager oversees the provision of quality Housekeeping Services call centre operations supporting the delivery of housekeeping services to Inter-Campus Operations (ICO) within British Columbia Children’s Hospital (BCCH), British Columbia Women’s Hospital and Health Centre (BCW) and the British Columbia Cancer Agency (BCCA). Provides leadership and direction to staff to ensure department service levels are maintained and customer service targets are achieved while identifying areas for improvement and/or development. Develops department policies and procedures including the development of an ICO wide Housekeeping call centre strategy incorporating current and new technology, by liaising with internal stakeholders to identify service requirements, and external providers with development and/or implementation of new technology. What you’ll do Contributes to the development of ICO’s long term human resources planning goals, policies, mission, and vision by reviewing the operational objectives for a Housekeeping Call Centre including the development of recommendations to meet current operational requirements, and reflect future operational and strategic needs of the department.Develops and implements department goals, objectives, policies and procedures to ensure the effective and efficient delivery of an ICO wide Housekeeping call centre service to internal/external users; oversees the reporting and documentation of call centre reports, metrics and service levels and works with staff to develop and implement standard processes/procedures for responding to user requests.Monitors workload and call volumes to ensure that response times and other performance targets are met in an effective and efficient manner.Develops, monitors, evaluates, and maintains work procedures and processes, by analyzing call centre data and reports, reviewing existing processes, drafting new processes, documenting and reviewing changes and advising call centre staff on new/changed procedures and processes to support improved housekeeping service delivery within ICO.Prepares and maintains a variety of call centre/department statistics used to monitor and maintain call volumes, staffing levels and workload volume. Analyzes service statistics to identify service improvement opportunities and trends to provide related recommendations.Recruits and manages assigned staff in accordance with professional standards, performance expectations and legislative/contractual obligations; directs, supervises and evaluates staff to ensure effective performance of dutiesPlans, assigns and/or provides work direction to staff by setting goals and standards and assigning responsibilities; coordinates the development, implementation and evaluation of staff training/orientation programs; promotes, disciplines and initiates employee disciplinary action and/or terminations, as required.Develops the annual operating and capital budgets for the assigned portfolio; monitors expenditures and performs variance analysis and reporting; takes corrective action as required to address budget and/or expenditure anomalies.Oversees and/or develops a quality improvement program to identify and resolve quality assurance issues; develops recommendations based on review of metrics to address gaps in service, quality of data collected and service provided, staff and human resource issues; implements recommendations as required.Manages, maintains and coordinates the maintenance and support of the call centre and participates in the development of a broader application of existing and/or new and related technology. Contributes to the development of long range housekeeping service delivery optimization through the identification and use of appropriate technological tools and systems.Identifies and promotes the development of research opportunities and utilization of research findings in refinement of call centre(s) service and best practices.Prepares operational and statistical reports, presentations and marketing materials for managing operations, reporting out on performance and marketing services to stakeholder groups. Other additional leadership responsibilities as assigned.Represents Housekeeping Services on various internal and external committees regarding call centre best practices and related issues. What you bring Qualifications Baccalaureate degree in Business Administration or related discipline, plus a minimum five years recent related experience including two (2) years in a supervisory/leadership role in Housekeeping Services and/or Housekeeping Call Centre, or an equivalent combination of education, training and experience.Sound knowledge of contemporary and best practices in call centre operations and incident reporting, including call centre/phone system technology. Demonstrated conflict management skills including ability to facilitate consensus with internal and external users. Ability to supervise and provide work direction to others. Working knowledge of applicable collective agreements and related legislation, labour standards and/or statutory requirements. Ability to implement service/organizational change and transition internal and external to the organization. Ability to organize and prioritize in a dynamic environment with changing priorities. Ability to develop and maintain rapport with internal and external stakeholders. Demonstrated conceptual, analytical and reasoning skills. Ability to operate related equipment including applicable software applications. Physical ability to perform the duties of the position. Proven ability to build a shared sense of purpose with clear priorities and expectations. Invests in team growth and development, and makes an honest effort to see, hear, and value all perspectives. Takes smart risks to find new solutions and has the ability to make tough decisions when needed for meaningful impact. Skills & Knowledge Awareness of and commitment to learning and understanding the Truth & Reconciliation Commission’s 94 Calls to Action (2015), In Plain Sight Report (2020), BC's Declaration on the Rights of Indigenous Peoples Act (2019), and Reclaiming Power and Place Missing and Murdered Indigenous Women & Girls calls for justice, and how they intersect across the health care system.Supports team members on their learning journey, ensuring education strategy for team/department to implement Indigenous Cultural Safety at a practical level.Works collaboratively with appropriate Indigenous teams/departments to ensure ICS lens applied holistically.Commitment to upholding the shared responsibility of creating lasting and meaningful reconciliation in Canada as per TRC (2015) and BC's Declaration on the Rights of Indigenous Peoples Act (2019).As a strong asset for consideration, we are looking for our successful candidate to have: Knowledge of social, economic, political and historical realities impacting indigenous communities and familiarity with Indigenous Cultural Safety and anti-racism and accompanying reports (BC DRIPA, TRC, etc.). What we bring Every PHSA employee enables the best possible patient care for our patients and their families. Whether you are providing direct care, conducting research, or making it possible for others to do their work, you impact the lives of British Columbians today and in the future. That’s why we’re focused on your care too – offering health, wellness, development programs to support you – at work and at home. Join one of BC’s largest employers with province-wide programs, services and operations – offering vast opportunities for growth, development, and recognition programs that honour the commitment and contribution of all employees.Access to professional development opportunities through our in-house training programs, including +2,000 courses, such as our San’yas Indigenous Cultural Safety Training course, or Core Linx for Leadership roles.Enjoy a comprehensive benefits package, including municipal pension plan, and psychological health & safety programs and holistic wellness resources.Annual statutory holidays (13) with generous vacation entitlement and accruement.PHSA is a remote work friendly employer, welcoming flexible work options to support our people (eligibility may vary, depending on position).Access to WorkPerks, a premium discount program offering a wide range of local and national discounts on electronics, entertainment, dining, travel, wellness, apparel, and more. Job Type: Regular, Full-time  Salary Range: $86,398 - $124,197 /year. The starting salary for this position would be determined with consideration of the successful candidate’s relevant education and experience, and would be in alignment with the provincial compensation reference plan. Salary will be prorated accordingly for part time roles. Location: 4500 Oak St, Vancouver, BC V6H 3N1 Closing date: Applications accepted until position is filled Hours of Work: 0900-1700 (Monday to Friday) Requisition # 150964E  As per the current Public Health Order, full vaccination against COVID-19 is a condition of employment with PHSA as of October 26, 2021. What we do  The Provincial Health Services Authority (PHSA) plans, manages and evaluates specialized health services with the BC health authorities to provide equitable and cost-effective health care for people throughout the province. Our values reflect our commitment to excellence and include: Respect people – Be compassionate – Dare to innovate – Cultivate partnerships – Serve with purpose.  Learn more about PHSA and our programs: jobs.phsa.ca/programs-and-services  PHSA is committed to employment equity, encouraging all qualified individuals to apply. We recognize that our ability to provide the best care for our diverse patient populations relies on a rich diversity of skills, knowledge, background and experience, and value a safe, inclusive and welcoming environment.  Reconciliation is an ongoing process and a shared responsibility for all of us. The BC Governments’ unanimous passage of the Declaration on the Rights of Indigenous Peoples Act was a significant step forward in this journey—one that all health authorities are expected to support as we work in cooperation with Indigenous Peoples to establish a clear and sustainable path to lasting reconciliation. True reconciliation will take time and ongoing commitment to work with Indigenous Peoples as they move toward self-determination. Guiding these efforts Crown agencies must remain focused on creating opportunities that implement the Truth and Reconciliation Commission Mandate.  ATTN: PHSA Employees: To be considered as a PHSA employee (internal applicant) for this position, you must apply online via your internal profile at http://internaljobs.phsa.ca  Please note the internal job posting will no longer be accessible after the expiry date of August 29, 2023. If the internal job posting has expired, please contact the Internal Jobs Help Desk and advise that you would like to be considered as a late internal applicant for this position. Please do not apply for the external job posting.  If you have not registered your internal profile, a password is required to log in for the first time. To obtain your password, please contact the Internal Jobs Help Desk at 604-875-7264 or 1-855-875-7264. Please note regular business hours are Monday – Friday (excluding stats), 8:30am to 4:30pm. For inquiries outside of regular business hours, please email the Internal Jobs Help Desk at internaljobshelpu@phsa.ca and a Help Desk Representative will contact you the next business day. \",\n            \"location\": \"Oak St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"10E9C0851053C8ECCE98839E565C87E2\",\n            \"cityName\": \"27 Queen St E, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d73574867340db88\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Shiny\",\n            \"rowSalary\": \"$15–$23 an hour\",\n            \"date\": 1694504961439,\n            \"dateOfPosted\": 1623853205727,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6637879,\n                    \"lon\": -79.3278595\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Queen St E, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Description:Answer phone calls and assist walk-in customersDaily showroom Set-up and pack upPrepare orders and follow-up with customers on phone or emailHandle customer concerns and inquiriesInvoice orders and obtain necessary payments when requiredRequirements:Fluent in French and EnglishRelatable job experience preferredOrganized and punctualKnowledge of Microsoft outlook, word, and excel is mandatoryAble to multitask and meet deadlinesMust be a team player and be able to work independentlyQuick and efficient learnerJewellery knowledge is an asset but not required, training provided.Job Type: Full-timeSalary: $15.00-$23.00 per hourSchedule:8 hour shiftNo weekendsEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work remotely:No\",\n            \"location\": \"Queen Street East, Toronto, ON\"\n        },\n        {\n            \"id\": \"5499848CA4544DE9A192A1D894F38132\",\n            \"cityName\": \"Windsor Station Currency Exchange in Windsor, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8c51c20aa8e7a70c\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Windsor Station Currency Exchange\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694504880259,\n            \"dateOfPosted\": 1682669668585,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.3149367,\n                    \"lon\": -83.03636329999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Windsor\",\n                \"formattedAddress\": \"Windsor, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Essex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Windsor\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CPosition: Customer Service Representative/AssistantA customer service representative is the face of the company, and is incredibly important in developing lasting relationships between WSCE and our clients. You will be expected to complete transactions, respond to telephone inquiries, open new accounts, identify client needs, recommend suitable products, and resolve client problems.Essential Functions and Basic Duties- Provide prompt, courteous service to clients in person and by phone- Perform a variety of cash and cheque transcations.- Effectively use multiple administrative systems to resolve inquiries- Assist with opening and closing the branch- Manage large amounts of incoming phone calls- Keep current with company policies, procedures and processesQualifications and Skills- Cash handling experience- Customer service experience- Strong interpersonal and communication skills- Working knowledge of excel- Proficiency with numerical calculationsJob Types: Full-time, Fixed term contractContract length: 12 monthsSalary: $18.00-$25.00 per hourSchedule:8 hour shiftEducation:Secondary School (preferred)Experience:Cash handling: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Windsor, ON\"\n        },\n        {\n            \"id\": \"0C7FC89DA59900848800C343605136AB\",\n            \"cityName\": \"Fort McMurray, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3a9238147d37a3cc\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Tumblweed General Store\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694504630659,\n            \"dateOfPosted\": 1691622508349,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 56.7266598,\n                    \"lon\": -111.3790441\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fort McMurray\",\n                \"formattedAddress\": \"Fort McMurray, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 16\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fort McMurray\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cashier & Customer Service RepresentativeTumbleweed General Store/Fort McKay Petro CanadaJob location: Fort McKay, ABShift: VariesLocated in the Fort McKay Industrial Park in Fort McKay, 35 minute drive from Fort McMurray!!Must have own transportation, we provide free gasCome and join our team today!!Company Summary:Based out of Fort McKay, AB, we are a high traffic gas and convenience store providing services to our costumers. When you join our team, you join a family of employees dedicated to a safe, enjoyable, and positive work environment. We offer competitive wages and seek candidates that are seeking secure, long-term employment.Job Summary:Reporting to the store manager and operating from the Fort McKay Industrial Park, the cashier and customer service representative is responsible for providing customer with professional, efficient and friendly service. The individual in this position must be able to multi-task efficiently in a fast-paced environment.Duties and Responsibilities:All general duties that are required of a Cashier/Customer Service Representative specifications follow but are not limited to:· Provide fast, friendly and a responsive guest experience· Maintain a clean, safe, and well stocked environment· Manage electronic cash register and the applicable retail transactions efficiently· Willingness to learnFollow all procedures, policies, and practices· Ability to complete all required daily paperwork· Multi-task efficiently in a Fast-paced environment· Must have basic math & English communication skills as well as basic physical ability.· Must be legally able to work in Canada.Qualifications:Possess valid driver's licenseExcellent communication and organization skillsExcellent Interpersonal and customer service skillsTeam player and PunctualAbility to work well without supervisionEager and willing to learnMust have reliable transportation (Fuel is provided)Additional Incentives:Company Health Benefits (eligible after 90 days)We thank you for your interest in Tumbleweed General Store and remind all candidates that only successful applicants will be contacted. Based on equal qualifications, preference will be given to local candidates.Tumbleweed General Store follows all Covid 19 Public Health Measures, advice and restrictions.Job Types: Permanent, Full-timeSalary: $19.00 per hourBenefits:Dental careVision careShift:8 hour shiftDay shiftEvening shiftExperience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Fort McMurray, AB\"\n        },\n        {\n            \"id\": \"3544B1BC7CABA29FBC01F2701C4D6186\",\n            \"cityName\": \"72838 Bluewater Highway, Zurich, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3fe28f0fb30ad9db\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Mobil Gas Bar\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694504434292,\n            \"dateOfPosted\": 1687946765825,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4214787,\n                    \"lon\": -81.6256659\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Zurich\",\n                \"formattedAddress\": \"Zurich, ON N0M 2T0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Huron County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Zurich, ON Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"1. Opening or closing Gas station2. accounts3. Cleaning4. Loading unloading inventories5. ReportingJob Types: Permanent, Part-time, Full-timePart-time hours: 20-40 per weekSalary: From $15.50 per hourBenefits:On-site parkingDay range:HolidaysMonday to FridayWeekend availabilityFlexible Language Requirement:English not requiredShift:4 hour shift8 hour shiftAfternoon shiftDay shiftMorning shiftWork setting:Convenience storeCOVID-19 considerations:yes Ability to commute/relocate:ZURICH, ON: reliably commute or plan to relocate before starting work (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Zurich, ON\"\n        },\n        {\n            \"id\": \"94FFBF60C0BC18BB50FDF3B59C1F72C5\",\n            \"cityName\": \"8 Highland Dr, St. John's, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=12b0d2d1836b39de\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Ches's Fish And Chips\",\n            \"rowSalary\": \"From $14.75 an hour\",\n            \"date\": 1694503613577,\n            \"dateOfPosted\": 1692800026545,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.6068279,\n                    \"lon\": -52.7121564\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St. John's\",\n                \"formattedAddress\": \"Highland Dr, St. John's, NL A1A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Highland Dr, St. John's, NL\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full Job Descriptionwe are looking for someone energetic, have a flexible schedule, like a fast-paced environment, and can learn quickly, we want to hear from you!We are currently hiring a cashier with daytime and evening time availability (weekdays and weekends).Greet guests and advise on store's ordering products and services, handle transactions on POS terminal and process payments, maintain a clean environment for the guests (restock, clearing and cleaning of dining room area), perform all opening and closing duties.Job Type: Part-timePart-time hours: 20-40 per weekSalary: From $14.75 per hourBenefits:Dental careVision careDay range:Monday to FridayWeekends as neededShift:4 hour shift8 hour shiftAbility to commute/relocate:St. John'S, NL A1A 3C4: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Highland Dr, St. John's, NL\"\n        },\n        {\n            \"id\": \"0150587BAE669692F1FA0EB8F9D06DBD\",\n            \"cityName\": \"Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=319c557623f9a83a\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Budget Car & Truck Rental\",\n            \"rowSalary\": \"$18–$19 an hour\",\n            \"date\": 1694503147259,\n            \"dateOfPosted\": 1692777378138,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3193375,\n                    \"lon\": -124.3136411\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Parksville\",\n                \"formattedAddress\": \"Parksville, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Parksville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Quality Long Term Position AvailableBudget Car & Truck Rentals is now seeking a candidate to fill a Customer Service role in Parksville, BC. Shifts will involve working weekendsThis position offers:-A competitive salary with an excellent incentive program.-Stability and flexibility with a BC owned company that has been successful in business for over 50 years.-A comprehensive benefits program including extended health, dental, and life insurance.-A fast-paced, exciting role within a team of dedicated professionals who love to have fun at work.What we are looking for from you:-A high energy, positive attitude.-A team player who respects their coworkers and is driven by healthy competition.-Someone who is motivated to give the best customer service experience possible.-Strong computer skills and the ability to multitask.-Effective communication skills with both customers and colleagues alike.-Accountability and integrity paired with strong work ethic.-A valid BC Class 5 driver’s license or better with a clean driving record.-Previous experience in sales and customer service.If you’re interested in starting a long term career in this growing industry please email to this posting a copy of your cover letter and resume outlining your ability to meet or exceed the requirements above.Job Type: Full-timeSalary: $18.00-$19.00 per hourExpected hours: 40 – 45 per weekBenefits:Dental careDisability insuranceExtended health careLife insuranceRRSP matchFlexible Language Requirement:French not requiredSchedule:Monday to FridayWeekends as neededSupplemental pay types:Commission payAbility to commute/relocate:Parksville, BC: reliably commute or plan to relocate before starting work (required)Licence/Certification:BC Class 5 Drivers License or Better (preferred)Work Location: In person\",\n            \"location\": \"Parksville, BC\"\n        },\n        {\n            \"id\": \"2127E247E7E47B5EB8EAC037A415282E\",\n            \"cityName\": \"Revelstoke, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=15255c931f169340\",\n            \"jobName\": \"Clk 12r - Customer Service Representative\",\n            \"companyName\": \"Bc Public Service\",\n            \"rowSalary\": \"$52,803–$59,608 a year\",\n            \"date\": 1694503078100,\n            \"dateOfPosted\": 1694503077866,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.998115,\n                    \"lon\": -118.195672\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Revelstoke\",\n                \"formattedAddress\": \"Revelstoke, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Columbia-Shuswap\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Revelstoke\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 52803.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    52803.0\n                ],\n                \"range\": {\n                    \"gte\": 52803.0,\n                    \"gt\": null,\n                    \"lte\": 52803.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Posting Title  CLK 12R - Customer Service Representative  Position Classification  CLBC Clerk R12  Union  GEU  Work Options  On-Site  Location  Revelstoke, BC V0E 3K0 CA (Primary)  Salary Range  $52,803.18 - $59,607.79 annually  Close Date  9/25/2023  Job Type  Regular Full Time  Temporary End Date  Ministry/Organization  BC Public Service -> Citizens' Services  Ministry Branch / Division  Service Delivery/Service BC  Job Summary Apply your expertise and passion for innovation to this rewarding career opportunityMINISTRY OVERVIEWDedicated to making life better for British Columbians, the Ministry of Citizens’ Services (CITZ) delivers key services that people rely on. CITZ delivers accessible, multi-channel services, through a single-point-of-contact service approach to people in urban and rural communities through Service BC, and delivers the digital face of government at www.gov.bc.ca. CITZ also provides support for the expansion of high-speed internet connectivity throughout the province, leadership across government to modernize information management and technology resources, trusted data services to government agencies, prompt, and relevant responses to freedom of information requests, and statistical and economic research, information and analysis to businesses and the public sector. In addition, the ministry manages the Province’s real estate assets, technology systems and equipment, and leverages procurement to increase business opportunities and create rewarding jobs that contribute to local economies and benefit individuals, families, and communities.A service-focused organization, CITZ strives to be a great place to work, where all employees feel both engaged and motivated to do their best.DIVISIONAL OVERVIEWService BC is government’s chief provider of services to B.C. residents and businesses. The work of the division enables the design and delivery of accessible, responsive, and cost-effective services, making it easier for British Columbians and businesses to interact with government. Through a provincial network of 65 in-person offices and the Provincial Contact Center, Service BC provides approximately 300 government services for more than 40 partner ministries and agencies. Our team member’s unwavering commitment to an ethic of service has driven consistently high people and business satisfaction rates. In support of the division’s overarching goal of providing residents and businesses with seamless, multi-service access to government programs, the Division’s service offerings are marketed to partner ministries and the broader public sector to expand our continuum of services and leverage common platforms.Within Service BC, our vision is to deliver innovation, value, and service excellence to the people of British Columbia, with the aspirational goal of becoming a best-in-class public service delivery organization. Our people and our culture are important to us. As a team, we are motivated to deliver an excellent service experience to British Columbians, businesses, colleagues, peers, clients, and partners. We believe in being kind and helpful, and are committed to delivering “Service with Heart”.JOB OVERVIEWThe Service BC Customer Service Representative (CSR) maintains a positive, empathetic, and professional attitude when providing service and answering enquires. It requires the ability to identify and assess peoples’ needs to effectively and efficiently deliver an excellent customer service experience.The CSR provides services in-person, by phone, and through digital channels. The ability to provide clerical and administrative support such as data entry, reviewing applications for completeness, handling payments, and providing appropriate solutions, within government guidelines to a diverse population of people is essential to this role.Job Requirements:Minimum Grade 12 graduation or equivalent (GED).Experience providing inclusive customer service to diverse clienteles. Experience using digital applications to search for and record information. Preference may be given to applicants with one (1) or more of the following:Multiple years of experience in any of the above requirements.Experience providing in-person customer service.Experience providing customer service though phone or digital channels.Experience delivering customer service in a high volume, fast-paced, rapidly changing environment.Experience with conflict resolution and de-escalating situations.Experience providing services to a diverse population some of whom may be experiencing poverty issues, substance use, or mental health concerns.Experience maintaining administrative files and record keeping.Experience delivering service in a regulated or legislated environment following processes and procedures.Customer Service training and/or education.Experience handling financial transactions.Willingness Statements:Willingness to travel occasionally to provide relief coverage to other work sites (Service BC Centres, exam locations, etc.) Successful completion of security screening requirements of the BC Public Service, which may include a criminal records check, and/or Criminal Records Review Act (CRRA) check, and/or enhanced security screening checks as required by the ministry (Note: It is important that you read the job posting carefully to understand the specific security screening requirements pertaining to the position). For questions regarding this position, please contact melody.olsen@gov.bc.ca.About this Position: An eligibility list may be established to fill future temporary and permanent vacancies across the Ministry of Citizens' ServicesThis position has full time on-site requirements.Working for the BC Public Service:The BC Public Service is committed to creating a diverse workplace to represent the population we serve and to better meet the needs of our citizens. Consider joining our team and being part of an innovative, inclusive and rewarding workplace.The Indigenous Applicant Advisory Service is available to applicants that self-identify as Indigenous (First Nations, status or non-status, Métis, or Inuit) seeking work or already employed in the BC Public Service. For guidance on applying and interviewing, please contact IndigenousApplicants@gov.bc.ca or 778-405-3452.The BC Public Service is an award-winning employer and offers employees competitive benefits, amazing learning opportunities and a chance to engage in rewarding work with exciting career development opportunities. For more information, please see What We Offer.How to Apply: Your application must clearly demonstrate how you meet the job requirements listed above.Cover Letter: NO - Please do not submit a cover letter as it will not be reviewed.Resume: YES - A resume is required as part of your application, however, it may not be used for initial shortlisting purposes.Questionnaire: YES - You will need to complete a comprehensive questionnaire to demonstrate how you meet the job requirements. Include all relevant information about your educational accomplishments and employment history including job titles, start and end dates (month and year) of your employment, and how you obtained your relevant experience. The questionnaire will take approximately 60 minutes to complete.Helpful tips, videos and more regarding the application process can be found on the Your Job Application page of MyHR. If you are experiencing technical difficulty applying, e-mail BCPSA.Hiring.Centre@gov.bc.ca, before the stated closing time, and we will respond as soon as possible.Additional Information: A Criminal Record Check (CRC) will be required.Applicants selected to move forward in the hiring process may be assessed on the Knowledge, Skills, Abilities and Competencies as outlined in the attached Job Profile located at the bottom of the posting.Applications will be accepted until 11:00 pm Pacific Standard Time on the closing date of the competition. Job Category  Administrative Services \",\n            \"location\": \"Revelstoke, BC\"\n        },\n        {\n            \"id\": \"B11EB8D2B2D5FD117030BFEEEDACCE86\",\n            \"cityName\": \"128-998 Harbourside Dr, North Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b45ecffc545bdee9\",\n            \"jobName\": \"Customer Service/Barista\",\n            \"companyName\": \"Thomas Haas Chocolates & Patisserie\",\n            \"rowSalary\": \"$18–$19 an hour\",\n            \"date\": 1694501289710,\n            \"dateOfPosted\": 1694309885584,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"THOMAS HAAS Chocolates and Patisserie is looking for a FOODIE & COFFEE loving person to join our team!- Full-time: Tuesday to Saturday (40hrs/wk)Sundays & Mondays Closed (always have 2 set days off)Opening shift starts at 7:15amClosing shift ends around 7pm (giving you time for dinner with family & friends! :)- we are looking for someone who is hardworking, possess good multi-tasking skills, has attention to detail, enjoys engaging with people and is self-motivated- a good part of this job is talking with our customers & your co-workers - good listening skills & English comprehension are key!- we offer a competitive wage & shared tips- free beverages & meal while at work- extended health benefits (after one year full-time with us)- we hire people on work/travel visas (12 months)Your past customer service experience would reflect in your starting wage.*barista experience is an asset, but not necessary*Do you have a willingness to learn and expand your skill set?Do you enjoy working in a team?We would love to meet you if this sounds like an opportunity you would like to pursue!We will reach out to the candidates that are suitable.Job Types: Full-time, PermanentSalary: $18.00-$19.00 per hourJob Types: Full-time, PermanentSalary: $18.00-$19.00 per hourBenefits:Dental careDiscounted or free foodExtended health careStore discountVision careSchedule:8 hour shiftDay shiftSupplemental pay types:TipsAbility to commute/relocate:North Vancouver, BC: reliably commute or plan to relocate before starting work (required)Application question(s):How do you handle a stressful situation?Education:Secondary School (required)Experience:Customer service: 1 year (required)Language:and comprehend English really well (required)Licence/Certification:FoodSafe certification (required)Shift availability:Day Shift (required)Work Location: In personApplication deadline: 2023-09-23Expected start date: 2023-09-15\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"C0F42B93DCA53CCD20D6A2F9BBF6B612\",\n            \"cityName\": \"161 Conception Bay Highway, Bay Roberts, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ef7a3870aafbbb7b\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"A&W\",\n            \"rowSalary\": \"$13.70–$15.00 an hour\",\n            \"date\": 1694500763787,\n            \"dateOfPosted\": 1668042720848,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.6070238,\n                    \"lon\": -53.2868564\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bay Roberts\",\n                \"formattedAddress\": \"Conception Bay Hwy, Bay Roberts, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bay Roberts\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"BASIC FUNCTIONThe Cashier ensures an excellent experience for their guests by exceeding expectations and taking, assembling, and serving orders accurately. The Cashier cares for their guests first before anything else, delighting them with friendly and caring service that creates loyalty. The Cashier also ensures the dining room is kept clean and presentable, and contributes to achieving A&W operating standards for the restaurant.REQUIREMENTSYou will excel and find happiness in this job if you: Appreciate exceptional customer service – and knows what it takes to deliver this to every guest on every visit;Love learning – you’ll use online learning and hands on training to know how to prepare perfect food to standard recipes or customized for guests;Embrace change - and get excited to implement new innovation from A&W;Value flexibility – this includes availability to work flexible hours like early mornings, evenings, weekends, nights and/or holidays;Love working in a team – and together as partners to get the job done in a dynamic fast food environment.Education:Education is an asset, but no minimum requirementExperience:Experience is an asset, but no minimum requirementAbilities:Excellent guest serviceWorking as a teamMulti-taskingBasic mathematical skillsEffective communication skillsJob Types: Permanent, Part-time, Full-timeSalary: $13.70-$15.00 per hourBenefits:Discounted or free foodFlexible scheduleStore discountDay range:HolidaysMonday to FridayWeekend availabilityFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayNight shiftOvertimeWeekend availabilityShift:10 hour shift4 hour shift8 hour shiftDay shiftEveningsEvening shiftMorning shiftNight shiftSupplemental pay types:Bonus payOvertime payTipsCOVID-19 considerations:All staff are currently required to wear masks and additional cleaning and screening processes are in place.Work Location: In person\",\n            \"location\": \"Conception Bay Highway, Bay Roberts, NL\"\n        },\n        {\n            \"id\": \"D02AFE359B18009C31E2456E8E8A3FBA\",\n            \"cityName\": \"340 Ewen Ave., New Westminster, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1129b902c84cc991\",\n            \"jobName\": \"Customer Service And Shop Saw Operator\",\n            \"companyName\": \"Griff Building Supplies Ltd.\",\n            \"rowSalary\": \"$25 an hour\",\n            \"date\": 1694500441235,\n            \"dateOfPosted\": 1694239278617,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 25.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    25.0\n                ],\n                \"range\": {\n                    \"gte\": 25.0,\n                    \"gt\": null,\n                    \"lte\": 25.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Yard Customer Service / Shop Saw OperatorDuties and responsibilities Maintaining equipment necessary for your job. Cut lumber to specified lengths with efficiency in mind. Help customers and do yard clean up when there are no orders to be cut. Daily forklift check sheet to be filled out and given to yard lead.Follow established work policies and procedures and make suggestions for improvements to the yard lead.Participate in staff meetings and training as needed.Understand and follow WCB safety requirements and inform anyone in shipping of any safety issues.Assist with the training of new staff and promote a team mentality.Maintain and secure assigned tools and other equipment necessary to complete your job. Clean as you go. All weather sensitive products must be wrapped before shipment regardless of weather conditions.All other related duties.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"A14C6FFA7D2FFB4FE0A81D57F3B0AFC4\",\n            \"cityName\": \"2595 Main St, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=80112884d20796c4\",\n            \"jobName\": \"Customer Service And Sales Associate\",\n            \"companyName\": \"Fabutan And Hush Lash Studios\",\n            \"rowSalary\": \"$13.50–$18.00 an hour\",\n            \"date\": 1694499861762,\n            \"dateOfPosted\": 1673175770256,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.94461099999999,\n                    \"lon\": -97.111592\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Main St, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are proud to be Canada’s Largest Sunshine and Lifestyle Brand with 130 Locations!We are currently recruiting a sales and service associate for our Winnipeg Riverbend studio who is outgoing, self-motivated, has great sales ability, able to multi-task, quick to learn, consistent and passionate! We are also looking for someone who enjoys tanning, skin care, all the benefits of UV exposure and Vitamin D.APPLY NOW FOR OUR CUSTOMER SERVICE ASSOCIATE | LIFESTYLE EXPERT POSITION – PERSONAL AND WORKING INTERVIEWS WILL BE SCHEDULEDWhat we offer:Free Access to Services like Sunshine, Spray, Red Light Skin Rejuvenation, 40% Off Products for Personal Use, Staff pricing for Hush Lash Extensions, Fabutan and Smart Tan Cooperative Online and In-Studio Training, Ongoing Coaching to help ensure your success, Coaching on Personal Development and Relationship Building, Service Opportunity for Hush Lash Extension Training and Careers with Hush, Flexible hours to fit your busy schedule, full and part time opportunities, A positive, fun, and rewarding work environment with a growing company. For more information on opportunities visit www.fabutan.comIn addition:We offer Competitive Commissions on Products and Membership sales, paid monthly. Part-Time Hourly Rate starts at $13.50 per hour and you have the opportunity to earn $2-$5 more per hour in bonuses. Opportunities for raises and advancement based on performance.What you offer:No experience is necessary but sales experience is an asset. Fantastic customer service, an amazing work ethic and the passion to give our guests the best experience on each and every one of their visits. Positivity, enthusiasm to learn and desire to help educate our guests on products and services. Ability to multitask and maintain a clean, attractive and comfortable studio at all times.About us:Fabutan established in 1979 and currently offers 130 locations Canada Wide to serve our guests. We offer a proprietary blend of UVA and UVB in our lamps to imitate natural sunlight as closely as possible. It is our principle to change our lamps every 500 hours to give our guests the best results, we guarantee a tan in 300 minutes or less! We offer Sunshine, Spray Tanning, Red Light Skin Rejuvenation and have an Exclusive Partnership with Hush Lash Studio. Our Lifestyle Experts are fully trained, certified and strive to provide the most immaculate sunshine beds you've ever experienced. All in an atmosphere that is fun and relaxed.If you are a fun-loving, happy person and you think this all sounds good, then please send us your resume with a cover letter, and we would love to meet you!Job Types: Full-time, Part-timeSalary: $13.50-$18.00 per hourJob Types: Full-time, Part-timePart-time hours: 10-15 per weekSalary: $13.50-$18.00 per hourBenefits:On-site parkingStore discountDay range:Weekend availabilityFlexible Language Requirement:French not requiredShift:Day shiftEvening shiftExperience:sales: 1 year (preferred)customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In personExpected start date: 2023-01-14\",\n            \"location\": \"Main St, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"1971C3C4BC5155B9F1D65EB21CDC748D\",\n            \"cityName\": \"1538 Rue Sherbrooke O, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1d6a12ecbc593993\",\n            \"jobName\": \"Call Center Agent\",\n            \"companyName\": \"Vm-Med\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694499615268,\n            \"dateOfPosted\": 1668689593252,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4815979,\n                    \"lon\": -73.6004244\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Sherbrooke O, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CALL CENTER AGENTDEPARTMENT Breast Center – Appointment CenterEMPLOYMENT STATUS Permanent, Full-time – 40 hours per weekBENEFITS Vacation, Flex Days, Group InsuranceSUPERVISOR Supervisor, Call CenterWe are looking for a dynamic individual, with an interest in helping our patients understand the service offering of our clinic, and ultimately helping to schedule appointments with our physicians.The primary responsibilities of the Call Center Agent will be the following:Aid patients in gaining a complete understanding of our clinic service offering, including information regarding pre-appointment procedures and fee structureAnswer to patient inquiries (telephone, email or web chat)Create and update patient files in the electronic medical record, MedeSyncSchedule patient appointments with our physiciansAdditional responsibilities include:Uploading (scanning) medical results and/or referrals into respective patient’s electronic medical recordPeriodic re-booking or re-organization of physician schedulesConducting outbound calls to follow-up on various advertising campaignsRequirements:Bilingual with a Bachelor’s DegreeProficiency in MS Outlook, MS Word and MS ExcelKnowledge of MedeSync is an assetStrong interpersonal and communication skills, and exceptional organizational skillsAbility to take initiative, work independently and with minimal supervision and demonstrated ability to work in a small team settings-------------------------------------------------------AGENT DU CENTRE D’APPELSDÉPARTEMENT Centre du sein – Centre de rendez-vousSTATUT D’EMPLOIS Permanent, temps plein – 40 heures par semaineAVANTAGES Vacances, jours flexibles, assurance collectiveSUPERVISEUR Superviseur, Centre de rendez-vousNous recherchons une personne dynamique, intéressée à aider nos patients à comprendre l'offre de services de notre clinique, et à les aider à prendre rendez-vous avec nos médecins.Les principales responsabilités de l’agent du centre d’appels seront les suivantes:Aider les patients à acquérir une compréhension complète de l'offre de services de notre clinique, y compris des informations concernant les procédures préalables au rendez-vous et la tarification;Répondre aux demandes de renseignements des patients (téléphone, courriel ou chat en ligne);Créer et mettre à jour les dossiers des patients dans le dossier médical électronique, MedeSync;Planifier les rendez-vous des patients avec nos médecins;Les responsabilités supplémentaires comprennent:Téléchargement (numérisation) des résultats médicaux et/ou des références dans le dossier médical électronique du patient;Réorganisation périodique de la journée des médecins;Effectuer des appels sortants pour assurer le suivi de diverses campagnes publicitaires;ExigencesBilingue avec un baccalauréat est préférableMaîtrise de MS Outlook, MS Word et MS Excel.Connaissance de MedeSync serait un atoutFortes compétences interpersonnelles en communication et en organisationApte à prendre des initiatives et à travailler de manière autonome avec un minimum de supervision; aptitude démontrée à travailler au sein d’une petite équipeType d'emploi : Temps plein, PermanentSalaire : à partir de 18,00$ par heureAvantages :Assurance Maladie ComplémentaireÉvénements d'EntrepriseHoraires flexiblesHoraires de travail :8 HeuresEducation:DCS / DEC (preferred)Language:French (required)English (required)Lieu du poste : En présentielDate de début prévue : 2022-11-14\",\n            \"location\": \"Sherbrooke Street West, Montréal, QC\"\n        },\n        {\n            \"id\": \"77EF1B511BF1F3063FFED30E3CF8AE8A\",\n            \"cityName\": \"228 12c St N, Lethbridge, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b1d8f734d4475037\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Group Maxvizer\",\n            \"rowSalary\": \"$55,000–$60,000 a year\",\n            \"date\": 1694498259746,\n            \"dateOfPosted\": 1694207946604,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 55000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    55000.0\n                ],\n                \"range\": {\n                    \"gte\": 55000.0,\n                    \"gt\": null,\n                    \"lte\": 55000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service role handles calls from new and existing business clients regarding a variety of requests in an efficient and effective manner. A successful rep uses knowledge of products and services and excellent customer service skills to address issues, provide support, offer information, and place orders to keep customers satisfied and retain business. We are looking to hire immediately and we hope to see all 1st year employees receive a promotion between 6 months and 1 year of tenure.The Perks:Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingRequirements:An upbeat, positive attitudeWillingness to go that extra mile for your team and our customersMath/Accounting skills are a plus!Must have experience with Microsoft/ExcelPrior customer service/sales experience is a plusEssential Functions:Book zoom meetings and educate/troubleshoot questions with clienteleWork cooperatively between customers, service providers and other departmentsCommunicate with customers and vendors in a clear, effective, and professional mannerReceive customer inquiries, issues, or challenges and follow-through to resolutionBasic filing and data entryJob Types: Full-time, PermanentSalary: $55,000.00-$60,000.00 per yearBenefits:Automobile allowanceCommuter benefitsDental careEmployee assistance programExtended health careHousing allowanceOn-site parkingProfit sharingWellness programFlexible Language Requirement:French not requiredSchedule:Day shiftSupplemental pay types:Bonus payCommission payOvertime payRetention bonusSigning bonusTipsEducation:Secondary School (preferred)Work Location: Hybrid remote in Lethbridge, AB T1H 2M7\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"CEC02E4D6D0EA8A85DB9D97667801F12\",\n            \"cityName\": \"12 Dominion Cres, Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0e1734e291c111d3\",\n            \"jobName\": \"Tire Wholesale Customer Service Representative\",\n            \"companyName\": \"Andy's Tire | Scotia Tire\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694496805213,\n            \"dateOfPosted\": 1691541130021,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6421211,\n                    \"lon\": -63.6878682\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Beechville\",\n                \"formattedAddress\": \"Dominion Crescent, Beechville, NS B3T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dominion Cres, Halifax, NS\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ENJOY A PERMANENT, FULL TIME POSITION WITH ALL BENEFITS IN ATLANTIC CANADA'S FASTEST GROWING TIRE WHOLESALE BUSINESSAPPLICANTS MUST CURRENTLY RESIDE IN THE HRM AREA OF NOVA SCOTIAThe Wholesale Customer Service Representative is responsible for managing 3 tire distribution centers, customer complaint resolutions, processing orders to the distribution center.Key Accountabilities· Provide a high level of customer service in line with our company goals· Support and communicate sales prospect to our wholesale division.· Resolve customer complaint and inquiries.· Maintain a sales call calendar and attend monthly sales meetings.· Follow the training provided and mentor fellow teammates to foster a learning environment.· Maintain a high level of professionalism to represent a positive company image.Requirements· Experience in customer service or sales.· Experience in the automotive industry.· Strong knowledge of Microsoft Office products, including Excel, MS Word, office 365, and Outlook.· Excellent verbal, written communication and influencing skills.· High level of accuracy and attention to detail.· Ability to work in a fast-paced working environment.· Experience with ERP, CRM, or data management systems.· Team player attitude.· Prompt and courteous.· Enthusiastic personality.Job Types: Permanent, Full-timeSalary: From $18.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingStore discountVision careSchedule:8 hour shiftMonday to FridayWeekends as neededCOVID-19 considerations:All Covid-19 precautions are being adhered toExperience:customer service: 5 years (required)Tire/Auto Industry: 2 years (required)Language:French (preferred)Licence/Certification:Halifax area home address (required)Work Location: In person\",\n            \"location\": \"Dominion Cres, Halifax, NS\"\n        },\n        {\n            \"id\": \"01E378DB6801BA288F0C9B00EED88000\",\n            \"cityName\": \"7715 Cumberland St, Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=70fa76f12c973870\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Samimi Enterprise\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694496250638,\n            \"dateOfPosted\": 1694294695772,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Need a honest, reliable male person for job of a cashier at the convenience storeHigh school educationNo experience needed. Training will be givenJob Type: Part-timePart-time hours: 17 per weekSalary: $16.75 per hourFlexible Language Requirement:French not requiredShift:4 hour shiftAfternoon shiftEvening shiftWork setting:Convenience storeWork Location: In personExpected start date: 2023-09-15\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"ED9F0A321C34A02F9B75223C60159940\",\n            \"cityName\": \"ALLEN'S ONE STOP in Grand Bay East, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=49e28ad4c84c5bb6\",\n            \"jobName\": \"Cashier Customer Service Representative\",\n            \"companyName\": \"Allen'S One Stop\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694496222913,\n            \"dateOfPosted\": 1689721636502,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.5853063,\n                    \"lon\": -59.16756650000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Channel-Port aux Basques\",\n                \"formattedAddress\": \"Grand Bay East, Channel-Port aux Basques, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grand Bay East, NL Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usALLEN'S ONE STOP is a small business in Grand Bay East, NL A0N 0C2. We are professional, agile, and our goal is to PROVIDE THE BEST CUSTOMER SERVICE IN A CLEAN WORKING ENVIRONMENT.Our work environment includes:Flexible working hoursOn-the-job trainingWe are looking for a friendly and reliable Customer Service Associate / Cashier to join our team. The successful candidate will be responsible for greeting customers, providing assistance with product selection, processing payments, and ensuring that the store is clean and organized. The ideal candidate will have excellent customer service skills, a positive attitude, and an ability to work in a fast-paced environment.Responsibilities:Greet customers in a friendly and professional manner.Assist customers with inquiries and purchases.Process payments and refunds accurately and efficiently.Maintain a clean and organized work area.Follow store policies and procedures regarding customer service, cash handling, and safety.Provide excellent customer service to ensure customer satisfaction.Job Type: Full-timeSalary: From $15.50 per hourBenefits:Dental careVision careFlexible Language Requirement:French not requiredShift:8 hour shiftWork setting:Convenience storeAbility to commute/relocate:Grand Bay East, NL A0N 0C2: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Grand Bay East, NL\"\n        },\n        {\n            \"id\": \"4080E730EE37FB1B3E23DD13BBA84CD2\",\n            \"cityName\": \"218 Industrial Park Crescent, Sault Ste. Marie, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=52a3ce7ea83e2ec0\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Superior Tile & Floor\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694495624252,\n            \"dateOfPosted\": 1668799819872,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.5136494,\n                    \"lon\": -84.33575259999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sault Ste. Marie\",\n                \"formattedAddress\": \"Sault Ste. Marie, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Algoma District\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sault Ste. Marie, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Duties of the successful candidate-providing exceptional customer service and sales to customers in choosing flooring for their homes, some flooring knowledge would be an asset, great communication skills, some Sage knowledge, organize show room, purchasing, receiving orders, other duties assigned. Must be organized, have time management skills, and be able to multi-task.Job Type: Full-timeSalary: $16.00-$20.00 per hourBenefits:Dental careVision careSchedule:8 hour shiftAbility to commute/relocate:Sault Ste. Marie, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Sault Ste. Marie, ON\"\n        },\n        {\n            \"id\": \"D96C710CEB1BF5F7C271B9EFB06D5791\",\n            \"cityName\": \"2000 Boul Saint-Régis, Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a4ebcaa3d0fa6d7f\",\n            \"jobName\": \"Customer Service Representative/Inside Sales\",\n            \"companyName\": \"Amacor\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694494766841,\n            \"dateOfPosted\": 1691600918313,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.488025,\n                    \"lon\": -73.7817139\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Boul Saint Régis, Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer service representative / Inside Sales:Amacor is seeking a dynamic, detailed orientated CSR/Inside sales Representative.Located in the West Island close to Highway 40 and Blvd Des Sources.Amacor provides its clients with full-service garment embellishment that includes Silk-screening, Embroidery, Patches and a host of Digital technologies.Responsibilities:Responding promptly to customer inquiriesCollaborate with several departments to address client’s needsEnsure to have all required information to process ordersPrepare quotes, input information and process ordersOrder entry into CRM databaseKeeping records of customer interactions, transactions and commentsAssist sales team with administrative dutiesFollow-up on order statusAnswer customer inquiries about orders via phone or emailSkills:High school diploma or equivalent2 years related work experience preferredBilingual (fluent French and English both written and verbal)Great communicator in person and via telephone and emailProblem solver-ConfidentTeam player as it is a collaborative open environmentMust work well under pressure in a fast-paced environmentAbility to prioritize many tasksComputer skills: Excel-Outlook-WordReprésentant du service à la clientèle / Ventes internes :Amacor est à la recherche d'un représentant RSE/ventes internes dynamique et détaillé.Situé dans le West Island près de l'autoroute 40 et du boulevard Des Sources.Amacor fournit à ses clients un service complet d'embellissement de vêtements qui comprend la sérigraphie, la broderie, les écussons et une multitude de technologies numériques.-------------------------------------------------------------------------------Représentant du service à la clientèle / Ventes internes :Amacor est à la recherche d'un représentant RSE/ventes internes dynamique et détaillé.Situé dans le West Island près de l'autoroute 40 et du boulevard Des Sources.Amacor fournit à ses clients un service complet d'embellissement de vêtements qui comprend la sérigraphie, la broderie, les écussons et une multitude de technologies numériques.Responsabilités:- Répondre rapidement aux demandes des clients- Collaborer avec plusieurs départements pour répondre aux besoins des clients- S'assurer d'avoir toutes les informations nécessaires pour traiter les commandes- Préparer les soumissions, saisir les informations et traiter les commandes- Saisie des commandes dans la base de données CRM- Tenir des registres des interactions, des transactions et des commentaires des clients- Assister l'équipe de vente dans les tâches administratives- Suivi de l'état des commandes- Répondre aux demandes des clients sur les commandes par téléphone ou par courrielCompétences:- Diplôme d'études secondaires ou équivalent- 2 ans d'expérience de travail connexe préférable- Bilingue (français et anglais courants tant à l'écrit qu'à l'oral)- Excellent communicateur en personne et par téléphone et courriel- Résolveur de problèmes - Confiant- Avoir un esprit d'équipe car il s'agit d'un environnement collaboratif ouvert- Doit bien travailler sous pression dans un environnement en évolution rapide- Capacité à prioriser de nombreuses tâches- Compétences informatiques: Excel-Outlook-WordBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingSchedule:8 hour shiftMonday to FridayEdit jobOpenView public job pageJob Types: Permanent, Full-timeSalary: $18.00-$22.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Boul Saint-Régis, Dorval, QC\"\n        },\n        {\n            \"id\": \"0D2F6D720E596778BB6FF8EAD51B6745\",\n            \"cityName\": \"130-144 Martin Ross Ave, North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8aaa172cf93cd7de\",\n            \"jobName\": \"Customer Service/Order Fulfillment\",\n            \"companyName\": \"Tinlids Inc.\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694494753333,\n            \"dateOfPosted\": 1694494753148,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7739731,\n                    \"lon\": -79.474792\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Martin Ross Ave, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"If you are interested in the world of Children’s Literature, this is the place to work! Tinlids is a Canadian children’s and young adult bookseller dedicated to providing exceptional selection and acquisition expertise to Canadian schools, public libraries and parents. We have a large warehouse in North Toronto. Visit our website for more details, tinlids.caThe successful candidate will be part of a team involved in picking, packing, and shipping book orders for schools and libraries, for the largest reading program in Canada. Training is provided. This position is a 3-month contract, with the possibility of being hired full time permanent.Requirements:Fluency in verbal/written EnglishPhysically fit, able to lift boxes of up to 45 lbs.Ability to work some weekends and evenings on short-noticeOther skills that would be an asset:Exceptional customer service skillsProfessional telephone mannersStrong computer skillsAvailability to attend out-of-town events (1-2 days, some overnight)Drivers licence/own carStart date: October 10, 2023Inclusion & DiversityTinlids is an equal opportunity employer with a commitment to hiring and retaining a diverse workforce. We encourage and welcome applications from all intersectional walks of life.Job Types: Full-time, ContractContract length: 3 monthsSalary: $19.00 per hourBenefits:On-site parkingSchedule:Monday to FridayWeekends as neededWork Location: In personExpected start date: 2023-10-10\",\n            \"location\": \"Martin Ross Ave, Toronto, ON\"\n        },\n        {\n            \"id\": \"0654250F400EF169CEE032C80AAB0C76\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8163ed4f70b86285\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"Helping Hands Family Movers Inc\",\n            \"rowSalary\": \"$23.50 an hour\",\n            \"date\": 1694494572319,\n            \"dateOfPosted\": 1693648335072,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Arrange for refunds and credits Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Receive and log complaints Receive credit and employment applications Receive payments Sell merchandise Advise clients on advertising or sales promotion strategies Answer written and oral inquiries Assist in the preparation of brochures, reports, newsletters and other material Computer and technology knowledge MS Excel MS Outlook MS Windows MS Word MS PowerPoint Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Judgement Screening questions Are you currently legally able to work in Canada?Work Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"85E543801555750EBF86ACC2E5C5CED0\",\n            \"cityName\": \"MedicVan Patient Transfer Services Inc. in Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=31ff2d1c51bc1198\",\n            \"jobName\": \"Dispatcher/Customer Service\",\n            \"companyName\": \"Medicvan Patient Transfer Services Inc.\",\n            \"rowSalary\": \"$23–$24 an hour\",\n            \"date\": 1694494504223,\n            \"dateOfPosted\": 1670374159886,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.798329,\n                    \"lon\": -79.5079073\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Concord, Vaughan, ON L4K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"MedicVan Patient Transfer Services Inc. is a privately owned and operated Canadian company with over 19 years of experience in non-emergency patient transportation. We operate in Toronto and theGTA and specialized in bed to bed stretcher or wheelchair transportation services.Position: Weekend Dispatcher Qualifications and skills required: - High school graduation- Excellent verbal and written English- Kind, friendly, accommodating, willing to help personality- Excellent customer service experience and communication skills- Professional telephone manner- Ability to multitask- Good organization and time management skill- Stress management skill and ability to work under pressure- Knowledge of Mc Office, Excel and Outlook- Knowledge of the city of Toronto and the GTA- Knowledge of internet use, Google Map use- Dispatching experience in trucking, taxi or similar industry would be preferred- Experience in Logistics would be preferredDuties and Responsibilities:- Answering multiple phone calls- Schedule bookings and forward information to crew members- Respond to costumer’s inquiries, by email or over the phone- Ensure crews are on scheduled time- Communicate with clients, hospitals and other health care facilities in a timely and professional manner- Follow up calls with existing client- Prepare paperwork for crews- Scheduling crews- Faxing, mailing, emailing- Other office and clerical duties as neededIf you think you are right for our team, send your application to us by email.Job Types: Part-time, PermanentPart-time hours: 15-20 per weekSalary: $23.00-$24.00 per hourBenefits:On-site parkingFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftDay shiftHolidaysMorning shiftWeekends onlyAbility to commute/relocate:Concord, ON: reliably commute or plan to relocate before starting work (required)Experience:dispatching: 3 years (required)Work Location: In person\",\n            \"location\": \"Concord, ON\"\n        },\n        {\n            \"id\": \"36306495A5798D96EAE479D3AE09914E\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e2a9d8f9465f4fab\",\n            \"jobName\": \"Telus Customer Service Representative - Entry Level Field Marketing\",\n            \"companyName\": \"Alarm Guard Security Services Inc.\",\n            \"rowSalary\": \"$50,000–$60,000 a year\",\n            \"date\": 1694494168155,\n            \"dateOfPosted\": 1694494167959,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Alarm Guard has been helping protect thousands of families since 2003. We are a well-respected company with the support of the most trusted name in North America – ADT Security and now a TELUS trusted provider. Our goal is to provide customers, with a premiere service experience from start to finish. From our honest and friendly representatives to our licensed and trained technicians we commit to doing our best to make sure customers are taken care of – above and beyond.Join Alarm Guard Security, the largest TELUS trusted provider in North York, Toronto. We offer promotional Telus Smart Home protection systems and Telus Telecommunication solutions at no cost to selected clients. We are seeking highly motivated and passionate individuals to join our dynamic Sales & Marketing team.What you will do:Travel across different locations in Toronto and Ontario with a company-provided vehicle. Communicate the value of safety and security to customers. Review customer requirements and provide consultative solutions. Advise and recommend home automation and protection needs. Stay knowledgeable about products and services. Identify customer needs and execute effective strategies. Build positive relationships with colleagues.CompensationInitially compensation will be based on performance in the Field and determined by the number of sales closed by your Team Leader. After your first 8 sales within a 30 - 45 days time period, you will be eligible for BONUSES and the positions of Field Manager (no driver's license needed) or Manager (G2/G driver's license preferred): Yearly package ranging between $50k-$60k /year (base pay + commissions) once you are promoted to these rolesRequirements during training:Available Monday to Friday from 1:00 PM-9:00 PM. (Full-Time Position) An individual with a strong passion for sales. (Future Entrepreneur) A natural ability to communicate confidently. Highly skilled in utilizing company-issued iPhones, iPads, and CRM systems to effectively manage and record daily sales activities. Possesses outstanding interpersonal abilities and excels in providing exceptional customer service.Benefits:Extensive training and career growth opportunities. Travel opportunities. Tools for success: iPad, Business cards, Telus Branded clothing, ID badge, Salesforce CRM. Uncapped bonuses and incentives. Fun and lively work culture with office facilities.Join us and achieve your goals! Apply now.\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"1DA29D21E89276726A0508240B2FF9A0\",\n            \"cityName\": \"1129 Wentworth Street West, Oshawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7be2227addadedbe\",\n            \"jobName\": \"Inside Sales/Customer Service\",\n            \"companyName\": \"Aartech Canada Inc\",\n            \"rowSalary\": \"$35,000 a year\",\n            \"date\": 1694493604734,\n            \"dateOfPosted\": 1694493604546,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.869777,\n                    \"lon\": -78.8525106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oshawa\",\n                \"formattedAddress\": \"Wentworth St W, Oshawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oshawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Aartech Canada is looking for a confident, outgoing, tenacious and professional personality to join our team as an inside sales representative! This is a B2B position making warm and cold calls to existing clients, developing new leads, providing stellar customer service, providing quotations, processing customer orders and aiding in product selection.Based in Oshawa, and in business since 2002, Aartech Canada distributes smart home & security products across Canada. We sell a wide range of smart home automation equipment, security systems, security cameras, audio/video equipment as well as electrical products and lighting controls.The ideal candidate will have existing B2B sales experience and a proven track record of sales success with a technical aptitude. You must be a fast learner, self starter, technically inclined, and be motivated to learn everything you can about our customers and products lines. Bilingual (French/English) is an asset.We offer a competitive salary and benefits with a no-cap commission incentive.SALARY + COMMISSIONJob Type: Full-timeSalary: $35,000.00 per yearBenefits:Casual dressDental careLife insuranceOn-site parkingPaid time offStore discountVision careSchedule:8 hour shiftDay shiftMonday to FridaySupplemental pay types:Commission payAbility to commute/relocate:Oshawa, ON L1J 8P7: reliably commute or plan to relocate before starting work (required)Application question(s):Why are you the ideal candidate for this position?Experience:Sales: 1 year (preferred)Customer Service: 1 year (preferred)Work Location: Hybrid remote in Oshawa, ON L1J 8P7Expected start date: 2023-09-25\",\n            \"location\": \"Wentworth Street West, Oshawa, ON\"\n        },\n        {\n            \"id\": \"34A0F493E1DDAD84D3EE3EC1F8628EED\",\n            \"cityName\": \"1000 Alexander Ave, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=219b09472ef66b8a\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Bakemark\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694493578230,\n            \"dateOfPosted\": 1694493578059,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.911896,\n                    \"lon\": -97.1687074\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Alexander Ave, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"PURPOSE OF THE JOBProvides Customer Service to all customers or to a specific customer base/territory. In a hands on fashion, assists the outside sales force with sales-related issues and/or inquiries and follows BakeMark’s guiding principals of Best Practice process improvements and cultural attitude to meet or exceed objectives.This is accomplished by performing the following principle/essential accountabilities:PRINCIPAL/ESSENTIAL ACCOUNTABILITIES1. INSIDE SALES- Provide exceptional Customer Service in accordance with policies, guidelines, and procedures established by Executive Management.- Takes customer orders via phone and fax, and enter orders into company software.- Invoices orders throughout the day, as required.- Works with the Customer Service/Office Supervisor to respond to customer issues, e.g. short shipments, rush deliveries, etc.- Consistently increases personal knowledge of new and existing items, customers, pricing, routing, specials and sales techniques.- Participates in call-out programs, as required.- Upsells to all customers in an effort to increase sales.- Communicates in an efficient manner with the operations department / warehouse staff regarding truck routing, delivery schedules and order preparation.- Assists in coordinating key customer accounts on a daily basis to ensure service levels are maintained at the highest levels.2. CUSTOMER FOCUS- Maintains personal relationships with key accounts. Maintains a proactive, visible relationship with entire customer base.- Follows up on all customer requests and questions to ensure appropriate response is made and customer is satisfied.- Treats all customers (both internal and external) with dignity, respect, courtesy and kindness.- Accepts responsibility to consider how actions affect our customers and our company.3. PERFORMS OTHER DUTIES AS ASSIGNEDQUALIFICATIONSThe individual must be able to perform each principle and essential accountability satisfactorily. Customer Service experience and a proven track record in delivering results is expected, and a thorough knowledge and ability to read, interpret, and understand product information is desirable. The ability to transfer oral information to a written form accurately is an absolute requirement. A positive attitude is a must. Needs ability to be a part of an effective team.Prior experience should be in bakery ingredients or food-related business. Beverage industry experience may apply. Previous customer service roles are beneficial. Ability to interact effectively at all organization levels is required. Computer skills are required. A well-rounded lifestyle and sense of humor, with an appreciation for diversity can be advantageous. Unquestionable ethical conduct in both business leadership and personnel dealings are an absolute requirement.Ability to define and resolve problems, collect data, establish facts, and draw valid conclusions.EDUCATION and/or EXPERIENCEHigh School degree required, with five to seven years of related experience and/or training.COMMUNICATION SKILLSAbility to read and understand product information and use this knowledge to provide information to customers. Ability to effectively present information and respond to questions from groups of executives, managers, clients, customers, and the general public.PHYSICAL DEMANDS/ENVIRONMENTThe physical demands described herein are representative of those that must be met by an employee to successfully perform the essential functions of this job. Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions. While performing the duties of this job, the employee is regularly required to sit, talk, and hear. The employee is occasionally required to stand; walk; use hands to write and use a computer keyboard. Specific vision abilities required by this job include close vision, distance vision, and ability to adjust focus. The noise level in the work environment is usually moderate.Job Types: Full-time, PermanentSalary: From $18.00 per hourBenefits:Dental careExtended health careOn-site parkingPaid time offVision careSchedule:8 hour shiftDay shiftMonday to FridayEducation:Secondary School (preferred)Experience:Customer service: 2 years (preferred)Shift availability:Day Shift (required)Ability to Commute:Winnipeg, MB R3E 3M1 (required)Work Location: In person\",\n            \"location\": \"Alexander Ave, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"BD835D0F151CD0750F9FE6C0B0D96D33\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ee1f3f3404f07e1e\",\n            \"jobName\": \"Customer Service/Admin Support\",\n            \"companyName\": \"Allstyle Retrofit\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694493492686,\n            \"dateOfPosted\": 1694493492496,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service / Administrative Support:Allstyle Retrofit is a Canadian leader in the kitchen cabinet door retrofit business and is looking to add a Customer Service / Admin Support associate to our growing team.The ideal candidate will focus on supporting the team with great customer service, assisting with office administration duties, providing after sales support to our valued customers and applying strong communication skills throughout every task.Responsibilities include:Providing help and assistance to customers using Allstyle’s products or servicesCommunicating courteously with customers by telephone, email and in-personProviding assistance and support to resolve customers' challengesKeeping accurate records of discussions or correspondence with customers; entering records into the CRMImproving customer service procedures, policies and standards and working with management to discuss possible improvements to customer serviceProcessing invoices and receiving payments from customersPerforming general administrative tasks as requiredQualifications:A strong command of the English language with effective communication skills and professionalismSales and customer service orientedProven track record of meeting and exceeding customers' expectationsSense of urgency with diligent follow up skillsAbility to thrive under pressure and in a fast-paced environmentProblem solving and time management skillsExcellent computer skills in MS ExcelInterest and experience in the kitchen and cabinet industry an assetMinimum 3 years of experience is required; experience in kitchen, cabinetry and design an assetWork Hours: M-F 9-5Compensation: Hourly compensation / team bonusJob Types: Full-time, PermanentJob Type: Full-timeSalary: $20.00-$24.00 per hourSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payExperience:customer service: 3 years (preferred)Language:Fluent English (required)Work Location: In person\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"271AF5B73F13BEC6FEA76BE59D17362B\",\n            \"cityName\": \"Ajax, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6d8f56be293c41ab\",\n            \"jobName\": \"Customer Service And Fulfillment Coordinator\",\n            \"companyName\": \"Tiabhuva.com\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694493473174,\n            \"dateOfPosted\": 1694493472992,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8508553,\n                    \"lon\": -79.0203732\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ajax\",\n                \"formattedAddress\": \"Ajax, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ajax\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ResponsibilitiesAssist with customer service ticketsAccurately prepare and complete orders for delivery or pickup according to schedule (load, pack, wrap, label, ship)Organize stocks and maintain inventoryTrain additional support staff that are needed during peak periodsContribute ideas on ways to improve or optimize proceduresRequirements * Good organisational and time management skillsExcellent communication skillsTeam playerBasic computer skills ie Word, Excel, Web BrowserHigh school diploma or equivalentThis is an entry level (all training will be provided) Full time position paid hourly ($15-$20/hr depending on experience) based in Ajax, ON.Job Types: Full-time, PermanentSalary: $18.00-$20.00 per hourSchedule:8 hour shiftDay shiftMonday to FridayEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In personApplication deadline: 2023-09-22Expected start date: 2023-10-02\",\n            \"location\": \"Ajax, ON\"\n        },\n        {\n            \"id\": \"E7DB7D0786CD1721210B3BD4C67DBAE8\",\n            \"cityName\": \"3006 Boul St Charles, Kirkland, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a8c37dcf1a095e99\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Poke Monster\",\n            \"rowSalary\": \"From $14 an hour\",\n            \"date\": 1694493127205,\n            \"dateOfPosted\": 1633262844269,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4542258,\n                    \"lon\": -73.8606454\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kirkland\",\n                \"formattedAddress\": \"Bd Saint-Charles, Kirkland, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kirkland\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"HIRING FULL TIME OR PART TIMEWe are looking for Kitchen Helper/Counter Attendants, who are hard-working, dedicated, and willing to learn in the kitchen!Take customer orders, accept payment and serve customers at food counters. They may also prepare, heat, and finish cooking simple food items.- Use a cash register to take customer orders- Answer customer questions about menu items and serve customers at counters- Ensure excellent packaging- Maintain the store cleanJob Types: Full-time, Part-time, PermanentSalary: From $14.00 per hourBenefits:Discounted or free foodSchedule:10 hour shift12 hour shift8 hour shiftDay shiftMonday to FridayNight shiftWeekend availabilitySupplemental pay types:TipsWork remotely:No\",\n            \"location\": \"Boul Saint-Charles, Kirkland, QC\"\n        },\n        {\n            \"id\": \"741F3472EA79FC2221D5871A36312F83\",\n            \"cityName\": \"Riverview, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6016e8f399808b03\",\n            \"jobName\": \"Call Center Agent\",\n            \"companyName\": \"Epsilon Solutions\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694492129977,\n            \"dateOfPosted\": 1656368391861,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.06125369999999,\n                    \"lon\": -64.80521829999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Riverview\",\n                \"formattedAddress\": \"Riverview, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Albert County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Riverview\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Title: English- Customer Care RepresentativeLocation: Riverview, NBJob Type: FulltimeJob Description:No of Week Off (Fixed or Rotational) - 2 (Rotational)WFO / WFH / Hybrid – WFH & WFOShift Timings (Fixed or Rotational) - 8,5 hour shiftHours of operation 7 AM EST to 12 AM EST ( rotational)Customer Service Associate required to answer incoming calls from customers who need assistance placing orders, seeking information or who have service related inquiries.Daily tasks and responsibilities:Customer service oriented mindsetAbility to work with multiple computer programs operating simultaneously, including Microsoft Word and Excel.Able to type a minimum of 30 words per minute.Understands the needs of the luxury goods consumer and be able to implement Company’s customer service policy in a personalized manner.Utilize appropriate sales techniques to build good customer relationships and enhance the buying experience for the customer.Provide assistance when clients are ordering furniture or appliances.Set appropriate expectations for the customer and exceed customer commitments.Follow-up on issues for customers until resolution is reached.Follow the scripts provided by the CompanyRespond in an unscripted manner, thus allowing individuals to successfully resolve all customer issues, which necessitates that each such Agent demonstrate patience, empathy, sound judgment, negotiation and balanced decision making skills. Supplier shall ensure that Agents contribute a positive, energetic and organized approach to performing the Services.Requirements/experience: Previous call center experience in a contact center is an assetFluent (reading, writing, speaking) in English and French as required by the positionAbilities and talents recommended for job success:Excellent organizational skillsExcellent communication skills, including written and verbal.Demonstrated analytical skills; proven problem solving abilities.Strong interpersonal skills with a focus on teamwork and ability to foster/manage relationshipsJob Types: Full-time, PermanentPay: $15.50 per hourBenefits:Dental careExtended health careVision careSchedule:8 hour shiftAbility to commute/relocate:Riverview, NB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call Center: 1 year (required)\",\n            \"location\": \"Riverview, NB\"\n        },\n        {\n            \"id\": \"2E5727171C025277DD75D8C4A404102F\",\n            \"cityName\": \"1888 West Broadway, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=308b4f99e99584d0\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Le Coq Frit\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694490982491,\n            \"dateOfPosted\": 1666664114990,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.26376459999999,\n                    \"lon\": -123.14866\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Broadway, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"-serving-bussing-phone orders for take-out-POS system, 3rd party delivery tablet, payment processing-take-out prep for packaging orders-cleaning duties-various other related dutiesMust be able to work during weekday(Monday - Friday between 11-9pm)Job Types: Permanent, Part-timeSalary: From $16.00 per hourSchedule:HolidaysMonday to FridayMorning shiftSupplemental pay types:TipsCOVID-19 considerations:Required to wear a mask. Sanitize surfaces after use.\",\n            \"location\": \"Broadway WR\"\n        },\n        {\n            \"id\": \"58AABE8C5686594A2C8EDFA8DA90B059\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fdd2efb69d71bb80\",\n            \"jobName\": \"Customer Service Representative - Entry Level Field Marketing\",\n            \"companyName\": \"Alarm Guard Security Services Inc.\",\n            \"rowSalary\": \"$50,000–$60,000 a year\",\n            \"date\": 1694490100770,\n            \"dateOfPosted\": 1694490100595,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Alarm Guard has been helping protect thousands of families since 2003. We are a well-respected company with the support of the most trusted name in North America – ADT Security and now a TELUS trusted provider. Our goal is to provide customers, with a premiere service experience from start to finish. From our honest and friendly representatives to our licensed and trained technicians we commit to doing our best to make sure customers are taken care of – above and beyond.Join Alarm Guard Security, the largest TELUS trusted provider in North York, Toronto. We offer promotional Telus Smart Home protection systems and Telus Telecommunication solutions at no cost to selected clients. We are seeking highly motivated and passionate individuals to join our dynamic Sales & Marketing team.What you will do:Travel across different locations in Toronto and Ontario with a company-provided vehicle. Communicate the value of safety and security to customers. Review customer requirements and provide consultative solutions. Advise and recommend home automation and protection needs. Stay knowledgeable about products and services. Identify customer needs and execute effective strategies. Build positive relationships with colleagues.CompensationInitially compensation will be based on performance in the Field and determined by the number of sales closed by your Team Leader. After your first 8 sales within a 30 - 45 days time period, you will be eligible for BONUSES and the positions of Field Manager (no driver's license needed) or Manager (G2/G driver's license preferred): Yearly package ranging between $50k-$60k /year (base pay + commissions) once you are promoted to these rolesRequirements during training:Available Monday to Friday from 1:00 PM-9:00 PM. (Full-Time Position) An individual with a strong passion for sales. (Future Entrepreneur) A natural ability to communicate confidently. Highly skilled in utilizing company-issued iPhones, iPads, and CRM systems to effectively manage and record daily sales activities. Possesses outstanding interpersonal abilities and excels in providing exceptional customer service.Benefits:Extensive training and career growth opportunities. Travel opportunities. Tools for success: iPad, Business cards, Telus Branded clothing, ID badge, Salesforce CRM. Uncapped bonuses and incentives. Fun and lively work culture with office facilities.Join us and achieve your goals! Apply now.(https://alarm-guard-security-services-inc.breezy.hr/p/b7a9cb80bb19-customer-service-representative-entry-level-in-field?state=published)\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"BBA3A9FB608190E9B4328F36F06183F3\",\n            \"cityName\": \"26 Colston Court, Richmond Hill, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=076ca75ed380f754\",\n            \"jobName\": \"Customer Service Advisor Richmond Hill\",\n            \"companyName\": \"Car House Auto Centre\",\n            \"rowSalary\": \"$18–$26 an hour\",\n            \"date\": 1694489924187,\n            \"dateOfPosted\": 1694489924011,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8523077,\n                    \"lon\": -79.4265607\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond Hill\",\n                \"formattedAddress\": \"Colston Ct, Richmond Hill, ON L4C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond Hill\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for energized, motivated and driven individuals to contribute.Responsibilities: Tire Sales, Mechanical Sales Collaborating with management and team to achieve sales in products/services as well as follow new instructions from team leader Maintaining a good store environment according to company’s standard Processing payments and handling all other cashier duties Providing excellent customer serviceQualifications: Must be fluent in English Flexible work hours and times in Canada Quick learnerSkills & Experience Required: Sale Leadership Skills Merchandising skills Exceptional customer service skills Responsible, organized Excellent communications and interpersonal skillsJob Types: Full-time, PermanentSalary: $18 to $26 (Depend on Experience)Experience: sales: 2-3 years (Preferred)Education: Minimum of High School Graduate and university degree (preferred)Please apply by email to helenJob Types: Full-time, PermanentSalary: $18.00-$26.00 per hourBenefits:Dental careExtended health careFlexible Language Requirement:French not requiredSchedule:8 hour shiftWork Location: In personExpected start date: 2023-09-30\",\n            \"location\": \"Colston Court, Richmond Hill, ON\"\n        },\n        {\n            \"id\": \"095423A6ADD7AF8107E59FA81C576562\",\n            \"cityName\": \"Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2cb9abc7444d62e7\",\n            \"jobName\": \"Customer Service And Office Administrator\",\n            \"companyName\": \"Craftsman Collision\",\n            \"rowSalary\": \"$42,000–$55,000 a year\",\n            \"date\": 1694488753796,\n            \"dateOfPosted\": 1694488753510,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1665898,\n                    \"lon\": -123.133569\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Richmond, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We're currently seeking a full-time, temporary Customer Service and Office Administrator at our Richmond location. We offer competitive wages ranging from $42,000 to $55,000 annually, and extended health and dental. The Customer Service and Office Administrator will provide exceptional customer service and support the Shop with operations initiatives and administrative duties. Craftsman Collision is the largest independently owned and operated auto body repair chain in Canada – but we’re also a family that cares about the people we work with. Are you ready to reach your full potential and build a fulfilling career- while having fun along the way? Then consider joining our team of more than 500 ambitious people who share our commitment to excellence. Customer ServiceInteracts with customers in a caring, friendly and professional manner and assists in clearly identifying the customers’ needs to relay to the rest of the team. Gathers all required information to pass along to estimator;Takes ownership of a customers’ concerns and issues until they are satisfied or until they are able to pass them on to the appropriate person;Answers phones, handles telephone enquiries, books appointments, makes appointment reminder calls and notifies customers of repair completion as directed;Greets customers as they walk in the door and helps ensure their wait time is agreeable;Signs customers in and out and collects all necessary payments;Helps customers to understand our processes and procedures by explaining in a clear, simple and respectful manner;Deals with all customer interactions promptly including monitoring of Production Dashboard in the Craftsman Management System (CMS) for alerts/correspondence as well as voicemail and email;Office AdministrationDownloads and prints assignments from insurance companies using Audatex and Mitchell and prepares new files for estimators;Manages the shop’s email inbox and forwards, distributes or files emails accordingly;Prepares monthly promotional and printing inventories and organizes replenishing as necessary;Orders all office supplies and printer toner cartridges;Input documents and new hourly employees into Dayforce.Arranges courier services when necessary;Supports in-shop training of new staff;Daily Bookkeeping DutiesUpdates CMS for arrived and delivered vehicles as changes occur;Closes POS machine, prints and posts the Deposit Journal. Prepares a bank deposit slip daily for any cash/cheques;Finalizes all work orders from previous day and bill insurance companies accordingly;Invoices parts/sublet/rental invoices relating to work orders via Purchase Orders and reviews any discrepancies;Posts any A/R cheques into Traverse A/R and reconciles any over/short payments;Enters invoices for non-trade payables (overhead) into Traverse A/P;Banking as required (at least weekly);Posts PO Journals and Non-Trade Transaction Journals as required;Monthly Bookkeeping DutiesPrepares all payable cheque runs (mid & month end). Prepares monthly log for Head Office for any aging A/P amounts;Reconciles Flat-Rate and Straight-Time hours with employees (with the help of Shop Manager) and posts the Flat-Rate Journal in CMS on a semi-monthly basis. Prepares manual cheques and ROE’s for any terminated hourly employees or for those on leave;A/R Collections on unpaid balances including sending statements to customers and preparation of monthly log for Head Office;Follows month-end procedures on the first day of every month and reviews monthly reports with Shop Manager;Reviews monthly ARA and MSP benefits statements for accuracy;Reconciles GL accounts 4920 (Other Income/Over-Shorts), 1130 (Employee A/R) and 1999 (Suspense);Performs year-end requirements as directed by Head Office.Other related duties as assigned.RequirementsMinimum of 3 years related experience in a fast-paced, team-oriented environmentPost-secondary courses in a related field an assetStrong interpersonal skills with customer service-oriented attitudeExperience with accounts receivable, accounts payable, and payroll preferredDemonstrated ability to multi-task and prioritize, effectively managing time with minimal supervisionDetail oriented and able to complete tasks with a high degree of accuracyStrong verbal, written and listening skillsProficient in Outlook, Word and Excel with the ability and willingness to learn new applicationsDemonstrated desire and aptitude for learning and developmentPrevious experience with payroll or HRIS systems preferred; Dayforce experience an assetA valid driver's license preferredMust be legally entitled to work in Canada with no restrictions Benefits When you’re part of the Craftsman Collision team, you get valuable perks like extended health, professional development, certified training and more. Your cover letter and resume should clearly outline how your qualifications & experience fit this position. We appreciate the time that all applicants have taken when applying for this position, however, only the candidates that are chosen for an interview will be notified by phone or email. No phone calls please.\",\n            \"location\": \"Richmond, BC\"\n        },\n        {\n            \"id\": \"A56D2EF53B3FAD148634712F198B9A1E\",\n            \"cityName\": \"Wipro in Moncton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b762c17b2a4552f9\",\n            \"jobName\": \"Customer Service (English, English And French, English And Spanish)\",\n            \"companyName\": \"Wipro\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694488605969,\n            \"dateOfPosted\": 1653412856917,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.0878165,\n                    \"lon\": -64.7782313\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"3 Roles available1. Loyalty Customer Support Analysts - Phone Support, 2 Shifts between 10am-8pm, Monday-Friday. Salary based on experience, up to 22$/hr2. Technical support roles for retail locations (Also phone support), on rotating 24/7 shift schedule, where alternating weekends are guaranteed. Salary based on experience, up to 22$/hr3. Customer Complaints - 10-8 Monday to Friday - Phone Support, 2 Shifts between 10am-8pm, Monday-Friday. Salary based on experience, up to 22$/hr. (Must be bilingual English and french)Full Benefits, competitive salary with opportunities to develop professionally.3 weeks vacation, paid sick leave. Flexible work/life balance.If you have any more questions, please apply and we'll be happy to answer them.Job Types: Full-time, PermanentSalary: $19.00-$22.00 per hourBenefits:Dental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offRRSP matchVision careSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayNight shiftWeekends as neededCOVID-19 considerations:Site operator has excellent cleaning practices in place. Ability to commute/relocate:Moncton, NB E1C 0J4: reliably commute or plan to relocate before starting work (preferred)Work Location: In person\",\n            \"location\": \"Moncton, NB\"\n        },\n        {\n            \"id\": \"B5886B4EAFF1B56F55FF849568EEF6D8\",\n            \"cityName\": \"Bella Coola, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4b1aeee4655057a6\",\n            \"jobName\": \"Clk 12r - Customer Service Representative\",\n            \"companyName\": \"Bc Public Service\",\n            \"rowSalary\": \"$52,803–$59,608 a year\",\n            \"date\": 1694487527323,\n            \"dateOfPosted\": 1694487527141,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.3721277,\n                    \"lon\": -126.7539346\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bella Coola\",\n                \"formattedAddress\": \"Bella Coola, BC V0T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Coast\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bella Coola\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 52803.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    52803.0\n                ],\n                \"range\": {\n                    \"gte\": 52803.0,\n                    \"gt\": null,\n                    \"lte\": 52803.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Posting Title  CLK 12R - Customer Service Representative  Position Classification  Clerk R12  Union  GEU  Work Options  On-Site  Location  Bella Coola, BC V0T 1C0 CA (Primary)  Salary Range  $52,803.18 - $59,607.79 annually  Close Date  9/25/2023  Job Type  Regular Full Time  Temporary End Date  Ministry/Organization  BC Public Service -> Citizens' Services  Ministry Branch / Division  Service Delivery/Service BC  Job Summary Apply your expertise and passion for innovation to this rewarding career opportunityMINISTRY OVERVIEWDedicated to making life better for British Columbians, the Ministry of Citizens’ Services (CITZ) delivers key services that people rely on. CITZ delivers accessible, multi-channel services, through a single-point-of-contact service approach to people in urban and rural communities through Service BC, and delivers the digital face of government at www.gov.bc.ca. CITZ also provides support for the expansion of high-speed internet connectivity throughout the province, leadership across government to modernize information management and technology resources, trusted data services to government agencies, prompt, and relevant responses to freedom of information requests, and statistical and economic research, information and analysis to businesses and the public sector. In addition, the ministry manages the Province’s real estate assets, technology systems and equipment, and leverages procurement to increase business opportunities and create rewarding jobs that contribute to local economies and benefit individuals, families, and communities.A service-focused organization, CITZ strives to be a great place to work, where all employees feel both engaged and motivated to do their best.DIVISIONAL OVERVIEWService BC is government’s chief provider of services to B.C. residents and businesses. The work of the division enables the design and delivery of accessible, responsive, and cost-effective services, making it easier for British Columbians and businesses to interact with government. Through a provincial network of 65 in-person offices and the Provincial Contact Center, Service BC provides approximately 300 government services for more than 40 partner ministries and agencies. Our team member’s unwavering commitment to an ethic of service has driven consistently high people and business satisfaction rates. In support of the division’s overarching goal of providing residents and businesses with seamless, multi-service access to government programs, the Division’s service offerings are marketed to partner ministries and the broader public sector to expand our continuum of services and leverage common platforms.Within Service BC, our vision is to deliver innovation, value, and service excellence to the people of British Columbia, with the aspirational goal of becoming a best-in-class public service delivery organization. Our people and our culture are important to us. As a team, we are motivated to deliver an excellent service experience to British Columbians, businesses, colleagues, peers, clients, and partners. We believe in being kind and helpful, and are committed to delivering “Service with Heart”.JOB OVERVIEWThe Service BC Customer Service Representative (CSR) maintains a positive, empathetic, and professional attitude when providing service and answering enquires. It requires the ability to identify and assess peoples’ needs to effectively and efficiently deliver an excellent customer service experience.The CSR provides services in-person, by phone, and through digital channels. The ability to provide clerical and administrative support such as data entry, reviewing applications for completeness, handling payments, and providing appropriate solutions, within government guidelines to a diverse population of people is essential to this role.Job Requirements:Minimum Grade 12 graduation or equivalent (GED).Experience providing inclusive customer service to diverse clienteles. Experience using digital applications to search for and record information. Preference may be given to applicants with one (1) or more of the following:Multiple years of experience in any of the above requirements.Experience providing in-person customer service.Experience providing customer service though phone or digital channels.Experience delivering customer service in a high volume, fast-paced, rapidly changing environment.Experience with conflict resolution and de-escalating situations.Experience providing services to a diverse population some of whom may be experiencing poverty issues, substance use, or mental health concerns.Experience maintaining administrative files and record keeping.Experience delivering service in a regulated or legislated environment following processes and procedures.Customer Service training and/or education.Experience handling financial transactions. Willingness Statements:Willingness to travel occasionally to provide relief coverage to other work sites (Service BC Centres, exam locations, etc.)Successful completion of security screening requirements of the BC Public Service, which may include a criminal records check, and/or Criminal Records Review Act (CRRA) check, and/or enhanced security screening checks as required by the ministry (Note: It is important that you read the job posting carefully to understand the specific security screening requirements pertaining to the position). For questions regarding this position, please contact melody.olsen@gov.bc.ca.About this Position: An eligibility list may be established to fill future temporary and permanent vacancies across the Ministry of Citizens' Services. This position has full time on-site requirements. Employees of the BC Public Service must be located in BC at the time of employment. Close to Tweedsmuir Park, Bella Coola sits in the Bella Coola valley and is a gateway to the Great Bear Rainforest, serving as a centre for the more remote communities in the area. Perfect for fishing, hiking and wildlife watching, Bella Coola is very close with its First Nations heritage, and communities such as the Nuxalkmc people live within the town.Working for the BC Public Service: The BC Public Service is committed to creating a diverse workplace to represent the population we serve and to better meet the needs of our citizens. Consider joining our team and being part of an innovative, inclusive and rewarding workplace. The Indigenous Applicant Advisory Service is available to applicants that self-identify as Indigenous (First Nations, status or non-status, Métis, or Inuit) seeking work or already employed in the BC Public Service. For guidance on applying and interviewing, please contact IndigenousApplicants@gov.bc.ca or 778-405-3452. The BC Public Service is an award-winning employer and offers employees competitive benefits, amazing learning opportunities and a chance to engage in rewarding work with exciting career development opportunities. For more information, please see What We Offer.How to Apply: Your application must clearly demonstrate how you meet the job requirements listed above.Cover Letter: NO - Please do not submit a cover letter as it will not be reviewed.Resume: YES - A resume is required as part of your application, however, it may not be used for initial shortlisting purposes.Questionnaire: YES - You will need to complete a comprehensive questionnaire to demonstrate how you meet the job requirements. Include all relevant information about your educational accomplishments and employment history including job titles, start and end dates (month and year) of your employment, and how you obtained your relevant experience. The questionnaire will take approximately 60 minutes to complete.Helpful tips, videos and more regarding the application process can be found on the Your Job Application page of MyHR. If you are experiencing technical difficulty applying, e-mail BCPSA.Hiring.Centre@gov.bc.ca, before the stated closing time, and we will respond as soon as possible.Additional Information: A Criminal Record Check (CRC) will be required. Applicants selected to move forward in the hiring process may be assessed on the Knowledge, Skills, Abilities and Competencies as outlined in the attached Job Profile located at the bottom of the posting. Applications will be accepted until 11:00 pm Pacific Standard Time on the closing date of the competition. Job Category  Administrative Services \",\n            \"location\": \"Bella Coola, BC\"\n        },\n        {\n            \"id\": \"8EB4F8FCA16ABB21F80ABEB21D976AC0\",\n            \"cityName\": \"Les entreprises Zouki's in Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2c47565b1eacb9e3\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Les Entreprises Zouki's\",\n            \"rowSalary\": \"From $14 an hour\",\n            \"date\": 1694487294462,\n            \"dateOfPosted\": 1632951651245,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6066487,\n                    \"lon\": -73.712409\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laval\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Provides a positive customer experience with fair, friendly, and courteous service. Registers sales on a cash register by scanning items, itemizing and totaling customers' purchases.Job Types: Full-time, Part-timeSalary: From $14.00 per hourSchedule:8 hour shiftDay shiftMonday to FridayWeekend availabilitySupplemental pay types:TipsWork remotely:No\",\n            \"location\": \"Laval, QC\"\n        },\n        {\n            \"id\": \"A3488F3408CDDF64C535BA8B5583D6AB\",\n            \"cityName\": \"3340 Mannheim Way, Windsor, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2c8bcc853414dd1d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Curry Reprographics Ltd.\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694487240482,\n            \"dateOfPosted\": 1694487240297,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.2819176,\n                    \"lon\": -82.9700313\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Windsor\",\n                \"formattedAddress\": \"Mannheim Way, Windsor, ON N8W, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Essex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Windsor\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative - Immediate Opening!Curry Reprographics is a specialty printing company offering high quality products with superior customer service. We are looking for a customer service representative to take orders by phone, email, or in-person, print documents to large printers and have hands-on throughout the process. Must be able to use a computer, Microsoft Office (including Excel) and have strong math skills. Graphic design software experience is an asset (e.g., Adobe Creative Suite).Full time, permanent position5 days a week - Monday to FridayValid Ontario G driver's license with a clean driver's abstractAbility to use personal vehicle for work is an assetMust be able to lift 50 lbs.Must be fluent (speak and write) in EnglishMust be a Canadian citizen with the ability to work in CanadaJob Type: Full-timeSalary: $19.00 per hourBenefits:Dental careLife insuranceOn-site parkingFlexible Language Requirement:French not requiredSchedule:Monday to FridayEducation:Secondary School (required)Language:English (required)Licence/Certification:Driving Licence (required)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Mannheim Way Unit A, Windsor, ON\"\n        },\n        {\n            \"id\": \"BDDC0001E94D64CE3D0622D64C48A09A\",\n            \"cityName\": \"1024 Victoria St, Petawawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=96b4fca33d4d8483\",\n            \"jobName\": \"Customer Service Representative - Personal Lines\",\n            \"companyName\": \"Mcdougall Insurance And Financial\",\n            \"rowSalary\": \"$40,000–$48,000 a year\",\n            \"date\": 1694486895341,\n            \"dateOfPosted\": 1694486895180,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.9017038,\n                    \"lon\": -77.2687347\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Petawawa\",\n                \"formattedAddress\": \"Victoria St, Petawawa, ON K8H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Renfrew County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Petawawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"McDougall Insurance is now the largest insurance brokerage in Eastern Ontario. We represent over 50 insurance companies, giving us the ability to offer optimal selection and competitive rates. Here at McDougall we have created an Employee Promise. The leadership of McDougall Insurance promises to foster an environment of support, empowerment and inclusion, while investing in our employee’s future with McDougall Insurance. In turn, our employees promise to treat others with dignity and respect and strive to approach each day with a positive attitude and willingness to learn. Together, we promise to deliver Legendary Service to our customers and apply the McDougall principals of Trust, Honesty and Integrity with a goal of building strong lasting relationships. The result is our staff is engaged, accountable and professional.At McDougall Insurance and Financial we offer our employees; a comprehensive benefits package, McDougall pension plan, staff appreciation days, social events, a branch-wide yearend bonus, a competitive salary and paid vacation time starting at 3 weeks.Our growing team is looking for a Customer Service Representative in Personal Lines to join our team in Petawawa, Ontario!Are you looking to start a new career? Do you have strong customer service skills? If so, this might be the perfect opportunity for you. We provide you with all the tools, knowledge and training you need to be successful in this role.Responsibilities:· To provide legendary service directly to the client, after the sale by the Sales Executive.· Communicate with the client in person, by phone, email, text, etc. to answer all of their questions/inquiries, provide professional advice or recommendations regarding their coverage, and collect relevant information.· Process additions, deletions or changes to their policy on the appropriate broker management system (EPIC)· Ensure all transactions and renewals are accounted for and processed accurately and on a timely basis.· Provide quotations or estimates to clients on premiums, update information, and confirm data and coverage and to record appropriate changes or adjustments.· Communicate with insurance company personnel as required.· As an independent broker working for your client, acts as liaison with the insurer and balances the interests of the client, McDougall Insurance and the insurance company in force.· Function as part of a team responsible for assisting in the collection of accounts receivable and in any other area as required.· Where appropriate, procure a sale, normally through upgrading and bundling coverage for personal lines clientsQualifications:· Must have exceptional customer service and communication skills.· Acts in a professional manner at all times and maintains a position of trust and confidentiality.· Acts in an open, respectful, honest and helpful manner with all team members, clients and other staff.· Ability to work effectively in a fast-paced environment· Must be willing and eligible to obtain a RIBO licenseRIBO stands for the Registered Insurance Brokers of Ontario. RIBO regulates the licensing, professional competence, ethical conduct and insurance related financial obligations of all independent general insurance brokers in the province of Ontario. To learn more please visit https://www.ribo.com/What We Offer:Dedication to investing in our employees’ future by offering RIBO, CAIB, and other designation education reimbursementA supportive and inclusive culture where diversity is valuedA competitive employee health and dental benefits program including long term disabilityA competitive pension planPaid vacation timeAccess to ongoing training and development through our McDougall training teamMcDougall Insurance and Financial is proud to be an equal opportunity employer. We aim to find individuals who are passionate about their work and treat others with dignity and respect.If you need assistance or an accommodation, you may reach out to our Human Resources Department through our website:https://www.mcdougallinsurance.com/contact/Job Types: Full-time, PermanentSalary: $40,000.00-$48,000.00 per yearBenefits:Company eventsCompany pensionDental careDisability insuranceEmployee assistance programExtended health careLife insurancePaid time offVision careSchedule:Day shiftMonday to FridaySupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Victoria Street, Petawawa, ON\"\n        },\n        {\n            \"id\": \"27391B117018B475ECC314E7E6284BFB\",\n            \"cityName\": \"CouchHaus in Langley, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=529f9d190ff748da\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Couchhaus\",\n            \"rowSalary\": \"$17–$22 an hour\",\n            \"date\": 1694486618367,\n            \"dateOfPosted\": 1694486618175,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1041779,\n                    \"lon\": -122.6603519\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Langley City\",\n                \"formattedAddress\": \"Langley City, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Langley City\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Company DescriptionCouchHaus is a direct-to-consumer custom modular sofa brand based in Vancouver, Canada. The couches are made-to-order exclusively with our own manufacturer. We sell our products directly to consumers through our online platform and our boutique showroom in Langley, BC in order to offer competitive prices to our customers.Our business model is designed to offer customers high-quality, customizable furniture at an affordable price point, while also minimizing waste and supporting sustainability.Founded by the duo that made the 2023 BC Business 30 Under 3 List , Harrison and Paige, the company started with their passion for design when it came to building furniture for our own home.On the quest for new furniture for their home, they rethought every component of their dream couch including the size, depth, fabric grade, storage and other features! They offer removable and washable covers, re-stuffable cushions and modular furniture to re-arrange and grow onto!CouchHaus was created to make custom modular furniture shopping easier and more affordable, while supporting sustainability. The best part, we plant 100 trees for every couch we build!Job DescriptionTHE DEPARTMENTThe mission of the Concierge Department is to delight clients by going above and beyond to resolve their inquiries within reason and deliver exceptional sales expertise.Everyone in our Concierge Team has a common goal: to successfully manage customer relations by being a liaison between the company and the customer.THE OPPORTUNITYOur Concierge Department is an integral for the operation of the company. You’ll provide daily support to keep our boutique store running smoothly.As a member of the Concierge Division, you will be part of the team responsible for providing exceptional experiences for clients who contact Concierge by resolving their inquiries and delivering selling and solving expertise. As the Concierge Advisor, you will deliver world-class sales, solution and service excellence to exceed client expectations and maximize value in every interaction. And, with the skills you gain in this role, the opportunities are endless – from a rewarding career in Concierge to continued growth and development with CouchHaus.CouchHaus is an online store with the a boutique showroom. This opportunity is remote and also has the opportunity to grow in the company.THE JOBWe are seeking a team player that conveys the brand philosophy and values. The ConciergeAdvisor is a solution and detail-oriented person. The right individual will interact with customers on a daily basis, being knowledgeable and conversational and educational.The Concierge Advisor job is about problem solving. You will:● Develop and manage strong customer relationships through outstanding and consistent customer experiences● Solve problems to ensure our customers are happy● Become an expert in CouchHaus’ products and servicesThe Advisor reports to the Team Leader and participates in all the essential duties which contribute to the efficient and profitable operation of the store while maintaining the brand and visual presentation standards.QUALIFICATIONSYou don’t need experience to be a Concierge Advisor — we can teach you what you need to know. We care more about your hustle, passion for problem solving and ability to think on your feet. You have:● A commitment to learn and apply CouchHaus Values, Business and PeopleLeadership principles● The skills that are an asset to perform in the role and the appetite to continuously learn and develop oneself● A commitment to quality and investing in results that add value to the business● A sense of urgency and ability to prioritize important work● An understanding of CouchHaus brand vision● Feel strongly about long-term customer relationships and building brand loyaltyTHE PERKS● Set Your Schedule - Provide your availability and indicate your preferred working hours (some restrictions apply)● Aspirational Workspace - Every detail is considered to connect to the energy of the culture● Product Discount - Our famous product discount, online and in storeHead to our Our Story (https://www.couchhaus.com/pages/story) for the scoop on who we are and what we do.Job Types: Part-time, FreelancePart-time hours: 10-20 per weekSalary: $17.00-$22.00 per hourBenefits:Casual dressFlexible scheduleStore discountWork from homeSchedule:Day shiftMonday to FridayWork Location: Hybrid remote in Langley, BC V2Y 4J1Application deadline: 2023-09-30Expected start date: 2023-10-01\",\n            \"location\": \"Langley, BC\"\n        },\n        {\n            \"id\": \"6B4D68A06A3F998F0CAA9BA662DDA53C\",\n            \"cityName\": \"34 Magnum Dr, Schomberg, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e1a668e71198b38d\",\n            \"jobName\": \"Customer Service/Account Representative\",\n            \"companyName\": \"Alpine Graphic Productions Limited\",\n            \"rowSalary\": \"$45,000–$65,000 a year\",\n            \"date\": 1694486557387,\n            \"dateOfPosted\": 1694486557216,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.0106936,\n                    \"lon\": -79.6739194\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Schomberg\",\n                \"formattedAddress\": \"Magnum Dr, Schomberg, ON L0G 1T0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Schomberg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Alpine Graphics has an immediate Full-Time opening for a Customer Service Representative.Alpine Graphic Productions Limited is an established, award-winning screen and digital print manufacturer supplying North American clients with fleet graphics, architectural graphics, anti-graffiti products, safety signage and decals.We offer a competitive salary and benefits, negotiable based on experience.To be successful you will be required to:- Build Strong Client Relationships- Have Excellent Organization Skills- Work Well in a Team Environment- Have Excellent Communication Skills, both Verbal and Written- Project Manage Installation ProjectsYou will benefit from Alpine Graphics' supportive, consultative small business environment and capable production team.We are looking for the following experience and/or skills:Ability to develop and maintain client relationshipsEnergy and enthusiasmSelf-motivationExcellent communication and presentation skillsResponsivenessAttention to detail Strong proposal writing skillsAbility to prioritize and manage projects to a successful conclusionMinimum Undergraduate degreeJob Types: Full-time, PermanentSalary: $45,000.00-$65,000.00 per yearBenefits:Dental careExtended health careLife insuranceVision careSchedule:Monday to FridayAbility to commute/relocate:Schomberg, ON L0G 1T0: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (required)Experience:Customer service: 1 year (preferred)Work Location: In personApplication deadline: 2023-09-24\",\n            \"location\": \"Magnum Dr, Schomberg, ON\"\n        },\n        {\n            \"id\": \"CC8ACC96F602B76FEFF71D914C0DE916\",\n            \"cityName\": \"Kingston, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5601d7bb49b0fe31\",\n            \"jobName\": \"Personal Lines Customer Service Representative\",\n            \"companyName\": \"Mcdougall Insurance And Financial\",\n            \"rowSalary\": \"$40,000–$45,000 a year\",\n            \"date\": 1694486557214,\n            \"dateOfPosted\": 1694486557014,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2311717,\n                    \"lon\": -76.4859544\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kingston\",\n                \"formattedAddress\": \"Kingston, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Frontenac County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kingston\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"_McDougall Insurance is now the largest insurance brokerage in Eastern Ontario. We represent over 50 insurance companies, giving us the ability to offer optimal selection and competitive rates. Here at McDougall we have created an Employee Promise. The leadership of McDougall Insurance promises to foster an environment of support, empowerment and inclusion, while investing in our employee's future with McDougall Insurance. In turn, our employees promise to treat others with dignity and respect and strive to approach each day with a positive attitude and willingness to learn. Together, we promise to deliver Legendary Service to our customers and apply the McDougall principals of Trust, Honesty and Integrity with a goal of building strong lasting relationships. The result is our staff is engaged, accountable and professional._ _At McDougall Insurance and Financial we offer our employees; a comprehensive benefits package, McDougall pension plan, staff appreciation days, social events, a branch-wide yearend bonus, a competitive salary and paid vacation time starting at 3 weeks._ Our growing team is looking for a Customer Service Representative in Personal Lines to join our team in Kingston, Ontario! Are you looking to start a new career? Do you have strong customer service skills? If so, this might be the perfect opportunity for you. We provide you with all the tools, knowledge and training you need to be successful in this role. Responsibilities: To provide legendary service directly to the client, after the sale by the Sales Executive. Communicate with the client in person, by phone, email, text, etc. to answer all of their questions/inquiries, provide professional advice or recommendations regarding their coverage, and collect relevant information. Process additions, deletions or changes to their policy on the appropriate broker management system (EPIC) Ensure all transactions and renewals are accounted for and processed accurately and on a timely basis. Provide quotations or estimates to clients on premiums, update information, and confirm data and coverage and to record appropriate changes or adjustments. Communicate with insurance company personnel as required. As an independent broker working for your client, acts as liaison with the insurer and balances the interests of the client, McDougall Insurance and the insurance company in force. Function as part of a team responsible for assisting in the collection of accounts receivable and in any other area as required. Where appropriate, procure a sale, normally through upgrading and bundling coverage for personal lines clients Qualifications: Must have exceptional customer service and communication skills. Acts in a professional manner at all times and maintains a position of trust and confidentiality. Acts in an open, respectful, honest and helpful manner with all team members, clients and other staff. Ability to work effectively in a fast-paced environment Must be willing and eligible to obtain a RIBO license RIBO stands for the Registered Insurance Brokers of Ontario. RIBO regulates the licensing, professional competence, ethical conduct and insurance related financial obligations of all independent general insurance brokers in the province of Ontario. To learn more please visit What We Offer: Dedication to investing in our employees' future by offering RIBO, CAIB, and other designation education reimbursement A supportive and inclusive culture where diversity is valued A competitive employee health and dental benefits program including long term disability A competitive pension plan Paid vacation time Access to ongoing training and development through our McDougall training team On-site parking McDougall Insurance and Financial is proud to be an equal opportunity employer. We aim to find individuals who are passionate about their work and treat others with dignity and respect. If you need assistance or an accommodation, you may reach out to our Human Resources Department through our website: Job Types: Full-time, Permanent Salary: $40,000.00-$45,000.00 per year Benefits: Company events Company pension Dental care Disability insurance Employee assistance program Extended health care Life insurance On-site parking Paid time off Vision care Schedule: Day shift Monday to Friday Supplemental pay types: Bonus pay Work Location: In person\",\n            \"location\": \"Kingston, ON\"\n        },\n        {\n            \"id\": \"11AB1161CF1099E3F84495B2AEAA837E\",\n            \"cityName\": \"Maple, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8fa9e8dd426238bf\",\n            \"jobName\": \"Customer Service Representative Supervisor\",\n            \"companyName\": \"Planta Greenhouses\",\n            \"rowSalary\": \"$60,000 a year\",\n            \"date\": 1694486514495,\n            \"dateOfPosted\": 1694486514308,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8517618,\n                    \"lon\": -79.52728359999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Maple, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 60000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    60000.0\n                ],\n                \"range\": {\n                    \"gte\": 60000.0,\n                    \"gt\": null,\n                    \"lte\": 60000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 2 years to less than 3 yearsTasks Conduct performance reviews Perform same duties as workers supervised Co-ordinate, assign and review work Establish work schedules and procedures and co-ordinate activities with other work units or departments Identify training needs and train workers in job duties and company policies Resolve work-related problems and prepare and submit progress and other reportsWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Maple, ON\"\n        },\n        {\n            \"id\": \"DC492AD30D7AFCDFEB3339B01048F71A\",\n            \"cityName\": \"9260 Boul Du Golf, Anjou, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=460fb11605e09382\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Multi-Glass Insulation Ltd\",\n            \"rowSalary\": \"$20–$23 an hour\",\n            \"date\": 1694486454757,\n            \"dateOfPosted\": 1694486454560,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6248894,\n                    \"lon\": -73.56511259999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Bd du Golf, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Aperçu de l'entrepriseFondée en 1975, Multi-Glass Insulation Ltd. est un chef de file dans la distribution et la fabrication de systèmes d'isolation. Notre objectif est d'optimiser la conservation de l'énergie dans les grands projets de construction commerciale, industrielle et résidentielle dans l'Est et le Canada atlantique.Description du poste : Responsable de la gestion des transactions quotidiennes entre les clients d'MGI et la chaîne d'approvisionnement.Répondre aux demandes des clients par téléphone, fax ou courriel dans des délais acceptables en maintenant un excellent service.Procéder au traitement de commandes incluant toutes les étapes du bon de commande à la facturation finale.Interagir avec les équipes de production et d'expédition pour coordonner le planning de production.Vérifier la disponibilité des produits par leur code ou description.Renseigner les clients sur les délais de livraison prévus, le suivi du bon de commande et répondre à des questions générales sur leur facturation.Résoudre les problèmes survenus sur un produit ou un service en travaillant en grande proximité avec les équipes de ventes pour déterminer les causes et proposer la meilleure solution tout en effectuant un suivi des résolutions d'amélioration.Respecter les directives et procédures établies par la CompagnieEffectuer d'autres tâches au besoin par la direction.Job Type: Full-timeSalary: $20.00-$23.00 per hourBenefits:Dental careVision careSchedule:Monday to FridaySupplemental pay types:Overtime payAbility to commute/relocate:Anjou, QC H1J 3A1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In personExpected start date: 2023-09-12\",\n            \"location\": \"Boul Du Golf, Montréal, QC\"\n        },\n        {\n            \"id\": \"47CD176D1D3492A5736C91E99A808E46\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fd4e88ae982ad9e3\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Easypark\",\n            \"rowSalary\": \"From $21 an hour\",\n            \"date\": 1694486140215,\n            \"dateOfPosted\": 1641252397160,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"EasyPark’s mission is to make parking easy, safe and secure. We work with our clients and community groups in the areas where we provide parking services to help improve these areas and make them safer. For the past 70 years, EasyPark has been providing safe, clean, friendly, convenient, and affordable parking to the Greater Vancouver community. This position is responsible for ensuring a high level of service to the public and other Corporation staff through the efficient management of all customer service duties associated with serving the internal and external customers. KEY RESPONSIBILITIES Customer Service:Responds to customer inquiries by email, live chat, and through our online appeals processRaises refund requests for the Customer Service SupervisorsReports meter/ app malfunctions to the meter collections teamsReviews and request refund requests for customers for double paying on the meterResponds to live chat inquires and assists customers at our parking facilitatesIssues out receipts to customers as required upon confirming transactionAnswer general monthly parking emailsActively works with the Assistant Customer Service Manager, Customer Service Coordinator, and other EasyPark departments on flagging meter or app deficienciesFacilitates Tow Requests for reserved monthly parkers as requiredAddress problems and requests by transmitting information or providing solutionsPrioritize calls according to urgency and importanceEnters data in computer system and maintain logs and records of calls, activities and other informationMonitors Zendesk Backlog and organizes tickets for the customer service teamClose up to 80 appeals/ Zendesk tickets per shift SKILLSPossess exceptional organizational skillsExcellent verbal and written communication skillsAbility to work in a fast-paced and multi-task environmentHigh level of personal integrity and strong work ethicAbility to work independently on assigned tasks as well as to accept direction on given assignmentsEffective attention to detail and a high degree of data entry accuracyAbility to operate standard office equipment (phone, fax, photocopier, printer, etc.)Computer proficiency, including effective working skills of MS Word, PowerPoint, Excel and e-mailProven data entry and typing skills – 70 wpm (alphabetic and numeric characters) EDUCATION & EXPERIENCECall Centre experience is an asset. Dispute/conflict resolution trainingValid Drivers License & 1 year experience of driving1 – 3 years of relevant Customer Service or a Collections experience is requiredMinimum 1 year proven success within customer service role with high volume of incoming callsExperience in dispute and conflict resolution WORKING CONDITIONSOffice setting with shift work during peak seasons. Regular evening/weekend scheduling will be required.Ability to attend professional development opportunities after hours as requiredOvertime as required. POSITION REQUIREMENTS The CSR position is initiative driven and requires exceptional organizational and interpersonal skills, excellent verbal Continue and written communication skills, and is comfortable using various computer software. Ensures a high level of service to the public and other Corporation staff and is responsible for the delivery of effective and superior customer service management services for the Corporation. Part-time hours: 20 per week Job Types: Full-time, Part-time Salary: From $21.00 per hour\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"575D7CEE7A998E24DE5E3C9A85C5F4C3\",\n            \"cityName\": \"222 East Island Highway, Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a36909cd8a140f8d\",\n            \"jobName\": \"Customer Service Supervisor\",\n            \"companyName\": \"Mid Island Co-Op\",\n            \"rowSalary\": \"From $19.25 an hour\",\n            \"date\": 1694485866335,\n            \"dateOfPosted\": 1694485866154,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3154404,\n                    \"lon\": -124.2803958\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Parksville\",\n                \"formattedAddress\": \"Island Hwy E, Parksville, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Parksville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Co-op is hiring a full-time Customer Service Supervisor for our Oceanside Gas Bar in Parksville, British Columbia.Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you!The Customer Service Supervisor position is a developmental role whereby the aim is to move the successful candidate to an Assistant Store Manager (ASM) position within a 12-18 month timeframe (term will be extended in the event there are no ASM positions available within 12-18 months).Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in organizing and directing the activities and operations of the store including but not limited to ordering/receiving merchandise and supplies, organizing and conducting inventory, staff supervision and training, and acting as Health and Safety Committee Liaison.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Supervisor today if you're a team player with strong communication skills, you can lift, push, and pull up to 50 lbs, and you have a minimum of 1 year gas bar/retail experience. Propane and/or FoodSafe certification would be an asset.Who we are:Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve.Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op).We thank all candidates for their interest; however, only those selectedto continue in the recruitment process will be contacted.Job Types: Full-time, Fixed term contractContract length: 12-18 monthsSalary: From $19.25 per hourBenefits:Company eventsDental careEmployee assistance programExtended health careOn-site parkingStore discountVision careSchedule:8 hour shiftHolidaysMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"East Island Highway, Parksville, BC\"\n        },\n        {\n            \"id\": \"29467A59F885424770945BA4EF02EE06\",\n            \"cityName\": \"Click Esports in Nepean, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=35e303f2a8d93960\",\n            \"jobName\": \"Customer Service And Cleaning\",\n            \"companyName\": \"Click Esports\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694485549020,\n            \"dateOfPosted\": 1694485548837,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.33490459999999,\n                    \"lon\": -75.7241006\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Nepean, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Click Esports is now hiring for part-time shift:We are looking for reliable, hardworking and trustworthy individual to join our team.Duties include:· Cleaning of computer area, computer equipment, and peripherals· Cleaning of service premises, kitchen, service floor, etc.· Operate cashier duty· Assist with making food & drinks in the kitchen· Assist with stocking fridgeRequirements:Basic computer skills are mandatoryMust be able to work late night hours. 10 hours shift per week.Click Esports Address: 1665 Merivale Rd, Nepean K2G 3K2Interested applicants please submit your resume online (we do NOT take resume in person)Job Type: Part-timePart-time hours: 10 per weekSalary: $15.50 per hourFlexible Language Requirement:French not requiredWork Location: In person\",\n            \"location\": \"Nepean, ON\"\n        },\n        {\n            \"id\": \"461C6149F0E941403409DF0C0475B18F\",\n            \"cityName\": \"4310 Spallumcheen Dr, Armstrong, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=36a15fb37a11f963\",\n            \"jobName\": \"Dispatcher/Customer Service\",\n            \"companyName\": \"Fox'S Transport\",\n            \"rowSalary\": \"$60,000–$65,000 a year\",\n            \"date\": 1694485438349,\n            \"dateOfPosted\": 1694485438165,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.40158779999999,\n                    \"lon\": -119.2197206\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vernon\",\n                \"formattedAddress\": \"Spallumcheen Dr, Spallumcheen, BC V0E 1B6, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"North Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vernon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 60000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    60000.0\n                ],\n                \"range\": {\n                    \"gte\": 60000.0,\n                    \"gt\": null,\n                    \"lte\": 60000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Foxs Transport is looking to Hire a Full Time Dispatcher at our Armstrong location. The ideal candidate will have strong time management, multitasking, and customer communication skills.Foxs Transport has a proven history of project management combined with a modern fleet and experienced professional drivers making Foxs an industry leader.We have an excellent employee safety program and are COR Certified through the AMTA. We also boast a management team of 6 with over 150 years of combined experience in the heavy transportation industry and a team of highly trained employees ready to provide measurable excellence to our clients.We provide career advancement within our group of companies for all roles. Family owned and operated to ensure each employee is taken care of and has work life balance.Candidate Requirements,- Knowledge of working with Microsoft office (Excel, Word, ETC).- Must be willing to work rotational on call weekends.- Reliable transportation to and from work.- Knowledge in permitting for heavy haul.- Must have knowledge in various trailer configurations.What’s in it for you?- Benefits after a 90-DAY Probation- Permanent Full-Time work.- Opportunities for advancement.- Competitive Wages – Based on experience.Job Types: Full-time, PermanentSalary: $60,000.00-$65,000.00 per yearBenefits:Casual dressDental careExtended health careOn-site parkingPaid time offVision careSchedule:Monday to FridayOn callWeekend availabilityAbility to commute/relocate:Armstrong, BC V0E 1B6: reliably commute or plan to relocate before starting work (required)Application question(s):When are you available to start?Work Location: In person\",\n            \"location\": \"Spallumcheen Dr, Armstrong, BC\"\n        },\n        {\n            \"id\": \"EDC47D1E9F0028E7F330B18549E2FC80\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8015a75f1e9443a8\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Arg Wholesale\",\n            \"rowSalary\": \"$18–$23 an hour\",\n            \"date\": 1694485276106,\n            \"dateOfPosted\": 1692784210276,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service RepresentativeARG Wholesale- Edmonton, ABStarting Wage: $19.00 - $23.00/ HourTuesday – SaturdayHours vary depending on season.Job Type: Full-Time/ PermanentAbout ARG Wholesale:ARG Wholesale, the supply chain division of GlassMasters Autoglass, is looking for energetic and hardworking CSR for a full-time, permanent position. This is a fast-expanding company that offers uncapped room for growth and development. We currently have four warehouse locations in Calgary, Edmonton, Saskatoon, and Regina. We also have 10 retail locations across Alberta and Saskatchewan and will be opening two new locations in Western Canada in the next two years.***Please note: While this position does require customer service, it also consists of manual labour, carrying and loading/unloading 20-50lb windshields, and driving. ***Position:ARG is looking for an individual to fill the role as a Customer Service Representative for our Edmonton location. In this role, you will be responsible for customer service, sales, and operations as well as backend duties in the warehouse (loading/ unloading product, the occasional delivery, etc.).Responsibilities· Maintain exceptional customer service· Assist management with increasing sales and profitability, meeting location KPIs· Develop and maintain retail and account customer relationships· Assist branch manager with sales, cost of sales and labour targets· Help management with accounts receivable.· Assist management with store inventory and supply levels.· Assist warehouse staff with shop duties and operations.· Warehouse Labour:o Moving producto Loading truckso Warehouse cleanliness· Deliveries within Edmonton area· Driving ¼ ton truck· Driving ½ ton pick-up truck· Driving extended cargo van· Ability to adapt and compete tasks/duties as assigned.Requirements:· Valid Class 5 Driver’s License with good driving record· Criminal record check· Availability to work weekends· Solid work ethic and ability to deliver exceptional customer service.· Ability to manage multiple priorities simultaneously· Displays a can-do attitude· Provides a positive role model for all staff· Ability to work in a fast-paced environment· Excellent communication skills· Promotes a high-performance culture by helping manager set clear expectations, and creating a strong team environment· Knowledge of business systems (e.g., POS, web-portals, inventory management, excel, word)· Professional Appearance· Ability to work long hours· Post-secondary education is an asset.Benefits:· Growth potential to move into more senior management positions.· Company events· Comprehensive benefits package· On-site free parkingSchedule:· Day shift – Tuesday to Saturday· Weekend availability· Will vary depending on seasonIf you feel like you have what it takes to be part of a fun and energetic team in a fast-paced and rewarding industry, please reply to this posting with your resume.We thank all candidates for applying. Only those selected for an interview will be contacted. ARG Wholesale is an equal opportunity employer. Starting wages will be dependent on experience.***All Candidates must be legally entitled to work in Canada***Job Types: Full-time, PermanentSalary: $18.00-$23.00 per hourBenefits:Company eventsDental careExtended health careOn-site parkingFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftDay shiftEvery WeekendOvertimeSupplemental pay types:Overtime payWork Location: In person\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"F0F79132CC9C34C45EABEA14921D7778\",\n            \"cityName\": \"750 West Broadway, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=db11e2998b20527b\",\n            \"jobName\": \"Bilingual/Mandarin Patient Coordinator (Call Centre)\",\n            \"companyName\": \"Vancouver Laser & Skin Care Centre\",\n            \"rowSalary\": \"$22–$25 an hour\",\n            \"date\": 1694485001479,\n            \"dateOfPosted\": 1694485001005,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.26376459999999,\n                    \"lon\": -123.14866\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Broadway, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a passionate individual to join our Patient Coordinator team at the Call Centre @ Vancouver Laser and Skincare Clinic !Are you a dynamic and hardworking individual with a passion for the beauty and medical industry? Do you have experience in the customer service field and a desire to take on a rewarding and exciting role as a Patient Coordinator (Call Center)?If so, we want you to be a part of our amazing team at Vancouver Laser and Skincare Clinic.Vancouver Laser and Skincare Clinic is committed to continuous improvements and setting benchmarks for excellence of treatments and services. At Vancouver Laser and Skincare Clinic, our Patient Coordinator plays an integral role in providing Five-starCustomer Service to our patients. We are seeking a Bilingual (English and Mandarin) representative for a full-time (up to 40 hours) position in our call Centre. You will serve as the first point of contact for our patients, ensuring the highest level of patient satisfaction.Main Duties and ResponsibilitiesCustomer Service:Answer phone calls and reply to customer emails with a keen understanding of aesthetic procedures.Create a file for each new customer and update existing customer files.Book customer appointments and manage the appointment calendar.Collecting customer information for future follow-ups.Answering general inquiries on the phone about the treatment and products available.Staying informed about product and service information updates. Identifying sales opportunities, making product/service recommendations.Reply customer's message in a timely manner on different platforms, Wechat, Facebook, Instagram , live chat etc.Ideal candidate should have:Excellent customer service, people-oriented and experienced in rapport building.Ability to process information well with excellent communication and active listening skills.Excellent time management, ability to multitask, prioritize, and manage time effectively.Responding to customer complaints and inquiries quickly and efficiently.Ability to upsell and promote the services and products.High school diploma is mandatory, training in secretarial/office systems would be an asset.Proficiency in Microsoft Office Suite.At least 1 year of experience in a similar role or customer service industry would be an asset.Knowledge of MINDBODY or similar software would be an asset.Join Our Team at Vancouver Laser and Skincare Clinic in Vancouver ,BC.Vancouver Laser & Skin Care Centre is a physician directed cosmetic clinic that was founded by Dr. Martin Braun in 1996. With state of the art technology and a wealth of experience and knowledge, Vancouver Laser is THE non-surgical solution to all things cosmetic. We know that you have choices! In our 25+ year history we have treated thousands of patients with a diverse range of conditions. We have honed and perfected our anti-aging strategies to provide our patients with their ideal outcomes.Job Type: Full-timeSalary: $22.00-$25.00 per hourBenefits:Commuter benefitsExtended health careSchedule:8 hour shiftAbility to commute/relocate:Vancouver, BC V5Z 1H2: reliably commute or plan to relocate before starting work (preferred)Experience:Customer Service & Patient Registrars: 1 year (preferred)Language:Mandarin/Chinese (preferred)Work Location: In person\",\n            \"location\": \"Broadway WR\"\n        },\n        {\n            \"id\": \"EF817133034FD97772A0502E58707545\",\n            \"cityName\": \"Gormley, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b7ad24a9660b6906\",\n            \"jobName\": \"Customer Service/Sales Rep (Ft)\",\n            \"companyName\": \"Nutri-Lawn - Gormley, On\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694484918549,\n            \"dateOfPosted\": 1694484918219,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.9418049,\n                    \"lon\": -79.3791856\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Gormley\",\n                \"formattedAddress\": \"Gormley, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Gormley\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" We are seeking a highly qualified person to fill the role of Customer Service/Sales Representative in our fast-paced environment. The ideal candidate will have a strong customer service background and experience handling high volumes of incoming calls and/or email communications. This is a great opportunity for an individual who thrives in a competitive environment, and we are looking for motivated people who are able to quickly learn our products and services Responsibilities: Manage large amounts of incoming calls. Follow communication procedures, guidelines and policies. Not be afraid to pick up phone and contact clients. Call and collect outstanding balances. Sell prospective clients our programs and services. Input data, send emails. Go the extra mile to engage customers. Work availability Monday - Friday 9am to 5pm. As an Employee of Nutri-Lawn you will enjoy: A competitive compensation program. Industry and Company training. Growth and advancement opportunities within the Company. Requirements: Familiarity with CRM systems and practices. Proficient in Microsoft Office especially in Excel or Google Sheets. Must be well versed in Hub Spot Previous email marketing knowledge. Proven customer support experience or experience as a client service representative. Strong phone contact handling skills and active listening. Customer orientation and ability to adapt/respond to different types of characters. Excellent communication and presentation skills. Excellent command of the English Language. Previous Landscape experience an asset. Previous experience in the service industry. Ability to multi-task, prioritize and manage time effectively. We are not on a bus line so you must have a reliable vehicle. Job Type: Full-time.  Salary: $18.00-$23.00 per hour.  Benefits: Casual dress. Company events. Flexible schedule. On-site parking. Schedule: 8 hour shift. Monday to Friday. Supplemental pay types: Bonus pay. Commission pay. Job Type: Full-time.  Salary: $18.00-$25.00 per hour.  Benefits: Casual dress. Company events. On-site parking. Schedule: Monday to Friday. Supplemental pay types: Bonus pay. Commission pay. Overtime pay. Signing bonus. Tips. View public job page\",\n            \"location\": \"Gormley, ON\"\n        },\n        {\n            \"id\": \"9FFAEF90CF657BE78136B0B6617FE016\",\n            \"cityName\": \"4230 50th Ave, Rimbey, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3f840cc051443321\",\n            \"jobName\": \"Front Counter Customer Service\",\n            \"companyName\": \"Allen B. Olson Auction Service Ltd.\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694484909567,\n            \"dateOfPosted\": 1694484909319,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.6395756,\n                    \"lon\": -114.2356675\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Rimbey\",\n                \"formattedAddress\": \"Rimbey, AB T0C 2J0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Ponoka County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Rimbey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Front Counter Customer Service RepresentativeThis a seasonal job from March 15 till December 31st each year.Responsibilities:- Receptionist Duties including answering phones, messages, forwarding of phone calls and excellent communication skills- Exception customer service to our clients.- Excellent and Accurate Data Entry Skills- Accepting Consignments from Customers & Collection of Payments for Items Sold at the Auctions- Knowledge of Farm Equipment, Construction Equipment and Vehicles is an asset but not necessary. Training is available.Experience:- Previous experience in a customer service role preferred- Excellent communication skills, both verbal and written- Strong problem-solving abilities and attention to detail- Ability to multitask in a very fast-paced environment- Proficient in using computer systems and navigating various software applications- Ability to remain calm and composed when dealing with difficult customersTo apply for this position, please submit your resume along with a cover letter detailing your relevant experience.Job Types: Full-time, SeasonalContract length: 3.5 monthsSalary: From $20.00 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayOvertimeWeekends as neededAbility to commute/relocate:Rimbey, AB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Receptionist: 2 years (preferred)Customer service: 2 years (preferred)Shift availability:Day Shift (preferred)Work Location: In personApplication deadline: 2023-09-18\",\n            \"location\": \"Rimbey, AB\"\n        },\n        {\n            \"id\": \"00355E508F5E52A9AF550EC3AF2B6796\",\n            \"cityName\": \"20 Burnside Rd W Suite 201, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8c67bb57381cd117\",\n            \"jobName\": \"Customer Service Representative (Ft)\",\n            \"companyName\": \"Proline Management\",\n            \"rowSalary\": \"$37,000–$45,000 a year\",\n            \"date\": 1694484068007,\n            \"dateOfPosted\": 1694484067796,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4502687,\n                    \"lon\": -123.3861989\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Burnside Rd W, Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 37000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    37000.0\n                ],\n                \"range\": {\n                    \"gte\": 37000.0,\n                    \"gt\": null,\n                    \"lte\": 37000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" We are looking for a motivated individual who has a passion for helping people live and grow together to join our closely-knit team.  If you have experience in the hospitality or retail industry, a passion for working with people, and want to join an amazing team, this could be the position for you. You’ll bring a desire to learn, grow, and to help others and we’ll train you on the world of property management. Whether you’re looking to make a change from working as a server, running a store, or wanting to explore a new career, we want to hear from you! A little about us: We are friendly, hardworking, and a little weird. Our purpose is to help people live and grow together in every way possible. The paradigms we strive for are Rebellious Optimism, Wholehearted Togetherness, Insidious Joy, Radical Transparency, and Relentless Incrementalism. Do you want to know more? Visit our website https://www.prolinemanagement.com. This is YOU to a ‘T’: You are confident, kind, patient, and a great listener. You defuse situations and handle conflict and negative emotions effectively. You enthusiastically support positive changes and see opportunities rather than challenges. You have a sense of humor and have fun. You create systems to keep organized and stay on top of lots and lots of emails and tasks. You bring JOY to every interaction. You love fixing problems for people and helping your whole team succeed. You thrive in a fast-paced environment. You are constantly striving to improve, learn and grow both personally and professionally. The role day-to-day: Provide primary coverage for the front desk. Receiving and placing a high volume of customer service telephone calls. Maintaining great customer relationships by handling questions and concerns with speed and professionalism. Manage emergencies with a decisive and calm demeanor, able to troubleshoot the situation and find positive solutions. Data entry and research as required to troubleshoot customer challenges. Spearhead the organization of the property managers, with everyone working towards the common goal of providing the best possible care for the portfolio of buildings. Liaise with strata council members, building owners, and residents by telephone and email. Manage checklists, processes, databases, spreadsheets, and websites. Assist Property Manager with obtaining quotes, scheduling maintenance, and confirming jobs with tradespeople at the direction of the Property Manager. This position requires travel between offices, as you may be required to work from other offices from time to time. For those interested, this position offers the opportunity to train for and grow into our Property Manager Trainee position. Experience & Qualifications: Enthusiasm for working with people and systems. Experience in the customer service field including call centers, collections, hospitality, restaurant and retail industries is considered an asset Excellent typing and knowledge of computer systems including Microsoft Suite is required. Ability to handle multiple things going on at once including multitasking, meeting deadlines, and maintaining clear communication with the team and clients. 1 - 2 years of experience in an administration or service-based role Excellent command of the English language along with above standard verbal and written communication skills Clean criminal record check. Position Details: Full-time position. $37-45,000 annually to start Office hours are Monday through Friday, 8:30 am - 5 pm, with a 1-hour lunch break. Please note that this is a fully in office position. Weekends and statutory holidays off.  Other Details: Vacation policy based on length of service. Paid volunteer days. RRSP contributions. Paid days off on your birthday and job anniversary. Health Benefits Trust and Life Insurance. Seasonal staff parties. Wellness and Social Committees. Employee referral program. Education reimbursement program. Opportunities for growth. We are looking for someone who will fit in well with our values and the team. To apply for this position, please submit your resume and cover letter outlining why you will be a great fit for the Customer Service Representative role with us. We are looking forward to reviewing your application!  Please note that only candidates selected for the interview process will be contacted. About Proline Management:With 55+ employees, 4 offices, and over 37 years in the business of property management, we are a friendly, interactive and hardworking group of people focused on developing and improving our organization and contributing to our community. We offer fun and professional working environment, maintaining an inclusive, small business feel while constantly striving to improve and develop as a company. We welcome team members who approach each day with positivity and enjoy working to help others live and grow together.\",\n            \"location\": \"Burnside Rd W, Victoria, BC\"\n        },\n        {\n            \"id\": \"F85EB1DC156F6031C2C3822450C86E0B\",\n            \"cityName\": \"888 Burrard St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d42c0c6df18439b4\",\n            \"jobName\": \"Part Time Customer Service Associate\",\n            \"companyName\": \"Spence Diamonds\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694484035052,\n            \"dateOfPosted\": 1694484034873,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2764614,\n                    \"lon\": -123.133986\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Burrard St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"How would you like to work with the happiest customers on earth? People in love are the happiest people on earth, and they’re also our everyday customers! Are you looking to add some sparkle to your career? If so, look no further! We are currently looking for our next superstar to join our customer service team and the Spence family! Who we are… Founded over 40 years ago, Spence Diamonds is a proudly Canadian Company. We have grown and evolved over the years with a unique approach to becoming an industry leader in cut quality and the customer experience. We take shopping for an engagement ring to the next level - with open show cases, displaying top of the line designer prototypes, accompanied by an unparalleled diamond education. Since introducing Spence Artisan Created Diamonds, we are now blazing the way for reasonably priced, ethical and sustainable diamond choices! With unparalleled access to these diamonds, we truly are the best choice for our customers. Our people are the center stone of our business. Our mission is to deliver an exceptional customer experience in a fun and inclusive work environment while giving our people room to grow their careers and live the life they love. What we offer…Attractive compensation packagesAmazing employee, friends & family discounts on our productsA variety of Learning and Development resourcesSpecial gifts to celebrate employee work anniversaries, birthdays, and personal milestonesRegular celebrations & employee incentive programsTeam building events and activitiesOpportunity to grow within the companyContinuous on the job training, support and mentorshipThe role As a member of customer service team at Spence, you embody our culture and values by providing an exceptional customer experience. You have a passion for our products and are comfortable assisting with presenting valuable products and representing products with confidence.You are the backbone of our store. You promote accuracy within the store through exceptional process handling which includes data management, finances, task management. You professionally act as the first and last point of contact for our clients on the phone, through email and in person within the store. On any given day you’re handling all payments & transactions, answering incoming phone calls and emails, managing inventory counts, shipping & receiving, assisting in store maintenance and cleanliness, showroom upkeep, and supporting the Sales Consultants and Management. Most importantly you ensure our customers are top priority and are all given the full Spence experience.Greet every customer in a friendly manner and provide extraordinary customer service Offer sales support to our sales teams during busy periods and take customers through our showroom experience. Ability build rapport with clients and identify client needs through a sales approach.Inspect and process incoming jewelry repairs. Follow up with customers via phone or email regarding their repair orders. Complete quality checks and provide completed orders to customers at pickup, ensure that customers have a great experience.Answer all phone and email correspondences Cash handling and end of day processingAssist in coordinating the showroom appearance, merchandising and store tidiness.A few things we hope you have…You’re detailed oriented, have excellent time management skills and are willing to embrace a structured processYou have excellent time management skills and make great decisions about which work to prioritizeYou have strong problem solving, and conflict resolution abilitiesYou are energetic, outgoing and have strong customer relationship skillsYou have excellent verbal and written communication and are comfortable professionally communicating face to face, over the phone and in writing.You have at least a years’ experience working in a customer service environmentYou’re used to working with a computer and are willing to learn new technology and softwareYou have minimum availability of 3 days a week, and of those 3 days at least 1 weekend day. Flexible day time/ evening availability preferred.Bonus points if you have previous administrative or reception experienceCompensation $16.75/Hour\",\n            \"location\": \"Burrard St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"CFF2AB96B1AC4BAF657BAA54EB331C82\",\n            \"cityName\": \"Langley, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1710d16ec58bf2b2\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Kirmac Collision And Autoglass\",\n            \"rowSalary\": \"$21–$24 an hour\",\n            \"date\": 1694484028526,\n            \"dateOfPosted\": 1694484028338,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1041779,\n                    \"lon\": -122.6603519\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Langley City\",\n                \"formattedAddress\": \"Langley City, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Langley City\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We’re looking for someone with an ear for service Customer Service Representative We're seeking a skilled customer centric expert to join our world-class team. Would you love the chance to have your customers raving about you with anyone who’ll listen? We want to hear from you! Benefits & Perks Excellent Wages Extended Health, Dental and Vision Coverage Plenty of Paid Time Off RRSP Options Team Working Environment Support for Volunteering and Community Involvement Learning and Development Program Training and Education Fund Corporate Discounts Program Regular Social Events Responsibilities Build lasting customer connections in store Submitting ICBC rental forms Scheduling Appointments Generating repair orders Interacting with vendors Providing repair updates to customers via phone, text and/or email Managing/Posting invoicing and parts returns Reconciling repair orders Requirements Excellent verbal and written communication skills. Organized and efficient with brilliant people skills. Dazzling work references. Passion for cars Valid Driver's license We want people who want to have an impact. Kirmac Collision and Autoglass is building an inclusive company culture where anyone, regardless of age, race, gender, sexual orientation, or disability, is recognized and rewarded for their contributions. Our Learning & Development Program allows every team member to learn new skills and expand their expertise. If you want to work someplace where you can grow, and your ideas can have an impact, we want to hear from you! Kirmac is a family-owned Collision Repair Shop with 17 locations across the lower mainland and 50 years of experience getting people back on the road.  Are you looking for a fun, well-paid career with excellent benefits, in-demand skills training, and job security? Did you know Collision Repair professionals earn an average of 6 figures per year? There are more cars on the road than ever before. More cars mean more accidents. And that means the demand for skilled collision repair people is at an all-time high. Ready to get started? We want to hear from you!Pay: $21 - $24 / hour Benefits: Paid time off Health insurance Dental insurance Vision insurance Life insurance Disability insurance Job Type: fulltime, parttime Schedule: 8 hour shift Monday to Friday Education: No education required Work location: On-site\",\n            \"location\": \"Langley, BC\"\n        },\n        {\n            \"id\": \"3443431A7139150FF94EED707D5DEE44\",\n            \"cityName\": \"260 Exeter Station Rd, 100 Mile House, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2d95e553da79d9cf\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Napa 100 Mile House\",\n            \"rowSalary\": \"$16–$25 an hour\",\n            \"date\": 1694484027125,\n            \"dateOfPosted\": 1664540856330,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.64972179999999,\n                    \"lon\": -121.3177484\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"100 Mile House\",\n                \"formattedAddress\": \"Exeter Station Rd, 100 Mile House, BC V0K 2E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Cariboo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"100 Mile House\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"NAPA Auto Parts is seeking a Full Time Counter Clerk / Sales Associate for the NAPA 100 Mile House , BC Location.•This position requires someone who can work flexible hours.You will support overall store operations in order to meet NAPA’s exacting Customer Service and Operational Standards by preparing customer orders and processing returns.You will play a key role in achieving the store’s sales and Customer Service objectives. We are looking for someone interested in growing to other positions within the store.Under the supervision of the Store Manager you will be responsible for establishing and maintaining good relations with our Customers by providing courteous, efficient, and professional service.Qualifications:•Able to lift up to 50lbs.•Communication skills•Priority management•Comfortable using technology•Action oriented•Listening skills•Teamwork and excellent Customer Service SkillsIf you are interested in this unique opportunity and meet the requirements of this job, you are invited to send your resume and drivers abstractOur employees are our greatest advocates. That’s why we whole-heartedly support maintaining a healthy and stimulating workplace where employees can achieve their full potential. With a positive attitude and a rigorous approach, the result is satisfied customers and a workplace that’s right for youMust provide resume and drivers abstractWe are willing to train ! If you are motivated to learn we can help youJob Types: Full-time, PermanentSalary: $16.00-$25.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceStore discountVision careSchedule:8 hour shift\",\n            \"location\": \"Exeter Station Rd, One Hundred Mile House, BC\"\n        },\n        {\n            \"id\": \"440E8B1D75DBF54295E2DAA06008FA9F\",\n            \"cityName\": \"610 Upper James Street, Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4b1d8574fc464f50\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Rtc Appliances\",\n            \"rowSalary\": \"$16–$24 an hour\",\n            \"date\": 1694483974181,\n            \"dateOfPosted\": 1694483973964,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1926133,\n                    \"lon\": -79.8980193\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Upper James St, Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Description: Customer Service RepresentativeDuties:- Provide exceptional customer service by promptly and courteously responding to customer inquiries and resolving issues- Handle a high volume of incoming calls, emails, and live chats from customers- Assist customers with product information, order status, billing inquiries, and general account support- Process orders, returns, and exchanges accurately and efficiently- Maintain accurate customer records and update information as needed- Collaborate with other departments to resolve customer issues and escalate complex cases when necessary- Stay up-to-date with product knowledge and company policies to provide accurate information to customersRequirements:- High school diploma or equivalent required; college degree preferred- Previous customer service experience in a fast-paced environment is highly desirable- Excellent verbal and written communication skills- Strong problem-solving and decision-making abilities- Ability to multitask and prioritize tasks effectively- Proficient in using computer systems and navigating various software applications- Ability to work independently as well as part of a teamWe offer competitive pay, comprehensive benefits package including medical and dental. Join our team of dedicated professionals who are passionate about providing exceptional customer service.To apply for this position, please submit your resume along with a cover letter highlighting your relevant experience.Job Type: Full-timeSalary: $16.00-$24.00 per hourBenefits:Company eventsDental careDisability insuranceExtended health careOn-site parkingFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridaySupplemental pay types:Bonus payAbility to commute/relocate:Hamilton, ON L9C 2Y8: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 2 years (required)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Upper James Street, Hamilton, ON\"\n        },\n        {\n            \"id\": \"9DD848A987E0B01397E8224E5D589537\",\n            \"cityName\": \"St. John's, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ed476ee49ac891ab\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Executive Aviation\",\n            \"rowSalary\": \"$17.00–$20.90 an hour\",\n            \"date\": 1694483930205,\n            \"dateOfPosted\": 1694483930022,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.5615096,\n                    \"lon\": -52.7125768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St. John's\",\n                \"formattedAddress\": \"St. John's, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 1\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"St. John's\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Here we grow again! Do you want to be part of an amazing team of customer service specialists who work together to provide exemplary service? Is going above and beyond in your DNA? Does the opportunity to provide exemplary service to passengers on some of Canada’s best airlines appeal to you? Are you someone who is known for reliability and flexibility? Come join us! Executive Aviation is hiring part time Customer Service agents at the St. John's Newfoundland Airport (YYT) who love working in the tourism industry. This role reports directly to an amazing Station Manager who is there to support you. What do we offer? Executive Aviation is proud to have very progressive wage ranges with lots of earning potential. The range of salary for this position is $17.00-$20.90/hour. We offer comprehensive Health benefits for all part- and full-time team members. We also have fantastic flight benefits with the airlines that we support. We want to see you grow and reach your goals! The sky's the limit with Executive Aviation. Responsibilities Our customer service agents are responsible for creating a safe and stress-free experience for travelers as they begin and end their journeys: Helping passengers check-in Supporting self-serve kiosks Preparing aircraft for on-time departures Facilitating deplaning and boarding of passengers Greeting passengers who are arriving from flights Following airline specific check-in policies and procedures Positively work airline crew Light grooming duties Kindly enforce airline and airport policies and procedures to passengers And more! Qualifications You are a true customer service champion with a minimum of two years’ in a customer-facing role You bring a proven track record of punctuality and reliability and understand that performing on time is a cornerstone of airline service You love to multi-task and are comfortable in a fast-paced where time pressures are a way of life You are a great communicator in both individual and group settings and have a demonstrated proficiency with computers and software. Completion or working towards completion of Travel and Tourism Diploma, Marketing or Business Diploma Previous airport experience would be considered an asset Flexible availability to work shift work which includes early mornings, days, late evenings, weekends and/or holidays An ability to meet all conditions of employment:  Restricted Area pass issued by Transport Canada A criminal background check Hold a valid driver’s licenseiDBwmTPWyb\",\n            \"location\": \"St. John's, NL\"\n        },\n        {\n            \"id\": \"BA1CE4247B20B14BFCFB2EEF3F27ACC1\",\n            \"cityName\": \"135 Rainbow Creek Dr, Woodbridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1e29ccb676125033\",\n            \"jobName\": \"Customer Service Representative/Invoicing\",\n            \"companyName\": \"Fotiou Frames Ltd.\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694483929229,\n            \"dateOfPosted\": 1694483928938,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.778904,\n                    \"lon\": -79.632958\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Rainbow Creek Dr, Vaughan, ON L0J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title: Customer Service Representative/InvoicingDuties:Provide exceptional customer service by responding to customer inquiries and resolving issues in a timely and professional mannerHandle a high volume of incoming calls and emails from customersAssist customers with product information, order status, and returns/exchangesProcess customer orders accurately and efficientlyMaintain customer records and update information as neededCollaborate with other team members to ensure customer satisfactionIdentify opportunities to upsell or cross-sell products and servicesFollow company policies and procedures to ensure consistent service deliveryPrepare and invoice orders in Sage Business Vision including weekly Skid Transfer to US warehouses.Prepare, organize and schedule daily truck run for drivers.Schedule pickups with various carriers and freight brokers.Skills:Excellent communication skills, both verbal and writtenStrong problem-solving abilities to address customer concerns effectivelyAbility to multitask and prioritize tasks in a fast-paced environmentAttention to detail to ensure accuracy in order processing and data entryProficient computer skills, including experience with Sage Business Vision CRM software and Microsoft Office SuiteEmpathy and patience when dealing with customer complaints or difficult situationsAbility to work well in a team-oriented environmentIf you are passionate about providing exceptional customer service and have the skills required for this role, we would love to hear from you. Please submit your resume and cover letter detailing your relevant experience.Job Types: Full-time, PermanentSalary: $18.00-$20.00 per hourSchedule:Monday to FridaySupplemental pay types:Overtime payWork Location: In personExpected start date: 2023-10-02\",\n            \"location\": \"Rainbow Creek Dr, Woodbridge, ON\"\n        },\n        {\n            \"id\": \"E2AB5C209EF102D308DF21AC76CDF41D\",\n            \"cityName\": \"Jonview in Etobicoke, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e4a34add396eac3d\",\n            \"jobName\": \"Bilingual Reservations And Customer Service Agent (German Or French)\",\n            \"companyName\": \"Jonview\",\n            \"rowSalary\": \"From $40,000 a year\",\n            \"date\": 1694483915007,\n            \"dateOfPosted\": 1694483914811,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6204946,\n                    \"lon\": -79.5131983\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Etobicoke, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"VALUES:WE WORK AS A TEAM with openness to the ideas and expectations of our colleagues, our customers and our client and supplier partners with a commitment to each other.WE ARE PROFESSIONALS on a constant quest for excellence, tackling challenges methodically, efficiently, and with integrity.WE GO BEYOND our responsibilities to our customers, our colleagues, society, and the environment.Title: Reservations & Customer Service Agent (Bilingual)Remote work availableDescription:This hybrid position is for those who like variation in job responsibilities, switching between two departments on a seasonal basis. This dual opportunity requires and develops a variety of skills while engaging in reservation activities during fall and winter then moving to customer service duties in spring and summer. The successful candidate will be responsible of FIT reservation requests for our customers, requests for information on products, passenger support, and treatment of some complaints.ResponsibilitiesProcess new reservations, cancellations, and amendments to existing reservationsRespond to queries regarding itineraries, products, and services from clients, and suppliersBuild relationships with key clientsProvide passenger assistanceMaintain a high level of Canadian Tourism product and geographical knowledge of CanadaProof reservations to ensure the accuracy and smooth running of booked itinerariesRespond to complaints post-travelAssist in the completion of any projects, as assignedPosition Requirements:Effective oral & written communication in English and French or German a mustEffective oral & written communication Portuguese and Spanish is an assetPost-Secondary School EducationTourism experience is an assetMust be able to work evenings and weekendsAbility to work under pressure and multitaskStrong attention to detail and autonomyTeam spiritDedicated to a high level of customer serviceAble to plan, organize and set priorities & manage processesJonview values diversity in the workplace and is committed to fostering employment equity by encouraging applications from the following designated groups: women, Aboriginal people, people with disabilities, and members of visible minorities. Jonview will work to accommodate people with disabilities throughout the recruitment and selection process. If you require a special arrangement, please contact us so that we can work together to adequately meet your needs. The use of the masculine in this document is for the sole purpose of simplifying the text.Only successful candidates will be contacted.Job Types: Full-time, PermanentSalary: From $40,000.00 per yearBenefits:Casual dressCompany eventsDental careDisability insuranceExtended health careLife insuranceOn-site parkingRRSP matchTuition reimbursementVision careWork from homeSchedule:8 hour shiftEvening shiftMonday to FridayWeekends as neededApplication question(s):Are you available to work evenings and weekends?What are your salary expectations? The starting salary for this role is $40,000.Do you speak Spanish or Portuguese? If so, how would you rate your proficiency level from Beginner to Expert?How would you rate your knowledge of Canadian Geography? Beginner, Intermediate, or Advanced?Are you legally entitled to work in Canada for the duration of your employment?Where are you currently located? This position is hybrid but includes working from our Toronto or Montreal office 1 day a week (if you are located in Toronto or Montreal).Experience:tourism/hospitality: 2 years (preferred)Reservations: 2 years (preferred)Customer service: 2 years (preferred)Language:French (required)German (required)Work Location: Hybrid remote in Etobicoke, ON M9B 6K5\",\n            \"location\": \"Etobicoke, ON\"\n        },\n        {\n            \"id\": \"2BC91EFF0E3D99AA1381CDDC77D9FED0\",\n            \"cityName\": \"Saanichton, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0875fa88c9fb3d26\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Windsor Plywood Keating\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694483908589,\n            \"dateOfPosted\": 1694483908409,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.5962689,\n                    \"lon\": -123.4169023\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saanichton\",\n                \"formattedAddress\": \"Saanichton, BC V8M, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saanichton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Windsor Plywood Keating is a growing Finishing Supply store on Keating Cross Road in Saanichton.We are looking for a Customer service representative to join our team.Customer service is imperative with us, and preference will be given to candidates with a friendly and personable approach.Customer service at our store includes:Greeting customersRunning their purchases through our POS systemCutting plywood or mouldings to sizeLoading the customers purchase in their vehicleKeeping the store in a presentable appearanceStocking shelves and ordering product to maintain stock levelsExperience:Must be physically fit and capable of lifting up to 50 lbs. of weight.Good verbal and written communication skills.Able to work independently (without supervision).We are looking for someone full time 9am to 5pm shift (Sunday and Wednesday off ).Job Type: Full-timeSalary: $18.00-$22.00 per hourBenefits:Dental careExtended health careOn-site parkingFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftAbility to commute/relocate:Saanichton, BC: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Saanichton, BC\"\n        },\n        {\n            \"id\": \"1B81F1C87C40DA51BA487688DA950A68\",\n            \"cityName\": \"Lower Sackville, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4571df9c213abc31\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Money Direct\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694483829785,\n            \"dateOfPosted\": 1694483829368,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.7763767,\n                    \"lon\": -63.6775544\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lower Sackville\",\n                \"formattedAddress\": \"Lower Sackville, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lower Sackville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Would you like to be part of a fun, friendly, management team? Money Direct is a Canadian owned and operated company with 9 Canadian branches, so we are a very close knit accessible team!Job Description What do you do?In the Customer Service Representative role you will do it all, sales, customer service, local area marketing, collections, security of your store, and the list goes on. Your primary function in the CSR role is to provide excellent customer service through the provision of Money Direct Financial Services.Duties/Responsibilities· Provide and ensure quality Customer Service is consistently delivered .· Complete all product and service transactions in the Point of Sale system.· Enter customer information completely and accurately into the Point of Sale system.· Issue Loans quickly and efficiently ensuring risk assessment strategies are utilized· Cross-selling additional products and services to all customers.· Respond to customer complaints and provide resolution.· Ensure store appearance is maintained in adherence to company standards.· Adhere to and ensure proper operational policy/procedures are followed.· Adhere to and ensure proper Security and cash management policy/procedures are followed.· Maintain all audit/compliance policy/procedures· Carry out chargeback/collection activity and complete all collection related tasks assigned.· Ensure financial goals/targets are met for the store.· Maintain proper accounting procedures and ensure all reporting is completed in a timely fashion.· Successfully, open and close the store and complete all paperwork accurately.· Maintain cash and inventory accuracy/controls and effectively control cash variances.· Drive revenue through the implementation of company-wide marketing plans and execution of promotions as well as through other local area marketing efforts.· All other job related duties as directed by Management.Qualifications/Skills:· High School Diploma· 1-2 years customer service and cash handling· Experience in the financial services industry highly desirable.· Friendly, outgoing, confident / problem solver, flexible, self-motivated, team player.· Customer Service Orientation· Accountability· OrganizationWe invest in our employees, and offer extensive training, and development programs to set you up for future success. If we sound like a fit and you’re ready to start an exciting career with an organization that encourages employee growth, apply today! We look for bright, energetic, motivated individuals who are interested in learning and developing their careerJob Types: Full-time, PermanentJob Type: Full-timeSalary: From $15.50 per hourBenefits:Dental careExtended health careFlexible scheduleLife insuranceOn-site parkingPaid time offSchedule:Day shiftEvening shiftWeekend availabilitySupplemental pay types:Bonus payCOVID-19 considerations:Consistent sanitizing of all high touch surfaces.Education:DCS / DEC (required)Experience:Customer service: 2 years (required)Work Location: In person\",\n            \"location\": \"Lower Sackville, NS\"\n        },\n        {\n            \"id\": \"039722011DE363B1CCE67CD072D73280\",\n            \"cityName\": \"Sidney, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b134b3b6069d1fd2\",\n            \"jobName\": \"Cashier, Customer Service\",\n            \"companyName\": \"Sidney Chevron\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694483787747,\n            \"dateOfPosted\": 1694483787565,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.6502411,\n                    \"lon\": -123.399005\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sidney\",\n                \"formattedAddress\": \"Sidney, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sidney\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Will trainWork setting Gas bar Tasks Operate cash register Scan items Receive payment for goods or services Suggestive selling Stock shelves and clean counter area Greet customers Wrap or place merchandise in bags Provide customer service Assist customers with self-checkout Participate in promotional activities Verify the age of customers when selling lottery tickets, alcohol or tobacco products Computer and technology knowledge Electronic cash register Interac machine Price scanner Computerized inventory record keeping and re-ordering system Transportation/travel information Public transportation is available Work conditions and physical capabilities Fast-paced environment Work under pressure Handling heavy loads Physically demanding Attention to detail Combination of sitting, standing, walking Standing for extended periods Bending, crouching, kneeling Personal suitability Accurate Excellent oral communication Flexibility Team player Screening questions Are you currently legally able to work in Canada?Work Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Sidney, BC\"\n        },\n        {\n            \"id\": \"114139884D6EEEF8A4DAF89EC475A505\",\n            \"cityName\": \"Saint-Bruno-de-Montarville, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=da2af0011af67af7\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"Québec Loisirs\",\n            \"rowSalary\": \"$15.25 an hour\",\n            \"date\": 1694483749826,\n            \"dateOfPosted\": 1694483749635,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.52597400000001,\n                    \"lon\": -73.3406679\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St-Bruno-de-Montarville\",\n                \"formattedAddress\": \"St-Bruno-de-Montarville, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"La Vallée-du-Richelieu Regional County Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"St-Bruno-de-Montarville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsScreening questions Are you available for the advertised start date? Are you currently a student? Are you currently legally able to work in Canada? Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Health benefits Dental plan Disability benefits Health care plan Paramedical services coverage Vision care benefits Financial benefits Bonus Long term benefits Life insurance Other benefits Parking availableWork Term: PermanentWork Language: BilingualHours: 20 to 30 hours per week\",\n            \"location\": \"Saint-Bruno-de-Montarville, QC\"\n        },\n        {\n            \"id\": \"B84ED55C8BD0457A8C3882E2E5F7E9AA\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f73770006871cd52\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Korean Catholic Church Credit Union\",\n            \"rowSalary\": \"$39,500–$65,000 a year\",\n            \"date\": 1694483718011,\n            \"dateOfPosted\": 1694483717799,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 39500.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    39500.0\n                ],\n                \"range\": {\n                    \"gte\": 39500.0,\n                    \"gt\": null,\n                    \"lte\": 39500.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service Representative (CSR) provides professional and efficient service to members/clients utilizing sound knowledge of Korean Catholic Church Credit Union products and services to fulfill their transactional needs and provide an excellent member/client experience.This role quickly develops a rapport with members/clients and proactively identifies their needs, promotes Korean Catholic Church Credit Union products and services, and refers members/clients to the appropriate internal partner based on the complexity of their requirements, while ensuring compliance and adherence to operational policies and procedures.As part of ongoing development, this role will require that you be flexible to assist in other areas of the branch, as required, with greeting and directing members as well as opening new accounts and dealing with general inquiries regarding our products and services.---------------------------------------------------------------------------------------------------------------------------Major Responsibilities:- Responds to member/client needs by delivering friendly, efficient service and accurately processing various financial transactions including deposits, withdrawals, cheque cashing/ordering, bill payments, money orders, transfers, or wire transfers.- Resolves member/client issues at the first point of contact where possible and refers to senior internal officers based on the complexity of the situation.- Strives to create a positive member/client experience through each interaction and looks for ways to continuously improve the overall member/client branch experience.- Maintains a strong level of knowledge with respect to Korean Catholic Church Credit Union Savings’ products, services, sales disciplines, and current marketing campaign programs/strategies.- Actively participates in all sales disciplines (i.e., high five goals, side-by-side coaching, quarterly sales cycle training) and participates in branch campaign initiatives.- Utilizes quarterly learning to adapt strategies and increase results.- Ensures ongoing compliance and adherence to operational policies, procedures, objectives, and Code of Business Conduct.- Actively collects applicable fees and revenues, contributing to branch financial goals.- Finds solutions to enhance the member/client experience and minimize factors that may negatively impact the member/client experience.---------------------------------------------------------------------------------------------------------------------------Require qualifications:- College diploma or equivalent.- Bilingual (English/ Korean) must be fluent.- Studied/Major in accounting field.- Solid communication skills (including verbal and written)- Proficient in MS Office (Word, Excel, and PowerPoint).- Time Management skills.- Proven multi-tasking and troubleshooting skills.---------------------------------------------------------------------------------------------------------------------------천주교신협 (Korean Catholic Church Credit Union)에서 함께 일할 직원을 아래와 같이 모집합니다. ·모집 부문: Full Time CSR (Teller)모집 인원: 1 명지원 자격: 캐나다에서 합법적으로 일할 수 있는 신분, 영어와 컴퓨터 사용능력 필수제출 서류: 한글, 영어 이력서 및 자기 소개서* 제출된 서류는 반환하지 않고 서류 심사 합격자에 한하여 인터뷰를 위해 개별 연락 드립니다.금융업무에 관심있으신 분의 많은 지원 바랍니다. 감사합니다.Job Type: Full-timeSalary: $39,500.00-$65,000.00 per yearBenefits:Dental careExtended health careOn-site parkingPaid time offRRSP matchVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payOvertime payApplication question(s):Did you study/major in accounting?Education:DCS / DEC (preferred)Experience:Customer service: 2 years (preferred)Language:Korean (preferred)Work Location: In personExpected start date: 2023-09-25\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"C5C060F40E4F3B69E4D636270277A969\",\n            \"cityName\": \"Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3c937a8cd39c06c2\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"J'Adore Body Sugaring\",\n            \"rowSalary\": \"$15–$17 an hour\",\n            \"date\": 1694483696897,\n            \"dateOfPosted\": 1694483696688,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.895136,\n                    \"lon\": -97.13837439999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: No degree, certificate or diplomaExperience: 2 years to less than 3 yearsWork setting Beauty shop or aesthetic service Tasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Explain the type and cost of services offered Issue receipts and other forms Order office supplies and maintain inventory Perform general office duties Receive and log complaints Receive payments Sell merchandise Advise clients on advertising or sales promotion strategies Consult with clients after sale to provide ongoing support Answer clients' inquiries and provide information Explain procedures, risks and benefits to clients Supervision Customer service clerk Computer and technology knowledge MS Word Security and safety Basic security clearance Transportation/travel information Own transportation Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Judgement Ability to multitask Screening questions Are you currently a student? Are you currently legally able to work in Canada? Do you have previous experience in this field of employment? Health benefits Vision care benefits Financial benefits GratuitiesWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Winnipeg, MB\"\n        },\n        {\n            \"id\": \"FD6CD254B2F46F48E0698AB28C2F3825\",\n            \"cityName\": \"328 Speedvale Avenue East, Guelph, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fa9229a0ede42929\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Cornell Animal Hospital\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694483694215,\n            \"dateOfPosted\": 1694483693940,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5781857,\n                    \"lon\": -80.2419376\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Guelph\",\n                \"formattedAddress\": \"Speedvale Ave E, Guelph, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Wellington County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Guelph\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title: Customer Service RepresentativeDuties:- Respond to customer inquiries via phone, email, and chat in a timely and professional manner- Provide accurate information about products, services, and company policies- Assist customers with placing orders, tracking shipments, and resolving any issues or complaints- Maintain customer records and update information as necessary- Collaborate with other departments to ensure customer satisfaction- Follow up with customers to ensure their needs have been metRequirements:- Excellent communication skills, both verbal and written- Strong problem-solving abilities and attention to detail- Ability to multitask and prioritize tasks effectively- Proficient in using computer systems and software applications- Previous customer service experience is preferred but not required- High school diploma or equivalentWe offer competitive pay, a positive work environment, and opportunities for growth within the company. If you are a motivated individual with a passion for providing exceptional customer service, we would love to hear from you.To apply, please submit your resume and cover letter detailing your relevant experience and why you are interested in this position.Job Type: Full-timeSalary: $18.00-$20.00 per hourBenefits:Employee assistance programExtended health carePaid time offRRSP matchSchedule:Monday to FridayWeekends as neededAbility to commute/relocate:Guelph, ON N1E 1N5: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Speedvale Avenue East, Guelph, ON\"\n        },\n        {\n            \"id\": \"4EFCF1E5F8DA307E46930C693E067BF3\",\n            \"cityName\": \"805 Crowley Ave, Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=259356db1af2025b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Makr\",\n            \"rowSalary\": \"From $50,000 a year\",\n            \"date\": 1694483661973,\n            \"dateOfPosted\": 1694483661795,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8981956,\n                    \"lon\": -119.4834218\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Crowley Ave, Kelowna, BC V1Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our common goal, our passion, is to create global communities connected through play and social experiences. We believe the world needs more places where coming together, connecting and having fun are inevitable. What makes us jump out of bed every morning is knowing we’re integral to create these meaningful places, and we need people like you to help us build them.Our Customer Service Team, within our global Commercial Group, needs the next, great, Customer Service Representative (CSR) to deliver outstanding support to our sales professionals and our customers. This is a position suited for customer-focused, self-directed, solution-seekers.Our CSRs are a critical piece of the design and sales and process. Astute listeners, knowing how to elicit information from customers to help design and quote the spray park or playground of their dreams. Effective communicators, able to convey the design and technical details of our features, bringing the catalogue pictures to life. Techies, confidently navigating our systems and CRM (Creatio) to create detailed and accurate orders. Part administrator, part advisor and part account manager, you’re 100% problem solver.Although no two days are the same, here are the activities you’ll focus on:· Create documents and reports for internal and external use (sales funnel reports, quotes, contracts)· Support our sales team with administration, trouble shooting and research· Manage the order release process· Participate in training and professional development to learn new and current product solutions, processes and design philosophies· Delve into technical details of processes and systems, curious to find better ways and better methods· Apply your knowledge, maturity and common sense for what is non-negotiable while also knowing where you have autonomy to make adjustmentsJob Types: Full-time, PermanentSalary: From $50,000.00 per yearBenefits:Casual dressCompany eventsDental careDisability insuranceEmployee assistance programExtended health careFlexible scheduleLife insuranceOn-site parkingPaid time offRRSP matchTuition reimbursementVision careWork from homeFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payExperience:Customer service: 1 year (preferred)Work Location: Hybrid remote in Kelowna, BC V1Y 7G6\",\n            \"location\": \"Crowley Ave, Kelowna, BC\"\n        },\n        {\n            \"id\": \"EB65918C48B288106875CA0B595A9A6B\",\n            \"cityName\": \"11474 Winterburn Rd NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=38e5e64addcd300f\",\n            \"jobName\": \"Office Assistant/Customer Service\",\n            \"companyName\": \"Window Mart Inc.\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694483660836,\n            \"dateOfPosted\": 1694483660667,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5517793,\n                    \"lon\": -113.6890038\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Winterburn Rd NW, Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Office AssistantWindow Mart Inc. is the leading provider of windows and doors in Alberta, Saskatchewan, and Ontario. We specialize in supplying and installing beautiful, high-quality, and energy-efficient, windows and doors. As an industry leader in Canada, we are proud to provide our customers with exceptional serviceWindow Mart company is looking for a full time office assistant, we are looking for an enthusiastic, dedicated, and customer oriented person.Please note the interview will be held at our head office in EDMONTON. Related travel expenses will be covered.Responsibilities:Perform various administrative tasks such as filing documents, organizing mail and tracking e-mails.Receiving and tracking phone calls, checking the voicemail and returning the phone calls in a timely manner.Scheduling appointments, keep track of the appointment’s schedule.Communicate with clients, suppliers and work associates as required.Other office activities as determined by the supervisor.Qualifications:Grade 12 Diploma or General Equivalency Diploma (GED).Minimum of 1 year of office experienceProficient in Office 365Good oral and written communication skills, learning ability, initiative, mature judgment and responsible work habits.Job Type: Full-timeSalary: From $20.00 per hourBenefits:Company eventsOn-site parkingPaid time offFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayAbility to commute/relocate:Edmonton, AB T5S 2Y3: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Administrative experience: 1 year (preferred)Front desk: 1 year (required)Work Location: In person\",\n            \"location\": \"Winterburn, AB\"\n        },\n        {\n            \"id\": \"09A90B856C4530A08F7E953AB2D5D8B4\",\n            \"cityName\": \"Atlin, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4b995cc38d3ef797\",\n            \"jobName\": \"Clk 12r - Customer Service Representative\",\n            \"companyName\": \"Bc Public Service\",\n            \"rowSalary\": \"$52,803–$59,608 a year\",\n            \"date\": 1694483646221,\n            \"dateOfPosted\": 1694483646036,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 59.578028,\n                    \"lon\": -133.689524\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Atlin\",\n                \"formattedAddress\": \"Atlin, BC V0W, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Stikine Region\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Atlin\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 52803.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    52803.0\n                ],\n                \"range\": {\n                    \"gte\": 52803.0,\n                    \"gt\": null,\n                    \"lte\": 52803.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Posting Title  CLK 12R - Customer Service Representative  Position Classification  Clerk R12  Union  GEU  Work Options  On-Site  Location  Atlin, BC V0W 1A0 CA (Primary)  Salary Range  $52,803.18 - $59,607.79 annually  Close Date  9/25/2023  Job Type  Regular Full Time  Temporary End Date  Ministry/Organization  BC Public Service -> Citizens' Services  Ministry Branch / Division  Service Delivery/Service BC  Job Summary Apply your expertise and passion for innovation to this rewarding career opportunityMINISTRY OVERVIEWDedicated to making life better for British Columbians, the Ministry of Citizens’ Services (CITZ) delivers key services that people rely on. CITZ delivers accessible, multi-channel services, through a single-point-of-contact service approach to people in urban and rural communities through Service BC, and delivers the digital face of government at www.gov.bc.ca. CITZ also provides support for the expansion of high-speed internet connectivity throughout the province, leadership across government to modernize information management and technology resources, trusted data services to government agencies, prompt, and relevant responses to freedom of information requests, and statistical and economic research, information and analysis to businesses and the public sector. In addition, the ministry manages the Province’s real estate assets, technology systems and equipment, and leverages procurement to increase business opportunities and create rewarding jobs that contribute to local economies and benefit individuals, families, and communities.A service-focused organization, CITZ strives to be a great place to work, where all employees feel both engaged and motivated to do their best.DIVISIONAL OVERVIEWService BC is government’s chief provider of services to B.C. residents and businesses. The work of the division enables the design and delivery of accessible, responsive, and cost-effective services, making it easier for British Columbians and businesses to interact with government. Through a provincial network of 65 in-person offices and the Provincial Contact Center, Service BC provides approximately 300 government services for more than 40 partner ministries and agencies. Our team member’s unwavering commitment to an ethic of service has driven consistently high people and business satisfaction rates. In support of the division’s overarching goal of providing residents and businesses with seamless, multi-service access to government programs, the Division’s service offerings are marketed to partner ministries and the broader public sector to expand our continuum of services and leverage common platforms.Within Service BC, our vision is to deliver innovation, value, and service excellence to the people of British Columbia, with the aspirational goal of becoming a best-in-class public service delivery organization. Our people and our culture are important to us. As a team, we are motivated to deliver an excellent service experience to British Columbians, businesses, colleagues, peers, clients, and partners. We believe in being kind and helpful, and are committed to delivering “Service with Heart”.JOB OVERVIEWThe Service BC Customer Service Representative (CSR) maintains a positive, empathetic, and professional attitude when providing service and answering enquires. It requires the ability to identify and assess peoples’ needs to effectively and efficiently deliver an excellent customer service experience.The CSR provides services in-person, by phone, and through digital channels. The ability to provide clerical and administrative support such as data entry, reviewing applications for completeness, handling payments, and providing appropriate solutions, within government guidelines to a diverse population of people is essential to this role.JOB REQUIREMENTSMinimum Grade 12 graduation or equivalent (GED).Experience providing inclusive customer service to diverse clienteles. Experience using digital applications to search for and record information. Preference may be given to applicants with the following:Multiple years of experience in any of the above requirements.Experience providing in-person customer service.Experience providing customer service though phone or digital channels.Experience delivering customer service in a high volume, fast-paced, rapidly changing environment.Experience with conflict resolution and de-escalating situations.Experience providing services to a diverse population some of whom may be experiencing poverty issues, substance use, or mental health concerns.Experience maintaining administrative files and record keeping.Experience delivering service in a regulated or legislated environment following processes and procedures.Customer Service training and/or education. Experience handling financial transactions. WILLINGNESS Willingness to travel occasionally to provide relief coverage to other work sites (Service BC Centres, exam locations, etc.). For questions regarding this position, please contact melody.olsen@gov.bc.caAbout this Position:An eligibility list may be established to fill future temporary and permanent vacancies across the Ministry of Citizens' Services This position has full time on-site requirements.Employees of the BC Public Service must be located in BC at the time of employment.Frequently referred to as the Switzerland of the North, Atlin resides on the province's largest natural lake, Atlin Lake. Atlin is also home to massive ice fields and popular activities include boating, fishing, and skiing. Some unique activities distinct to Atlin are glacier hiking and snowshoeing, and mountain biking is also popular.Working for the BC Public Service:The BC Public Service is committed to creating a diverse workplace to represent the population we serve and to better meet the needs of our citizens. Consider joining our team and being part of an innovative, inclusive and rewarding workplace.The Indigenous Applicant Advisory Service is available to applicants that self-identify as Indigenous (First Nations, status or non-status, Métis, or Inuit) seeking work or already employed in the BC Public Service. For guidance on applying and interviewing, please contact IndigenousApplicants@gov.bc.ca or 778-405-3452.The BC Public Service is an award-winning employer and offers employees competitive benefits, amazing learning opportunities and a chance to engage in rewarding work with exciting career development opportunities. For more information, please see What We Offer.How to Apply:Your application must clearly demonstrate how you meet the job requirements listed above.Cover Letter: NO - Please do not submit a cover letter as it will not be reviewed.Cover Letter: YES - A cover letter is required as part of your application. The content and/or format of your cover letter may be evaluated as part of the assessment process.Questionnaire: YES - You will need to complete a comprehensive questionnaire to demonstrate how you meet the job requirements. Include all relevant information about your educational accomplishments and employment history including job titles, start and end dates (month and year) of your employment, and how you obtained your relevant experience. The questionnaire will take approximately 60 minutes to complete.Helpful tips, videos and more regarding the application process can be found on the Your Job Application page of MyHR. If you are experiencing technical difficulty applying, e-mail BCPSA.Hiring.Centre@gov.bc.ca, before the stated closing time, and we will respond as soon as possible.Additional Information:A Criminal Record Check (CRC) will be required.Applicants selected to move forward in the hiring process may be assessed on the Knowledge, Skills, Abilities and Competencies as outlined in the attached Job Profile located at the bottom of the posting.Applications will be accepted until 11:00 pm Pacific Standard Time on the closing date of the competition. Job Category  Administrative Services \",\n            \"location\": \"Atlin, BC\"\n        },\n        {\n            \"id\": \"68B957ADE4A915DCCBF714F7638157AB\",\n            \"cityName\": \"Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f0645a438b3fbaaa\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Cloverdale Paint Inc\",\n            \"rowSalary\": \"$17.50–$18.50 an hour\",\n            \"date\": 1694483460401,\n            \"dateOfPosted\": 1694483459997,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4284207,\n                    \"lon\": -123.3656444\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cloverdale Paint is the largest family owned and operated paint company in North America. With over 70 Company stores and 150 Authorized Dealers across Canada, Cloverdale Paint has had a special relationship with its customers ever since the company was founded in 1933.Cloverdale Paint has an immediate opening for a full-time position at our store in Victoria, BC The successful candidate should have previous customer service experience and a positive attitude.This individual should be available to work for 4-5 shifts per week.We are located at 1616 Cedar Hill X Road, Victoria, BCCloverdale offers a very competitive compensation package and strives to be The Place to Be not only for customers but employees as well.WHAT WE OFFERCompany paid benefits – Medical, Dental and VisionAnnual cost of living salary increasesProfit-sharing ProgramFamily Assistance ProgramStaff DiscountsComprehensive trainingA supportive and growth-oriented management teamA great work environment with collaborative and caring colleagueRESPONSIBILITIESAnswering basic customer inquiries in person and by phoneDetermining and recommending products to customers ensuring the customer is supplied with all items required for their projectTinting & shaking paint accuratelyKeying in sales and operating basic functions of the POS systemREQUIREMENTSAt least 1-year of Retail Sales and/or Paint Industry experienceAbility to lift up to 50lb regularlyAbility to stand for long periods of timeAbility to work in a fast-paced environmentExcellent customer service skillsAttention to detailGood communication skillsStrong problem solving skillsTeam playerStrong work ethic, with a can-do attitudeWe are accepting resumes in store from candidates at 1616 Cedar Hill X Road, Victoria, BCOur employees enjoy excellent work environments, respectful workplaces with credible leadership and receive fair remuneration and annual profit sharing. Be part of a Canadian family owned business and be valued, appreciated and respected!Job Types: Full-time, PermanentSalary: $17.50-$18.50 per hourBenefits:Casual dressDental careEmployee assistance programExtended health careFlexible scheduleOn-site parkingPaid time offProfit sharingStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftWeekends as neededAbility to commute/relocate:Victoria, BC: reliably commute or plan to relocate before starting work (required)Application question(s):Are you capable of standing for long periods of time?Are you capable of lifting up to 50 lb regularly?Are you available to work 4-5 shifts per week?Are you available to work weekends?Experience:Customer Service: 1 year (required)Paint/Coatings: 1 year (required)Work Location: In person\",\n            \"location\": \"Victoria, BC\"\n        },\n        {\n            \"id\": \"AC816F08EE5005062CC04BB8DC9426B1\",\n            \"cityName\": \"4848 Victoria Avenue, Niagara Falls, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8b442bd5ea76027f\",\n            \"jobName\": \"Customer Service And Programming Manager\",\n            \"companyName\": \"Niagara Falls Public Library\",\n            \"rowSalary\": \"$52.92 an hour\",\n            \"date\": 1694483413958,\n            \"dateOfPosted\": 1694483413535,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1046199,\n                    \"lon\": -79.07322769999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara Falls\",\n                \"formattedAddress\": \"Victoria Ave, Niagara Falls, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Niagara Falls\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 53.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    53.0\n                ],\n                \"range\": {\n                    \"gte\": 53.0,\n                    \"gt\": null,\n                    \"lte\": 53.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Manager, Customer Service and ProgrammingNiagara Falls Public LibraryFull-Time, PermanentNiagara Falls Public Library is seeking an individual for the role of Customer Service and Programming Manager to lead and manage library staff in creating an outstanding library experience and ensuring that services satisfy the communities’ diverse needs.This encompasses developing a deep understanding of the community; working with others to plan, design, deliver, and assess frontline public services and programs including circulation and information services, collections, and the maintenance of loans delivered through all Library locations; and working with the Management Team to identify and assess current services for improvement or redesign.The successful candidate will have a demonstrated commitment to organizing and managing a strong team, strong attention to detail, and enthusiasm for delivering exceptional services that meet community needs. The successful candidate will also demonstrate responsibility and a strong work ethic.Key Responsibilities:Leadership:· Directs the development, delivery and evaluation of all loans, collection and information services, and programmes to all ages and to all customers, ensuring system-wide coordination.· Implements services that complement each other at NFPL's physical and virtual branches.· Develops short and long-term customer service plans to implement the Library's strategic objectives.· Implements and sustains customer-centred services, both in person and in virtual space.· Ensures that service offerings throughout the system meet the Library's short and long-term objectives, and are consistent and fully supported.· Guides a frontline team that engages with vulnerable populations requiring connections to community supports.Management:· Collaborates with management and staff teams to ensure the effective and efficient delivery of system-wide library services, in order to fulfill the Library's strategic objectives.· Ensures that service offerings throughout the system meet the Library's short and long-term objectives, and are consistent and fully supported.· Ensures the consistent, effective and customer-friendly delivery of all public services.· Operationalizes service changes and innovations.· Monitors and interprets operational and service trends, including those from other organizations, and ensures relevant adaptations.· Evaluates service performance to ensure consistency and relevance to the communities served.· Manages public relations, including customer feedback and complaints.· Applies change management strategies to assure effective implementation of change and acceptance by all.· Makes presentations and represents the Library at public meetings and in the community as required.· Manages the effective performance of all staff directly or indirectly supervised.· Prepares statistics and reports as required.· Stays abreast of professional and community knowledge, in order to enhance services and the· Library's community role.· Attends and participates in Board and Board Committee meetings as required.· Participates in the budget process to ensure adequacy of resources to execute objectives and monitors assigned budgets.· Ensures effective operation of physical plant and equipment.· Manages major projects.· In the absence of the CEO and Director of Customer Experience, acts as senior leader of the corporation of NFPL with delegated powers of authority in all areas including but not limited to: Human Resources; Emergency Management; and Communications.· Shares accountability for ensuring a safe and respectful workplace.· Other duties consistent with job responsibilities.Skills, Knowledge, Training:· Master's Degree in Library and Information Science or equivalent qualification. Master’s in Public Administration, or Masters in Business Administration, or Masters in Social Work considered an asset.· Minimum of seven (7) years related library experience in progressively responsible positions, including five (5) years in a managerial capacity.· Valid G-class License and access to a vehicle.· Demonstrated familiarity with data from various sources and in various formats.· Demonstrated familiarity with current technology.· Key Competencies:· Superior communications· Commitment to outstanding customer service· Data analysis· Planning and organization· Problem-solving/decision-making· Continuous learning· Innovativeness/Change management· Superior interpersonal skills· Leadership focus· Supervisory effectiveness· Engagement and Outreach· Technology - Level Three· Reader’s Advisory & Reference· Programming and OutreachWorkplace Environment:The NFPL strives to be a workplace which fosters respect for all customers and co-workers, and requires employee commitment to the following;· Adherence to the legal requirements of all levels of government, e.g. Health and Safety, Human Rights, Harassment, Freedom of Information and Privacy.· Adherence to the policies and procedures of the Library which implement these requirements.· Building and nurturing positive relationships among and with customers and colleagues.· Culture of teamwork, collaboration and respectful feedback.Position Type:Full-Time, permanentWage:$52.92Work Hours:This position requires day availability in order to support library operations.How to Apply:Email your cover letter and resume detailing your qualifications to hr@nflibrary.caApplications deadline is 4:30 PM Friday September 22nd.Applicants must be eligible to work in Canada. Police/Vulnerable Sector Check required.While we appreciate all applicants, only those selected for an interview will be contacted.The Niagara Falls Public Library is committed to providing accommodations in all aspects of the recruitment and hiring process under the Ontario Human Rights Code and the Accessibility for Ontarians with Disabilities Act (AODA).Job Types: Full-time, PermanentSalary: $52.92 per hourBenefits:Employee assistance programOn-site parkingPaid time offSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Niagara Falls, ON L2E 4C5: reliably commute or plan to relocate before starting work (required)Education:Master's Degree (preferred)Experience:Library: 7 years (preferred)managerial: 5 years (preferred)Work Location: In personApplication deadline: 2023-09-22\",\n            \"location\": \"Victoria Avenue, Niagara Falls, ON\"\n        },\n        {\n            \"id\": \"6A89C7C99D81F72A0362E293665D0739\",\n            \"cityName\": \"55 Ontario Street South, Milton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8a4ae7e763afdd51\",\n            \"jobName\": \"Receptionist/ Customer Service Representative/ Party Host\",\n            \"companyName\": \"Funvilla\",\n            \"rowSalary\": \"$15.50–$16.00 an hour\",\n            \"date\": 1694483311347,\n            \"dateOfPosted\": 1694483311164,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5127272,\n                    \"lon\": -79.86986399999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Milton\",\n                \"formattedAddress\": \"Ontario St S, Milton, ON L9T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Milton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Funvilla® is a fast paced and demanding working environment providing a service to the public Monday to Sunday. Therefore enthusiasm, good communication and flexibility are all important aspects of the job. The role of the Customer Service/Receptionist is to deliver high quality customer service in all areas of the park to ensure that all customers and participants have an enjoyable and safe experience. The Customer Service/Receptionist will take direction from management in carrying out delegated tasks and adopt a leadership role in areas assigned to him/her as required.DUTIES & RESPONSIBILITIES: FRONT DESK/RECEPTION/PARTY HOST1. Ensure that all customers feel welcome and are given responsive, friendly and courteous service always.2. Efficiently check in customers ensuring that waivers have been completed fully (online or paper), allocate relevant color-coded wristbands and compulsory grip socks.3. Provide necessary park information at customer’s request e.g. opening times, prices, safety information, information on services we offer i.e. Birthday Parties etc.4. Ensure the reception area is always kept clean & tidy .5. Conduct regular grip sock replenishment.6. Answer phone calls promptly.7. Host birthday parties as per Funvilla guidelines.8. Provide best party experience during party hosting by providing exceptional customer service during the party and clean up room once party is over.Need someone who can work Weekends Saturday-Sunday and during the week!Job Types: Permanent, Part-time, Full-timeSalary: $15.50-$16.00 per hourFlexible Language Requirement:French not requiredSchedule:Every WeekendHolidaysMonday to FridayExperience:Customer Service: 1 year (preferred)Licence/Certification:Food Handler Certification (preferred)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Ontario Street South, Milton, ON\"\n        },\n        {\n            \"id\": \"86501F5C266D8F498CFEA6384768F73F\",\n            \"cityName\": \"SBO Distributors Ltd. in North Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=13a5d01ddb44d12d\",\n            \"jobName\": \"Customer Service And Data Entry\",\n            \"companyName\": \"Sbo Distributors Ltd.\",\n            \"rowSalary\": \"$40,000–$45,000 a year\",\n            \"date\": 1694483306664,\n            \"dateOfPosted\": 1694483306471,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3199816,\n                    \"lon\": -123.0724139\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"North Vancouver\",\n                \"formattedAddress\": \"North Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"North Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"SBO Distributors Ltd. is a fast growing, fast paced sales and marketing agency working in the mid to high-end gift, jewellery, fashion and accessories/life style market. We work with leading department stores and independent retailers across Canada. We are looking for a strong candidate for a Customer Service and Data Entry position.The Opportunity:A key member of the SBO Distributors Ltd team, the Customer Service and Data Entry personnel will be responsible for a wide variety of administrative support and will also work closely with our customers to ensure high customer satisfaction.The candidate must be able to:Work independently in a small office of 1-4 peopleEnter data and sales orders proficiently and accurately in various forms from excel to online submission (training will be provided)See through order processes including order entering, confirmation, courier tracking and invoicingHandle inbound/outbound calls, providing all customers with exceptional positive customer serviceAssist with Marketing and Sales projectsPerform day-to-day office tasks such as pack and ship small parcels, letters, and photocopy, scan documents, receive delivery (generally small deliveries).We expect the candidate to be efficient, honest, respectful, creative, independent, modest, growth oriented and possessing an excellent customer service mentalityEducation and skills:Post Secondary degree or diplomaExcellent command in Microsoft Office applications (Word, Excel, Powerpoint, Outlook)Tech-Friendly preferred – able to adapt to new softwareHave experience in SAP/Netsuite would be an assetFluency in English is required. Knowledge and/or competency in French is an assetSelf motivated, analytical and very detailed orientedHighly organized and the ability to prioritize and multitaskStrong interpersonal and communication skills on the phone and in personPassionate about helping customers and being the ambassador of the brands we representCandidate must be reliable, responsive and good at relationship buildingWhat we have to offer:A tight-knit team working closely togetherAn open minded and flat management style with plenty of opportunities to offerCompetitive compensation and benefit packageThis position is a full time, permanent position. Following successful completion of probationary period, the position is eligible for health benefits.Very convenient office location close to bus stops and Sea BusExcellent working environmentVacation pay aligns with BC Labour StandardsSalary is commensurate with experienceSBO Distributors Ltd. provided the following inclusive hiring information:We are an equal opportunity employer and consider all qualified applicants equally without regard to race, colour, religion, sex, sexual orientation, gender identity, national origin, veteran status, or disability status.Job Type: Full-timeSalary: $40,000.00-$45,000.00 per yearBenefits:Casual dressDental careExtended health careStore discountVision careSchedule:Monday to FridaySupplemental pay types:Bonus payEducation:Bachelor's Degree (preferred)Experience:Administrative: 1 year (preferred)Customer Service: 1 year (preferred)Language:English (required)Work Location: In personExpected start date: 2023-10-16\",\n            \"location\": \"North Vancouver, BC\"\n        },\n        {\n            \"id\": \"A116DB6C33325A5B5C1CBE05649A8474\",\n            \"cityName\": \"Halton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=333bd7be3c641686\",\n            \"jobName\": \"Customer Service Representative - Long-Term Care\",\n            \"companyName\": \"Halton Region\",\n            \"rowSalary\": \"$19.56–$20.72 an hour\",\n            \"date\": 1694483039952,\n            \"dateOfPosted\": 1694483039760,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.53253720000001,\n                    \"lon\": -79.87448359999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Regional Municipality of Halton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative - Long-term Care At Halton Region, we treat everyone with respect, honesty, fairness and trust. As an equal opportunity employer, we are committed to establishing a qualified workforce that is reflective of the diverse population we serve. Halton Region is committed to providing accommodation to individuals with disabilities throughout the recruitment process.We are proud to operate three non-profit long-term care homes where our employees make a meaningful contribution on the lives of the residents by providing quality care in a family-like atmosphere. As an employee, you will be part of a progressive, service-focused and award winning employer with a diverse and inclusive work environment. We are also recognized as a Registered Nurses' Association of Ontario (RNAO) Best Practice Spotlight organization.You make a positive difference in people’s lives because you provide high quality customer centered services. You operate within a highly ethical environment and will be accountable for going the extra mile, listening to your customers, creatively meeting needs and always being respectful to those you serve. As a result, you will be part of a qualified and strategic team recognized widely for caring, excellence, integrity, inclusiveness and flexibility.Posting ID: 2304Department: Social & Community ServicesDivision: Services for SeniorsPay Range: $19.56 - $20.72Job Type: PermanentHours of Work: 14 hours per weekWork Location: Creek Way Village Long Term Care Facility - 5200 Corporate Drive, BurlingtonEmployee Group: OPSEU LTCPosting Date: September 11, 2023Application Deadline: September 18, 2023 Job Summary This role is the first point of contact for visitors to the Home. This role will provide customer service and clerical support for the Home.Duties & ResponsibilitiesProvide coverage of the reception desk and telephone systems.Greet visitors, respond to and or direct family/residents/visitors’ inquiries.Ensure that the front entry is secure, entry cards are monitored.Monitor the Wander Guard alarms and liaise with the Nurse in Charge as appropriate.Actively screen all staff and visitors entering the home and ensures all protocols for entering the home are adhered to.General office administration including room bookings, ordering and set up of refreshments, posting of materials, office supply inventory, ordering, unpacking and storing, maintaining tour packages and other forms, receipt and distribution of pay stubs.Work with the managers to assist with job postings, performance review and training schedules, immunization databases, credential validation, etc.Provide administrative and clerical support for all departments, including meal ticket administration and receipt of new resident’s clothing, supply delivery as required, and support with minute taking.Assist with updating emergency evacuation kits and any required documentation including photographs.Assist with communication to internal and external stakeholders.Coordinate the scheduling of various clinics in the home including optometry, dental, foot care in collaboration with the service provider.Assist in the admission process through chart assembly, bringing up resident belongings and other related duties.Assist with conducting tours of the home with potential customers.Provide back up support as necessary for the Administrative Assistant to the Administrator and the Resident Care Clerk.Participate in the annual filing and archiving of home documents.Other duties as assigned.Skills & Qualifications EssentialPost-secondary diploma in business administration or related field.Minimum of 2 years’ experience in a customer focused position.Excellent interpersonal skills with the ability to maintain a professional, empathetic and positive environment for all customers.Highly adaptable with the ability to work in a fast-paced environment.Ability to work as part of a team and independently.Excellent problem/complaint resolution skills with the ability to maintain professionalism and composure when responding to customer demands.Demonstrated experience in Microsoft Office software is essential with intermediate to advanced skills in Word, Excel, PowerPoint, and Outlook.Working/ Employment Conditions Employment ConditionsCurrent (obtained within the past six (6) months), original and acceptable Criminal Records Check, including Vulnerable Sector Screening.Current two-step tuberculosis test (obtained within the past six (6) months.Important information about your application:In accordance with requirements in Ontario Regulation 191/11 – Integrated Accessibility Standards and the Ontario Human Rights Code, Halton Region will accommodate the needs of individuals with disabilities throughout the recruitment process. If you require accommodation at any stage of the recruitment process, please inform the Talent Acquisition representative of the nature of the accommodation(s) you require.Please submit your application online. We will accommodate individual needs for applicants with disabilities and others who are not able to apply online. If you experience any issues with submitting your application, please contact HR Access at 905-825-6000 extension 7700.Applications will be accepted until 11:59 p.m. on the deadline date specified on the posting.We encourage applications from all qualified individuals; however, only those under consideration will be contacted.Personal information collected through the job application process will only be used for the purpose of determining qualifications for employment.If selected for an interview, you will be contacted by email and/or phone. Please ensure the contact information provided on your resume is up to date and that you check your email and voicemail regularly.Halton Region serves more than 624,000 residents throughout Burlington, Halton Hills, Milton and Oakville. We are committed to the delivery of high quality programs and services that make Halton a great place to live and work. We engage great people who contribute to meaningful work that makes a positive difference in our community. At Halton, you are encouraged to grow and succeed in your career and are recognized for your accomplishments and contributions.\",\n            \"location\": \"Halton, ON\"\n        },\n        {\n            \"id\": \"8FDEDE52278E57E7AE484547E57728DF\",\n            \"cityName\": \"grt genesis in Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1d3295610d288688\",\n            \"jobName\": \"Technical Customer Service Representative\",\n            \"companyName\": \"Grt Genesis\",\n            \"rowSalary\": \"From $40,000 a year\",\n            \"date\": 1694483013897,\n            \"dateOfPosted\": 1694483013617,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Establish long- term relationships with clients through proactive communication and regular follow -ups to ensure superior client satisfactionManage accounts by checking customers purchasing history, suggest related and new products.Mechanical Engineering experience an assetDevelop and implement strategies that effectively offer customers products or services that best satisfy their needs in terms of quality, price and deliveryEstimating and Expediting an assetmust read write EnglishOutgoing personalityStrong work ethic, with attention to client needs and projectsAbility to work successfully both autonomously and within a teamKey values include a positive attitude ,and team player.Ability to build strong relationships quickly and effectively.computer skillsJob Types: Full-time, PermanentSalary: From $40,000.00 per yearBenefits:Casual dressCompany eventsExtended health careLife insuranceOn-site parkingVision careSchedule:8 hour shiftDay shiftMonday to FridayEducation:AEC / DEP or Skilled Trade Certificate (required)Experience:Technical support: 2 years (required)Work Location: In personExpected start date: 2023-09-18\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"CB0FCCB6D8952DEEDA75135C505A9D49\",\n            \"cityName\": \"94 Dunkirk Road, St. Catharines, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d9aaa28713c4d613\",\n            \"jobName\": \"Front Office Customer Service Representative\",\n            \"companyName\": \"Niagara Rubber Supply\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694483011400,\n            \"dateOfPosted\": 1694483011199,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.16893109999999,\n                    \"lon\": -79.21492409999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St. Catharines\",\n                \"formattedAddress\": \"Dunkirk Rd, St. Catharines, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"St. Catharines\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title: Customer Service RepresentativeDuties:- Provide exceptional customer service by responding to customer inquiries and resolving issues in a timely and professional manner- Handle a high volume of incoming calls, emails, and live chats from customers- Accurately enter customer information and update account details in the system- Assist customers with product information, pricing, and order status inquiries- Process customer orders, returns, and exchanges- Collaborate with other departments to ensure customer satisfaction- Maintain a thorough understanding of company products, policies, and procedures- Identify and escalate priority issues to appropriate team members- Follow up with customers to ensure their needs are met and provide additional assistance as neededQualifications:- High school diploma or equivalent required; college degree preferred- Hands on experience required - on the job training- Excellent communication skills, both verbal and written- Strong problem-solving and decision-making abilities- Ability to work well under pressure in a fast-paced environment- Proficient computer skills, including experience with CRM software and Microsoft Office Suite- Ability to multitask and prioritize tasks effectively- Positive attitude and willingness to go above and beyond for customersWe offer competitive pay and opportunities for career growth within our organization.If you are a motivated individual with a passion for delivering exceptional customer service, we would love to hear from you. Please submit your resume and cover letter detailing your relevant experience.Job Type: Full-timeSalary: $18.00-$20.00 per hourFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Bonus payAbility to commute/relocate:St. Catharines, ON L2P 3H4: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Hand tools: 1 year (preferred)Customer service: 1 year (preferred)Licence/Certification:Driving Licence (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Dunkirk Road, St. Catharines, ON\"\n        },\n        {\n            \"id\": \"F2625E0AF9A4B05CC77EE74C795B39A2\",\n            \"cityName\": \"1550 Carling Ave, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a1257800985815a8\",\n            \"jobName\": \"Customer Service Receptionist\",\n            \"companyName\": \"Young Drivers Of Canada\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694482891642,\n            \"dateOfPosted\": 1694482891442,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.35917600000001,\n                    \"lon\": -75.79599209999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Carling Ave, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About UsWe are a locally-owned family business operating all Young Drivers locations in Ottawa. We run the daily operations for all 5 locations out of our office located next to our Carling classroom. YD Ottawa, we're more than just a driving school—we're a community. Our team thrives on collaboration, inclusivity, and a genuine love for our work. We're LGBTQ+ friendly and committed to supporting each other at every turn. If you're a team player who doesn't take life too seriously but values hard work, you'll fit right in.ResponsibilitiesPrioritize tasks effectivelyAnswer phones and emails and efficiently address customer queries and manage bookingsHandle administrative tasks: paperwork, emails, scheduling and date entryUse conflict resolution skills to find solutions for customers that are not pleasedBuild and maintain a positive rapport with customersQualificationsHighschool diplomaCustomer service experienceOffice admin experience is preferred, not mandatorySkillsSelf-starter with attention to detailComfortable on the phone and customer relationsWillingness receive feedback and make improvements to their customer resolution and inbound sales skillsTeam player, loyal, empathetic, and reliableStrong written and verbal communication skillsA sense of humour and a positive attitudeKey Performance IndicatorsCustomer satisfactionTask completionFeedback from colleaguesOpportunities for Professional DevelopmentBased on performance, there are opportunities to take on additional responsibilities and grow within the business. We are committed to helping our team grow by sharing our range of skills and experiences. We're always open to hosting or signing up for workshops to help us all thrive. Collaboration is key here—your ideas are always welcome.Flexible Work ArrangementsOnce you're fully trained and capable of working independently, we offer a modified workweek: you'll work 9 hours for four days a week, and 8 hours on the fifth day. This fifth day alternates with a day off the following week.How to Apply:Complete the assessments within this job posting to be considered for an interview. Initial interviews may be followed up with a second round for suitable candidates. While we'll cover the usual interview questions, we also make room for open conversation. We're interested in more than just your qualifications; we want to get to know you and see your unique personality come through.Job Types: Full-time, PermanentSalary: $20.00-$22.00 per hourBenefits:Casual dressDental careExtended health careOn-site parkingPaid time offVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftAbility to commute/relocate:Ottawa, ON K1Z 8S8: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:customer service experience in an office setting: 2 years (preferred)Language:English (required)Work Location: In person\",\n            \"location\": \"Carling Avenue, Ottawa, ON\"\n        },\n        {\n            \"id\": \"094396118CED4C84CFA4653F5AF2FDF8\",\n            \"cityName\": \"517 Pandora Ave E, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9979e9de227f9bbf\",\n            \"jobName\": \"Customer Service - Transcona East End Community Club\",\n            \"companyName\": \"Transcona East End Community Club\",\n            \"rowSalary\": \"$14 an hour\",\n            \"date\": 1694482887847,\n            \"dateOfPosted\": 1694482887674,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8934199,\n                    \"lon\": -96.9859699\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Pandora Ave E, Winnipeg, MB R2C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Front Desk Staff - Must be 18About usTranscona East End Community Club - Front Desk StaffGreeting players, coaching staff and visitors as they enter the facility.Collect payment for ice and hall rentals.Greeting players, coaching staff and visitors as they enter the facility.Directing visitors to follow health and safety protocol. Some experience working with the pubic is preferable.Job Type: Part-timePart-time hours: 10-15 per weekSalary: $14.00 per hourSchedule:Evening shiftWeekends as neededCOVID-19 considerations:We provide all PPE.Experience:Customer Service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Pandora Ave E, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"AAD8134F2A12D668EC03E7202D5F3E8F\",\n            \"cityName\": \"407-8 Speers Rd, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=aa8408bbe410a944\",\n            \"jobName\": \"Front Desk Customer Service Representative\",\n            \"companyName\": \"Oakville Swim Academy\",\n            \"rowSalary\": \"$16.50–$19.00 an hour\",\n            \"date\": 1694482880889,\n            \"dateOfPosted\": 1694482880700,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4274228,\n                    \"lon\": -79.70875029999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Speers Rd, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Duties and Responsibilities:Answers telephones, responds to inquiries, takes messages and screens and directs phone calls in a professional manner.Create and update social media accounts under the supervision of communication & external relations director.Processes student registrations using effective sales/customer service techniques.Resolves customer concerns/complaints using a professional approach.Assists members with purchases of merchandise and vending.Greets parents and students as they report to the front desk.Checks in students on the attendance tracking system.Maintains cleanliness of the front desk area, changing areas, restrooms and observation area.Checks voicemail and email correspondence and responds in a timely manner.Updates informational displays with accurate and timely promotions and literature.Provides occasional administrative support for management personnel, including the General Manager.Makes collection calls to resolve open account problems.Prepares daily student lesson schedules for use by deck supervisor and/or instructors.Enforces safety rules and regulations to prevent accidents.Fulfills other duties and responsibilities as assigned by the Employer.Education/Experience:High school diploma or GED required.Some college preferred.One to two years previous customer service and/or administrative office experience preferred but not required.Intermediate level computer skills required using Word, Excel and other software systems.Experienced in JackRabbit software preferred but not required.Certifications and licenses:CPR, First Aid and AED certification preferred but not required.NLS + Instructors certification preferred but not required.Work Remotely:NoFirst 3 months start at $16.50/hr. Once probation period has been successfully completed, move up to agreed rate of pay.Training for new CSR hires will be conducted during the beginning of August, specifically during morning shifts between 7:00 am and 1:30 pm. We understand the importance of a flexible schedule, especially during the initial weeks of transitioning into the role. As such, we offer flexible shifts for the first 2-3 weeks of September to accommodate individual availability.Following the initial training period, starting from the end of September, regular evening and weekend shifts will commence. This will provide a more stable schedule for our Customer Service Representatives.We aim to create a work environment that supports a healthy work-life balance, and we appreciate your understanding and willingness to adapt to the evolving shift requirements.Job Types: Part-time, PermanentPart-time hours: 10-20 per weekSalary: $16.50-$19.00 per hourBenefits:Casual dressCompany eventsFlexible scheduleOn-site parkingStore discountTuition reimbursementWellness programFlexible Language Requirement:French not requiredSchedule:10 hour shift4 hour shift8 hour shiftDay shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Oakville, ON: reliably commute or plan to relocate before starting work (required)Application question(s):Are you available to work between the hours of 2pm-10 pm on weeknights and / or 7 am -5:30 pm on weekends?Are you available to work on Monday's and or Tuesday's 2-9:30 and Saturday's 7:00-1:30 pm?Education:Secondary School (preferred)Experience:Customer service: 1 year (required)Work Location: In personApplication deadline: 2023-09-18Expected start date: 2023-09-23\",\n            \"location\": \"Speers Rd, Oakville, ON\"\n        },\n        {\n            \"id\": \"9C7DFBAB31BBC06A52286F9E9905185C\",\n            \"cityName\": \"1-6503 67 St, Red Deer, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e778326775e946a3\",\n            \"jobName\": \"Technical Support & Customer Service Agent (Bilingual English/French)\",\n            \"companyName\": \"Visual-Eyes Software (Soth Inc.)\",\n            \"rowSalary\": \"$18.52–$20.23 an hour\",\n            \"date\": 1694482231258,\n            \"dateOfPosted\": 1694482231012,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.268975,\n                    \"lon\": -113.8115599\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Red Deer\",\n                \"formattedAddress\": \"Red Deer, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Red Deer County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Red Deer\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Visual-Eyes is a leading practice management software for the eye care industry in Canada. We have been in business for over 25 years and are looking for a new Technical Support & Customer Service Agent (Bilingual in French/English) to join our Red Deer team. Our Core Purpose is to be \\\"Partners in the journey to success\\\" with our clients and what we do best is to \\\"Streamline Business Processes\\\".The Technical Support Agent’s primary focus is to provide premium remote customer service to our clients related to their Visual-Eyes software. This position must be able to quickly resolve basic issues in order to maintain a manageable queue level, and also manage customer call backs / follow ups appropriately.This position, once fully trained, is required to carry the emergency support phone after hours in a weekly rotation with the other 8 agents. As well, occasional evening/weekend work is required to update our clients’ software version while they are closed for business. Extra compensation is provided for both the on-call emergency phone and updates after hours.What do we offer? An exciting career opportunity, full health benefits, Group RRSP's, monthly staff events, a relaxed corporate atmosphere (you can wear jeans to work), and the chance to work with a group of crazy talented people who are driven to do what's best for our clients.Requirements:- Bilingual in French and English- Good Attitude and Solid Work Ethic- High Attention to Detail- Customer Service experience- Technical aptitudeTo learn more about us, please visit us at: www.visual-eyes.ca*We thank all candidates who apply, however, only those considered for an interview will be contacted.**We have a scent free office.Job Types: Full-time, PermanentSalary: $18.52-$20.23 per hourBenefits:Casual dressCompany eventsDental careDisability insuranceEmployee assistance programExtended health careLife insuranceOn-site parkingPaid time offRRSP matchSchedule:8 hour shiftMonday to FridayOn callAbility to commute/relocate:Red Deer, AB T4P 1A3: reliably commute or plan to relocate before starting work (required)Language:French (required)Work Location: In person\",\n            \"location\": \"Red Deer, AB\"\n        },\n        {\n            \"id\": \"9E4C2B2D218FDD9B1B29F96480B44F3B\",\n            \"cityName\": \"2106 Truscott Dr, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2a599f6f78663aa4\",\n            \"jobName\": \"Customer Service Representative And Animal Care Assistant\",\n            \"companyName\": \"Southdown Animal Clinic\",\n            \"rowSalary\": \"$16–$23 an hour\",\n            \"date\": 1694482155737,\n            \"dateOfPosted\": 1694482155546,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5191697,\n                    \"lon\": -79.6409623\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Truscott Dr, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Southdown Animal Clinic is dedicated to providing excellent quality care with compassion and high standards of medicine & surgery. We are looking for a positive individual who is passionate about animals and works well with people. The individual must have good people skills and organizational skills. The individuals core focus will be as a part of the front desk team, as a client care specialist/receptionist. The team member will also be cross-trained on all aspects of patient handling & restraint, providing treatment, surgical prep and hospital sanitation. Previous animal experience and customer service experience is an asset. Strong communication skills required. A passion for all animals is required. Must work well as part of a team at the clinic. This is a full time, permanent position. PLEASE PROVIDE A COVER LETTER ALONG WITH YOUR RESUME.Job Type: Full-timeSalary: $16.00-$23.00 per hourBenefits:On-site parkingSchedule:10 hour shiftHolidaysMonday to FridayWeekends as neededCOVID-19 considerations:Masks are optional to clients and staff.Ability to commute/relocate:Mississauga, ON: reliably commute or plan to relocate before starting work (preferred)Education:Secondary School (preferred)Work Location: In personExpected start date: 2023-10-01\",\n            \"location\": \"Truscott Dr, Mississauga, ON\"\n        },\n        {\n            \"id\": \"41B094D082774A1011BB9523515300CC\",\n            \"cityName\": \"Levelup Reality in Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=86642eec3e63ab7c\",\n            \"jobName\": \"Vr Arcade Customer Service Representative Or StOre Associate\",\n            \"companyName\": \"Levelup Reality\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694479048146,\n            \"dateOfPosted\": 1694479047958,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"PLEASE DO NOT CONTACT OR EMAIL ARCADE DIRECTLY ABOUT JOB OPPORTUNITIES. ALL COMMUNICATIONS WILL BE VIA INDEED.Job SummaryAre you tech-savvy and great at games? A friendly game master who enjoys teaching others?We are looking for VR Customer Service Representatives or Associates to help customers have fun in the exciting world of VR! Bonus: You'll get to learn about virtual reality and play lots of games!RequirementsThe role requires weekday and weekend availability (minimum Thursday, Friday, Saturday, Sunday, and Holidays).Benefits and CompensationIncludes Performance Bonuses and Tips!Skills That We're Looking For:You love teaching new things: You enjoy showing customers how to learn something new for the first time.You’re great with teamwork: You work well with others in a team-based environment.You have strong customer service support: You are patient with the customer or client regardless of technological affinity, gaming background, and/or disabilities. You can take the time to listen and understand their concerns and can diffuse tense moments if they arise.You’re tech-savvy: You are well informed about and proficient in the use of modern technology and computers (knowledge with VR is an asset).What you’ll learn:You’ll join us as a customer service representative or associate, whose main objective is to ensure the customer has a great time here at the arcade.You’ll be trained by our store supervisor, coordinator, or manager on new technologies and develop stronger technology skills, computer skills, and virtual reality fundamentals.And of course, you’ll get to experience a huge variety of virtual reality games and experiences that you’ve not played before!Tags:Customer service representativeCustomer service associateSales associateCustomer supportSales representativeSales coordinatorStore supervisorStore keeperCustomer successJob Types: Seasonal, Casual, Permanent, Part-time, Full-timeSalary: From $15.50 per hourBenefits:Casual dressSchedule:Every WeekendHolidaysOn callWeekends as neededSupplemental pay types:Bonus payCommission payTipsCOVID-19 considerations:All equipment is sprayed down with isopropyl alcohol and cleaned with antibacterial wipes. We main physical distancing and require use of mask in common areas.Application question(s):Are you able to work on Thursdays to Sundays?By public transit only, how many minutes does it take you to travel to 124 Church St?Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"F694490040B814E1E52798700CAFC471\",\n            \"cityName\": \"argo greek cuisine in Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ea93072fe5f12e7e\",\n            \"jobName\": \"Customer Service- Front Of The House With a Drivers License\",\n            \"companyName\": \"Argo Greek Cuisine\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694479036170,\n            \"dateOfPosted\": 1692776784072,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2488091,\n                    \"lon\": -122.9805104\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Burnaby, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a take out delivery and catering place and we are currently looking for a customers service representative to add to our team Must have a friendly enthusiastic personality , some experience in a similar position is a must delivery apps previous experience an asset Also this position requires a valid drivers license as some deliveries are required for catering and other orders for customers some flexibilty for week days we can discussduties aretaking orders over the phone , taking orders through our on line apps , giving out the orders to customers , handling payments and drive the company car for deliveries .Closing duties require some cleaning for the space and tidying upshifts available10.30 to 3 everyday (part time)except sundays4 to 9.30 everyday (part time )except sundays10.30 to 7.30(one hour break) tuesday wednesday thursday friday saturday (full time)Looking for mature and responsible individuals for long term employment! After 6 months of continuous employment extended medical benefits are offeredJob Types: Full-time, Part-time, PermanentPart-time hours: 30 - 36 per weekSalary: From $20.00 per hourBenefits:Casual dressDiscounted or free foodStore discountFlexible Language Requirement:French not requiredSchedule:Evening shiftSupplemental pay types:Overtime payCOVID-19 considerations:covid -19 safety plan is in place for the establismentEducation:Secondary School (preferred)Experience:customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Burnaby, BC\"\n        },\n        {\n            \"id\": \"370A62E8BA6D53F9BC09ED95F9B40FF8\",\n            \"cityName\": \"Hummingbird Medical Tech Inc in Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=acf3d5d159c9ca7b\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Hummingbird Medical Tech Inc\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694478725996,\n            \"dateOfPosted\": 1694478725820,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"A Medical Supplier company requires a permanent receptionist on a full time basis.We are looking for a Receptionist that has good communication and interpersonal skills, proficient in computers (Microsoft Word, Excel, Powerpoint and Outlook) and a sense of humor would be helpful. Also the selected individual should be well organized and capable of working independently as well as part of a small tight knit office team.Duties:- Answering incoming phone calls and emails ...- Order entry and customer service related duties- Office management (ordering supplies, filing, etc.)- Collecting overdue accounts- Contact customer and negotiation- English and Mandarin- Website management experienceAdvantages:- Easily accessible with public transportation- On site parking- Pleasant working environmentJob Types: Full-time, PermanentSalary: $17.00-$18.00 per hourBenefits:Dental careVision careSchedule:Day shiftEducation:Bachelor's Degree (preferred)Experience:Customer service: 2 years (preferred)Language:English (preferred)Mandarin (preferred)Work Location: In personApplication deadline: 2023-09-23Expected start date: 2023-09-26\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"B7F71B6AD14E16F499576B587E9EC037\",\n            \"cityName\": \"Ajax, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=82330f223d6e9e57\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Tiabhuva.com\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694478722005,\n            \"dateOfPosted\": 1694478721835,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8508553,\n                    \"lon\": -79.0203732\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ajax\",\n                \"formattedAddress\": \"Ajax, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ajax\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ResponsibilitiesAssist with customer service tickets via zendeskAccurately prepare and complete orders for delivery or pickup according to schedule (load, pack, wrap, label, ship)Organize stocks and maintain inventoryTrain additional support staff that are needed during peak periodsContribute ideas on ways to improve or optimize proceduresRequirementsGood organisational and time management skillsMust be able to lift 50lbsExcellent communication skillsTeam playerBasic computer skills ie Word, Excel, Web BrowserHigh school diploma or equivalentExperience with Zendesk and Shopify is an assetThis is an entry level (all training will be provided)Full time position paid hourly ($18-$20/hr depending on experience) based in Ajax, ON.Job Types: Full-time, PermanentSalary: $18.00-$20.00 per hourSchedule:8 hour shiftDay shiftMonday to FridaySupplemental pay types:Overtime payApplication question(s):Are you available to work Monday - Friday, 9am -5pm?Do you have experience with Shopify?Do you have experience with zendesk or other customer service platform?Work Location: In personApplication deadline: 2023-09-27Expected start date: 2023-09-22\",\n            \"location\": \"Ajax, ON\"\n        },\n        {\n            \"id\": \"B2FC59A6BEAD92BAD716693C78290172\",\n            \"cityName\": \"Circle K in Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=632b1a89023391aa\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Circle K\",\n            \"rowSalary\": \"From $15.60 an hour\",\n            \"date\": 1694478589922,\n            \"dateOfPosted\": 1667888924320,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Night shift Cashier at Circle K Convenience Store.Help customers with purchasesOperate cash registerLotto machineStock productsCleaningSignage placementJob Types: Permanent, Full-timeSalary: From $15.60 per hourBenefits:On-site parkingDay range:Weekend availabilityShift:10 hour shift8 hour shiftNight shiftShift availability:Night Shift (required)\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"9E0ED90D72C2EE4BF93F8D48E56B0C13\",\n            \"cityName\": \"1610 Rosser Ave, Brandon, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=abada7a337bc0a0c\",\n            \"jobName\": \"Sales/Customer Service Representative\",\n            \"companyName\": \"Midwest Teleservices International (Mti)\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694478501133,\n            \"dateOfPosted\": 1694478500942,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8484815,\n                    \"lon\": -99.971689\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brandon\",\n                \"formattedAddress\": \"Rosser Ave, Brandon, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brandon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About us\\\"MTI is committed to the old-fashioned business values of hard work, integrity and honesty that cemented our 25 years of trusted partnerships with our clients.\\\" .Our work environment includes:Modern office settingFood providedOn-the-job trainingLively atmosphereOVERVIEWAs a Sales and Customer Service Representative, you'll be conducting sales calls, building connections with both new and existing customers. By embodying our company voice, you'll navigate our offerings and ensure each interaction leads to lasting relationships. Your attention to detail ensures accuracy from start to finish. Join us in turning every call into a rewarding customer experience.KEY RESPONSIBILITIESSalesPresent products/services to potential customers.Upsell and cross-sell our range of services.Ensure customer needs are met.Schedule appointments for service installations.Record customer details accurately.Customer Service and Relationship ManagementResolve customer issues constructively.Document customer interactions using client software.Follow company guidelines for customer satisfaction.Continuous DevelopmentEngage in ongoing training.Stay updated on product offerings.Set and review personal performance goals.QUALIFICATIONSEssentialStrong communication skills.Proficiency in English.Multitasking ability.Seamless transition between sales and service.Proactive and committed to improvement.DesirablePrior experience in customer serviceIndustry-specific knowledgeTrack record of excellence in sales or serviceWHY CHOOSE MTI?Work-Life Balance: We understand the importance of a balanced life. Our work schedule offers some flexibility to help you manage your personal commitments.Team Culture: We prioritize a supportive and inclusive team culture. Engage in team-building activities and company events to foster camaraderie.Stability: MTI has a long-standing history in the industry, offering job stability and peace of mind.Full benefits package, including Dental Care, Extended Health, Life Insurance, Vision Care, and Disability Insurance.Competitive compensation package.WORK SCHEDULE8-hour shiftsIn-person work environmentWeekend availability as needed.HOW TO APPLYREADY TO JOIN MTI?Send your resume and a cover letter to jose@midwestteleservices.com or apply through our website. Use \\\"Application for Sales and Customer Service Representative\\\" as your email subject.DIVERSITY & INCLUSIONDiversity, Equity, and Inclusion (DEI) at MTI is about embracing and valuing the diversity of our team. It's about coming together regardless of our different backgrounds, experiences, and perspectives. We believe our communalities are greater than our differences and that our uniqueness is what makes us a stronger and more effective organization. We are committed to fostering an environment where every employee is treated fairly, feels valued, and can fully participate. We strive to create a workplace where everyone is included.Job Types: Full-time, PermanentSalary: $15.00 per hourBenefits:Casual dressCompany eventsDental careDisability insuranceExtended health careLife insuranceOn-site parkingVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftWeekends as neededCOVID-19 considerations:Midwest Teleservices International has implemented the recommended practices of safety, stringent daily cleaning, and no public access.Application question(s):Given the nature of the role, this position may involve working on Saturdays. Are you able to accommodate this in your schedule?Language:English (required)Work Location: In personApplication deadline: 2023-10-16\",\n            \"location\": \"Rosser Ave, Brandon, MB\"\n        },\n        {\n            \"id\": \"3A08A4FE4A4890D74FA42A263A1158DE\",\n            \"cityName\": \"9701 Menzies St, Chilliwack, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3842648b7a4737df\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Padmore's Quick Shop\",\n            \"rowSalary\": \"$16.65–$18.00 an hour\",\n            \"date\": 1694478476305,\n            \"dateOfPosted\": 1694478476139,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1782108,\n                    \"lon\": -121.9334225\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Chilliwack\",\n                \"formattedAddress\": \"Menzies St, Chilliwack, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Fraser Valley\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Chilliwack\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for candidates for opening of Cashier/Customer Service Representatives.Candidates with working experience at a Gas station or any Convenience Store will be preferred. Wage according to experience.Job descriptionWe require the candidate to have the following abilities:Greet customers and provide excellent customer service at all timesScan merchandise accuratelyDescribe current promotions and advertisements to customersHandle payments by cash, cheque, credit card or automatic debitUse electronic scanners, cash register, or computersGive receipts, refunds, credits and assist customersMust be very detail orientedOpen and close till at the beginning and end of each shiftEnsure that safe work practices are followed including using proper lifting techniques and keeping the store cleanLifting involved as well for putting away product ordersThe candidate for this position must have the following skills and requirements:Basic math skillsDetail oriented with a positive attitudeExcellent command of the English language, both oral and writtenMust be punctual, dependable and hard workingSelf-confident, personable, energetic personalityAbility to work within a fast-paced environmentProfessional appearance and demeanourJob Types: Full-time, Part-time, Permanent, CasualSalary: $16.65-$18.00 per hourDay range:Monday to FridayWeekends as neededShift:8 hour shiftDay shiftEvening shiftMorning shiftAbility to commute/relocate:Chilliwack, BC V2P 5Z6: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Menzies St, Chilliwack, BC\"\n        },\n        {\n            \"id\": \"E8622B5E1F063A5F32B2F4B83FF9E140\",\n            \"cityName\": \"Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e6af587e1707905e\",\n            \"jobName\": \"Dispatcher / Customer Service Rep (Ft)\",\n            \"companyName\": \"John The Plumber Ottawa\",\n            \"rowSalary\": \"$16–$35 an hour\",\n            \"date\": 1694478463494,\n            \"dateOfPosted\": 1694478463323,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"John The Plumber is hiring three full-time employees for customer service and dispatch.  Candidates should have weekend and/or evening availability.  Pay structure includes an hourly rate + booking bonus for every job successfully booked into our schedule. We offer: Health, dental, life insurance. Hourly + generous bonus structure. Work from home upon completing training and strong conversion rate. ETC. This role has a lot of opportunity to make money. We want to find people who are friendly and eager to help our customers, and book them into the schedule. Each booking results in a generous bonus paid out monthly. There are many inbound calls each day, most of which are potential clients seeking a plumber. All we have to do is find a slot in the schedule and book them.  Training will be in person, in Nepean. Work will be in the office until a strong conversion % is reached and maintained.  Remote work is offered to those who Attain and maintain their conversion rates.  The incentive is to ensure world-class service, eagerness, and positive energy with our clients.  The schedule will be fixed. There are two shifts available.  Please only apply if you are able to work in Ottawa.  Thank you. \",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"0F76E6CA4A4AC5844D6C6F31981D5779\",\n            \"cityName\": \"Kitchener-Waterloo, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e48fa4da12cfae55\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Allianz Global Assistance Canada\",\n            \"rowSalary\": \"$20.51 an hour\",\n            \"date\": 1694478430407,\n            \"dateOfPosted\": 1694478430234,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4534718,\n                    \"lon\": -80.5001242\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kitchener\",\n                \"formattedAddress\": \"Kitchener-Waterloo, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kitchener\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Who we are:People are at the heart of the Allianz brand. At Allianz, helping people is in our DNA. We believe in being a part of the solution for a better tomorrow and know that we have a positive impact on people’s lives across the globe. If you are looking to be part of something big, then come join our local family - we want to hear from you!Our teams in our Operations centre are the heartbeat of the organization. We are looking for customer-centric individuals to fill a number of Customer Service Associate positions. In this role, the focus is on helping others, providing exceptional customer service, and going above and beyond for our customers when they’re in need.About the role:In a 24/7 operation, provide timely, accurate, and efficient information and respond to customer service inquiries for clients from numerous programs, ensuring that our clients receive accurate and timely information. Required to attain performance objectives on a monthly basis.Working hours: 8-hour shifts, 5 days a week. Shifts include: Monday - Sunday, working holidays, mornings, afternoons, and evenings on a rotational basis. Schedules are given 6 weeks in advance.Hourly wage: $20.51 per hour (+ $1.50 per hour French language premium, if applicable)You are great at:Opening non-medical cases to guide/assist clients throughout their service needs.Initiating and sending claim forms.Providing pre-trip assistance and answering pre-trip questions relating to emergency procedures and policy inquiries.Interpreting policies and fully explaining benefit coverage and limitations to avoid client confusion.Guiding clients through the navigation of pertinent websites for online content and claim submission.Administering and enforcing client confidentiality in regards to Canada’s Personal Information Protection and Electronic Document Act.Providing assistance with translation using an interpreter if necessary.Creating and send various types of professional correspondence.What it takes:Post-secondary education and a minimum of 6-12 months experience in a customer service related function.Ability to pay close attention to detail and multi-task.Superb verbal/written communication skills, specifically the ability to communicate professionally and articulately via phone with clients and colleagues.Demonstrated ability to use initiative and independent judgment in solving customer problems.Fluency in French is preferred.What we offer you:A competitive total rewards package, including benefits coverage as of your first day of employment, participation in the company’s annual incentive bonus plan, an employer matched retirement plan, tuition reimbursement support, generous paid time off, and much more!A Referral Program that rewards you for referring your qualified friends and familyEmployee discounts at a wide variety of retailers and servicesThe opportunity to grow with a large, global organizationAll successful candidates must be able to pass an Enhanced Reliability Check performed by the Government of Canada.At Allianz, we understand and value diversity in our employees and are proud to be an Equal Opportunity Employer. If you require accommodation at any time during the recruitment process, please call our toll free number at 1-800-461-1079 and ask to speak to a member of the Talent Acquisition team.Job Types: Full-time, PermanentBenefits:Dental careExtended health careLife insurancePaid time offRRSP matchVision careWork from homeSupplemental pay types:Bonus payOvertime payEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Language:French (preferred)Job Type: Full-timeSalary: $20.51 per hourBenefits:Dental carePaid time offVision careShift:8 hour shiftAbility to commute/relocate:Kitchener-Waterloo, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Licence/Certification:Serving It Right (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Kitchener-Waterloo, ON\"\n        },\n        {\n            \"id\": \"FD2D9C8C3CFD662CB309757BF5CBF56C\",\n            \"cityName\": \"Laurent, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=27a78d14a6008042\",\n            \"jobName\": \"Call Center Agent\",\n            \"companyName\": \"Flagship Courier Solutions Inc\",\n            \"rowSalary\": \"$18.60–$23.50 an hour\",\n            \"date\": 1694478424912,\n            \"dateOfPosted\": 1694478424724,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.15,\n                    \"lon\": -72.28333300000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laurent\",\n                \"formattedAddress\": \"Laurent, QC G0A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Portneuf\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laurent\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:Handle many inbound and outbound calls to customers.Management and resolve customer complaints.Maintain good customer relations.Identify and escalate issues to supervisors.Document all call information according to standard operating procedures.Follow up customer calls where necessary.Requirements:High school diploma or equivalent.Excellent verbal communication skills.Excellent verbal and written communication skills.Basic knowledge of Microsoft Office and basic PC literacy.Ability to multitask and maintain a high-level of organization.Ability to read, understand, and follow oral and written instructions.Ability to handle stressful situation appropriately.Job Types: Full-time, Part-timePart-time hours: 20-40 per weekSalary: $18.60-$23.50 per hourBenefits:Company pensionDental careFlexible scheduleLife insuranceVision careWellness programFlexible Language Requirement:English not requiredSchedule:4 hour shift8 hour shiftMonday to FridaySupplemental pay types:Commission payWork Location: On the road\",\n            \"location\": \"Laurent, QC\"\n        },\n        {\n            \"id\": \"1A6F77346F86AC84F160688F0C43AECA\",\n            \"cityName\": \"Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f2cb959527bc1915\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"Eagle Disposal Inc.\",\n            \"rowSalary\": \"$34 an hour\",\n            \"date\": 1694478154831,\n            \"dateOfPosted\": 1688039301920,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1665898,\n                    \"lon\": -123.133569\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Richmond, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 34.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    34.0\n                ],\n                \"range\": {\n                    \"gte\": 34.0,\n                    \"gt\": null,\n                    \"lte\": 34.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Oversee apprenticeship training Recruit and hire workers and carry out related staffing actions Train or arrange for training Estimate costs and materials Ensure health and safety regulations are followed Recommend personnel actions Requisition or order materials, equipment and supplies Supervision Staff in various areas of responsibility Work conditions and physical capabilities Work under pressure Personal suitability Excellent oral communication Organized Reliability Team player Health benefits Dental plan Health care plan Long term benefits Life insuranceWork Term: PermanentWork Language: EnglishHours: 30 hours per week\",\n            \"location\": \"Richmond, BC\"\n        },\n        {\n            \"id\": \"FC8D8D1D17D45E1194C76272BDA48984\",\n            \"cityName\": \"7100 Rue Jean Talon E, Anjou, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=21f23cf68d7adf01\",\n            \"jobName\": \"Call Center Sales Manager\",\n            \"companyName\": \"Hydro Solution\",\n            \"rowSalary\": \"From $80,000 a year\",\n            \"date\": 1694478100791,\n            \"dateOfPosted\": 1693607137011,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5947628,\n                    \"lon\": -73.5727617\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Jean-Talon E, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 80000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    80000.0\n                ],\n                \"range\": {\n                    \"gte\": 80000.0,\n                    \"gt\": null,\n                    \"lte\": 80000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Do you what it takes to join our big family of everyday heroes?In order to continue its growth and maintain its high standards of customer service, HydroSolution is looking for a manager, customer contact center. In an environment in full digital transformation, the manager will aim to ensure the proper functioning of all operational activities, to ensure the quality of the customer experience while promoting the development of human resources.Reporting to the Director of Customer Service Operations, the candidate will join a dynamic team and will be supported by team leaders for the management of about thirty employees. The customer contact center is also composed of an outsourcer and the manager will ensure the proper functioning of the two sites.Responsabilites· Meet and exceed the various KPI’s of the CCC· Suggest and implement management and communications bests practices based on teamwork· Lead initiatives with change management skills and continual improvement notions to improve customer experience· Manage and coach the team leaders who supervise the agents· Ensure operational efficiency and customer service by maintaining a positive, mobilizing, and pleasant work environment· Ensure follow-ups with various business partners in order to solve complex problems and optimize operations.· Analyze and measure various indicators to ensure consistent performance and customer experience, while maintaining operational excellence and profitabilityPromote the development of talent and encourage the best communication practices to help provide a mobilizing work environment.Ideal requirements · Meet and exceed the various KPI’s of the CCC· Suggest and implement management and communications bests practices based on teamwork· Lead initiatives with change management skills and continual improvement notions to improve customer experience· Manage and coach the team leaders who supervise the agents· Ensure operational efficiency and customer service by maintaining a positive, mobilizing, and pleasant work environment· Ensure follow-ups with various business partners in order to solve complex problems and optimize operations.· Analyze and measure various indicators to ensure consistent performance and customer experience, while maintaining operational excellence and profitability· Promote the development of talent and encourage the best communication practices to help provide a mobilizing work environment.· 5 years call center experience in a supervisory role· Post-secondary diploma/degree in a related field· Passionate about sales and customer service and known as an inspiring leader who coaches and develops team members, cultivating a highly engaged, high-performance team· Be result driven· Demonstrates a natural and strong leadership· Excellent interpersonal and communication skills (verbal/written) to promote positive relationships· Experience in Workforce management or in change management will be considered an asset· Bilingualism (French-speaking work environment)At HydroSolution, we take care of our heroes by providing· a competitive salary· a group insurance program (complementary health, medication, dental, life and vision, etc.)· Work Remote (2 or 3 days at the office as a manager)· a group RRSP· free covered parking· a corporate discount on annual gym membership· vacation and compensatory leave· a telemedicine program· an employee referral program· team activities· casual dress codeAt HydroSolution, everyone's work is a source of inspiration and pride. The sum of our efforts makes it possible to offer peace of mind to Quebecers and to participate in their well-being. We might not be saving lives, but we can save the day! This is why we consider our employees to be the everyday heroes of thousands of Quebecers who are looking for a turnkey solution for their water heater. Together, we are the leaders in sales and rentals of water heaters.Type d'emploi : Temps plein, PermanentSalaire : à partir de 80 000,00$ par anAvantages :Assurance DentaireAssurance InvaliditéAssurance Maladie ComplémentaireAssurance VieAssurance VisionCongés payésÉvénements d'EntrepriseProgramme d'Aide aux EmployésProgrammes de Bien-êtreREER CollectifStationnement sur placeTenue DécontractéeTravail à domicileHoraires de travail :Quart de jourTypes de paie supplémentaire :PrimesExpérience:Ventes internes: 3 ans (Souhaité)Gestion d'équipe: 3 ans (Obligatoire)Langue:Français (Obligatoire)Lieu du poste : Télétravail hybride à Anjou, QC\",\n            \"location\": \"Rue Jean Talon Est, Anjou, QC\"\n        },\n        {\n            \"id\": \"9B0B6657E746BEE111FCABB56A06A5A1\",\n            \"cityName\": \"1105 Centre St N, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=556336d1344b2350\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Avalon Cleaners\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694478048884,\n            \"dateOfPosted\": 1693625801711,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0919201,\n                    \"lon\": -114.0625125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Centre St N, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a dry cleaning company requiring a customer service associate.Friday and Saturday 9 am to 5 pmDuties include serving walking clients. Contact clients with any discrepancies and follow up on any of their concerns. Full training supplied with our procedures and policies.Starting wage is $16/hrJob Type: Full-timeSalary: From $16.00 per hourWork Location: In personExpected start date: 2023-09-07\",\n            \"location\": \"Centre St N, Calgary, AB\"\n        },\n        {\n            \"id\": \"92DF0E7A6C6871CF1B89F3BB9BA969A3\",\n            \"cityName\": \"156 Jozo Weider Blvd, Blue Mountains, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=035afb1e7e7d0c0a\",\n            \"jobName\": \"Customer Service Associate (Full-Time Available)\",\n            \"companyName\": \"Village Market\",\n            \"rowSalary\": \"$16.50–$18.00 an hour\",\n            \"date\": 1694477975181,\n            \"dateOfPosted\": 1693624733374,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.50561769999999,\n                    \"lon\": -80.30985369999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Owen Sound\",\n                \"formattedAddress\": \"Jozo Weider Blvd, The Blue Mountains, ON L9Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Owen Sound\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Village Market Customer Service Associate - Full Time and Part Time positionsThe Village Market is located at the heart of the Blue Mountain Village. It is a grocery and convenience store serving thousands of locals and tourists year round.We are searching for a hard working, personable, individual to join our team. We offer a competitive wage, a well-rounded benefits package and on-site training.Responsibilities:GENERAL/CUSTOMER SERVICEGreet, welcome and provide customers with excellent customer service skillsOperate cash register and process credit/debit paymentsVerify the age of customers when selling age restricted productsPull daily sales reportsComplete daily cash outsPerform other duties as assignedHOUSEKEEPINGMaintain a clean and orderly checkout areaEnsure store stays clean and organizedFollow all Health and Safety ProceduresMERCHANDISINGStock shelves when items are low and new inventory arrivesComplete merchandising tasks as directed and maintain efficient flow of merchandise from backroom to sales floorAdvise appropriate person regarding stock outs/shortagesPerform stock counts and orders for designated areasLOSS PREVENTIONEnsure loss prevention Standards are followedControl cash and lottery in accordance with prescribed cash handling policies and proceduresMaintain proper security of cash and merchandiseJob Requirements:GENERALGood communication skills and ability to read and write in EnglishCustomer Service orientatedAble to work under minimal supervision and have attention to detailAble to work individually and be a team playerEffective problem solverAble to work in a fast-paced environmentExperience in cash handling is not a requirement but an assetExperience working in a grocery store is not a requirement but an assetJob Type: Full-timeSalary: $16.50-$18.00 per hourBenefits:Dental careVision careDay range:HolidaysWeekends as neededFlexible Language Requirement:French not requiredShift:8 hour shiftWork setting:Convenience storeGrocery storeAbility to commute/relocate:Blue Mountains, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Jozo Weider Blvd, Blue Mountains, ON\"\n        },\n        {\n            \"id\": \"B3EF5702DB1A65511B3BD9237754EEDA\",\n            \"cityName\": \"Grande Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=32a51eea39b61f61\",\n            \"jobName\": \"Customer Service Sales Clerk\",\n            \"companyName\": \"Saihaj Enterprises Ltd\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694477957766,\n            \"dateOfPosted\": 1690421555734,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.17071259999999,\n                    \"lon\": -118.7884464\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grande Prairie\",\n                \"formattedAddress\": \"Grande Prairie, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 19\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grande Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Will trainTasks Operate cash register Operate computerized inventory record keeping and re-ordering systems Provide advice about merchandise Assist in display of merchandise Conduct sales transactions through Internet-based electronic commerce Estimate or quote prices, credit or contract terms, warranties and delivery dates Greet customers and discuss type, quality and quantity of merchandise or services sought for purchase, rental or lease Maintain sales records for inventory control Prepare sales, rental or leasing contracts and accept cash, cheque, credit card or automatic debit payment Work conditions and physical capabilities Fast-paced environment Repetitive tasks Attention to detailWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Grande Prairie, AB\"\n        },\n        {\n            \"id\": \"91C51EFD3A3EDBD67F007F6CF16FC3BA\",\n            \"cityName\": \"argo greek cuisine in Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f82dca4789764ae4\",\n            \"jobName\": \"Customer Service- Front Of The House With a Drivers License\",\n            \"companyName\": \"Argo Greek Cuisine\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694477939217,\n            \"dateOfPosted\": 1692774873018,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2488091,\n                    \"lon\": -122.9805104\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Burnaby, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a take out delivery and catering place and we are currently looking for a customers service representative to add to our team Must have a friendly enthusiastic personality , some experience in a similar position is a must delivery apps previous experience an asset Also this position requires a valid drivers license as some deliveries are required for catering and other orders for customers some flexibilty for week days we can discussduties aretaking orders over the phone , taking orders through our on line apps , giving out the orders to customers , handling payments and drive the company car for deliveries .Closing duties require some cleaning for the space and tidying upshifts available10.30 to 3 everyday (part time)except sundays4 to 9.30 everyday (part time )except sundays10.30 to 7.30(one hour break) tuesday wednesday thursday friday saturday (full time)Looking for mature and responsible individuals for long term employment! After 6 months of continuous employment extended medical benefits are offeredJob Types: Full-time, Part-time, PermanentPart-time hours: 30 - 36 per weekSalary: From $20.00 per hourBenefits:Casual dressDiscounted or free foodStore discountFlexible Language Requirement:French not requiredSchedule:Evening shiftSupplemental pay types:Overtime payCOVID-19 considerations:covid -19 safety plan is in place for the establismentEducation:Secondary School (preferred)Experience:customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Burnaby, BC\"\n        },\n        {\n            \"id\": \"2636BC9BE5A3BD713646ED7F0E6D1F19\",\n            \"cityName\": \"Terrace, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=58952f8667bb8021\",\n            \"jobName\": \"Customer Service Technician Ii\",\n            \"companyName\": \"Pacific Northern Gas Ltd.\",\n            \"rowSalary\": \"$43.07 an hour\",\n            \"date\": 1694477899582,\n            \"dateOfPosted\": 1694477898123,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.5181925,\n                    \"lon\": -128.6031539\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Terrace\",\n                \"formattedAddress\": \"Terrace, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kitimat-Stikine\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Terrace\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 44.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    44.0\n                ],\n                \"range\": {\n                    \"gte\": 44.0,\n                    \"gt\": null,\n                    \"lte\": 44.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Pacific Northern Gas Ltd. (PNG), a subsidiary of TriSummit Utilities Inc., owns and operates natural gas transmission and distribution systems in British Columbia’s lower Peace River, west central, and north coast regions. PNG’s western transmission line extends from the Enbridge gas transmission system north of Prince George along the Highway 16 and Highway 37 south corridors to Terrace and then onto the port communities of Kitimat and Prince Rupert, providing transportation and gas services to twelve communities and a number of industrial facilities. In the Province’s northeast, Pacific Northern Gas (N.E.) Ltd. provides gas transmission and distribution service in the Dawson Creek, Fort St. John and Tumbler Ridge areas. PNG’s Operations department in the Northwest has an immediate opening for a qualified Customer Service Technician in Terrace, BC. DUTIES & RESPONSIBILITIES:Repair and make adjustments to residential and commercial equipment on customer premises, install and maintain gas measurement and pressure regulations equipment on customer premises and monitor and assist in the installation and maintenance of gas pressure regulation equipment at Company Regulating stations. Operate and maintain a stand-by station for emergency or peak shaving (Prince Rupert area).Promote the sale of gas, complete sign-ups of new customers, read meters, investigate reports of gas leaks, perform routine safety inspections on customer premises and take action to protect the public from any unsafe act or condition pertaining to the distribution of natural gas within his/her authority.Assist other Company personnel as directed and prepare all required documents and paperwork relative to sales and service duties.Provide training and direction to subordinate Customer Service Technicians.Perform stand-by duties and carry a pager or cell phone.Assist and temporarily perform Customer Service Representative duties.Respond to emergencies on the distribution system and direct and carry out appropriate actions involving damage to the system or the escape of gas.QUALIFICATIONS:Grade 12 education.Valid B.C. Class 5 Driver’s License.Hold a valid Class GBEE B.C. Gas Fitters License and have successfully completed the two-year Gas Fitters Apprenticeship Program or other Company recognized training program.Be competent in technical aspects related to public safety, customer relations and the welfare of the Company’s property.Electrical endorsement required for Class GBEE ticket holders.Experience in electronics, appliance repairs and trouble shooting.Must demonstrate safe work habits and adherence to safety regulations and practice on sustained basis.Must be able to carry out duties with minimum supervisions.Ability to communicate effectively verbally and written.Good physical condition.Ability to work long hours in adverse weather and terrain conditions.Duties will include meter reading, chart changing, assisting with the installation and removal of meters, painting and minor maintenance of equipment and facilities servicing the distribution system.Some travel may be required within the PNG system.This position is within our bargaining unit (IBEW) Pacific Northern Gas and TSU strives to cultivate a workplace in which everyone feels welcomed and encouraged to bring their whole selves to work. Everyone wants to work where they feel a sense of belonging, where they are valued for their differences and are encouraged to participate and contribute openly. We recognize the importance of both inclusion and diversity, and we are committed to advance our culture to ensure diversity of thought. While we appreciate all applications, we advise that only the candidates selected to participate in the recruitment process will be contacted. If you are a candidate with a disability and need an accommodation to complete the application process, please email us at careers@png.ca. Include your full name, the best way to reach you, and the accommodation needed to assist you with the application process. We thank all applicants for their interest in our organization, but only those candidates selected for interviews will be contacted.\",\n            \"location\": \"Terrace, BC\"\n        },\n        {\n            \"id\": \"0F01BB1CF246631498C0CC78EA3E4F7B\",\n            \"cityName\": \"Yellowknife, NT\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f64b6608f9c7bdd9\",\n            \"jobName\": \"Customer Service Agent (Pt)\",\n            \"companyName\": \"Gat Ground Support Canada\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694477866570,\n            \"dateOfPosted\": 1694477865074,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 62.4539717,\n                    \"lon\": -114.3717887\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Yellowknife\",\n                \"formattedAddress\": \"Yellowknife, NT X0E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Northwest Territories\",\n                \"state_code\": \"NT\",\n                \"postalTown\": null,\n                \"county\": \"Fort Smith Region\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Yellowknife\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Summary: The Customer Service Agent (CSA) provides all passenger/customer services as contracted by the customer including reservations, ticketing, baggage processing, terminal/gate check-in, greeting arriving passengers, handling of VIPs, provide special passenger assistance, handle customer complaints and other duties as assigned.  Job Duties:Checks passengers in at ticket counter and gate and hands out boarding passes for outgoing flightsActively participates in the Safety Management System (SMS)Inspect and verify passenger documentationChecks passenger baggage and places bag tags on them at the ticket counter for appropriate destinationCoordinates ticket counter activities with those on the ramp regarding baggage handling to assure that all bags get on the outgoing flightHandles customer complaints regarding ticketing and baggage handling when problems arise. (i.e. lost baggage, lost/misplaced tickets, canceled flights or delayed flights)Makes announcements regarding flight activity at gate or over airport’s general PA systemAnswers passenger inquiries regarding flight schedules, fares, space availability for a particular flight and other questions that may ariseAssist passengers as needed through arrival and check in processes including support for passengers with special needs such as unaccompanied minors (UM), VIP passengers and passengers needing wheelchair assistanceAssist Ramp Service Agents to ensure that wheelchairs, strollers and gate checked bags (cleared through security) are made available for loading upon departure and delivery to passengers upon arrivalCommunicates with flight crew on ground and via ground to air radioMaintains the level of service expectations of both the passenger and the airline customer at all timesComply with all federal, provincial, municipal, airport authority and carrier security requirements and SA’s SOPs and policiesParticipate in training to comprehend, implement, and maintain all quality objectives as stated in our Quality Management System to ensure delivery of desired levels of operational safety and security.All employees are responsible for ensuring quality control in their own activities.Cooperate fully with Inspectors to achieve quality inspection commitmentsPerforms other duties as required RequirementsMust be at least 18 years of ageHigh School diploma at a minimumPassionate about customer serviceExcellent communication skills (written and verbal)Commitment to continuous improvementSelf-motivated and able to work independentlyAttentive to detail and numerateAbility to follow processes and procedures and apply flexible approach when requiredMust be able to type and learn airline specific computer reservation/ ticketing softwareWillingness to work in inclement weatherMust be able to undergo a Criminal Record Check and obtain a Clear result, and be able to obtain airport security clearanceAble to deal with people sensitively, tactfully, diplomatically, and professionally at all timesStrong work ethic and positive team attitude Physical RequirementsMust be able to lift up to 50lbs (23kg)Must be able to stand, lift, bend, push and pull for an extended timeMust be willing to work in all types of elevated noise levels within the airport environment Background QualificationsMust be willing to work various shifts, weekends, or irregular shiftsComputer skills required RequirementsMust be at least 18 years of ageHigh School diploma at a minimumPassionate about customer serviceExcellent communication skills (written and verbal)Commitment to continuous improvementSelf-motivated and able to work independentlyAttentive to detail and numerateAbility to follow processes and procedures and apply flexible approach when requiredMust be able to type and learn airline specific computer reservation/ ticketing softwareWillingness to work in inclement weatherMust be able to undergo a Criminal Record Check and obtain a Clear result, and be able to obtain airport security clearanceAble to deal with people sensitively, tactfully, diplomatically, and professionally at all timesStrong work ethic and positive team attitude Physical RequirementsMust be able to lift up to 50 poundsMust be able to stand, lift, bend, push and pull for an extended timeMust be willing to work in all types of elevated noise levels within the airport environment Background QualificationsMust be willing to work various shifts, weekends, or irregular shiftsComputer skills required Flight passes!  Career advancement opportunities!! About GAT Ground Support Canada:GAT is a leading Ground Service provider to the airlines. Our additional line of business is Sky Cafe, Airline Catering. We are a growing company with opportunities for growth and career advancement!\",\n            \"location\": \"Yellowknife, NT\"\n        },\n        {\n            \"id\": \"1C04BCE2DAE644F595ABC6CC7C360429\",\n            \"cityName\": \"Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7feb82e3a3b25902\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Ph Vitres d'Autos\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694477862863,\n            \"dateOfPosted\": 1694477861158,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2557206,\n                    \"lon\": -79.8711024\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Company:Take 5 Oil Change  We invite you to join us at Take 5!  Take 5 Oil Change is your neighborhood go-to oil change spot. We've been doing this for over 35 years now and we pride ourselves in our friendly technicians, our oil change expertise, and our efficient process that gets you on your way safely and swiftly. All while letting you stay in the comfort of your car or truck while we change your oil.  We're always looking for friendly and energetic team members to join our family. Technicians, managers, and more positions are available across the country. With our Pit Tech to President growth path, Take 5 is where you can invest in yourself while we invest in you. In fact, over 90% of our field leaders are internal promotions!  JOB DESCRIPTION:  Driven Brands is looking for part-time and full-time customer service representatives to join our growing team! The ideal candidate can commit to a minimum of 30 hours/week and can provide open availability. The starting wage for this position is $15.50/hour plus incentives.  Responsibilities Function as an expediter of all incoming callsAnswer customer inquiriesWork closely with the Contact Centre Team to implement project initiativesEnsure the proper processes are being following and task deadlines are being metProperly manage customer information utilizing internal data systemsFlexible/adaptable to constant changeAccurately communicate customer details to Franchisees Qualifications and Competencies: Bilingualism (English/French) and/or Spanish is an assetStrong communication skills (reading, writing, speaking, listening)Minimum 2 years of call centre experienceSales experiences is an assetShows predominate skills in computer literacyGood organization and time management skillsWorks well in a fast paced environmentWorks well under pressureExperience in the automotive industry and asset (but not required) Hours of Operation are: Monday-Friday: 7am-7pmSaturday: 9am- 5pmSunday: 10am- 5pm\",\n            \"location\": \"Hamilton, ON\"\n        },\n        {\n            \"id\": \"5EC7B0808F7F58CD5EE6CBF2DDB7ACDB\",\n            \"cityName\": \"Okotoks, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ecf8d6e60ca56ff5\",\n            \"jobName\": \"Customer Service/Office Assistant\",\n            \"companyName\": \"Okotoks Home Hardware Building Centre\",\n            \"rowSalary\": \"$16.50–$18.50 an hour\",\n            \"date\": 1694477859646,\n            \"dateOfPosted\": 1694289230778,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cashier/Sales Associate Position/Office AssistantFull time position for Cashier/Sales Associate/Office Assitant. Provide customer service at frontend cash desks, completing customer transactions through point of sale system. Other duties include answering phones, cutting keys, fedex shipping, e-comerce processing, filing and data entry, and some cleaning tasks and stocking. Also Office Assistant duties once trained at Cash, approximately 2 days per week office duties; will include daily balancing and audits, accounts receivable and payables work, and filing. Experience an asset, but will train. The hours will be some weekdays and every second weekend. Staff discount and benefits. Applicant should be have good communication skills, want to work in a team environment and enjoy interacting with the public. Looking for someone wanting to gain responsibilities through experience. Applicant should understand that customer service is our priority every day.Apply with resumeJob Type: Full-timeSalary: $16.50-$18.50 per hourBenefits:Dental careStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededAbility to commute/relocate:Okotoks, AB: reliably commute or plan to relocate before starting work (required)Experience:Retail sales: 3 years (preferred)Customer service: 3 years (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"EB69CFBD2096AA300485E12ABD1913FC\",\n            \"cityName\": \"Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8ba586fa0811e201\",\n            \"jobName\": \"Clk 12r - Customer Service Representative\",\n            \"companyName\": \"Bc Public Service\",\n            \"rowSalary\": \"$52,803–$59,608 a year\",\n            \"date\": 1694477852787,\n            \"dateOfPosted\": 1694477851658,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8879519,\n                    \"lon\": -119.4960106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Kelowna, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 52803.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    52803.0\n                ],\n                \"range\": {\n                    \"gte\": 52803.0,\n                    \"gt\": null,\n                    \"lte\": 52803.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Posting Title  CLK 12R - Customer Service Representative  Position Classification  CLBC Clerk R12  Union  GEU  Work Options  On-Site  Location  Kelowna, BC V1Z 2S9 CA (Primary)  Salary Range  $52,803.18 - $59,607.79 annually  Close Date  9/25/2023  Job Type  Regular Full Time  Temporary End Date  Ministry/Organization  BC Public Service -> Citizens' Services  Ministry Branch / Division  Service Delivery/Service BC  Job Summary Apply your expertise and passion for innovation to this rewarding career opportunityMINISTRY OVERVIEWDedicated to making life better for British Columbians, the Ministry of Citizens’ Services (CITZ) delivers key services that people rely on. CITZ delivers accessible, multi-channel services, through a single-point-of-contact service approach to people in urban and rural communities through Service BC, and delivers the digital face of government at www.gov.bc.ca. CITZ also provides support for the expansion of high-speed internet connectivity throughout the province, leadership across government to modernize information management and technology resources, trusted data services to government agencies, prompt, and relevant responses to freedom of information requests, and statistical and economic research, information and analysis to businesses and the public sector. In addition, the ministry manages the Province’s real estate assets, technology systems and equipment, and leverages procurement to increase business opportunities and create rewarding jobs that contribute to local economies and benefit individuals, families, and communities.A service-focused organization, CITZ strives to be a great place to work, where all employees feel both engaged and motivated to do their best.DIVISIONAL OVERVIEWService BC is government’s chief provider of services to B.C. residents and businesses. The work of the division enables the design and delivery of accessible, responsive, and cost-effective services, making it easier for British Columbians and businesses to interact with government. Through a provincial network of 65 in-person offices and the Provincial Contact Center, Service BC provides approximately 300 government services for more than 40 partner ministries and agencies. Our team member’s unwavering commitment to an ethic of service has driven consistently high people and business satisfaction rates. In support of the division’s overarching goal of providing residents and businesses with seamless, multi-service access to government programs, the Division’s service offerings are marketed to partner ministries and the broader public sector to expand our continuum of services and leverage common platforms.Within Service BC, our vision is to deliver innovation, value, and service excellence to the people of British Columbia, with the aspirational goal of becoming a best-in-class public service delivery organization. Our people and our culture are important to us. As a team, we are motivated to deliver an excellent service experience to British Columbians, businesses, colleagues, peers, clients, and partners. We believe in being kind and helpful, and are committed to delivering “Service with Heart”.JOB OVERVIEWThe Service BC Customer Service Representative (CSR) maintains a positive, empathetic, and professional attitude when providing service and answering enquires. It requires the ability to identify and assess peoples’ needs to effectively and efficiently deliver an excellent customer service experience.The CSR provides services in-person, by phone, and through digital channels. The ability to provide clerical and administrative support such as data entry, reviewing applications for completeness, handling payments, and providing appropriate solutions, within government guidelines to a diverse population of people is essential to this role.JOB REQUIREMENTSMinimum Grade 12 graduation or equivalent (GED).Experience providing inclusive customer service to diverse clienteles. Experience using digital applications to search for and record information. Preference may be given to applicants with the following:Multiple years of experience in any of the above requirements.Experience providing in-person customer service.Experience providing customer service though phone or digital channels.Experience delivering customer service in a high volume, fast-paced, rapidly changing environment.Experience with conflict resolution and de-escalating situations.Experience providing services to a diverse population some of whom may be experiencing poverty issues, substance use, or mental health concerns.Experience maintaining administrative files and record keeping.Experience delivering service in a regulated or legislated environment following processes and procedures.Customer Service training and/or education. Experience handling financial transactions. WILLINGNESS Willingness to travel occasionally to provide relief coverage to other work sites (Service BC Centres, exam locations, etc.). For questions regarding this position, please contact melody.olsen@gov.bc.caAbout this Position:An eligibility list may be established to fill future temporary and permanent vacancies across the Ministry of Citizens' Services This position has full time on-site requirements.Employees of the BC Public Service must be located in BC at the time of employment.Kelowna is known for its spectacular selection of wineries, and it is set on the shores of Okanagan Lake, providing water activities like swimming, paddling, windsurfing and fishing. Big White, the ski mountain in Kelowna, allows for skiing and snowboarding.Working for the BC Public Service:The BC Public Service is committed to creating a diverse workplace to represent the population we serve and to better meet the needs of our citizens. Consider joining our team and being part of an innovative, inclusive and rewarding workplace.The Indigenous Applicant Advisory Service is available to applicants that self-identify as Indigenous (First Nations, status or non-status, Métis, or Inuit) seeking work or already employed in the BC Public Service. For guidance on applying and interviewing, please contact IndigenousApplicants@gov.bc.ca or 778-405-3452.The BC Public Service is an award-winning employer and offers employees competitive benefits, amazing learning opportunities and a chance to engage in rewarding work with exciting career development opportunities. For more information, please see What We Offer.How to Apply:Your application must clearly demonstrate how you meet the job requirements listed above.Cover Letter: NO - Please do not submit a cover letter as it will not be reviewed.Cover Letter: YES - A cover letter is required as part of your application. The content and/or format of your cover letter may be evaluated as part of the assessment process.Questionnaire: YES - You will need to complete a comprehensive questionnaire to demonstrate how you meet the job requirements. Include all relevant information about your educational accomplishments and employment history including job titles, start and end dates (month and year) of your employment, and how you obtained your relevant experience. The questionnaire will take approximately 60 minutes to complete.Helpful tips, videos and more regarding the application process can be found on the Your Job Application page of MyHR. If you are experiencing technical difficulty applying, e-mail BCPSA.Hiring.Centre@gov.bc.ca, before the stated closing time, and we will respond as soon as possible.Additional Information:A Criminal Record Check (CRC) will be required.Applicants selected to move forward in the hiring process may be assessed on the Knowledge, Skills, Abilities and Competencies as outlined in the attached Job Profile located at the bottom of the posting.Applications will be accepted until 11:00 pm Pacific Standard Time on the closing date of the competition. Job Category  Administrative Services \",\n            \"location\": \"Kelowna, BC\"\n        },\n        {\n            \"id\": \"88979A7A33FEEBDECC47576AE4F8A3B1\",\n            \"cityName\": \"Merritt, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6a9b323aff1fc630\",\n            \"jobName\": \"Clk 12r - Customer Service Representative\",\n            \"companyName\": \"Bc Public Service\",\n            \"rowSalary\": \"$52,803–$59,608 a year\",\n            \"date\": 1694477849619,\n            \"dateOfPosted\": 1694477847581,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.1113079,\n                    \"lon\": -120.7862222\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Merritt\",\n                \"formattedAddress\": \"Merritt, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Thompson-Nicola\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Merritt\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 52803.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    52803.0\n                ],\n                \"range\": {\n                    \"gte\": 52803.0,\n                    \"gt\": null,\n                    \"lte\": 52803.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Posting Title  CLK 12R - Customer Service Representative  Position Classification  CLBC Clerk R12  Union  GEU  Work Options  On-Site  Location  Merritt, BC V1K 1B8 CA (Primary)  Salary Range  $52,803.18 - $59,607.79 annually  Close Date  9/25/2023  Job Type  Regular Full Time  Temporary End Date  Ministry/Organization  BC Public Service -> Citizens' Services  Ministry Branch / Division  Service Delivery/Service BC  Job Summary Apply your expertise and passion for innovation to this rewarding career opportunityMINISTRY OVERVIEWDedicated to making life better for British Columbians, the Ministry of Citizens’ Services (CITZ) delivers key services that people rely on. CITZ delivers accessible, multi-channel services, through a single-point-of-contact service approach to people in urban and rural communities through Service BC, and delivers the digital face of government at www.gov.bc.ca. CITZ also provides support for the expansion of high-speed internet connectivity throughout the province, leadership across government to modernize information management and technology resources, trusted data services to government agencies, prompt, and relevant responses to freedom of information requests, and statistical and economic research, information and analysis to businesses and the public sector. In addition, the ministry manages the Province’s real estate assets, technology systems and equipment, and leverages procurement to increase business opportunities and create rewarding jobs that contribute to local economies and benefit individuals, families, and communities.A service-focused organization, CITZ strives to be a great place to work, where all employees feel both engaged and motivated to do their best.DIVISIONAL OVERVIEWService BC is government’s chief provider of services to B.C. residents and businesses. The work of the division enables the design and delivery of accessible, responsive, and cost-effective services, making it easier for British Columbians and businesses to interact with government. Through a provincial network of 65 in-person offices and the Provincial Contact Center, Service BC provides approximately 300 government services for more than 40 partner ministries and agencies. Our team member’s unwavering commitment to an ethic of service has driven consistently high people and business satisfaction rates. In support of the division’s overarching goal of providing residents and businesses with seamless, multi-service access to government programs, the Division’s service offerings are marketed to partner ministries and the broader public sector to expand our continuum of services and leverage common platforms.Within Service BC, our vision is to deliver innovation, value, and service excellence to the people of British Columbia, with the aspirational goal of becoming a best-in-class public service delivery organization. Our people and our culture are important to us. As a team, we are motivated to deliver an excellent service experience to British Columbians, businesses, colleagues, peers, clients, and partners. We believe in being kind and helpful, and are committed to delivering “Service with Heart”.JOB OVERVIEWThe Service BC Customer Service Representative (CSR) maintains a positive, empathetic, and professional attitude when providing service and answering enquires. It requires the ability to identify and assess peoples’ needs to effectively and efficiently deliver an excellent customer service experience.The CSR provides services in-person, by phone, and through digital channels. The ability to provide clerical and administrative support such as data entry, reviewing applications for completeness, handling payments, and providing appropriate solutions, within government guidelines to a diverse population of people is essential to this role.Job Requirements:Minimum Grade 12 graduation or equivalent (GED).Experience providing inclusive customer service to diverse clienteles. Experience using digital applications to search for and record information. Preference may be given to applicants with one (1) or more of the following:Multiple years of experience in any of the above requirements.Experience providing in-person customer service.Experience providing customer service though phone or digital channels.Experience delivering customer service in a high volume, fast-paced, rapidly changing environment.Experience with conflict resolution and de-escalating situations.Experience providing services to a diverse population some of whom may be experiencing poverty issues, substance use, or mental health concerns.Experience maintaining administrative files and record keeping.Experience delivering service in a regulated or legislated environment following processes and procedures.Customer Service training and/or education.Experience handling financial transactions. Willingness Statements:Willingness to travel occasionally to provide relief coverage to other work sites (Service BC Centres, exam locations, etc.)Successful completion of security screening requirements of the BC Public Service, which may include a criminal records check, and/or Criminal Records Review Act (CRRA) check, and/or enhanced security screening checks as required by the ministry (Note: It is important that you read the job posting carefully to understand the specific security screening requirements pertaining to the position). For questions regarding this position, please contact melody.olsen@gov.bc.ca.About this Position: An eligibility list may be established to fill future temporary and permanent vacancies across the Ministry of Citizens' Services This position has full time on-site requirements.Working for the BC Public Service: The BC Public Service is committed to creating a diverse workplace to represent the population we serve and to better meet the needs of our citizens. Consider joining our team and being part of an innovative, inclusive and rewarding workplace. The Indigenous Applicant Advisory Service is available to applicants that self-identify as Indigenous (First Nations, status or non-status, Métis, or Inuit) seeking work or already employed in the BC Public Service. For guidance on applying and interviewing, please contact IndigenousApplicants@gov.bc.ca or 778-405-3452. The BC Public Service is an award-winning employer and offers employees competitive benefits, amazing learning opportunities and a chance to engage in rewarding work with exciting career development opportunities. For more information, please see What We Offer.How to Apply: Your application must clearly demonstrate how you meet the job requirements listed above.Cover Letter: NO - Please do not submit a cover letter as it will not be reviewed.Resume: YES - A resume is required as part of your application, however, it may not be used for initial shortlisting purposes.Questionnaire: YES - You will need to complete a comprehensive questionnaire to demonstrate how you meet the job requirements. Include all relevant information about your educational accomplishments and employment history including job titles, start and end dates (month and year) of your employment, and how you obtained your relevant experience. The questionnaire will take approximately 60 minutes to complete.Helpful tips, videos and more regarding the application process can be found on the Your Job Application page of MyHR. If you are experiencing technical difficulty applying, e-mail BCPSA.Hiring.Centre@gov.bc.ca, before the stated closing time, and we will respond as soon as possible.Additional Information: A Criminal Record Check (CRC) will be required. Applicants selected to move forward in the hiring process may be assessed on the Knowledge, Skills, Abilities and Competencies as outlined in the attached Job Profile located at the bottom of the posting. Applications will be accepted until 11:00 pm Pacific Standard Time on the closing date of the competition. Job Category  Administrative Services \",\n            \"location\": \"Merritt, BC\"\n        },\n        {\n            \"id\": \"A67FDFC2F7510451F7755EAC7FEB27CC\",\n            \"cityName\": \"Niagara Falls, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=00648ee9c6ffb540\",\n            \"jobName\": \"Customer Service & Retail Front Desk Associate\",\n            \"companyName\": \"Ph Vitres d'Autos\",\n            \"rowSalary\": \"Up to $18 an hour\",\n            \"date\": 1694477829277,\n            \"dateOfPosted\": 1694477828601,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.0895577,\n                    \"lon\": -79.0849436\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara Falls\",\n                \"formattedAddress\": \"Niagara Falls, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Niagara Falls\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Company:Driven Brands  We invite you to join us at Driven Brands!  Headquartered in Charlotte, NC, Driven Brands (NASDAQ: DRVN) is the largest automotive services company in North America, providing a range of consumer and commercial automotive needs, including paint, collision, glass, vehicle repair, oil change, maintenance and car wash.  With over 4,500 centers in 15 countries, Driven Brands is the parent company of some of North America’s leading automotive service brands including Take 5 Oil Change, Take 5 Car Wash, Driven Glass, Meineke, Maaco, CARSTAR, and more. Our network services over 50 million vehicles annually and generates more than $5 billion in system-wide sales each year.  Our culture inspires high performance and innovation, enabling our employees to go further, faster in their careers. With amazing people and great brands, we confidently look forward to exciting growth ahead, and believe in following the values that support this vision.  JOB DESCRIPTION:  Customer Service & Retail Front Desk Associate – Experienced & Entry Level Positions Available!  Are you a people person? Do you love helping others? Motivated by results?  If so, here is good news for you! Carstar, (a division of Driven Brands) is offering an opportunity to showcase your skills and join our growing team of Customer Service Representatives and Front Desk Associates!  Experience is VALUED…  Experienced customer service professionals with automotive industry experience can join our team right away making up to $18 per hour.*  …but no experience REQUIRED!  Some of our most successful customer service reps joined our team as trainees with no experience at all, but were once servers, restaurant workers, retail employees, call center employees, auto dealer account reps, or other customer-facing professionals!  What our Customer Service Reps love about Carstar:  Full-time & part-time schedules are available Competitive base pay rates PAID TIME OFF for full-time employees Health, Vision, & Dental Insurance As a Carstar Customer Service Rep, your job will be to:  Intake and assist walk-ins, appointments, and returning customers Create estimates, price quotes, and invoices for auto work Answer phones and return customer calls Provide excellent customer service Assist Manager with daily parts returns Ensure accuracy when ordering parts Input documentation on all calls and follow-up with callers as needed Confirm all mobile jobs parts and materials before dispatching drivers Open new accounts and service existing accounts Maintain a professional appearance and positive attitude All our CSR’s need to meet the following requirements:  Must have a positive attitude and customer service mindset Must have basic computer skills Must have strong communication skills Bilingual (Spanish) proficiency is a plus! Prior phone or call center experience is a plus!or more in markets with a higher cost of living #LI-DNI  #DBHVOL \",\n            \"location\": \"Niagara Falls, ON\"\n        },\n        {\n            \"id\": \"82BAE102ADA8087AB5C40B035FF1AB91\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4647545caede9581\",\n            \"jobName\": \"Customer Service Sales Representative\",\n            \"companyName\": \"United West Mississauga\",\n            \"rowSalary\": \"$620–$1,050 a week\",\n            \"date\": 1694477817729,\n            \"dateOfPosted\": 1694477816230,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 620.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    620.0\n                ],\n                \"range\": {\n                    \"gte\": 620.0,\n                    \"gt\": null,\n                    \"lte\": 620.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you looking for a supportive, collaborative workplace with great teams and inspiring leaders? You’ve come to the right place. We’re looking for ambitious people who share our values and want to make every day better for people around the world. If this sounds like you, and the career below sounds exciting, we’d like to hear from you. As a Customer Service Sales Representative , you will be the face of our clients. You will interact with customers to bring our clients products and services to life! You will create effective sales opportunities with each customer using the skills provided in our intensive training model. You will establish sales objectives which will contribute towards the overall success of the business. We have relationships with numerous high-profile associations and external businesses; therefore, you can directly impact the Company’s reputation, profitability and image.Key Accountability:Meet sales, service, quality and productivity objectivesResponsible for interacting with new and existing customers and clientsConduct needs analysis and provide advice to customers by effectively communicating the value and benefits of the products and services offered by our clientsProvide a high level of service, build relationships and provide accurate information and the appropriate solutions to new and existing customersRaise issues, concerns and trends to the leadership teamMaintain a high level of product knowledge, operational process and servicesAs our ideal candidate, you make valuable contributions in your ability to communicate effectively with people. You have a high-energy level and a desire to become part of a globally dynamic organization offering long-term career opportunities.Qualifications:Experience in a retail, customer service or sales rolePost-secondary degree or equivalent work/business experienceDemonstrated ability to persuade and negotiate and must possess active listening skillsEffective client record management, with attention to detailAbility to work in a fast-paced environment and manage multiple day-to-day tasksStrong computer skills, and a general knowledge level of the MS Office suite of productsJob Type: Full-timeSalary: $620.00-$1,050.00 per weekSchedule:8 hour shiftDay shiftMonday to FridayWeekends as neededAbility to commute/relocate:Mississauga, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"825DF626C8068368EE8325F32196BFAD\",\n            \"cityName\": \"Barrie, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=305f26b98b0fc1fe\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Employment Options, Barrie\",\n            \"rowSalary\": \"$56,000 a year\",\n            \"date\": 1694477777086,\n            \"dateOfPosted\": 1682531906800,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.38935559999999,\n                    \"lon\": -79.6903316\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Barrie\",\n                \"formattedAddress\": \"Barrie, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Barrie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 56000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    56000.0\n                ],\n                \"range\": {\n                    \"gte\": 56000.0,\n                    \"gt\": null,\n                    \"lte\": 56000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Bilingual Customer Service RepresentativeFillip is a Calgary-based fintech company leading the digital transformation of fleet payments. Fillip empowers hundreds of businesses with its universally accepted digital fleet card that solves the challenges of distributed payments for busy teams on the road.The Customer Success Representative (CSR) supports clients as they transition from sales prospects to active users. Focus is client relationships using proactive engagement strategies to maintain positive experiences.Customer Success RepresentativeThe CSR reports to the Head of Growth & Customer Success.ResponsibilitiesAssist new users/current clients with set-up, training, navigation, user supportPromote value through client experienceAssist with training material, onboarding support, account managementDocument and share user feedbackExecute proactive account management techniques that drive customer outcomes, product adoption and customer experienceReduce churn and drive new business growth through greater advocacy and reference abilityDelivering on fillip standards for customer support/compliance and timelinesInitiate engagement with internal team members and clients to support a culture of continuous improvementCollaborate with a world-class team:Communicating within the fillip team and across customersTrack client interactions in CRMWork closely with the Head of Growth to align on customer expectations, trends additional service opportunitiesAddress escalated client issues with speed and urgency, orchestrating resources across the company as appropriateWork cross-functionally orchestrating results with customer success, sales, marketing, product & development, people operations and finance.Requirements and SkillsBilingualProven work experience as a Customer Success Representative or similar roleExperience working with brand image and promoting value through customer experienceExceptional ability to communicate and foster positive business relationshipsTechnical skills required, as they relate to the use of fillip fleet and CRM toolsAccountability and personal organization are essentialExperience working with a diverse group of clients and team membersA communications or business diploma is preferredCompensation$56,000/yearAttractive bonus based on client retention targetsBenefit planJob Types: Full-time, PermanentSalary: $56,000.00 per yearBenefits:Dental careDisability insuranceEmployee assistance programLife insurancePaid time offVision careSchedule:Monday to FridayAbility to commute/relocate:Barrie, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Barrie, ON\"\n        },\n        {\n            \"id\": \"7EF3655F8136E349872DE46EF8B612A3\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=08a5d6bcbb4bf158\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Answerplus Inc\",\n            \"rowSalary\": \"$18.25 an hour\",\n            \"date\": 1694477776864,\n            \"dateOfPosted\": 1692777288096,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" At AnswerPlus, we are proud to say we’ve been in the answering service business for 60 years! With 4 locations across Canada and over 1500 clients, AnswerPlus has built an incredibly strong brand and reputation in the industry. Our niche is urgent call response 24/7/365. We seek to answer 80% of calls within 20 seconds or less.  As a Bilingual Customer Service Receptionist (BCSR), you have the privilege and opportunity to provide comfort and help in times of need. Bilingual CSR's answer  inbound calls and act as the  first point of contact for a wide range of situations. It could be processing a donation, providing comfort to someone stuck in an elevator, providing relief to someone experiencing pain, or aiding people in emergencies such as fires, floods, or power loss. To us, our clients, and our customers, a CSR is an \\\"invisible hero!\\\"  As a fulltime CSR we require open availability between 6 am and 12 am Monday to Sunday to work scheduled 30-40 hours per week. CSR's will be scheduled to  work a minimum of two weekends per month. We've created an award-winning culture that is backed by three generations and a true \\\"work family\\\" environment. Our employee average tenure is 9 years which also highlights how we support both personal and professional growth.  If this interests you, apply to join our team and partake in: Celebrations and Company EventsCoaching and MentoringDental, health, and EAP BenefitsPaid BreaksSocial Responsibility InitiativesPaid Training Role and Responsibilities: Provide thoughtful and professional customer supportAccurately collect details in an organized and timely mannerResolve customer issues and answer questions via phone, email, and live chatTake messages, enter orders, process and dispatch service callsMaintain a commitment to continuously improve the quality, efficiency, and effectiveness of service Qualifications and Skills:  This position requires individuals who are fluently bilingual in English and French and both written and verbally.Technically savvy and proficient keyboard skills (ie: 50+ WPM)Capable of utilizing Microsoft Office Suite, Microsoft Teams, Zoom and Go To MeetingStrong communication skills - interpersonal, listening, verbal, and writtenAbility to smile through the phone and connect with callers positivelyAbility to multitask and prioritize tasksEmpatheticGoal-orientedTeam player Work from Home Requirements: Quiet, dedicated room free of background noiseAbility to connect the computer from a router - not wirelessWindows PC - No Apple or Chrome BooksOperating System: Windows 10Full, standard-sized keyboard with Function Keys (F1-F12) and a number padTwo monitorsWebcam - for training and coaching purposesWired head set with microphone that connects to your cell phone or landlineUnlimited high-speed internetUnlimited Canada wide long-distance calling/cellphone calling planAbility to provide your own ethernet cable Start date: to be determined Training will be completed via Zoom/Go-to-Meetings/Microsoft Teams for 1-2 weeks Monday to Friday. Applicants should be available Monday to Friday between 8am-10pm for training. Daily hours will change and are scheduled between 4-8 hours per day. Camera's are mandatory to be on during all training. Compensation: $18.25 per hour plus $1.00 per hour performance bonus if targets are met when eligible. Our commitment to being an equal opportunity employer goes beyond acceptance. We celebrate and support all the amazing things that make you unique. All of our team members take pride in upholding an environment of mutual respect. We welcome and encourage applications from people with disabilities. If you require accommodation through the selection process, please call our office at 905-522-4737. \",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"89920C37FA73F24081D3DC3BF04DE07E\",\n            \"cityName\": \"Fort McMurray, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2d5ea9d3c8e68216\",\n            \"jobName\": \"Clerk, Customer Service\",\n            \"companyName\": \"Daadir Transportation Ltd\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694477713991,\n            \"dateOfPosted\": 1694477713607,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 56.7266598,\n                    \"lon\": -111.3790441\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fort McMurray\",\n                \"formattedAddress\": \"Fort McMurray, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 16\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fort McMurray\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: EnglishHours: 35 hours per weekEducation: No degree, certificate or diplomaExperience: 1 to less than 7 monthsWork setting Business sector Private sector Transportation Tasks Access and process information Address customers' complaints or concerns Arrange for billing for services Arrange for refunds and credits Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Receive and log complaints Receive payments Answer clients' inquiries and provide information Computer and technology knowledge Internet MS Excel MS Outlook MS Windows MS Word MS PowerPoint Transportation/travel information Own transportation Work conditions and physical capabilities Attention to detail Fast-paced environment Hand-eye co-ordination Repetitive tasks Tight deadlines Work under pressure Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Judgement Ability to multitask Health benefits Dental plan Health care plan Long term benefits Life insurance Other benefits Free parking available Paid time off (volunteering or personal days)\",\n            \"location\": \"Fort McMurray, AB\"\n        },\n        {\n            \"id\": \"C9FE37052E9D316BB176B9140E7109DF\",\n            \"cityName\": \"Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9bb840d392251131\",\n            \"jobName\": \"Customer Service Representative (Technical)\",\n            \"companyName\": \"City Wide Communications\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694476687036,\n            \"dateOfPosted\": 1691541132981,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6660885,\n                    \"lon\": -63.56756309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Dartmouth, NS $17 an hour, 6 positions available City Wide Communications is a local telecommunications company based in Dartmouth, NS. We’ve been around for 26 years and we’re not your average telco. We offer High Speed Internet, TV and home telephone service, and strive to give Atlantic Canadians affordable options and amazing customer service. We don’t want to be the big call center – we want to know your name and be a great place for you to excel and grow. Come join us! Main Responsibilities: The Technical Representative plays a pivotal role in providing exceptional technical support and assistance to customers, ensuring a positive and satisfying experience with our products and services. This position requires a strong understanding of various technologies, excellent problem-solving skills, and exceptional communication abilities. Act as the primary point of contact for customers seeking technical assistance via phone, email, or chat, and provide prompt and effective solutions to their queries and concerns. Troubleshoot hardware and software issues related to our products, identify root causes, and deliver comprehensive resolutions to ensure customer satisfaction. Guide customers through the installation, configuration, and setup process, ensuring they have a seamless experience with our products. Keep accurate records of customer interactions, technical issues, and solutions provided to build a knowledge base for future reference. Provide technical training and documentation to customers and internal teams to enhance their understanding of our products and improve troubleshooting skills. Identify opportunities for product improvement based on customer feedback. Strive to achieve key performance indicators (KPIs) related to customer satisfaction, response time, and issue resolution. What we offer: Competitive Pay – Starting at $16 an hour with automatic raises at 6 months and 2 years Flexible shift work between 8AM and 11PM A Comprehensive Medical, Vision & Dental Benefit Plan Opportunity to work from home or within our vibrant in office call center (paid training is done in the office as a group – working from home is an option once your full training has been successfully completed after 3 months)Casual dress code Free home telephone and internet service ( after completing probation successfully) Paid vacation, Free Parking Great teammates and team building events/contests (lately we have been doing BBQ lunches)Requirements: Call center experience - minimum 3 months Minimum High School DiplomaDemonstrates excellence in verbal communication skillsComfortable with using computer systems for data entryPunctual and committed to work schedulePass a criminal record check Demonstrates the ability to listen, understand and respond appropriately Great sense of humor\",\n            \"location\": \"Dartmouth, NS\"\n        },\n        {\n            \"id\": \"5CC75A92D7FCCC9866A8BFD545CFDE4E\",\n            \"cityName\": \"Watson Lake, YT\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bc60f13cf176f49e\",\n            \"jobName\": \"Customer Service Sales Clerk\",\n            \"companyName\": \"Shopping Unlimited Inc.\",\n            \"rowSalary\": \"$21 an hour\",\n            \"date\": 1694476649922,\n            \"dateOfPosted\": 1694420618658,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: EnglishHours: 15 to 20 hours per weekEducation: College/CEGEPExperience: 2 years to less than 3 yearsor equivalent experience Work site environment Non-smoking Work setting Rural area Relocation costs not covered by employer Mobile phone store Retail business Tasks Operate cash register Operate computerized inventory record keeping and re-ordering systems Provide advice about merchandise Assist in display of merchandise Greet customers and discuss type, quality and quantity of merchandise or services sought for purchase, rental or lease Maintain sales records for inventory control Prepare merchandise for purchase, rental or lease Prepare sales, rental or leasing contracts and accept cash, cheque, credit card or automatic debit payment Type of product Home electronics Office supplies Telephone or cellular phone Product or manufacturing design Toys Sporting goods and recreational items Personal care items Novelty items Home care items Car care items Security and safety Criminal record check Work conditions and physical capabilities Bending, crouching, kneeling Handling heavy loads Repetitive tasks Standing for extended periods Attention to detail Combination of sitting, standing, walking Weight handling More than 45 kg (100 lbs) Personal suitability Adaptability Collaborative Creativity Efficiency Hardworking Outgoing Positive attitude Proactive Quick learner Time management Dependability Efficient interpersonal skills Flexibility Organized Reliability Team player Excellent oral communication Initiative Accurate Excellent written communication Client focus Judgement Screening questions Do you have previous experience in this field of employment?\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"F1E95CF0A267D793E876FA0F1063DA45\",\n            \"cityName\": \"4960 13 St SE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=aeb5022a9b5e0a39\",\n            \"jobName\": \"Customer Service/Inside Sales Position\",\n            \"companyName\": \"All Blades Canada\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694476558625,\n            \"dateOfPosted\": 1694215050109,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"All Blades Canada Inc. is seeking an individual for a full time Customer service/Inside Sales position.Looking for someone who is hardworking, reliable, upbeat, and friendly with a positive team attitude. Should have good organization skills and the ability to prioritize. Preferably with inside sales and office experience with computers and programs (word, excel, POS programs)Responsibilities include but are not limited to:- Industrial sales and service counter duties- Maintaining and building customer relationships- Performing basic admin tasks (ie. Data entry, invoicing, digital filing)- Responding to incoming sales calls and customer inquiries- Shipping and receivingJob Types: Permanent, Full-timeSalary: $20.00-$24.00 per hourBenefits:Casual dressCompany eventsDental careExtended health careOn-site parkingPaid time offStore discountSchedule:8 hour shiftMonday to FridayWork Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"65B2390D0F506088FFD4F7C2EC597202\",\n            \"cityName\": \"2100 Steeles Ave W, Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8f1c6ea16c6876bf\",\n            \"jobName\": \"Receptionist/Customer Service Representative\",\n            \"companyName\": \"Canada Trust Driving School Inc.\",\n            \"rowSalary\": \"$19–$23 an hour\",\n            \"date\": 1694476276270,\n            \"dateOfPosted\": 1694380499791,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Canada Trust Driving School Inc, is a commercial vehicle driving school with an extra drive for quality and growth.At Canada Trust Driving School Inc, we value integrity, kindness and professionalism, and believe that with a team that shares our values, we can create an environment of constant growth and support.We are currently looking for a friendly and welcoming, communicative, and experienced person to join our team. As the full-time Information Desk Representative, you will be the point of contact and your duties will include greeting students and visitors to the school and determining the reason for their visit, answering phone calls, responding to inquiries by email and social media, and providing detailed information to all.Working closely with the School Administrator, you will be responsible for certain administrative duties, but primarily your role will be one of impeccable customer service and sales. As a liaison for the school, the information you provide and the way you provide it, should encourage visits to the school and in the end enrollment in one of our programs.If this sounds like an exciting position, if you can see the potential growth in the role and believe you can be an asset to the productivity and success of Canada Trust Driving School, please send your resume and tell us why you are the perfect fit for us.Candidates who have some experience in customer service and administrative roles are preferred.Duties and Responsibilities· Greet and welcome guests as they arrive at the office.· Direct visitors to the appropriate team member· Answer phone inquiries and provide accurate information about the school and our programs.· Respond to emails and social media messages in a prompt and professional manner.· Communicate with students regarding absences, availability, late arrivals for lessons, reminders of due dates and upcoming courses.· Communicate and coordinate with instructors, administrators and scheduling regarding student absences, availability, and late arrivals for lessons.· Perform clerical duties such as making copies and maintaining a steady inventory of applications and forms.· Update student cards and information· Ensure reception area is tidy and presentable, with all necessary stationery and materials (e.g. pens, forms and brochures)· Receive, sort, and distribute mail and deliveries.Requirements and Skills· Must be able to speak both Russian and English languages fluently, with solid written and verbal communication skills. Speaking Persian as well is an asset.· Highly organized multitasker who works well in a fast-paced environment, with the ability to prioritize tasks.· Proven work experience as a Receptionist, Front Office Representative, or similar role· Proficiency in Microsoft Office and a variety of Social Media platforms· Adept and experienced with office equipment (e.g., computers, printers, and telephones)· Professional and pleasant attitude and appearance· Ability to be resourceful and proactive when issues arise.· Excellent time management and communication skills· Customer service and sales attitude· An adaptive nature with a strong willingness to learn and grow with the company· High school diploma or equivalent; additional certification in administration is a plus.Job Types: Permanent, Full-timeSalary: $19.00-$23.00 per hourSchedule:Monday to FridayExperience:Administrative: 1 year (required)Sales: 1 year (preferred)Language:Russian (required)Persian (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"9A97EDB9FF4352A0D18F3C60B6823F04\",\n            \"cityName\": \"Storehouse Canada in Belleville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=807bce6932b35c4b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Storehouse Canada\",\n            \"rowSalary\": \"$15.50–$17.00 an hour\",\n            \"date\": 1694475822600,\n            \"dateOfPosted\": 1668682950007,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.1627589,\n                    \"lon\": -77.3832315\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Belleville\",\n                \"formattedAddress\": \"Belleville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hastings County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Belleville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The career and opportunity is challenging and requires determination, perseverance, and a strong sense of loyalty. This takes hard work, intelligence, and time. We are giving self-driven, energetic, and hardworking individuals a chance to get involved with one of the fastest-growing industries in Canada. Candidates will learn all aspects of running a business including marketing, advertising, customer service sales and business development and property management. We will develop your current skills and challenge you to learn new ones. Candidates who expect a lot from themselves and want to grow and learn new skills will find a home with our company.Below is a list of duties and responsibilities for this position:Showing Self-Storage unitsMaking Collection CallsRenting Self-Storage UnitsSelling merchandise (upsell moving and packing suppliesResponding to inquiries via emails and onlineAnswering phone callsAssisting the facility manager with daily, weekly and monthly operations.Receiving and processing paymentsMaintaining a clean officePerforming a facility and locker checkOpening and closing the facilityStocking merchandise areaMaintaining a clean and safe facilityEnsuring all rentable storage units are clean and ready to show to potential clientsProvide exceptional customer serviceWe emphasize Merit over seniority and offer competitive compensation. No experience is necessary to join our team; however, a degree or related experience is preferred. We thank all applicants for their interest, however only those selected for an interview will be contacted.Secondary School (preferred)Experience:customer service/sales: 2 yearsJob Types: Permanent, Part-timeSalary: $15.50-$17.00 per hourBenefits:Casual dressSchedule:Day shiftSupplemental pay types:Bonus payAbility to commute/relocate:Belleville, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)\",\n            \"location\": \"Belleville, ON\"\n        },\n        {\n            \"id\": \"4DB655B90D23FD686C4D0A71C2D76AF3\",\n            \"cityName\": \"Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d4caa4fd9f4c8a3d\",\n            \"jobName\": \"Customer Service/Ticket Agent\",\n            \"companyName\": \"Gray Line Sightseeing Victoria\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694475818880,\n            \"dateOfPosted\": 1693610464103,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4284207,\n                    \"lon\": -123.3656444\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job titleGray Line Sightseeing Victoria Customer Service/Ticket AgentReports toGray Line Manager/SupervisorJob OutlineDo you enjoy the outdoors? Do you like talking to and introducing people to our exciting and beautiful city? If so, Gray Line Sightseeing Victoria is the place for you!Our Customer Service/Ticket Agents are situated at Gray Line kiosks around Victoria’s picturesque Inner Harbour, engaging visitors and locals alike as ambassadors for our beautiful city and Gray Line’s multiple tour services. We provide a variety of memorable sightseeing experiences and serve as an important conduit for visitors who want to explore all that Victoria has to offer. An ideal candidate will have exceptional communication skills and possess a can-do attitude.At The Wilson’s Group of Companies, we believe in providing a positive and safe work environment for our staff members. If you’re looking to gain valuable experience in the tourism industry, this is a perfect start!We are looking for part time staff to start as soon as possible.Duties and responsibilitiesTicket sales for various products within Wilson’s Group and Sightseeing VictoriaPreparing guests for various tours and providing a memorable lasting experienceProvide guests with information and suggestions for touring VictoriaOpening and closing dutiesAssisting with projects as neededQualifications & ExperienceClass 5 Drivers licenseFriendly, outgoing, and energetic personalityAbility to work independently and as part of a teamAbility to take initiative, multi-task and be adaptable to different aspects of the jobWilling and able to work outside in various Victoria weather conditionsStrong sales capabilitiesProven problem-solving skillsExperience handling cash, maintaining a cash float and reconciling daily salesKnowledge of Victoria and its local attractions is an asset, additional training will be providedTourism experience and other languages is an asset but not requiredCompensationA competitive hourly wageUnique company and industry perksA supportive management teamRaises/promotions based on performanceIf you are interested in joining our Gray Line Sightseeing Victoria team, please submit your resume. While we welcome all applicants, only those selected for an interview will be contacted.Job Type: Part-timePart-time hours: 15-25 per weekSalary: From $18.00 per hourBenefits:Company eventsFlexible scheduleFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftExperience:Customer service: 1 year (preferred)Licence/Certification:Class 5 Licence (preferred)Work Location: In person\",\n            \"location\": \"Victoria, BC\"\n        },\n        {\n            \"id\": \"7133DD48F7D8BA896070DD2742F635CC\",\n            \"cityName\": \"17600 Yonge Street, Newmarket, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f3782cb5b5f6fa7f\",\n            \"jobName\": \"Customer Service And Food hAndling\",\n            \"companyName\": \"Subway\",\n            \"rowSalary\": \"$15.50–$17.50 an hour\",\n            \"date\": 1694475131775,\n            \"dateOfPosted\": 1670099707246,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.0493831,\n                    \"lon\": -79.47891640000002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Newmarket\",\n                \"formattedAddress\": \"Yonge St, Newmarket, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Newmarket\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Subway located in upper Canada mall is hiring!we are currently hiring full time & part time positions. We have day shifts, evening and weekend shifts available.We are looking for friendly and outgoing candidates, who have the ability to work well with others and in a fast paced environment.Please reply to this ad with your resume, or during a resume to subway.Thank you!Job Types: Part-time, Full-timePart-time hours: 40 per weekSalary: $15.50-$17.50 per hourSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayWeekend availabilityWork Location: In person\",\n            \"location\": \"Yonge St, Newmarket, ON\"\n        },\n        {\n            \"id\": \"5DF07F024CC86389628D7606D8902301\",\n            \"cityName\": \"2539 Broadway W, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b66f1e76373827cd\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Thomas Haas Chocolates & Patisserie\",\n            \"rowSalary\": \"$18–$19 an hour\",\n            \"date\": 1694474715487,\n            \"dateOfPosted\": 1694310574467,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"THOMAS HAAS Chocolates and Patisserie is looking for a FOODIE & COFFEE loving person to join our team!- Full-time: Tuesday to Saturday (40hrs/wk)Sundays & Mondays Closed (always have 2 set days off)Opening shift starts at 7:15amClosing shift ends around 7pm (giving you time for dinner with family & friends! :)- we are looking for someone who is hardworking, possess good multi-tasking skills, has attention to detail, enjoys engaging with people and is self-motivated- a good part of this job is talking with our customers & your co-workers - good listening skills & English comprehension are key!- we offer a competitive wage & shared tips- free beverages & meal while at work- extended health benefits (after one year full-time with us)- we hire people on work/travel visas (12 months)Your past customer service experience would reflect in your starting wage.*barista experience is an asset, but not necessary*Do you have a willingness to learn and expand your skill set?Do you enjoy working in a team in a fast paced environment?We would love to meet you if this sounds like an opportunity you would like to pursue!Job Type: Full-timeSalary: $18.00-$19.00 per hourBenefits:Dental careFlexible schedulePaid time offVision careSchedule:8 hour shiftDay shiftSupplemental pay types:TipsAbility to commute/relocate:Vancouver, BC V6K 2E9: reliably commute or plan to relocate before starting work (required)Application question(s):How do you handle a stressful situation?Education:Secondary School (required)Experience:customer service: 1 year (required)Language:and comprehend English very well (required)Licence/Certification:FoodSafe (required)Shift availability:Day Shift (required)Work Location: In personApplication deadline: 2023-09-23Expected start date: 2023-09-15\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"89CD00BA8A6DD6B8938659F44A10AC3B\",\n            \"cityName\": \"12038 248 St, Maple Ridge, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=63c6cbc58a164bed\",\n            \"jobName\": \"Customer Service Expert / Pizza Cook\",\n            \"companyName\": \"Domino’s | Silver Valley Pizza Inc.\",\n            \"rowSalary\": \"$16.75–$17.75 an hour\",\n            \"date\": 1694474676996,\n            \"dateOfPosted\": 1694298894251,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service Expert’s role is crucial within the Domino’s system. We pride ourselves on offering fast and friendly service with a smile, and our CSEs lead the way in doing so. Within our fast paced environment, the role is primarily to offer top quality customer service by phone and in person at the counter. Customer Service Experts are expected to know Domino’s products and the current offers in order to provide customers with the correct order and best value based on their needs. A uniform is provided. Customer Service Experts are expected to be presentable by following Domino’s personal image and grooming standards. Functions: Customer Service Experts will take orders by phone-in customers, as well as customers at the store. They are expected to manage the cash drawer when accepting payment for orders and returning change. CSEs will also handle customer concerns using the approach taught during Domino’s on-boarding and orientation. Customer Service Experts will also help make quality products, label boxes, cut pizzas and prepare orders for delivery or to be served to in-store customers. CSEs also help in maintaining the store’s professional image by participating in the cleaning tasks assigned to all team members. Qualifications: All Customer Service Experts must have the following:Friendly and well spokenGood math skills to handle cash handling for in-store customer paymentsSpeak English fluently in order to serve customers Benefits:Flexible schedulesCompetitive wagesStaff discountsCareer growth opportunitiesHealth & Dental available for full-time staff REQUIREMENTS Must be 16 years or older At Domino's Pizza, Our Most Important Ingredient is Our People! We offer employment opportunities within our franchise stores. Take the first step in joining our team, and you'll find opportunities you won't find anywhere else in the industry!\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"2437324B20A1A3B6D8723926D3D3C539\",\n            \"cityName\": \"Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=085ea399009bf944\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Roshni Wellness\",\n            \"rowSalary\": \"$19–$20 an hour\",\n            \"date\": 1694474668768,\n            \"dateOfPosted\": 1694298894850,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative- MarketsWe're looking for someone to run our Central Okanagan markets for the Fall/Winter Season. Markets are booked on weekends from Sept- early Dec in the Kelowna/West Kelowna area. Must be available to work weekends. Perfect for university students or those looking for additional income on weekends.Duties:- Provide exceptional customer service and support to customers- Coordinate setting up and taking down displays at market locations across the Centeral Okanagan- Interact with customers and be ready to share product info, pricing, and any others questions- Communicate with team about stock, sales, trends, etc.- Maintain sales and product inventory stats using our systems-Requirements:- Excellent verbal and written communication skills- Interest in the local makers scene and appreciation for handmade local goods- Strong problem-solving and decision-making abilities- Ability to analyze customer needs and provide appropriate solutions- Previous experience in a customer service role is preferred- Proficient in using computer systems and software applications- Ability to work mostly independently as well as part of a team- High school diploma or equivalent-Able to lift 50 lbs for market sets ups-Must have a reliable vehicle that can fit market equipment and can transport to market locationsWe offer competitive pay, a positive work environment, and opportunities for growth within the company. If you are a motivated individual with a passion for providing excellent customer service, we would love to hear from you.To apply, please submit your resume and cover letter detailing your relevant experience and why you are interested in this position.This posting is only open to individuals who are permitted to work in Canada.Job Types: Part-time, SeasonalContract length: 3 monthsPart-time hours: 12 per weekSalary: $19.00-$20.00 per hourSchedule:Weekends as neededWeekends onlyApplication question(s):Do you have a reliable vehicle that you can use to commute and transport market equipment in?Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Ability to Commute:Kelowna, BC (preferred)Work Location: In personExpected start date: 2023-09-17\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"8A1166D4A57C3D2F93D73AB6D5FEEEE4\",\n            \"cityName\": \"194 Chain Lake Dr, Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=344bfb716ddb9c59\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Spirit Halloween, Bayers Lake\",\n            \"rowSalary\": \"$15–$17 an hour\",\n            \"date\": 1694473063331,\n            \"dateOfPosted\": 1693625548626,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.645894,\n                    \"lon\": -63.66951599999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax\",\n                \"formattedAddress\": \"Chain Lake Dr, Halifax, NS B3S, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halifax\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Company descriptionSpirit Halloween is Canada's number 1 store for costumes, decore and more.This is a seasonal position we build in August, and tear down in November, then repeat next year. If you enjoy scary movies, pop culture and all things halloween, then this is a great place to work.Job descriptionIf you like all things Halloween, then this is a great opportunity to be in your element.Spirit halloween is Canada's number 1 halloween retailer, with the best prices and best customer service policies in the nation. We work with all things spooky, macabre and pop culture to deliver a unique experience to our customers and staff a like.This is a seasonal position, which ends in early-mid November.So this is not at all permanent. However you are invited to stay with us each season.Great opportunity to earn extra cash for the holidays.Great customers. Lots of fun.Job Types: Full-time, Part-time, TemporaryContract length: 2-3 monthsPart-time hours: 16-48 per weekSalary: $15.00-$17.00 per hourBenefits:On-site parkingStore discountDay range:Monday to FridayWeekends as neededShift:10 hour shift12 hour shift4 hour shift8 hour shiftDay shiftWork setting:Apparel storeCOVID-19 considerations:Plastic barriers and masks are required on premisesWork Location: In person\",\n            \"location\": \"Chain Lake Dr, Halifax, NS\"\n        },\n        {\n            \"id\": \"2E0BF48A5644343BEFE88390FCEE6C12\",\n            \"cityName\": \"Prince Albert, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=88870141dbaaadba\",\n            \"jobName\": \"Customer Service Representative - Financial Services\",\n            \"companyName\": \"Speedy Cash Canada\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694473047241,\n            \"dateOfPosted\": 1693624919462,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.2033494,\n                    \"lon\": -105.7530705\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Prince Albert\",\n                \"formattedAddress\": \"Prince Albert, SK, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 15\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Prince Albert\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsHealth benefits Dental plan Health care plan Paramedical services coverage Vision care benefits Financial benefits Bonus Long term benefits Pension planWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Prince Albert, SK\"\n        },\n        {\n            \"id\": \"3E092857EDAFEF1E7278C84358A4465A\",\n            \"cityName\": \"Arum Lily Edmonton in Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0fed82cb45d9582b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Arum Lily Edmonton\",\n            \"rowSalary\": \"$17–$20 an hour\",\n            \"date\": 1694473025405,\n            \"dateOfPosted\": 1693625003262,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Serves customers by helping them select products.Drives sales through engagement of customers, suggestive selling, and sharing product knowledge.Responds to customers’ questions.Documents sales by creating or updating customer profile records.Processes payments by totaling purchases, processing checks, cash, and store or other credit and debit cards.keeps the front shop clean and organized.helps other team members when busy.Maintaining a positive, empathetic, and professional attitude toward customers at all times.Communicating with customers through various channels.Acknowledging and resolving customer complaints.Communicating and coordinating with colleagues as necessary.Ensure customer satisfaction and provide professional customer support.Knowledge in Marketing and social media is a BONUS.Job Type: Full-timeSalary: $17.00-$20.00 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftEducation:Secondary School (preferred)Experience:customer service: 3 years (required)Work Location: In personExpected start date: 2023-09-25\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"6665D9114E17BE5F7302F2F4B28B1DC0\",\n            \"cityName\": \"Breslau, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=438d22dff0f3bb27\",\n            \"jobName\": \"Customer Service Scheduler\",\n            \"companyName\": \"Community Support Connections\",\n            \"rowSalary\": \"$18.65 an hour\",\n            \"date\": 1694472893225,\n            \"dateOfPosted\": 1693624893957,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4691726,\n                    \"lon\": -80.4094164\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Breslau\",\n                \"formattedAddress\": \"Breslau, ON N0B 1M0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Breslau\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CUSTOMER SERVICE SCHEDULER Permanent, Full-Time Estimated Start Date: September 25, 2023 35 hours per week, $18.65/hour (Monday - Friday, weekend availability) At Community Support Connections, we wake up each morning energized about the difference we make in the lives of our clients; people who could be your parents, grandparents, friends, or neighbours. Working with hundreds of amazing volunteers, donors, and community partners, we provide a wide range of community supports for older adults and people with different abilities to help them live at home with independence and dignity – something we all deserve. We are truly caring and client-centered, and are constantly innovating; looking for new and better ways to provide the best care and supports possible. Passion and commitment permeate everything we do. Driven by our values, we treat our clients, volunteers, donors, and each other, with dignity and respect. We recognize that diversity is the foundation for understanding the needs of our stakeholders. We believe the best way to serve our clients and volunteers is to create an environment and culture that empowers our staff to be as productive and happy as possible. That includes: Versatile work options including flexible hours or work from home hybrid Generous benefit days and group RRSPs Competitive health and dental benefits Access to our Employee and Family Assistance Plan (EFAP) On-site hot lunch options from our own kitchen Free parking If what we do resonates with your core values, then we want to hear from you! The Role: Working closely with the Scheduling Team, the Customer Service Scheduler provides customer service in a professional and friendly manner. This includes answering telephone calls, greeting visitors, answering and redirecting inquiries, processing mail, and maintaining database information. They respond to client needs and demands for internal services, identify client needs, and communicate with staff, clients and volunteers regarding various agency programs. You: Successfully balance technical and logistical duties with patience and professionalism to respond to clients, caregivers, volunteers and visitors Thrive in a fast-paced, dynamic, responsive and ever-changing environment Are able to prioritize workloads and handle multiple projects simultaneously Are a natural problem-solver with demonstrated ability to use good judgement in decision-making Are an excellent communicator with a keen sense of timeliness Responsibilities Answer multi-line phone; greet clients, volunteers and other visitors; answer client inquiries and redirect calls and inquires to appropriate agency staff members Receive client requests for services Coordinate service with our day program partners Prepares and updates Transportation, Meals on Wheels, and Assisted Grocery Shopping schedules to ensure agency resources are maximized and adjustments are addressed Match transportation and shopping clients’ needs with drivers Coordinate the Assisted Grocery Shopping Program Communicate schedules with clients, volunteers and staff and communicate any changes to the schedule Conduct follow-ups on client and volunteer inquiries, requests or complaints in a professional and friendly manner Ensure all scheduling and program information is entered accurately in the AlayaCare database Update and maintain client information in AlayaCare Conduct weekly audit of AlayaCare to ensure scheduling entries and associated billings are accurate Drive agency vehicles (including for program delivery) if required Assists with special projects and other tasks, as needed Education/Qualifications Two-year community college diploma in a related field or equivalent work experience Minimum 1-year customer service experience Valid Driver’s License and daily access to a reliable vehicle for business-related travel Clean Drivers Abstract Current Emergency First Aid/CPR A Certificate Experience working with older adults and/or people with diverse abilities Working Hours & Environment Willing and able to work occasional evenings and weekends Extensive computer and telephone use Willing and able to work in a hybrid work setting (home and office) Please submit a resume and cover letter, clearly identifying the unique attributes you bring to the position by September 15, 2023. We are happy to accommodate the needs of qualified candidates in all parts of the recruitment and assessment process in accordance with the Accessibility for Ontarians with Disabilities Act (AODA). If you are contacted for an interview and anticipate needing accommodations for any part of the recruitment process, please do not hesitate to let us know how to best meet your needs. Only those candidates selected for an interview will be contacted. Check out communitysupportconnections.org to learn more about our programs and services! You can also find us on Facebook, Twitter and LinkedIn!7SGhlTOsrE\",\n            \"location\": \"Breslau, ON\"\n        },\n        {\n            \"id\": \"CABF2B08B3E64BC652D95189D5CA4BF5\",\n            \"cityName\": \"Westmount, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4cfdabab544adcf7\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Answerplus Inc\",\n            \"rowSalary\": \"$18.25 an hour\",\n            \"date\": 1694472768165,\n            \"dateOfPosted\": 1692777290993,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.48571889999999,\n                    \"lon\": -73.59569929999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Westmount\",\n                \"formattedAddress\": \"Westmount, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Westmount\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" At AnswerPlus, we are proud to say we’ve been in the answering service business for 60 years! With 4 locations across Canada and over 1500 clients, AnswerPlus has built an incredibly strong brand and reputation in the industry. Our niche is urgent call response 24/7/365. We seek to answer 80% of calls within 20 seconds or less.  As a Bilingual Customer Service Receptionist (BCSR), you have the privilege and opportunity to provide comfort and help in times of need. Bilingual CSR's answer  inbound calls and act as the  first point of contact for a wide range of situations. It could be processing a donation, providing comfort to someone stuck in an elevator, providing relief to someone experiencing pain, or aiding people in emergencies such as fires, floods, or power loss. To us, our clients, and our customers, a CSR is an \\\"invisible hero!\\\"  As a fulltime CSR we require open availability between 6 am and 12 am Monday to Sunday to work scheduled 30-40 hours per week. CSR's will be scheduled to  work a minimum of two weekends per month. We've created an award-winning culture that is backed by three generations and a true \\\"work family\\\" environment. Our employee average tenure is 9 years which also highlights how we support both personal and professional growth.  If this interests you, apply to join our team and partake in: Celebrations and Company EventsCoaching and MentoringDental, health, and EAP BenefitsPaid BreaksSocial Responsibility InitiativesPaid Training Role and Responsibilities: Provide thoughtful and professional customer supportAccurately collect details in an organized and timely mannerResolve customer issues and answer questions via phone, email, and live chatTake messages, enter orders, process and dispatch service callsMaintain a commitment to continuously improve the quality, efficiency, and effectiveness of service Qualifications and Skills:  This position requires individuals who are fluently bilingual in English and French and both written and verbally.Technically savvy and proficient keyboard skills (ie: 50+ WPM)Capable of utilizing Microsoft Office Suite, Microsoft Teams, Zoom and Go To MeetingStrong communication skills - interpersonal, listening, verbal, and writtenAbility to smile through the phone and connect with callers positivelyAbility to multitask and prioritize tasksEmpatheticGoal-orientedTeam player Work from Home Requirements: Quiet, dedicated room free of background noiseAbility to connect the computer from a router - not wirelessWindows PC - No Apple or Chrome BooksOperating System: Windows 10Full, standard-sized keyboard with Function Keys (F1-F12) and a number padTwo monitorsWebcam - for training and coaching purposesWired head set with microphone that connects to your cell phone or landlineUnlimited high-speed internetUnlimited Canada wide long-distance calling/cellphone calling planAbility to provide your own ethernet cable Start date: to be determined Training will be completed via Zoom/Go-to-Meetings/Microsoft Teams for 1-2 weeks Monday to Friday. Applicants should be available Monday to Friday between 8am-10pm for training. Daily hours will change and are scheduled between 4-8 hours per day. Camera's are mandatory to be on during all training. Compensation: $18.25 per hour plus $1.00 per hour performance bonus if targets are met when eligible. Our commitment to being an equal opportunity employer goes beyond acceptance. We celebrate and support all the amazing things that make you unique. All of our team members take pride in upholding an environment of mutual respect. We welcome and encourage applications from people with disabilities. If you require accommodation through the selection process, please call our office at 905-522-4737. \",\n            \"location\": \"Westmount, QC\"\n        },\n        {\n            \"id\": \"65C4E810877510EB264AF600FDFCFA26\",\n            \"cityName\": \"Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=086b2d17abe5de8d\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Answerplus Inc\",\n            \"rowSalary\": \"$18.25 an hour\",\n            \"date\": 1694472735266,\n            \"dateOfPosted\": 1692777338340,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2557206,\n                    \"lon\": -79.8711024\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" At AnswerPlus, we are proud to say we’ve been in the answering service business for 60 years! With 4 locations across Canada and over 1500 clients, AnswerPlus has built an incredibly strong brand and reputation in the industry. Our niche is urgent call response 24/7/365. We seek to answer 80% of calls within 20 seconds or less.  As a Bilingual Customer Service Receptionist (BCSR), you have the privilege and opportunity to provide comfort and help in times of need. Bilingual CSR's answer  inbound calls and act as the  first point of contact for a wide range of situations. It could be processing a donation, providing comfort to someone stuck in an elevator, providing relief to someone experiencing pain, or aiding people in emergencies such as fires, floods, or power loss. To us, our clients, and our customers, a CSR is an \\\"invisible hero!\\\"  As a fulltime CSR we require open availability between 6 am and 12 am Monday to Sunday to work scheduled 30-40 hours per week. CSR's will be scheduled to  work a minimum of two weekends per month. We've created an award-winning culture that is backed by three generations and a true \\\"work family\\\" environment. Our employee average tenure is 9 years which also highlights how we support both personal and professional growth.  If this interests you, apply to join our team and partake in: Celebrations and Company EventsCoaching and MentoringDental, health, and EAP BenefitsPaid BreaksSocial Responsibility InitiativesPaid Training Role and Responsibilities: Provide thoughtful and professional customer supportAccurately collect details in an organized and timely mannerResolve customer issues and answer questions via phone, email, and live chatTake messages, enter orders, process and dispatch service callsMaintain a commitment to continuously improve the quality, efficiency, and effectiveness of service Qualifications and Skills:  This position requires individuals who are fluently bilingual in English and French and both written and verbally.Technically savvy and proficient keyboard skills (ie: 50+ WPM)Capable of utilizing Microsoft Office Suite, Microsoft Teams, Zoom and Go To MeetingStrong communication skills - interpersonal, listening, verbal, and writtenAbility to smile through the phone and connect with callers positivelyAbility to multitask and prioritize tasksEmpatheticGoal-orientedTeam player Work from Home Requirements: Quiet, dedicated room free of background noiseAbility to connect the computer from a router - not wirelessWindows PC - No Apple or Chrome BooksOperating System: Windows 10Full, standard-sized keyboard with Function Keys (F1-F12) and a number padTwo monitorsWebcam - for training and coaching purposesWired head set with microphone that connects to your cell phone or landlineUnlimited high-speed internetUnlimited Canada wide long-distance calling/cellphone calling planAbility to provide your own ethernet cable Start date: to be determined Training will be completed via Zoom/Go-to-Meetings/Microsoft Teams for 1-2 weeks Monday to Friday. Applicants should be available Monday to Friday between 8am-10pm for training. Daily hours will change and are scheduled between 4-8 hours per day. Camera's are mandatory to be on during all training. Compensation: $18.25 per hour plus $1.00 per hour performance bonus if targets are met when eligible. Our commitment to being an equal opportunity employer goes beyond acceptance. We celebrate and support all the amazing things that make you unique. All of our team members take pride in upholding an environment of mutual respect. We welcome and encourage applications from people with disabilities. If you require accommodation through the selection process, please call our office at 905-522-4737. \",\n            \"location\": \"Hamilton, ON\"\n        },\n        {\n            \"id\": \"E6E2524949155875B6744B9E6CA27049\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dc5887f05a02b0b9\",\n            \"jobName\": \"Customer Service Support Representative\",\n            \"companyName\": \"Nugget.Ai\",\n            \"rowSalary\": \"$21.65 an hour\",\n            \"date\": 1694472634355,\n            \"dateOfPosted\": 1692777284638,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"nugget.ai is posting this job on behalf of our client, Garden River First Nation Educational Unit . nugget.ai is responsible solely for the posting of this job. Garden River First Nation Educational Unit will be responsible for the application, screening and hiring process. Employment Type : Full-time Salary: $21.65/hr Position Summary: Garden River First Nation Education Unit is seeking a Customer Service Support Representative to join our team. This position will work with customers to ensure that all our customers’ needs are addressed accurately and efficiently. The Customer Service Support Representative will provide education and handle a wide variety of questions while ensuring a world-class customer experience. The ideal candidate will be passionate about Customer Service and motivated to work with a customer-centric team. Requirements: High School Diploma or GED equivalent Previous experience in a customer service role Knowledge of Microsoft Office suite Strong verbal and written communication skills and excellent ability to listen and respond Must be courteous with strong customer service orientation Excellent multitasking abilities Strong flexibility and the ability to manage and adapt to changing priorities quickly Nice to Haves: Associate’s or Bachelor’s degree Experience working in a contact center/call center environment Job Duties/Responsibilities: Resolve routine customer requests with services via inbound, outbound calls, or the Internet. Speak with customers in a courteous, friendly, and professional manner using protocol procedures. Inquire, clarify, and confirm customer requirements and understanding of the solution. Provide additional customer education and information as needed. Notify clients of any results in a timely and accurate manner Participate in activities designed to improve customer satisfaction and business performance. Perform administrative support for school record management, CRM data maintenance, and internal records to assure HIPAA compliance. This position requires a current satisfactory Criminal Records Check (including Vulnerable Sector Search), Child Abuse Registry Check and Adult Abuse Registry Check as conditions of employment. The successful candidate will be responsible for any service charges incurred. A security check is considered current if it was obtained no more than six (6) months prior to the start of employment.\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"60B0133E9ED78BE1F76FA0D29B4E0AA5\",\n            \"cityName\": \"801 Royal Oak Dr, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1e085dcc714ff3eb\",\n            \"jobName\": \"Cashier/Customer Service - Victoria (Broadmead Village)\",\n            \"companyName\": \"Canadian Tire\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694472263857,\n            \"dateOfPosted\": 1694472263612,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.49763189999999,\n                    \"lon\": -123.3742387\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Royal Oak Dr, Saanich, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you ready to join Canada's most-shopped general merchandise retailer, with over 500 stores from coast to coast? Canadian Tire offers customers a unique mix of products and services through three specialty categories in which the organization is the market leader - automotive parts, accessories and service; sports and leisure products; and home products. Canadian Tire offers competitive compensation packages including; benefits, potential for profit sharing, extensive training, and career opportunities from within and across the country at the Canadian Tire Retail stores. Summary The Cashier team member works in a fast-paced environment that involves constant interaction with customers. This position requires delivering friendly and courteous service while processing customer purchases efficiently and correctly. This role involves the operation of a computerized cash register. Main Responsibilities and Tasks: Operates cash register and all point of sales functions.Processes customer purchases efficiently, following standardized procedures.Accurately verifies merchandise quantities, descriptions and prices when processing customer purchases.Balances cash and is aware of amount of cash on hand.Maintains merchandise around the cash area and ensures that retail basics are executed efficiently.Handles multiple customers in an effective and efficient manner.Deals with challenging situations and conflict resolution in a professional manner. Requirements Highly approachable, customer-oriented individual who thrives in offering exceptional service to customers.Strong belief in the Canadian Tire values of honesty, integrity, and respect.Effective written and oral communication skills and the ability to maintain professional communication, even in challenging situations.Attention to detail and organizational skills.Ability to resolve retail and/or customer issues.Ability to multitask, adapt and cope with challenging and changing situations.Positive attitude, punctuality and solid work ethic.Strong mathematical ability and typing skills.Ability to work with computerized systems and with minimum supervision. More about the position: Potential Career OpportunitiesNext levels: Merchandiser, Cashier Supervisor, and Department Manager.Physical Demands and Working ConditionsStanding/walking for 8 hours.Lifting and/or carrying of merchandise items, as required, on a regular, frequent and unassisted basis. Merchandise item may vary in weight from \\\"light\\\" to \\\"heavy\\\".Our offering includesCompetitive compensation and benefit packagePotential for Profit SharingEmployee Shopping DiscountsFlexible work hoursLearning and Development opportunitiesScholarshipsReward and Recognition ProgramA culture of performance & accountabilityA supportive and positive team environment Background Check Requirements As a condition of employment, this position may be subject to the successful completion of the following pre-employment conditions:Reference CheckEmployment VerificationsCriminal Background CheckCredit Check\",\n            \"location\": \"Royal Oak Dr, Victoria, BC\"\n        },\n        {\n            \"id\": \"756EE852AA76D233FCBFAA54EFF5BD4A\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4257ef8aff5a1cf2\",\n            \"jobName\": \"Customer Service Support Representative\",\n            \"companyName\": \"Nugget.Ai\",\n            \"rowSalary\": \"$21.65 an hour\",\n            \"date\": 1694472067991,\n            \"dateOfPosted\": 1692774988465,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"nugget.ai is posting this job on behalf of our client, Garden River First Nation Educational Unit . nugget.ai is responsible solely for the posting of this job. Garden River First Nation Educational Unit will be responsible for the application, screening and hiring process. Employment Type : Full-time Salary: $21.65/hr Position Summary: Garden River First Nation Education Unit is seeking a Customer Service Support Representative to join our team. This position will work with customers to ensure that all our customers’ needs are addressed accurately and efficiently. The Customer Service Support Representative will provide education and handle a wide variety of questions while ensuring a world-class customer experience. The ideal candidate will be passionate about Customer Service and motivated to work with a customer-centric team. Requirements: High School Diploma or GED equivalent Previous experience in a customer service role Knowledge of Microsoft Office suite Strong verbal and written communication skills and excellent ability to listen and respond Must be courteous with strong customer service orientation Excellent multitasking abilities Strong flexibility and the ability to manage and adapt to changing priorities quickly Nice to Haves: Associate’s or Bachelor’s degree Experience working in a contact center/call center environment Job Duties/Responsibilities: Resolve routine customer requests with services via inbound, outbound calls, or the Internet. Speak with customers in a courteous, friendly, and professional manner using protocol procedures. Inquire, clarify, and confirm customer requirements and understanding of the solution. Provide additional customer education and information as needed. Notify clients of any results in a timely and accurate manner Participate in activities designed to improve customer satisfaction and business performance. Perform administrative support for school record management, CRM data maintenance, and internal records to assure HIPAA compliance. This position requires a current satisfactory Criminal Records Check (including Vulnerable Sector Search), Child Abuse Registry Check and Adult Abuse Registry Check as conditions of employment. The successful candidate will be responsible for any service charges incurred. A security check is considered current if it was obtained no more than six (6) months prior to the start of employment.\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"9B5E12DD264998F0455D7E6867FCC8AB\",\n            \"cityName\": \"St.Urbain Bagel in Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a8d7f4855c6a5e96\",\n            \"jobName\": \"Customer Service, Cleaning\",\n            \"companyName\": \"St.Urbain Bagel\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694471888256,\n            \"dateOfPosted\": 1693625840453,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Looking for someone from 8 AM to 4 PM on Saturdays and perhaps Thursdays from 10-4 at the moment. Someone who is responsible and motivated, willing to work in a busy but fun environment with friendly staff.Job Types: Full-time, Part-timePart-time hours: 50 per weekSalary: From $17.00 per hourBenefits:Dental careExtended health careStore discountSchedule:8 hour shiftWeekends as neededSupplemental pay types:TipsExperience:cleaning: 1 year (preferred)cleaner: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"ADCC1F9253B6EB663E4D7625C6E021E9\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2755d24258ee1d41\",\n            \"jobName\": \"Customer Service & Retention Specialist (Mandarin Speaker Only)\",\n            \"companyName\": \"Connex Global Communications Inc. O/A Phonebox\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694471595543,\n            \"dateOfPosted\": 1693625013796,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Connex Global Communications Inc. o/a PhoneBox is looking for a Full-Time and Permanent Customer Support Representative located in our Toronto branch office. PhoneBox provides affordable wireless plans in Canada and the United States to students and visitors to Canada since 2011. We are looking forward a responsible and energetic individual to join our team.JOB DESCRIPTIONReceiving and processing inquiries for account changes and customer care topics over phone, livechat, email, and SMS textsFollow and respond to inquiries based on guidelines provided by customer care managerWork as a store-front customer support representativeProcess payment related duties and assist in managing inventory of devices and SIM cardsInteracting closely with Customers and share any questions or concerns to the teamAssisting walk-in clients at the retain store location on their requests including but are not limited to Activations, Bill payments, Account terminationsWorking on Operations duties which in relations to Clients and Partners supportLeading and Supervising Retention teamCreate deals/promotions that can retain the clients and match with the market offersRequirementsGeneral office/administrative skills, with above-average writing skillsGood English proficiency, written and verbal. Fluent in Mandarin is required.Good communication and relationship-building skills in multicultural workplaceHandle customer inquiries, complaints, billing questions and payment issues/servicesDetail oriented, organized, computer savvy and a multitaskerAbility to function well in a busy and high volume environment.Ability to work effectively, both independently and as part of a team.Ability to consistently offer professional and engaging customer service.Job Types: Full-time, PermanentJob Types: Full-time, PermanentSalary: $17.00-$19.00 per hourBenefits:Casual dressCompany eventsDental careDiscounted or free foodExtended health careFlexible schedulePaid time offStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payWork Location: In personExpected start date: 2023-09-18\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"114D1402A71331EA84B1FB2B7C021719\",\n            \"cityName\": \"1006 103A St SW Ste 301, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=962a09b3f07042f0\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Fountain Tire\",\n            \"rowSalary\": \"$55,000–$58,000 a year\",\n            \"date\": 1694471494880,\n            \"dateOfPosted\": 1693624940737,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.454021,\n                    \"lon\": -113.5655165\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Southwest Edmonton, Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Leduc County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 55000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    55000.0\n                ],\n                \"range\": {\n                    \"gte\": 55000.0,\n                    \"gt\": null,\n                    \"lte\": 55000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Overview:  Fountain Tire, an industry leader with a strong presence and reputation across Canada, is looking for aCustomer Service Representative's to professionally support our network of distribution centers, stores and customers across Canada from our South Edmonton Corporate Office. Salary: $55,000 - $58,000 annually Why work for Fountain Tire? We are a Platinum Member of Canada’s Best Managed Companies and one of Alberta's Top 70 Employers We are one of the 10 largest independent tire dealers in North America, and recipient of many Customer Service and Best Business Awards We continually strive to expand our operations in existing markets, as well as new markets and currently, we have over 160 stores from BC through Ontario Our Customer Service Representatives (CSR’s) are a highly integrated, high performance team that provides consistent customer service to both internal and external customers in order to drive sales and customer satisfaction. Duties and responsibilities include: Maximize sales potential by ensuring calls and online chats are handled in a timely and effective manner Deliver CSR managed program elements – including warranty, booking orders, national account web orders, northern Ontario direct ship Optimize customer satisfaction by assisting with inventory management duties Provide operational excellence in daily order management processes Identify issues and opportunities for improvement in personnel, process or technology; take action and escalate roadblocks as required to drive constant improvement.What you need: At least 5 years of experience in a call center environment At least 5 years of customer service experience A high school diploma or equivalent Experience in the tire industry is an asset Proficiency with Microsoft Office software, Microsoft Dynamics AX a definite asset Proven ability to work with patience and courtesy in customer relations Excellent organizational and time management skills in order to manage independent work Proven ability to work within a team environment; this includes coaching and team building skills Excellent verbal communication skills, especially by phone The successful candidate will have the opportunity to: Collaborate within a team of highly motivated and dedicated individuals Develop personally and professionally in a supportive working environment Utilize our impressive health, dental and vision benefits for you and your family Invest in a retirement savings plan with company matching to help you achieve your financial goals Enjoy discounts on personal vehicle services at your local Fountain Tire location Interested candidates are encouraged to apply online and this position will remain posted until filled. In office applications will be accepted by reception only but are preferred online.\",\n            \"location\": \"A St SW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"C606FE5A7107A64C09E9396482801DF5\",\n            \"cityName\": \"17600 Yonge Street, Newmarket, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d56ded800183fe75\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Kibo Sushi House - Upper Canada Mall\",\n            \"rowSalary\": \"$15.50–$18.00 an hour\",\n            \"date\": 1694471281801,\n            \"dateOfPosted\": 1693625202750,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.0493831,\n                    \"lon\": -79.47891640000002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Newmarket\",\n                \"formattedAddress\": \"Yonge St, Newmarket, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Newmarket\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for person to join as our team who has great customer services.Job Types: Full-time, Part-timePart-time hours: 20-40 per weekSalary: $15.50-$18.00 per hourBenefits:Store discountDay range:Monday to FridayShift:8 hour shiftAfternoon shiftEvening shiftAbility to commute/relocate:Newmarket, ON L3Y 4Z1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Licence/Certification:Serving It Right (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Yonge St, Newmarket, ON\"\n        },\n        {\n            \"id\": \"76E4936E95FCDA4AAE992443C9888523\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cd819c2f402a8806\",\n            \"jobName\": \"Agent Du Service Clientèle / Customer Service Agent\",\n            \"companyName\": \"Voxdata\",\n            \"rowSalary\": \"$15.50–$17.00 an hour\",\n            \"date\": 1694471192779,\n            \"dateOfPosted\": 1693624935871,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*English version to follow* *NB : Nous n'acceptons que les candidatures provenant de la grande région de Montréal car la formation se fait à partir du bureau.* *Nous exigeons que nos candidats parlent anglais car certains de nos clients sont à l'extérieur du Québec et ne parlent que l'anglais.* Prêt à vous joindre à l'un des plus importants centres d'appels de Montréal ! VOXDATA vous attend ! Nous cherchons à agrandir notre équipe avec de nouveaux membres qui sont prêts à devenir nos prochains experts en offrant la meilleure expérience client possible ! Pour avoir une meilleure idée de notre entreprise et de nos valeurs, vous pouvez consulter notre site web ici ! https://www.voxdata.com/ Voici quelques raisons pour lesquelles il fait bon travailler chez VOXDATA :Une variété de types de postes, allant du service à la clientèle aux ventes, en passant par le soutien technique, avec des rôles uniquement en anglais ou bilingues et des options d'horaire variées - nous voulons mettre en valeur vos compétences uniques dans un poste qui vous convient le mieux !Un bureau facilement accessible et convoité au cœur du centre-ville de Montréal, et la possibilité de travailler à domicile pour nos postes hybrides !Un environnement de travail diversifié, positif et encourageant, notre objectif étant d'aider nos agents à briller et à réussir au maximum de leur potentiel !Des avantages sociaux tels que des plans de primes inclus dans nos postes, des primes supplémentaires pour les agents les plus performants (comme des cartes-cadeaux et de l'argent supplémentaire !), et des primes de recommandation des employés allant jusqu'à 1000 $ par personne !La possibilité d'évoluer et de développer vos compétences par le biais de réunions d'équipe, de séances de coaching individuel et d'évaluations des performances, toutes conçues pour vous aider à renforcer vos capacités et à devenir un maître dans votre travail !Des opportunités de développement interne ouvertes à tous - avec des rôles tels que chef d'équipe, coach, formateur, mentor et même des postes administratifs, nous sommes fiers de toujours nous tourner vers le personnel que nous avons déjà avec nous pour le promouvoir lorsque l'occasion se présente !Pour ce poste, vous travaillerez avec des clients qui utilisent un service de luxe à bord de leur véhicule. Vos tâches spécifiques seront les suivantes :Répondre aux appels entrants avec un haut niveau de professionnalisme et de précision.Envoyer et assister les services d'urgence pour les véhicules impliqués dans des accidents.Guider les clients dans l'installation et l'utilisation des applications incluses.Soutenir d'autres fonctions diverses incluses dans le service.Ready to join one of the leading call centers in Montreal?! VOXDATA is waiting for you! We’re looking to expand our team with new members who are ready to become our next experts in delivering the best customer experience possible! To get a better idea of our company and values, you can check out our website here! https://www.voxdata.com/ Here’s a few reasons why it’s great to work at VOXDATA:A variety of position types, ranging from customer service, sales, and technical support, with English-only or bilingual roles and ranging scheduling options – we want to highlight your unique skillset in a position that is best suited to you!An easily accessible and coveted office location in the heart of Downtown Montreal, and the option to work from home with our hybrid roles!A diverse, supportive, and encouraging work environment, our goal is to help our agents shine and succeed to their fullest potential!Employee benefits and perks such as bonus plans included into our positions, additional bonuses for top performers (like gift cards and extra money!), insurance coverages, and employee referral bonuses up to $1000 per person!The chance to grow and develop your skills through team meetings, individual coaching sessions, and performance reviews; all designed to help you further strengthen your abilities and become a master at your job!Internal growth opportunities that are open to everyone – with roles like team leader, coach, trainer, mentor, and even administrative positions; we pride ourselves on always looking to the staff we already have with us to promote when the occasion arises!For this position, you will be working with customers who are the using a luxury in-vehicle service. Your specific tasks will include:Answering inbound calls with a high level of professionalism and accuracy.Dispatching and assisting emergency services to vehicles involved in accidents.Guiding clients through the set-up and use of included applications.Supporting other various features included in service.Requirements Qu'est-ce qui fait de quelqu'un un excellent candidat ? Nous recherchons des personnes qui :Parlent couramment l'anglais ou sont bilingues en français et en anglais, ou en espagnol et en anglais.Avoir la disponibilité nécessaire pour travailler 40 heures par semaine à tout moment pendant les jours et heures d'ouverture du lundi au dimanche, entre 7 heures et minuit; la disponibilité le soir et le week-end est préférable. Ont déjà travaillé dans le service à la clientèle, les ventes ou les centres d'appels, ou ont une expérience traduisible dans d'autres secteurs.Vous pouvez apprendre à utiliser et à faire fonctionner plusieurs programmes informatiques avec facilité.Être disponible pour travailler le soir et le week-end si la campagne est opérationnelle pendant ces périodes.Avoir obtenu un diplôme de fin d'études secondaires ou un diplôme équivalent.Se considèrent comme des personnes capables de résoudre des problèmes, de s'adapter à des situations changeantes et sont motivées pour être les meilleures des meilleures !What do we think makes someone a great candidate?! We’re looking for people who:Speak English fluently, or are bilingual in French and English, or Spanish and English.Have the availability to work 40 hours/week anytime throughout the operational days and hours of Monday to Sunday, between 7:00 AM to 12:00 AM (midnight); evening and weekend availability is preferred. Have worked in customer service, sales, or call centers before; or have translatable experience from other industries.Can learn how to use and operate multiple computer programs with ease.Are available to work evenings and weekends if the campaign is operational during these times.Have graduated high school or have an equivalent diploma.Consider themselves to be problem-solvers, adaptable to changing situations and are motivated to be the best of the best!Benefits Soumettez votre candidature dès maintenant pour lancer le processus d'embauche et voyez par vous-même pourquoi il est formidable d'être un agent VOXDATA ! *Le salaire de base pour ce poste varie de 15,50 à 17 dollars par heure en fonction des compétences linguistiques.* Submit an application now to get the hiring process started and see for yourself why its great to be a VOXDATA agent! *The base salary for this position ranges from $15.50/hr to $17/hr depending on language skills*\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"FAC68FDA9917EF5E3213466E1E1BD634\",\n            \"cityName\": \"1006 103A St SW Ste 301, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=937cfd86e10b9f2f\",\n            \"jobName\": \"Temporary Customer Service Representative (Edmonton Corporate)\",\n            \"companyName\": \"Fountain Tire\",\n            \"rowSalary\": \"$26 an hour\",\n            \"date\": 1694471092171,\n            \"dateOfPosted\": 1693624941721,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.454021,\n                    \"lon\": -113.5655165\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Southwest Edmonton, Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Leduc County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 26.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    26.0\n                ],\n                \"range\": {\n                    \"gte\": 26.0,\n                    \"gt\": null,\n                    \"lte\": 26.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Overview:  Fountain Tire, an industry leader with a strong presence and reputation across Canada, is looking for a TemporaryCustomer Service Representative (3-4 month contract length that will turn permanent November 2023) to professionally support our network of distribution centers, stores and customers across Canada from our South Edmonton Corporate Office. Salary: $26/hour (32-40 hours per week) Why work for Fountain Tire? We are a Platinum Member of Canada’s Best Managed Companies We are one of the 10 largest independent tire dealers in North America, and recipient of many Customer Service and Best Business Awards We continually strive to expand our operations in existing markets, as well as new markets and currently, we have over 170 stores from BC through Ontario Our Customer Service Representatives (CSR’s) are a highly integrated, high performance team that provides consistent customer service to both internal and external customers in order to drive sales and customer satisfaction. Duties and responsibilities include: Maximize sales potential by ensuring calls and online chats are handled in a timely and effective manner Deliver CSR managed program elements – including warranty, booking orders, national account web orders, northern Ontario direct ship Optimize customer satisfaction by assisting with inventory management duties Provide operational excellence in daily order management processes Identify issues and opportunities for improvement in personnel, process or technology; take action and escalate roadblocks as required to drive constant improvement.What you need: At least 5 years of experience in a call center environment At least 5 years of customer service experience A high school diploma or equivalent Experience in the tire industry is an asset Proficiency with Microsoft Office software, Microsoft Dynamics AX a definite asset Proven ability to work with patience and courtesy in customer relations Excellent organizational and time management skills in order to manage independent work Proven ability to work within a team environment; this includes coaching and team building skills Excellent verbal communication skills, especially by phone The successful candidate will have the opportunity to: Collaborate within a team of highly motivated and dedicated individuals Develop personally and professionally in a supportive working environment Enjoy discounts on personal vehicle services at your local Fountain Tire location Interested candidates are encouraged to apply online and this position will remain posted until filled. In office applications will be accepted by reception only but are preferred online.\",\n            \"location\": \"A St SW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"53AB6FE73CEB6B8E0C23F19D1E23CE09\",\n            \"cityName\": \"Speedy Cash in Prince Albert, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bf012403996d94b3\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Speedy Cash\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694470997759,\n            \"dateOfPosted\": 1693624739537,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.2033494,\n                    \"lon\": -105.7530705\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Prince Albert\",\n                \"formattedAddress\": \"Prince Albert, SK, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 15\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Prince Albert\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Canadian-operated, Speedy Cash is a strong leader in the financial services industry. Founded in 1998, Speedy Cash currently operates over twenty branch locations across Canada. We are building a dynamic team of business professionals and can provide the right candidate with significant opportunities for career growth and job satisfaction.If you’re looking for a fun, energized environment where we support each other, as a team, to create a rewarding workplace and deliver amazing customer service, then look no further, Speedy Cash is the place for you!Perks and BenefitsWelcome BonusCompetitive wages, bonuses, and benefitsHands-on and continual training in transferable skillsBirthdays off, annual fun day for each storeIncredible support systemA team environment that makes work satisfying and funRRSP matchingOpportunities for growth. We promote from within!You are a Champion of Change; you will help motivate the team to increase sales, minimize bad debt and adapt to the ever-changing regulatory environment. You have a strong sense of curiosity and have a passion for learning; you are proactive and look for ways to be more efficient in your day-to-day work. You inspire your teammates with your innovative and resourceful way of thinking. Your attention to detail and exceptional organizational skills will ensure that the day-to-day operations of the store run smoothly. You can work independently as you pursue excellence while taking pride in your achievements, supporting company initiatives, and accomplishing the work that needs to be done in the store. An interest in travel would be considered an asset as from time to time support in other stores in the network is needed.Job ResponsibilitiesBuilding customer relationships while providing exceptional customer serviceIdentifying and meeting the customer’s financial needs in order to process loan applicationsCollecting on delinquent accounts in the interest of minimizing bad debtConveying information through in-person, telephone, and email communicationsAiding in loan sales, cheque cashing, and in-store promotionsHandling and balancing daily cash and debit transactionsPerforming all daily operations of the storeRequirementsValid Government Issued Photo IDClean Criminal RecordHigh School Diploma or EquivalentWageSalary commensurate with experienceFor more information about Speedy Cash check out our website at www.speedycash.ca/careersJob Type: Full-timeSalary: $16.00 per hourBenefits:Dental careExtended health carePaid time offRRSP matchVision careSchedule:Monday to FridayWeekend availabilityEducation:Secondary School (preferred)Work Location: In personApplication deadline: 2023-09-30\",\n            \"location\": \"Prince Albert, SK\"\n        },\n        {\n            \"id\": \"AD084B8522589E201B1477A9D30DBB59\",\n            \"cityName\": \"Kitchener, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3084de02ee180fae\",\n            \"jobName\": \"Insurance Customer Service And Sales Representative\",\n            \"companyName\": \"Angie Degroot Desjardins Insurance & Financial Services Agency\",\n            \"rowSalary\": \"$40,000–$60,000 a year\",\n            \"date\": 1694470824064,\n            \"dateOfPosted\": 1692744735945,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4516395,\n                    \"lon\": -80.4925337\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kitchener\",\n                \"formattedAddress\": \"Kitchener, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kitchener\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" ***** Are you Looking for a Career Change or a Fresh Start?**** Are you positive thinking, friendly, bubbly, have an outgoing personality and customer-focused? Would you be excited to help customers reach their Insurance Needs and goals? If you answered yes to these questions, working for Angie DeGroot Desjardins Insurance Agency may be the career for you! We’re looking for a motivated, sales and service-oriented Insurance Licensed individual who has a passion for the insurance industry. Our goal is to build up strong relationships and increase our professional reputation. Looking for a full-time Career that provides meaningful work and competitive compensation? Consider a position in our office. Compensation:Salary plusCommission and Bonus (P&C + LIFE - % of premium sold)40,000+ Base ( negotiable depending on experience) plus Bonus and Commission- Earning Potential has no CapAnnual Bonus (subject to office qualification, etc.)Monthly and or quarterly team and Personal Production promotions and bonus3 weeks vacation after 1 yearHealth Benefits AvailableRRSP match program availablePotential for total compensation over 6 figuresResponsibilitiesEstablishes personalized telephone contact with the client. Creates a climate of trust conducive to the sales and service of a Home, Auto and or Life insurance policy. Educates and advises our clients on our products, while adhering to the company's underwriting policies.Greet and answer incoming calls from clients and offer 5* customer ServicePassionate, Friendly and Bubbly Positive PersonalitySeizes all sales opportunities, solicitation and product offers.Work with the agent to establish and meet marketing goals.Use a customer-focused, needs-based review process to educate customers about insurance options.Upon receiving a call, assists the client by applying changes, cancellations and updates to the contract, taking care to meet the client's needs effectively, while advising and educating in order to ensure the client's complete satisfaction and retention.Establish customer relationships and follow up with customers, as needed.Use a customer-focused, needs-based review process to educate customers about insurance options.Requirements:Good Personal Credit Score( necessary for the Government Insurance Licensing Sponsorship)Insurance Sales and Customer Service experience and Licensed in Personal Lines Insurance either OTL or RIBOExcellent interpersonal skillsExcellent communication skills - written, verbal and listeningProactive in problem solvingDedicated to customer serviceAbility to multi-taskAbility to make presentations to potential customersProfessionalism and attention to detail.Ability to multitask.Strong communication and verbal skills.Ability to work in a fast paced environment.Active and responsible team member.Ability to take orders.Strong organizational and prioritization abilities.Ability to communicate with co-workers and Agent.Property & Casualty license (OTL or RIBO license) or LLQPLLQP to be obtained within 3 months of start in order to service existing customers (all licensing fees to be paid by Agent on successful completionThese positions are with an independent contractor agent that is part of the Desjardins exclusive agent network, not with Desjardins Group or its subsidiaries. This agents’ employees are not employees of Desjardins. Independent contractor agents are responsible for and make all employment decisions regarding their employees.\",\n            \"location\": \"Kitchener, ON\"\n        },\n        {\n            \"id\": \"E9D30376B48D2602077F825FD99F87A8\",\n            \"cityName\": \"Red Deer, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9af23111688f9560\",\n            \"jobName\": \"Food Truck Staff // Customer Service\",\n            \"companyName\": \"Red Deer Food Bank\",\n            \"rowSalary\": \"$15–$18 an hour\",\n            \"date\": 1694470753521,\n            \"dateOfPosted\": 1687946643583,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.268975,\n                    \"lon\": -113.8115599\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Red Deer\",\n                \"formattedAddress\": \"Red Deer, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 8\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Red Deer\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The food truck cooks // customer service employees will be working along side our food truck manager, to deliver and staff food trucks to any events in the Red Deer area and promote our brand!Duties Include:Delivering or meeting food trucks to any/all eventsImpeccable customer serviceCooking on the lineWorking cash stationSet up - tear down dutiesOperating kitchen equipmentRecord required cooler temperatures, food waste, and food temperaturesWhat we Offer:Work/life balanceCompetitive salaryValues oriented and positive workplace environmentSupport from upper managementYou Have:A passion for customer service and hospitalityA sense for adventureExperience in the food prepping industryRetail or previous restaurant experienceTeam based mentalityClass 5 drivers licenseAt the Red Deer Food Bank we believe our people are what make us great! If you are a positive person with strong work ethic that is looking to join a fun work place culture, then we invite you to apply for this role by submitting a resumeJob Types: Full-time, Part-time, SeasonalContract length: 5 monthsPart-time hours: 35 per weekSalary: $15.00-$18.00 per hourSchedule:10 hour shift8 hour shiftDay shiftNight shiftOvertimeWeekend availabilitySupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Red Deer, AB\"\n        },\n        {\n            \"id\": \"F0F624110EC63ADA72AB3EC49719E1E1\",\n            \"cityName\": \"Nanaimo, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=11693ff6e81c6688\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Executive Aviation\",\n            \"rowSalary\": \"$17–$20 an hour\",\n            \"date\": 1694470662484,\n            \"dateOfPosted\": 1693615755610,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1658836,\n                    \"lon\": -123.9400648\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Nanaimo\",\n                \"formattedAddress\": \"Nanaimo, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Nanaimo\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you ready to take off and start a new and exciting career in the aviation industry? If so, we want to chat with you! Are you ready to take off and start a new and exciting career in the aviation industry? If so, we want to chat with you! Our operation in Nanaimo provides our team members with an amazing opportunity to work with one of our airline partners! In Nanaimo you will be a part of an amazing team of customer service specialists who work together to provide exemplary service. So, would you say that going above and beyond is in your DNA? Do you love to travel and want to travel even more at discounted rates? Does the opportunity to provide exemplary service to passengers on some of Canada’s best airlines appeal to you? Are you someone who is known for reliability and flexibility? Come join us! Executive Aviation is hiring Customer Service agents at the Nanaimo Airport (YCD) who love working in the tourism industry. This role reports directly to an amazing Operations Manager who is there to support you. What do we offer? Executive Aviation is proud to have very progressive wage ranges with lots of earning potential. The range of salary for this position is $17.00-$20.00/hour. We offer comprehensive Health benefits for all part- and full-time team members. We also have fantastic flight benefits with the airlines that we support. We want to see you grow and reach your goals! The sky's the limit with Executive Aviation. Responsibilities Our customer service agents are responsible for creating a safe and stress-free experience for travelers as they begin and end their journeys: Helping passengers check-in Supporting self-serve kiosks Preparing aircraft for on-time departures Facilitating deplaning and boarding of passengers Greeting passengers who are arriving from flights Following airline specific check-in policies and procedures Positively work airline crew Light grooming duties Kindly enforce airline and airport policies and procedures to passengers And more! Qualifications You are a true customer service champion with a minimum of two years’ in a customer-facing role You bring a proven track record of punctuality and reliability and understand that performing on time is a cornerstone of airline service You love to multi-task and are comfortable in a fast-paced where time pressures are a way of life You are a great communicator in both individual and group settings and have a demonstrated proficiency with computers and software. Completion or working towards completion of Travel and Tourism Diploma, Marketing or Business Diploma Previous airport experience would be considered an asset Flexible availability to work shift work which includes early mornings, days, late evenings, weekends and/or holidays An ability to meet all conditions of employment:  Restricted Area pass issued by Transport Canada A criminal background check Hold a valid driver’s licensesMYI0hRUVs\",\n            \"location\": \"Nanaimo, BC\"\n        },\n        {\n            \"id\": \"6249A1DE90039F454E47FBB81E57BCC2\",\n            \"cityName\": \"1415 Alberni Highway, Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a8fc962c723288c7\",\n            \"jobName\": \"Customer Service Supervisor\",\n            \"companyName\": \"Mid Island Liquor\",\n            \"rowSalary\": \"$19.25 an hour\",\n            \"date\": 1694470627014,\n            \"dateOfPosted\": 1689721698416,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3045941,\n                    \"lon\": -124.3349719\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Parksville\",\n                \"formattedAddress\": \"Alberni Hwy, Parksville, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Parksville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Liquor is looking for a full-time Customer Service Supervisor at our Parksville Liquor Store. Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you! The Customer Service Supervisor position is a developmental role whereby the aim is to move the successful candidate to an Assistant Store Manager (ASM) position within a 12-18 month timeframe (term will be extended in the event there are no ASM positions available within 12-18 months). Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in organizing and directing the activities and operations of the store including but not limited to ordering/receiving merchandise and supplies, organizing and conducting inventory, staff supervision and training, and acting as Health and Safety Committee Liaison.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Supervisor today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. You have a minimum of 1 year liquor retail experience and a valid Serving it Right Certificate (or be willing to get certified prior to your first day). Who we are: Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve. Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op). We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.\",\n            \"location\": \"Alberni Highway, Parksville, BC\"\n        },\n        {\n            \"id\": \"D4EC6F86061C65E07583BC0E97731C41\",\n            \"cityName\": \"1105 Centre St N, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9af57fab88280682\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Avalon Cleaners\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694470621723,\n            \"dateOfPosted\": 1693625800432,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0919201,\n                    \"lon\": -114.0625125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Centre St N, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a dry cleaning company requiring a customer service associate.Monday 10 am to 6 pmTues, Wed and Thursday Noon til 5pmFriday and Saturday 9 am to 5 pmDuties include serving walking clients. Contact clients with any discrepancies and follow up on any of their concerns. Full training supplied with our procedures and policies.Starting wage is $16/hrJob Type: Full-timeSalary: From $16.00 per hourWork Location: In personExpected start date: 2023-09-07\",\n            \"location\": \"Centre St N, Calgary, AB\"\n        },\n        {\n            \"id\": \"DF6B64430EA0080384F86354F7944E6D\",\n            \"cityName\": \"Châteauguay, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5937e97d5e66f633\",\n            \"jobName\": \"Customer Service Representative - Call Centre\",\n            \"companyName\": \"Centre D'Appel Iris Et Services Aux Entreprises\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694470597239,\n            \"dateOfPosted\": 1693624934748,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.36015889999999,\n                    \"lon\": -73.74940330000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Châteauguay\",\n                \"formattedAddress\": \"Châteauguay, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Roussillon Regional County Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Châteauguay\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 7 months to less than 1 yearGreen job Involves duties and responsibilities that lead to positive environmental outcomes Long term benefits Deferred Profit Sharing Plan (DPSP) Other benefits Free parking availableWork Term: PermanentWork Language: English or FrenchHours: 30 to 40 hours per week\",\n            \"location\": \"Châteauguay, QC\"\n        },\n        {\n            \"id\": \"4F88CD986A6E43F5395462DB00C2A0CD\",\n            \"cityName\": \"Central Mountain Air in Terrace, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=232e9fb3d8300ca1\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Central Mountain Air\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694470592533,\n            \"dateOfPosted\": 1693615765021,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.5181925,\n                    \"lon\": -128.6031539\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Terrace\",\n                \"formattedAddress\": \"Terrace, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kitimat-Stikine\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Terrace\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Central Mountain Air, we pride ourselves in providing vital air connectivity to remote communities nestled within the stunning landscapes of Alberta and British Columbia. Our commitment to safety, reliability, and exceptional customer service is at the core of everything we do. Join our dedicated team and become an integral part of bringing people together and fostering economic growth in these unique regions. We are currently seeking a Part-Time Customer Service Agent to join our team at our Terrace, BC base.Customer Service Agents are part of a team that works in conjunction with crew members and ground agents to escort and board passengers, take reservations, and maintain baggage accuracy and safety. Customer Service Agents report to the Customer Service Supervisor.Job ResponsibilitiesCheck-in and greeting passengers, taking reservations and handling payments (when necessary)Responding to passenger inquiriesAssisting passengers with disabilities during deplaning and enplaningProcessing baggage and cargoGate operations and flight closure, communicating load counts to flight crewsAbility to lift up to 50 lbsOther duties as assignedJob RequirementsSuperior customer service skillsGood communication and interpersonal skillsAbility to work independently as well as in a team environmentAbility to work flexible hours, including split shifts and weekend coverageWillingness to work outside in adverse weather conditionsGood computer skillsA positive attitude with the ability to be flexibleMust be able to obtain and retain an Airport RAICBenefits of Working at Central Mountain Air (part-time employees)Standby travel within Central Mountain Air network for employees, their eligible family members, and their buddies (not including fees and taxes)Free cargo shipping for employees on CMA flightsCentral Mountain Air is an equal opportunity employer and values diversity in our workplace. Our requirement is that you have the skills and abilities to do the job and the attitude of a team player. We encourage applications from all qualified individuals regardless of race, nationality, ethnic origin, color, religion, age, sex, sexual orientation, marital status, family status, and disability.Central Mountain Air thanks all applicants, however, only those selected for an interview will be contacted.Job Type: Part-timePart-time hours: 2 - 3 per weekSalary: $17.00-$18.00 per hourAbility to commute/relocate:Terrace, BC V8G 0E9: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Terrace, BC\"\n        },\n        {\n            \"id\": \"C483A1863148BB61B69B4B0655500573\",\n            \"cityName\": \"10330 117 Avenue, Grande Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2444eee6ed1ad963\",\n            \"jobName\": \"Customer Service/Order Desk\",\n            \"companyName\": \"Ingo Floor\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694470576452,\n            \"dateOfPosted\": 1693615773248,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.178886,\n                    \"lon\": -118.7976819\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grande Prairie\",\n                \"formattedAddress\": \"109 Ave, Grande Prairie, AB T8V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grande Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"INGOFLOOR, a local family-owned flooring store, is looking to fill the position of a Customer Service/Order Desk Person for our Wholesale department.This is a permanent, full time position (40 hrs/wk).Hours are Monday – Friday, 8:30 am to 5:00 pm (excluding statutory holidays)Normal activities would include:- entering orders taken over to phone- entering orders from walk-in traffic- providing stock checks- making order estimates- getting freight quotes- preparing shipping documents- answering phone calls- occasionally pulling small orders if the warehouse is busyThis position is also responsible for overseeing our Flooring Sample Program. Duties would include:- creating new sample boards for new & existing product- maintaining sample racks that are distributed to wholesale customersThe ideal candidate will:- have prior customer service experience- have flooring and/or construction knowledge- be detail oriented- enjoy working on computer & being on the phone- be able to do simple math- be able to work in a sometimes fast, sometimes slow work environmentWe take care of our staff with a Benefits Package that includes Health Spending Account, Deferred Profit-Sharing Plan, & Group RRSPs.We are located at 10330-117 Avenue, Grande Prairie (behind the Nissan Dealership on the bypass.)** INGO FLOOR is a division of Rudiger Group Inc. When contacting prospective candidates, phone calls/emails may come from INGO FLOOR or RUDIGER GROUP INC.Job Type: Full-timeSalary: From $20.00 per hourBenefits:Dental careExtended health careVision careSchedule:8 hour shiftWork Location: In person\",\n            \"location\": \"Avenue, Grande Prairie, AB\"\n        },\n        {\n            \"id\": \"54F8D65ECF5C4E3B29A1A95EBF4FC73D\",\n            \"cityName\": \"Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ccaec7aacf1a7119\",\n            \"jobName\": \"Customer Service Associate - Budtender Part Time Dt\",\n            \"companyName\": \"The Original Farm\",\n            \"rowSalary\": \"$19.57 an hour\",\n            \"date\": 1694468704448,\n            \"dateOfPosted\": 1692773094154,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4284207,\n                    \"lon\": -123.3656444\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Original FARM is a leading cannabis retailer that empowers the customer to take the best-informed decision by delivering a thoughtful and innovative customer experience. We are cannabis educators, sharing our passion and acquired knowledge with every customer. We are looking for a Customer Service Associate / Budtender PT (Part Time) to join our team at the Downtown location. Main Duties/Responsibilities: Ensure an excellent customer experience; Update one’s product knowledge and successfully complete the required training courses Provide customer education on FARM’s range of products; Maintain the store standards at all times Strict compliance to all policies and procedures; Other duties as required.Qualifications and Skills: Strong customer service skills Working knowledge of POS systems, Word, and Excel Strong communication skills, time management, and problem-solving skills Works well in a high-volume retail environment Able to perform independently as well as a team member Strong cannabis knowledge and passion required BC Selling it Right CertificateTerms of Employment: Must be able to work a variety of night, evenings, weekend, and split shifts when required Must be willing to cover shifts on short notice Reports to: Store Manager Starting salary: $19.57 hr ($19.07 for first 90 days)\",\n            \"location\": \"Victoria, BC\"\n        },\n        {\n            \"id\": \"77C69EC7671F7329F37672D16D010B50\",\n            \"cityName\": \"Kamloops, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=31c743959e110afc\",\n            \"jobName\": \"Customer Service Representative - Financial Services\",\n            \"companyName\": \"Speedy Cash Canada\",\n            \"rowSalary\": \"$18.75 an hour\",\n            \"date\": 1694468237172,\n            \"dateOfPosted\": 1693605589227,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.674522,\n                    \"lon\": -120.3272675\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kamloops\",\n                \"formattedAddress\": \"Kamloops, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Thompson-Nicola\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kamloops\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 7 months to less than 1 yearScreening questions Are you currently legally able to work in Canada? Do you have previous experience in this field of employment? Health benefits Dental plan Health care plan Paramedical services coverage Vision care benefits Financial benefits Bonus Long term benefits Registered Retirement Savings Plan (RRSP)Work Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Kamloops, BC\"\n        },\n        {\n            \"id\": \"229D265008D25B308D87C45345703975\",\n            \"cityName\": \"8465 Harvard Pl, Chilliwack, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=20ce5cffaca0a367\",\n            \"jobName\": \"Customer Service Representative-French\",\n            \"companyName\": \"Allworld Logistic Solutions Inc\",\n            \"rowSalary\": \"$16–$18 an hour\",\n            \"date\": 1694467963259,\n            \"dateOfPosted\": 1692773152320,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.155259,\n                    \"lon\": -121.9574306\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Chilliwack\",\n                \"formattedAddress\": \"Harvard Pl, Chilliwack, BC V2P 7Z5, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Fraser Valley\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Chilliwack\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service-French SpeakingTransport Industry -Contact Customer, Serving Existing Customer, emailing , Follow upsJob Type: Part-timeSalary: $16.00-$18.00 per hourSchedule:Monday to FridayAbility to commute/relocate:Chilliwack, BC V2P 7Z5: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: Hybrid remote in Chilliwack, BC V2P 7Z5\",\n            \"location\": \"Harvard Pl, Chilliwack, BC\"\n        },\n        {\n            \"id\": \"BE112E49A746338BD76597D667FD0F69\",\n            \"cityName\": \"128-6061 No 3 Rd, Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d05731206489dcf8\",\n            \"jobName\": \"General Insurance Customer Service Rep\",\n            \"companyName\": \"New Diamond Insurance Services Ltd.\",\n            \"rowSalary\": \"From $19 an hour\",\n            \"date\": 1694467926607,\n            \"dateOfPosted\": 1686183935820,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1532687,\n                    \"lon\": -123.1366635\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Number 3 Rd, Richmond, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"QualificationSelf motivated and inter-personal skill with customers and other staffProficient in computer skills (eg. Microsoft office etc) as well as social media (eg WeChat, Facebook etc)Experience in customer services / minimum 3 years office experience (clerical & administrative duties)Language: Fluent in both written and spoken English, Mandarin and CantoneseGeneral Insurance License (Level 1 minimum) requiredResponsibilityCustomer Service Rep1. Will manage a book of assigned customer business2. Listen and respond to customers’ needs and concerns3. Provide information about products and services4. Take and process transactions for autoplan and home owners, determine charges, and oversee billing or payments5. Review or make changes to customer accounts6. Handle returns or complaints7. Record details of customer contacts and actions taken8. Take initiative to gain additional customersThe position may require work on Saturdays.Job Type: Full-timeSalary: From $19.00 per hourBenefits:Extended health careFlexible Language Requirement:French not requiredSchedule:8 hour shiftSupplemental pay types:Commission payCOVID-19 considerations:All staff and customers are required to wear masks once they enter our office. Staff are required to sanitize their work areas on arrival and departure. Plexi glass installed between each work station and customer seats. Staff practise social distancingExperience:Customer service: 3 years (required)Language:Mandarin (required)Cantonese (preferred)English (required)Work Location: In person\",\n            \"location\": \"No  Rd, Richmond, BC\"\n        },\n        {\n            \"id\": \"5811E6AA238363610C05E11B50314F0E\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=978532d6001ae05e\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Answerplus Inc\",\n            \"rowSalary\": \"$18.25 an hour\",\n            \"date\": 1694467386733,\n            \"dateOfPosted\": 1692775305948,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" At AnswerPlus, we are proud to say we’ve been in the answering service business for 60 years! With 4 locations across Canada and over 1500 clients, AnswerPlus has built an incredibly strong brand and reputation in the industry. Our niche is urgent call response 24/7/365. We seek to answer 80% of calls within 20 seconds or less.  As a Bilingual Customer Service Receptionist (BCSR), you have the privilege and opportunity to provide comfort and help in times of need. Bilingual CSR's answer  inbound calls and act as the  first point of contact for a wide range of situations. It could be processing a donation, providing comfort to someone stuck in an elevator, providing relief to someone experiencing pain, or aiding people in emergencies such as fires, floods, or power loss. To us, our clients, and our customers, a CSR is an \\\"invisible hero!\\\"  As a fulltime CSR we require open availability between 6 am and 12 am Monday to Sunday to work scheduled 30-40 hours per week. CSR's will be scheduled to  work a minimum of two weekends per month. We've created an award-winning culture that is backed by three generations and a true \\\"work family\\\" environment. Our employee average tenure is 9 years which also highlights how we support both personal and professional growth.  If this interests you, apply to join our team and partake in: Celebrations and Company EventsCoaching and MentoringDental, health, and EAP BenefitsPaid BreaksSocial Responsibility InitiativesPaid Training Role and Responsibilities: Provide thoughtful and professional customer supportAccurately collect details in an organized and timely mannerResolve customer issues and answer questions via phone, email, and live chatTake messages, enter orders, process and dispatch service callsMaintain a commitment to continuously improve the quality, efficiency, and effectiveness of service Qualifications and Skills:  This position requires individuals who are fluently bilingual in English and French and both written and verbally.Technically savvy and proficient keyboard skills (ie: 50+ WPM)Capable of utilizing Microsoft Office Suite, Microsoft Teams, Zoom and Go To MeetingStrong communication skills - interpersonal, listening, verbal, and writtenAbility to smile through the phone and connect with callers positivelyAbility to multitask and prioritize tasksEmpatheticGoal-orientedTeam player Work from Home Requirements: Quiet, dedicated room free of background noiseAbility to connect the computer from a router - not wirelessWindows PC - No Apple or Chrome BooksOperating System: Windows 10Full, standard-sized keyboard with Function Keys (F1-F12) and a number padTwo monitorsWebcam - for training and coaching purposesWired head set with microphone that connects to your cell phone or landlineUnlimited high-speed internetUnlimited Canada wide long-distance calling/cellphone calling planAbility to provide your own ethernet cable Start date: to be determined Training will be completed via Zoom/Go-to-Meetings/Microsoft Teams for 1-2 weeks Monday to Friday. Applicants should be available Monday to Friday between 8am-10pm for training. Daily hours will change and are scheduled between 4-8 hours per day. Camera's are mandatory to be on during all training. Compensation: $18.25 per hour plus $1.00 per hour performance bonus if targets are met when eligible. Our commitment to being an equal opportunity employer goes beyond acceptance. We celebrate and support all the amazing things that make you unique. All of our team members take pride in upholding an environment of mutual respect. We welcome and encourage applications from people with disabilities. If you require accommodation through the selection process, please call our office at 905-522-4737. \",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"3A275D53235C80AD72874643D18A30DB\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=58037611cb12e3c2\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Couchhaus\",\n            \"rowSalary\": \"$19–$24 an hour\",\n            \"date\": 1694465922676,\n            \"dateOfPosted\": 1693605546647,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Company DescriptionCouchHaus is a direct-to-consumer custom modular sofa brand based in Vancouver, Canada. The couches are made-to-order exclusively with our own manufacturer. We sell our products directly to consumers through our online platform and our boutique showroom in Langley, BC in order to offer competitive prices to our customers.Our business model is designed to offer customers high-quality, customizable furniture at an affordable price point, while also minimizing waste and supporting sustainability.Founded by the duo that made the 2023 BC Business 30 Under 3 List , Harrison and Paige, the company started with their passion for design when it came to building furniture for our own home.On the quest for new furniture for their home, they rethought every component of their dream couch including the size, depth, fabric grade, storage and other features! They offer removable and washable covers, re-stuffable cushions and modular furniture to re-arrange and grow onto!CouchHaus was created to make custom modular furniture shopping easier and more affordable, while supporting sustainability. The best part, we plant 100 trees for every couch we build!Job DescriptionTHE DEPARTMENTThe mission of the Concierge Department is to delight clients by going above and beyond to resolve their inquiries within reason and deliver exceptional sales expertise.Everyone in our Concierge Team has a common goal: to successfully manage customer relations by being a liaison between the company and the customer.THE OPPORTUNITYOur Concierge Department is an integral for the operation of the company. You’ll provide daily support to keep our boutique store running smoothly.As a member of the Concierge Division, you will be part of the team responsible for providing exceptional experiences for clients who contact Concierge by resolving their inquiries and delivering selling and solving expertise. As the Concierge Advisor, you will deliver world-class sales, solution and service excellence to exceed client expectations and maximize value in every interaction. And, with the skills you gain in this role, the opportunities are endless – from a rewarding career in Concierge to continued growth and development with CouchHaus.CouchHaus is an online store with the a boutique showroom. This opportunity is remote and also has the opportunity to grow in the company.THE JOBWe are seeking a team player that conveys the brand philosophy and values. The ConciergeAdvisor is a solution and detail-oriented person. The right individual will interact with customers on a daily basis, being knowledgeable and conversational and educational.The Concierge Advisor job is about problem solving. You will:● Develop and manage strong customer relationships through outstanding and consistent customer experiences● Solve problems to ensure our customers are happy● Become an expert in CouchHaus’ products and servicesThe Advisor reports to the Team Leader and participates in all the essential duties which contribute to the efficient and profitable operation of the store while maintaining the brand and visual presentation standards.QUALIFICATIONSYou don’t need experience to be a Concierge Advisor — we can teach you what you need to know. We care more about your hustle, passion for problem solving and ability to think on your feet. You have:● A commitment to learn and apply CouchHaus Values, Business and PeopleLeadership principles● The skills that are an asset to perform in the role and the appetite to continuously learn and develop oneself● A commitment to quality and investing in results that add value to the business● A sense of urgency and ability to prioritize important work● An understanding of CouchHaus brand vision● Feel strongly about long-term customer relationships and building brand loyaltyTHE PERKS● Set Your Schedule - Provide your availability and indicate your preferred working hours (some restrictions apply)● Aspirational Workspace - Every detail is considered to connect to the energy of the culture● Product Discount - Our famous product discount, online and in storeHead to our Our Story (https://www.couchhaus.com/pages/story) for the scoop on who we are and what we do.Job Types: Part-time, FreelancePart-time hours: 10-20 per weekSalary: $19.00-$24.00 per hourBenefits:Casual dressFlexible scheduleStore discountWork from homeSchedule:Day shiftMonday to FridayWork Location: RemoteApplication deadline: 2023-09-30Expected start date: 2023-10-01\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"50309D4E4CB0EA3A7110A93FEFF4C99E\",\n            \"cityName\": \"Sandspit, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=92084e6a8dc9757a\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Executive Aviation\",\n            \"rowSalary\": \"$19.10–$20.90 an hour\",\n            \"date\": 1694465839399,\n            \"dateOfPosted\": 1693615810015,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.243025,\n                    \"lon\": -131.820879\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sandspit\",\n                \"formattedAddress\": \"Sandspit, BC V0T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"North Coast\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sandspit\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"UPDATE: Now providing flight passes across the Air Canada global network. Are you ready to take off and start a new and exciting career in the aviation industry? If so, we want to chat with you! In Sandspit you will be a part of an amazing team of customer service specialists who work together to provide exemplary service. So, would you say that going above and beyond is in your DNA? Do you love to travel and want to travel even more at discounted rates? Does the opportunity to provide exemplary service to passengers on some of Canada’s best airlines appeal to you? Are you someone who is known for reliability and flexibility? Come join us! Executive Aviation is looking for permanent casual Customer Service Agents to work at the Sandspit Airport (YZP). We are looking for people with great customer service, who have flexible availability and who love working in the tourism industry. We offer a great training program! This role would report directly to the Customer Service Coordinator. What do we offer? Executive Aviation is proud to have very progressive wage ranges with lots of earning potential. The range of salary for this position is $19.10-$20.90/hour. We offer comprehensive Health benefits for all part- and full-time team members. We also have fantastic flight benefits with the airlines that we support. We want to see you grow and reach your goals! The sky's the limit with Executive Aviation. Responsibilities Greeting passengers Following airline specific check-in policies and procedures Have proper security clearances Provide pre-flight first class or priority seating grooming for the flight Manage passenger boarding as per airline procedures Understanding flight document requirements and carry-on allowances Positively working with airline crew Kindly enforce airline and airport policies and procedures to passengers In some cases, learn how to bridge an airplane Other duties as assigned Qualifications Previous customer service experience is considered an asset Previous airport experience would be considered an asset Flexible availability to work shift work which includes early mornings, days, late evenings, weekends and/or holidays Strong communication skillsvh7AMevhLb\",\n            \"location\": \"Sandspit, BC\"\n        },\n        {\n            \"id\": \"DAF4045DCC559C3577D866F646003812\",\n            \"cityName\": \"7250 Rue du Mile End, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=aa1bfa90d208da9b\",\n            \"jobName\": \"Représentant-e, Service à La Clientèle/Customer Service Representative\",\n            \"companyName\": \"Global Payments\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694465826127,\n            \"dateOfPosted\": 1692759115023,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5320781,\n                    \"lon\": -73.62304920000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue du Mile End, Montréal, QC H2R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Every day, Global Payments makes it possible for millions of people to move money between buyers and sellers using our payments solutions for credit, debit, prepaid and merchant services. Our worldwide team helps over 3 million companies, more than 1,300 financial institutions and over 600 million cardholders grow with confidence and achieve amazing results. We are driven by our passion for success and we are proud to deliver best-in-class payment technology and software solutions. Join our dynamic team and make your mark on the payments technology landscape of tomorrow. La formation débute le 2 octobre prochain! - Postes à temps plein seulement Vous êtes à la recherche d’un nouveau défi et vous voulez rejoindre une entreprise du classement Fortune 500 axée sur la technologie et l'innovation? Chez Global Payments, vous aurez de nombreuses possibilités de croissance et de développement et nous vous promettons que chaque jour se transformera en un défi passionnant. Joignez-vous à notre équipe dynamique! L'importance que nous accordons aux membres de notre équipe: De réelles opportunités d'évolution professionnelle Un environnement de travail collaboratif et convivial avec un code vestimentaire décontracté Une assurance médicale Couverture d'invalidité à courte et longue durée Plans d'assurance vie Programmes d'épargne-retraite Programme d'achat d'actions pour les employés Programme d'assistance aux employés Programme de remboursement des frais de scolarité Possibilités de faire du bénévolat Lieu sûr pour la communauté LGBTQIA2+ Renseignements importants: Horaire: 37,5 heures par semaine, sur une base de rotation, 365. Travail du bureau: 7250, rue du Mile-End, Montreal. Salaire: 20$/h Ce que vous contribuerez à l'équipe: Aider à la formation des nouveaux commerçants dans les systèmes. Identifier et répondre aux demandes des clients concernant les comptes en utilisant l'écoute, la pensée critique et les compétences acquises pour résoudre l’appel. Fournir une solution aux problèmes ou aux plaintes des commerçants et les transmettre à la direction ou à l'équipe concernée pour les cas nécessitant une enquête plus approfondie. Utiliser adéquatement le système et les ressources internes pour servir efficacement et avec précision les clients et interpréter les données des marchands. Démontrer une connaissance des produits, des services, de la recherche de comptes, des opérations au point de vente et de la maintenance technique et de compte. Éduquer les commerçants sur les politiques, les procédures et les produits. Documenter avec précision les conversations des clients dans les systèmes appropriés. Résoudre rapidement tous les problèmes en utilisant les protocoles établis ou transférer aux personnes ressources. Interagir avec divers groupes de soutien au sein de Global Payments et assurer la liaison avec eux en ce qui a trait à la résolution d'une préoccupation d'un commerçant. Atteindre les standards de performance fixés par le département. Fournir un soutien opérationnel à d'autres unités selon les besoins de l'entreprise. Maintenir systématiquement l'étiquette téléphonique professionnelle. Compléter avec succès une formation supplémentaire sur les compétences au besoin. Maintenir les normes de service à la clientèle dans les situations de haute pression, telles que l'augmentation du volume d'appels, le manque de ressources ou la difficulté des clients. Agir en tant que membre positif de l'équipe, en affichant un respect mutuel pour les autres. Analyser et résoudre les problèmes en rassemblant systématiquement les informations pertinentes et en tenant compte d'un large éventail de problèmes, de facteurs et de données, lorsqu'il existe plusieurs réponses. Qui vous êtes: Une personne avec 6-12 mois d'expérience en service à la clientèle. Bilingue en français et en anglais. Ouvert aux heures de travail flexibles, sur une base de rotation, 24/7, 365. Diplômé(e) d’études secondaires. Une personne qui aime aider et écouter les autres. Orienté(e) service à la clientèle avec des solides compétences en communication. Une personne positive avec de fortes compétences interpersonnelles. Capable d'apprendre de nouvelles fonctions ou applications. Possède de solides compétences analytiques pour résoudre les problèmes. Responsable et autonome, avec une capacité de prise de décisions rapide et précise. Qui sommes-nous ? Global Payments est un leader du secteur des technologies de paiement avec plus de 24 000 employés dans le monde. Nous sommes fiers de nos innovations et de la valeur que nous accordons à l'inclusion. Notre équipe aide nos clients à obtenir des résultats impressionnants. C'est notre passion pour le succès qui nous a permis de surpasser la concurrence pendant des années. Rejoignez-nous et laissez votre empreinte sur le paysage technologique des paiements de demain. *** Nous remercions sincèrement tous les candidats de leur intérêt. Nous ne contacterons que les personnes sélectionnées pour un entretien. Global Payments est un employeur qui respecte l'égalité des chances. Nous valorisons la diversité et l'inclusion et offrons des chances égales à tous les employés et candidats, sans tenir compte de la race, de la couleur, de la religion, du sexe, de l'origine nationale, de l'âge, de l'état civil, de l'orientation sexuelle, de l'identité ou de l'expression de genre, du handicap physique ou mental, ou de toute autre base protégée par la loi et nous sommes heureux d'offrir aux membres de notre équipe un environnement de travail sain. Training starts on October 2nd! - Full-time positions only Looking for a new challenge and want to join a Fortune 500 company focused on technology and innovation? At Global Payments, you’ll have many opportunities for growth and development and we promise everyday will be an exciting challenge. Join a dynamic team as a bilingual customer service representative! How we care about our people: Real opportunities to grow professionally Collaborative, friendly work environment with a relaxed, casual dress code Benefits after 30 days Health insurance Short-Term and Long-Term disability coverage Life insurance plans Retirement savings programs Employee stock purchase program Employee assistance program Tuition reimbursement program Volunteering opportunities Safe place for the LGBTQIA2+ community Important information: Schedule: 37,5hr per week, on a rotational basis, 365. Work from the office: 7250, Mile End St. Montreal Salary: 20$/h What you will be contributing to the team: Assist in the training of new merchants. Identify and address customer inquiries regarding accounts. Provide resolution to merchant issues or complaints, and escalate to management or appropriate team concerned for cases requiring further investigation. Appropriately utilize internal systems and resources to accurately and effectively serve customers, and interpret merchant data. Demonstrate knowledge of products, services, account research, Point of Sale operations/technical and account maintenance. Educate merchants on policies, procedures, and products. Accurately document customer conversations in appropriate systems. Timely escalation of all department and system issues using the established reporting protocols. Interact and liaise with various support groups within Global Payments in relation to resolution of a merchant concern. Successfully complete additional skills training as required/requested. Who you are: Someone with 6-12 months of employment experience, preferably in a similar position. Bilingual in English and French. Available to work on a rotational basis, 24/7, 365. A High School Graduate. A great helper and listener. Able to maintain customer service standards during high-pressure situations. A positive member who loves to learn and share new things. A strong communicator with great interpersonal skills. A problem analyzer and solver by gathering relevant information systematically. Able to work independently and make quick and accurate decisions. Someone with strong analytical skills to troubleshoot issues. Who we are: Global Payments is a leader of the payment technology industry with over 24 000 employees worldwide. We pride ourselves on innovation and inclusion. Our team is helping customers achieve amazing results. It’s our passion for success that has led to years of out-performing the competition. Join us and make your mark on the payments technology landscape of tomorrow. *** We sincerely thank all applicants for their interest. We will only contact those selected for an interview. #LI-Onsite Global Payments Inc. is an equal opportunity employer. Global Payments provides equal employment opportunities to all employees and applicants for employment without regard to race, color, religion, sex (including pregnancy), national origin, ancestry, age, marital status, sexual orientation, gender identity or expression, disability, veteran status, genetic information or any other basis protected by law. Those applicants requiring reasonable accommodation to the application and/or interview process should notify a representative of the Human Resources Department.\",\n            \"location\": \"Rue du Mile End, Montréal, QC\"\n        },\n        {\n            \"id\": \"6D4B256327C0E6955EAEE7169B09020A\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ff8cdb8ecf6470c8\",\n            \"jobName\": \"German Customer Service Consultant\",\n            \"companyName\": \"Lufthansa Intouch\",\n            \"rowSalary\": \"From $17.90 an hour\",\n            \"date\": 1694465825408,\n            \"dateOfPosted\": 1693615578449,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Lufthansa InTouch is looking for a motivated German Speaking Customer Service Consultants to add to our international team of travel consultants!Purpose of Role:As a part of our team, you can make someone’s day every day through positive interactions, and a continuous learning environment. As a home base position, you can provide this high level of customer service from the comfort of your own home! Our multicultural, multilingual teams operate from seven Service Centers worldwide, providing five-star services to passengers flying with the Lufthansa Group. Training will be provided to ensure confidence and success when handling customer calls.Work Performed:In the role of a Customer Service Consultant, you will be taking calls from passengers with inquiries related to:General flight reservations, direct sales and re-bookingsInformation about Lufthansa Group products and services like; seat selection, meals, pets, and check insAlong with opportunities to grow into different departments withing the Lufthansa InTouch teamRequired Knowledge, Skills and Experience:Strong proficiency in the English language (written and verbal)Demonstrated experience in de-escalating handling of complaintsExperience working in customer service is an assetExperience working and using different computer programsPersonal Competency Requirements:Good Team PlayerExcellent communication & interpersonal skillsMust be very detail orientated, and able to multitask efficientlyFlexibility in the alternating processing of written and telephone customer inquiriesAdaptability, patience, and problem-solving competencesHigh level of persuasivenessHigh level of service orientationAbility to work accurately and with attention to detailIndependent, self-motivated approach to workReliable and empathic personalityAdditional Information:The selection process includes a selection of verification of skills and assessment in order to assess the suitable candidates.You will be REQUIRED to travel to Peterborough, Ontario to pick up your equipment and have an orientation day.This position is homebased, but you are REQUIRED to attend 7 weeks of training in Toronto, Ontario.WE ARE PROUD TO OFFER YOU:You will be a part of a unique team spirit and culture - we are the best at being In Touch! We are driven to be best. At Lufthansa InTouch, we continuously upskill and train our team to boost your product knowledge and build your confidence in all aspects of service for air travelers.Competitive CompensationComprehensive Health & Dental BenefitsHighly Discounted AirfareDevelopment OpportunitiesInternational Exchange ProgramsWorld Class TrainingDoes this sound like you? Apply today!Lufthansa InTouch appreciates all applicants for their interest; however, only those selected for an interview will be contacted.Lufthansa InTouch Peterborough is an equal opportunity employer. We are committed to ensuring equal employment opportunities for all qualified individuals. Accommodation is available as required under the Ontario Human Rights Code.Job Types: Full-time, PermanentSalary: From $17.90 per hourBenefits:Casual dressDental careVision careWork from homeSchedule:8 hour shiftMonday to FridayOvertimeWeekends as neededSupplemental pay types:Bonus payOvertime payApplication question(s):Are required to travel to Peterborough, Ontario for first day orientation? Along with attending 7 weeks of in person training in Toronto?Education:Secondary School (preferred)Language:German (required)Work Location: In personExpected start date: 2023-10-13\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"B0F5807CB117333C03D01EA64A7A8478\",\n            \"cityName\": \"875 Plymouth Dr, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7893d6d55b198716\",\n            \"jobName\": \"Automotive Customer Service Representative\",\n            \"companyName\": \"Csn Heartland Auto Collision\",\n            \"rowSalary\": \"From $22.50 an hour\",\n            \"date\": 1694465796371,\n            \"dateOfPosted\": 1693607143521,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6076261,\n                    \"lon\": -79.695714\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Plymouth Dr, Mississauga, ON L5V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CSN Heartland Auto Collision is currently looking for an Automotive Customer Service Representative to join our growing team! The Customer Service Representative provides a high level of face-to-face customer service and supports customers’ needs throughout the vehicle repair process.Major Areas of ResponsibilitiesProvides courteous assistance to customers and educates customers on the collision repair processFace-to-face interaction with customersEvaluating vehicle damage and taking photos as requiredCapturing complete list of customers’ expectations and if necessary negotiating on service deliverablesUnderstanding specific insurers’ claims processing policies and processes and following them accordinglyMaintaining updated customer filesTimely two-way communication with/ between internal and external customersProviding back-up to Front Office Administrator, i.e. answering phones and greeting customersRequired Education, Skills and Qualifications3 years’ experience in Customer Service, previous experience in the automotive industry is preferred.Knowledge of collision repair process and/or auto insurance claims is an asset.Experience in SalesAnalytical and problem solving skills.Efficient use of Microsoft Office and the Internet.Effective written and verbal communication skills.Company ProfileCSN Heartland Auto Collision is a dynamic and progressive auto body shop, in business for over 45 years with 3 locations across the GTA. As an equal opportunity employer our company is committed to providing a positive work environment. We offer a competitive benefits package that includes:· Company sponsored training· Competitive wages· Paid vacation· Medical benefitsFor more information about our company visit http://www.csnheartlandcollision.com/We are an Accessibility for Ontarians with Disabilities Act (AODA) compliant workplace. You can be confident that our recruitment and hiring processes will be modified to accommodate disabilities, if requested.We thank all applicants for their interest; however, only those selected for an interview will be contacted. We are an equal opportunity employer.Job Types: Full-time, PermanentSalary: From $22.50 per hourBenefits:Dental careExtended health careLife insuranceOn-site parkingPaid time offFlexible Language Requirement:French not requiredSchedule:Day shiftSupplemental pay types:Overtime payExperience:Customer service: 3 years (preferred)automotive: 1 year (preferred)sales: 1 year (preferred)Licence/Certification:Class G Licence (preferred)Work Location: In person\",\n            \"location\": \"Plymouth Dr, Mississauga, ON\"\n        },\n        {\n            \"id\": \"D5632D1FA23F508C1D072282A7B3436F\",\n            \"cityName\": \"Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=794e37414f2917da\",\n            \"jobName\": \"Sales Advisor/Customer Service\",\n            \"companyName\": \"Starmetroland Media\",\n            \"rowSalary\": \"$35,000–$45,000 a year\",\n            \"date\": 1694465762112,\n            \"dateOfPosted\": 1652205160542,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2557206,\n                    \"lon\": -79.8711024\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work from Home Classified AdvertisingPart Time Position.Approximately 30 hours per weekThe successful candidate would be responsiblefor inbound and outbound calls.Base Salary Plus CommissionFull training providedHealth care benefits availableFull support & set upGreat Online Teams AtmosphereTo view full job description and to applyplease visit our websitewww.metroland.comMust be fully vaccinatedJob Types: Part-time, PermanentPart-time hours: 30 per weekSalary: $35,000.00-$45,000.00 per yearBenefits:Company pensionEmployee assistance programExtended health careVision careWork from homeSchedule:Monday to FridayWeekend availabilitySupplemental pay types:Commission payEducation:Secondary School (preferred)Application deadline: 2022-05-25\",\n            \"location\": \"Hamilton, ON\"\n        },\n        {\n            \"id\": \"E73811114E0B13B0E5B4A21D3088C1C6\",\n            \"cityName\": \"1903 West 4th Avenue, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5e89f9a07a477db0\",\n            \"jobName\": \"Customer Service And Food Preparation Supervisor\",\n            \"companyName\": \"Tractor Everyday Healthy Foods\",\n            \"rowSalary\": \"$17.75–$18.75 an hour\",\n            \"date\": 1694465554745,\n            \"dateOfPosted\": 1693615848292,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2648683,\n                    \"lon\": -123.160043\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W 8th Ave, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Tractor Foods is currently seeking a shift supervisor with exceptional customer service experience who's passionate about healthy foods, taking orders, making sandwiches and leading the team! If you love good food and coffee this job is waiting for you!Responsibilities and DutiesSupervise 3-4 team members on the scheduleExceptional Customer ServiceMaintain food and service qualityHelp the team on closing dutiesAre you passionate about food service? The right candidate will be responsible for helping make delicious food as well as providing exceptional customer service.If you're interested in working for a company that is continually growing and offers a range of career opportunities, then look no further. We're looking for people who have a real taste for healthy food to join our store in Kitsilano.Tractor Foods is a local family owned restaurant group expanding at a rapid rate. If you're looking for a career in the food industry then now is the time to jump on the bus with us and start moving your career in the right direction. We are serious about preparing, cooking, coffee and serving great food from scratch. We put huge importance on working in a fun, clean, professional, open kitchen with apprenticeship opportunities for those who are interested.Must haves:-Honest-Punctual-Fun-Happy-Highly Motivated-Reliable-Fast and Efficient-Detail Oriented-Team Player-Organized-Great Customer Service Skills-Knife Skills/ Kitchen Experience an AssetJob Type: Full-timeSalary: $17.75-$18.75 per hourBenefits:Discounted or free foodStore discountSchedule:Day shiftEvening shiftEvery WeekendHolidaysSupplemental pay types:Overtime payTipsCOVID-19 considerations:Sanitation stations available.Frequent hand washing and sanitation of tables and all surfaces.Work Location: In personExpected start date: 2023-09-11\",\n            \"location\": \"West th Avenue, Vancouver, BC\"\n        },\n        {\n            \"id\": \"8AFEE1E97FB7836F44EAE53F87940CCF\",\n            \"cityName\": \"40 Pippin Rd, Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1bcca7c987531861\",\n            \"jobName\": \"Hvac Customer Service Representative\",\n            \"companyName\": \"Mr. Service Hvac\",\n            \"rowSalary\": \"$15.50–$18.00 an hour\",\n            \"date\": 1694465530945,\n            \"dateOfPosted\": 1693615579418,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8097906,\n                    \"lon\": -79.52423809999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Pippin Rd, Vaughan, ON L4K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Description:At Mr. Service, we have a great opportunity for our next potential of Customer Service Representative. We are looking for an optimistic results-driven individual with a high-integrity to join our new company.As a new trusted Canadian owned and operated company, there will also be potential for advancement within the company.What we Value: Integrity, Accountability, Transparency, Influence, Direction and Leadership.Responsibilities:Respond to lead inquiries, concerns, and service requests via phone, email, or chat in a timely and professional manner.Call the potential leads from the lead list and enquire about the needs of the potential clientand record the information as per the requirement.Provide accurate information about HVAC products, services, and availability to the leads.Provide all the information to the sales representative about what the leads want in terms of the service.Book appointments for the sales representative to visit the client's home and confirm the appointment with sales representative and the client via email.Record any service request from the clients and the technical team to resolve any issues raised by the client.Book the calender daily for the prsent week, upcoming weeks, and the upcoming months in advance.Address any issue or complaint promptly by taking the right action and informing the right stakeholders.Always follow up with clients in a timely fashion.Qualification and Skills:High school diploma or equivalent, Post-secondary education is plus.Previous customer service experience, preferably in the HVAC or related field.Strong interpersonal and communication skills.Ability to remain calm and patient when dealing with frustrated or upset customers.Familiarity with HVAC systems and terminology is preferred.Proficiency in using customer releationship management ( CRM) software and office applications.We offer a positive work environment, and opportunities for career growth. If you are a motivated individual with a passion for providing excellent customer service, we would love to hear from you.To apply, please submit your resume and cover letter highlighting your relevant experience in customer service.Job Type: Full-timeSalary: $15.50-$18.00 per hourBenefits:Flexible schedulePaid time offFlexible Language Requirement:French not requiredSchedule:8 hour shiftWork Location: In person\",\n            \"location\": \"Pippin Rd, Vaughan, ON\"\n        },\n        {\n            \"id\": \"5E07464BBF5D169A42A48993D81F47A9\",\n            \"cityName\": \"1903 West 4th Avenue, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cda0b408885f072c\",\n            \"jobName\": \"Customer Service And Food Preparation\",\n            \"companyName\": \"Tractor Everyday Healthy Foods\",\n            \"rowSalary\": \"$16.75–$17.75 an hour\",\n            \"date\": 1694465514570,\n            \"dateOfPosted\": 1693605635613,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2648683,\n                    \"lon\": -123.160043\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W 8th Ave, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you passionate about food service? The right candidate will be responsible for helping make delicious food as well as providing exceptional customer service.If you're interested in working for a company that is continually growing and offers a range of career opportunities, then look no further. We're looking for people who have a real taste for healthy food to join our store in Kitsilano.Tractor Foods is a local family owned restaurant group expanding at a rapid rate. If you're looking for a career in the food industry then now is the time to jump on the bus with us and start moving your career in the right direction. We are serious about preparing, cooking, coffee and serving great food from scratch. We put huge importance on working in a fun, clean, professional, open kitchen with apprenticeship opportunities for those who are interested.Must haves:-Honest-Punctual-Fun-Happy-Highly Motivated-Reliable-Fast and Efficient-Detail Oriented-Team Player-Organized-Great Customer Service Skills-Knife Skills/ Kitchen Experience an AssetResponsibilities and DutiesMaintaining a clean environmentEager to learn all about our amazing foodExceptional Customer ServiceFood PreparationDishes and CleaningRestaurant OrganizationJob Type: Full-timeSalary: $16.75-$17.75 per hourBenefits:Discounted or free foodStore discountSchedule:Day shiftEvening shiftEvery WeekendHolidaysSupplemental pay types:Overtime payTipsCOVID-19 considerations:Sanitation stations available.Frequent hand washing and sanitation of tables and all surfaces.Work Location: In personExpected start date: 2023-09-11\",\n            \"location\": \"West th Avenue, Vancouver, BC\"\n        },\n        {\n            \"id\": \"92F5914ACF8B8F0808A7BE96AC865F11\",\n            \"cityName\": \"1950 Main St, Fruitvale, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=170199c669ac4392\",\n            \"jobName\": \"Deli Clerk/Customer Service\",\n            \"companyName\": \"Liberty Food Store Ltd.\",\n            \"rowSalary\": \"$16.75–$18.00 an hour\",\n            \"date\": 1694465296222,\n            \"dateOfPosted\": 1693615705379,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1164287,\n                    \"lon\": -117.5417603\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fruitvale\",\n                \"formattedAddress\": \"Main St, Fruitvale, BC V0G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kootenay Boundary\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fruitvale\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Liberty Foods (https://www.facebook.com/libertyfoodsfruitvale) has been proudly serving families in the Beaver Valley for over 60 years and we are looking for friendly, enthusiastic individuals who enjoy giving our customers the best shopping experience.Reporting to the Deli Manager, your duties and responsibilities include but are not limited to:Job OverviewBring a positive attitude every day.Upholds and complies with company procedures, standards and policies in all situationsGreets customers in a polite and friendly mannerDemonstrates superior customer serviceHot and cold food preparation, including sandwiches, chickens, salads, soups and specialty traysUse of commercial power equipment, including slicers and ovensWriting product ordersReceiving and rotation of productFilling product display casesPerforming any additional duties assigned by the Deli ManagerYou Have a passion for great food, possess strong customer service skills and an ability to learn quicklyHave an impeccable level of cleanliness, attention to detail and organizationHave excellent communication and interpersonal skillsThrive in a fast-paced environment, self-motivated and adapt well to shifting prioritiesWork well under minimal supervisionHighly motivated and team orientedAre available to work flexible hours including evenings and weekendsCan work on your feet up to 8 hours in a dayPerks of the JobBe a part of a fun and team-oriented workplace environmentFlexible schedule where work meets your lifestyleEnrolled in the Liberty Employee Rewards ProgramLiberty Foods is located at 1950 Main Street, Fruitvale, BC. Hours of operation are from 9:00 a.m. to 6:00 p.m. Deli Clerks work shifts start as early as 7:00 a.m. and end as late as 6:15 p.m. Shift lengths normally are 8 hours.We would like to thank you in advance for sharing your interest in Liberty Foods and would like to note that only those selected for an interview will be contacted. Liberty Foods is an equal opportunity employer.Work RemotelyNoJob Types: Full-time, Part-time, PermanentPart-time hours: 24 - 40 per weekSalary: $16.75-$18.00 per hourBenefits:Store discountSchedule:8 hour shiftDay shiftHolidaysMonday to FridayWeekends as neededCOVID-19 considerations:All customers are required to wear a mask while shopping, all staff are required to wear a mask while working, curbside pickup available, common surfaces are sanitized regularly, etc.Work Location: In person\",\n            \"location\": \"Main St, Fruitvale, BC\"\n        },\n        {\n            \"id\": \"E8CDAED9ED0E9F1ED46C2D18332C9883\",\n            \"cityName\": \"Ayr, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d2ae9540e097344f\",\n            \"jobName\": \"Customer Service Advisor (Ft)\",\n            \"companyName\": \"Quick Truck Lube - Napanee\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694465121462,\n            \"dateOfPosted\": 1693615573783,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2854723,\n                    \"lon\": -80.4507835\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ayr\",\n                \"formattedAddress\": \"Ayr, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ayr\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Quick Truck Lube is seeking a Customer Service Advisor with the following qualifications: Must be able to multi-task, and capable of working in a fast pace environment. Computer skills and strong organizational skills are required. Greeting customers and enhancing the customer service experience. Excellent communication skills required. Must be a good team player. Training is provided, previous experience is an asset  Must have own transportation, no public transportation is available.  Benefit Package available after 6 months.  Salary: $18/hour  To Apply: Email your resume to sjaimie@quicktrucklube.com \",\n            \"location\": \"Ayr, ON\"\n        },\n        {\n            \"id\": \"1D44FC275108C758273487AB32F85ECC\",\n            \"cityName\": \"Floshade in Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=77358650814ed7b6\",\n            \"jobName\": \"Customer Service Advisor\",\n            \"companyName\": \"Floshade\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694464952429,\n            \"dateOfPosted\": 1693615576889,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6066487,\n                    \"lon\": -73.712409\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laval\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"What you will do:- Provide excellent customer support by answering their questions, providing useful information as needed;- Handle customer complaints, provide appropriate solutions and alternatives according to established protocols;- Follow up on files to ensure excellent customer service;- Maintain customer satisfaction and loyalty;- Any other related duties.What you need:- High school diploma or other relevant education (desired);- Strong communication skills - written and spoken;- Customer focus;- Bilingual, French and English, because you will speak with customers across Canada.Job Types: Permanent, Full-timeSalary: $20.00 per hourSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsWork Location: In person\",\n            \"location\": \"Laval, QC\"\n        },\n        {\n            \"id\": \"A47C4B4AA38F4CB738823EE72BD19ADE\",\n            \"cityName\": \"1437 Waverley St, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b9ff65cc91d95014\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"204 Fuels Inc.\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694464903860,\n            \"dateOfPosted\": 1693615572089,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.7943692,\n                    \"lon\": -97.174065\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Waverley St, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Gas Station Attendant and U-Haul Customer Service Job for Female Candidates only.As a Gas Station Attendant, your role is integral to ensuring smooth operations at our gas station. Your friendly demeanor will help you assist customers with their fueling needs and provide them with any information they require. Efficiently handling cash transactions and maintaining the accuracy of the cash register will be part of your daily tasks. Additionally, you'll keep the gas station premises clean and tidy, which includes fuel pumps, restrooms, and the convenience store area. Regularly stocking merchandise, snacks, and convenience items will contribute to a well-stocked store for our customers. Safety will be a top priority as you follow guidelines for proper storage of hazardous materials and know the emergency response procedures. Ensuring that fuel and product pricing displays are up-to-date will also fall within your responsibilities. Lastly, maintaining accurate records of fuel sales, transactions, and inventory levels will be crucial to the overall operations of the gas station.U-Haul Customer Service Responsibilities:In your role as a U-Haul Customer Service representative, you'll play a vital role in assisting customers with their moving and transportation needs. You'll be responsible for guiding customers through the rental process, explaining various vehicle and equipment options, rates, and availability. Managing reservations and rental agreements accurately will be part of your day-to-day tasks. Thoroughly inspecting U-Haul vehicles before and after rentals to ensure they meet safety and cleanliness standards will contribute to customer satisfaction and safety. Offering clear instructions on vehicle operation, safety guidelines, and equipment usage will help customers have a smooth experience. Should any concerns arise, you'll be expected to address them promptly and provide appropriate solutions. Coordinating routine maintenance and cleaning of U-Haul vehicles and equipment will contribute to the overall quality of our fleet. Administrative tasks, such as completing paperwork and maintaining accurate rental records, will also be within your scope. Upselling additional U-Haul products and services to enhance customers' moving experiences will be an opportunity to increase customer satisfaction and revenue.U-Haul Customer Service Responsibilities:In your role as a U-Haul Customer Service representative, you'll play a vital role in assisting customers with their moving and transportation needs. You'll be responsible for guiding customers through the rental process, explaining various vehicle and equipment options, rates, and availability. Managing reservations and rental agreements accurately will be part of your day-to-day tasks. Thoroughly inspecting U-Haul vehicles before and after rentals to ensure they meet safety and cleanliness standards will contribute to customer satisfaction and safety. Offering clear instructions on vehicle operation, safety guidelines, and equipment usage will help customers have a smooth experience. Should any concerns arise, you'll be expected to address them promptly and provide appropriate solutions. Coordinating routine maintenance and cleaning of U-Haul vehicles and equipment will contribute to the overall quality of our fleet. Administrative tasks, such as completing paperwork and maintaining accurate rental records, will also be within your scope. Upselling additional U-Haul products and services to enhance customers' moving experiences will be an opportunity to increase customer satisfaction and revenue.MUST BE AVAILABLE TO WORK ON WEEKENDSJob Types: Full-time, Part-time, PermanentPart-time hours: 32 per weekSalary: $14.50 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayNight shiftWeekends as neededWork Location: In person\",\n            \"location\": \"Waverley St, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"CD7E2919BE7CA2665E67BE1A6B7B563F\",\n            \"cityName\": \"Woodstock, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=246e1bb90518f6a6\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Xplore Inc.\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694464844501,\n            \"dateOfPosted\": 1693615745249,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.15026599999999,\n                    \"lon\": -67.6033952\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Woodstock\",\n                \"formattedAddress\": \"Woodstock, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Carleton County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Woodstock\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Overview: * Do you have a passion for providing excellent customer service? Want to work for a company who believes in putting the customer at the heart of everything they do? Then join Xplore’s team of Customer Service Representatives in our Woodstock, NB office. Xplore offers a high energy, fast-paced work environment where employee opinions and feedback are valued. Xplore offers a high energy, fast-paced work environment where employee opinions and feedback are valued. We offer:$15/hr$3.00/hour Bilingual Premium (French/English)Bonus incentive opportunities up to $2,800 annuallyExcellent company benefits including health and dentalMatched participation in group RRSPStrong focus on internal promotion, career path development and trainingOpportunities to work from home after six months tenureKey responsibilities include:Providing an excellent customer experience by responding to customer calls in a courteous, knowledgeable and professional mannerListening to customers and probing as appropriate to discover needs while fulfilling customer expectations in a way that also complies with policies, practices and proceduresProviding general account, billing and technical support to our customersProcessing service ordersMaintaining accuracy of customer databasesAssisting with reporting and administrationMaintaining service levels and achieving business and performance goals and objectivesThe ideal candidate will possess:Completion of post-secondary education in a related field (or equivalent level of experience)Knowledge of approaches, tools and techniques for anticipating, recognizing and resolving technical issuesPrevious customer service experience is an assetStrong computer and troubleshooting skills with the ability to analyze and solve problemsSolid working knowledge of the Microsoft Operating Systems; experience with MAC and/or Linux is an assetStrong communication skills, verbal and written, with the ability to communicate effectively with customers in technical and non-technical termsSelf-motivated and driven with good time management and organizational skillsAbility to follow guidelines and strong attention to detailAbility to prioritize and multi-task while adapting in a fast-paced work environmentBilingualism is an asset (French/English) #XploreJobs Condition of employment: As a condition of employment and in order to comply with industry related data security standards, this position is subject to the successful completion of a Criminal Background Check. Details will be supplied to applicants as they move through the selection process. Xplore is committed to creating an accessible environment and will accommodate disabilities during the selection process. Please let your recruiter know during the selection process of any accommodation needs. Company Overview: Xplore Inc. is Canada’s fibre, 5G and satellite broadband company for rural living. Xplore is committed to the relentless pursuit of an improved broadband experience for all Canadians. Xplore is building a world-class fibre optic and 5G wireless network to enable innovative broadband services for better every day rural living, for today and future generations.\",\n            \"location\": \"Woodstock, NB\"\n        },\n        {\n            \"id\": \"9DD54464EC7719162AF8822BB2D50C02\",\n            \"cityName\": \"Central Mountain Air in Quesnel, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=93b3c5d6915548be\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Central Mountain Air\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694464530537,\n            \"dateOfPosted\": 1693615717652,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.9817372,\n                    \"lon\": -122.4949058\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Quesnel\",\n                \"formattedAddress\": \"Quesnel, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Cariboo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Quesnel\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Central Mountain Air, we pride ourselves in providing vital air connectivity to remote communities nestled within the stunning landscapes of Alberta and British Columbia. Our commitment to safety, reliability, and exceptional customer service is at the core of everything we do. Join our dedicated team and become an integral part of bringing people together and fostering economic growth in these unique regions. We are currently seeking a Part-Time Customer Service Agent to join our team at our Quesnel, BC base.Customer Service Agents are part of a team that works in conjunction with crew members and ground agents to escort and board passengers, take reservations, and maintain baggage accuracy and safety. Customer Service Agents report to the Customer Service Supervisor.Job ResponsibilitiesCheck-in and greeting passengers, taking reservations and handling payments (when necessary)Responding to passenger inquiriesAssisting passengers with disabilities during deplaning and enplaningProcessing baggage and cargoGate operations and flight closure, communicating load counts to flight crewsAbility to lift up to 50 lbsOther duties as assignedJob RequirementsSuperior customer service skillsGood communication and interpersonal skillsAbility to work independently as well as in a team environmentAbility to work flexible hours, including split shifts and weekend coverageWillingness to work outside in adverse weather conditionsGood computer skillsA positive attitude with the ability to be flexibleMust be able to obtain and retain an Airport RAICBenefits of Working at Central Mountain Air (part-time employees)Standby travel within Central Mountain Air network for employees, their eligible family members, and their buddies (not including fees and taxes)Free cargo shipping for employees on CMA flightsCentral Mountain Air is an equal opportunity employer and values diversity in our workplace. Our requirement is that you have the skills and abilities to do the job and the attitude of a team player. We encourage applications from all qualified individuals regardless of race, nationality, ethnic origin, color, religion, age, sex, sexual orientation, marital status, family status, and disability.Central Mountain Air thanks all applicants, however, only those selected for an interview will be contacted.Job Type: Part-timePart-time hours: 2-3 per weekSalary: $17.00-$18.00 per hourAbility to commute/relocate:Quesnel, BC V2J 6W6: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Quesnel, BC\"\n        },\n        {\n            \"id\": \"4F748CCBC7E1B73BFC95053419B8BDDE\",\n            \"cityName\": \"1410 39 St N, Lethbridge, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9c9940afb365218c\",\n            \"jobName\": \"Sales Associate / Customer Service Representative\",\n            \"companyName\": \"Comfortek Seating\",\n            \"rowSalary\": \"From $42,000 a year\",\n            \"date\": 1694464458079,\n            \"dateOfPosted\": 1693615833478,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.7074835,\n                    \"lon\": -112.8283721\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lethbridge\",\n                \"formattedAddress\": \"12a St N, Lethbridge, AB T1H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lethbridge\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ComforTek Seating is looking for a full-time sales associate / customer service representative. This position will be mainly phone and email sales, with limited in person dealings. Our customers are located in both Canada and the United States, so quotes are completed in both currencies. Responsibilities include but are not limited to the below:Responsible for quoting emailed/web/chat/phone requests for quotes in both U.S. and Canadian Markets on Church/Banquet/Health Seating.Type up a formal quote including freight for email/web/chat requests that has chair pricing, freight and options available.Running freight rates for customers for quotes.Tracking leads and quotes in a CRM program (Monday.com).Completing sales orders and having customers sign and return those when ready.Daily/weekly follow ups with customers on quotes provided to assist with any additional questions using the CRM information entered. Updating CRM as required.Forwarding any sample requests to the sample department.Answering phone & email inquiries with general information about products, requests for quotes and any other questions the customers have in regards to ComforTek.Ability to learn e-commerce platforms, and manage databases for existing e-commerce customers.Experience with Microsoft Great Plains an asset but not required.Conduct yourself in a respectful and professional manner both verbally and written. Interested in building relationships with customers that can lead to long term business dealings.Minimum 4 years sales experience, with preference given to those that have remote sales experience.Job Types: Permanent, Full-timeSalary: From $42,000.00 per yearBenefits:Dental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offFlexible Language Requirement:French not requiredSchedule:Monday to FridayEducation:Secondary School (preferred)Experience:Sales: 2 years (preferred)Work Location: In personExpected start date: 2023-09-25\",\n            \"location\": \"St N, Lethbridge, AB\"\n        },\n        {\n            \"id\": \"09840910D3FE1C4029D42B32914DC13F\",\n            \"cityName\": \"Churchill, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a96558b866fb233b\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Calm Air\",\n            \"rowSalary\": \"$17.78 an hour\",\n            \"date\": 1694464446889,\n            \"dateOfPosted\": 1693615669602,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 58.7684112,\n                    \"lon\": -94.16496400000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Churchill\",\n                \"formattedAddress\": \"Churchill, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 23\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Churchill\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Title: Customer Service Agent Location: Churchill, MB Status: Casual - Term Start Date: Immediately  Who We Are  Calm Air International is a regional airline serving the Northern part of Central Canada. From its main bases in Winnipeg, Thompson and Churchill, Manitoba, and Rankin Inlet, Nunavut, Calm Air operates frequent, daily scheduled passenger, charters, and cargo flights throughout Manitoba and the Kivalliq Region of Nunavut.  At Calm Air International LP, we value our customers, passengers, and the communities we serve. We are only as good as the employees who work with us. We are looking for highly motivated, well-organized individuals, who work well in a fast-paced environment, to join our team! Want to learn more? Visit www.calmair.com.  About the Opportunity  Are you seeking an exciting opportunity to work with a group of high performing professionals? Do you like to work independently as well as part of a skilled team? If so, we would like to hear from you! We are looking for a highly motivated, well-organized individual, who thrives in a fast-paced environment, to join the Calm Air family.  The sky is the limit!  What You'll Get To Do Calm Air Customer Service Agents provide valuable front-line passenger support and assistance to our customers at the airports and before and after they board one of our flights. They are responsible for ensuring our passenger experience is positive and meets the standards of service that we set out as an organization in addition to complying with applicable regulations. Providing curbside to curbside service to the travelling public as per Canadian Transportation Agency regulationsMaking and changing flight reservations in the computerized reservation systemChecking in passengers and their baggageCalculate and charge any additional fees if applicableIssuing boarding passes, itineraries, and seating assignments as necessaryAssist pre-boarding passengers to ensure safe movement to and from the aircraftProvide information on fares, flight schedules and routes in person or over the telephoneFacilitate the safe movement of passengers between aircraft and terminal buildingsOther duties as required Hours Of Work Shift work is required and may include mornings/afternoons, evenings, and weekends Skills & Experience We Value High school diploma or general education degree (GED) an assetAbility to learn a computerized reservation systemBasic Computer skills (word, excel, office)Knowledge of an airline’s operations an assetMust have exceptional customer service skillsMust be able to work independently or in a team settingAbility to work efficiently and accurately under pressureMust have own transportation to and from workMust be able to obtain and maintain an Enhanced Security Clearance qualificationMust be able to attend and complete initial Ground School TrainingPreference given to Inuit Land Claims BeneficiariesInuktitut language considered an asset The Benefits of Joining Our Team  We invest time and resources into making sure Calm Air International is as good as the people we hire. Here are some of the reasons we attract the best people: Northern Living AllowanceVacation entitlement will be paid out with each pay statement at 6%Airline travel and freight privilegesCorporate and family eventsAnd more! If This Sounds Like the Job for You, Contact Us!  At Calm Air, we value diversity and provide equal opportunities and accessibility for all qualified candidates. We encourage all members of a designated group or those requiring accessibility support to self-declare when applying.  Please submit a resume in confidence by September 15, 2023.  We thank all those who apply, but only those selected for an interview will be contacted.\",\n            \"location\": \"Churchill, MB\"\n        },\n        {\n            \"id\": \"EFACC7B54121466028FF4013CC7512B0\",\n            \"cityName\": \"156 Jozo Weider Blvd, Blue Mountains, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2d46848d15ec0e4b\",\n            \"jobName\": \"Customer Service Associate (Full-Time Available)\",\n            \"companyName\": \"Village Market\",\n            \"rowSalary\": \"$16.50–$18.00 an hour\",\n            \"date\": 1694464357453,\n            \"dateOfPosted\": 1693616128499,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.50561769999999,\n                    \"lon\": -80.30985369999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Owen Sound\",\n                \"formattedAddress\": \"Jozo Weider Blvd, The Blue Mountains, ON L9Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Owen Sound\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Village Market Customer Service Associate - Full Time and Part Time positionsThe Village Market is located at the heart of the Blue Mountain Village. It is a grocery and convenience store serving thousands of locals and tourists year round.We are searching for a hard working, personable, individual to join our team. We offer a competitive wage, a well-rounded benefits package and on-site training.Responsibilities:GENERAL/CUSTOMER SERVICEGreet, welcome and provide customers with excellent customer service skillsOperate cash register and process credit/debit paymentsVerify the age of customers when selling age restricted productsPull daily sales reportsComplete daily cash outsPerform other duties as assignedHOUSEKEEPINGMaintain a clean and orderly checkout areaEnsure store stays clean and organizedFollow all Health and Safety ProceduresMERCHANDISINGStock shelves when items are low and new inventory arrivesComplete merchandising tasks as directed and maintain efficient flow of merchandise from backroom to sales floorAdvise appropriate person regarding stock outs/shortagesPerform stock counts and orders for designated areasLOSS PREVENTIONEnsure loss prevention Standards are followedControl cash and lottery in accordance with prescribed cash handling policies and proceduresMaintain proper security of cash and merchandiseJob Requirements:GENERALGood communication skills and ability to read and write in EnglishCustomer Service orientatedAble to work under minimal supervision and have attention to detailAble to work individually and be a team playerEffective problem solverAble to work in a fast-paced environmentExperience in cash handling is not a requirement but an assetExperience working in a grocery store is not a requirement but an assetJob Type: Full-timeSalary: $16.50-$18.00 per hourBenefits:Dental careVision careDay range:HolidaysWeekends as neededFlexible Language Requirement:French not requiredShift:8 hour shiftWork setting:Convenience storeGrocery storeAbility to commute/relocate:Blue Mountains, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Jozo Weider Blvd, Blue Mountains, ON\"\n        },\n        {\n            \"id\": \"6A12CF8D3883AC8F5AB034FF740FE1A5\",\n            \"cityName\": \"3280 Thomas Street, Innisfil, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c67f886b2c3ca782\",\n            \"jobName\": \"Customer Service Representative / Lead Generator\",\n            \"companyName\": \"Roadwarrior Inc\",\n            \"rowSalary\": \"$33,000–$35,000 a year\",\n            \"date\": 1694464252572,\n            \"dateOfPosted\": 1693615564234,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2947979,\n                    \"lon\": -79.675913\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Innisfil\",\n                \"formattedAddress\": \"Thomas St, Innisfil, ON L9S, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Innisfil\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 33000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    33000.0\n                ],\n                \"range\": {\n                    \"gte\": 33000.0,\n                    \"gt\": null,\n                    \"lte\": 33000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Roadwarrior Inc. is an affiliate of DCL International Inc., a global leader in the research, design, engineering, manufacturing, and sales of advanced clean energy technologies, which has been in business for over 30 years.Roadwarrior Inc. manufactures a wide range of emissions components for heavy-duty trucks, buses, and construction equipment and lithium batteries for use in electric auxiliary power units used in commercial and recreational vehicles, boats, and solar powered systems. We are a growing manufacturer of lithium battery products searching for a Customer Service Representative / Lead Generator to join our team!PRIMARY RESPONSIBILITIESConduct surveys and analyze data on the buying habits and preferences of D2C, B2B, and wholesale customers.Review marketing strategies for individual audiences and evaluate alignment of messaging and tactics.Analyze and review purchase behaviours by region, audience, and category.Analyze conversion rates by digital audiences.Use product and customer data analytics to identify market opportunities.Identify gaps and gather research to support business activities.Opportunity to develop go to market strategies.Perform other duties as required.QUALIFICATIONS & SKILLSHigh School DiplomaExcellent written and verbal English communication skills. French communication skills is an asset.Experience in any of the following: market research, lead generation, customer service, or inside sales.Excellent interpersonal, problem-solving and time-management skills.Knowledge or commercial trucking, boating, motorhomes, electrical systems, electric vehicles or battery technology is an asset.Strong team player with the ability to work independently with minimum supervisionWHY US?We are proud Canadian companies, and we care about our shared environmentWe provide a safe, clean work environment, training, new uniforms, safety shoes, gogglesWe offer competitive pay, employee benefits, vacation and personal time offWe encourage professional development & offer reimbursements for professional fees/tuitionWe recognize our employees for their achievements through our Innovation Award ProgramRoadwarrior Inc is committed to employment equity and fostering an inclusive environment. We are dedicated in providing accommodation in accordance with all relevant legislation and if you require accommodation, please advise the HR department and we will work with you to meet your needs.We thank all applicants for their interest, however, only candidates selected for interviews will be contacted.No telephone calls or agencies please.Job Type: Full-timeSalary: $33,000.00-$35,000.00 per yearSchedule:Monday to FridayAbility to commute/relocate:Innisfil, ON L9S 3W5: reliably commute or plan to relocate before starting work (required)Application question(s):Are you eligible to legally work in Canada without sponsorship?How many years do you you have as a CSR or Lead Generator?How many years' experience do you have doing lead gen or market research using social media?Work Location: In person\",\n            \"location\": \"Thomas Street, Innisfil, ON\"\n        },\n        {\n            \"id\": \"F2BD9A7487E386A621B89B3C0C48E1C4\",\n            \"cityName\": \"DGN Marketing Services Ltd in Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=491b9d2cf29dd13d\",\n            \"jobName\": \"Bilingual Customer Service Administrator\",\n            \"companyName\": \"Dgn Marketing Services Ltd\",\n            \"rowSalary\": \"$37,400–$39,500 a year\",\n            \"date\": 1694463903152,\n            \"dateOfPosted\": 1693615751462,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 37400.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    37400.0\n                ],\n                \"range\": {\n                    \"gte\": 37400.0,\n                    \"gt\": null,\n                    \"lte\": 37400.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Distribution Company in Mississauga is looking for a Bilingual (English & French), Customer Service administrator to process customer orders, data entry and other administrative support duties on various accounts.Position: Full-time, DaysLocation: Near Dixie Rd and Meyerside Dr. Accessible by both Mississauga and Brampton public transit.Responsibilities:· Enter orders, receive, projects, and profile/list updates.· Handle customer inquires· Release orders for projects, distributions and back orders.· Answering of customer toll-free lines.· Run systems reports.· Administrative back-up/support activities.· Back-up for Reception.· Full compliance with Health and Safety requirements.· Other tasks as assigned by your Supervisor or Account Managers.Requirements:· Good administrative skills· Strong written and verbal communication skills.· Computer application (MS Word, MS Excel, MS Outlook and the internet).· Must be able to create and work with spreadsheets.· Professional and courteous phone manners.Job Type: Full-timeSalary: $37,400.00-$39,500.00 per yearBenefits:Dental careExtended health careVision careSchedule:8 hour shiftDay shiftExperience:customer service: 1 year (preferred)Language:French (required)Work Location: In personExpected start date: 2023-09-25\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"EF954BFB26AA6832A54E0F25067FF690\",\n            \"cityName\": \"Masset, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fae43bf33aa89590\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Executive Aviation\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694463842215,\n            \"dateOfPosted\": 1693615775199,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.0114581,\n                    \"lon\": -132.1471978\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Masset\",\n                \"formattedAddress\": \"Masset, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"North Coast\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Masset\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Do you enjoy the aviation industry and are looking for a leadership opportunity? Are you passionate about aviation and looking to grow your career? If you've answered yes, we'd love to hear from you! So, would you say that going above and beyond is in your DNA? Do you love to travel and want to travel even more at discounted rates? Does the opportunity to provide exemplary service to passengers on some of Canada’s best airlines appeal to you? Are you someone who is known for reliability and flexibility? If you've answered yes, come join us! Executive Aviation is looking for permanent casual Customer Service Agents to work at the Masset Airport (ZMT)! In Masset, you will be a part of an amazing team of customer service specialists who work together to provide exemplary service. This role reports directly to an amazing Customer Service Coordinator who is there to support you. What do we offer? Executive Aviation is proud to have very progressive wage ranges with lots of earning potential. The range of salary for this position is $18.00-$20.00/hour. We have fantastic flight benefits with the airlines that we support. We want to see you grow and reach your goals! The sky's the limit with Executive Aviation. Responsibilities Greeting passengers Following airline specific check-in policies and procedures Have proper security clearances Provide pre-flight first class or priority seating grooming for the flight Manage passenger boarding as per airline procedures Understanding flight document requirements and carry-on allowances Positively working with airline crew Kindly enforce airline and airport policies and procedures to passengers In some cases, learn how to bridge an airplane Other duties as assigned Qualifications At least 2 years in customer service role is considered an asset Previous airport experience would be considered an asset Flexible availability to work shift work which includes early mornings, days, late evenings, weekends and/or holidays Strong communication skillsswGrZEkia8\",\n            \"location\": \"Masset, BC\"\n        },\n        {\n            \"id\": \"534AB719E06E1253816B6CE7B2BEE84E\",\n            \"cityName\": \"136 17 Av NE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3df86fd190961970\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Inspire Insurance Services Ltd\",\n            \"rowSalary\": \"$40,000–$45,000 a year\",\n            \"date\": 1694463748712,\n            \"dateOfPosted\": 1692744773578,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0530547,\n                    \"lon\": -114.0417022\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"General Ave NE, Calgary, AB T2E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Inspire Insurance Services Ltd. is an insurance brokerage established in 2018 offering personal and commercial insurance products in Alberta. As a start-up, we acquired AGM Insurance Ltd., a brokerage that has faithfully served Albertans for almost 30 years. At Inspire, we are a unique team of dynamic and experienced professionals.We are seeking enthusiastic candidates to apply. At Inspire, you will be given the support and structure to grow and take your career to the next level.Why Inspire Insurance· Career development and mentorship· Unique hands-on training with real-life cases· Access to numerous insurance markets· Access to ongoing training & development by our insurance partners· A workplace where diversity is valuedJob Summary· Spoken Chinese (Cantonese or Mandarin) is an asset· Build and maintain business relationships with clients· Support CSRs in daily business transactions· Assist in generating insurance quotations, applications, and endorsements· Provide support with insurer portal submissions· Other assigned dutiesOur Ideal Candidate· AIC Level I insurance agent license or above· Previous customer service experience (in sales) is a plus by not required· Effective time management skills and ability to work in a pressure environment· Clear written and oral communication skills· Organized with strong attention to detail· Self motivated and enthusiastic· Proficiency in Microsoft Office suite: Word, Excel, OutlookJob Types: Full-time, Part-time, PermanentPart-time hours: 40 per weekSalary: $40,000.00-$45,000.00 per yearBenefits:Company eventsExtended health careFlexible Language Requirement:French not requiredSchedule:Monday to FridayEducation:Secondary School (preferred)Experience:Customer service: 1 year (required)Personal Line Insurance: 1 year (required)Language:Mandarin (required)Cantonese (required)Licence/Certification:AIC Level One General Insurance License (required)Work Location: In person\",\n            \"location\": \"Ave NE, Calgary, AB\"\n        },\n        {\n            \"id\": \"BD934DD33149BD370BA9D1E315200BE9\",\n            \"cityName\": \"Ayr, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e7c452944a4961d3\",\n            \"jobName\": \"Customer Service Advisor / Front Counter Receptionist (Full-Time)\",\n            \"companyName\": \"Quick Truck Lube\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694463730820,\n            \"dateOfPosted\": 1693615576742,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2854723,\n                    \"lon\": -80.4507835\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ayr\",\n                \"formattedAddress\": \"Ayr, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ayr\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Quick Truck Lube is seeking a Customer Service Advisor with the following qualifications:Must be able to multi-task, and capable of working in a fast pace environment.Terms of employment Permanent, Full time 35 to 48 Hours / Week, 6 days a week Monday to SaturdayComputer skills and strong organizational skills are required.Greeting customers and enhancing the customer service experience.Excellent communication skills required.Must be a good team player.Training is provided, previous experience is an assetMust have own transportation, no public transportation is available.Benefit Package available after 6 months.Salary: $18/hourTo Apply: Email your resume to sjaimie@quicktrucklube.comJob Types: Full-time, PermanentSalary: From $18.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceOn-site parkingVision careSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayWeekends as neededAbility to commute/relocate:Ayr, ON: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Ayr, ON\"\n        },\n        {\n            \"id\": \"8252451D7E29DDE050408C24D45FB477\",\n            \"cityName\": \"1290 St Paul St, Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c640ee2b77fa5d8d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Impact Radio Accessories\",\n            \"rowSalary\": \"$42,000–$46,000 a year\",\n            \"date\": 1694463624455,\n            \"dateOfPosted\": 1693615575558,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8917255,\n                    \"lon\": -119.4918887\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"St Paul St, Kelowna, BC V1Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Impact Radio Accessories Customer Service RepresentativeWho We Are:Impact Radio Accessories is an industry leading manufacturer and worldwide distributor of high-quality audio accessories and chargers for professional, portable communications devices.Through our extensive dealer network, Impact products are used by numerous vertical markets; from major retail chains and global hotel and hospitality brands, industrial and manufacturing facilities, public safety and military agencies and everything in between. Disney, Caesar’s Entertainment, MGM, NYPD, U.S. Secret Service, NASA, The Superbowl, MTV Awards, The Grammys, Wal-Mart, The GAP, Lowe’s, Amazon are just a few (of many) Impact product users we are proud to partner with.We are not only in the business of communication device accessories, but we are also in the business of growth. With the right products, team, and drive to thrive, Impact Radio Accessories has the potential to make an even greater footprint in the professional, portable communications device industry.We have an exciting opportunity for a Customer Service Representative to join our team in Kelowna, BC.. If you bring a positive energy with ambition to learn & grow, then Impact Radio Accessories would love to hear from you.The Role:As our Customer Service Representative, or CSR, you will ensure excellent service standards, respond efficiently to customer inquiries, and maintain high customer satisfaction across our North American Dealer and End User market.Duties & Responsibilities:- Manage a high level of inbound calls and online inquiries from current and potential customers.- Process customer orders with accuracy and efficiency in accordance with standard procedures including taking credit card payments and packing orders.- Updating, referencing, and maintaining customer accounts in our CRM system.- Qualify and direct inbound leads to the appropriate Territory Sales Manager.- Proactively use phone and email to reach out to customers and verify account information.- Respond to customer inquiries regarding order status and product recommendations in a timely manner.- Build sustainable relationships of trust through open and interactive communication.- Deliver outstanding customer service to ensure an exceptional experience for all customers.- Contribute to team effort by accomplishing related results as needed.Experience- 1+ year of sales or customer service experience (B2B considered an asset.)- Experience in handling customer inquiries via phone, email, chat, or face-to-face.- Experience with CRM software.Skills- Excellent verbal and written communication skills- Ability to actively listen and understand customer needs and concerns.- Basic computer proficiency, including experience with Microsoft Office Suite (Word, Excel, Outlook) or equivalent software.- Demonstrated ability to address customer issues, troubleshoot basic product or service concerns, and provide effective solutions.- Familiarity with order processing, billing, or related administrative tasks is a plus.Must be legally entitled to work in Canada without restriction.Company Perks & Benefits:- Competitive salary- Flexible PHSP (benefit) health spending account.- Employee & Family Assistance Program.- 3 weeks paid time off- Casual, modern office environment with large patio, BBQ located downtown Kelowna.- Company paid snacks, beverages, lunches, and fun events.- Free-to-use gym and fitness center with rooftop patio and lounge.- Opportunities for advancement and continuous professional growth.If you are a high-performing, goal-oriented individual seeking the opportunity to be an integral part of the next phase of our growth, we look forward to meeting you.How should you apply?Include your resume, cover letter and a personal note telling us why you’d like to work hereOnly qualified, Okanagan based, candidates will be notified they are moving onto next steps in the processJob Type: Full-timeSalary: $42,000.00-$46,000.00 per yearBenefits:Casual dressCompany eventsDental careEmployee assistance programExtended health careOn-site gymOn-site parkingPaid time offVision careWellness programSchedule:8 hour shiftDay shiftMonday to FridayAbility to commute/relocate:Kelowna, BC: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"St Paul St, Kelowna, BC\"\n        },\n        {\n            \"id\": \"49003B27E95B5561AF56E27B7E495CB9\",\n            \"cityName\": \"384 Academy Rd, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=49418d3a585d2db5\",\n            \"jobName\": \"Customer Service Clerk/Cashier\",\n            \"companyName\": \"G.J.Andrews Food And Wine Shoppe\",\n            \"rowSalary\": \"From $32,000 a year\",\n            \"date\": 1694463591409,\n            \"dateOfPosted\": 1693615589161,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8738702,\n                    \"lon\": -97.1850877\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Academy Rd, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 32000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    32000.0\n                ],\n                \"range\": {\n                    \"gte\": 32000.0,\n                    \"gt\": null,\n                    \"lte\": 32000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer service clerk position open at a gourmet food and wine store in River Heights.If you have a great eye for detail, enjoy working with the public and a good team environment this is the job for you!Your job as a customer service clerk will include ringing up sales on the register, bagging items, stocking shelves, taking phone orders and maintaining our high level of customer service.This position brings a fantastic opportunity to learn more about our business; we reward hard work and initiave with increased responsibility and earnings.Job Type: Full-timeSalary: From $32,000.00 per yearBenefits:Dental careStore discountDay range:Every WeekendMonday to FridayWeekends as neededFlexible Language Requirement:French not requiredShift:8 hour shiftWork setting:Grocery storeCOVID-19 considerations:We follow all public health rules and operate a very clean establishment. When dealing with food cleanliness and sanitizing is always inportant.Experience:sales: 1 year (preferred)customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Academy Rd, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"E76BF5F76F7532F640DD6007CB629969\",\n            \"cityName\": \"Fredericton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1e6c81600f52a47b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Xplore Inc.\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694463512821,\n            \"dateOfPosted\": 1693615710775,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.9635895,\n                    \"lon\": -66.6431151\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fredericton\",\n                \"formattedAddress\": \"Fredericton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"York County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fredericton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Overview: * Do you have a passion for providing excellent customer service? Want to work for a company who believes in putting the customer at the heart of everything they do? Then join Xplore’s team of Customer Service Representatives in our Fredericton, NB office. Xplore offers a high energy, fast-paced work environment where employee opinions and feedback are valued. Xplore offers a high energy, fast-paced work environment where employee opinions and feedback are valued. We offer:$15.00/hr$3.00/hour Bilingual Premium (French/English)Bonus incentive opportunities up to $2,800 annuallyExcellent company benefits including health and dentalMatched participation in group RRSPStrong focus on internal promotion, career path development and trainingOpportunities to work from home after six months tenureKey responsibilities include:Providing an excellent customer experience by responding to customer calls in a courteous, knowledgeable and professional mannerListening to customers and probing as appropriate to discover needs while fulfilling customer expectations in a way that also complies with policies, practices and proceduresProviding general account, billing and technical support to our customersProcessing service ordersMaintaining accuracy of customer databasesAssisting with reporting and administrationMaintaining service levels and achieving business and performance goals and objectivesThe ideal candidate will possess:Completion of post-secondary education in a related field (or equivalent level of experience)Knowledge of approaches, tools and techniques for anticipating, recognizing and resolving technical issuesPrevious customer service experience is an assetStrong computer and troubleshooting skills with the ability to analyze and solve problemsSolid working knowledge of the Microsoft Operating Systems; experience with MAC and/or Linux is an assetStrong communication skills, verbal and written, with the ability to communicate effectively with customers in technical and non-technical termsSelf-motivated and driven with good time management and organizational skillsAbility to follow guidelines and strong attention to detailAbility to prioritize and multi-task while adapting in a fast-paced work environmentBilingualism is an asset (French/English) #XploreJobs Condition of employment: As a condition of employment and in order to comply with industry related data security standards, this position is subject to the successful completion of a Criminal Background Check. Details will be supplied to applicants as they move through the selection process. Xplore is committed to creating an accessible environment and will accommodate disabilities during the selection process. Please let your recruiter know during the selection process of any accommodation needs. Company Overview: Xplore Inc. is Canada’s fibre, 5G and satellite broadband company for rural living. Xplore is committed to the relentless pursuit of an improved broadband experience for all Canadians. Xplore is building a world-class fibre optic and 5G wireless network to enable innovative broadband services for better every day rural living, for today and future generations.\",\n            \"location\": \"Fredericton, NB\"\n        },\n        {\n            \"id\": \"1958867EC116E9B12A32B84D12C2542C\",\n            \"cityName\": \"75 Napa Valley Ave, Woodbridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=56f33713f73baaa0\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Keto Pi Factory\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694463474762,\n            \"dateOfPosted\": 1693615577569,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.823457,\n                    \"lon\": -79.618179\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Napa Valley Ave, Vaughan, ON L4H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities include but are not limited to the following: Greeting all customers Product facing Packing orders Ability to travel to different location if necessary Organize opening and closing duties as assigned Act with integrity, honesty, and knowledge of our products per customer’s dietaryneeds Anticipate customer and store needs by constantly evaluating environment andcustomers for cues Deliver exceptional customer service, making genuine connections with customers Following all cash register opening and closing policies and ensuring proper cash management practices are followedThe successful candidate must: Maintain regular and consistent attendance and punctuality Complete all daily tasks, as outlined by the location manager Follow health, safety, and sanitation guidelines for all products Always maintain a clean working and store environmentPreferred Experience: Customer service experience is an asset Knowledge of the Ketogenic diet is an assetAssets: Ability to learn quickly G license Effective oral communication skills Retail experience Strong interpersonal skills Ability to work individually or as part of a teamJob Types: Part-time, PermanentPart-time hours: 20 per weekSalary: From $15.50 per hourSchedule:8 hour shiftDay shiftWeekend availabilityExperience:Customer service: 1 year (preferred)Licence/Certification:Class G Licence (preferred)Work Location: In person\",\n            \"location\": \"Napa Valley Ave, Woodbridge, ON\"\n        },\n        {\n            \"id\": \"0C66AFDF8260ABE36A871BB72CD7C3B0\",\n            \"cityName\": \"Baker Lake, NU\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6404456c4ad12fe7\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Calm Air\",\n            \"rowSalary\": \"$18.14 an hour\",\n            \"date\": 1694462431195,\n            \"dateOfPosted\": 1693610462143,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 64.317604,\n                    \"lon\": -96.02200099999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Baker Lake\",\n                \"formattedAddress\": \"Baker Lake, NU, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nunavut\",\n                \"state_code\": \"NU\",\n                \"postalTown\": null,\n                \"county\": \"Keewatin Region\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Baker Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Title: Customer Service Agent Location: Baker Lake, NU Status: Full Time Start Date: Immediately  Who We Are  Calm Air International is a regional airline serving the Northern part of Central Canada. From its main bases in Winnipeg, Thompson and Churchill, Manitoba, and Rankin Inlet, Nunavut, Calm Air operates frequent, daily scheduled passenger, charters, and cargo flights throughout Manitoba and the Kivalliq Region of Nunavut.  At Calm Air International LP, we value our customers, passengers, and the communities we serve. We are only as good as the employees who work with us. We are looking for highly motivated, well-organized individuals, who work well in a fast-paced environment, to join our team! Want to learn more? Visit www.calmair.com.  About the Opportunity  Are you seeking an exciting opportunity to work with a group of high performing professionals? Do you like to work independently as well as part of a skilled team? If so, we would like to hear from you! We are looking for a highly motivated, well-organized individual, who thrives in a fast-paced environment, to join the Calm Air family.  The sky is the limit!  What You'll Get To Do Calm Air Customer Service Agents provide valuable front-line passenger support and assistance to our customers at the airports and before and after they board one of our flights. They are responsible for ensuring our passenger experience is positive and meets the standards of service that we set out as an organization in addition to complying with applicable regulations. Providing curbside to curbside service to the travelling public as per Canadian Transportation Agency regulationsMaking and changing flight reservations in the computerized reservation systemChecking in passengers and their baggageCalculate and charge any additional fees if applicableIssuing boarding passes, itineraries, and seating assignments as necessaryAssist pre-boarding passengers to ensure safe movement to and from the aircraftProvide information on fares, flight schedules and routes in person or over the telephoneFacilitate the safe movement of passengers between aircraft and terminal buildingsOther duties as required Hours Of Work Shift work is required and may include mornings/afternoons, evenings, and weekends Skills & Experience We Value High school diploma or general education degree (GED) an assetAbility to learn a computerized reservation systemBasic Computer skills (word, excel, office)Knowledge of an airline’s operations an assetMust have exceptional customer service skillsMust be able to work independently or in a team settingAbility to work efficiently and accurately under pressureMust have own transportation to and from workMust be able to obtain and maintain an Enhanced Security Clearance qualificationMust be able to attend and complete initial Ground School TrainingPreference given to Inuit Land Claims BeneficiariesInuktitut language considered an asset The Benefits of Joining Our Team  We invest time and resources into making sure Calm Air International is as good as the people we hire. Here are some of the reasons we attract the best people: Registered Pension Plan starting at 5% matched after one year of employmentComprehensive Group Benefit Plan available upon hire with the exception of dental coverage which has a three month wait periodNorthern Living AllowanceEntitled to three weeks vacation after one yearAirline travel and freight privilegesCorporate and family eventsAnd more! If This Sounds Like the Job for You, Contact Us  At Calm Air, we value diversity and provide equal opportunities and accessibility for all qualified candidates. We encourage all members of a designated group or those requiring accessibility support to self-declare when applying.  Please submit a resume in confidence by September 15, 2023, through Dayforce.  We thank all those who apply, but only those selected for an interview will be contacted.\",\n            \"location\": \"Baker Lake, NU\"\n        },\n        {\n            \"id\": \"876B25CF637DBECAE63BF68EC6C42D35\",\n            \"cityName\": \"272 Industrial Ave E, Penticton, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=05a8f8188c69be5b\",\n            \"jobName\": \"Customer Service And Office Administrator\",\n            \"companyName\": \"Craftsman Collision\",\n            \"rowSalary\": \"$42,000–$55,000 a year\",\n            \"date\": 1694462233451,\n            \"dateOfPosted\": 1693615577508,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.4804046,\n                    \"lon\": -119.5782001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Penticton\",\n                \"formattedAddress\": \"Industrial Ave E, Penticton, BC V2A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Okanagan-Similkameen\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Penticton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We're currently seeking a temporary Customer Service and Office Administrator at our Penticton location. We are looking for someone to start as soon as possible and continue on a fixed term basis until the end of May, 2024. We offer competitive wages ranging from $42,000 to $55,000 annually, 3 weeks of paid vacation, and extended health and dental. The Customer Service and Office Administrator will provide exceptional customer service and support the Shop with operations initiatives and administrative duties. Craftsman Collision is the largest independently owned and operated auto body repair chain in Canada – but we’re also a family that cares about the people we work with. Are you ready to reach your full potential and build a fulfilling career- while having fun along the way? Then consider joining our team of more than 500 ambitious people who share our commitment to excellence. Customer ServiceInteracts with customers in a caring, friendly and professional manner and assists in clearly identifying the customers’ needs to relay to the rest of the team. Gathers all required information to pass along to estimator;Takes ownership of a customers’ concerns and issues until they are satisfied or until they are able to pass them on to the appropriate person;Answers phones, handles telephone enquiries, books appointments, makes appointment reminder calls and notifies customers of repair completion as directed;Greets customers as they walk in the door and helps ensure their wait time is agreeable;Signs customers in and out and collects all necessary payments;Helps customers to understand our processes and procedures by explaining in a clear, simple and respectful manner;Deals with all customer interactions promptly including monitoring of Production Dashboard in the Craftsman Management System (CMS) for alerts/correspondence as well as voicemail and email;Office AdministrationDownloads and prints assignments from insurance companies using Audatex and Mitchell and prepares new files for estimators;Manages the shop’s email inbox and forwards, distributes or files emails accordingly;Prepares monthly promotional and printing inventories and organizes replenishing as necessary;Orders all office supplies and printer toner cartridges;Input documents and new hourly employees into Dayforce.Arranges courier services when necessary;Supports in-shop training of new staff;Daily Bookkeeping DutiesUpdates CMS for arrived and delivered vehicles as changes occur;Closes POS machine, prints and posts the Deposit Journal. Prepares a bank deposit slip daily for any cash/cheques;Finalizes all work orders from previous day and bill insurance companies accordingly;Invoices parts/sublet/rental invoices relating to work orders via Purchase Orders and reviews any discrepancies;Posts any A/R cheques into Traverse A/R and reconciles any over/short payments;Enters invoices for non-trade payables (overhead) into Traverse A/P;Banking as required (at least weekly);Posts PO Journals and Non-Trade Transaction Journals as required;Monthly Bookkeeping DutiesPrepares all payable cheque runs (mid & month end). Prepares monthly log for Head Office for any aging A/P amounts;Reconciles Flat-Rate and Straight-Time hours with employees (with the help of Shop Manager) and posts the Flat-Rate Journal in CMS on a semi-monthly basis. Prepares manual cheques and ROE’s for any terminated hourly employees or for those on leave;A/R Collections on unpaid balances including sending statements to customers and preparation of monthly log for Head Office;Follows month-end procedures on the first day of every month and reviews monthly reports with Shop Manager;Reviews monthly ARA and MSP benefits statements for accuracy;Reconciles GL accounts 4920 (Other Income/Over-Shorts), 1130 (Employee A/R) and 1999 (Suspense);Performs year-end requirements as directed by Head Office.Other related duties as assigned.RequirementsMinimum of 3 years related experience in a fast-paced, team-oriented environmentPost-secondary courses in a related field an assetStrong interpersonal skills with customer service-oriented attitudeExperience with accounts receivable, accounts payable, and payroll preferredDemonstrated ability to multi-task and prioritize, effectively managing time with minimal supervisionDetail oriented and able to complete tasks with a high degree of accuracyStrong verbal, written and listening skillsProficient in Outlook, Word and Excel with the ability and willingness to learn new applicationsDemonstrated desire and aptitude for learning and developmentPrevious experience with payroll or HRIS systems preferred; Dayforce experience an assetA valid driver's license preferredMust be legally entitled to work in Canada with no restrictions Benefits When you’re part of the Craftsman Collision team, you get valuable perks like extended health, professional development, certified training and more. Your cover letter and resume should clearly outline how your qualifications & experience fit this position. We appreciate the time that all applicants have taken when applying for this position, however, only the candidates that are chosen for an interview will be notified by phone or email. No phone calls please.\",\n            \"location\": \"Industrial Ave E, Penticton, BC\"\n        },\n        {\n            \"id\": \"D5E087C84C8A0D6A1D1D538A9DBE63EC\",\n            \"cityName\": \"485 Rue McGill, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a0272c25fffcadba\",\n            \"jobName\": \"Barrista And Customer Service\",\n            \"companyName\": \"Presse Cafe\",\n            \"rowSalary\": \"$16–$18 an hour\",\n            \"date\": 1694462047274,\n            \"dateOfPosted\": 1692746430228,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5000023,\n                    \"lon\": -73.5566425\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue McGill, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"responsible... . customer service oriented . friendly. detailed would be an asset, expeience in food handling and food preparation needed for some of the postsJob Types: Full-time, Part-time, PermanentPart-time hours: 25-35 per weekSalary: $16.00-$18.00 per hourSchedule:Monday to FridayWork Location: In personExpected start date: 2023-08-23\",\n            \"location\": \"Rue McGill, Montréal, QC\"\n        },\n        {\n            \"id\": \"E80B46D2EE6A113AC1D2488A083FA7F4\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d797cc1d4ba4d807\",\n            \"jobName\": \"Agent Bilingue Du Service Clientèle / Bilingual Customer Service Agent\",\n            \"companyName\": \"Voxdata\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694461985147,\n            \"dateOfPosted\": 1692763714001,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*English version to follow* *NB : Nous n'acceptons que les candidatures provenant de la grande région de Montréal car la formation se fait à partir du bureau.* *Nous exigeons que nos candidats parlent anglais car certains de nos clients sont à l'extérieur du Québec et ne parlent que l'anglais.* Prêt à vous joindre à l'un des plus importants centres d'appels de Montréal ! VOXDATA vous attend ! Nous cherchons à agrandir notre équipe avec de nouveaux membres qui sont prêts à devenir nos prochains experts en offrant la meilleure expérience client possible ! Pour avoir une meilleure idée de notre entreprise et de nos valeurs, vous pouvez consulter notre site web ici ! https://www.voxdata.com/ Voici quelques raisons pour lesquelles il fait bon travailler chez VOXDATA :Une variété de types de postes, allant du service à la clientèle aux ventes, en passant par le soutien technique, avec des rôles uniquement en anglais ou bilingues et des options d'horaire variées - nous voulons mettre en valeur vos compétences uniques dans un poste qui vous convient le mieux !Un bureau facilement accessible et convoité au cœur du centre-ville de Montréal, et la possibilité de travailler à domicile pour nos postes hybrides !Un environnement de travail diversifié, positif et encourageant, notre objectif étant d'aider nos agents à briller et à réussir au maximum de leur potentiel !Les avantages et les bénéfices pour les employés tels que les plans de primes inclus dans nos postes, les primes supplémentaires pour les personnes les plus performantes (comme des cartes cadeaux et de l'argent supplémentaire !), les couvertures d'assurance, et les primes de recommandation des employés qui peuvent aller jusqu'à 1000 $ par personne !La possibilité d'évoluer et de développer vos compétences par le biais de réunions d'équipe, de séances de coaching individuel et d'évaluations des performances, toutes conçues pour vous aider à renforcer vos capacités et à devenir un maître dans votre travail !Des opportunités de développement interne ouvertes à tous - avec des rôles tels que chef d'équipe, coach, formateur, mentor et même des postes administratifs, nous sommes fiers de toujours nous tourner vers le personnel que nous avons déjà avec nous pour le promouvoir lorsque l'occasion se présente !Pour ce poste, vous travaillerez avec une société d'aviation bien établie. Vos tâches spécifiques seront les suivantes :Fournir un service à la clientèle de premier ordre à chaque interaction avec les clients.Répondre aux appels entrants des clients pour les aider à effectuer des réservations une fois qu'elles ont été achetées.Résoudre les problèmes liés à l'accès aux billets et à la navigation sur le site web.Répondre aux questions concernant les informations sur les billets ou aux questions générales sur les réservations.Ready to join one of the leading call centers in Montreal?! VOXDATA is waiting for you! We’re looking to expand our team with new members who are ready to become our next experts in delivering the best customer experience possible! To get a better idea of our company and values, you can check out our website here! https://www.voxdata.com/ Here’s a few reasons why it’s great to work at VOXDATA:A variety of position types, ranging from customer service, sales, and technical support, with English-only or bilingual roles and ranging scheduling options – we want to highlight your unique skillset in a position that is best suited to you!An easily accessible and coveted office location in the heart of Downtown Montreal, and the option to work from home with our hybrid roles!A diverse, supportive, and encouraging work environment, our goal is to help our agents shine and succeed to their fullest potential!Employee benefits and perks such as bonus plans included into our positions, additional bonuses for top performers (like gift cards and extra money!), insurance coverages, and employee referral bonuses that can go up to $1000 per person!The chance to grow and develop your skills through team meetings, individual coaching sessions, and performance reviews; all designed to help you further strengthen your abilities and become a master at your job!Internal growth opportunities that are open to everyone – with roles like team leader, coach, trainer, mentor, and even administrative positions; we pride ourselves on always looking to the staff we already have with us to promote when the occasion arises!For this role, you will be working with an established aviation company. Your specific tasks will include:Providing top-tier customer service to clients in every interaction.Answering inbound calls from customers to assist with bookings/reservations after they have been purchased.Resolving issues relating to ticket access and website navigation.Answering questions regarding ticket information, or general questions about bookings/reservations.Requirements Qu'est-ce qui fait de quelqu'un un excellent candidat ? Nous recherchons des personnes qui :Peut travailler 40 heures par semaine pendant les heures d'ouverture de la campagne : Du lundi au dimanche, de 7 heures à 7 heures (ouvert 24 heures sur 24) ; nous préférons les candidats disponibles le soir, la nuit et le week-end. Sont bilingues en français et en anglais.Ont déjà travaillé dans le service à la clientèle, les ventes ou les centres d'appels, ou ont une expérience traduisible dans d'autres secteurs.Vous pouvez apprendre à utiliser et à faire fonctionner plusieurs programmes informatiques avec facilité.Être disponible pour travailler le soir et le week-end si la campagne est opérationnelle pendant ces périodes.Avoir obtenu un diplôme de fin d'études secondaires ou un diplôme équivalent.Se considèrent comme des personnes capables de résoudre des problèmes, de s'adapter à des situations changeantes et sont motivées pour être les meilleures des meilleures !What do we think makes someone a great candidate?! We’re looking for people who:Can work 40 hours/week anytime through the campaign operation hours: Monday to Sunday, from 7 AM to 7 AM (open 24 hours/day); we prefer candidates with evening, overnight, and weekend availability. Are bilingual in French and English.Have worked in customer service, sales, or call centers before; or have translatable experience from other industries.Can learn how to use and operate multiple computer programs with ease.Have graduated high school or have an equivalent diploma.Consider themselves to be problem-solvers, adaptable to changing situations and are motivated to be the best of the best!Benefits Soumettez votre candidature dès maintenant pour lancer le processus d'embauche et voyez par vous-même pourquoi il est formidable d'être un agent VOXDATA !Ce poste est assorti d'un salaire de base de 17,00 $/heure. Submit an application now to get the hiring process started and see for yourself why its great to be a VOXDATA agent! *This position has a base salary of $17.00/hour.*\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"E16BD5DF6A67F474B9B18872AD6AC65A\",\n            \"cityName\": \"3394 Norwell Dr, Nanaimo, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dc1c3354ca7c0c75\",\n            \"jobName\": \"Customer Service/Pizza Maker\",\n            \"companyName\": \"Domino's Pizza | Ptza Nation Bc\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694461956964,\n            \"dateOfPosted\": 1693609583783,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2082176,\n                    \"lon\": -124.0084757\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Nanaimo\",\n                \"formattedAddress\": \"Norwell Dr, Nanaimo, BC V9T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Nanaimo\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Domino's Pizza is hiring immediately for Customer Service Representatives (Pizza Cook/Team Member) to join their team! Job type:Part time, Permanent We are searching for qualified customer service reps with personality and people skills. We're growing so fast it's hard to keep up, and that means Domino's has lots of ways for you to grow (if that's what you want), perhaps to management, perhaps beyond. Whether it's your hobby, main-gig, or supplemental job, drop us a line. We're bound to have just the thing for you. We take pride in our team members and our team members take pride in Domino's Pizza! Being the best pizza delivery company in the world requires exceptional team members working together. At Domino's Pizza, our people come first! As part of our crew, your responsibilities will include: Stocking ingredients from delivery area to storage, work area, walk-in cooler. Preparing products Receiving and processing telephone orders. Cleaning equipment and facility approximately daily. Benefits of working at Domino's Pizza: Flexible schedules Competitive wages for all Team Members Store discounts Fun working environment Additional pay on top of wage with tip sharing program Domino's is an equal opportunity employer. REQUIREMENTS At Domino's Pizza, Our Most Important Ingredient is Our People! We offer employment opportunities within our franchise stores. Take the first step in joining our team, and you'll find opportunities you won't find anywhere else in the industry!\",\n            \"location\": \"Norwell Dr, Nanaimo, BC\"\n        },\n        {\n            \"id\": \"2C656374C722189DCF98630597830C3A\",\n            \"cityName\": \"4874 Concession Rd 7, Alliston, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0144daf9f5915b72\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Peavey Industries Lp\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694461922115,\n            \"dateOfPosted\": 1667812884741,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.0983589,\n                    \"lon\": -79.8870125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Barrie\",\n                \"formattedAddress\": \"Concession Rd 7, Adjala-Tosorontio, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Barrie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Knowledge, Skills, and Abilities Required· Maintaining a customer first, positive attitude· High attention to detail· Ability to count, total, and work with numbers· Ability to learn and operate till technology· Staying calm and attentive in a busy environment· Ability to approach customers, listen attentively, and use suggestive selling.· Ability to multi-taskJob Qualifications· On the job training or previous experienceWorking Conditions· Standing for extended periods, walking long distances to move/handle merchandise and provide customer service· Lifting up to 40lbs. and maintaining fitness level to perform all functions as set forth above· Operating keyboard, scanning, and touch screen till technology in a repetitive mannerSupervisory Responsibilities· noneJob Types: Full-time, PermanentSalary: From $17.00 per hourBenefits:Dental careOn-site parkingPaid time offStore discountVision careShift:8 hour shiftExperience:sales: 1 year (preferred)Customer service: 1 year (preferred)\",\n            \"location\": \"Concession Rd, Alliston, ON\"\n        },\n        {\n            \"id\": \"C01646A1CFAC11301900A9405D1BB3B1\",\n            \"cityName\": \"86 Main St, Dundas, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=74cf25415648edf2\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Dominos\",\n            \"rowSalary\": \"$15.50–$16.00 an hour\",\n            \"date\": 1694460944993,\n            \"dateOfPosted\": 1693608065172,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.264197,\n                    \"lon\": -79.95260630000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Main St, Hamilton, ON L9H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service Representatives role is crucial within the Domino’s system. We pride ourselves on offering fast and friendly service with a smile, and our CSRs lead the way in doing so. Within our fast paced environment, the role is primarily to offer top quality customer service by phone and in person at the counter. CSRs are expected to know Domino’s products and the current offers in order to provide customers with the correct order and best value based on their needs.A uniform is provided (shirt, hat, apron). Customer Service Representatives are expected to be presentable by following Domino’s personal image and grooming standards.Functions:Customer Service Representatives will take orders by phone-in customers, as well as walk-in customers. They are expected to manage the cash drawer when accepting payment for orders and returning change.In secondary roles, Customer Service Representatives will help make quality products, label boxes, cut pizzas and prepare orders to be served to in-store customers. CSRs also help in maintaining the store’s professional image by participating in the cleaning tasks assigned to all team members.Qualifications:All Customer Service Representatives must have the following:Friendly and well spokenGood math skills to handle cash handling for in-store customer paymentsSpeak English fluently in order to serve customersMust be available evenings & weekends, additional availability beyond evenings & weekends will be considered an assetJob Types: Part-time, Full-timePart-time hours: 15-30 per weekSalary: $15.50-$16.00 per hourBenefits:On-site parkingStore discountSchedule:4 hour shift8 hour shiftDay shiftMonday to FridayNight shiftWeekends as neededAbility to commute/relocate:Dundas, ON L9H 2R1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (required)Fast food: 1 year (preferred)Shift availability:Day Shift (required)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Main St, Dundas, ON\"\n        },\n        {\n            \"id\": \"B0AB0467649F8ABC44B810FF246DC084\",\n            \"cityName\": \"1811 Bank St, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0fd2cfda67ad29b0\",\n            \"jobName\": \"Customer Service - Parts Advisor (Automotive Retail)\",\n            \"companyName\": \"Alpha Auto Group - Bank Street Toyota\",\n            \"rowSalary\": \"From $19 an hour\",\n            \"date\": 1694460791426,\n            \"dateOfPosted\": 1687946739264,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4209477,\n                    \"lon\": -75.70115419999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Bank St, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Alpha Auto Group (\\\"AAG\\\") is a growing and nationally focused auto dealer group based in Toronto, with various locations across Canada and the USA. AAG’s mission is deeply rooted in delivering best in class service for our valued customers by putting our customers first through world class service.In order to meet this mission, it’s important that the successful candidate bring a high level of service, skill, willingness to grow and collaborate and drive, set and meet goals, both personally and collaboratively.With the ever increasing demand for support and service in the auto industry, our Bank Street Toyota location is looking for a Parts Advisors to join the team.ResponsibilitiesWorking directly with customers, suppliers and technicians to ensure that there is ongoing communication and effective operations within the parts department.Always working towards improving operational efficiencies.Order parts for customers' repair needs.Maintain and nurture ongoing rapport and relationships with business partners.Oversee and maintain parts inventory.QualificationsPrevious parts advisor experience. (min 1 yr)Deep passion and interest in human centered customer experiences.High attention to detail and able to work with minimal supervision.Comfort working with all levels of staff and customers.Strong verbal and written skills and proficiency in English.Proficient in Microsoft Office Applications. (Excel, Word, Outlook)Strong interpersonal skills.Job Types: Permanent, Full-timeSalary: From $19.00 per hourBenefits:Extended health careSchedule:Day shiftMonday to FridayWeekends as neededExperience:Customer Service: 3 years (preferred)Automotive Parts: 1 year (preferred)Language:English (required)Licence/Certification:Drivers License (required)Work Location: In person\",\n            \"location\": \"Bank Street, Ottawa, ON\"\n        },\n        {\n            \"id\": \"47571AA2AC5CF0874312EA3C8E2B40E1\",\n            \"cityName\": \"1000 Rue Legendre Ouest, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1153b6700ccdd55b\",\n            \"jobName\": \"Caissier, Caissière Service à La Clientéle De Nuit/ Cashier Customer Service Night Shift\",\n            \"companyName\": \"Tim Hortons | Damsar, Inc.\",\n            \"rowSalary\": \"$17.25 an hour\",\n            \"date\": 1694460418282,\n            \"dateOfPosted\": 1692747068559,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.53660929999999,\n                    \"lon\": -73.6519732\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Legendre O, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Primes de nuit Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement As a Team Member at Tim Hortons, your top priority is guest satisfaction. Whether you are the very first person our guests encounter, or produce the best loved bakery items that our guests come to enjoy, you will have the opportunity to deliver and create exceptional guest experiences. Your energy and passion for guest service are what make you a top team member in this fast-paced environment while your ability to multi-task and communicate with your fellow team members will contribute to your success. Why work for us? Night Shift Premium $ Paid Training Flexible schedule Scholarship Program Opportunities Amazing growth opportunities! REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder une esprit d’équipe et avez un empressement au travail / Have a team spirit and being able to work in a fast paced environement Faire parti de l'équipe / Be part of the team Être une personne ponctuelle et prête à travailler / Able to be on time and ready to work Être capable de lever 25 livres / Must be able to lift 25 lbs Travailler d nuit / Work night shift Job applicants responding to this posting may be applying to a Tim Hortons® restaurant independently owned and operated by a franchisee and, if so, any hiring decisions will be made by the franchisee. En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Rue Legendre Ouest, Montréal, QC\"\n        },\n        {\n            \"id\": \"D139D0A1FD47C22E3BE43F2AF012BD68\",\n            \"cityName\": \"510 W Georgia St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d8f7ed73722cdd24\",\n            \"jobName\": \"Customer Service Associate - 28476\",\n            \"companyName\": \"Exela Technologies\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694458424735,\n            \"dateOfPosted\": 1693608067325,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2857341,\n                    \"lon\": -123.1231553\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Georgia St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate –Working in a Mailroom environment, this position is responsible for delivering superior customer service in a prompt, respectful and courteous manner.Essential Job Functions-Receive all incoming items, and log accordingly through internal systems.-Communication clearly and effectively both verbally and written.-Sort, deliver, and process mail and packages throughout the building.-Meeting job duty timelines in SLA-Handling confidential mail and packages.-Work quickly and accurately.-Shipping various couriers (Local, National and International)- Handling time-sensitive material and shipping as required at an Executive level.- Assisting with other various requests from the Executive team.- Escalates more complex issues to the appropriate level- Other job-related responsibilities as needed and required- Able to lift up to 55lbs unassisted.Required skills and qualifications:- High School Diploma-Previous customer service experience- Excellent verbal, written and analytical skills- Good time management skills to ensure assigned responsibilities are completed in an efficient manner- Strong communication skills; is able to effectively communicate to all levels of management and customers both written and verbally.- Proficiency with commonly used Microsoft software programs- Professional phone etiquette- Ability to multi-task and lift up to 55lbs unassisted.- Ability to maintain the highest level of confidentiality at all times- Strong organizational skills- Ability to work both independently and a team environment- Ability to interact with diverse people“The pay range for this position starts at $17; however, base pay offered may vary depending on job-related knowledge, skills, and experience. Bonus opportunities may be provided as part of the compensation package, in addition to a full range of medical, financial, and/or other benefits, dependent on the position offered.”Job Types: Full-time, PermanentPay: $17.00 per hourDay range:Monday to FridayShift:8 hour shiftExperience:Customer service: 1 year (preferred)Mailroom: 1 year (preferred)\",\n            \"location\": \"W Georgia St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"B8AE2D72E90FAB08852410F529DE35D4\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9d1aec11d35c9c89\",\n            \"jobName\": \"Call Center Representative\",\n            \"companyName\": \"Cosmetic Physician Partners\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694457180308,\n            \"dateOfPosted\": 1692747261022,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cosmetic Physician Partners is building a premier network of physician-led aesthetic clinics throughout the United States. We are seeking a Call Center Representative/Appointment Setter to make outbound calls to current and prospective clients assisting in rebooking and scheduling appointments for our clinics across the country.Schedule: Full-time, Hybrid Responsibilities Manage outbound calls to rebook current patients for new appointments Call leads who signed up online and get them to book Identify customers’ needs, clarify information, and provide solutions and/or alternatives Seize opportunities to upsell products when they arise Build sustainable relationships and engage customers by taking the extra mile Keep records of all conversations in CRM Frequently attend educational seminars to improve knowledge and performance level Meet personal/team qualitative and quantitative targets Requirements and skills Previous experience in a customer support role Strong phone and verbal communication skills along with active listening Familiarity with CRM systems and practices Customer focus and adaptability to different personality types Ability to multi-task, set priorities and manage time effectively High school degree Cosmetic Physician Partners, LLC is an equal opportunity employer. All applicants will be considered for employment without attention to race, color, religion, sex, sexual orientation, gender identity, national origin, veteran or disability status.tFb7SRKAEk\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"149011E779DBCFE405BD5007DDC0EFF0\",\n            \"cityName\": \"332 E Espl, North Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=629dfc575e02a227\",\n            \"jobName\": \"Customer Service Coordinator\",\n            \"companyName\": \"Vancouver Christmas Market Inc.\",\n            \"rowSalary\": \"From $3,800 a month\",\n            \"date\": 1694456489365,\n            \"dateOfPosted\": 1693605598533,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.30908119999999,\n                    \"lon\": -123.0748408\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"North Vancouver\",\n                \"formattedAddress\": \"Esplanade E, North Vancouver, BC V7L, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"North Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"month\",\n                \"salaryFrom\": 3800.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    3800.0\n                ],\n                \"range\": {\n                    \"gte\": 3800.0,\n                    \"gt\": null,\n                    \"lte\": 3800.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"If you have lived in Vancouver for a while, chances are high you've been to the Vancouver Christmas Market. Now in our 13th season, our authentic outdoor German Christmas Market features unique holiday shopping, seasonal entertainment, and delicious traditional food and drinks. Located in the downtown core of Vancouver, at Jack Poole Plaza, the Christmas Market will be open to the public daily from November 16 to December 24.Full-Time Employment Opportunity – Customer Service CoordinatorVancouver Christmas Market Inc. is seeking two driven, and enthusiastic individuals, one full-time and one part-time. The Customer Service Coordinators report to the Marketing Coordinator with the objective of creating a positive customer experience from the initial point of contact at the 2023 Vancouver Christmas Market.Start Date: October 2, 2023Location: Mix of home office and set number of days in office in Downtown Vancouver. Full-time or Part-time in office & on-site (November – December).Hours: Contract Full Time or Part Time from October 2, 2023 – January 12, 2024 (15 weeks). Variable work schedule including evenings and weekends from October - December 29.Reporting To: Marketing CoordinatorRoles and ResponsibilitiesCUSTOMER RESPONSE MANAGEMENTCollaborates closely with the Marketing team to effectively maintain VCM's positive reputation, aligning with brand standards and customer service guidelines.Effectively implement pre-existing communication templates as well as create uniquely personalized responses in a voice that is consistent with VCM core valuesProvide prompt responses to customer inquiries, addressing questions, concerns, and complaints in a timely manner.Monitors social media inboxes, email channels and CRM platform (HubSpot) to ensure all communications are up to date. There is no customer service over the phone required.Prepare regular reports on customer service metrics (response times, customer satisfaction scores, and feedback analysis) to identify areas of improvement and present findings to the management team.Requirements and Selection CriteriaVCM is looking for an inquisitive, creative, motivated self-starter that pays attention to detail and describes themselves as an event fanatic. A successful candidate has an approach that balances quick wit & creative spirit with attention to detail & a strategic approach.Education and Work Experience: A university or college degree or diploma in a related field of study (Communications, Marketing, or Public Relations are preferred but not necessary) with a minimum of 3 years of work experience managing customer service or marketing-related tasks for events or festivals.Communication: Excellent verbal and written communication skills in English and strong interpersonal communication, including the ability to provide solutions to customers friendly and efficiently.Management Experience: Strong teamwork and self-management skills including performance monitoring, goal setting, and mentorship.Marketing and Communication: Basic experience and skills in marketing, and brand management. Strong understanding of brand tone of voice and communication.Social and Digital Media: Demonstrated experience with social media platforms management.Planning and Time Management: Superior time management skills with excellent organizational and planning capabilities. Ability to take tasks from concept through to final production. Comfortable to multitask and meet tight deadlines.Adaptability and Judgment: Ability to quickly adapt to changing environments, problem-solving skills, and an innovative mindset including exercising good judgment and decision making.Other: Applicant must have current eligibility to work in Canada.CompensationContract $15,000 (Full-time) or $7,500 (Part-time)Bonus: $2000-$3000 based on Department’s goalsApplication ProcessPlease send RESUME and COVER LETTERAll applications will be kept in confidence. No telephone calls or faxed applications, please. We thank all who express an interest in this position; however, only those selected for an interview will be contacted.COVID-19 considerations:We require employees to be fully vaccinated against COVID-19 unless a medical or religious exemption is approved. Being fully vaccinated means that an individual is at least two weeks past their final dose of an authorized COVID-19 vaccine regimen.Job Types: Part-time, Full-time, Fixed term contractContract length: 4 monthsSalary: From $3,800.00 per monthSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payAbility to commute/relocate:North Vancouver, BC V7L 1A4: reliably commute or plan to relocate before starting work (required)Application question(s):How many years of Marketing experience do you have?Education:Secondary School (preferred)Experience:events: 1 year (required)Customer service: 1 year (required)Work Location: Hybrid remote in North Vancouver, BC V7L 1A4Expected start date: 2023-10-02\",\n            \"location\": \"E Espl, North Vancouver, BC\"\n        },\n        {\n            \"id\": \"EA126625545F5CDBC8A333E14369B8F4\",\n            \"cityName\": \"304 Montée De L'église, L'ile-bizard, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e2539439aca8c142\",\n            \"jobName\": \"Cashier And Customer Service\",\n            \"companyName\": \"Sushi Shin\",\n            \"rowSalary\": \"$15.25–$19.00 an hour\",\n            \"date\": 1694456319473,\n            \"dateOfPosted\": 1694456319295,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4966461,\n                    \"lon\": -73.8909777\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Mnt de l'Église, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a very creative sushi restaurant. Our team is very enthusiastic and motivated. The environment of the sushi restaurant is very comfortable and the customers are nice and generous. We hope you can join our team and grow together. Contact: 514-806-2598 or text // Nous sommes un restaurant de sushi très créatif. Notre équipe est très enthousiaste et motivée. L'environnement du restaurant de sushi est très confortable et les clients sont gentils et généreux. Nous espérons que vous pourrez rejoindre notre équipe et grandir ensemble. Contact : 514-806-2598 ou SMSJob Types: Full-time, Part-timePart-time hours: 40 per weekSalary: $15.25-$19.00 per hourBenefits:Store discountDay range:Monday to FridayWeekends as neededShift:4 hour shift8 hour shiftAbility to commute/relocate:L'Île-Bizard, QC: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Montée De L'église, L'ile-bizard, QC\"\n        },\n        {\n            \"id\": \"73ED46749991904DCC7FBE95B26E7226\",\n            \"cityName\": \"St. John's, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0bdfad15148152cf\",\n            \"jobName\": \"Customer Service Agent Outbound (Remote) - Newfoundland\",\n            \"companyName\": \"National Diabetes Trust\",\n            \"rowSalary\": \"$15.63 an hour\",\n            \"date\": 1694454849334,\n            \"dateOfPosted\": 1694240108708,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our Organization The National Diabetes Trust is Canada’s largest charitable clothing and small household good collection service. With more than 5,000 donations bins and an active home pick-up service in communities across Canada (excluding Quebec), we collect unwanted gently used clothing and household items, using them to raise much-needed funds for Diabetes Canada.  Each year, the program diverts more than 100 million pounds of clothing and household items from landfill sites across Canada. As an employee on the National Diabetes Trust team, you are part of our national coverage in 2,500 communities, with 28 operations and 100 trucks. Join a team that is making a difference raising money for life altering charitable programs, all while helping the environment. What We Offer:Work from the comfort of your own homeEmployee Assistance Program (EAP)Registered Pension Plan (100% Employer-paid) once eligibility criteria are metCorporate discounts through Perkopolis, Value Village and GoodLife FitnessHours of Work* This role will work up to 29 hours per week in 6-hour daily time blocks, including weekends. A consistent schedule will be developed in collaboration with operational needs.  About the Outbound Customer Service Agent Role Reporting to the Virtual Contact Centre Supervisor, this role is responsible for soliciting, scheduling and confirming donation pick ups of reusable clothing and small household goods from the public. While there is no sales component to this role – we are seeking outgoing individuals with a focus on providing a “best in class” customer experience. Highlights of the role include:To solicit, schedule and/or confirm donations of reusable clothing and miscellaneous itemsThis is accomplished by reading from a standardized script to verify donor informationTo meet or exceed KPI targets and/or productivity standards as outlined by the SupervisorTo understand and promote the mission of Diabetes Canada and the National Diabetes Trust to the general publicProvide potential donors with a high level of customer service by demonstrating a professional manner, discipline and strong organizational skillsInform the Supervisor of any system or process discrepanciesMaintain accurate and up to date recordsAttend all scheduled shifts, training, and meetings as determined by the SupervisorMaintain confidentiality of donor informationAdditional duties as required, ensuring the effective operation of the Virtual Contact Centre function About You The selected candidate for this role will meet the following minimum requirements: Minimum High School Diploma6+ months of experience in customer service and/or a call centre environmentMust have in working order at all times a PC home computer, direct connect (wired) high speed internet (no Wi-Fi/router), a USB noise cancelling headset, and either an All-in-One Printer (copier, scanner, printer) OR the ability to sign documents electronically.Must have full availability between the hours of Monday-Friday 3pm-9pm EST and Saturdays and Sundays 11am -5pm EST.Strong computer skills and experience with computer databases (mouse, keyboarding, opening/closing programs, locating files, installing/uninstalling programs, updating software, basic troubleshooting)Intermediate web and email skills (internet, downloading, logging on/off, clearing history, sending, and receiving email messages, (attaching/saving/opening files), message boards, instant messagingDisciplined and organized self-starter who can succeed in a fast-paced, high volume call environment, while being able to manage multiple tasksBasic competency in Microsoft Office and AdobeAdvanced Oral and Written communication -  Diversity, Equity and Inclusion Statement At National Diabetes Trust, we are guided by our values of Accountability, Teamwork, Integrity, and Respect. We believe in the importance of Diversity, Equity and Inclusion (DEI). We are committed to bringing people together in a respectful, inclusive and supportive environment, no matter their age, gender, identity, race, ethnicity, religion, income, sexual orientation, or where they live. In July of 2020, we signed the BlackNorth Initiative CEO pledge and will hold ourselves accountable in meeting those commitments.  How to Apply Must be legally eligible to work in Canada and, where applicable, must have a valid work permit or study permit that allows the candidate to fulfill the requirements of the role.NDT welcomes applications from all qualified candidates, including women, Indigenous peoples, persons with disabilities, and members of visible minorities. We value a diverse workforce that reflects the communities we serve.We are committed to accommodating people with disabilities as part of our hiring process. If you have special requirements, please advise us during the recruitment process.We thank all interested applicants; however, only those selected for an interview will be contacted. INDNDTL\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"C7DFB8B9E344F410FC43CBAD6F54A0F0\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2200bd8f66ae77b2\",\n            \"jobName\": \"Customer Service Representative Supervisor\",\n            \"companyName\": \"Link Insurance\",\n            \"rowSalary\": \"$31 an hour\",\n            \"date\": 1694454078978,\n            \"dateOfPosted\": 1693605467308,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 31.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    31.0\n                ],\n                \"range\": {\n                    \"gte\": 31.0,\n                    \"gt\": null,\n                    \"lte\": 31.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College/CEGEPExperience: 2 years to less than 3 yearsTasks Conduct performance reviews Co-ordinate, assign and review work Establish work schedules and procedures and co-ordinate activities with other work units or departments Identify training needs and train workers in job duties and company policies Resolve work-related problems and prepare and submit progress and other reportsWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"BE0E594CEFAB9F8DCD6999EDAEA9AD26\",\n            \"cityName\": \"1235 Trafalgar Road, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=711a9eb6f5035ee2\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Lifemark Health Group\",\n            \"rowSalary\": \"$18–$19 an hour\",\n            \"date\": 1694453963800,\n            \"dateOfPosted\": 1693605602886,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4869976,\n                    \"lon\": -79.7183412\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Trafalgar Rd, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title: Customer Service Representative Location: Lifemark - pt Health - Trafalgar Physiotherapy  1235 Trafalgar Rd.  Oakville, Ontario  Employment Status: Casual Part-Time or Full-Time  Schedule: Tuesday and Thursday (13:30 - 20:00) and Friday (08:00 - 17:00)  Rate Compensation: $18.00 - $19.00 per hour Do you want flexibility in your work schedule and work alongside a driven team of industry experts? If so, join us at pt Health - Trafalgar Physiotherapy, a Lifemark Health Group company, Canada’s premier, largest, and most comprehensive healthcare management organization. We believe when you move better, you feel better. This is at the heart of everything we do, and we are seeking a Customer Service Representative who shares this same philosophy. At Lifemark, we walk the talk of our company's Core Values: “ We have fun,” We strive for simplicity,” We trust each other to do the right thing,” We go the extra kilometre” and “We belong here.” Why Lifemark? Opportunity to work with a multi-disciplinary team of clinicians and the satisfaction of being on a driven team Supportive and collaborative administrative team Competitive compensation with a positive and comforting work environment Pathways for management and corporate leadership Nationally recognized brand with a strong digital presence Diverse, stable, caseload with the flexibility to integrate pre-existing clients Qualifications & Core Competencies: High School Diploma, G.E.D. or equivalent Excellent customer service skills and telephone etiquette A high degree of organizational and multi-tasking skills in a busy and fast-paced work environment, preferably with 3-5 years of administrative work experience in the healthcare setting, is an asset. Computer savvy and data entry skills in a physiotherapy clinic are a definite advantage. Flexible and adaptable to change New Graduates are welcome to apply. Key Functions and Responsibilities: Answer telephone calls, greet patients and visitors upon arrival, and provide excellent customer service for all questions or concerns Coordinate a detailed and accurate information intake on the patient's first visit to the clinic and throughout their treatment plan. Assist patients with completing paperwork at the clinic to avoid errors and inaccurate information. Coordinate scheduling of patient appointments and maintain the patient’s medical record. Collect payment at the time of service Track coverage for all funding streams to ensure approval Complete data entry and billing Coordinate courier packages (in or outgoing) and process incoming and outgoing emails, mail and faxes. Provide administrative support to the Care Coordinator Manager and Clinic Director. Lifemark welcomes and encourages applications from people with disabilities. Accommodations are available on request for candidates taking part in all aspects of the selection process. Lifemark promotes equal employment opportunities for all job applicants, including those self-identifying as a member of the following groups: Indigenous peoples, Newcomers to Canada, and Visible minorities. Apply today! Visitwww.lifemark.ca/careers\",\n            \"location\": \"Trafalgar Road, Oakville, ON\"\n        },\n        {\n            \"id\": \"14C905506D806108922D853E947E6BAA\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=41ccaaea4f620ba5\",\n            \"jobName\": \"Représentant(e) Au Service à La Clientèle à Temps Partiel/Part-Time Customer Care Associate\",\n            \"companyName\": \"Lxrandco\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694453884699,\n            \"dateOfPosted\": 1694211477746,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"An English description will follow LXR est un détaillant omnicanal, socialement responsable, de sacs à main de marque de luxe et autres accessoires personnels. Depuis 2010, nous fournissons aux consommateurs des produits de luxe de marque authentifiés en promouvant leur réutilisation et en offrant aux consommateurs un moyen écologiquement responsable d’acheter des produits de luxe. Nous recherchons actuellement un(e) Représentant(e) au service à la clientèle pour notre siège social de Montréal. Le candidat retenu pour ce poste aura une maîtrise des politiques de service client de l'entreprise et sera bien formé à la connaissance des produits, enfin pouvoir offrir une assistance rapide et précise aux clients.Le générique masculin inclut le féminin et est utilisé sans aucune discrimination et uniquement dans le but d'alléger le texte* RESPONSABILITÉSFournir un excellent service client aux clients de LXR par téléphone, e-mail, chat en direct et  médias sociauxSe concentrer sur l'obtention de résultats clés tels que la satisfaction du client, la première résolution,  l'efficacité et les mesures de qualitéMaximiser les ventes en ligne et la fidélisation des clients par le biais de la communication  par téléphone, courrier électronique et chatFournir un excellent service d'assistance à la clientèle en ligneGérer la vérification des commandes pour éviter les fraudes et veiller à ce qu'elles soient  exécutées dans les délaisRésoudre les problèmes liés aux commandes en assurant la liaison entre le client et  les groupes internes/externes (logistique/entrepôt/production/partenaires en gros)Initier et assurer le suivi des rétrofacturations de créditRépondre aux demandes de renseignements généraux et sur les produitsSe tenir au courant des informations sur les produits et assister aux réunions de formation sur les  produits avant la saisonProcéder à différents suivis de dossiers dans les différents services afin d'assurer la  livraison des produits dans les délais impartisMettre à jour les différents fichiers de suivi pour s'assurer de la livrabilité des marchandisesAutres tâches connexes QUALIFICATIONSAu moins un (1) ans d'expérience dans un poste lié au service à la clientèleBilingue pour pouvoir servir nos clients anglophones (français et anglais, maîtrise de l'anglais requise)Une expérience ou une connaissance approfondie des marques de luxe est un atout.Expérience avec le(s) système(s) de billetterie est un atout (Gorgias)Excellentes compétences en communicationExcellente habileté à travailler en équipe et à communiquer avec ses pairsUne attitude polie, tact et amicaleBonne compréhension des besoins des clientsFortes compétences de motivationBonnes capacités de planification et d'organisationBon sens des priorités, capacité à gérer efficacement ses différentes tâches AVANTAGES SOCIAUX Environnement de travail agréableCondition de travail hybrideFavorise le recrutement interneRabais sur la marchandiseAccessible par les transports en commun (métro de Castelneau) CONDITIONS D'EMPLOITemps partiel, 20 heures par semainePossibilité d'un augmentation d'heures lors des temps des fêtes ou au besoinDois être disponible la fin de semaine au besoinContrat jusqu'à fin 2023 - LXRandCo, Inc. (LXR) is a socially responsible, digital-first omnichannel retailer of authenticated pre-owned luxury handbags and personal accessories. Since 2010, we have been providing consumers with authenticated branded luxury products by promoting their reuse and providing an environmentally responsible way for consumers to purchase luxury products. We are looking for a highly energetic, responsible, and experienced Customer Care Representative for our Montreal Headquarters. The successful candidate for this role will have a strong command of the company’s customer service policies and be well-trained in product knowledge that can be critical for offering quick and accurate assistance to customers. RESPONSIBILITIES Provide excellent customer service to LXR customers over the phone, e-mail, live chat, and social mediaFocus on delivering key results like customer satisfaction, first-time resolution, efficiency, and quality metricsMaximize online sales and repeat customers through phone/email/chat communicationProvide excellent online customer service supportManage verification of orders for fraud and ensure timely fulfillmentResolve order-related issues by liaising between clients and internal/external groups  (logistics/warehouse/production/wholesale partners)Initiate and follow up with credit chargebackAnswer product-related and general inquiriesKeep current with product information and attend pre-season product training meetingsProceed with different file follow-ups across departments to insure on-time product deliveryUpdate different tracking files for the deliverability of goodsOther related tasks QUALIFICATIONS At least one (1) year experience in a customer service-related positionBilingual to be able to serve our anglophone customers  (French & English, English fluency required)Experience with, or thorough knowledge of, luxury brands is an assetExperience with ticketing system(s) is an asset (Gorgias)Excellent communication and people skillsPolite, tactful, and friendly attitudeGood understanding of the needs of customersStrong self-motivatorGood planning and organizational skillsAbility to multi-task BENEFITS Fun working environmentHybrid working conditionsFavors internal recruitmentDiscount on merchandiseAccessible via public transportation (de Castelneau metro) EMPLOYMENT CONDITIONSPart-time, 20 hours per weekPossibility of increasing hours during the Holiday season or as neededMust be available on weekends as neededContract until end of 2023\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"3906F81538B643F9EE6889BCEB04D051\",\n            \"cityName\": \"4333 Aut 13, Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ad32725b77532384\",\n            \"jobName\": \"06h-14h Service à La Clientèle Jour/ Day Shift CusTomer Service 6am To 2pm\",\n            \"companyName\": \"Tim Hortons | 1550\",\n            \"rowSalary\": \"$15.25–$18.00 an hour\",\n            \"date\": 1694453884043,\n            \"dateOfPosted\": 1692747161335,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5911874,\n                    \"lon\": -73.72153039999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"A. Jean-Noël-Lavoie, Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Joins-toi à notre équipe en pleine expansion!Chez Tim Hortons, notre priorité est la satisfaction de notre clientèle! Que ce soit au comptoir avant ou en cuisine pour préparer les pâtisseries que nos invités adorent, tu auras l’occasion d’offrir une expérience exceptionnelle à chacun de nos invités. Pourquoi travailler avec nous? Horaires flexibles et variables (Possibilité de travailler à temps plein ou à temps partiel) Rabais 50% sur les produits Tim Hortons Beaucoup de potentiel de développement et d’avancement Formation complète Programme de bourses d’études Équipe Tim Hortons Environnement de travail stimulant REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles Posséder un bel esprit d’équipe et avoir un sens d’empressement au travail / Have a team spirit and being able to work in a fast paced environement Notre grand rêve ne peut être réalisé qu’en nous entourant de personnes rares et spéciales qui veulent réussir avec nous. Nous sommes guidés par les valeurs suivantes : Méritocratie: Votre croissance est entièrement basée sur ce que vous faites et comment vous le faites Créativité: Trouver des façons de faire les choses différemment pour les rendre meilleures Travail d’équipe : Nous ne pouvons gagner ensemble qu’en dépendant les uns des autres Authenticité: Être une bonne personne, travaillante Diversité : Un large éventail de voix et de perspectives nous rend plus forts L’entreprise est dirigée par des leaders passionnés qui ont à cœur le développement et le bien-être de leurs employés. Notre priorité est de créer un environnement de travail où les membres de l’équipe sont encouragés à s’entraider, à se valoriser mutuellement à travers diverses opinions afin que nous puissions collectivement gagner en tant qu’équipe. Rejoignez une équipe gagnante, rejoignez-nous afin que nous puissions nous rejoindre dans notre voyage pour réaliser notre grand rêve! Ce sont les gens chez Tim qui font que Tim est… Tim! En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Aut, Laval, QC\"\n        },\n        {\n            \"id\": \"F3EE74DF4E18A894FC5F09083516A14D\",\n            \"cityName\": \"Cranbrook, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d7b7c25769547439\",\n            \"jobName\": \"Customer Service Representative - Financial Services\",\n            \"companyName\": \"Speedy Cash Canada\",\n            \"rowSalary\": \"$18.75 an hour\",\n            \"date\": 1694453452807,\n            \"dateOfPosted\": 1693605474419,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.5129678,\n                    \"lon\": -115.7694002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cranbrook\",\n                \"formattedAddress\": \"Cranbrook, BC V1C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"East Kootenay\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cranbrook\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsHealth benefits Dental plan Health care plan Paramedical services coverage Vision care benefits Financial benefits BonusWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Cranbrook, BC\"\n        },\n        {\n            \"id\": \"9ADAFB1EF24B6BB59E4BB14CEEFCA6EB\",\n            \"cityName\": \"790 Boul Crémazie E, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d0c984e420479c0a\",\n            \"jobName\": \"Caissier, Caissière Service à La Clientéle / Cashier Customer Service\",\n            \"companyName\": \"Tim Hortons | Damsar, Inc.\",\n            \"rowSalary\": \"$15.25–$16.25 an hour\",\n            \"date\": 1694452820143,\n            \"dateOfPosted\": 1692747498970,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5545221,\n                    \"lon\": -73.6209598\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Boul Crémazie E, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Primes de nuit Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement As a Team Member at Tim Hortons, your top priority is guest satisfaction. Whether you are the very first person our guests encounter, or produce the best loved bakery items that our guests come to enjoy, you will have the opportunity to deliver and create exceptional guest experiences. Your energy and passion for guest service are what make you a top team member in this fast-paced environment while your ability to multi-task and communicate with your fellow team members will contribute to your success. Why work for us? Night Shift Premium $ Paid Training Flexible schedule Scholarship Program Opportunities Amazing growth opportunities! REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder une esprit d’équipe et avez un empressement au travail / Have a team spirit and being able to work in a fast paced environement Faire parti de l'équipe / Be part of the team Être une personne ponctuelle et prête à travailler / Able to be on time and ready to work Être capable de lever 25 livres / Must be able to lift 25 lbs En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Crémazie, QC\"\n        },\n        {\n            \"id\": \"AC9F6D66FCB3790BBC7E62ED40614A02\",\n            \"cityName\": \"700 3rd Line, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7e2d2b54e89e1ddb\",\n            \"jobName\": \"Customer Service/Administrative Assistant\",\n            \"companyName\": \"Beauty First\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694451160382,\n            \"dateOfPosted\": 1694451160197,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4283542,\n                    \"lon\": -79.73036499999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Third Line, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OverviewBeauty First Spa is committed to giving our guests an inclusive, unique experience at every visit to one of our spas. The happiness of our guests is our priority, and it’s what keeps our guests coming back to us. Our employees build meaningful relationships with each one of our guests to ensure we are always prioritizing their needs.Major ResponsibilitiesDo admin duties like filing and updating POS system· Engage in incoming and outgoing calls to Pre-book future appointments.· Answering phones and working different shifts and weekend.· Learn about the products inside and out to be able to answer any questions from customers.· Resolve customer complaints/queries via phone, email, mail, or social media (Google, Facebook, Instagram, Whatsapp)· To handle multiple tasks and Utilize computer technology to manage day to day business.· Various administrative duties as required.· Flexibility in hours (Evenings/Weekends)Experience & Skills RequiredHigh-school diploma.Excellent verbal and written communication skills.Passion for finding solutions and providing the best possible customer experience.* Must have proficiency in Excel*· Ability to multitask and communicate with multiple customers at one time.Extremely strong conversational phone skills.Minimum 1-year customer service-related experience.Job Type: 1 Part-time applicant & 1 Full Time applicant requiredSalary: $17.00 per hourJob Types: Full-time, Part-timeSalary: From $17.00 per hourSchedule:8 hour shiftEvening shiftMonday to FridayMorning shiftWeekends as neededAbility to commute/relocate:Oakville, ON L6L 4B1: reliably commute or plan to relocate before starting work (preferred)Education:Secondary School (preferred)Experience:Front desk: 1 year (preferred)Administrative experience: 1 year (preferred)Work Location: In person\",\n            \"location\": \"rd Line, Oakville, ON\"\n        },\n        {\n            \"id\": \"BFB5BAC99CA156632A8E5134D53D8338\",\n            \"cityName\": \"AGM Advantage in North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=91d6f4173261a763\",\n            \"jobName\": \"Entry Level Sales, Marketing And Customer Service\",\n            \"companyName\": \"Agm Advantage\",\n            \"rowSalary\": \"$650–$700 a week\",\n            \"date\": 1694450546240,\n            \"dateOfPosted\": 1694348466573,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 650.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    650.0\n                ],\n                \"range\": {\n                    \"gte\": 650.0,\n                    \"gt\": null,\n                    \"lte\": 650.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Entry Level Sales, Marketing and Customer Service in North YorkThis is NOT a remote positionLooking for an entry-level position that combines sales, marketing and customer service?Look no further. Submit your resume here for immediate opportunities!Benefit from our comprehensive training and full mentorship.AGM Advantage is a winning team of highly motivated business professionals! With our expansive background in marketing and business development, we create the most impressive campaigns for our world-class business and nonprofit clients! Our staff and team members can most definitely build on our expanding reach for a brighter personal and professional future.We specialize in direct marketing strategies. We offer entry-level positions only and solely promote from within.This is a triple-edged entry-level position that is available now.Apply Today!Entry Level Sales, Marketing and Customer Service in North YorkThis is not a remote positionJob requirements:Over 18 years oldSpeak good EnglishHolder of HS Diploma or higherCitizen, resident or authorized to work including international students studying in CanadaAble to commute to work to any of our locationsRecommended SkillsBusiness DevelopmentCoaching And MentoringDirect MarketingEnglishMarketingCampaignsThink you're the perfect candidate? Apply to this job.Apply NowJob Type: Full-timeSalary: $650.00-$700.00 per weekFlexible Language Requirement:French not requiredSchedule:Day shiftSupplemental pay types:Bonus payAbility to commute/relocate:North York, ON M2N 6N5: reliably commute or plan to relocate before starting work (required)Application question(s):Are you at least 18 years old?Language:English (required)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"7016B7DA34FCE8064AB029F3E6D66622\",\n            \"cityName\": \"1751 Savage Road, Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c67e265d969355d2\",\n            \"jobName\": \"Telephone Sales Representative\",\n            \"companyName\": \"Marina's Swim School\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694450197719,\n            \"dateOfPosted\": 1692746333884,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2013007,\n                    \"lon\": -123.0579864\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Savage Rd, Richmond, BC V6V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Savage Rd, Richmond, BC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Sales Representative duties and responsibilitiesAssisting customers in their questions about Marina Swim School programsMaking service suggestions according to the wants and needs of customersLocating prospective customers, generating them into leads, and eventually converting them into customersMeeting or exceeding weekly, monthly, and quarterly sales quotasUsing strong research skills and deep product or industry knowledge to answer any questions about the productPreparing and submitting weekly sales or inventory reports to managementKeeping contact lists and following up with current customers to continue building relationshipsSales Representative skills and qualificationsDemonstrated product knowledge and sales abilitiesCustomer service skills to listen to customers and professionally answer questions or address concernsStrong public speaking skills to present product or services to customersCommunication skills to confidently make cold calls or negotiate sales termsAbility to meet deadlines and sales quotasFamiliarity with an office environment, equipment, and softwareJob Type: Part-timePart-time hours: 15-25 per weekSalary: From $16.75 per hourBenefits:Dental careExtended health careOn-site parkingVision careSchedule:Day shiftEvening shiftMonday to FridaySupplemental pay types:Bonus payCommission payCOVID-19 considerations:Now we are working by COVID Safety Plan.Ability to commute/relocate:Richmond, BC V6V 1R1: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:Sales: 2 years (required)Customer service: 2 years (required)Language:English (perfect) (required)Licence/Certification:Driver License (required)Work Location: In person\",\n            \"location\": \"Savage Rd, Richmond, BC\"\n        },\n        {\n            \"id\": \"98513F97CDF9818BD2CF8BA4BD5DA376\",\n            \"cityName\": \"51 Roysun Rd, Woodbridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4cd4e27d62ce4030\",\n            \"jobName\": \"Part-Time Seasonal Administration/Photographer With Customer Service Skill\",\n            \"companyName\": \"Cento Photography\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694450021391,\n            \"dateOfPosted\": 1692744516826,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7689909,\n                    \"lon\": -79.6091938\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Roysun Rd, Vaughan, ON L4L, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About Us:Cento Photography specializes in capturing memorable moments for schools and students through professional photography services. We are currently seeking a talented and dedicated individual to join our team as a Part-Time Seasonal Administration/Photographer. If you are passionate about photography, possess excellent customer service skills, and are available to work during our peak seasons, we want to hear from you.Job Description:As a Part-Time Seasonal Administration/Photographer, you will play a vital role in ensuring the smooth operation of our school photography sessions while delivering exceptional customer service. This position is perfect for someone who enjoys working in a dynamic environment and has a keen eye for both administrative tasks and photography.Responsibilities:Provide outstanding customer service to schools, teachers, parents, and students.Assist with administrative tasks such as data entry, scheduling, and document preparation.Capture high-quality product and lifestyle photographs that align with our brand identity.Edit and enhance photos using Adobe Photoshop to create visually compelling imagery.Design engaging graphics, layouts, and marketing materials using Canva and Adobe InDesign.Collaborate with the marketing team to develop visual content for various platforms, including social media, website, and marketing campaigns.Maintain an organized library of digital assets, including photos, graphics, and templates.Provide support during photoshoots, including set-up, lighting, and equipment management.Assist in maintaining and updating company databases and spreadsheets using Excel.Contribute to creative brainstorming sessions to develop new ideas and concepts for visual content.Available to work late as needed during peak photography seasons.Requirements:Strong customer service skills and the ability to interact professionally with diverse groups.Proven experience in administrative roles with strong organizational skills.Proficient in photography techniques, composition, and lighting.Advanced skills in Adobe Photoshop for photo editing and manipulation.Experience with graphic design using Canva and Adobe InDesign.Strong knowledge of Excel for data management and reporting.Excellent communication skills and the ability to work effectively in a team environment.Creative mindset with an eye for detail and aesthetics.Strong time management skills to handle multiple tasks and meet deadlines.Ability to work well in a team and independently.Flexibility to work late hours and adapt to changing schedules.If you are an enthusiastic individual with a passion for photography and exceptional customer service skills, we encourage you to apply for our Part-Time Seasonal Administration/Photographer position. Join us in creating lasting memories for schools and students.Job Types: Part-time, SeasonalSalary: $18.00-$20.00 per hourSchedule:Monday to FridayOvertimeAbility to commute/relocate:Woodbridge, ON L4L 8P9: reliably commute or plan to relocate before starting work (required)Experience:Adobe Photoshop: 2 years (required)Work Location: In personApplication deadline: 2023-09-05\",\n            \"location\": \"Roysun Road, Vaughan, ON\"\n        },\n        {\n            \"id\": \"24FEC233C0E5299C7BAE9B2CD65E33DA\",\n            \"cityName\": \"620 Davenport Rd, Waterloo, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=688a3387465517dd\",\n            \"jobName\": \"Customer Service/Sales Representative\",\n            \"companyName\": \"Rmes.Inc\",\n            \"rowSalary\": \"$620–$1,260 a week\",\n            \"date\": 1694450019611,\n            \"dateOfPosted\": 1693605635141,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4984806,\n                    \"lon\": -80.5243505\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Waterloo\",\n                \"formattedAddress\": \"Davenport Rd, Waterloo, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Waterloo\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 620.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    620.0\n                ],\n                \"range\": {\n                    \"gte\": 620.0,\n                    \"gt\": null,\n                    \"lte\": 620.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"This is an Entry-Level Sales Position. Do not be hesitant to apply if you are interested in gaining a lot of experience in Sales and Customer Service!About Us:Rmes Inc. has been one of the fastest-growing companies in the Kitchener-Waterloo region filled with lots of room for growth. We take pride in our integrity, professionalism, follow-through, and intense desire to educate, equip, and empower future generations. These qualities are what really set us apart from our competitors. We are actively seeking Sales Representatives since we plan to establish and launch additional branches in order to double, triple, and, quadruple in size over the next few years.We are looking for experienced and motivated Sales Representatives to join our team. The successful candidate will be responsible for developing and maintaining relationships with customers, understanding customer needs, and providing solutions to meet those needs. The Sales Representative will also be responsible for generating leads, managing customer accounts, and closing sales. The ideal candidate will have excellent communication skills, high energy, drive, and a passion for helping customers.Responsibilities:Develop and maintain relationships with customers.Develop sales strategies and tactics to increase sales.Understand customer needs and provide solutions to meet those needs.Handle customer inquiries and complaints in a professional manner.Provide accurate information to customers about products and services.Maintain accurate records of sales activities.Keep a positive outlook and behave professionallySkills and Qualifications:AdaptabilityStrategic and Critical ThinkingTime ManagementOrganizationCommunicationLeadershipActive ListeningProblem SolvingTeam WorkResilienceHigh Work EthicsMaintain Personal HygieneHighly Motivated and DisciplinedOur Motto: Success doesn't come to you; YOU GO TO IT!Our Website: Rmes-org.caOur Instagram: Rmes_Inc.Job Type: Full-timeSalary: $620.00-$1,260.00 per weekBenefits:Company eventsFlexible scheduleOn-site parkingFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payAbility to commute/relocate:Waterloo, ON N2V 2C2: reliably commute or plan to relocate before starting work (preferred)Application question(s):Do you currently reside in Canada?Are you Looking for Full-Time?Are you at least 18 years of age?Experience:Customer service: 1 year (preferred)Licence/Certification:Driving Licence (preferred)Work Location: In person\",\n            \"location\": \"Davenport Road, Waterloo, ON\"\n        },\n        {\n            \"id\": \"4F7CBC78D1F907DFA0A44981942576CE\",\n            \"cityName\": \"Surplus Herbys in Kamloops, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=11cdc1ef107434d8\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Surplus Herbys\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694449943836,\n            \"dateOfPosted\": 1692745777824,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.674522,\n                    \"lon\": -120.3272675\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kamloops\",\n                \"formattedAddress\": \"Kamloops, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Thompson-Nicola\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kamloops\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Successful candidates will be responsible for stocking shelves, merchandising, and providing excellent customer service. We have openings available in our fishing department. Knowledge of fishing would be a great asset. In return we offer health and dental benefits, profit sharing, employee discount and opportunities for advancement. Applicants must be reliable and be able to work most weekends and have a positive attitude. Come join the fun Herby team!Job Types: Full-time, Part-timePart-time hours: 20-30 per weekSalary: From $16.75 per hourBenefits:Dental careOn-site parkingStore discountVision careDay range:Every WeekendHolidaysMonday to FridayWeekends as neededShift:8 hour shiftDay shiftWork setting:Department storeCOVID-19 considerations:We offer curbside pickup and we do regular sanitizing of the store.Experience:sales: 1 year (preferred)customer service: 1 year (preferred)Work Location: In personExpected start date: 2023-11-09\",\n            \"location\": \"Kamloops, BC\"\n        },\n        {\n            \"id\": \"61027D27AAE535DF5F1AD62203468285\",\n            \"cityName\": \"Niagara-on-the-Lake, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0d97b5fd43b10452\",\n            \"jobName\": \"Inside Phone Sales\",\n            \"companyName\": \"Empowerment Technologies Inc.\",\n            \"rowSalary\": \"$23–$25 an hour\",\n            \"date\": 1694449799077,\n            \"dateOfPosted\": 1694449798844,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2549988,\n                    \"lon\": -79.0772616\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara-on-the-Lake\",\n                \"formattedAddress\": \"Niagara-on-the-Lake, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Niagara-on-the-Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"**This role is in office within our Niagara-on-the-Lake site.**Who We Are:For 20 years, we’ve been leaders in the baby safety (Levana) and DIY security space (Defender), creating ground-breaking consumer electronics that bring peace of mind to millions of people all over the world. Selling directly through our brand websites, Amazon, and our retail partners such as Walmart, Costco, and Home Depot, we are growing fast and are looking for new team members to join us on this journey. For those looking to join a passionate and collaborative team that challenge conventional methods, take risks, and settle for nothing but excellence, you’ve found the right place!Who Are You?You are a fast paced, results driven, and experienced Inside Salesperson with a successful sales track record, you have a high degree of self-motivation and resilience within a sales environment. Using your strong interpersonal skills and entrepreneurial mind set, you strategically use various contact methods to maximize your communication efforts and close sales. This role operates out of our Head Office in Niagara-on-the-Lake.Perks of This Role:Full time, 40 hours per weekScheduled shifts are days, Monday – Friday with weekend availability requiredWage is $23.00-$25.00 per hourImmediately receive 2 weeks vacation (no waiting period)Comprehensive Health Benefits program after 60 daysWork in an office environment (we are NOT a call centre)50% product discount for friends and familyWork directly for the brand owners and not a 3rd partyBe involved in new product testingQualifications:1 year of sales experience with a high focus on sales targets and customer engagementStrong attention to detail and ability to multitaskExcellent organizational, time management and communication skillsFlexible/creative approach to problem solving with the ability to simplify/detangle issues to their core factorsEmotional Intelligence: self-awareness - have a strong desire to develop and improve yourself and know when to seek out expertise; self-regulation - knowing when to push and when to stop; motivation – remain motivated while creating a strong desire to achieve in others; empathy – understand and care about people’s current reality; social skills – understand people, develop trust and help themHigh School Diploma (OSSD)Our Core ValuesExcellence - We never settle for “good enough.Results - The path to success is paved with our dedication.Love - Challenges are no match for our hearts and minds.Learning - Experimentation and curiosity are part of our DNA.Simplicity - We strip away the non-essentials to get to what really matters.Job Types: Permanent, Full-timeSalary: $23.00-$25.00 per hourBenefits:Casual dressDental careExtended health careOn-site parkingPaid time offStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededCOVID-19 considerations:COVID-19 vaccination is required. We have put measures in place, such as daily office sanitization, socially distant desk spaces, and providing masks.Ability to commute/relocate:St. Catharines, ON: reliably commute or plan to relocate before starting work (required)Experience:phone sales: 1 year (required)B2B sales: 1 year (required)Work Location: In person\",\n            \"location\": \"Niagara-on-the-Lake, ON\"\n        },\n        {\n            \"id\": \"8F67D040EDA330DC5484E84AB53B4D51\",\n            \"cityName\": \"127 Rte Du Canton, Brownsburg-Chatham, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b616d58b25277bc8\",\n            \"jobName\": \"22h-06am Service à La Clientèle Nuit/ Night Shift CusTomer Service 10pm To 6am\",\n            \"companyName\": \"Tim Hortons | 1550\",\n            \"rowSalary\": \"$15–$20 an hour\",\n            \"date\": 1694449726211,\n            \"dateOfPosted\": 1692747500557,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6256958,\n                    \"lon\": -74.4637136\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mont-Tremblant\",\n                \"formattedAddress\": \"Rte du Canton, Argenteuil, QC J0V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laurentides\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mont-Tremblant\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Nous sommes présentement à la recherche de candidats pour un poste de service à la clientèle pendant les heures de 22h-6h En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement Exemples d’expérience antérieure : Pas d’expérience, pas de problème, juste avoir une bonne attitude ! Barista chez Starbucks Caissier ou Caissière chez McDonald’s A travaillé dans n’importe quel Tim Hortons Cuisiner chez Wendys, ou a&w A travaillé dans n’importe quel fast-food ou restaurant dans le passé en tant qu’aide de cuisine Nettoyage ou entretient dans un entrepôt comme Amazon, Costco, Super C Préparation des aliments chez Subway ou Freshii Expérience antérieure en tant que boulanger dans une boulangerie ou une pâtisserie Service à la clientèle chez Couche Tard ou dans un dépanneur, ou station service Premier emploi, à temps partiel ou à temps plein REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder un bel esprit d’équipe et avoir un sens d’empressement au travail / Have a team spirit and being able to work in a fast paced environement Disponibilités plusieurs jours de la semaine de 22h-6h /Available several evenings a week from 10pm to 6am Notre grand rêve ne peut être réalisé qu’en nous entourant de personnes rares et spéciales qui veulent réussir avec nous. Nous sommes guidés par les valeurs suivantes : Méritocratie: Votre croissance est entièrement basée sur ce que vous faites et comment vous le faites Créativité: Trouver des façons de faire les choses différemment pour les rendre meilleures Travail d’équipe : Nous ne pouvons gagner ensemble qu’en dépendant les uns des autres Authenticité: Être une bonne personne, travaillante Diversité : Un large éventail de voix et de perspectives nous rend plus forts L’entreprise est dirigée par des leaders passionnés qui ont à cœur le développement et le bien-être de leurs employés. Notre priorité est de créer un environnement de travail où les membres de l’équipe sont encouragés à s’entraider, à se valoriser mutuellement à travers diverses opinions afin que nous puissions collectivement gagner en tant qu’équipe. Rejoignez une équipe gagnante, rejoignez-nous afin que nous puissions nous rejoindre dans notre voyage pour réaliser notre grand rêve! Ce sont les gens chez Tim qui font que Tim est… Tim! En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Rte Du Canton, Brownsburg-Chatham, QC\"\n        },\n        {\n            \"id\": \"4078B96EFDB55B01DE5D177D40429909\",\n            \"cityName\": \"9712 153 Ave NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=da664a490574a4be\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Cloverdale Paint Inc\",\n            \"rowSalary\": \"$16–$17 an hour\",\n            \"date\": 1694449686428,\n            \"dateOfPosted\": 1694449686236,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5862898,\n                    \"lon\": -113.402279\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Henry Ave NW, Edmonton, AB T5A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cloverdale Paint is the largest family owned and operated paint company in North America. With over 70 Company stores and 150 Authorized Dealers across Canada, Cloverdale Paint has had a special relationship with its customers ever since the company was founded in 1933.Cloverdale Paint is seeking an ambitious individual for a full-time position with open availability at our store in Edmonton, AB.We are looking for someone to work approximately 4-5 shifts per week. Wage is negotiable depending on previous experience.We are accepting resumes in store at 9712-153rd Avenue, Edmonton, ABCloverdale offers a very competitive compensation package and strives to be the Place to Be not only for customers but employees as well.WHAT WE OFFERCompany paid benefits – Medical, Dental and VisionAnnual cost of living salary increasesProfit-sharing ProgramFamily Assistance ProgramStaff DiscountsComprehensive trainingA supportive and growth-oriented management teamA great work environment with collaborative and caring colleagueRESPONSIBILITIESAnswering basic customer inquiries in person and by phoneDetermining and recommending products to customers ensuring the customer is supplied with all items required for their projectTinting & shaking paint accuratelyKeying in sales and operating basic functions of the POS systemREQUIREMENTSAt least 1-year of Retail Sales and/or Paint Industry experienceAbility to lift up to 50lb regularlyAbility to stand for long periods of timeAbility to work in a fast-paced environmentExcellent customer service skillsAttention to detailGood communication skillsStrong problem solving skillsTeam playerStrong work ethic, with a can-do attitudeOur employees enjoy excellent work environments, respectful workplaces with credible leadership and receive fair remuneration and annual profit sharing. Be part of a Canadian family owned business and be valued, appreciated and respected!Job Types: Full-time, PermanentSalary: $16.00-$17.00 per hourBenefits:Casual dressDental careEmployee assistance programExtended health careFlexible scheduleOn-site parkingPaid time offProfit sharingStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftWeekends as neededAbility to commute/relocate:Edmonton, AB: reliably commute or plan to relocate before starting work (required)Application question(s):Are you capable of standing for long periods of time?Are you capable of lifting up to 50 lb regularly?Are you available to work 4-5 shifts per week?Experience:Customer Service: 1 year (required)Paint/Coatings: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Ave NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"8D8EC8B2EDA54EF8D0A304B31AB13628\",\n            \"cityName\": \"10406 184 Street NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2138c5fc777373a9\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Kms Tools & Equipment Edmonton West\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694449603089,\n            \"dateOfPosted\": 1694449602891,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.6065656,\n                    \"lon\": -113.3801256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"24a St NW, Edmonton, AB T5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"KMS Tools Edmonton West is looking for a Cashier to add to our team. Applicants must be dependable, friendly, detail oriented and focused on customer service. Ability to handle high volume of orders and customers. We are closed Sundays and Holidays. Working Saturdays is required. Competitive benefits offered.Job Types: Permanent, Full-timeSalary: From $15.00 per hourBenefits:Dental careOn-site parkingPaid time offStore discountDay range:Every WeekendMonday to FridayShift:8 hour shiftDay shiftApplication question(s):Are you currently working? If so - when would you be able to start?Do you have any schedule restrictions?What is your expected starting pay based on your experience?Experience:customer service: 1 year (preferred)Cashiering: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Street NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"5DB578B2CDF894231FDC6550ABC5B65C\",\n            \"cityName\": \"9255 Boul De L'acadie, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=62b0708c3dc8769f\",\n            \"jobName\": \"Caissier, Caissière Service à La Clientéle / Cashier Customer Service\",\n            \"companyName\": \"Tim Hortons | Damsar, Inc.\",\n            \"rowSalary\": \"$15.25–$16.25 an hour\",\n            \"date\": 1694449510385,\n            \"dateOfPosted\": 1692747503733,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5347495,\n                    \"lon\": -73.6620374\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Bd de l'Acadie, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Primes de nuit Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement As a Team Member at Tim Hortons, your top priority is guest satisfaction. Whether you are the very first person our guests encounter, or produce the best loved bakery items that our guests come to enjoy, you will have the opportunity to deliver and create exceptional guest experiences. Your energy and passion for guest service are what make you a top team member in this fast-paced environment while your ability to multi-task and communicate with your fellow team members will contribute to your success. Why work for us? Night Shift Premium $ Paid Training Flexible schedule Scholarship Program Opportunities Amazing growth opportunities! REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder une esprit d’équipe et avez un empressement au travail / Have a team spirit and being able to work in a fast paced environement Faire parti de l'équipe / Be part of the team Être une personne ponctuelle et prête à travailler / Able to be on time and ready to work Être capable de lever 25 livres / Must be able to lift 25 lbs En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Boul De L'acadie, Montréal, QC\"\n        },\n        {\n            \"id\": \"164385120546B81819F90488CE70E744\",\n            \"cityName\": \"6259 Andrews Loop SW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=be715a90d09bbe88\",\n            \"jobName\": \"Licensed Customer Service Associate\",\n            \"companyName\": \"Billyard Insurance Group\",\n            \"rowSalary\": \"$36,000–$42,000 a year\",\n            \"date\": 1694449333527,\n            \"dateOfPosted\": 1692745469978,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.4285626,\n                    \"lon\": -113.5884465\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Andrews Loop SW, Edmonton, AB T6W 1A4, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 36000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    36000.0\n                ],\n                \"range\": {\n                    \"gte\": 36000.0,\n                    \"gt\": null,\n                    \"lte\": 36000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Billyard Insurance Group (BIG) – Edmonton South is looking for a Licensed Customer Service Associate to join our brokerage. Billyard Insurance Group is a rapidly growing national insurance brokerage with over 70 locations across Canada. We’re also proud to have been recognized on Insurance Business Canada’s Top Brokerages list for the last two years and named one of Canada’s Top Growing Companies on the Globe and Mail’s Report on Business for the past 3 years.BIG Edmonton South is looking for a Customer Service Representative to join our growing team and provide excellent customer service to our clients. Our CSR position requires a relationship-oriented individual with strong organizational and analytical skills. You will need to be comfortable in a customer facing role with an emphasis on telephone and computer skills. If you have a strong track record in customer service, we encourage you to apply.Responsibilities:Support the management and sales team while providing a superior level of serviceAdminister, support, and complete policy changes within our company partner’s portals and websitesReview policies and recommend coverages based on individual consumer needsAdhere to the underwriting criteria set out by our broker partnersIf you enjoy occasionally selling policies we do not remove this function, but encourage you to do soCo-ordinate and follow up on client documentsQualifications:General Insurance Level 1 or greater license from the Alberta Insurance Council (AIC)2+ years of experience in a customer service or sales roleKnowledge of Personal and/or Commercial Lines on a proficient level is considered an assetExperience with insurance software (broker portals, customer management systems etc) is considered an assetFluency in a foreign language is an assetJob Type: Full-timeSalary: $36,000.00-$42,000.00 per yearBenefits:On-site parkingPaid time offSchedule:Monday to FridayLicence/Certification:Level 1 (or greater) General License from the AIC (required)Work Location: In person\",\n            \"location\": \"Andrews Loop SW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"A3C7BAF07D1323F13D7BA8B20C8E5821\",\n            \"cityName\": \"5984 Boul Cousineau, Saint-Hubert, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f9b00aa3021325cb\",\n            \"jobName\": \"Cook/Customer Service\",\n            \"companyName\": \"Chung Chun Rice Hotdog\",\n            \"rowSalary\": \"$15.25–$21.63 an hour\",\n            \"date\": 1694449295075,\n            \"dateOfPosted\": 1692737153955,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4819036,\n                    \"lon\": -73.39037859999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Longueuil\",\n                \"formattedAddress\": \"Bd Cousineau, Longueuil, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Longueuil\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OUVERTURE BIENTÔT CHUNG CHUN SAINT-HUBERT, QUEBEC5984 BOULEVARD COUSINEAU, SAINT-HUBERT, QCChungchun Rice Dog est une chaîne de cuisine de rue coréenne avec plus de 200 succursales dans le monde et les premiers à Montréal. Nous recherchons un membre enthousiaste de l'équipe qui se joindra à notre équipe et contribuera à faire croître la marque au Québec tout en profitant d’un environnement de travail agréable, d'horaires flexibles et d’une équipe incroyable. Nous avons pour objectif de leur offrir une expérience unique à nos clients en leur offrant un service de qualité et en leur faisant découvrir nos délicieux Kogos coréen.Recherche de caissier à temps-partiel.Description des tâchesExécuter tous les éléments selon les normes les plus élevées en suivant les recettes et les procédures du restaurantMaintenir les normes de propreté, de santé et sécurité du restaurantSuivre toutes les politiques et procédures opérationnellesMaintenir un niveau élevé de pratiques de sécurité alimentaireDoit travailler avec l'équipe et doit s'assurer du bon roulement du serviceDoit savoir repérer les problèmes et les résoudreDoit être autonome et proactifDiplômes et expérienceAimer le travail en équipe et avoir le sens des responsabilitésFaire du service client une prioritéAucune expérience nécessaire, expérience dans une cuisine est un atoutCompétencesCapacité à travailler en équipe tout en démontrant du leadershipCapacité à comprendre et à exécuter des instructions verbales et écritesCapacité à apprendre rapidementCapacité à parler la langue française, la langue anglaise est un plus, la languecoréenne est un plusCapacité à faire plusieurs tâches à la foisFaire du service client une prioritéExigences physiquesDebout pendant de longues périodesTravailler dans un environnement de cuisine chaudPousser, tirer, soulever ou porter occasionnellement jusqu'à 40 lbHoraires de travail/SalaireHoraire flexible, travail durant le matin et le soir, les jours de semaine et de fin de semaineTemps partielSalaire competitiveOPENING OF CHUNG CHUN, SAINT-HUBERT, QUEBECChungchun Rice Hotdog is a Korean street food chain with over 200 branches around the world. Since our opening in Canada in 2019, we now have branches in Toronto, Vancouver, Calgary and now opening our 2nd restaurant in Québec under Chungchun Kogo Coréen!We are looking for an enthusiastic team member who will join our team rank and help grow the brand in Québec while enjoying flexible hours!Duties and responsibilitiesContribute to making our customers’ day by greeting people, taking orders and preparing delicious KogosProcessing paymentsPackage take-out foodExecute all items to the highest standards following the restaurant’s recipes and proceduresMaintain cleanliness and health & safety standards of the restaurantFollow all operational policies and proceduresMaintain a high level of food safety practicesMust be available on certain holidaysQualifications and ExperienceEnjoy teamwork and having sense of responsibilityMake customer service a priorityNo experience needed, Experience in the kitchen is a plusSkills & FitAbility to work as part of a teamAbility to understand and carry out verbal and written instructionsAbility to learn quicklyAbility to speak French language, English language, Korean language is a plusPhysical RequirementsStanding for long periods of timeWorking in a hot kitchen environmentOccasional pushing, pulling, lifting or carrying up to 40lbSchedulePart-TimeFlexible hours, mixed shifts, days and evenings, weekends and weekdaysCompetitive salaryJob Type: Part-timeSalary: $15.25-$21.63 per hourSchedule:4 hour shiftDay shiftMonday to FridayMorning shiftWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Saint-Hubert, QC: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Boul Cousineau, Saint-Hubert, QC\"\n        },\n        {\n            \"id\": \"1354847C13A9DA009535615DB4F40BE9\",\n            \"cityName\": \"127 Rte Du Canton, Brownsburg-Chatham, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d630566cb5d5ce14\",\n            \"jobName\": \"14h-22h Service à La Clientèle Soir/ Evening Shift CusTomer Service 2pm To 10pm\",\n            \"companyName\": \"Tim Hortons | 1550\",\n            \"rowSalary\": \"$15–$20 an hour\",\n            \"date\": 1694449025811,\n            \"dateOfPosted\": 1692747110982,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6256958,\n                    \"lon\": -74.4637136\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mont-Tremblant\",\n                \"formattedAddress\": \"Rte du Canton, Argenteuil, QC J0V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laurentides\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mont-Tremblant\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Nous sommes présentement à la recherche de candidats pour un poste de service à la clientèle pendant les heures de 14h-22h En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement Exemples d’expérience antérieure : Pas d’expérience, pas de problème, juste avoir une bonne attitude ! Barista chez Starbucks Caissier ou Caissière chez McDonald’s A travaillé dans n’importe quel Tim Hortons Cuisiner chez Wendys, ou a&w A travaillé dans n’importe quel fast-food ou restaurant dans le passé en tant qu’aide de cuisine Nettoyage ou entretient dans un entrepôt comme Amazon, Costco, Super C Préparation des aliments chez Subway ou Freshii Expérience antérieure en tant que boulanger dans une boulangerie ou une pâtisserie Service à la clientèle chez Couche Tard ou dans un dépanneur, ou station service Premier emploi, à temps partiel ou à temps plein REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder un bel esprit d’équipe et avoir un sens d’empressement au travail / Have a team spirit and being able to work in a fast paced environement Disponibilités plusieurs jours de la semaine de 14h-22h /Available several evenings a week from 14-22 Notre grand rêve ne peut être réalisé qu’en nous entourant de personnes rares et spéciales qui veulent réussir avec nous. Nous sommes guidés par les valeurs suivantes : Méritocratie: Votre croissance est entièrement basée sur ce que vous faites et comment vous le faites Créativité: Trouver des façons de faire les choses différemment pour les rendre meilleures Travail d’équipe : Nous ne pouvons gagner ensemble qu’en dépendant les uns des autres Authenticité: Être une bonne personne, travaillante Diversité : Un large éventail de voix et de perspectives nous rend plus forts L’entreprise est dirigée par des leaders passionnés qui ont à cœur le développement et le bien-être de leurs employés. Notre priorité est de créer un environnement de travail où les membres de l’équipe sont encouragés à s’entraider, à se valoriser mutuellement à travers diverses opinions afin que nous puissions collectivement gagner en tant qu’équipe. Rejoignez une équipe gagnante, rejoignez-nous afin que nous puissions nous rejoindre dans notre voyage pour réaliser notre grand rêve! Ce sont les gens chez Tim qui font que Tim est… Tim! En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Rte Du Canton, Brownsburg-Chatham, QC\"\n        },\n        {\n            \"id\": \"7A9256B90528015CE568ADE3F74A4A18\",\n            \"cityName\": \"5800 Avenue Christophe-Colomb, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0f769f2133bf5b9a\",\n            \"jobName\": \"Caissier, Caissière Service à La Clientéle / Cashier Customer Service\",\n            \"companyName\": \"Tim Hortons | Damsar, Inc.\",\n            \"rowSalary\": \"$15.25–$16.25 an hour\",\n            \"date\": 1694448712446,\n            \"dateOfPosted\": 1692747502876,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5455115,\n                    \"lon\": -73.6189251\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Ave Christophe-Colomb, Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Primes de nuit Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement As a Team Member at Tim Hortons, your top priority is guest satisfaction. Whether you are the very first person our guests encounter, or produce the best loved bakery items that our guests come to enjoy, you will have the opportunity to deliver and create exceptional guest experiences. Your energy and passion for guest service are what make you a top team member in this fast-paced environment while your ability to multi-task and communicate with your fellow team members will contribute to your success. Why work for us? Night Shift Premium $ Paid Training Flexible schedule Scholarship Program Opportunities Amazing growth opportunities! REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder une esprit d’équipe et avez un empressement au travail / Have a team spirit and being able to work in a fast paced environement Faire parti de l'équipe / Be part of the team Être une personne ponctuelle et prête à travailler / Able to be on time and ready to work Être capable de lever 25 livres / Must be able to lift 25 lbs En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Avenue Christophe-Colomb, Montréal, QC\"\n        },\n        {\n            \"id\": \"93B077962C089E5B8D129665D12EC3DD\",\n            \"cityName\": \"69 Queen St E, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=02aafa7d74ed6618\",\n            \"jobName\": \"Entry Level Sales, Marketing And Customer Service\",\n            \"companyName\": \"Agm Advantage\",\n            \"rowSalary\": \"$650–$700 a week\",\n            \"date\": 1694447971101,\n            \"dateOfPosted\": 1693585376611,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6637879,\n                    \"lon\": -79.3278595\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Queen St E, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 650.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    650.0\n                ],\n                \"range\": {\n                    \"gte\": 650.0,\n                    \"gt\": null,\n                    \"lte\": 650.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Entry Level Sales, Marketing and Customer Service in TorontoThis is NOT a remote positionLooking for an entry-level position that combines sales, marketing and customer service?Look no further. Submit your resume here for immediate opportunities!Benefit from our comprehensive training and full mentorship.AGM Advantage is a winning team of highly motivated business professionals! With our expansive background in marketing and business development, we create the most impressive campaigns for our world-class business and nonprofit clients! Our staff and team members can most definitely build on our expanding reach for a brighter personal and professional future.We specialize in direct marketing strategies. We offer entry-level positions only and solely promote from within.This is a triple-edged entry-level position that is available now.Apply Today!Entry Level Sales, Marketing and Customer Service in TorontoThis is not a remote positionJob requirements:Over 18 years oldSpeak good EnglishHolder of HS Diploma or higherCitizen, resident or authorized to work including international students studying in CanadaAble to commute to work to any of our locationsRecommended SkillsBusiness DevelopmentCoaching And MentoringDirect MarketingEnglishMarketingCampaignsThink you're the perfect candidate? Apply to this job.Apply NowJob Type: Full-timeSalary: $650.00-$700.00 per weekFlexible Language Requirement:French not requiredSchedule:Day shiftSupplemental pay types:Bonus payAbility to commute/relocate:Toronto, ON M5C 1R8: reliably commute or plan to relocate before starting work (required)Application question(s):Are you at least 18 years old?Language:English (required)Work Location: In person\",\n            \"location\": \"Queen Street East, Toronto, ON\"\n        },\n        {\n            \"id\": \"8FCD2712DB5C289836BF537D05AA52F0\",\n            \"cityName\": \"1067 Ontario St, Stratford, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cdc6f11a039f21f2\",\n            \"jobName\": \"Customer Service And Sales\",\n            \"companyName\": \"Simplyfixit\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694447807026,\n            \"dateOfPosted\": 1692743846584,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.3711286,\n                    \"lon\": -80.96233149999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Stratford\",\n                \"formattedAddress\": \"Ontario St, Stratford, ON N5A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Perth County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Stratford\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"SimplyFixIT is a cell phone repair company. We specialize in the repair of all phone models, tablets and laptops. We are currently looking for an enthusiastic person who is able to learn and adapt to the situation at hand.We are looking for experienced person capable of sales and performing easy repairs such as screen replacement, battery replacement or normal diagnosis. Training will be provided just need to be able to adapt and learn.Work:Frequently communicating with customers - providing status updates of repairsQuickly diagnosing device issuesExplaining options for repair and pricingPerforming fast-paced repairsTicket updates for every repair.Opening & closing tillCleaning & organizing shopInventory count, making sure we have enough stock, placing ordersSkills & Experience Required:Repairing small devices such as cell phones, tablets, and computersAbility to communicate effectively and promote salesTroubleshooting computer software-related issuesExcellent customer service & communication skills.Minimum 1 year of sales experiencePosition details: Customer Service & Sale Rep - Permanent Full-Time or Part-TimeWould you like to be part of our team? Please send in your resume.Job Type: Full-timeSalary: $15.50-$16.50 per hourSchedule:8 Hour Shifts5 Days a weekExperience:Customer Service: 1 yearLanguage:English (Required)Work remotely:NoJob Types: Full-time, Part-timePart-time hours: 32 per weekSalary: $15.50-$16.50 per hourBenefits:Store discountSchedule:8 hour shiftEvery WeekendMonday to FridayWeekends as neededApplication question(s):Strong Communication Skills RequiredExperience:Customer service: 1 year (required)Work Location: In personExpected start date: 2023-09-04\",\n            \"location\": \"Ontario St, Stratford, ON\"\n        },\n        {\n            \"id\": \"1407218E52E6C6CCE53D035A0846F283\",\n            \"cityName\": \"Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bab489c95beff3ff\",\n            \"jobName\": \"Part Time Customer Service Associate\",\n            \"companyName\": \"Spence Diamonds\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694447685247,\n            \"dateOfPosted\": 1692744893717,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"How would you like to work with the happiest customers on earth? People in love are the happiest people on earth, and they’re also our everyday customers! Are you looking to add some sparkle to your career? If so, look no further! We are currently looking for our next dazzling gem to join our customer service team and the Spence family! Who we are… Founded over 40 years ago, Spence Diamonds is a proudly Canadian Company. We have grown and evolved over the years with a unique approach to becoming an industry leader in cut quality and the customer experience. We take shopping for an engagement ring to the next level - with open show cases, displaying top of the line designer prototypes, accompanied by an unparalleled diamond education. Since introducing Spence Artisan Created Diamonds, we are now blazing the way for reasonably priced, ethical and sustainable diamond choices! With unparalleled access to these diamonds, we truly are the best choice for our customers. Our people are the center stone of our business. Our mission is to deliver an exceptional customer experience in a fun and inclusive work environment while giving our people room to grow their careers and live the life they love. What we offer…Attractive compensation packagesAmazing employee, friends & family discounts on our productsA variety of Learning and Development resourcesSpecial gifts to celebrate employee work anniversaries, birthdays, and personal milestonesRegular celebrations & employee incentive programsTeam building events and activitiesOpportunity to grow within the companyContinuous on the job training, support and mentorshipThe role As a member of customer service team at Spence, you embody our culture and values by providing an exceptional customer experience. You have a passion for our products and are comfortable assisting with presenting valuable products and representing products with confidence.You are the backbone of our store. You promote accuracy within the store through exceptional process handling which includes data management, finances, task management. You professionally act as the first and last point of contact for our clients on the phone, through email and in person within the store. On any given day you’re handling all payments & transactions, answering incoming phone calls and emails, managing inventory counts, shipping & receiving, assisting in store maintenance and cleanliness, showroom upkeep, and supporting the Sales Consultants and Management. Most importantly you ensure our customers are top priority and are all given the full Spence experience.Greet every customer in a friendly manner and provide extraordinary customer service Offer sales support to our sales teams during busy periods and take customers through our showroom experience. Ability build rapport with clients and identify client needs through a sales approach.Inspect and process incoming jewelry repairs. Follow up with customers via phone or email regarding their repair orders. Complete quality checks and provide completed orders to customers at pickup, ensure that customers have a great experience.Answer all phone and email correspondences Cash handling and end of day processingAssist in coordinating the showroom appearance, merchandising and store tidiness.A few things we hope you have…You’re detailed oriented, have excellent time management skills and are willing to embrace a structured processYou have excellent time management skills and make great decisions about which work to prioritizeYou have strong problem solving, and conflict resolution abilitiesYou are energetic, outgoing and have strong customer relationship skillsYou have excellent verbal and written communication and are comfortable professionally communicating face to face, over the phone and in writing.You have at least a years’ experience working in a customer service environmentYou’re used to working with a computer and are willing to learn new technology and softwareYou have a minimum availability of 3 days a week, and of those 3 days at least 1 weekend dayBonus points if you have previous administrative or reception experienceCompensation $16.50/Hour\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"22C9B02B78F6ADCCF6B003AD287682B0\",\n            \"cityName\": \"3767 Strandherd Dr, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=32926df925643475\",\n            \"jobName\": \"Customer Service Advisor\",\n            \"companyName\": \"Mr. Lube - Barrhaven\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694447675946,\n            \"dateOfPosted\": 1692745144726,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.2700502,\n                    \"lon\": -75.747478\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Strandherd Dr, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Upper tech ad:Updated: August 19th 2023Location: 3767 Strandherd Dr, Nepean ONWe're not looking for someone who \\\"needs a job.\\\" We're looking for someone who can make a difference in our customers' experience, learn some skills and earn an income. Sales experience is preferred.Job Overview: Ready for a Change?Named one of Canada's Best Managed Companies & 10 Most Admired Corporate Cultures, Mr. Lube offers a fun work environment, competitive wages, and the best paid training and advancement program in the industry for our employees.Customer Service RepresentativeIn this role, you'll get to take full ownership over the complete customer experience. We will provide full training so you can confidently work directly on a customer's car and be in control of the entire customer service and sales cycle; from walking a customer through the services on a car to completing the tasks and sale.A Customer Service Representative at Mr. Lube spends:70% of their time providing Customer Service:Greeting customersDiscussing products and services with customersProviding recommendations based on vehicle assessmentsSuggesting new products and servicesWorking with a close knit team and communicating with Lower Technicians30% of their time completing Mechanical Duties:Oil and filter changesReplacement of vital car fluids (e.g. coolant, transmission, and transfer case fluid)Replacement of parts under the hood (e.g. air filters, headlights, taillights and wiper blade replacements)Refilling performance enhancers to ensure the car runs smoothly (e.g. engine stop leak, oil treatment, and valve cleaner)Performing courtesy checks on all vehicles (e.g. topping up fluid levels, cleaning windows and checking tire pressure)Performing tire changes and rotationsWhat else can you expect from a career at Mr. Lube?A fun environment with the best paid training in the industry Excellent employee incentives and recognition. With constant learning and growth opportunities. A company, management and team that cares. If you have a positive attitude, flexible availability, are driven to succeed, have a willingness to learn, and genuinely like interacting with people, put yourself in the driver's seat at Mr. Lube!Please contact:Denis GagneArea ManagerJob Types: Full-time, Part-time, PermanentPart-time hours: 22-44 per weekSalary: From $16.50 per hourExperience:service advisor: 1 year (preferred)Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Strandherd Dr, Nepean, ON\"\n        },\n        {\n            \"id\": \"EEF2ABC491BC655039503C7589E0AF19\",\n            \"cityName\": \"1000 Rue Legendre Ouest, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=166aa4452d6ac313\",\n            \"jobName\": \"Caissier, Caissière Service à La Clientéle / Cashier Customer Service\",\n            \"companyName\": \"Tim Hortons | Damsar, Inc.\",\n            \"rowSalary\": \"$15.25–$16.25 an hour\",\n            \"date\": 1694447675934,\n            \"dateOfPosted\": 1692747501284,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.53660929999999,\n                    \"lon\": -73.6519732\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Legendre O, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"En tant que membre de l’équipe, votre première priorité est la satisfaction de l’invité. Que vous soyez la première personne que nos invités rencontrent ou que vous prépareriez nos produits de pâtisserie de qualité que nos invités viennent déguster et adorent, vous aurez l’occasion d’offrir et de créer des expériences d’invité exceptionnelles. D’une part, votre énergie et votre passion pour le service aux invités sont ce qui fait de vous un membre de l’équipe important dans cet environnement dynamique. D’autre part, votre capacité à faire plusieurs choses à la fois et à bien communiquer avec les autres membres de votre équipe contribueront à votre succès. Pourquoi travailler pour nous? Primes de nuit Horaires flexibles et variables Formation complète Rabais sur les produits Tim Hortons Possibilité d’être à temps plein ou temps partiel Programme de bourses d’études Équipe Tim Hortons Possibilités d’avancement As a Team Member at Tim Hortons, your top priority is guest satisfaction. Whether you are the very first person our guests encounter, or produce the best loved bakery items that our guests come to enjoy, you will have the opportunity to deliver and create exceptional guest experiences. Your energy and passion for guest service are what make you a top team member in this fast-paced environment while your ability to multi-task and communicate with your fellow team members will contribute to your success. Why work for us? Night Shift Premium $ Paid Training Flexible schedule Scholarship Program Opportunities Amazing growth opportunities! REQUIREMENTS Posséder une passion pour le service aux invités et aimez créer des expériences d’invité exceptionnelles / Have a passion for customer service and love to create an exceptional customer experience Posséder une esprit d’équipe et avez un empressement au travail / Have a team spirit and being able to work in a fast paced environement Faire parti de l'équipe / Be part of the team Être une personne ponctuelle et prête à travailler / Able to be on time and ready to work Être capable de lever 25 livres / Must be able to lift 25 lbs En présentant ma candidature, je reconnais que la plupart des restaurants Tim Hortons® sont détenus et exploités de façon indépendante par des franchisés. À cet égard, je comprends que je peux postuler pour un restaurant Tim Hortons ® appartenant à un franchisé et, si c’est le cas, les décisions d’embauche seront prises par le franchisé. Des accommodements peuvent être offerts sur demande.\",\n            \"location\": \"Rue Legendre Ouest, Montréal, QC\"\n        },\n        {\n            \"id\": \"0DBF7D86D5657D48198C5D93163AA0F5\",\n            \"cityName\": \"2800 Pasqua St N, Regina, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fbd6f673fd453388\",\n            \"jobName\": \"Customer Service/Inside Sales Representative\",\n            \"companyName\": \"Meridian Manufacturing Inc.\",\n            \"rowSalary\": \"From $40,000 a year\",\n            \"date\": 1694447449857,\n            \"dateOfPosted\": 1692744157584,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.4985405,\n                    \"lon\": -104.6410045\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Regina\",\n                \"formattedAddress\": \"Pasqua St N, Regina, SK, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": \"Sherwood No. 159\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Regina\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Meridian Mfg. Inc. is North America's innovative leader of all-welded smoothwall bulk storage and bulk seed tenders. Meridian's smoothwall hopper bins, tanks and silos are the premier choice for on farm storage of grain, feed and fertilizer and also in virtually all commercial bulk storage applications, including plastics, fertilizers, powders and liquids, chemicals and much more. Meridian's Bulk Seed Tender is the #1 choice by farmers and industry leaders as the safest and easiest method of handling and transporting bulk seed.Meridian is a member of The Westman Group of Companies, a dynamic entrepreneurial group who values safety, health, community, relationships, growth and fiscal responsibility.Meridian Manufacturing Inc., Regina, Saskatchewan has an opening for a Customer Service Representative.SummaryThis position is responsible for providing day to day support to dealers by processing orders from time of receipt to final delivery. This involves processing the necessary documentation and maintenance of dealer orders in the WERPS business system and other required information databases. They work together with the RSM’s, the Commercial Sales Team and the dealer network to achieve the annual sales budget through the promotion of Meridian products. They handle inbound sales queries, making sales, quoting and managing projects.ResponsibilitiesOrder entry into system for customer orders and booking programsTake all end user calls and direct them to a dealerTake all dealer calls and provide verbal quotes over the phone when necessary, or email quotesManage booking programs; this includes sending order confirmation letters, requesting post dated cheques, and managing the post dates cheques as they are receivedMonitor the backlog of all orders in Enterprise Management System to ensure that orders are being shipped and invoiced on timeHandle paperwork for customer pick-upsAssist and/ or provide support to team membersEducation and Knowledge Required:Strong Data Entry and Attention to DetailHigh level of proficiency with Word, Excel and OutlookExperience in agricultural, commercial and industrial sales an assetAbilities and CompetenciesAble to effectively communicate in English both verbally and in writingSolid negotiation and conflict resolution skillsExcellent teamwork and teambuilding skillsStrong problem identification and problem resolution skillsAdvanced communication and interpersonal skills requiredAccuracy, attention to detail, strong problem solving, analytical and reporting skillsAbility to handle multiple priorities and meet deadlines in a fast-paced environmentTime and priority management skills, ability to identify important/urgent information and prioritize daily tasksResourcefulness and ability to take the initiative to expedite and solve customer complaints, concerns and inquiriesCreativity and ability to continuously improve nature of work for projects and to streamline work process and flowJob Type: Full-timeSalary: From $40,000.00 per yearBenefits:Dental careDisability insuranceEmployee assistance programExtended health careLife insuranceOn-site parkingProfit sharingVision careWellness programSchedule:8 hour shiftDay shiftMonday to FridayAbility to commute/relocate:Regina, SK: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Pasqua St N, Regina, SK\"\n        },\n        {\n            \"id\": \"4E8D17F993770093C121085DA6B715D4\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cd831c09beaf8658\",\n            \"jobName\": \"Customer Service Fundraiser\",\n            \"companyName\": \"Inner Circle Marketing\",\n            \"rowSalary\": \"$17–$22 an hour\",\n            \"date\": 1694447344840,\n            \"dateOfPosted\": 1692738783357,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Inner Circle Marketing is looking for customer service fundraisers to support on-site and in-person community fundraising campaigns and create a significant social impact on behalf of charities and non-profit organizations.We offer the training and support necessary to ensure that as the newest member of our team, you achieve optimal results and enjoy a rewarding and fulfilling work experience. Our culture stands out as being one of inclusion, diversity, camaraderie, and equal opportunity. Our goal is to unlock your potential and allow you to do the best work of your life!Requirements:Authorization to work in CanadaSpoken English (Intermediate)Availability to work on-site (in-person)Availability to work 30 – 40hrs per weekCompletion of criminal record check (no major offences permitted)We are looking for:Experience in sales, fundraising, hospitality, or public relations is an asset but not required – we provide full, paid training!Effective communication skills and the ability to present information clearly.Quick learners with a great attitude, enthusiastic personality, and a desire to make a difference!Fun, Friendly, Personable, Outgoing People!What we offer:Full time employment position with guaranteed hourly wageHourly pay starting at $17 per hour, with hourly incentives up to $22 per hourNote we pay weeklyExtended health care benefits (after 3 months of full-time employment)Shifts available from Monday to FridayDaily training and continuous supportFor those who qualify and wish to advance we offer advancement within the companyCompetitive and fun team cultureOpportunities to travelExpectations:Participate in local awareness and fundraising campaigns in residential communities and/or high traffic points in the cityActivities include neighborhood canvassing, promoting our clients at mall kiosks, events, and a variety of other in-person (face-to-face) fundraising activitiesFundraise on behalf of some of Canada’s top non-profit organizations including the Canadian Red Cross, Plan Canada, BC Children’s Hospital, WWF, the Canadian National Institute for the Blind, and more!Be comfortable with daily one-on-one interaction with potential donorsBe open to receiving feedback and support from managementNext steps:When you apply, our team will review your application. If you qualify, our team will contact you via phone or email to arrange an initial in person interview. This interview will be a brief introduction to our company and the position. If the hiring managers feels you are a potential candidate for the position, we have a 2-step interview process. The 2nd interview will consist of a job shadow to give you a bigger picture on how represent our clients.Learn more about us through the link below:https://innercirclemarketing.ca/Equal Employment Opportunity StatementInner Circle Marketing is an equal opportunity employer and considers qualified applicants for employment without regard to race, color, creed, religion, national origin, gender, sexual orientation, gender identity and expression, age, disability, veteran status, or any other protected factor. We encourage talented individuals of all backgrounds to apply.We look forward to meeting you!Job Types: Full-time, Part-time, PermanentPart-time hours: 30-40 per weekSalary: $17.00-$22.00 per hourBenefits:Company eventsCompany pensionDental careExtended health careLife insuranceRRSP matchVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayNo weekendsSupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"CEC108A6382C869C8BC9E12F593B94B3\",\n            \"cityName\": \"264 Lincoln St, Lunenburg, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=14f93fa3125feadf\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Kinley Drug Co. Ltd.\",\n            \"rowSalary\": \"$14.75–$15.00 an hour\",\n            \"date\": 1694447139820,\n            \"dateOfPosted\": 1694447139632,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.377277,\n                    \"lon\": -64.3096741\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lunenburg\",\n                \"formattedAddress\": \"Lincoln St, Lunenburg, NS B0J 2C0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lunenburg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"cashierassisting customersstocking and cleaning product shelvesmaintaining inventoryJob Types: Full-time, PermanentSalary: $14.75-$15.00 per hourBenefits:Dental careDisability insuranceEmployee assistance programExtended health careLife insuranceStore discountVision careWork Location: In personApplication deadline: 2023-09-30\",\n            \"location\": \"Lincoln St, Lunenburg, NS\"\n        },\n        {\n            \"id\": \"4E71691042CC3BE4D75CB78DEE3ED04A\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d165ae26c1840c3f\",\n            \"jobName\": \"Customer Service RepresentAtive - Work At Home\",\n            \"companyName\": \"Inspire Direct Marketing\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694447132334,\n            \"dateOfPosted\": 1690621825979,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative - Work at Home$20.00-$24.00/hour + Benefits.Quit your day job, come help us save the world!If you are a mature sales or call centre representative, come join our team of professional fundraising agents to elevate your career and use your skills to help make our world a better place.We are a Canadian agency on a mission to inspire fundraising. We provide a warm and friendly voice to the largest and most respected charities in Canada. Our team is passionate, engaged and extremely effective. We call existing supporters to raise funds for important causes around the globe. So while there are no cold calls or high-pressure tactics, we are a performance team and results matter. We hope they motivate you as well.This is a full-time, outbound, work-from-home position.Job Description:Inspire fundraisers connect with, laugh with and uplift the lives of our client's donors - even if just for a few moments. Their work goes beyond raising funds for some of the world's most worthwhile causes; it's about creating a human connection with every donor. They enjoy being able to deliver world-class results autonomously, while representing great causes and being part of a passionate team.Each day and each call can be different. We find new child sponsors, welcome new donors, renew event participants, and invite donors to give monthly. We thank, connect, engage and inspire. We look for creative new ways to delight on every call. We are all about teamwork, customer connections and most importantly, having fun while we do it.Some of the Benefits:Permanent, full-time employment with consistent hours and growth opportunities Premium wages, $20.00 - $24.00 hourly w bonuses Engagement with world-class charitable organizations 100% paid training and health benefits (at 3 months) Trip incentives (to visit child sponsor communities), bonuses and rewards Training opportunities, lunch-and-learns, workshops Team culture and activities, ice breakers, community eventsTo be an Inspire Fundraiser:You should bring:A minimum of 2 years' customer service and call centre experience You love talking to people and are a great communicator You are looking for full-time hours, 40 hours a week Availability to work evenings (1:00PM - 10:00PM EST Mon -Thu, 10:00AM - 7:00PM EST Fri) Availability to work occasional Saturday shifts (10:00AM to 5:00PM) You are technically savvy and self-reliantYou should have:A professional work from home office space newer-version Windows PC or laptop computer (Apple or Mac are not supported) High-speed cabled internet connection (min 25 mbps down/5 mbps up) A USB headset and webcamIf you are looking to be part of something bigger than yourself and to join a mature call centre team with opportunities to grow and support your peers; we would love to hear from you.Inspire is committed to Employment Equity and Diversity. We do not discriminate against any employee or applicant for employment because of national origin, race, religion, ethnicity, age, disability, sex, sexual orientation, gender identity, veteran status or any other federal, provincial, or local protected class. We welcome and encourage applications from persons with disabilities. Accommodations are available upon request for candidates who participate in all aspects of the selection process.Please note: We thank everyone for their interest however only the best qualified candidates may be contacted.\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"CA53B7C833E16B51226DC83B3FE45959\",\n            \"cityName\": \"266 Dundas St E, Trenton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ce71d80b57955f41\",\n            \"jobName\": \"Budtender - Customer Service\",\n            \"companyName\": \"Your Local Cannabis\",\n            \"rowSalary\": \"$16.50–$18.00 an hour\",\n            \"date\": 1694447062043,\n            \"dateOfPosted\": 1692744638399,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.1044969,\n                    \"lon\": -77.5612999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Quinte West\",\n                \"formattedAddress\": \"Dundas St E, Quinte West, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hastings County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Quinte West\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usYour Local CannabisYour Local Cannabis is your neighborhood hub for the best and most extensive selection of locally grown, high-quality cannabis products in Ontario.Note: Weekend (Fri-Sun) availability required.Responsibilities:Greet customers throughout the day in a friendly and welcoming mannerAdhere to all company policies, procedures, and regulation compliance.Ensure reconciliation of inventory and following up on any discrepanciesProcess all customer payments on our POS system.Staying up to date with product knowledge and company information.Support and participate in store opening and closing checklists.Assuring all guest are over 19+ upon entrance of storeAbide by all applicable legal regulations and act as a socially responsible cannabis vendor.Assist with store maintaining and housekeeping including stocking shelves.Ensure the cleanliness of the store is maintained on a daily basisOther tasks as assigned by retail managementQualifications:19+ years oldOUTGOING PERSONALITY who enjoys customer serviceValid Cannsell certificate (must have before first shift)Pre employment criminal record check (must have before first shift)Able to lift 5-30 lbsAble to work flexible hours and weekendsPOS Software experience an assetAbility to work in a fast-paced environmentMust be a team playerExcellent written, oral, and interpersonal skillsAvailability for shift work any time between 9:00am to 11:30pm, Monday to SundayBasic skills in math and proficiency as a cashierExtensive knowledge of cannabis products and accessories is an assetWhat we’re looking forA passion for customer experience and cannabis.Previous retail/cashier experience (customer experience associate/greeter)Outgoing, personable and professional. We’re building relationships and trust with our clients and community.Comfortable working in a fast paced environment – good organizational and communication skills.Coachable.Leadership skills.Availability to work 12 hour shifts an asset.COVID-19 precaution(s):Social distancing guidelines in placeAll customers and employees required to wear masks inside storeSanitizing, disinfecting, or cleaning procedures in placeLicense/Certification:CannSell (Required for first day of work)Criminal Background ( Required for first day of work )Experience:Not requiredPart-time: 20 - 30 hours per weekFull-time: 40 hours per weekJob Types: Full-time, Part-time, PermanentSalary: $16.50 to $18.00 /hourJob Types: Full-time, Part-time, PermanentPart-time hours: 20-40 per weekSalary: $16.50-$18.00 per hourBenefits:Flexible scheduleOn-site parkingSchedule:10 hour shift12 hour shift8 hour shiftDay shiftEvening shiftHolidaysWeekends as neededSupplemental pay types:Overtime payAbility to commute/relocate:Trenton, ON K8V 5Z9: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Work Location: In personApplication deadline: 2023-09-09\",\n            \"location\": \"Dundas Street East, Quinte West, ON\"\n        },\n        {\n            \"id\": \"C7C30443A2F2FD4402C5BB47201DA81A\",\n            \"cityName\": \"1310 St James St, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1cfdf27a7d20384b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Carstar Manitoba\",\n            \"rowSalary\": \"$32,000–$40,000 a year\",\n            \"date\": 1694447019091,\n            \"dateOfPosted\": 1692739232863,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8973035,\n                    \"lon\": -97.20034720000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"St James St, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 32000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    32000.0\n                ],\n                \"range\": {\n                    \"gte\": 32000.0,\n                    \"gt\": null,\n                    \"lte\": 32000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CARSTAR Manitoba is hiring! We are currently seeking a customer service representative (CSR) to join our dynamic team in Gimli, Manitoba!As the first point of contact in the stores, the customer experience representative creates the first impression that customers and visitors will have when the call or walk in to our shops. This person is responsible for creating an environment that promotes friendliness, and a high level of service.As a CSR, you will be responsible for assisting with the daily operations of the store, and keeping paperwork up to date. You will be responsible for assisting the store managers and techs with keeping performance and productivity within the store at an exemplary level. The ideal candidate loves talking to people and proactively solving issues.Responsibilities:Communicate with customers via phone, email and chatProvide knowledgeable answers to questions about product, pricing and availabilityWork with internal departments to meet customer's needsData entry in various platformsUpkeep of overall cleanliness of the store/reception areaBooking in customers for repairsChecking in/out customer vehiclesOpening new work ordersInsurance/MPI claimsRetail salesOrdering partsPosting invoices, labour times, and payments into computerKeeping customers up to date with the repair processPreclosing and closing work ordersReceive and enter payments into the systemEnsuring the deposit book logs are accurate and entered dailyPrepare bank depositsEnsuring payroll is completed and submitted by the biweekly scheduleMake sure all jobs are closed for the end of the monthAssisting with cleaning vehicles for deliveryAssist Shop Manager with other tasks as requestedQualifications:Excellent phone etiquette and excellent verbal, written, and interpersonal skillsAbility to multi-task, organize, and prioritize workPost-secondary education or equivalent experience in customer serviceComfortable working on the computer in numerous programsComfortable working on the phonesExperience with MPI policies and procedures considered an assetExperience in the auto body industry an assetClass 5 Drivers licenseHighly organizedDetail orientatedWhy Choose CARSTAR?:Monday to Friday hoursFull benefits package after 3 monthsRRSP program after 1 yearCompetitive compensation based on experienceCareer planning and advancement opportunitiesPotential for full-time hoursIf you are seeking to advance your career by being part of a fast-growing company, we want to hear from you! Please send your resume and a brief cover letter to us at the link provided. We appreciate all applications we receive, however only candidates selected for an interview will be contacted.Job Types: Full-time, Part-time, PermanentSalary: $32,000.00-$40,000.00 per yearBenefits:Dental careEmployee assistance programExtended health careOn-site parkingRRSP matchVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayExperience:MPI: 1 year (preferred)Automotive Repair Shop: 1 year (preferred)Licence/Certification:Driving Licence (required)Work Location: In person\",\n            \"location\": \"St James St, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"8A601757F2C5F7EDD3CEE4D2ECFB0797\",\n            \"cityName\": \"478 Woody Rd, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8d6129f8d76598fd\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"U-Haul\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694446955153,\n            \"dateOfPosted\": 1662825088804,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.467517,\n                    \"lon\": -79.6876659\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"START TODAY, GET PAID TODAY! New hires eligible for BONUS!Are you a people person? Do you love helping others? U-Haul is in search of friendly, motivated people for the position of Customer Service Technician. As a Customer Service Technician, you will work as part of a supportive team to be the face of U-Haul’s exceptional service, ensuring customers get all the help they need on their journeys.U-Haul Offers Customer Service Representative:Paid holidays, vacation, and sick daysCareer stabilityOpportunities for advancementValuable on-the-job trainingComplete Benefit Plan if eligibleRRSP payroll deduction planDeferred profit-sharing plan if eligible.Discounts on Dell computers, hotels, and moreCustomer Service Representative Responsibilities:Assist customers inside and outside U-Haul Center with U-Haul products & servicesUse smartphone-based U-Scan technology to manage rentals and inventoryMove and hook up U-Haul trucks and trailersClean and inspect equipment on the lot including checking fluid levelsAnswer questions and educate customers regarding products and servicesPrepare rental invoices and accept equipment returned from rentalCustomer Service Representative Minimum Qualifications:Valid driver’s license and ability to maintain a good driving recordHigh School Diploma or equivalentWork Environment:The work involves moderate risks or discomforts which require special safety precautions, e.g., working around moving parts or machines, fumes, or irritant chemicals. May be required to use protective clothing, or gear such as masks, goggles, gloves or shields.Physical Demands:The work requires some physical exertion such as long periods of remaining stationary, moving around an office and occasionally outdoors, positioning oneself to reach objects at varying heights, and moving equipment weighing a minimum of 50 lbs. assisted or unassisted.U-Haul is an equal opportunity employer. All applications for employment will be considered without regard to race, color, religion, sex, national origin, physical or mental disability, veteran status, or any other basis protected by applicable federal, provincial, state, or local law. Individual accommodations are available on requests for applicants taking part in all aspects of the selection process. Information obtained during this process will only be shared on a need to know basis.Job Type: Part-timePart-time hours: 30 per weekSalary: $17.00-$18.00 per hourSchedule:8 hour shift\",\n            \"location\": \"Oakville, ON\"\n        },\n        {\n            \"id\": \"C19F08300CB7A33E6C0E639CC9D6E76C\",\n            \"cityName\": \"Happy Harry's in Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9355df49b9693429\",\n            \"jobName\": \"Cashier/Customer Service Representative\",\n            \"companyName\": \"Happy Harry's\",\n            \"rowSalary\": \"$15.50–$17.00 an hour\",\n            \"date\": 1694446754876,\n            \"dateOfPosted\": 1692743598490,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6660885,\n                    \"lon\": -63.56756309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Description: This position is responsible for providing exceptional customer service through face to face when they enter the premises or by answering the incoming calls and properly directing them or taking messages. This position is also responsible for cashier duties, which include cash/credit transactions; delivery/pick up; providing customer estimates; reconciliation; customer enquiries; etc. This position is also responsible for ensuring that all merchandise and work areas are maintained in a clean and safe manner.DUTIES AND RESPONSIBILITES**Abide by and adhere to all tasks and procedures outlined in the HH Employee Manual and any other distributed documents.Comply with all health and safety regulations and wearing appropriate personal protective equipment as required.Report for work as scheduled wearing the appropriate clothing and logoed HH attire as may be required.Processing/reconciling payment transactions.Processing returns.Processing paperwork (i.e. door orders, invoices, pick ups, etc.)Creating signage, schedules, etc. for store(s) use.Merchandising and restocking front end area.Answering incoming calls and taking messages or directing callsMix paint.Conduct inventory lists when stock is getting low.Clean up work area daily, ensuring site is kept tidy and safe at all times.Perform any other tasks as assigned by supervisors.Reconciliation of Cash, Debit or Credit Transactions – as per Cash Reconciliation Policy.Tools & EquipmentCompany specified tools for this position include but are not limited to:POS System (Counter Point - NCR)Computer and various programsMicrosoft Office would be considered an AssetPaint shakerTelephoneCalculatorLaminatorAdobe Creative CloudSkillsCompletion of High School or equivalent.Previous customer service/cashier experience would be considered an asset.Previous customer service experience in a construction product environment would be an asset.Certifications in WHMIS and First Aid would be considered an asset.Ability to communicate clearly and concisely in English both verbally and in writing.Excellent analytical and problem solving skills.Ability to be self-motivated.Ability to train other staff as needed or if needed for same skills.Strong organizational skills and must be detail oriented and flexible.Ability to work as part of a team and be a team player.Proven computer skills and past experience with POS systems.Ability to provide criminal records background check.Decision MakingThis position makes decisions only within the scope of the job description and/or specific instructions from their supervisors. This position is accountable for the decisions he/she makes.Inside/Outside Relationships**This position deals with customers, co-workers, suppliers on a regular basis and must be able to maintain a professional and business-like attitude at all times.Position Conditions**This position works indoors and has the flexibility to move around during a shift, including sitting, standing, twisting, bending and lifting. This position works on a computer and must be able to focus for long periods of time. This position uses the phone as a tool on a routine basis and must be able to have good hearing skills. This position has some exposure to dust, dirt, fumes, heat, cold, noise, and inclement weather. This position may require the lifting of items up to 50 lbs. This position requires visual concentration to complete daily tasks. This position requires good hearing to listen for unusual sounds in equipment and site management.FinancialThis position has financial responsibility in maintaining correct cash/credit processing handling when dealing with customer orders and estimates. This position has a high level of accountability in the flow of their work and data entry being thorough and 100% accurate.Supervisory/ManagementThis position has no supervisory responsibility.Job Type: Part-time or Full-Time (Will be discussed at interview)NoJob Types: Full-time, Part-timePart-time hours: 30-42 per weekSalary: $15.50-$17.00 per hourBenefits:On-site parkingStore discountDay range:Monday to FridayWeekend availabilityFlexible Language Requirement:French not requiredShift:10 hour shift8 hour shiftExperience:sales: 1 year (preferred)customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In personExpected start date: 2023-09-01\",\n            \"location\": \"Dartmouth, NS\"\n        },\n        {\n            \"id\": \"0A974B7576C2963BF06D5B1DC6FE5E1F\",\n            \"cityName\": \"1625 Boul Dagenais O, Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8b18890f4aa1d52e\",\n            \"jobName\": \"Représentant.e Service à La Clientèle / Customer Service Rep. - Laval\",\n            \"companyName\": \"Regal Confections (Confiseries Regal) Inc.\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694446092276,\n            \"dateOfPosted\": 1692744469688,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5776013,\n                    \"lon\": -73.80857089999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Bd Dagenais O, Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"English below...QUI SOMMES-NOUS ?Leader canadien dans la distribution de confiseries et de chocolat. Regal Confections ( Confiseries Regal ) Inc. a évolué en devenant le distributeur exclusif de certaines marques comme Tootsie Roll, Dubble Bubble, McCormicks, PEZ, Rockets et plusieurs autres. Nous commercialisons une vaste gamme de produits sous licences, telles que Disney, Lucasfilm, Emoji, LNH, Mattel, Laura Secord, MGA, Nickelodeon, Universal, DreamWorks et Illumination.Fondé il y a 60 ans et comptant plus de 400 employés, nous t'invitons à participer à notre expansion en te joignant à nous comme représentant.e service à la clientèle - bureau des commandes.POURQUOI JOINDRE NOTRE ÉQUIPE ?Horaire flexible 37,5h par semainePossibilité de télétravail hybride après la formationAssurance Collective incluant Dentaire - prime payé 65% par l’employeurHoraire d'étéStationnement gratuitBoîtes cadeaux de produits (Halloween - Noël - Valentin - Pâques)Rabais sur produits réguliers - Chocolats fins, biscuits, confitures, pâtes etc.Ambiance décontractéeBBQ, party de Noël et autres activités socialesCOMPÉTENCES RECHERCHÉES :Diplôme post-secondaire complété dans un domaine connexeMinimum 3 ans d’expérience dans l’entrée de commandes et le suivi d’inventaireBilinguisme requis (anglais, français) tant à l’oral qu’à l’écrit, pour répondre aux besoins de la clientèle interne et externe située dans tout le CanadaConnaissances de système ERP (J.D. Edwards ou autres systèmes)Capacité de travailler sous pression, particulièrement durant les périodes de pointe et être doté de bon esprit d’analyseQUE FERAS-TU ?Entrer les commandes provenant des représentants et des clientsValider les commandes reçues par EDIVérifier la disponibilité des produits et faire le suivi avec les clients, au besoinPrendre les rendez-vous et faire les suivis avec les transporteurs, au besoinCoordonner les transferts entre entrepôts, afin d'optimiser la préparation de commandesÉmettre des autorisations pour les retours de produits...........................................................Job description : CUSTOMER SERVICE REPRESENTATIVEWHO ARE WE?Canada's leading distributor of confectionery and chocolate products. Regal Confections ( Confiseries Regal ) Inc. has evolved to become the exclusive distributor of brands such as Tootsie Roll, Dubble Bubble, McCormicks, PEZ, Rockets and many others. We market a wide range of licensed products such as Disney, Lucasfilm, Emoji, NHL, Mattel, Laura Secord, MGA, Nickelodeon, Universal, DreamWorks and Illumination.Founded 60 years ago and with over 400 employees, we invite you to be part of our expansion by joining us as a Customer Service Representative - order desk.This is an ideal job for a work/family balance!WHY JOIN OUR TEAM?Flexible schedule 37.5 hours per weekPossibility of hybrid telecommuting after the trainingGroup insurance including dental - premium paid 65% by the employerSummer ScheduleAnnual bonus/profit sharingFree parkingProduct gift boxes (Halloween - Christmas - Valentine's Day - Easter)Discount on regular products - Fine chocolates, cookies, jams, pasta etc.Casual atmosphereBBQ, Christmas party and other social activitiesSKILLS REQUIRED :Completed post-secondary degree in a related fieldMinimum 3 years experience in order entry and inventory trackingBilingualism required (English, French) both written and spoken, to meet the needs of internal and external customers located across CanadaKnowledge of ERP system (J.D. Edwards or other systems)Ability to work under pressure, especially during peak periods, and have good analytical skillsWHAT WILL YOU DO?Enter orders from representatives and customersValidate orders received by EDIVerify product availability and follow up with customers as neededMake appointments and follow up with carriers, as neededCoordinate transfers between warehouses to optimize order preparationIssue authorizations for product returnsPermanent daytime position Monday to FridayType d'emploi : Temps plein, PermanentSalaire : à partir de 20,00$ par heureAvantages :Assurance DentaireAssurance InvaliditéAssurance Maladie ComplémentaireAssurance VieAssurance VisionCongés payésProgramme d'Aide aux EmployésProgrammes de Bien-êtreStationnement sur placeTenue DécontractéeHoraires de travail :Du Lundi au VendrediLieu du poste : Télétravail hybride à Laval, QC\",\n            \"location\": \"Boulevard Dagenais Ouest, Laval, QC\"\n        },\n        {\n            \"id\": \"4417E1ADEA41A435957D89F7502F4F3A\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=28bdb8806b3c411b\",\n            \"jobName\": \"Customer Service Clerks Supervisor\",\n            \"companyName\": \"Pdr Auto Ontario Inc.\",\n            \"rowSalary\": \"$28.21 an hour\",\n            \"date\": 1694446058659,\n            \"dateOfPosted\": 1692737378440,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 29.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    29.0\n                ],\n                \"range\": {\n                    \"gte\": 29.0,\n                    \"gt\": null,\n                    \"lte\": 29.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Perform same duties as workers supervised Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Identify training needs and train workers in job duties and company policies Computer and technology knowledge MS Office Work conditions and physical capabilities Attention to detail Work under pressureWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"50F846B98C9D2AE5B1A81182B58D6471\",\n            \"cityName\": \"Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a297f4dc4cf1ba09\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Triple O's Restaurants\",\n            \"rowSalary\": \"$16.75–$17.25 an hour\",\n            \"date\": 1694445965505,\n            \"dateOfPosted\": 1693555281706,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8879519,\n                    \"lon\": -119.4960106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Kelowna, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are Hiring guest focused individuals for Morning and Afternoon ShiftsCurrently we have 2 Full time and one Part time. You must have a friendly outgoing personality, strong work ethic & great customer service skills.Positions require, cashier work, stocking, cleaning and safe work practices as per job description discussed at time of interview and further explained during training.We offer Great working environment and Reliable year round work, Competitive wages and Extended health benefits for full-time employees some restrictions apply, more information provided during interview. Please email your resume or apply within at any Chevron locations in KelownaJob Types: Full-time, Part-timeSalary: $16.75-$17.25 per hourDay range:Monday to FridayWeekends as neededShift:Evening shiftNight shiftEducation:Secondary School (preferred)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Night Shift (preferred)Overnight Shift (preferred)Work Location: In person\",\n            \"location\": \"Kelowna, BC\"\n        },\n        {\n            \"id\": \"3E616DC87E364FB09EDF478179A06E17\",\n            \"cityName\": \"St. Catharines, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=95ba35757339427e\",\n            \"jobName\": \"Inside Phone Sales\",\n            \"companyName\": \"Empowerment Technologies Inc.\",\n            \"rowSalary\": \"$23–$25 an hour\",\n            \"date\": 1694445659069,\n            \"dateOfPosted\": 1694445657339,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1593745,\n                    \"lon\": -79.2468626\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"St. Catharines\",\n                \"formattedAddress\": \"St. Catharines, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"St. Catharines\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"**This role is in office within our Niagara-on-the-Lake site.**Who We Are:For 20 years, we’ve been leaders in the baby safety (Levana) and DIY security space (Defender), creating ground-breaking consumer electronics that bring peace of mind to millions of people all over the world. Selling directly through our brand websites, Amazon, and our retail partners such as Walmart, Costco, and Home Depot, we are growing fast and are looking for new team members to join us on this journey. For those looking to join a passionate and collaborative team that challenge conventional methods, take risks, and settle for nothing but excellence, you’ve found the right place!Who Are You?You are a fast paced, results driven, and experienced Inside Salesperson with a successful sales track record, you have a high degree of self-motivation and resilience within a sales environment. Using your strong interpersonal skills and entrepreneurial mind set, you strategically use various contact methods to maximize your communication efforts and close sales. This role operates out of our Head Office in Niagara-on-the-Lake.Perks of This Role:Full time, 40 hours per weekScheduled shifts are days, Monday – Friday with weekend availability requiredWage is $23.00-$25.00 per hourImmediately receive 2 weeks vacation (no waiting period)Comprehensive Health Benefits program after 60 daysWork in an office environment (we are NOT a call centre)50% product discount for friends and familyWork directly for the brand owners and not a 3rd partyBe involved in new product testingQualifications:1 year of sales experience with a high focus on sales targets and customer engagementStrong attention to detail and ability to multitaskExcellent organizational, time management and communication skillsFlexible/creative approach to problem solving with the ability to simplify/detangle issues to their core factorsEmotional Intelligence: self-awareness - have a strong desire to develop and improve yourself and know when to seek out expertise; self-regulation - knowing when to push and when to stop; motivation – remain motivated while creating a strong desire to achieve in others; empathy – understand and care about people’s current reality; social skills – understand people, develop trust and help themHigh School Diploma (OSSD)Our Core ValuesExcellence - We never settle for “good enough.Results - The path to success is paved with our dedication.Love - Challenges are no match for our hearts and minds.Learning - Experimentation and curiosity are part of our DNA.Simplicity - We strip away the non-essentials to get to what really matters.Job Types: Permanent, Full-timeSalary: $23.00-$25.00 per hourBenefits:Casual dressDental careExtended health careOn-site parkingPaid time offStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededCOVID-19 considerations:COVID-19 vaccination is required. We have put measures in place, such as daily office sanitization, socially distant desk spaces, and providing masks.Ability to commute/relocate:St. Catharines, ON: reliably commute or plan to relocate before starting work (required)Experience:phone sales: 1 year (required)B2B sales: 1 year (required)Work Location: In person\",\n            \"location\": \"St. Catharines, ON\"\n        },\n        {\n            \"id\": \"D7E4DB082118ADAAA66994F0959B045B\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4ec487bb744dcb59\",\n            \"jobName\": \"Bilingual Customer Service Agent - Agent De Soutien Téléphonique Bilingue\",\n            \"companyName\": \"Globalstep\",\n            \"rowSalary\": \"$16.50–$20.00 an hour\",\n            \"date\": 1694445657223,\n            \"dateOfPosted\": 1694445655926,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"--Le français à suivre--Who we are:You name it, we’ve done it. GlobalStep partners with the world’s leading game studios and innovative brands, bringing compelling and high impact digital experiences to life, fast and flawless. Our specialized gaming practice has helped leading video game studios launch and support over 3,000 Video Game titles that have generated over $30 billion in game revenue.With a global set of service locations across 3 continents, we have a tightly integrated services model across geographies and lines of service aimed and focused on the success of our clients.Responsibilities· Effectively answer various questions from members and clients.· Handle phone calls quickly and efficiently and provide superior quality service in a context where call volume may be high.· Actively listen to members and clients by asking relevant questions to effectively meet their expectations.· Establish a climate of trust that promotes customer retention.· Conduct transactions over the phone.· Schedule appointments with credit union advisors.· Adhere to the policies, practices, and standards in force at the credit union.· Ensure the profitability of transactions and/or services offered.Behavioral and Technical Skills· Having good interpersonal skill· Being customer-oriented· Dealing with uncertainty and ambiguity· Mastering problem-solving· Demonstrating a strong ability to learn quickly· Culture of cooperation and teamwork· Professional customer environment· Advanced computer skills (Windows, Internet)Shifts:· Three shifts available (morning, evening, night)Qualifications / Education· High school diploma· Experience in customer service· Excellent learning ability· Bilingualism (essential)· Excellent listening & communication skills, both orally and in writing (French, English)Company Benefits· Rapidly growing scale-up offering opportunities for permanent positions· Premium for night shifts· Working remotely· Paid Training providedWhat we offerGlobalStep is proud to be an equal opportunity workplace and is an affirmative action employer. We are committed to equal employment opportunity regardless of race, color, ancestry, religion, sex, national origin, sexual orientation, age, citizenship, marital status, disability, gender identity or Veteran status.-------------------------Qui sommes-nous:Vous l'avez dit, nous l'avons fait. GlobalStep travaille en partenariat avec les plus grands studios de jeux et les marques les plus innovantes du monde et donne vie à des expériences numériques convaincantes et à fort impact, de manière rapide et impeccable. Notre spécialisation a aidé les principaux studios de jeux vidéo à lancer et à soutenir plus de 3 000 titres, qui ont généré plus de 30 milliards de dollars en revenus.Grâce à notre ensemble mondial de sites de services répartis sur trois continents, nous disposons d'un modèle d'activité étroitement intégré dans les zones géographiques et les lignes de services, visant et se concentrant sur le succès de nos clients.Description de l'emploi· Répondre efficacement aux différentes questions des membres et clients· Prend en charge, rapidement et efficacement, la réponse aux appels téléphoniques qui lui sont dirigés et offrir un service de qualité supérieure dans un contexte où le volume d'appels peut être élevé.· Écouter les membres et clients de façon active en leur posant des questions pertinentes pour répondre efficacement à leurs attentes· Établir un climat de confiance favorisant la rétention de la clientèle· Procède aux transactions assistées par téléphone· Prend les rendez-vous des conseillers de la caisse.· Respecte les politiques, les pratiques et les normes en vigueur à la caisse· S’assure de la rentabilité de la transaction et/ou des services offertsCOMPÉTENCES COMPORTEMENTALES et TECHNIQUES· Être doué pour la communication interpersonnelle· Être orienté vers le client· Faire face à l'incertitude et à l'ambiguïté· Maîtriser la résolution de problèmes· Démontrer une grande capacité à apprendre rapidement· Culture et esprit coopératif· Environnement professionnel de la clientèle· Compétences informatiques approfondies (Windows, Internet)Les horaires :Trois horaires sont disponibles (matin, après-midi et nuit)Exigences· Diplôme d’études secondaires· Expérience en service à la clientèle· Excellente capacité d’apprentissage· Bilinguisme (essentiel)· Excellentes aptitudes à la communication autant à l’oral qu’à l’écrit (français, anglais)Avantages sociaux· Entreprise en pleine expansion offrant des opportunités de postes permanents rapidement croissant· Prime pour les quarts de nuit· Travailler à distance· Formation rémunérée fournieCe que nous offronsGlobalStep est fier d'être un lieu de travail où l'égalité des chances est respectée et est un employeur à action positive. Nous nous engageons à garantir l'égalité des chances en matière d'emploi, indépendamment de la race, de la couleur, de l'ascendance, de la religion, du sexe, de l'origine nationale, de l'orientation sexuelle, de l'âge, de la citoyenneté, de l'état civil, du handicap, de l'identité sexuelle ou du statut d'ancien combattant.Job Types: Full-time, ContractSalary: $16.50-$20.00 per hourExperience:Customer service: 1 year (preferred)Language:French (required)English (required)\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"F44551F9C1732F24125E4054B4B65D1D\",\n            \"cityName\": \"740 Avenue du Palais, Saint-joseph-de-beauce, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b99193a68e4abbee\",\n            \"jobName\": \"Agent(e) De Service à La Clientèle / Customer Service Representative\",\n            \"companyName\": \"Purolator\",\n            \"rowSalary\": \"From $21.05 an hour\",\n            \"date\": 1694445619977,\n            \"dateOfPosted\": 1668648092737,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.3058894,\n                    \"lon\": -70.8783078\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saint-Joseph-de-Beauce\",\n                \"formattedAddress\": \"Av. du Palais, Saint-Joseph-de-Beauce, QC G0S, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Chaudière-Appalaches\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saint-Joseph-de-Beauce\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Des carrières qui font du chemin Êtes-vous à la recherche d’une occasion d’apprendre et de progresser? Voici votre occasion de nous aider à tenir les promesses de nos clients. Le statut de personne entièrement vaccinée contre la COVID-19 est une condition d’embauche pour les candidats retenus pour ce poste. Si vous avez des questions, n’hésitez pas à les poser durant l’entrevue. Depuis sa fondation en 1960, Purolator est devenue le fournisseur de pointe de solutions intégrées de logistique et d’expédition de fret et de colis au Canada. Notre équipe travaille en respectant un solide ensemble de valeurs d’entreprise qui guident tout ce que nous faisons pour nos employés. En tant qu’employeur, Purolator s’est engagée à offrir à ses employés un travail gratifiant avec des occasions de collaboration et de progression de carrière. Nous offrons un programme de rémunération globale concurrentiel qui inclut un salaire concurrentiel, un régime de retraite et des avantages sociaux complets, un programme d’aide aux employés et à la famille, un régime d’achat d’actions par les employés et des rabais pour les employés. Nous croyons que le développement d’une équipe gagnante d’employés est essentiel pour réaliser notre vision de rendre le Canada plus fort en aidant nos clients à tenir leurs promesses. Ne manquez pas cette occasion de faire partie d’une entreprise nationale qui joue un rôle significatif dans la vie de tous les Canadiens. Soumettez votre candidature dès aujourd’hui! Nous sommes présentement à la recherche d’un agent polyvalent de bureau et au centre d'expédition pour notre établissement de St-Joseph-de-Beauce. Le taux horaire de départ est de 21.05$. Établissement : 740 Av. Guy-Poulin, Saint-Joseph-de-Beauce, QC G0S 2V0 Contrat de travail : Sur appel - horaire variable Brève description des fonctions : Servir les clients de manière efficace et polie au téléphone ou en personne Vendre des produits et des services S’occuper des plaintes et des demandes des clients S’efforcer de résoudre les problèmes relatifs aux envois S’efforcer de résoudre les problèmes relatifs à l’équipement et à la technologie Collaborer avec le personnel du siège social, la direction locale, les courriers, le personnel des entrepôts, les directeurs de compte et autres partenaires pour garantir un excellent service à la clientèleQualifications et Aptitudes requises Secondaire V complété ou expérience pertinente Obtenir une note de passage dans des tests d'aptitude Anglais oral (bilingue) Commentaires : Pourra travailler avec ou sans supervision Attitude professionnel envers la clientèle Être capable de travailler sous pression Peut soulever seul des colis pouvant peser jusqu’à 70 livres. DÉTAILS DE L'AFFICHAGEÉtablissement: 186 - St-Joseph De BeauceConditions de travail: Retail Center Environment - Purolator est un employeur souscrivant au principe de l’égalité d’accès à l’emploi favorisant la diversité et l’inclusion. L’entreprise prendra en considération tous les candidats qualifiés pour l’emploi, peu importe leur race, la couleur de leur peau, leur religion, leur sexe, leur orientation sexuelle, leur identité de genre, leur origine ethnique, leur âge, leur statut d’autochtone ou tout autre facteur pouvant être considéré comme discriminatoire. Si vous avez besoin d’un accommodement durant le processus de recrutement, nous travaillerons avec vous afin de répondre à vos besoins. Nous reconnaissons que nos employés et leurs familles sont des intervenants essentiels. Notre entreprise ne sera prospère que si nous offrons à nos employés un milieu de travail sain et sécuritaire et si nous avons les bonnes personnes, aux bons postes, avec le soutien dont elles ont besoin pour réussir. Nous embauchons pour l’attitude et nous formons pour l'aptitude. Pour en apprendre davantage sur l'entreprise et ses valeurs, visitez le site www.purolator.com. Chez Purolator, chaque nouvelle journée vous offre l’occasion ainsi qu’à vos collègues de tisser des liens positifs entre vous et avec nos clients afin d’avoir un impact positif sur les collectivités dans lesquelles nous vivons et travaillons.\",\n            \"location\": \"Avenue du Palais, Saint-joseph-de-beauce, QC\"\n        },\n        {\n            \"id\": \"F096D014E2343C3A97C726DD6EE528BC\",\n            \"cityName\": \"3605 West 4th Ave, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=87bd99f2f4c29b1c\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Aphrodite's Organic Pie Shop\",\n            \"rowSalary\": \"From $15.65 an hour\",\n            \"date\": 1694445522464,\n            \"dateOfPosted\": 1692736500975,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2674848,\n                    \"lon\": -123.1094236\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W 4th Ave, Vancouver, BC V5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Aphrodite's Organic Pie Shop and Cafe is expanding and seeking part time baristas to work at our bustling cafe and brunch restaurant, 3-5 shifts per week. If you are looking for a position that never involves late nights, then we are here for you!We are a busy organic pie shop that operates from 8:00am to 6:00pm. Shift range between 7:30am to 7:00pm. We are looking for someone with flexible weekday availability specifically.Please apply in store with a resume to Kira Kirkland, our Director of Operations.Thank you!Job Type: Full-timeSalary: From $15.65 per hourSchedule:Day shiftMorning shiftSupplemental pay types:Overtime payTipsAbility to commute/relocate:Vancouver, BC: reliably commute or plan to relocate before starting work (required)Experience:Barista: 1 year (required)Customer Service: 1 year (required)Licence/Certification:Food Safety Certification (preferred)Work Location: In person\",\n            \"location\": \"W th Ave, Vancouver, BC\"\n        },\n        {\n            \"id\": \"1B1E84351F9004305FDD5562C497F2D2\",\n            \"cityName\": \"210 Rue De La Gauchetière O, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8e65cf38cc010296\",\n            \"jobName\": \"Customer Service / Hospitality Agent\",\n            \"companyName\": \"Bakan Hotels\",\n            \"rowSalary\": \"$45,000 a year\",\n            \"date\": 1694445413321,\n            \"dateOfPosted\": 1694445413144,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5026511,\n                    \"lon\": -73.563864\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue De La Gauchetière O, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Be the first point of contact for all our guests via phone, email and chatLearn the ins and outs of our hospitality business so you can handle any questions guests haveOwn the reservations process from start to finishRespond to, troubleshoot, and resolve guest issues in a timely and positive mannerCoordinate to resolve issues on the ground and provide ongoing updates to guestsMeet and greet guests when they check-in, ensuring they have an amazing first experienceTake care of day-to-day hospitality tasks, such as bringing extra items to guests during their stay and managing in-unit needs that range from troubleshooting systems and appliances, quick housekeeping fixes, and overseeing contractor appointmentsLearn about the pillars of hospitalityLearn about warehouse management and supply chain management where you will assist with warehouse duties such as preparing housekeeping kits, processing linens, and cleaningWork closely with our hospitality operations team and conduct quality control inspections inside our unitsAssist with photoshoots and on-boarding new units to be guest readyJob Types: Full-time, Part-time, PermanentPart-time hours: 40 per weekSalary: $45,000.00 per yearBenefits:Company eventsFlexible scheduleOn-site parkingStore discountSchedule:10 hour shift8 hour shiftDay shiftWeekends as neededApplication question(s):Must have at least a bachelor degree or hospitality certificate degreeEducation:DCS / DEC (required)Language:French and English (required)Work Location: In personExpected start date: 2023-10-01\",\n            \"location\": \"La Gauchetière, QC\"\n        },\n        {\n            \"id\": \"52869623752152132BC53602AC207468\",\n            \"cityName\": \"Ajax, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1d0c2d7099cea784\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Harwood Sales Group\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694445411827,\n            \"dateOfPosted\": 1692747472269,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8508553,\n                    \"lon\": -79.0203732\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ajax\",\n                \"formattedAddress\": \"Ajax, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ajax\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a sales and marketing company based out of Ajax Ontario, looking for motivated and passionate Customer Service Representatives that want to make a difference! Looking for full time schedules, Monday to Friday. Please review the following info for more details!Customer Service Representative Job Responsibilities:Serves customers by providing product and service information and resolving product and service problems.Attracts potential customers by answering product and service questions and suggesting information about other products and services.Maintains financial accounts by processing customer adjustments.Recommends potential products or services to management by collecting customer information and analyzing customer needs.Prepares product or service reports by collecting and analyzing customer information.Contributes to team effort by accomplishing related results as needed.Customer Service Representative Qualifications / Skills:Customer serviceProduct knowledgeMarket knowledgeQuality focusProblem solvingDocumentation skillsPhone skillsListeningJob Type: Full-timeSalary: $20.00-$22.00 per hourFlexible Language Requirement:French not requiredSchedule:Monday to FridayAbility to commute/relocate:Ajax, ON: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Ajax, ON\"\n        },\n        {\n            \"id\": \"29A830106D5D4BB7A5DD221BCFE8CA2E\",\n            \"cityName\": \"1801 Lakeshore Road West, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3d01cf89186fdd31\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Turtle Creek Cards And Gifts\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694445295955,\n            \"dateOfPosted\": 1690560955777,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5308514,\n                    \"lon\": -79.6082911\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Lakeshore Rd W, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Shipping parcels within Canada,USA and internationally.selling canadapost authorized products,stamps.selling gift itemsTaking passport photosJob Type: Fixed term contractContract length: 12 monthsSalary: From $15.50 per hourSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsCOVID-19 considerations:Wear a maskKeep distance Use sanitizer Ability to commute/relocate:Mississauga, ON: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Lakeshore Rd W, Mississauga, ON\"\n        },\n        {\n            \"id\": \"2BCB460D2B482CA89AA89424F03E0759\",\n            \"cityName\": \"Yarrow, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f9254220918d7915\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Chevron\",\n            \"rowSalary\": \"$16.75–$18.00 an hour\",\n            \"date\": 1694444324277,\n            \"dateOfPosted\": 1693588788040,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.0821013,\n                    \"lon\": -122.0647472\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Chilliwack\",\n                \"formattedAddress\": \"Yarrow, Chilliwack, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Fraser Valley\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Chilliwack\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usWe are professional, customer-centric and engaging.Our work environment includes:Growth opportunitiesOn-the-job trainingSafe work environmentProcess transactions professionally, accurately, in a timely fashion; with a friendly attitude using suggestive sales.Change garbages outside in all kinds of weather, clean pumps and lot. Keep store neat and clean.Must be able to verify products being delivered and then display according to planograms.Must have a positive, can do attitude, able to get along with peers as well as management.Must have a drivers license as there is no bus service at this location.Job Types: Full-time, Part-time, PermanentPart-time hours: 16-40 per weekSalary: $16.75-$18.00 per hourBenefits:On-site parkingDay range:Every WeekendHolidaysMonday to FridayFlexible Language Requirement:French not requiredShift:8 hour shiftEvening shiftMorning shiftNight shiftWork setting:Convenience storeAbility to commute/relocate:Yarrow, BC: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Shift availability:Overnight Shift (preferred)Night Shift (required)Day Shift (preferred)Work Location: In personExpected start date: 2023-09-09\",\n            \"location\": \"Yarrow, BC\"\n        },\n        {\n            \"id\": \"DF216AB045A82D6947B05F1351D0ED8D\",\n            \"cityName\": \"Cornwall, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=353d0e775d124b39\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Xplore Inc.\",\n            \"rowSalary\": \"$17.55 an hour\",\n            \"date\": 1694444112928,\n            \"dateOfPosted\": 1693581687919,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.0212762,\n                    \"lon\": -74.730345\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cornwall\",\n                \"formattedAddress\": \"Cornwall, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Stormont, Dundas and Glengarry United Counties\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cornwall\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Overview: * Do you have a passion for providing excellent customer service? Want to work for a company who believes in putting the customer at the heart of everything they do? Then join Xplore’s team of Customer Service Representatives in our Cornwall,ON office. Xplore offers a high energy, fast-paced work environment where employee opinions and feedback are valued. Xplore offers a high energy, fast-paced work environment where employee opinions and feedback are valued. We offer:$17.55/hr$3.00/hour Bilingual Premium (French/English)Bonus incentive opportunities up to $2,800 annuallyExcellent company benefits including health and dentalMatched participation in group RRSPStrong focus on internal promotion, career path development and trainingOpportunities to work from home after six months tenureKey responsibilities include:Providing an excellent customer experience by responding to customer calls in a courteous, knowledgeable and professional mannerListening to customers and probing as appropriate to discover needs while fulfilling customer expectations in a way that also complies with policies, practices and proceduresProviding general account, billing and technical support to our customersProcessing service ordersMaintaining accuracy of customer databasesAssisting with reporting and administrationMaintaining service levels and achieving business and performance goals and objectivesThe ideal candidate will possess:Completion of post-secondary education in a related field (or equivalent level of experience)Knowledge of approaches, tools and techniques for anticipating, recognizing and resolving technical issuesPrevious customer service experience is an assetStrong computer and troubleshooting skills with the ability to analyze and solve problemsSolid working knowledge of the Microsoft Operating Systems; experience with MAC and/or Linux is an assetStrong communication skills, verbal and written, with the ability to communicate effectively with customers in technical and non-technical termsSelf-motivated and driven with good time management and organizational skillsAbility to follow guidelines and strong attention to detailAbility to prioritize and multi-task while adapting in a fast-paced work environmentBilingualism is an asset (French/English) #XploreJobs Condition of employment: As a condition of employment and in order to comply with industry related data security standards, this position is subject to the successful completion of a Criminal Background Check. Details will be supplied to applicants as they move through the selection process. Xplore is committed to creating an accessible environment and will accommodate disabilities during the selection process. Please let your recruiter know during the selection process of any accommodation needs. Company Overview: Xplore Inc. is Canada’s fibre, 5G and satellite broadband company for rural living. Xplore is committed to the relentless pursuit of an improved broadband experience for all Canadians. Xplore is building a world-class fibre optic and 5G wireless network to enable innovative broadband services for better every day rural living, for today and future generations.\",\n            \"location\": \"Cornwall, ON\"\n        },\n        {\n            \"id\": \"B2DEF8FDC8F89B7F7BEC7DCFF264670F\",\n            \"cityName\": \"60 Charles Street West, Ingersoll, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=387c40b77c2f0381\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Domino's Pizza Woodstock\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694444035551,\n            \"dateOfPosted\": 1692726050714,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.0365119,\n                    \"lon\": -80.8888401\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ingersoll\",\n                \"formattedAddress\": \"Charles St W, Ingersoll, ON N5C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Oxford County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ingersoll\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Domino's Pizza is now hiring Customer Service RepresentativesWe are happy that you are interested in joining the Domino’s team!Customer Service Representatives (CSR) are primarily responsible for providing exceptional customer service, making great Domino’s Pizza products and maintaining cleanliness of the store. CSR’s at Domino’s work in a team environment and they are expected to be positive and productive team players. Every CSR plays a part in helping the store achieve its goals for customer service, sales growth, operational reviews and cost management, therefore, their attention to these targets is paramount.The responsibilities are guided by the Domino’s Pizza of Canada’s policies and procedures. The standards can in some instances be modified by Empire Pizza or the CSR’s supervisor.Other responsibilities may include being a shift leader. Shift leaders are responsible for completing all shift tasks as laid out in the policies, manage other team members, balance finances and inventory and train team members. Shift leaders may be required to attend workshops to further develop their skills.CSR’s are required to attend to their scheduled shifts on-time, in complete uniform and with positive attitudes. During some shifts, the CSR may be required to help promote the business and do some local store marketing.Although schedules are typically posted a few days early, CSR’s may be required to come to work on short notice or perform additional tasks outside of this description.Job Type: Part-timePart-time hours: 10-30 per weekSalary: $15.50-$16.50 per hourExpected hours: 10 – 30 per week\",\n            \"location\": \"Charles Street West, Ingersoll, ON\"\n        },\n        {\n            \"id\": \"7AE643FCE8837B8E7E4EDB18176B7220\",\n            \"cityName\": \"4305 Rue Griffith, Saint-Laurent, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9c5b7757c4e25754\",\n            \"jobName\": \"Commis Au Service à La Clientèle/Customer Service Clerk\",\n            \"companyName\": \"Prosol Distribution\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694444018709,\n            \"dateOfPosted\": 1694444018530,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.48487979999999,\n                    \"lon\": -73.6986762\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Griffith, Montréal, QC H4T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Date: 11 septembre 2023Lieu de travail: 4305 Rue Griffith, Saint-Laurent QC H4T 2A2Taux horaire : 20$/heureHoraire : Lundi au vendredi – 7h à 16h ou 8h à 17h - 40 heures/semainePostes : 1Tu as un grand intérêt pour le service à la clientèle et tu désires te joindre à une équipe jeune et dynamique qui aime travailler en équipe?Nous sommes présentement à la recherche de deux Commis service à la clientèle à notre siège social situé à Ville St-Laurent. Relevant du superviseur de service à la clientèle, tu seras responsable de fournir un service aux clients de l’entreprise, d’effectuer la prise de commande et de gérer les comptes clients.Description du posteUne journée typique dans ton quotidien :- Effectuer le service à la clientèle au comptoir et/ou au téléphone- Exécuter des activités de vente et de service à la clientèle comme prendre le paiement des commandes ou répondre aux questions générales et techniques- Traiter les retours et échanges de produits via le système- Gérer les cas problématiques avec les autres entrepôts- Autres tâches connexesCe qui est requis :0-1 an d’expérience en service à la clientèleBilinguisme (français et anglais fonctionnel)On te veut dans notre équipe si :Tu as le travail d’équipe à cœurTu es une personne dynamique avec de l’entregentLa débrouillardise et ponctualité ne sont pas un secret pour toiCe que nous t’offrons :- Poste permanent, 40 heures/semaine- Salaire et assurances collectives compétitifs- Formation continue- Environnement de travail chaleureux et tenue de travail décontractée- Stationnement disponible et accès facile en transports en commun- Un superviseur à l’écoute de ses employésLe défi te parle? Pour en savoir plus et postuler, c’est juste ici…À propos de la compagnie,Prosol Inc. se spécialise depuis plus de 35 ans dans la distribution d’articles et d’accessoires reliés au domaine de l’installation et de la finition des planchers. Prosol possède une expertise notamment dans les produits liés à la pose des moquettes, du vinyle en rouleaux, des carreaux de vinyle pur ou composé, des dalles de caoutchouc, du linoléum et des carreaux de céramique de granit ou de marbre.Cette spécialisation mène Prosol à maintenir plus de 20 000 produits en inventaire et à offrir un service permanent d’assistance technique. L’entreprise se distingue de ses concurrents par sa rapidité d’exécution et par l’excellence de son service. La société ne s’approvisionne qu’auprès de fournisseurs bien établis, compétents et reconnus dans notre industrie pour leur spécialisation éprouvée dans le domaine de l’installation. Le volume de ses ventes et la force de son pouvoir d’achat confèrent à Prosol la première place au Canada dans son secteur d’activités.***English Version***Date: 2022-06-20Location: 4305 Rue Griffith, Saint-Laurent QC H4T 2A2Hourly rate: 20$/hourSchedule: Monday to Friday – 7h am to 4h pm or 8h am to 5 pm – 40 hours/weekJob openings: 1You have a great interest in customer service, and you want to join a young and dynamic team that values teamwork?We are currently looking for two Customer service Clerk at our head office located in Ville St-Laurent. Reporting to the Customer service supervisor, you will be responsible for providing service to the company's customers, taking orders, and managing customer accounts.Job descriptionA typical day at work:- Perform customer service at the counter and/or on the phone- Perform sales and customer service activities such as taking payment of orders or answering general and technical questions- Process product returns and exchanges through the system- Manage problem cases with other warehouses- Other related dutiesWhat is required:0-1 year of experience in customer serviceMust speak French and functional EnglishWe want you on our team if:You are a team playerYou are a dynamic person with good interpersonal skillsYou are punctual and resourcefulWhat we offer:- Permanent position, 40 hours/week- Competitive salary and group insurance- Continuous training- Friendly work environment and casual work attire- Parking available and easy access by public transportation- The support and listening of your supervisorAre you interested in this challenge? To learn more and apply, it’s right here…About the company,Prosol Inc. has been specializing for over 35 years in the distribution of products and accessories for the installation and the finishing of floors. Prosol has a great expertise in the installation of carpets, vinyl in rolls, vinyl tiles (pure or composed), rubber tiles, linoleum and ceramic tiles of granite or marble.This specialization brings Prosol to maintain over 20 000 products in inventory and to offer technical help to the trade. The company distinguishes itself from its competitors by its speed of execution and the excellence of its service. The company buys only from well-established suppliers, competent and recognized in our industry for their proven expertise in the field of installation. The sales volume and the strength of its purchasing power confers Prosol the first place in Canada in its industry.Type d'emploi : Temps pleinSalaire : à partir de 20,00$ par heureAvantages :Assurance DentaireAssurance Maladie ComplémentaireAssurance VieStationnement sur placeTenue DécontractéeHoraires de travail :8 HeuresQuart de jourQuart du matinLieu du poste : En présentielDate de début prévue : 2023-09-18\",\n            \"location\": \"Rue Griffith, Saint-Laurent, QC\"\n        },\n        {\n            \"id\": \"B893FB96D2F9E41AB9CD252836BFE48E\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=48147e675eeab7e7\",\n            \"jobName\": \"Bilingual (Fr/En) Inbound Call Center Agent No Sales Working From Home\",\n            \"companyName\": \"I24 Call Management Solutions\",\n            \"rowSalary\": \"From $19.62 an hour\",\n            \"date\": 1694443988954,\n            \"dateOfPosted\": 1694443988763,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Important note: We do not offer a Monday to Friday schedules only, nor do we offer an evening schedule starting at 5 or 6 pm only. Weekends can be rotated or worked 1 of the 2 days all the time.WHAT WE DOi24 Call Management Solutions answers the phones for our clients when they can't. We manage phone calls for businesses of all sizes across Canada. 24/7/365, including holidays.Oh, and we're good. Not that we like to brag, but we received our 27th consecutive Award of Excellence from our national call management organization (CAM-X).Phone-phobic? You won't have to make any phone calls, only answer them. We are an inbound call answering service only. We do not make outbound solicitation or sales calls.YOU ARE IMPORTANT!Positive people produce positive work cultures.Internal (you) and external (our customers) customers are equal stakeholders in our success.We are recognized internationally by the call management industry for the quality of our employee engagement and recognition programs.WE ARE COMMITTED TO SUPPORTING OUR COMMUNITY.We are a company that is committed to our community. Some of the organizations we support include the Art for Healing Foundation (bringing the healing power of art to hospitals and wellness centers), Dan la Rue (homeless youth), the Montreal SPCA (improving the lives of animals), the Fauna Foundation (a local chimpanzee shelter that provides exemplary care to chimpanzees in need) and the Nature Conservancy of Canada (the nation's largest land conservation organization).We are proud to have developed, for over fifty years, a positive corporate culture that rewards and respects all stakeholders - employees and customers.What you need to know to become an i24 Call Management Agenti24 is strictly inbound call management company. That means you won’t be asked to do any outbound calls, sales solicitations or upselling for existing clients. As a Call Management Agent (CMA), you will be servicing inbound client calls only.As a bilingual service, our agents offer service in French and English.Examples of the types of calls we manage are assisting a caller in getting service for their home, reaching their building manager, making a doctor’s appointment, getting technical support and more – all on the same day. If you don’t like boredom, you’ll love working at i24.Of course, we don’t expect you to come by these skills naturally, as long as you provide the smile and the curiosity, we provide one of the best professional call management training in the country.Our call center is open 24 hours a day, 7 days a week, 365 days a year. Therefore, we have a need for agents who are available for multiple shifts. We will do our best to accommodate your preferences, but your availability must still be flexible. Our shifts start at varying times, depending on our needs at the time. We do NOT have a day shift and an evening shift on the same hours at all times. For example: we cannot accommodate Monday to Friday availability between 8:30am and 4:30pm only.Our dayshifts can start as early as 6am, but also at 6:30am, 7am, 7:30am, 8am, 10am, 11am, etc.Our evening shifts can end at 8pm, 9:30pm, 10pm, 11pm, midnight or 2am.We do not offer a Monday to Friday schedule only, but weekends can be rotated or done 1 day out of 2 in continuity.This is the \\\"What's in it for me? \\\". - Compensation.\\\"How much do I get paid to be an i24 Agent?\\\"The starting base salaries areBilingual (CMA English and French) - $19.62 per hour You are available to handle calls from our English and French speaking clients.English only - $17.12 per hour. You will be handling calls from our English speaking customers only.Francophone only - $17.12. You handle calls from our French speaking customers only.Graduation programI24's call management agents are highly valued in the industry. Personality and training are the key factors. We call our agents \\\"WOW Specialists\\\" because that's what they do. They wow our customers and colleagues with their level of service, creativity and generosity.Once you have worked 1000 hours and completed our Call Management Agent training, you become one of our i24 graduate.Other benefits:Paid vacationGroup insurance - including life insurance and long-term disabilityPrescription Drug PackageDental PlanPaid sick daysBereavement leave with payA comprehensive Employee Assistance Program (EAP)It takes positive people to create a positive culture.If you've ever checked out our Facebook page, you'll have noticed all the fun events we post. We host social events like costume contests, gingerbread houses and online game nights. At i24, we take fun seriously (it's one of our core values).You work from home.All of our call management agents work from home. We have agents working across Canada - from Bona-Vista to Vancouver Island.For this to be possible, there are a number of technical requirements you will need to provide.A laptop or desktop PC (Apple Macs and Chromebooks are not currently compatible with our computer systems).A minimum of a 17+ inch screen to allow access to software options.A keyboard and an external mouse.A high speed internet connection via an Ethernet cable (25mbs and more)Active and up-to-date antivirus softwareA stable phone line of your choice (cellular, residential, VOIP (e.g. Skype))A headset with external microphone compatible with your telephone line equipment AND your computuerA webcamA workspace with a desk and chair. You will be working with clients whose confidentiality must be respected; therefore, your workstation should be located in an area with minimal disruption and traffic.Note: We will provide you with computer equipment within a few weeks of the end of your probationary period.Job Types: Full-time, PermanentSalary: From $19.62 per hourBenefits:Casual dressCompany eventsDental careDisability insuranceEmployee assistance programExtended health careLife insurancePaid time offVision careWellness programWork from homeSchedule:8 hour shiftDay shiftEvening shiftHolidaysMorning shiftWeekends as neededSupplemental pay types:Bonus payApplication question(s):Please tell us, in 2 sentences, why you would like to join our i24 teamAt i24, you'll need a dedicated home office space that is both fixed and private. For consistency and quality assurance purposes, it’s not possible to work from any other location. Please describe your workspace for us.How many hours per week would you like to work? (if you're a student, please specify the number of hours while you're in class, and while you're on summer vacation).What is your availability Monday through Friday? (Please specify the days you are available, the earliest time you can start and the latest time you can finish. Be as specific as possible)REMINDER: As indicated in our ad, we do not offer 8-16, 9-17 or shifts starting after 4 p.m. (exception: 00-8 for night shifts). Ideally, you must be available for at least 12 hours to have the flexibility to work multiple shifts depending on operational needs.What is your availability on Saturday and Sunday? Please note that if you are not available on weekends, this job is not for you as it is a prerequisite to be available at least every other weekend OR one of the two days every weekend. (Please specify the days you are available, the earliest time you can start and the latest time you can finish. Be as specific as possible)REMINDER: As indicated in our ad, we do not offer 8-16, 9-17 or shifts starting after 4 p.m. (exception: 00-8 for night shifts). Ideally, you must be available for at least 12 hours to have the flexibility to work multiple shifts depending on operational needs.Are you currently a student? If so, are you in school part-time, full-time, or with no fixed schedule? If you are not a student, simply write 'no'.Our initial training lasts 2 weeks, the first week of training is Monday to Friday and hours can vary between 8:00am and 7:00pm, depending on the trainer and needs. The second week's hours can vary between 7:00 and 19:00. Are you available during these training hours, Monday to Friday, for 2 weeks?You must be permanently located in Canada to work. If this is not your case, please do not apply unnecessarily.Do you have another job that you would like to continue simultaneously with your employment with i24?Le bilinguisme de haut niveau est un critère crucial afin de réussir au sein de notre équipe. Après tout, nous avons des clients partout a travers le Canada et nombreux ne parleront pas du tout français. Nous avons donc un besoin plus haut que si vous travailleriez seulement au Québec, puisqu'étant une province bilingue, nous avons tendance a être plus compréhensif et ce ne sera pas le cas de tous nos clients.Sur 10, 0 étant le plus faible et 10 parfaitement fluide tout comme votre langue maternelle, quel score vous donneriez a votre français écrit ?Sur 10, 0 étant le plus faible et 10 parfaitement fluide tout comme votre langue maternelle, quel score vous donneriez a votre français parlé ?Sur 10, 0 étant le plus faible et 10 parfaitement fluide tout comme votre langue maternelle, quel score vous donneriez a votre anglais écrit ?Sur 10, 0 étant le plus faible et 10 parfaitement fluide tout comme votre langue maternelle, quel score vous donneriez a votre anglais parlé ?Work Location: Remote\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"C68AAABDFE9E8FADD4F01D9F3988F2F1\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=638cd5e04453bdaf\",\n            \"jobName\": \"Customer Service / Technical Support Representative (Bilingual: French/English) Remote\",\n            \"companyName\": \"Concentrix\",\n            \"rowSalary\": \"$17–$25 an hour\",\n            \"date\": 1694443881992,\n            \"dateOfPosted\": 1670084824205,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.2926993,\n                    \"lon\": -114.0134073\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Airdrie\",\n                \"formattedAddress\": \"Airdrie, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Airdrie, AB\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title: Customer Service / Technical Support Representative (Bilingual: French/English) Remote  Job Description Titre du poste : Conseiller bilingue Français et anglais RÉINVENTEZ VOTRE CARRIÈRE Êtes-vous à la recherche d’un changement de carrière « travail à domicile » au sein d’une organisation mondiale avant-gardiste qui favorise une véritable culture inclusive axée sur les personnes et un véritable sentiment d’appartenance ? Souhaitez-vous rejoindre une entreprise qui remporte chaque année les prix « Meilleurs lieux de travail au monde », « Employés les plus heureux » et « Meilleures entreprises pour la croissance de carrière » ? Alors un poste de Conseiller bilingue Français et anglais à distance chez Concentrix est exactement le bon endroit pour vous ! En tant que Conseiller bilingue Français et anglais à distance, vous rejoindrez une équipe organiquement diversifiée de 40 pays où TOUS les membres contribuent et soutiennent le succès et le bien-être de chacun, unis en tant que « One Concentrix ». Ensemble, nous aidons les marques les plus connues au monde à améliorer leurs activités grâce à des expériences client (CX) exceptionnelles, à une innovation continue et aux technologies les plus avancées. Et en raison de la croissance continue, nous recherchons plus de personnes talentueuses pour rejoindre notre objectif, des personnes aussi passionnées par la fourniture d’expériences de service client exceptionnelles que nous. CROISSANCE DE CARRIÈRE ET DÉVELOPPEMENT PERSONNEL Il s’agit d’une excellente occasion de « travail à domicile » qui vous permettra de réinventer un tout nouveau parcours professionnel et de développer des « amis pour la vie » en même temps. Nous vous donnerons toute la formation, les technologies et le soutien continu dont vous aurez besoin pour réussir. De plus, chez Concentrix, il y a un réel potentiel de croissance professionnelle (et personnelle). En fait, environ 80% de nos gestionnaires et dirigeants ont été promus de l’interne ! C’est pourquoi nous offrons une gamme de programmes d’apprentissage et de développement de la direction GRATUITS conçus pour vous mettre sur la voie du genre de carrière que vous avez toujours envisagé. CE QUE VOUS FEREZ DANS CE RÔLE En tant que Conseiller bilingue Français et anglais de Concentrix travaillant à domicile, vous : Gérer les clients via des appels entrants, des appels sortants ou via Internet en utilisant leur langue préférée (anglais ou Français) Aider les clients à l’aide d’un guide de flux d’appels pour répondre aux questions et résoudre les problèmes Suivre, documenter et récupérer des informations dansles bases de données Investir dans le succès de nos clients en offrant des produits et/ou services supplémentaires VOS QUALIFICATIONS Vos compétences, votre intégrité, vos connaissances et votre compassion sincère apporteront de la valeur et du succès à chaque interaction avec le client. Les autres qualifications pour notre rôle Conseiller bilingue Français et anglais (à distance) comprennent : La capacité de parler couramment l’anglais et Français écrite ou orale. Un diplôme d’études secondaires ou GED Un minimum de six mois d’expérience en service à la clientèle ou en vente pour des postes de vente Un environnement calme et sans distraction pour travailler dans votre résidence pour des postes de travail à domicile Offrir un service exceptionnel Solides compétences en navigation informatique et connaissances en informatique; Familiarité avec iOS et/ou macOS, ou une technologie comparable est préférable Internet haute vitesse et un téléphone intelligent CE QU’IL Y A POUR VOUS L’un de nos énoncés de culture Concentrix dit : « Nous sommes fanatiques de notre membre du personnel. » C’est pourquoi nous investissons considérablement dans notre peuple, notre infrastructure et nos capacités afin d’assurer le succès à long terme de nos équipes et de nos clients. Et nous investirons en VOUS pour vous aider dans votre cheminement de carrière et dans votre développement personnel. Dans ce rôle, vous recevrez également : Salaire de base : $17.00 - $25.00 CAD par heure Possibilités d’incitatifs et de primes de performance Formation rémunérée Un ordinateur de travail, selon le poste, mais n’est pas garanti. Les exigences spécifiques basées sur le poste seront discutées en profondeur avec un recruteur. Régime enregistré d’épargne-retraite, assurance médicale, dentaire, assurance de la vue après 90 jours et un programme d’aide aux employés qui comprend des séances de counseling gratuites, pour répondre aux besoins de chaque membre de l’équipe et bien plus encore. Postulez et parlez à un recruteur dès aujourd’hui! RÉINVENTEZ LA MEILLEURE VERSION DE VOUS ! Si tout cela vous semble être la prochaine étape parfaite de votre carrière, nous voulons avoir de vos nouvelles. Postulez dès aujourd’hui et découvrez pourquoi plus de 300 000 personnes à travers le monde appellent Concentrix leur « employeur de choix » – fièrement unis sous le nom de « One Concentrix ». Les énoncés ci-dessus visent à décrire la nature générale et le niveau de travail effectué par les personnes affectées à ce poste. Il ne s’agit pas d’une liste exhaustive de toutes les responsabilités, tâches ou compétences. Concentrix est un employeur garantissant l'égalité des chances et respecte toutes les lois sur les pratiques d'emploi équitables. Nous nous engageons à fournir un lieu de travail exempt de discrimination et de harcèlement illégaux et à interdire la même chose aux employés, candidats ou autres personnes couvertes par des collègues, des superviseurs, des gestionnaires ou des tiers en fonction de la race, de la couleur, de la religion, de la croyance, du sexe d'une personne. , orientation sexuelle, identité de genre, origine nationale, ascendance, âge, statut d'ancien combattant, handicap non lié aux exigences de l'emploi, origine ethnique, informations génétiques, service militaire, appartenance syndicale, affiliation politique, état civil et grossesse ou autre statut protégé. - Title: Customer Service / Technical Support Representative-Remote (Bilingual: French/English) Location: Ontario, Canada JOB DESCRIPTION The Customer Service / Technical Support Representative-Remote (Bilingual: French/English) works from home and interfaces with customers via inbound/outbound calls and/or via the Internet. This position provides customer service support and resolution of routine problems and questions regarding client products and/or services. REIMAGINE YOUR CAREER Are you looking for a “work from home” career change with a forward-thinking global organization that nurtures a true people-first, inclusive culture and a genuine sense of belonging? Would you like to join a company that earns “World’s Best Workplaces,” “Happiest Employees,” and “Best Companies for Career Growth” awards every year? Then a remote Customer Service / Technical Support Representative (Bilingual: French/English) at Concentrix is just the right place for you! As a remote Customer Service / Technical Support Representative (Bilingual: French/English), you’ll join an organically diverse team from 40 countries where ALL members contribute and support each other’s success and well-being, united as “One Concentrix.” Together, we help the world’s best-known brands improve their businesses through exceptional customer experiences (CX), ongoing innovation, and the most cutting-edge technologies. And due to continued growth, we’re looking for more talented people to join our purpose, people as passionate about providing exceptional customer service experiences as we are. CAREER GROWTH AND PERSONAL DEVELOPMENT This is a great “work from home” opportunity that will allow you to reimagine an all-new career journey and develop “friends for life” at the same time. We’ll give you all the training, technologies, and continuing support you’ll need to succeed. Plus, at Concentrix, there’s real career (and personal) growth potential. In fact, about 80% of our managers and leaders have been promoted from within! That’s why we offer a range of FREE Learning and Leadership Development programs designed to set you on your way to the kind of career you’ve always envisioned. WHAT YOU WILL DO IN THIS ROLE As a Customer Service / Technical Support Representative (Bilingual: French/English) working from home, you will: Handle customers via inbound calls, outbound calls, or through the internet using their preferred language (English or French) Assist customers using a call flow guide to answer questions and solve problems Track, document, and retrieve information in databases Invest in our customers’ success by offering additional products and/or services YOUR QUALIFICATIONS Your skills, integrity, knowledge, and genuine compassion will deliver value and success with every customer interaction. Other qualifications for our Customer Service / Technical Support Representative (Bilingual: French/English) role include: The ability to speak fluent English and French A high school diploma or GED A minimum of six months of customer service experience or hard sales experience for sales positions A quiet, distraction-free environment to work from in your residence for work at home positions Talent for delivering outstanding service Strong computer navigation skills and PC knowledge; Familiarity with iOS and/or macOS, or comparable technology is preferred High speed internet and a smartphone WHAT’S IN IT FOR YOU One of our Concentrix Culture Statements says, “We are fanatical about our staff.” That’s why we significantly invest in our people, our infrastructure, and our capabilities to ensure long-term success for both our teams and our customers. And we’ll invest in YOU to aid in your career path and in your personal development. In this role, you’ll also be provided with: Paid training and performance-based incentives Lucrative employee referral bonus opportunities Company networking and leadership opportunities with organized groups in the following topics: Professional Women, Black Professionals, LGBTQ+ Pride, Ability (Disabilities), and Health and Wellness Registered Retirement Savings Plan; paid PTO and holidays; medical, dental, and vision insurance; and a comprehensive Employee Assistance Program (EAP) Work-from-home convenience with company-supplied technologies Programs and events that support diversity, equity, and inclusion, as well as global citizenship, sustainability, and community support Celebrations for Concentrix Day, Team Appreciation Day, Customer Service Week, World Clean Up Day, #MyOneEarthPromise, and more REIMAGINE THE BEST VERSION OF YOU! If all this feels like the perfect next step in your career journey, we want to hear from you. Apply today and discover why over 300,000 people around the globe call Concentrix their “employer of choice” – proudly united as “One Concentrix.” Location: CAN, ON, Work-at-Home  Language Requirements: French (Required)  Time Type: If you are a California resident, by submitting your information, you acknowledge that you have read and have access to the Job Applicant Privacy Notice for California Residents Concentrix is an equal opportunity employer and complies with all fair employment practices laws. All qualified applicants will receive consideration for employment without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, ancestry, age, veteran status, disability, pregnancy, or other legally protected status. The above statements are intended to describe the general nature and duties of this position and are not intended to be comprehensive. Only qualified applicants who are legally authorized to work in Canada will be considered.Currently, this position may be performed only in the following provinces/territories: AB, BC, MB, NL, NS, ON, PE, QC, and SK.\",\n            \"location\": \"Airdrie, AB\"\n        },\n        {\n            \"id\": \"33A935022BE62D377BD26E89F420478A\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5043e8b26b0e7b50\",\n            \"jobName\": \"Remote- Bilingual Customer Service Representative-Part Time\",\n            \"companyName\": \"Phoenix A.M.D. International Inc.\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694443767851,\n            \"dateOfPosted\": 1694223944672,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We’re looking for aPART TIME Home Based - French & English Bilingual Customer Service Rep.The Bilingual Customer Service Representative is responsible for handling all communication with the end users of our products & programs while providing an exceptional customer experience to ensure that decisions are aligned with the company’s culture.Do You...Speak and write French and EnglishWork well as part of a team that is empathetic, positive, professional with high-energy?Thrive on challenges, and discovering new ways of doing things?Want to be in a job that requires you to work on things outside of your comfort zone?Want to work in an environment where progress is made, and you are the tool that moves things forward?Want to be listened to, and encouraged to use your initiative and creativity?If your answers are yes... THEN WE COULD BE THE WORK PLACE FOR YOU!What you need if you want to be the successful applicant:You learn quickly and get very passionate about getting resultsYou have the ability to effectively & professionally communicate, whether written or verbally in both English and FrenchYou have excellent customer service skills and able to work within a teamYou have excellent organization skillsYou have strong problem solving skillsYou have experience in using Excel, Outlook and WordYou have the ability to multitask and work well in a fast paced environment while under pressureWhat we bring to the table:We are a growing entrepreneurial Canadian Bilingual company in business for over 31 years, led by the 2 entrepreneurs who originally started the business. We provide lifestyle protection programs and services for the furniture, bedding, appliances and electronics retailers across North America, which are designed to enhance the experience of consumers who buy them while creating indispensable profit centers for the retailers who sell them. We are committed to innovation and being the best at what we do. We value our people with the following advantages:Fun Company EventsStrong Charity & Community SupportGreat Environment to Work inPart of a Growing Community in BowmanvilleJob Types: Part-time, PermanentSalary: $18.00 per hourWork RemotelyJob Types: Part-time, PermanentPart-time hours: 15-30 per weekSalary: $17.00 per hourBenefits:Store discountWork from homeSchedule:Day shiftMonday to FridayCOVID-19 considerations:Qualified candidates will need to be fully vaccinated in order to be eligible for this position.-All employees are following COVID protocols Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Language:French and English (required)Work Location: Remote\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"EB6FF5ED135AA2EC75941A290C1E215C\",\n            \"cityName\": \"163 Alberni Highway, Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3c3d42fe6fdf6dbc\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mid Island Liquor\",\n            \"rowSalary\": \"From $17.75 an hour\",\n            \"date\": 1694443752485,\n            \"dateOfPosted\": 1694391393803,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Liquor is looking for part-time Customer Service Representatives at our Central Parksville Liquor Store.Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you!Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in the operations of the store, including but not limited to handling customer transactions, responding to customer questions and concerns in a professional manner, creating displays and stocking shelves, and ensuring store and merchandise are neat and organized.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Representative today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. Previous retail experience is preferred, and you must have a valid Serving it Right Certificate (or be willing to get certified prior to your first day).Who we are:Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve.Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op).We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.Job Types: Permanent, Part-timeSalary: From $17.75 per hourBenefits:Employee assistance programFlexible scheduleOn-site parkingStore discountSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"A03FA86B6044036387A2F12FAD0D8D00\",\n            \"cityName\": \"950 McMaster Way, Kamloops, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e4ef568fc3c433c2\",\n            \"jobName\": \"Inside Sales Customer Service\",\n            \"companyName\": \"Westlund Industrial Supply\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694443169714,\n            \"dateOfPosted\": 1692745101120,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.67094040000001,\n                    \"lon\": -120.3752202\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kamloops\",\n                \"formattedAddress\": \"McMaster Way, Kamloops, BC V2C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Thompson-Nicola\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kamloops\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"WESTLUND, a division of EMCO We offer a fun, fast-paced and dynamic workplace. We work as a team, share core values, and support each other’s growth and development. As our teammate, you will have the opportunity to continually develop your skills through ongoing training, have the opportunity to be innovative and try new things, and work alongside passionate colleagues with diverse backgrounds and experiences. We are a team of enthusiastic individuals who are dedicated to meeting and exceeding the needs of the customers we serve.Job DescriptionAs an Customer Service Representative, you will be responsible for interacting with customers primarily over the phone and by email. You will provide excellent customer service to generate and close sales and meet or exceed sales and gross profit targets to increase profit sharing while building long lasting loyal customer relationships.Additional duties will include:Process sales orders and turn quotations into orders through customer interactions, primarily over the phoneMaintain relationships with established key accounts and ensure that their requests are being metUse interpersonal skills to strengthen relationships with existing customers and increase market shareAct as a project manager (as needed) for large projects, which includes keeping detailed records of lead times and communicating lead time updates to the customerProspect and develop new customers using outbound calling campaignsMeet or exceed the Profit Centre’s gross profit and sales targetsAssist counter sales during peak hours and continue to drive business through face-to-face customer interactionsInvestigate and resolve customer issues such as pricing deductions and product returnsExpedite customer material with vendors when requiredFollow up with customers on quotes and outstanding ordersSupport the Outside Sales and Counter Teams with customer orders and issuesBe an integral part of the team supporting all activities that occur at the Profit CentreCommunicate to the Profit Centre Manager and Credit Department any changes in a customer’s business that might cause a credit riskPerform other tasks as requested by the Profit Centre ManagerQualificationsCollege and/or University degreeA minimum of 1 year of experience in customer service or inside sales/contractor experience preferredProficient in the use of Microsoft Office softwareOutstanding customer service and telephone skillsAbility to prospect new customers and increase sales with existing accountsPossess a high level of attention to detail and strong organizational abilities; must be able to multitask and balance many different deadlinesStrong written and verbal communication skills to build and maintain strong working relationships with customers, vendors, and teammatesAbility to identify customer requirements and provide profitable solutions and close the saleAble to learn and operate the applicable software system used to process ordersIntermediate math skillsPreferred Skills:Previous experience with or knowledge of weld fittings, pipe , valves and other products sold at the Profit CentreExperience using ERP SystemAdditional InformationWhy Join Our Team?EMCO Corporation is one of Canada’s largest integrated wholesale distributors of plumbing, HVAC, waterworks, and industrial products for the construction industry. We have endless opportunities for you to grow and develop in your career and a culture that prides itself in supporting you every step of the way!In addition, we will offer you:Great mentors and on-the-job trainingGrowth potential with competitive salary, benefits, and profit sharingA career with a solid, stable company with strong core valuesParticipation in our pension plan with employer contributionsWork-life balanceJob Type: Full-timePay: $18.00-$22.00 per hourBenefits:Company pensionDental careExtended health careLife insuranceProfit sharingRRSP matchWellness programSchedule:Monday to FridaySupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Kamloops, BC V2C 6K2: reliably commute or plan to relocate before starting work (required)Experience:Sales: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Mcmaster Way, Kamloops, BC\"\n        },\n        {\n            \"id\": \"40E3675B714C6FE9A50B019F4E768552\",\n            \"cityName\": \"Sydney, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7b90eac002dcf5c0\",\n            \"jobName\": \"Cashier, Customer Service\",\n            \"companyName\": \"Pipers & Puffs Smoke Shop Limited\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694442583770,\n            \"dateOfPosted\": 1694442583580,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.1367899,\n                    \"lon\": -60.19422399999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sydney\",\n                \"formattedAddress\": \"Sydney, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Cape Breton Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sydney\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsScreening questions Are you available for shift or on-call work? Are you available for the advertised start date? Are you currently legally able to work in Canada? Do you have previous experience in this field of employment?Work Term: PermanentWork Language: EnglishHours: 20 hours per week\",\n            \"location\": \"Sydney, NS\"\n        },\n        {\n            \"id\": \"ABE020D3EC211417A98A530D29B39123\",\n            \"cityName\": \"Saint John, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=95c705721e917f5f\",\n            \"jobName\": \"Customer Service Agent Outbound (Remote) - New Brunswick\",\n            \"companyName\": \"National Diabetes Trust\",\n            \"rowSalary\": \"$15.70 an hour\",\n            \"date\": 1694442491618,\n            \"dateOfPosted\": 1694239175629,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our Organization The National Diabetes Trust is Canada’s largest charitable clothing and small household good collection service. With more than 5,000 donations bins and an active home pick-up service in communities across Canada (excluding Quebec), we collect unwanted gently used clothing and household items, using them to raise much-needed funds for Diabetes Canada.  Each year, the program diverts more than 100 million pounds of clothing and household items from landfill sites across Canada. As an employee on the National Diabetes Trust team, you are part of our national coverage in 2,500 communities, with 28 operations and 100 trucks. Join a team that is making a difference raising money for life altering charitable programs, all while helping the environment. What We Offer:Work from the comfort of your own homeEmployee Assistance Program (EAP)Registered Pension Plan (100% Employer-paid) once eligibility criteria are metCorporate discounts through Perkopolis, Value Village and GoodLife FitnessHours of Work* This role will work up to 29 hours per week in 6-hour daily time blocks, including weekends. A consistent schedule will be developed in collaboration with operational needs.  About the Outbound Customer Service Agent Role Reporting to the Virtual Contact Centre Supervisor, this role is responsible for soliciting, scheduling and confirming donation pick ups of reusable clothing and small household goods from the public. While there is no sales component to this role – we are seeking outgoing individuals with a focus on providing a “best in class” customer experience. Highlights of the role include:To solicit, schedule and/or confirm donations of reusable clothing and miscellaneous itemsThis is accomplished by reading from a standardized script to verify donor informationTo meet or exceed KPI targets and/or productivity standards as outlined by the SupervisorTo understand and promote the mission of Diabetes Canada and the National Diabetes Trust to the general publicProvide potential donors with a high level of customer service by demonstrating a professional manner, discipline and strong organizational skillsInform the Supervisor of any system or process discrepanciesMaintain accurate and up to date recordsAttend all scheduled shifts, training, and meetings as determined by the SupervisorMaintain confidentiality of donor informationAdditional duties as required, ensuring the effective operation of the Virtual Contact Centre function About You The selected candidate for this role will meet the following minimum requirements: Minimum High School Diploma6+ months of experience in customer service and/or a call centre environmentMust have in working order at all times a PC home computer, direct connect (wired) high speed internet (no Wi-Fi/router), a USB noise cancelling headset, and either an All-in-One Printer (copier, scanner, printer) OR the ability to sign documents electronically.Must have full availability between the hours of Monday-Friday 3pm-9pm EST and Saturdays and Sundays 11am -5pm EST.Strong computer skills and experience with computer databases (mouse, keyboarding, opening/closing programs, locating files, installing/uninstalling programs, updating software, basic troubleshooting)Intermediate web and email skills (internet, downloading, logging on/off, clearing history, sending, and receiving email messages, (attaching/saving/opening files), message boards, instant messagingDisciplined and organized self-starter who can succeed in a fast-paced, high volume call environment, while being able to manage multiple tasksBasic competency in Microsoft Office and AdobeAdvanced Oral and Written communication -  Diversity, Equity and Inclusion Statement At National Diabetes Trust, we are guided by our values of Accountability, Teamwork, Integrity, and Respect. We believe in the importance of Diversity, Equity and Inclusion (DEI). We are committed to bringing people together in a respectful, inclusive and supportive environment, no matter their age, gender, identity, race, ethnicity, religion, income, sexual orientation, or where they live. In July of 2020, we signed the BlackNorth Initiative CEO pledge and will hold ourselves accountable in meeting those commitments.  How to Apply Must be legally eligible to work in Canada and, where applicable, must have a valid work permit or study permit that allows the candidate to fulfill the requirements of the role.NDT welcomes applications from all qualified candidates, including women, Indigenous peoples, persons with disabilities, and members of visible minorities. We value a diverse workforce that reflects the communities we serve.We are committed to accommodating people with disabilities as part of our hiring process. If you have special requirements, please advise us during the recruitment process.We thank all interested applicants; however, only those selected for an interview will be contacted. INDNDTL\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"2A9FE02CDD0712CB2403C14D299397A4\",\n            \"cityName\": \"1101 Rutherford Road, Vaughan, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b8239aaf5b11eaf5\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"4906 - Starbucks - Rutherford & Thornhill Wood\",\n            \"rowSalary\": \"From $17.25 an hour\",\n            \"date\": 1694442429172,\n            \"dateOfPosted\": 1686131653556,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.82490079999999,\n                    \"lon\": -79.56353349999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Rutherford Rd, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Working in a Starbucks® store is different from any other job. You are creating moments of connection with our customers every day, all around the world. You will handcraft delicious beverages and build relationships with our customers and with your fellow partners. We offer great benefits and an environment that is truly welcoming.Job Types: Full-time, Part-time, PermanentPart-time hours: 20 per weekSalary: From $17.25 per hourBenefits:Company pensionDental careDisability insuranceDiscounted or free foodEmployee assistance programEmployee stock purchase planExtended health careFlexible scheduleLife insurancePaid time offProfit sharingRRSP matchStock optionsStore discountTuition reimbursementVision careWellness programFlexible Language Requirement:English not requiredSchedule:8 hour shiftDay shiftHolidaysMonday to FridayNight shiftWeekend availabilitySupplemental pay types:TipsCOVID-19 considerations:wearing masks is optional ,however we follow ontario Health canada guidance .Work Location: In person\",\n            \"location\": \"Rutherford Road, Vaughan, ON\"\n        },\n        {\n            \"id\": \"37BD7757F98CBD1BCA09FE57E7205904\",\n            \"cityName\": \"Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b20b5b725ac0dc88\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Mackay's Auto & Custom Limited\",\n            \"rowSalary\": \"$35,000–$45,000 a year\",\n            \"date\": 1694442372693,\n            \"dateOfPosted\": 1694214889909,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 1 year to 2 yearsExperience: 7 months to less than 1 yearor equivalent experience Tasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Issue receipts and other forms Maintain records and statistics Perform general office duties Receive payments Computer and technology knowledge Internet MS Excel MS Outlook MS Windows Security and safety Basic security clearance Work conditions and physical capabilities Attention to detail Fast-paced environment Work under pressure Screening questions Are you available for the advertised start date? Are you currently legally able to work in Canada? Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Health benefits Dental plan Health care plan Paramedical services coverage Vision care benefits Long term benefits Group insurance benefits Life insuranceWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"7CD81D1CF24165B9BA8C4B8E13DBCF50\",\n            \"cityName\": \"353 Market Avenue, Grand Forks, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f0169f6e7c30f968\",\n            \"jobName\": \"Barista/Customer Service/Kitchen\",\n            \"companyName\": \"The Board Room Cafe\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694442237124,\n            \"dateOfPosted\": 1693590416836,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.032146,\n                    \"lon\": -118.4380813\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grand Forks\",\n                \"formattedAddress\": \"Market Ave, Grand Forks, BC V0H 1H0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kootenay Boundary\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grand Forks\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"- Maintain regular and consistent attendance and punctuality, with or without reasonable accommodation- Available to work flexible hours that may include early mornings, evenings, weekends, and holidays- Meet store operating policies and standards, including providing quality beverages and food products, cash handling and store safety and security- Engage with and understand our customers through clear and pleasant communication- Able to perform many tasks within the store during each shiftJob Types: Full-time, Part-timePart-time hours: 15-20 per weekSalary: From $16.75 per hourExpected hours: 15 – 35 per weekBenefits:Casual dressDiscounted or free foodFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftDay shiftHolidaysOn callWeekends as neededSupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Market Avenue, Grand Forks, BC\"\n        },\n        {\n            \"id\": \"DD1330D49914F5CEF8AD833DBE52BA51\",\n            \"cityName\": \"Par2Pro in Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=506594c2734518e5\",\n            \"jobName\": \"Full-Time Golf Simulator Industry Customer Service Rep In South Central Edm\",\n            \"companyName\": \"Par2pro\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694442137984,\n            \"dateOfPosted\": 1692745686496,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Do you enjoy talking to people? More important, do you enjoy helping people? Even more important, do you enjoy working as part of a team where everyone's ideas are valued? If this sounds like you, please submit your resume!We are a fully Canadian owned company that, for the past 15 years, has been custom designing and selling fully built out residential and commercial grade golf simulator and analyzer rooms to clients all around the world. During this time we have built a reputation of trust and quality within the golf simulator industry.We are searching for a mature person who understands what \\\"Great\\\" customer service truly is and knows how to provide it. Our clients are of vital importance to us which is why we work so hard to provide them with the absolute best experience possible. Our company belief is not to push or \\\"sell\\\" anything to our clients. We instead answer their questions and help guide them to the best golf simulator system that fits both their needs and budget.As this Full Time Customer Service Representative (CSR) position is typically our client's first impression of our company, it is most important that you are professional, polite, accurate and thorough. We are not a typical walk-in retail store, meaning the CSR's mainly handle incoming phone call and email inquiries.This position has the ability to be promoted to Golf Simulator Product specialist whom will have gained extensive knowledge and experience from reading, watching, and using the systems both online and in-house.Some of the tasks and required skills for this important role are:- Having at least 2 full years of previous work related experience using CRM software and similar programs, plus be able to use a Windows computer and MS Office programs efficiently.- Accurate and detailed data entry with a minimum 60 wpm typing speed is needed.- You must be able to read, write/type & speak English fluently & flawlessly as your first language.- Any experience with and/or knowledge of Golf and Golf Simulators would be a great asset.- French bilingual ability would also be a great asset.- Have reliable transportation to and from our office location.You must take pride in your work and love being on the front line for our business. You are an energetic, positive minded, hard-working, very detailed and accurate, friendly person with a great attitude. It is extremely important that you are able to work independently and be willing to go the extra mile for our clients and our company.You are required to complete the Indeed Questions and Assessments emailed to you upon submitting your resume prior to being considered for this job.Only candidates who already live locally in Edmonton and the immediate surrounding area will be considered.We look forward to hearing from you, however only those we are interested in will be contacted.Good Luck!Job Types: Full-time, PermanentSalary: $20.00-$24.00 per hourBenefits:Casual dressCompany eventsDental careDisability insuranceExtended health careLife insuranceOn-site parkingStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridaySupplemental pay types:Bonus payCOVID-19 considerations:All current AHS health restrictions are in place.Application question(s):Why do you feel that you would be a good fit for this position?Experience:Phone & Email Customer Service: 3 years (required)Work Related QuickBooks (or equivalent)): 2 years (required)Work Location: In person\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"918B2E3AD4AFFEFDB11AA0E33F7F60F4\",\n            \"cityName\": \"6461 Metral Dr, Nanaimo, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e430e586a16eae07\",\n            \"jobName\": \"Customer Service/Pizza Maker\",\n            \"companyName\": \"Domino's Pizza | Ptza Nation Bc\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694442134025,\n            \"dateOfPosted\": 1693590277573,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.22391100000001,\n                    \"lon\": -124.0426174\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Nanaimo\",\n                \"formattedAddress\": \"Metral Dr, Nanaimo, BC V9T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Nanaimo\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Domino's Pizza is hiring immediately for Customer Service Representatives (Pizza Cook/Team Member) to join their team! Job type:Part time, Permanent We are searching for qualified customer service reps with personality and people skills. We're growing so fast it's hard to keep up, and that means Domino's has lots of ways for you to grow (if that's what you want), perhaps to management, perhaps beyond. Whether it's your hobby, main-gig, or supplemental job, drop us a line. We're bound to have just the thing for you. We take pride in our team members and our team members take pride in Domino's Pizza! Being the best pizza delivery company in the world requires exceptional team members working together. At Domino's Pizza, our people come first! As part of our crew, your responsibilities will include: Stocking ingredients from delivery area to storage, work area, walk-in cooler. Preparing products Receiving and processing telephone orders. Cleaning equipment and facility approximately daily. Benefits of working at Domino's Pizza: Flexible schedules Competitive wages for all Team Members Store discounts Fun working environment Additional pay on top of wage with tip sharing program Domino's is an equal opportunity employer. REQUIREMENTS At Domino's Pizza, Our Most Important Ingredient is Our People! We offer employment opportunities within our franchise stores. Take the first step in joining our team, and you'll find opportunities you won't find anywhere else in the industry!\",\n            \"location\": \"Metral Drive, Nanaimo, BC\"\n        },\n        {\n            \"id\": \"C8479F5406EA626F5466635B2014B240\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=073f4dacf69c1a8a\",\n            \"jobName\": \"Customer Service/Gamemaster\",\n            \"companyName\": \"Escape Hour\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694442103145,\n            \"dateOfPosted\": 1694215067923,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Escape Hour is one of the premier escape rooms. With, interactive game masters, full sound and set design, these games boast a one of a kind, immersive escape game experience.Who we are looking for:Great Game Masters are the key to our customers having an exceptional memory inducing experience; so stellar customer service skills are mandatory. Game Masters create the energy and excitement necessary for customers to begin their adventure while calming fears and providing the help and clarity teams need to have a one of a kind experience. Game Masters maintaining a professional, service-oriented focus and deliver flawless experiences to our customers by running our live events.Key Qualifications:Excellent customer service skills (total customer oriented focus)Positive and energeticSolid work ethicStrong Presentation skillsStrong attention to detailGreat communication skills and practices (verbal and written)Invigorated by constant interactions with customersPersonable, able to peak customers interest to their event settingAble to handle feedback, coachableInterested in personal growth and learningMatureTeam playerAbility to set up decorationsAdditional details:Game Masters greet customers and deliver energetic pre-game introductions (prime customers) while clearly explaining safety rules and other guidelines. When the game is on, Game Masters remotely monitor customers, provide assistance when necessary, debrief teams when games end, take group photos, and reset event spaces for the next group. In addition, with experience Game Masters are called upon to help maintain certain game props and can serve as team leaders.Game Masters are the face of the company, and are proud to represent Escape Hour while receiving great satisfaction from seeing customers thrilled by their experience with us.If you feel that Escape Hour offers an opportunity and culture in which you will excel, please email us with your resume and why you are the perfect candidate for Escape Hour.Saturday/Sunday availability is a must.Job Types: Full-time, Part-time, PermanentPart-time hours: 20 per weekSalary: $15.00-$16.00 per hourFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftEvery WeekendWeekends as neededCOVID-19 considerations:Following all AHS guidelinesApplication question(s):Are you available to work every Friday, Saturday, Sunday?Education:Secondary School (preferred)Experience:customer service: 2 years (required)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"404DCED84C0CF25EB03DE508F85CC2D8\",\n            \"cityName\": \"169 Hurontario Street, Collingwood, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9c05b66060cdcc5d\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Stuart Ellis Pharmacy\",\n            \"rowSalary\": \"From $17.55 an hour\",\n            \"date\": 1694441939502,\n            \"dateOfPosted\": 1692721232496,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.4915959,\n                    \"lon\": -80.21520579999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Collingwood\",\n                \"formattedAddress\": \"Hurontario St, Collingwood, ON L9Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Collingwood\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a locally owned and operated family Pharmacy located in downtown Collingwood. Stuart Ellis IDA Pharmacy has been serving the community for over 75 years!We are looking to hire a Full Time/Part Time Cashier/Customer Service Representative to join our team.Duties include:-Experience in Retail/Customer Service work experience preferred.-Operate a cash register with prompt and accurate processing.-Merchandising products and setting up displays as needed.-Must possess excellent communication and customer service skills.-Stocking shelves, cleaning and checking expiration dates.-Be able to Multitask.-Be Flexible, Reliable and Trustworthy.-Available to work some evenings and weekends (evenings are until 7pm on weekdays and 5pm on weekends).-We offer benefits and an employee discount program.Job Types: Full-time, Part-timeSalary: From $17.55 per hourWork setting:Drug storeApplication deadline: 2023-09-30\",\n            \"location\": \"Hurontario Street, Collingwood, ON\"\n        },\n        {\n            \"id\": \"CB5CD596617E9529D8E50C8F4089F441\",\n            \"cityName\": \"IGA Penticton in Penticton, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4c1282fdb5ea00bf\",\n            \"jobName\": \"Deli Clerk/Customer Service\",\n            \"companyName\": \"Iga Penticton\",\n            \"rowSalary\": \"Up to $20 an hour\",\n            \"date\": 1694441760278,\n            \"dateOfPosted\": 1668577364280,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.4991381,\n                    \"lon\": -119.5937077\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Penticton\",\n                \"formattedAddress\": \"Penticton, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Okanagan-Similkameen\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Penticton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"IGA Penticton is seeking highly motivated individuals to join our Deli Management TeamThe candidates must posses a passion for Customer Service while working in a Team EnvironmentThe positions will be either part time or full time depending on the candidates intentions.Experience is the retail food service industry in an asset, however training will also be provided.Applicants are required to work evenings and weekends.Job Types: Part-time, Full-timeSalary: Up to $20.00 per hourBenefits:Dental careDiscounted or free foodExtended health careFlexible schedulePaid time offTuition reimbursementSchedule:8 hour shiftCOVID-19 considerations:The store has a regulated Worksafe BC Covid-19 plan in place to protect the safety of our Employees and Customers\",\n            \"location\": \"Penticton, BC\"\n        },\n        {\n            \"id\": \"3F76871B8D216E7EF2754C67F3BC00A2\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=953b869bd414f4f4\",\n            \"jobName\": \"Bilingual Customer Service Representative (Hybrid)\",\n            \"companyName\": \"Belimo Americas\",\n            \"rowSalary\": \"$48,000–$58,000 a year\",\n            \"date\": 1694440562815,\n            \"dateOfPosted\": 1692737489189,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Belimo is a global leader in the development, production and marketing of actuator solutions for controlling heating, ventilation and air conditioning systems. Actuators, control valves and sensors make up the company's core business.JOB SUMMARYThe Bilingual Customer Service Representative is the primary contact between Belimo Customer Service and our external customers. This position provides timely responses to customer correspondence, completes the order fulfilment process and assists in closing out any action items from customer communications.COMPANY'S MISSION AND VALUESThe objectives of this position are fully integrated to the objectives of the Company’s Mission and Values. It is the responsibility of all employees to perform their duties in accordance with Company Policy.REPORTING STRUCTUREThe Bilingual Customer Service Representative is part of the Customer Service Team and reports to the Office Manager, Customer Support. This position bear’s full responsibility for all agreed upon goals and objectives.JOB RESPONSIBILITIESReceive direct correspondence from external customers and Belimo outside sales staff. Provide timely responses and assist in closing out any action items from such communications.Same day data entry of customer purchase orders into the ERP system. Order receipt can come in the form of e-mail, fax, or phone.Provide same day order confirmations and clarify order discrepancies.Support order status requests, credits/debits, quotes, answering customer questions and limited processing of return material authorizations.Expedite customer orders and follow up to ensure completion.Provide support of SAP ERP system to internal users regarding customer service issues.Generate customer service monthly metrics (e.g. SAP order entry & phone statistics) and reports to ensure customer satisfaction.Perform other duties to support Sales and marketing as needed (e.g. Trade show coordination, Canada customer newsletter content.)REQUIREMENTSAt least 2 years of direct customer service experience in a fast paced order environment is preferred.A background in supporting manufacturing processes or technical products is a plus.Minimum level of education is an Associate’s Degree or an applicable business program certification.Ability to interpret complex business documents including customer purchase orders.Ability to professionally communicate with customers both verbally and in writing in both English and French.Proficient use of personal computer, fax machine, and other supporting business equipment is a must.Proficient use of the Microsoft Suite of products (Outlook, Word, and Excel).Proficient typing skills with high level of accuracy.Experience with Microsoft Lync a plus.High degree of time management and organization required.Must have excellent interpersonal skills and maintain both a proactive and positive attitude.Must be Bilingual (English/French).We offer a competitive salary and an excellent benefits package including a performance bonus.Job Type: Full-timePay: $48,000.00-$58,000.00 per yearBenefits:Casual dressCompany eventsDental careDisability insuranceEmployee assistance programEmployee stock purchase planExtended health careLife insuranceOn-site parkingPaid time offRRSP matchTuition reimbursementVision careWellness programWork from homeSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"CB921E98A1F631F74C65E2ABEF728CF2\",\n            \"cityName\": \"360 Norwich Ave, Woodstock, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2bcb23c9ed21eadb\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Domino's Pizza Woodstock\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694440421948,\n            \"dateOfPosted\": 1693588666494,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.1201853,\n                    \"lon\": -80.73938389999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Woodstock\",\n                \"formattedAddress\": \"Norwich Ave, Woodstock, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Oxford County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Woodstock\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Domino's Pizza is now hiring Customer Service RepresentativesWe are happy that you are interested in joining the Domino’s team!Customer Service Representatives (CSR) are primarily responsible for providing exceptional customer service, making great Domino’s Pizza products and maintaining cleanliness of the store. CSR’s at Domino’s work in a team environment and they are expected to be positive and productive team players. Every CSR plays a part in helping the store achieve its goals for customer service, sales growth, operational reviews and cost management, therefore, their attention to these targets is paramount.The responsibilities are guided by the Domino’s Pizza of Canada’s policies and procedures. The standards can in some instances be modified by Empire Pizza or the CSR’s supervisor.Other responsibilities may include being a shift leader. Shift leaders are responsible for completing all shift tasks as laid out in the policies, manage other team members, balance finances and inventory and train team members. Shift leaders may be required to attend workshops to further develop their skills.CSR’s are required to attend to their scheduled shifts on-time, in complete uniform and with positive attitudes. During some shifts, the CSR may be required to help promote the business and do some local store marketing.Although schedules are typically posted a few days early, CSR’s may be required to come to work on short notice or perform additional tasks outside of this description.Job Type: Part-timePart-time hours: 10-30 per weekSalary: $15.50-$16.50 per hourExpected hours: 10 – 30 per week\",\n            \"location\": \"Norwich Ave, Woodstock, ON\"\n        },\n        {\n            \"id\": \"54DC58B5B3AE6C34F8F9DDCDE31DEF52\",\n            \"cityName\": \"Trigger Industries Inc in Crossfield, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b21e68cff72155d7\",\n            \"jobName\": \"Automotive Product Advisor And Customer Service Representative\",\n            \"companyName\": \"Trigger Industries Inc\",\n            \"rowSalary\": \"$22–$28 an hour\",\n            \"date\": 1694440374547,\n            \"dateOfPosted\": 1693595912636,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.4311767,\n                    \"lon\": -114.0260774\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Crossfield\",\n                \"formattedAddress\": \"Crossfield, AB T0M 0S0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Crossfield\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Trigger Industries is a busy manufacturing company specializing in designing and building custom truck parts. We are in need of a personable and knowledgeable individual to run our front end.Roles and Responsibilities:Advising customers on products and fitment. Educating on custom optionsProcessing ordersAnswering customer questions via phone, email and social media messagesEnsuring orders are fulfilled and shipped correctly and in a timely mannerSocial Media management may be included, based on the candidateQualifications:2+ years of experience in customer serviceMust be organized, detail oriented and able to multitaskExcellent communication with customers and teamAutomotive and customization knowledge and experience is an assetWhy work at Trigger?Competitive compensation based on experienceFull time position Monday to Friday 7am - 5pmWorking in a friendly team environmentWork RemotelyNoJob Type: Full-timeSalary: $22.00-$28.00 per hourExpected hours: 40 per weekSchedule:Monday to FridayExperience:Automotive Industry: 1 year (preferred)Customer Service: 1 year (preferred)Licence/Certification:Drivers License (required)Work Location: In person\",\n            \"location\": \"Crossfield, AB\"\n        },\n        {\n            \"id\": \"78470C0E6D6D7F887ECC167F846901BC\",\n            \"cityName\": \"1653 Boul Des Promenades, Saint-Hubert, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=481fbe0d31cabfc4\",\n            \"jobName\": \"Caissier(Ère), Service à La Clientèle / Cashier (27), Customer Service\",\n            \"companyName\": \"Meubles Rd\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694440363070,\n            \"dateOfPosted\": 1692714840826,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5039691,\n                    \"lon\": -73.3833305\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Longueuil\",\n                \"formattedAddress\": \"Bd des Promenades, Longueuil, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Longueuil\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Viens faire partie des meubles!Plaisir : Ici, on meuble notre quotidien avec plaisir!Autonomie : Ici, on ne s’enfarge pas dans les fleurs du tapis!Débrouillardise : Ici, on assemble des meubles, même sans plan!Innovation : Ici, on ne déplace pas juste des meubles, on déplace des idées!Développement durable : Ici, on met la table pour un avenir meilleur!Pourquoi tu nous diras ? Parce que des choses merveilleuses t’attendent : une équipe de feu, une culture d’entreprise unique, du plaisir garanti, des possibilités de progression, un salaire compétitif, des avantages sociaux qui répondent à tes besoins, des programmes de santé et bien-être, de la conciliation travail-famille, de la reconnaissance à la saveur RD, des rabais employés et des activités sociales hautes en couleur!Voici ce que nous te proposons :Accueillir la clientèle avec le sourire et répondre aux demandes des clients au besoin;Répondre au téléphone et aux courriels;Garder son environnement de travail propre et dégagé;Préparer les contrats et veiller à la facturation, à l’aide du système informatique (Meublex);Assurer le suivi des dossiers;Balancer la caisse et le TPV;Voir à l’affichage des prix en magasin;Dynamique, débrouillarde, enthousiaste, vive d’esprit et autonome;Possédant beaucoup d’entregent;Calme, polie et courtoise;Possédant des connaissances en informatique;Ayant de l’expérience pertinente reliée au service à la clientèle et être reconnue pour son professionnalisme et son excellente approche client;Tu te reconnais? Joins-toi aux meubles, on a gardé une place juste pour toi!___________________________________________________________________Come be part of the furniture!Pleasure: Here, we furnish our daily lives with pleasure!Autonomy: Here,we don’t get caught up in insignificant details!Resourcefulness: Here, we assemble furniture even without a plan!Innovation: Here, we don’t just move furniture, we move ideas!Sustainable development: Here, we set the table for a better future!Why you say? Because marvellous things are waiting for you: a team on fire, a unique business culture, guaranteed pleasure, advancement opportunities, a competitive salary, benefits that answer your needs, health programs, work and family balance, recognition with an RD flavor, employee rebates on our products and fun social activities!Here is our proposition to you:● Welcome customers with a smile;● Handle queries from the customers if need be;● Answer the phone (according to our protocol) and emails;● Contribute to a great ambiance in the store;● Keep a clean and unobstructed workspace;● Prepare contracts and take care of invoicing, using our operating software (Meublex);● Follow up on files;● Balance the cash and the POS terminal;● Display in-store prices;● Classify documents;● Provide excellent customer service;● Make sure that the company objectives and policies are implemented;● Show a dynamic, resourceful, enthusiastic, bright and autonomous personality;● Have great interpersonal skills;● Be calm, polite, and courteous;● Have computer skills and knowledge;● Have relevant experience in regards to customer service and be known for his/her professionalism and excellent customer approach;● Experience with the Meublex operating system (an asset);You recognize yourself? Join our furniture, we kept a place just for you!Type d'emploi : Temps plein, PermanentSalaire : 16,00$ à 20,00$ par heureAvantages :Réductions TarifairesStationnement sur placeJours de travail :Toutes les fins de semaineQuarts de travail :Quart de jourLieu du poste : En présentiel\",\n            \"location\": \"Boul Des Promenades, Saint-Hubert, QC\"\n        },\n        {\n            \"id\": \"8F98868A03921787015181C1A64F4EA3\",\n            \"cityName\": \"Greater Toronto Area, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dbffbd227b83def4\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Bilingualsource\",\n            \"rowSalary\": \"$21–$26 an hour\",\n            \"date\": 1694438188214,\n            \"dateOfPosted\": 1693589315886,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.0383744,\n                    \"lon\": -79.1999949\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Greater Toronto Area, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Opportunity: Bilingual French Customer Service (Recent Grad)Are you a recent graduate with a strong command of both English and French? Are you looking to kick-start your career in a dynamic and diverse industry? We have an exciting opportunity for you!Position: Bilingual French Customer ServiceLocation: Greater Toronto Area (GTA)- Mississauga, Brampton, North York, Scarborough, Markham, Vaughn and surroundingsExperience: A few years of experience in customer service, including retail, and preferably in fields such as Insurance, Finance, Investment, or related industries.Education: University degreeWork Status: Canadian Citizenship or Permanent Residency- No student Visa for now.About Us:We are a leading company in the fields of Insurance, Finance, Investment, and more. Our team is committed to providing top-notch customer service and building lasting relationships with our clients. We value diversity, innovation, and excellence in all that we do.Role Overview:As a Bilingual French Customer Service representative, you will play a vital role in delivering exceptional service to our clients. You'll have the chance to utilize your bilingual communication skills while assisting clients with their inquiries, resolving issues, and ensuring their overall satisfaction. This role offers a supportive environment for career growth and development.Key Requirements:Strong proficiency in both English and French (spoken and written)Previous experience in customer service, including retail, and ideally in fields like Insurance, Finance, or InvestmentUniversity degree completedCanadian Citizenship or Permanent ResidencyResiding in the Greater Toronto Area (GTA)What We Offer:Competitive salary ranging between $45,000 - $55,000, depending on experience and skillsProfessional development opportunitiesCollaborative and inclusive work environmentOpportunity to work with industry expertsHow to Apply:If you are a motivated and bilingual recent graduate with a passion for providing outstanding customer service, we want to hear from you! Please submit your resume along with a brief cover letter detailing your relevant experience to farzaad.gopal@bilingualsource.comNote: Only candidates selected for an interview will be contacted.Join our team and embark on an exciting career journey with us. Apply today!Job Types: Full-time, PermanentSalary: $21.00-$26.00 per hourBenefits:Company eventsCompany pensionDental careEmployee stock purchase planExtended health careLife insurancePaid time offRRSP matchTuition reimbursementVision careSchedule:8 hour shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Greater Toronto Area, ON: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Language:French (required)Work Location: In personExpected start date: 2023-09-04\",\n            \"location\": \"Greater Toronto Area, ON\"\n        },\n        {\n            \"id\": \"40FCFB621AFCD0E66DCF8EDEA3E59E4F\",\n            \"cityName\": \"Terra Recruitment Inc. in Bradford, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8331b6c4f462a926\",\n            \"jobName\": \"Customer Service & Marketing Coordinator\",\n            \"companyName\": \"Terra Recruitment Inc.\",\n            \"rowSalary\": \"$50,000–$55,000 a year\",\n            \"date\": 1694438152579,\n            \"dateOfPosted\": 1693590653738,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.11098579999999,\n                    \"lon\": -79.5794265\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bradford West Gwillimbury\",\n                \"formattedAddress\": \"Bradford, Bradford West Gwillimbury, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bradford West Gwillimbury\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are hiring a dynamic Customer Service & Marketing Coordinator specializing for our client’s manufacturing company. You'll lead our online presence, engage audiences, and support the customer service department.Responsibilities:Develop & implement a cohesive social media strategy.Manage content across platforms and monitor trends.Craft compelling content including visuals and copy.Collaborate with design for impactful assets.Assist in planning & executing campaigns and promotions.Ensure seamless cross-team coordination.Foster online communities, engage with followers.Manage reviews for positive brand reputation.Track KPIs, provide reports, and propose improvements.Use data to refine strategies.Collaborate with customer service for issue resolution.Support customer service department adhoc when neededLeverage social media to address customer inquiries.Additional duties as required from time-to-timeQualifications:Bachelor's degree in Marketing or related field.2+ years of social media & digital marketing experience.2+ years of customer service experience preferably in a manufacturing settingProficiency in social media management tools.Strong communication & organizational skills.Creativity & adaptability in a fast-paced environment.We appreciate the interest from all candidates; however, we will be contacting only those that best fit our client’s requirements.Terra Recruitment welcomes and encourages applications from people with disabilities. Accommodations are available on request for candidates taking part in all aspects of the selection process.Job Type: Full-timeSalary: $50,000.00-$55,000.00 per yearBenefits:Extended health careSchedule:Monday to FridayAbility to commute/relocate:Bradford, ON L3Z 0Z9: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:Marketing/Social Media: 2 years (preferred)Customer Service: 2 years (preferred)Work Location: In person\",\n            \"location\": \"Bradford, ON\"\n        },\n        {\n            \"id\": \"5A4F08D6EF0A62A50A1355D67EDBCC68\",\n            \"cityName\": \"70 Powell Dr, Carbonear, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dd149cb011843154\",\n            \"jobName\": \"Customer Service And Sales Associate\",\n            \"companyName\": \"Advance Auto Care\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694437060411,\n            \"dateOfPosted\": 1692737251176,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.7282072,\n                    \"lon\": -53.2341359\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Carbonear\",\n                \"formattedAddress\": \"Powell Dr, Carbonear, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Carbonear\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Advance Auto Care is looking for a Service Advisor to join our team. If you are an energetic and motivated individual with a positive attitude, a dedication to providing exceptional customer service and a desire to succeed, we would love to have you!The Service Advisor's major responsibility is to satisfy customers by providing exceptional customer service, and expediting the repair and service of their vehicles within an expected length of time and at an expected cost. This position has a competitive monthly incentive structure.Some responsibilities:Is responsible for establishing rapport and trust with customers.Meet and greet customers and complete check-in process.Write repair orders.Be familiar with the required services of all products and suggests the required maintenance at each interval.Documents vehicle problems by listening to customers describe them and by asking probing questions.Maintains extensive contact with customers, phoning to provide estimates on service and repairs before jobs are begun, explaining the appointments/scheduling systems to customers, and establishing with customers the method of payment for repairs (cash, warranty, etc.).Constantly communicates with Technicians to obtain information on needed vehicle repairs and to order parts as required from suppliers.Recommends additional maintenance and repair services to customers when appropriate.Capable of working independently, managing his or her time and workflow.Involves patiently listening to customers describe vehicle problems, determining the appropriate work involved in the repairs, and accurately recording problems and authorized repairs on work orders so that the Technician understands what to do.Requires accuracy, attention to detail, and clear communication with other team members and departments in the dealership.Requires the continuous updating of technical knowledge by reading service bulletins and consulting with Technicians.Complete invoices and paperwork required for fleet jobs as well as inputting jobs into different portals as required.Job Type: Full-timeSalary: $18.00-$22.00 per hourBenefits:Extended health careLife insuranceSchedule:8 hour shiftExperience:Customer service: 2 years (preferred)Licence/Certification:Driving Licence (preferred)Work Location: In personExpected start date: 2023-09-01\",\n            \"location\": \"Powelll Dr., Carbonear, NL\"\n        },\n        {\n            \"id\": \"786431BE8C08AF5F5C70303D4E9E70FC\",\n            \"cityName\": \"7250 Rue du Mile End, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e0bc0ee3f22fd4c7\",\n            \"jobName\": \"Représentant-e, Service à La Clientèle/Customer Service Representative\",\n            \"companyName\": \"Global Payments (Beamery)\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694437058422,\n            \"dateOfPosted\": 1693590951497,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5320781,\n                    \"lon\": -73.62304920000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue du Mile End, Montréal, QC H2R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"DescriptionLa formation débute le 2 octobre prochain! - Postes à temps plein seulement Vous êtes à la recherche d’un nouveau défi et vous voulez rejoindre une entreprise du classement Fortune 500 axée sur la technologie et l'innovation? Chez Global Payments, vous aurez de nombreuses possibilités de croissance et de développement et nous vous promettons que chaque jour se transformera en un défi passionnant. Joignez-vous à notre équipe dynamique! L'importance que nous accordons aux membres de notre équipe: De réelles opportunités d'évolution professionnelle Un environnement de travail collaboratif et convivial avec un code vestimentaire décontracté Une assurance médicale Couverture d'invalidité à courte et longue durée Plans d'assurance vie Programmes d'épargne-retraite Programme d'achat d'actions pour les employés Programme d'assistance aux employés Programme de remboursement des frais de scolarité Possibilités de faire du bénévolat Lieu sûr pour la communauté LGBTQIA2+ Renseignements importants: Horaire: 37,5 heures par semaine, sur une base de rotation, 365. Travail du bureau: 7250, rue du Mile-End, Montreal. Salaire: 20$/h Ce que vous contribuerez à l'équipe: Aider à la formation des nouveaux commerçants dans les systèmes. Identifier et répondre aux demandes des clients concernant les comptes en utilisant l'écoute, la pensée critique et les compétences acquises pour résoudre l’appel. Fournir une solution aux problèmes ou aux plaintes des commerçants et les transmettre à la direction ou à l'équipe concernée pour les cas nécessitant une enquête plus approfondie. Utiliser adéquatement le système et les ressources internes pour servir efficacement et avec précision les clients et interpréter les données des marchands. Démontrer une connaissance des produits, des services, de la recherche de comptes, des opérations au point de vente et de la maintenance technique et de compte. Éduquer les commerçants sur les politiques, les procédures et les produits. Documenter avec précision les conversations des clients dans les systèmes appropriés. Résoudre rapidement tous les problèmes en utilisant les protocoles établis ou transférer aux personnes ressources. Interagir avec divers groupes de soutien au sein de Global Payments et assurer la liaison avec eux en ce qui a trait à la résolution d'une préoccupation d'un commerçant. Atteindre les standards de performance fixés par le département. Fournir un soutien opérationnel à d'autres unités selon les besoins de l'entreprise. Maintenir systématiquement l'étiquette téléphonique professionnelle. Compléter avec succès une formation supplémentaire sur les compétences au besoin. Maintenir les normes de service à la clientèle dans les situations de haute pression, telles que l'augmentation du volume d'appels, le manque de ressources ou la difficulté des clients. Agir en tant que membre positif de l'équipe, en affichant un respect mutuel pour les autres. Analyser et résoudre les problèmes en rassemblant systématiquement les informations pertinentes et en tenant compte d'un large éventail de problèmes, de facteurs et de données, lorsqu'il existe plusieurs réponses. Qui vous êtes: Une personne avec 6-12 mois d'expérience en service à la clientèle. Bilingue en français et en anglais. Ouvert aux heures de travail flexibles, sur une base de rotation, 24/7, 365. Diplômé(e) d’études secondaires. Une personne qui aime aider et écouter les autres. Orienté(e) service à la clientèle avec des solides compétences en communication. Une personne positive avec de fortes compétences interpersonnelles. Capable d'apprendre de nouvelles fonctions ou applications. Possède de solides compétences analytiques pour résoudre les problèmes. Responsable et autonome, avec une capacité de prise de décisions rapide et précise. Qui sommes-nous ? Global Payments est un leader du secteur des technologies de paiement avec plus de 24 000 employés dans le monde. Nous sommes fiers de nos innovations et de la valeur que nous accordons à l'inclusion. Notre équipe aide nos clients à obtenir des résultats impressionnants. C'est notre passion pour le succès qui nous a permis de surpasser la concurrence pendant des années. Rejoignez-nous et laissez votre empreinte sur le paysage technologique des paiements de demain. *** Nous remercions sincèrement tous les candidats de leur intérêt. Nous ne contacterons que les personnes sélectionnées pour un entretien. Global Payments est un employeur qui respecte l'égalité des chances. Nous valorisons la diversité et l'inclusion et offrons des chances égales à tous les employés et candidats, sans tenir compte de la race, de la couleur, de la religion, du sexe, de l'origine nationale, de l'âge, de l'état civil, de l'orientation sexuelle, de l'identité ou de l'expression de genre, du handicap physique ou mental, ou de toute autre base protégée par la loi et nous sommes heureux d'offrir aux membres de notre équipe un environnement de travail sain. Training starts on October 2nd! - Full-time positions only Looking for a new challenge and want to join a Fortune 500 company focused on technology and innovation? At Global Payments, you’ll have many opportunities for growth and development and we promise everyday will be an exciting challenge. Join a dynamic team as a bilingual customer service representative! How we care about our people: Real opportunities to grow professionally Collaborative, friendly work environment with a relaxed, casual dress code Benefits after 30 days Health insurance Short-Term and Long-Term disability coverage Life insurance plans Retirement savings programs Employee stock purchase program Employee assistance program Tuition reimbursement program Volunteering opportunities Safe place for the LGBTQIA2+ community Important information: Schedule: 37,5hr per week, on a rotational basis, 365. Work from the office: 7250, Mile End St. Montreal Salary: 20$/h What you will be contributing to the team: Assist in the training of new merchants. Identify and address customer inquiries regarding accounts. Provide resolution to merchant issues or complaints, and escalate to management or appropriate team concerned for cases requiring further investigation. Appropriately utilize internal systems and resources to accurately and effectively serve customers, and interpret merchant data. Demonstrate knowledge of products, services, account research, Point of Sale operations/technical and account maintenance. Educate merchants on policies, procedures, and products. Accurately document customer conversations in appropriate systems. Timely escalation of all department and system issues using the established reporting protocols. Interact and liaise with various support groups within Global Payments in relation to resolution of a merchant concern. Successfully complete additional skills training as required/requested. Who you are: Someone with 6-12 months of employment experience, preferably in a similar position. Bilingual in English and French. Available to work on a rotational basis, 24/7, 365. A High School Graduate. A great helper and listener. Able to maintain customer service standards during high-pressure situations. A positive member who loves to learn and share new things. A strong communicator with great interpersonal skills. A problem analyzer and solver by gathering relevant information systematically. Able to work independently and make quick and accurate decisions. Someone with strong analytical skills to troubleshoot issues. Who we are: Global Payments is a leader of the payment technology industry with over 24 000 employees worldwide. We pride ourselves on innovation and inclusion. Our team is helping customers achieve amazing results. It’s our passion for success that has led to years of out-performing the competition. Join us and make your mark on the payments technology landscape of tomorrow. *** We sincerely thank all applicants for their interest. We will only contact those selected for an interview. #LI-Onsite\",\n            \"location\": \"Rue du Mile End, Montréal, QC\"\n        },\n        {\n            \"id\": \"35A5CDA52562D866BEDCDF3F2601519D\",\n            \"cityName\": \"Canadian Tire Gas+ in Owen Sound, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bb19df302c0f1119\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Canadian Tire Gas+\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694436611595,\n            \"dateOfPosted\": 1692740349504,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.5690305,\n                    \"lon\": -80.9405602\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Owen Sound\",\n                \"formattedAddress\": \"Owen Sound, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Owen Sound\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CT Gas Bar/Car Wash/Convenience store.Availability:Full-time position available for 4-5 8 hour shifts per week (shifts from 6:30am - 2:30pm)Part-time position available for 2-3 8 hour shifts per week (shifts from 6:30am - 2:30pm and/or 2:15pm - 10:15pm)Candidate will be:Very reliable, energetic, punctual and hardworking.Comfortable working alone with little to no supervision.Comfortable in a very fast paced environment and under pressure.Able to quickly handle customer issues, and problem solve.Work Nature: Retail- Self Serve Gas Station and Car Wash.Specific Skills and Job Responsibility: Fuel sales, cash handling, lottery, stocking, maintaining highest level of customer service and cleanliness.Job Types: Part-time, PermanentSalary: $15.50-$16.50 per hourShift:8 hour shiftWork Location: In person\",\n            \"location\": \"Owen Sound, ON\"\n        },\n        {\n            \"id\": \"F153E5BB91DAACC98061FD1FB33602BF\",\n            \"cityName\": \"86 Copper Creek Drive, Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9568eff6cf1f3e4d\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Nanis Gelato\",\n            \"rowSalary\": \"$16.50–$17.50 an hour\",\n            \"date\": 1694435119086,\n            \"dateOfPosted\": 1694435118887,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.87072740000001,\n                    \"lon\": -79.2209562\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Markham\",\n                \"formattedAddress\": \"Copper Creek Dr, Markham, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Markham\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our new Nani's Gelato Markham location is seeking new customer service reps! We specialize in making all of our unique, fusion flavours and take a great deal of pride in providing a high level of customer service.This position is for Customer Service / Gelato Scooping team member. We are seeking individuals looking primarily for a combination of weekday and weekend shifts for both afternoons and evenings. Ideally, we are looking for a candidate that is available a few days during the week to help open at 2:00pm and work at least one weekend shift each week.We are seeking candidates that love to engage with people, work within an energetic team, perform well in a fast paced environment and LOVE ice cream / gelato.Training is included and paid, free gelato is available for our team during each shift and each individual staff member will always be supported with other team members during shifts.Part-time hours: 16-32Job Types: Part-time, PermanentPart-time hours: 16-40 per weekSalary: $16.50-$17.50 per hourBenefits:Casual dressFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftDay shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:Overtime payTipsWork Location: In personApplication deadline: 2023-09-15Expected start date: 2023-09-18\",\n            \"location\": \"Copper Creek Drive, Markham, ON\"\n        },\n        {\n            \"id\": \"C67F22A8FE933BFAFF1E687F68A448A5\",\n            \"cityName\": \"150 Country Hills Landng NW Suite 101, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=81ec72c394d8d0e5\",\n            \"jobName\": \"Customer Service Assistant\",\n            \"companyName\": \"Microhard Systems Inc.\",\n            \"rowSalary\": \"$23–$25 an hour\",\n            \"date\": 1694434731866,\n            \"dateOfPosted\": 1693535312643,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.1520788,\n                    \"lon\": -114.0929559\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Panorama Hills Landng NE, Calgary, AB T3K 5P2, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: EnglishHours: 40 hours per weekEducation: Bachelor's degreeExperience: 3 years to less than 5 yearsor equivalent experience Work setting Urban area Private sector Telecommunications company Tasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Arrange for refunds and credits Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Perform general office duties Receive and log complaints Receive payments Sell merchandise Answer written and oral inquiries Computer and technology knowledge Database software Enterprise resource planning (ERP) software Internet MS Excel MS Outlook MS Windows MS Word SAP (FI/CO / HR / MM / OT SD) Word processing software MS PowerPoint Electronic scheduler Presentation software Desktop publishing software Accounting software Type of online databases CIDOC-CRM Security and safety Basic security clearance Criminal record check Transportation/travel information Own transportation Willing to travel Travel expenses paid by employer Work conditions and physical capabilities Attention to detail Fast-paced environment Repetitive tasks Tight deadlines Work under pressure Manual dexterity Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Screening questions Are you available for shift or on-call work? Are you currently a student? Are you currently legally able to work in Canada? Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Do you have the above-indicated required certifications? Health benefits Dental plan Disability benefits Health care plan Long term benefits Group insurance benefits Life insurance Other benefits Free parking available Parking available\",\n            \"location\": \"Country Hills Landng NW, Calgary, AB\"\n        },\n        {\n            \"id\": \"56C0F07BFD30D09439119149C1F0592D\",\n            \"cityName\": \"Ontario\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cad8ab6730071647\",\n            \"jobName\": \"Work At Home Customer Service RepresentAtive (French Bilingual)\",\n            \"companyName\": \"Intouchcx\",\n            \"rowSalary\": \"$17–$22 an hour\",\n            \"date\": 1694434728762,\n            \"dateOfPosted\": 1693535320092,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.253775,\n                    \"lon\": -85.323214\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Ontario, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About IntouchCXIntouchCX is a global leader in customer experience management, digital engagement, and technology solutions. With over 20 years of experience, 18,000+ team members, and campuses around the globe, we obsess about our clients by providing remarkable customer experiences for the world’s most innovative brands.IntouchCX has been recognized as one of the Best Employers for Diversity in 2022 by Forbes and Statista Inc. This recognition comes after IntouchCX was named by Forbes as one of America’s Best Large Employers for 2022, and a Top Employer for New Grads.About the JobWe are currently hiring Inbound French Bilingual Work at Home Inbound Customer Service Representatives!Are you a problem solver? Do you like making meaningful connections with people? Are you interested in a rewarding career working with the world’s most exciting brands from the comfort and safety of your own home?Our Work at Home Customer Service Representatives (English / French Bilingual) are passionate about delighting customers by making every interaction an unforgettable experience - whether that’s through inbound calls, emails and/or chats. We want people with personality, who love making an impact with every customer interaction.We also want people with drive and ambition - people who want a career, not just a job. Punctuality, performance and positivity will set you up for success!Note: All applications, interviews, orientation, and training will be done virtually. IntouchCX will also provide all hardware and equipment necessary.Benefits of Working as a Work from Home Customer Service Representative (English / French Bilingual):Work from home!Flexible schedulesCompetitive salary - $17.00-$22.00 hr (varies depending on program)Industry-leading benefits - Health, Dental, VisionAmazing career growth opportunitiesWorking as a Work from Home Customer Service Representative (English / French Bilingual), You Will:Assist all customers through inbound calls, emails, and/or chats.Communicate a variety of information to the customer.Be an active listener and help resolve customer inquiries.Provide a meaningful and positive experience with every customer interaction.Learn and retain a thorough working knowledge of all existing and new products and services.Working as a Work from Home Customer Service Representative (English / French Bilingual), You Have:French Bilingual is a must!A high school diploma (or equivalent).6 months – 1 year of customer service experience.Great communication skills, both verbal and written.The ability to be consistently ready to work and on time as scheduled.Reliable internet speed and broadband connection.A secure area in the home to work from.The ability to work effectively in a work-at-home setting.The understanding that although this is a Work from Home position,you must be located in OntarioAvailability: Full Time (some shifts may depend on availability).Ready to apply? Submit your application and one of our recruiters will reach out via email/phone/text to learn more about you and connect you to this exciting opportunity! If you provide your cell number, you agree to receive automatic recruiting texts from us at that number. Consent is not a condition of employment, and you can opt-out by replying STOP at any time. Message and data rates may apply.IntouchCX provides Equal Employment Opportunities in accordance with all provincial and federal laws. IntouchCX is committed to ensuring equality of opportunity in all aspects of employment and does not discriminate based on protected characteristics.IntouchCX is committed to accommodating persons with disabilities. If you need accommodation at any stage of the application process or want more information on our accommodation policies, please let us know.By signing this application, the applicant consents to IntouchCX collecting, using and retaining his/her personal information for purposes relating to the application process and if hired, the employment relationship.Any and all personal information collected is held in the strictest confidence and in accordance with all applicable Privacy Laws.Job Type: Full-timeSalary: $17.00-$22.00 per hourBenefits:Dental careExtended health careVision careSchedule:Day shiftEvening shiftMonday to FridayMorning shiftWeekends as neededWork Location: In person\",\n            \"location\": \"Ontario\"\n        },\n        {\n            \"id\": \"1E874FD6F353116AAB20608F97C5A1F8\",\n            \"cityName\": \"33 Alderney Dr Ste 240, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fffb664f1ac6df93\",\n            \"jobName\": \"Bilingual French Customer Service Agents\",\n            \"companyName\": \"Tigertel\",\n            \"rowSalary\": \"From $23 an hour\",\n            \"date\": 1694434723712,\n            \"dateOfPosted\": 1693535302673,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.66487069999999,\n                    \"lon\": -63.5690049\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Alderney Dr, Dartmouth, NS B2Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Job DescriptionJob Description  Nous sommes à la recherche de représentant du service à la clientèle courant bilingue anglais/français à Temps Plein - Agents internes Map Communications 33, promenade Alderney, bureau 240 Dartmouth (N.-É.) B2Y 2N4 Salaire de départ 23$ de l'heure Êtes-vous à la recherche d'une entreprise à laquelle vous pouvez croire et qui est prête à s'investir à 100% pour faire bouger les choses? Êtes-vous à la recherche d'une entreprise qui CROIT EN VOUS et qui souhaite vous aider à atteindre vos objectifs de carrière? Êtes-vous capable de faire ce qui est nécessaire pour atteindre VOS objectifs personnels? Voulez-vous apprendre, grandir, produire et être respecté par vos collègues pour les talents que vous apportez à l'organisation? Nous sommes à la recherche de personnes énergiques, accueillants et professionnelles avec une grande attention aux détails pour rejoindre notre équipe à Dartmouth N.- Nous offrons une formation rémunérée, un excellent soutien continu et une couverture d'assurance médicales et dentaires/REER à l'achèvement de la période d'essai. Responsabilités Principale Gérer les appels de nos clients (nous ne sommes pas un centre de télémarketing) Répondre de manière professionnelle aux appelants, fournir et prendre de l'information des appelants Recevoir et acheminer les messages critiques vers le personnel de garde en priorisant les appels d'urgence Répondre aux demandes des clients de manière professionnelle et précis Les aptitudes requises et recherchées Attitude positive et enthousiaste Une bonne très bonne Maitrise de l'écriture anglaise et française Être à l'aise à l'informatique, notamment avec le système d'exploitation Windows Être ponctuel Capacité d'apprentissage rapide et savoir écrire 36 mots par minute Diplôme d'études secondaire ou équivalent (préférable) Aimer travailler en équipe Notre emploi nous demande de travailler avec des gens qui possèdent un grand souci du détail. Nous gérons des appels qui proviennent de plusieurs clients en Amérique du Nord. Il y aura ainsi de nombreuses activités et de défis à résoudre au quotidien Salaire 23.00$ de l'heure Nos avantages offerts :REERAssurance dentairesAssurance maladieCongés payéesAssurance des soins de la vue Conditions relatives aux prestations : Nos avantages sont offerts aux employées à temps plein, après une période d'attente Quarts de travail offerts : Temps plein (40 heures par semaine) Doit être disponible entre 08h00 et 22h30 Doit être disponible pour le travail en fin de semaine Vendredi, Samedi et Lundi Quart de travail obligatoire Pendant la formation : recevront leur formation dans le bureau, nous respecterons les directions de distance sociale de la Nouvelle-Écosse. On vous demande : D'avoir votre propre masque et le porter dans le bureau et espace commune De nettoyer votre station de travail quand on le quitte Demeurez bien à l'écart des autres dans le bureau Les stations de travail seront attribuées Formation approximative d'une semaine. Accès aux produits de nettoyage et désinfectant, on vous offre une formation sécuritaire. Ne manquez pas cette occasion - postulez dès maintenant Postulez Cliquez sur postulez maintenant et répondre aux questions fournies Nous serons en contact avec vous pour les prochaines étapes, qui seront une évaluation sur Indeed envoyée par courriel / ou sur votre compte Indeed. Vous devez effectuer les évaluations pour passer à la prochaine étape Lieu : Dartmouth (N-É) Hiring Full Time Bilingual French Call Centre Customer Service Agents - In house agents Map Communications 33 Alderney Dr., Suite 240 Dartmouth, NS B2Y 2N4 Starting wage $23 / hour Are you looking for a company you can believe in and are ready to put 100% effort into making things happen? Are you looking for a company that BELIEVES IN YOU and wants to help you take care of your career goals? Are you able to do what is necessary to achieve YOUR personal goals? Do you want to learn, grow, produce and be respected by your peers for the talents you bring to the organization? We are looking for energetic and professional individuals with great attention to detail to join our Dartmouth, NS office. We provide paid-training, great on-going support and health and dental benefits/RRSP upon completion of probation. Key Responsibilities Managing inbound phone calls from our clients (we are not a telemarketing centre) Professionally greet callers, provide and request required information Relay and route critical messages to on-call personnel by prioritizing emergency calls Responding to customer requests professionally and with accurate information General Job Requirements A friendly and upbeat voice and a positive attitude Good grammar and spelling as well as a professional demeanor Computer skills in a Windows-based environment Punctual with great attendance Fast learner and be able to type well (at least 35 words per minute) High school or equivalent (Preferred) Be a 'team player'! Our jobs require people that are very detail oriented. We handle calls for a large number of accounts and so there is always a lot of activity and new challenges to face and resolve daily! Compensation $23.00 per hour Our Benefits include:RRSP with (company matching)Dental InsuranceHealth InsurancePaid Time OffVision Insurance Benefit Conditions:Waiting period may applyOnly full-time employees eligible Shifts Offered: Full Time (40 hours) work week Availability to start as early as 8am and end as late as 10:30pm Eastern time. You must be available to work weekends Daytime and Evening shifts available to include a minimum of Friday, Saturday and Monday. During Training: We will be training you in our offices and we will be respecting Nova Scotia's Social Distancing guidelines. We request that you: Have your own mask and use it while in the facility and use of our facility amenities. Wipe down your workstation every time you leave it. Remain appropriately distanced from others in our call centre. We will assign seating. Training will last approximately one week. We will have plenty of cleaning supplies on hand to keep you, your fellow trainees, and your trainer safe during our training process. Don't miss out on this opportunity - apply today! To Apply: Click Apply Now and answer any questions provided. We will be in contact with you with the next steps, which will include Indeed Assessments that will be sent to you via email / your Indeed account. You must complete the assessments to proceed to the next step. We look forward to hearing from you! Location: Dartmouth, NS Job Types: Full-time, Permanent Salary: $23.00 per hour Benefits: Dental care Extended health care RRSP match Vision care Schedule: 9 hour shift Experience: Customer Service: 1 year (Required) Call Centre Experience: 1 year (Preferred) Education: Secondary School (Required) Job Posted by ApplicantPro\",\n            \"location\": \"Alderney Dr, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"CC71D07409F304B31266C834103F33E8\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2bb1a5a4c9f6d29e\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Goeasy\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694434705496,\n            \"dateOfPosted\": 1693534789645,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"If you are looking to join one of Canada’s fastest growing companies, goeasy Ltd. is the place for you! Recognized as one ofNorth America’s Most Engaged Workplaces, we want the best to join our team. easyfinancial is one of Canada’s leading non-prime lenders, we pride ourselves on helping everyday Canadians achieve their personal and financial goals through secured and unsecured loans up to $75,000, when everyone else says no.We are looking for our next innovative and self-motivated Customer Service Representative to support our existing team. Come work for a growing company that will ensure you will have the tools to be successful! No experience, but looking for a career opportunity? We offer full comprehensive training programs to equip you with the tools needed for success. What’s in it for you: Benefits and Perks package which goes beyond your base salary:FinancialMonthly incentive plansBase Pay: $17/hr + monthly bonusRRSP and Employee Share Purchase Plan matchingHealth & LifestyleExtended healthcare coverage, including Mental Health and on-demand virtual healthcare5 personal days, company paid volunteer days, Sundays off + paid birthday off in addition to paid vacation daysOnsite GymPerksPerkopolis employee discount programEmployee discounts on furniture, electronics, and applianceseasyloans –employees have access to loans at lower interest ratesTuition Assistance ProgramState of the art OfficeGames RoomFree Employee ParkingRecognitionOpportunities for monthly, quarterly, and annual awardsLeadership development programs – over 75% internal promotion rate!As a Customer Service Representative, you will:Create superior customer experiences by responding, listening, engaging and understanding the needs of current and potential customers and matching their needs to our lending solutions.Taking inbound calls to resolve customer inquiries while demonstrating compassion and empathyAccurately enter data, follow scripts, maintain records and handle high call volumes in a fast-paced environment.Live our value proposition of providing access, relief and respect to the cash and credit constrained consumerThrough superior product knowledge and your influence skills engage with customer to retain product or service by following a prepared script and process capitalize on cross-sell and up-sell product opportunities by paying attention to customer needExperience servicing customers in a multi – channel environment, phone, chat, email, social mediaUnderstanding and striving to meet or exceed call center metrics while providing excellent customer service.Taking part in training and other learning opportunities to expand knowledge of company and position.Adhering to all company policies and procedures.Skill in the use of computer and telephone-related software, with basic knowledge of Microsoft Office, internet and intranet search tools, and call center technologies.What you need to work with us:Experience in a customer-facing measured work environment considered an asset1-2 years’ Experience in a call center environment is an assetExcellent written and oral communication skills with the ability to create memorable customer experiencesAchievement and results-oriented with a positive attitudeEmpathetic, compassionate and operate with integrity – really care for customers!Proficient with Microsoft office software (Excel, Word, and Outlook), strong keyboarding skills and an ability to learn and master new software programsAbility to multi-task, adapt to change in a fast-paced environment and to work independently (self-motivated)Diversity, Inclusion, and Equal Opportunity Employment At goeasy, we believe that we can only be the best when people are able to bring their best selves to work every day. This means that we are committed to cultivating and preserving a work culture where we celebrate who we are, where everyone feels seen and heard and where every employee can fulfill their potential. As an equal opportunity employer, we are committed to providing accommodations for applicants upon request at any stage of the recruitment process in accordance with all legislative requirements throughout Canada. Please let us know if you require an accommodation during any aspect of the recruitment process and we will work with you to address your needs. Additional Information: All candidates considered for hire must successfully pass a criminal background check, credit check, and validation of their work experience to qualify for hire. Candidates must provide schedule flexibility to ensure that the location’s hours can be covered to meet our customer’s needs – details by location will be discussed in the interview process. We thank all interested applicants; however, we will only be contacting those for interview who possess the skills and qualifications outlined above. Why should you work for goeasy? To learn more about our great company please click the links below:http://goeasy.com/careers/\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"39BD1DC32BA89B57B979A705559A0939\",\n            \"cityName\": \"9303 Highway 93, Midland, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=326a85a2a06085c5\",\n            \"jobName\": \"Customer Service Department Associate\",\n            \"companyName\": \"Canadian Tire Midland - Store #061\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694433097615,\n            \"dateOfPosted\": 1693588457726,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.73700909999999,\n                    \"lon\": -79.9114086\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Midland\",\n                \"formattedAddress\": \"9226 County Rd 93, Midland, ON L4R 4K4, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Midland\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our company is seeking experienced, professional and motivated individuals to join our team. The successful candidates will have the opportunity to work at a growing company, build relationships with customers and contribute to the achievement of company goals. Responsibilities: *works in a fast-paced environment that involves constant interaction with customers, delivering friendly and courteous service while explaining product benefits and fulfilling customer needs, Stocking Shelves, Merchandising, and general Housekeeping.Job Types: Full-time, Part-time, PermanentPart-time hours: 0-40 per weekSalary: From $15.50 per hourBenefits:Dental careStore discountVision careDay range:HolidaysMonday to FridayWeekends as neededFlexible Language Requirement:French not requiredShift:4 hour shift8 hour shiftAfternoon shiftDay shiftEvening shiftMorning shiftWork setting:Department storeAbility to commute/relocate:Midland, ON: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Highway, Midland, ON\"\n        },\n        {\n            \"id\": \"53094E0BA0B1C583C0DE9038DA0FC902\",\n            \"cityName\": \"RELOCATION INT'L INC. in Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c78f016b3a74ab4e\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"Relocation Int'L Inc.\",\n            \"rowSalary\": \"From $3,100 a month\",\n            \"date\": 1694433051402,\n            \"dateOfPosted\": 1692699778808,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"month\",\n                \"salaryFrom\": 3100.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    3100.0\n                ],\n                \"range\": {\n                    \"gte\": 3100.0,\n                    \"gt\": null,\n                    \"lte\": 3100.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a Customer Service Clerk.Requirements1. Strong communication skills, fluent in English, Mandarin and Cantonese;2. Excellent computer skills;3. Excellent phone manner4. Familiar with the GTA regionJob Types: Full-time, PermanentSalary: From $3,100.00 per monthSchedule:8 hour shiftCOVID-19 considerations:All customers are required to wear masksWork Location: In person\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"1CBBDB0B24A5C4A3812BB65B14BF4B45\",\n            \"cityName\": \"12 Parr Blvd, Bolton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dda3cfc50d39faab\",\n            \"jobName\": \"Retail Customer Service Associate\",\n            \"companyName\": \"Water Depot Bolton/Georgetown\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694432237544,\n            \"dateOfPosted\": 1693588058630,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.848813,\n                    \"lon\": -79.707592\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bolton\",\n                \"formattedAddress\": \"Parr Blvd, Bolton, ON L0J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bolton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The role of a Retail Customer Service person is to provide exceptional customer service while on shift. General duties include assisting customers with water fill-ups; POS transactions, providing information to customers when purchasing water treatment products. The candidate will also perform some administrative duties as required.Primary Duties:Assisting customers with U-fill water jug fill-ups;Administrative duties;Promoting and selling general in-store products (training provided);Communicate courteously with guests by telephone and face to face, providing excellent guest service;Ensure customer inquiries are handled effectively, promptly and with the utmost consideration;Occasionally scheduling service and maintenance appointments for customers;Calling customers to confirm service and maintenance appointments;Stocking shelves;Opening/closing duties.Secondary duties can include:Inventory ordering/receiving;Service appointment scheduling/coordination;Email responsesSupport Water Depot Georgetown;Duties and projects as assigned.Essential Skills & Abilities:Responsible, reliable & charismatic…personality plus (i.e. not shy);Retail experience an asset;Administrative experience an asset;Willingness to learn about basic water treatment, including independent learning;Excellent verbal and written communication skills, interpersonal skills and experience working with a diverse population are essential;Computer literate with basic abilities in Microsoft Office suite, Google environment, email & internet;Flexibility to work shifts within the retail hours of operation, including Saturday (we are open 6 days a week Monday to Saturday 10am-6pm);Reliable transportation;Ability to stand for many hours at a time;Frequent use of hands: use hands to hold, handle, or feel, and reach with hands and arms;Occasional requirement to sit, climb or balance; and stoop, kneel, crouch, or crawl, and using a small step stool or ladder;Specific vision abilities include close vision, distance vision, colour vision, peripheral vision, and ability to adjust focus;Frequent requirement to lift up to, and including, 50 pounds.Future opportunities can be available for the right candidate as we continue to grow.Work remotelyNoJob Types: Part-time, PermanentSalary: $18.00 per hourExpected hours: 35 – 40 per weekDay range:Monday to FridayWeekends as neededShift:8 hour shiftDay shiftWork Location: In personExpected start date: 2023-08-23\",\n            \"location\": \"Parr Blvd, Bolton, ON\"\n        },\n        {\n            \"id\": \"EC9C040D51853FC00B842BDEB9DB1562\",\n            \"cityName\": \"11 Jacob Keffer Pky, Vaughan, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2d1e32ea035a66fb\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Mary Brown's Chicken And Taters\",\n            \"rowSalary\": \"$15.50–$18.00 an hour\",\n            \"date\": 1694432228303,\n            \"dateOfPosted\": 1692726045390,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8326829,\n                    \"lon\": -79.5042946\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Jacob Keffer Pkwy, Vaughan, ON L4K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Jacob Keffer Pky, Concord, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for hard working individuals who are able to work well under pressure and create a hospitable environment with the customers.Job Type: Part-timePart-time hours: 20-36 per weekSalary: $15.50-$18.00 per hour\",\n            \"location\": \"Jacob Keffer Pky, Concord, ON\"\n        },\n        {\n            \"id\": \"41CC5A8BC9C1DF4F492531AAC2874313\",\n            \"cityName\": \"9880 - 47 Avenue, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=84c9af46f5b327b1\",\n            \"jobName\": \"Call Centre Representative (Edmonton South) Temporary\",\n            \"companyName\": \"Trail Appliances Ltd\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694431977769,\n            \"dateOfPosted\": 1692739011458,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5460983,\n                    \"lon\": -113.4937266\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Why Trail? At Trail Appliances, we give you the support, tools, training, and a mentor to succeed. By becoming a member of the Trail family, you will be joining a diverse network of high performing, talented individuals who are continuously learning and growing everyday. Looking for a career and not just a job? Apply today! The Perks Trail Appliances values their employees and provides a comprehensive and competitive total rewards package including: Health & dental benefits Personal care days Statutory holidays off Employee & family assistance program Staff incentives and rewards Employee discounts The Role The Call Centre Representative is responsible for calling customers to confirm the time and location of their service call. This person is responsible to ensure that the open line of communication between the field technicians and customers is maintained. This is a full-time temporary position ending October 2024 What you will be doing Ensure all customer service call information is keyed into the computer system. Complete other administrative functions as required. Maintain in constant communication with the service teams and field technicians. Investigate and assist in the resolution of all customer issues. To be successful in this role you must Have a great work ethic, be punctual, pay attention to the details, and genuinely enjoy helping people Be proactive and demonstrate initiative by providing input and recommendations to continually improve the delivery of our customer experience Collaborate with various departments to ensure customer issues are resolved effectively and in a timely manner Be a quick study when it comes to computers software and systems Have outstanding oral, typing and written communication skills Enjoy working within a diverse team Have previous call center experience Our story began in 1974, when the Broderick family rented out appliances at their bottle depot on Macleod Trail in Calgary. From those humble beginnings, Trail Appliances has grown to become one of the leading independent appliance retailers in Western Canada. We continue to stand by our guiding principles of unparalleled customer service, competitive pricing, and expert advice. Having built our reputation on strong family values and creating a collaborative work culture that values respect, integrity, diversity, passion, and laughter, we’re proud to be family-owned and operated today. This and our extensive benefits, safety program and community involvement are what sets us apart from our competitors. We are proud to be recognized as an industry leader! #TrailApp\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"C5C8B4DA9723E58360F77FFB8886E32A\",\n            \"cityName\": \"114 Sydenham St, Flesherton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d9a6bd631f0b1656\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Esso\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694431601928,\n            \"dateOfPosted\": 1675894927945,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2648914,\n                    \"lon\": -80.5533015\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Flesherton\",\n                \"formattedAddress\": \"Sydenham St, Flesherton, ON N0C 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Flesherton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"$16.50/HRLOCAL CANDIDATES ONLYApply Now! Hiring Now! All training will be provided.ESSO Gas Station in Flesherton is hiring Customer Service Representatives to join its team - opening or closing shifts, weekdays or weekends. No experience necessary. Previous gas station or convenience store experience is always an asset. Full Training will be provided.Send resume online or welcome to stop by at the store.Job Types: Full-time, Part-time, PermanentSalary: From $16.50 per hourJob Types: Full-time, Part-time, PermanentSalary: From $16.50 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftEvening shiftEvery WeekendMonday to FridayMorning shiftNight shiftNo weekendsWeekend availabilityWeekends onlyAbility to commute/relocate:Flesherton, ON: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Sydenham St, Flesherton, ON\"\n        },\n        {\n            \"id\": \"0E06E7D711F64830FD21F78D57462420\",\n            \"cityName\": \"5984 Boul Cousineau, Saint-Hubert, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=defd403dfa2825d6\",\n            \"jobName\": \"Cook/Customer Service\",\n            \"companyName\": \"Chung Chun Rice Hotdog\",\n            \"rowSalary\": \"$15.25–$21.63 an hour\",\n            \"date\": 1694431409411,\n            \"dateOfPosted\": 1692737161097,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4819036,\n                    \"lon\": -73.39037859999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Longueuil\",\n                \"formattedAddress\": \"Bd Cousineau, Longueuil, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Longueuil\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OUVERTURE BIENTÔT CHUNG CHUN SAINT-HUBERT, QUEBEC5984 BOULEVARD COUSINEAU, SAINT-HUBERT, QCChungchun Rice Dog est une chaîne de cuisine de rue coréenne avec plus de 200 succursales dans le monde et les premiers à Montréal. Nous recherchons un membre enthousiaste de l'équipe qui se joindra à notre équipe et contribuera à faire croître la marque au Québec tout en profitant d’un environnement de travail agréable, d'horaires flexibles et d’une équipe incroyable. Nous avons pour objectif de leur offrir une expérience unique à nos clients en leur offrant un service de qualité et en leur faisant découvrir nos délicieux Kogos coréen.Recherche de caissier à temps-partiel.Description des tâchesExécuter tous les éléments selon les normes les plus élevées en suivant les recettes et les procédures du restaurantMaintenir les normes de propreté, de santé et sécurité du restaurantSuivre toutes les politiques et procédures opérationnellesMaintenir un niveau élevé de pratiques de sécurité alimentaireDoit travailler avec l'équipe et doit s'assurer du bon roulement du serviceDoit savoir repérer les problèmes et les résoudreDoit être autonome et proactifDiplômes et expérienceAimer le travail en équipe et avoir le sens des responsabilitésFaire du service client une prioritéAucune expérience nécessaire, expérience dans une cuisine est un atoutCompétencesCapacité à travailler en équipe tout en démontrant du leadershipCapacité à comprendre et à exécuter des instructions verbales et écritesCapacité à apprendre rapidementCapacité à parler la langue française, la langue anglaise est un plus, la languecoréenne est un plusCapacité à faire plusieurs tâches à la foisFaire du service client une prioritéExigences physiquesDebout pendant de longues périodesTravailler dans un environnement de cuisine chaudPousser, tirer, soulever ou porter occasionnellement jusqu'à 40 lbHoraires de travail/SalaireHoraire flexible, travail durant le matin et le soir, les jours de semaine et de fin de semaineTemps partielSalaire competitiveOPENING OF CHUNG CHUN, SAINT-HUBERT, QUEBECChungchun Rice Hotdog is a Korean street food chain with over 200 branches around the world. Since our opening in Canada in 2019, we now have branches in Toronto, Vancouver, Calgary and now opening our 2nd restaurant in Québec under Chungchun Kogo Coréen!We are looking for an enthusiastic team member who will join our team rank and help grow the brand in Québec while enjoying flexible hours!Duties and responsibilitiesContribute to making our customers’ day by greeting people, taking orders and preparing delicious KogosProcessing paymentsPackage take-out foodExecute all items to the highest standards following the restaurant’s recipes and proceduresMaintain cleanliness and health & safety standards of the restaurantFollow all operational policies and proceduresMaintain a high level of food safety practicesMust be available on certain holidaysQualifications and ExperienceEnjoy teamwork and having sense of responsibilityMake customer service a priorityNo experience needed, Experience in the kitchen is a plusSkills & FitAbility to work as part of a teamAbility to understand and carry out verbal and written instructionsAbility to learn quicklyAbility to speak French language, English language, Korean language is a plusPhysical RequirementsStanding for long periods of timeWorking in a hot kitchen environmentOccasional pushing, pulling, lifting or carrying up to 40lbSchedulePart-TimeFlexible hours, mixed shifts, days and evenings, weekends and weekdaysCompetitive salaryJob Type: Part-timeSalary: $15.25-$21.63 per hourSchedule:4 hour shiftDay shiftMonday to FridayMorning shiftWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Saint-Hubert, QC: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Boul Cousineau, Saint-Hubert, QC\"\n        },\n        {\n            \"id\": \"8EA7D288D92C1190E5AEF73F5843766A\",\n            \"cityName\": \"378 Mountainview Rd S, Georgetown, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=eb2897db6fde7156\",\n            \"jobName\": \"Retail Customer Service\",\n            \"companyName\": \"Water Depot Bolton/Georgetown\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694431372255,\n            \"dateOfPosted\": 1692737153958,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6390573,\n                    \"lon\": -79.88824629999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halton Hills\",\n                \"formattedAddress\": \"Mountainview Rd S, Halton Hills, ON L7G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halton Hills\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The role of a Retail Customer Service person is to provide exceptional customer service while on shift. General duties include assisting customers with water fill-ups; POS transactions, providing information to customers when purchasing water treatment products. The right candidate will act as back-up for administrative duties as required.Primary Duties:Assisting customers with U-fill water jug fill-ups;Back-up for Administrator duties (training provided);Promoting and selling general in-store products (training provided);Communicate courteously with guests by telephone and face to face, providing excellent guest service;Ensure customer inquiries are handled effectively, promptly and with the utmost consideration;Occasionally scheduling service and maintenance appointments for customers;Calling customers to confirm service and maintenance appointments;Stocking shelves;Opening/closing duties.Secondary duties (as Admin back-up) include:Inventory ordering/receiving;Customer Invoice/payment processing;Service appointment scheduling/coordination;Purchase Orders;Email responsesSupport Water Depot Georgetown;Duties and projects as assigned.Essential Skills & Abilities:Responsible, reliable & charismatic…personality plus (i.e. not shy);Retail experience an asset;Administrative experience an asset;Willingness to learn about basic water treatment, including independent learning;Excellent verbal and written communication skills, interpersonal skills and experience working with a diverse population are essential;Computer literate with basic abilities in Microsoft Office suite, Google environment, email & internet;Flexibility to work shifts within the retail hours of operation, including Saturday (we are open 6 days a week Monday to Saturday 10am-6pm);Reliable transportation;Ability to stand for many hours at a time;Frequent use of hands: use hands to hold, handle, or feel, and reach with hands and arms;Occasional requirement to sit, climb or balance; and stoop, kneel, crouch, or crawl, and using a small step stool or ladder;Specific vision abilities include close vision, distance vision, colour vision, peripheral vision, and ability to adjust focus;Frequent requirement to lift up to, and including, 50 pounds.Future opportunities can be available for the right candidate as we continue to grow.Work remotelyNoJob Types: Part-time, PermanentSalary: $18.00 per hourExpected hours: 35 – 40 per weekSchedule:8 hour shiftDay shiftMonday to FridayWeekend availabilityWork Location: In personExpected start date: 2023-08-23\",\n            \"location\": \"Mountainview Road South, Halton Hills, ON\"\n        },\n        {\n            \"id\": \"E042EDA95335630F87ACF2B1830BE964\",\n            \"cityName\": \"527 Broadway, Tillsonburg, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=64fe5961fcd2c7a9\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Domino's Pizza Woodstock\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694431306507,\n            \"dateOfPosted\": 1693586379311,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.8717671,\n                    \"lon\": -80.73948709999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Tillsonburg\",\n                \"formattedAddress\": \"Broadway, Tillsonburg, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Oxford County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Tillsonburg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Domino's Pizza is now hiring Customer Service RepresentativesWe are happy that you are interested in joining the Domino’s team!Customer Service Representatives (CSR) are primarily responsible for providing exceptional customer service, making great Domino’s Pizza products and maintaining cleanliness of the store. CSR’s at Domino’s work in a team environment and they are expected to be positive and productive team players. Every CSR plays a part in helping the store achieve its goals for customer service, sales growth, operational reviews and cost management, therefore, their attention to these targets is paramount.The responsibilities are guided by the Domino’s Pizza of Canada’s policies and procedures. The standards can in some instances be modified by Empire Pizza or the CSR’s supervisor.Other responsibilities may include being a shift leader. Shift leaders are responsible for completing all shift tasks as laid out in the policies, manage other team members, balance finances and inventory and train team members. Shift leaders may be required to attend workshops to further develop their skills.CSR’s are required to attend to their scheduled shifts on-time, in complete uniform and with positive attitudes. During some shifts, the CSR may be required to help promote the business and do some local store marketing.Although schedules are typically posted a few days early, CSR’s may be required to come to work on short notice or perform additional tasks outside of this description.Job Types: Full-time, Part-timePart-time hours: 15-30 per weekSalary: $15.50-$16.50 per hourExpected hours: 10 – 30 per week\",\n            \"location\": \"Broadway St Unit A, Tillsonburg, ON\"\n        },\n        {\n            \"id\": \"C10A1247B1EFCE4E11827BBD6C8AA3A7\",\n            \"cityName\": \"The Willow Bakery & Cafe in Kensington, PE\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e17cee62fbdfe03c\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"The Willow Bakery & Cafe\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694431126800,\n            \"dateOfPosted\": 1692705640450,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.4368934,\n                    \"lon\": -63.63735109999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kensington\",\n                \"formattedAddress\": \"Kensington, PE C0B 1M0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Prince Edward Island\",\n                \"state_code\": \"PE\",\n                \"postalTown\": null,\n                \"county\": \"Prince County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kensington\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Looking for a reliable enthusiast worker. Wanting to be part of a small team. Experience not necessarily but beneficial. Must be friendly and able to provided exceptional customer service. Job includes : greeting customers, taking orders, preparing specialty coffees and drinks. Cleaning will also be included. Must be willing to work independently and with others well.Hours 7:00am- 3:00pmWe are looking forward to meeting you!Job Types: Full-time, Part-timePart-time hours: 20-40 per weekSalary: $15.00-$16.00 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftMonday to FridayWeekends as neededSupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Kensington, PE\"\n        },\n        {\n            \"id\": \"1B844ABFFA36D34BE84C7448CD768149\",\n            \"cityName\": \"20 Royal Group Crescent, Vaughan, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fb22a7039126eb4a\",\n            \"jobName\": \"Customer Service Representative/Data Entry\",\n            \"companyName\": \"Trulite Glass & Aluminum Solutions\",\n            \"rowSalary\": \"$50,000–$55,000 a year\",\n            \"date\": 1694431110035,\n            \"dateOfPosted\": 1693559236479,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7657213,\n                    \"lon\": -79.6255956\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Royal Group Crescent, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for candidates who are passionate about customer service and have experience handling inbound calls and strong attention to detail.Manufacturing experience is a great assist.Key Areas of Responsibilities:· Assisting with all customer requirements within Trulite such as:o Entering customer PO’s accurately and in timely fashiono Cross check PO’s enteredo Email/fax order acknowledgements in timely fashiono Assist customers with PO revisions and/or enquirieso Communicate with Planning and CNC department· Follow up on outstanding Purchase Order(s) pertaining to sale orders· Liaise with Production personnel for order status· Cross train on internal personnel support· Handle and liaise with Shipping department regarding customer’s shipping enquires· Switchboard support· Maintain Customer Relationship Management Software· Maintain professional internal and external relationships that meet company core values· Adhere to all company policies, procedures and business ethics codes· Other administrative duties as assignedProficient in Microsoft Office applications· Data entry accuracy· Highly effective customer service skills· Ability to manage multi responsibilities· Ability to interact and cooperate with all company employees.· Ability to build trust, value others, communicate effectively, focus on the customer, collaborate with others, solve problems creatively and demonstrate high integrity· Establish and maintain effective team working relationships and also work independentlyExcellent written and oral communication skillsNo Agency CallsJob Type: Full-timeSalary: $50,000.00-$55,000.00 per yearBenefits:Dental careEmployee assistance programExtended health careOn-site parkingPaid time offVision careSchedule:8 hour shiftSupplemental pay types:Bonus payWork Location: In personExpected start date: 2023-09-15\",\n            \"location\": \"Royal Group Crescent, Vaughan, ON\"\n        },\n        {\n            \"id\": \"AF7A961D479E7FE8F91E3FBA9D251FFF\",\n            \"cityName\": \"More Gate Digital Group in Oshawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=86c81ce8dbd412f4\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"More Gate Digital Group\",\n            \"rowSalary\": \"$45,000–$55,000 a year\",\n            \"date\": 1694431105635,\n            \"dateOfPosted\": 1692709787312,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8970929,\n                    \"lon\": -78.86579119999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oshawa\",\n                \"formattedAddress\": \"Oshawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oshawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Here’s why you should apply:Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingPrimary Functions:Serve as the information center for all customers, community contacts, and other company representativesMust be aware of daily activities and administrative responsibilitiesInteract with customers to provide information in response to inquiries, concerns and requests about products and servicesMust professionally handle all phone calls and route callersAnswers questions in a timely and courteous mannerProduce reports, forms, correspondence, orders and other materials as neededPerform other duties as assigned.QualificationsSolid organization and active listening skillsRazor sharp attention to detail with fast and accurate data entryCustomer service focused with creative problem solving skillsAbility to anticipate and advocate for your customers needsAbility to multi-task, prioritize and adjust to changing needsJust like your resume, a job description never tells the full story. Apply today and if you've got what it takes, we'd love to discuss everything in further detail. We know there's a lot more you'd like to know, why wait? Apply today!Job Types: Full-time, PermanentSalary: $45,000.00-$55,000.00 per yearBenefits:Dental careEmployee assistance programExtended health careOn-site parkingPaid time offFlexible Language Requirement:English not requiredFrench not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payOvertime payTipsEducation:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Oshawa, ON\"\n        },\n        {\n            \"id\": \"3ABB22B59CDCAB4FB58BDBA4A0B120AC\",\n            \"cityName\": \"Second Cup Cafe 9730 in Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b2d9cb3833c21867\",\n            \"jobName\": \"Front Counter Customer Service\",\n            \"companyName\": \"Second Cup Cafe 9730\",\n            \"rowSalary\": \"$14.50–$16.00 an hour\",\n            \"date\": 1694430993209,\n            \"dateOfPosted\": 1693585475259,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.895136,\n                    \"lon\": -97.13837439999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Welcome to Second Cup Bridgewater (3-325 North Town Rd)We are excited to be opening soon and we are starting to build our team !We are hiring full time and part time staff.Hours of operation are 6:00AM - 10:00PMWe have many shifts available.Does the idea of working with an iconic Canadian brand excite you? Do you have a passion for enriching the customer experience? Is your Second Cup just as exciting as your first? Then Second Cup Café has an exciting opportunity to join our team!We’re seeking an amazing Barista who lives our company values - Integrity, Kindness, Gusto and has experience in uplifting our guests and people everyday!YOU WILL:Create unforgettable beverages including espresso-based drinks.Seek every opportunity to enhance the guest experience with every interaction and provide consistent and individualized guest attention.Demonstrate passion for the Second Cup brand and have knowledge of our products.Keep café facilities clean and well maintained (dine-in area, restrooms, back of house)Restock product such as beans, cups and condiment stand.Complete sale with guests, using cash, debit/credit and Mobile App.Follow business procedures for handling voids and cash handling mistakes.Maintain coffee and food freshness standards while also controlling waste.Encourage guests to upload Mobile App and discuss the benefits associated with it. • Adhere to dress code and always be punctual and ready for your shift!YOU BRING TO THE ROLE:Excellent guest service skills– You have integrity, show kindness with each interaction and do it with GUSTO!Commitment to delivering superior quality-Obsessed with your quality of work and go above and beyond every day; you truly care about people and consider our guests in everything you do.Coffee passion! An ambassador for our brand – takes great pride in what you do.Team and community mindset- Focus on common goals; support and respect others and values relationships.Authenticity- Honest, fair and act with integrity; treat each person as if they are the most important person in the room; collaborative and communicativeAlso know that in this active & exciting role you will be:Standing for extended periods of time.Some lifting is required along with some bending, reaching and turning.Exposure to noise (blenders, espresso machine), heat (steam from espresso machine).Second Cup is an equal opportunity employer. We would like to thank all applicants for their interest. Only those applicants under consideration will be contacted. For additional information on our organization, please visit us at www.secondcup.comExperience: Barista: 1 year (preferred)Job Types: Full-time, Part-time, Permanent, CasualPart-time hours: 20-40 per weekSalary: $14.50-$16.00 per hourBenefits:Discounted or free foodOn-site parkingStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayMorning shiftWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Winnipeg, MB R3Y 1N3: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Winnipeg, MB\"\n        },\n        {\n            \"id\": \"DB8FD8B64E1A8A523C20E2907B7DA8DC\",\n            \"cityName\": \"19574 60 Ave, Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=71775dddad82c2af\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Fix Auto Langley\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694429456138,\n            \"dateOfPosted\": 1692705393722,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Fix Auto Langley is looking for a Customer Service Representative! If you are a people person and are looking to evolve in a fast-paced work environment, then this could be your ticket to a great career. As a Customer Service Representative,you will act as brand ambassador and provides positive brand experience to all customers. A day in the Life of a Customer Service Representative at Fix Auto Effectively manage front office operations to ensure efficient organization and support of the sales functionProvide service to customers by reviewing the services offered and cross-sell different programs by explaining the advantage of our multiple service offerings.Collaboration with production manager and sales managers to ensure vehicles are on track for timely and flawless deliveryCommunicate and interact with clients throughout the different technologies such as text messages, emails, online videocall, etc.As required, assign the work order to technicians. In addition to an excellent work-life balance, Fix Auto offers a host of benefits including: Inclusive work environment– we encourage you to unlock your potential and contribute meaningfully to our success.Learning & Development: Learning doesn’t stop when you land a job, so we’re committed to supporting you by investing in world-class training programs. You can take advantage of our virtual and in-person learning opportunities for your continuous evolution.Range of Benefits for your family and you.Up to date tools and equipment.Safe work environment. Apply now! 19574 60 Avenue Surrey, B.C. V3S 3S7\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"72EDF3CDC68CE744EEED0651667E744D\",\n            \"cityName\": \"Bathurst, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7c3540243352a313\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Olivier Honda Bathurst\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694429450543,\n            \"dateOfPosted\": 1693585123227,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.6183507,\n                    \"lon\": -65.6513358\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bathurst\",\n                \"formattedAddress\": \"Bathurst, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Gloucester County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bathurst\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 7 months to less than 1 yearWork setting On-site customer service Automobile repair services Tasks Access and process information Answer inquiries and provide information to customers Arrange for billing for services Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Receive payments Schedule and confirm appointments Book appointments Computer and technology knowledge Internet MS Excel MS Outlook MS Windows MS Word Security and safety Criminal record check Transportation/travel information Own transportation Valid driver's licence Work conditions and physical capabilities Attention to detail Fast-paced environment Health benefits Dental plan Disability benefits Health care plan Vision care benefits Long term benefits Group insurance benefits Life insuranceWork Term: PermanentWork Language: BilingualHours: 40 hours per week\",\n            \"location\": \"Bathurst, NB\"\n        },\n        {\n            \"id\": \"17E14DCFB1B013B53E0D06500C8A103B\",\n            \"cityName\": \"355 Erb Street West, Waterloo, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7618e59287c182b8\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Currency Converters Of Waterloo\",\n            \"rowSalary\": \"$16.55–$18.50 an hour\",\n            \"date\": 1694429447084,\n            \"dateOfPosted\": 1692710058987,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4527742,\n                    \"lon\": -80.5527051\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Waterloo\",\n                \"formattedAddress\": \"Erb St W, Waterloo, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Waterloo\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job descriptionKey ResponsibilitiesCustomer Service Representatives are primarily responsible for providing consistently exceptional customer service, performing transactions, and completing a variety of internal administrative tasks. Key responsibilities include, but are not limited to:· Buying and selling foreign currency in the form of cash, cheques, wire transfers, and other monetary instruments· Assist clients in person, over the phone, and through email regarding Currency Converters of Waterloo’s organizational products and services· Balance foreign currency and Canadian currency, Interac machines, cheques, and precious metals· Maintain customer accounts by accurately collecting, updated, and verifying customer information· Uphold client confidentiality and comply with all legal and risk management policies and proceduresQualifications· Secondary School Diploma (or equivalent)· Minimum 2+ years of customer service and/or cash handling experience· Exceptional customer service and communication skills, both written and verbal· Proficiency with numerical calculations· Ability to excel in a fast-paced environment while maintaining strong attention to detail· Must possess valid driver’s license· Must pass criminal record check and credit check· Fluency in second language is considered an assetApplicants are invited to submit their resume and cover letter directly through Indeed or drop them off at 355 Erb Street West, Waterloo. The job posting end date is September 8 2023. We sincerely thank all who apply; however, only those selected for an interview will be contacted.Currency Converters of Waterloo is committed to being a fair and include work environment. Accommodations are available on request for candidates taking part in all aspects of the recruitment and selection process.Job Types: Part-time, PermanentJob Types: Part-time, PermanentPart-time hours: 16-22 per weekSalary: $16.55-$18.50 per hourBenefits:Casual dressFlexible scheduleOn-site parkingSchedule:Day shiftMonday to FridayWeekends as neededExperience:customer service: 2 years (required)Work Location: In personApplication deadline: 2023-09-08\",\n            \"location\": \"E Erb St. West, Waterloo, ON\"\n        },\n        {\n            \"id\": \"8B6D42E30B2FD9CAE1EEE6109C2A353E\",\n            \"cityName\": \"Ancaster, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a1800611f3cfc110\",\n            \"jobName\": \"Customer Service/Serving\",\n            \"companyName\": \"Albatross Indoor Golf Centre\",\n            \"rowSalary\": \"$16.75–$17.00 an hour\",\n            \"date\": 1694429375733,\n            \"dateOfPosted\": 1692737285643,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2177791,\n                    \"lon\": -79.98728349999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Ancaster, Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking a dedicated and customer-oriented individual to join our team as a Customer Service/Serving professional. In this multifaceted role, you will be responsible for delivering outstanding customer service, managing customer interactions, facilitating simulator setup, operating the point of sale system, serving refreshments, preparing food items, and ensuring the overall cleanliness and security of our GOLFZON simulator facility.Responsibilities:Customer Check-in and Check-out: Warmly greet customers and efficiently check them in for their scheduled tee times.Handle customer payments accurately and provide assistance during check-out.Reservation Management: Answer incoming calls, addressing inquiries and booking tee times based on customer preferences.Simulator Setup Assistance: Guide customers through the setup process of the GOLFZON simulator, ensuring they have a smooth experience.Point of Sale Operation: Skillfully operate the point of sale (POS) software to process transactions and manage payments.Reconcile cash and credit card payments, maintaining accurate records of financial transactions.Customer Service and Refreshment: Provide excellent customer service by serving drinks, snacks, and addressing customer questions.Food Preparation: Prepare food items according to the menu, ensuring adherence to quality and safety standards.Facility Maintenance: Perform opening and closing duties, including cleaning and organizing the facility.Secure the building at the end of the shift, including locking doors and managing the till.Menu Management: Follow the menu to cook and prepare food items, ensuring consistency and taste quality.Team Collaboration :Collaborate with colleagues and managers to ensure smooth operations and a positive customer experience.Additional Tasks :Complete any other tasks assigned by managers to support overall facility operations.Qualifications:High school diploma or equivalent.Previous customer service experience is preferred.Basic knowledge of point of sale software and cash handling procedures.Strong interpersonal skills and a friendly, approachable demeanor.Effective communication skills, both verbal and written.Ability to multitask and remain organized in a fast-paced environment.Attention to detail and commitment to maintaining high cleanliness and hygiene standards.Basic cooking skills and the ability to follow a menu.Flexibility to work evenings, weekends, and holidays as needed.Join our team and be a pivotal part of providing exceptional customer experiences in a dynamic environment. If you're enthusiastic, adaptable, and passionate about delivering top-notch service and culinary offerings, we encourage you to apply.Job Types: Full-time, Part-time, SeasonalSalary: $16.75-$17.00 per hourBenefits:Discounted or free foodOn-site parkingStore discountSchedule:8 hour shiftMorning shiftNight shiftSupplemental pay types:Overtime payTipsAbility to commute/relocate:Ancaster, ON L9G 3K9: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Ancaster, ON\"\n        },\n        {\n            \"id\": \"2BE65BE7F80CF5E6B597EB03A0048E02\",\n            \"cityName\": \"26557 Civic Centre Rd, Keswick, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=92705dd7aa2cf89b\",\n            \"jobName\": \"Roc Lead Customer Service And Cafeteria Representative\",\n            \"companyName\": \"Town Of Georgina\",\n            \"rowSalary\": \"$17.40–$18.40 an hour\",\n            \"date\": 1694429308183,\n            \"dateOfPosted\": 1693555764780,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2985236,\n                    \"lon\": -79.4389406\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Georgina\",\n                \"formattedAddress\": \"Civic Centre Rd, Georgina, ON L0E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Georgina\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ROC Lead Customer Service and Cafeteria Representative (Posting #2023.101S) Department: Community Services Division: Recreation Services Location: The ROC Status: Seasonal (November 14, 2023 – April 12, 2024) Hours of Work: 20 – 40 hours per week (4 – 8 hours per day) Number of Positions: 1 – 2 Hourly Wage: $17.40 - $18.40 per hour Training Rate: $16.55 per hour Date Posted: August 15, 2023 Date Closing: October 15, 2023 Come work with us! Employment with the Town of Georgina offers an opportunity to make a positive difference in our community. We are a progressive, forward-thinking organization focused on continuous improvement, innovation and providing exceptional customer service. We offer a collaborative team environment and an excellent place to take charge of your career.Position Purpose Responsible for assisting the Recreation Services Supervisor with overseeing the daily operations of the ROC Ticket Office and ROC cafeteria, including but not limited to food preparation, cash handling, cleaning, customer service, opening and closing the facility. For full details, please see attached job description.Minimum QualificationsPossess a High school diploma or equivalent;Current Food Handler certification is considered is required;Previous restaurant or cafeteria food preparation (preferably in a supervisory role);Must be available to work flexible hours including daytime, evenings, weekends and holidays;Excellent customer service skills to deal effectively with the general public; For full details, please see attached job description How to apply Qualified applicants are invited to submit a resume and cover letter, identifying the Job Title and Job ID#. Please apply by visiting the www.georgina.ca/careers no later than 11:59 pm on the closing date. The assessment process may include a practical test and/or interview. Committed to diversity and a barrier-free environment The Town of Georgina is an equal opportunity employer committed to inclusive, barrier-free recruitment and selection processes and work environments. We encourage applications from people with disabilities and will accommodate the needs of applicants under the Ontario Human Rights Code and the Accessibility for Ontarians with Disabilities Act (AODA) throughout all stages of the recruitment and selection process. Please advise the Human Resources Team if you require an accommodation(s) and we will work with you to meet your needs throughout any stage of the process. Please be advised that this information will be treated in a confidential manner. We thank all candidates for their interest, however only those being considered will be contacted. Personal information collected will be used in accordance with the Municipal Freedom of Information and Protection of Privacy Act for the purpose of candidate selection. Further information concerning the collection of personal information should be directed to the Human Resources Manager, Town of Georgina, 26557 Civic Centre Road, Keswick, ON L4P 3G1 (905) 476-4301 JOB DESCRIPTION Title: ROC Lead Customer Service & Cafeteria Representative Division: Recreation Services Position #: SE12 Department: Community Services Reports To: Recreation Services Supervisor Employee Group: Seasonal Direct Exercised: ROC Customer Service Representative Date Created: September 12, 2011 & ROC Cafeteria Attendants Date Amended: August 10, 2023 Position Summary Responsible for assisting the Recreation Services Supervisor with overseeing the daily operations of the ROC Ticket Office and ROC cafeteria, including but not limited to food preparation, cash handling, cleaning, customer service, opening and closing the facility. ResponsibilitiesOpens and closes the ticket office and cafeteria;Assists with training, scheduling, and on-going guidance and support to customer service representatives and cafeteria attendants;Follows all specified procedures to correctly handle all cash and credit transactions, ensuring accurate sales transactions, including counting start up cash and balancing at end of shift, authorizes refunds and provides petty cash as required and makes daily deposits at the end of each closing shift;Performs/oversees sales to customers and maintains a pleasant attitude in an effort to create a positive customer experience and responds to all customer requests in a timely and professional manner;Ensures that food and beverage products are fresh, appetizing and properly prepared in accordance with the York Region Public Health Department regulations and guidelines;Ensures proper food handling procedures to maintain high standards of quality control and hygiene;Correctly operates all food service equipment and conducts regular maintenance inspections;Ensures weekly inventory control and documentation, daily restocking of merchandise and assist with ordering supplies as needed;Ensures diligent record keeping as it pertains to temperature regulations, inventory checklists, equipment and food inspection, and food waste reports are being conducted as needed.Oversees or performs daily cleaning of cafeteria and equipment and trash removal and ensures that cafeteria work areas are kept neat, orderly and clean;Oversees staff in providing prompt, efficient and gracious service to all guests including preparing food, beverages and snacks as ordered, bussing tables and giving correct change for cash transactions;Assists with coordination of special events as required;Utilizes the first in, first out (FIFO) rule and sorts food by their best before or expiration dates.Stores all food and beverage in accordance to York Region Public Health Department timelines and guidelines along with any product timelines and guidelines including listed on packaging.Assists with customer service and cafeteria duties as required (see ROC Customer Service Representative and ROC Cafeteria Attendant job descriptions for further details);Immediately report all concerns (including product), suspicious occurrences and hazardous conditions to the Recreation Services Supervisor or designate. The above statements reflect the general details considered necessary to describe the principal functions and duties of the position and will not be construed as a detailed job description of the work requirements that may be inherent in the job. Skill/Knowledge RequirementsPossess a High school diploma or equivalent;Current Food Handler certification is considered is required;Knowledge of all cafeteria menu options along with food service techniques;Previous restaurant or cafeteria food preparation (preferably in a supervisory role);Knowledge of the ActiveNET and Fareharbor software systems considered an asset;Responsible, courteous, good communication skills;Effective conflict resolution, problem solving and critical thinking skills;Ability to work independently without close supervision;Previous cash handling experience with accurate cash handling skills;Excellent computer Skills and good working knowledge of all Microsoft Office programs;Excellent customer service skills to deal effectively with the general public;Must be available to work flexible hours including daytime, evenings, weekends and holidays.\",\n            \"location\": \"Civic Centre Rd, Georgina, ON\"\n        },\n        {\n            \"id\": \"5917E255399B0E405F6F581B097ED4F3\",\n            \"cityName\": \"10277 City Parkway, Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=27436a8fa995dc48\",\n            \"jobName\": \"Customer Service And Food Preparation\",\n            \"companyName\": \"Donair Hub\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694429301795,\n            \"dateOfPosted\": 1693584832751,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1944856,\n                    \"lon\": -122.8481893\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"City Pkwy, Surrey, BC V3T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Looking for great customer service and flexibility every other training will be providedJob Type: Part-timePart-time hours: 20/40 per weekSalary: From $16.75 per hourSchedule:8 hour shiftDay shiftEvening shiftSupplemental pay types:Bonus payTipsEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)\",\n            \"location\": \"City Pky, Surrey, BC\"\n        },\n        {\n            \"id\": \"C01BDBEE1A0998BE3FAE223DB0590792\",\n            \"cityName\": \"2355 Millstream Rd, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8cfb20955fb2a158\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Domino's Pizza | 655069 Bc Ltd\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694429180364,\n            \"dateOfPosted\": 1693584761945,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.49118850000001,\n                    \"lon\": -123.5101833\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Millstream Rd, British Columbia V9B, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Hot job opening, fresh out of the Oven! The Customer Service Representative's role is crucial within the Domino's system! We pride ourselves on offering fast and friendly service with a smile, and our CSRs lead the way in doing so. Within our fast paced environment, the role is primarily to offer top quality customer service by phone and in person at the counter. Customer Service Representatives are expected to know Domino's products and the current offers in order to provide customers with the correct order and best value based on their needs. Customer Service Representatives will take orders by phone-in customers, as well as customers at the store. They are expected to manage the cash drawer when accepting payment for orders and returning change. CSRs will also handle customer concerns using the approach taught during Domino's onboarding and orientation. In secondary roles, Customer Service Representatives will help make quality products, label boxes, cut pizzas and prepare orders for delivery or to be served to in-store customers. CSRs also help in maintaining the store's professional image by participating in the cleaning tasks assigned to all team members. Benefits of working with Domino's Pizza include: Flexible schedules Competitive wages Staff pizzas Career growth opportunities A uniform is provided, and wages start at $15.65 plus $1.50 - $ 3.50/hour in tips. Customer Service Representatives are expected to be presentable by following Domino's personal image and grooming standards. Domino's is an equal opportunity employer. REQUIREMENTS Previous experience preferred Friendly and well spoken Good math skills to handle cash handling for in-store customer payments Speak English fluently in order to serve customers Focus on cleanliness and personal hygiene At Domino's Pizza, Our Most Important Ingredient is Our People! We offer employment opportunities within our franchise stores. Take the first step in joining our team, and you'll find opportunities you won't find anywhere else in the industry!\",\n            \"location\": \"Millstream Rd, Victoria, BC\"\n        },\n        {\n            \"id\": \"4C73F88A0CB991566B679DAC5B37CFAA\",\n            \"cityName\": \"1010 Polytek Street, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6e5e710979a44a1e\",\n            \"jobName\": \"Customer Sales And Service Rep\",\n            \"companyName\": \"Natural Purity\",\n            \"rowSalary\": \"$75,000–$85,000 a year\",\n            \"date\": 1694429178266,\n            \"dateOfPosted\": 1693584484159,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4562665,\n                    \"lon\": -75.58572459999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Polytek St, Ottawa, ON K1J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 75000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    75000.0\n                ],\n                \"range\": {\n                    \"gte\": 75000.0,\n                    \"gt\": null,\n                    \"lte\": 75000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Sales and Service Rep- Natural Purity www.naturalpurity.ca PLEASE ONLY APPLY IF YOU LIVE IN THE GREATER OTTAWA AREA AND RESIDE FULL TIME IN CANADA. We are currently looking for individuals that share our common goal and are interested in growing with a company that wants a better tomorrow. Customer Sales and Service Reps will visit our customers and offer them great opportunities and options to improve the environmental conditions in their home or business.JOB DESCRIPTION: Customer Sales and Service Reps will be responsible to educate residential and commercial clients about their environmental conditions in their home and the day-to-day effects on their lives and businesses.No experience is necessary as we will provide you with paid training by a certified trainer.We will assure all appointments have been properly screened and meet our guidelines for both the client and team member safety.All of your appointments will be prearranged, and you will have no quotas to meet. There will be no pressure to sell products to potential clients.We will provide you an extremely competitive compensation package with incentives and bonuses along with full benefits and pleasant work atmosphere.No experience necessary as we will provide full training and ongoing support.We provide a great base salary as well as a generous bonus and benefit package.We have current team members that are making six figures in this position. We are looking for enthusiastic and motivated individuals to join our team and grow our business.We ONLY WORK A 4 DAY WORK WEEK. No Saturdays or Sundays. We don't require you to work Statutory Holidays as well.We require candidates to have their own vehicle and provide a professional appearance and possess a great attitude. About Us: We are a Canadian company that is servicing customers from coast to coast with environmentally friendly proprietary products and we are expanding our business. With one of the most advanced management teams, we provide our customers a full understanding of our product line. We also spend considerable effort and time to fully train our team members which provides them the opportunity to rapidly advance within our company. We are focused on preserving the planet through providing education and in turn encouraging everyone to reduce their carbon footprint. By encouraging our customers to use our products we have shown that it will help reduce plastic bottle waste that ends up polluting our rivers, lakes, and streams. Full time positions available. Wage $75,000 - $85,000 per year paid on a weekly basis plus benefits and attractive bonus structure. This is not a work from home position. PLEASE ONLY APPLY IF YOU LIVE IN THE GREATER OTTAWA AREA AND RESIDE FULL TIME IN CANADA. PLEASE NOTE: We require candidates to have their own vehicle for this position. Please DO NOT APPLY if you do not have your own car for transportation to and from customer appointments.\",\n            \"location\": \"Polytek Street, Ottawa, ON\"\n        },\n        {\n            \"id\": \"E0C2415266F2C76DBD5AD2C99D49A0B3\",\n            \"cityName\": \"1283 Cornwall Rd, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d6841ae2970f8628\",\n            \"jobName\": \"Bilingual Customer Service Representative (Eng/Fre)\",\n            \"companyName\": \"Canadian Spa Company\",\n            \"rowSalary\": \"$42,000–$48,000 a year\",\n            \"date\": 1694428616221,\n            \"dateOfPosted\": 1693583568472,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4718977,\n                    \"lon\": -79.6662865\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Cornwall Rd, Oakville, ON L6J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Canadian Spa Company manufactures and wholesales hot tubs, swim spas and outdoor accessories on a global scale to various merchants around the world. With over 35 years of experience in the hot tub industry, we have worked on perfecting and maintaining a highly valued product with a customer first attitude. Our immediate fulfillment approach has allowed us to succeed in this competitive marketplace while providing a quality brand that customers can trust in.The Canadian Head Office is in need of an energetic, hard working and dynamic individual to join our team this year. We are looking for a Bilingual (French/English) speaking Tier 1 Customer Service Representative to assist with the Canadian market and provide translation work for marketing documentation. This is a position with great opportunities depending on the individual's strengths.Responsibilities and DutiesCorrespond with customers on a daily basis through a variety of mediums (phone, email, social media etc)Answer calls and emails to log various service issues through the use of a ticketing systemProvide feedback of product issues in the field to help improve product designTranslation work of marketing/technical documentation to improve our global presenceQualifications and SkillsExcellent customer service skills with the ability to speak and write fluently in English and FrenchTraining will be provided while on the jobProactive team playerIndividual must be able to adapt and learn on the flyGreat communication skills with an emphasis on being a team playerAbility to work in a fast-paced environmentTechnical troubleshooting considered an assistExperience working remotelyMust have competent technical skills (Microsoft Office, Google products etc.)BenefitsVarious benefits include:Competitive salary provided with flexible hoursTeam wide profit sharing and bonus incentives based off annual goalsDirect commission for individual sales and achievementPlease send all resumes through Indeed for review, we hope that you will join our team and become and part of our growth! For any questions don't hesitate to contact us at 1-877-347-7727Job Type: Full-timeSalary: $42,000.00-$48,000.00 per yearBenefits:Dental careDisability insuranceExtended health careLife insurancePaid time offVision careSchedule:Monday to FridayWeekends as neededSupplemental pay types:Bonus payCommission payAbility to commute/relocate:Oakville, ON L6J 7T5: reliably commute or plan to relocate before starting work (required)Application question(s):Describe what \\\"good customer service\\\" means to youExperience:Customer service: 1 year (preferred)Work Location: Hybrid remote in Oakville, ON L6J 7T5\",\n            \"location\": \"Cornwall Road, Oakville, ON\"\n        },\n        {\n            \"id\": \"FE42EDD93BDA9814DFAA0ED64A124931\",\n            \"cityName\": \"Homestead Oxygen + Medical Equipment Inc. in Newmarket, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0f8012030c2719e2\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Homestead Oxygen + Medical Equipment Inc.\",\n            \"rowSalary\": \"$38,000–$43,000 a year\",\n            \"date\": 1694428550144,\n            \"dateOfPosted\": 1691527985298,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.05918700000001,\n                    \"lon\": -79.46125599999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Newmarket\",\n                \"formattedAddress\": \"Newmarket, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Newmarket\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 38000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    38000.0\n                ],\n                \"range\": {\n                    \"gte\": 38000.0,\n                    \"gt\": null,\n                    \"lte\": 38000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Homestead Oxygen + Medical Equipment is a locally owned and operated company built on professional expertise and personal service. Homestead has been meeting the community’s medical equipment needs since 1997. We are opening a new location in Newmarket.Homestead Oxygen + Medical Equipment is now accepting resumes for the following position:Customer Service RepresentativeThe successful applicant will have a passion for helping people live their best life.You are a friendly, well-organized individual who enjoys working with people. You will have a mature attitude and a lot of patience. You will answer questions and help our clients overcome daily challenges by providing advice on braces, compression stockings, walkers, wheelchairs, scooters, bathroom safety products, lift chairs, mobility equipment, and other aids to daily living. Excellent verbal communication skills are required. Previous experience in sales or customer service is preferred. Preference will be given to applicants with Home Health Care sales experience and/or Certified Fitters for compression stockings and supports and braces. Previous experience with Home Health Care is an asset, but we will train the right person.You will be making a difference in people’s lives with care, compassion and empathy.This is a full-time position. Our hours of operation are Monday to Friday 9:00 am to 5 pmHomestead’s goal is to always provide our customers with unparalleled customer care. If you would like to join our team of caring professionals, please email a cover letter and resume by July 30th 2022We thank all applicants, only those qualified will be contacted for an interview.Job Type: Full-timeSalary: $38,000.00-$43,000.00 per yearFlexible Language Requirement:English not requiredSchedule:8 hour shiftMonday to FridayEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In personExpected start date: 2023-08-21\",\n            \"location\": \"Newmarket, ON\"\n        },\n        {\n            \"id\": \"C354CEA00FA5EEEC9FD7C27B8CD7EF8A\",\n            \"cityName\": \"199 Front St Frnt 218, Belleville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e73afc7e49041c18\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mcdougall Insurance And Financial\",\n            \"rowSalary\": \"$40,000–$44,000 a year\",\n            \"date\": 1694428521598,\n            \"dateOfPosted\": 1693583386261,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.1651276,\n                    \"lon\": -77.384746\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Belleville\",\n                \"formattedAddress\": \"Front St, Belleville, ON K8N, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hastings County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Belleville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"McDougall Insurance is now the largest insurance brokerage in Eastern Ontario. We represent over 50 insurance companies, giving us the ability to offer optimal selection and competitive rates. Here at McDougall we have created an Employee Promise. The leadership of McDougall Insurance promises to foster an environment of support, empowerment and inclusion, while investing in our employee’s future with McDougall Insurance. In turn, our employees promise to treat others with dignity and respect and strive to approach each day with a positive attitude and willingness to learn. Together, we promise to deliver Legendary Service to our customers and apply the McDougall principals of Trust, Honesty and Integrity with a goal of building strong lasting relationships. The result is our staff is engaged, accountable and professional.At McDougall Insurance and Financial we offer our employees; a comprehensive benefits package, McDougall pension plan, staff appreciation days, social events, a branch-wide yearend bonus, a competitive salary and paid vacation time starting at 3 weeks.Our growing team is looking for a Customer Service Representative in Personal Lines to join our team in Belleville, Ontario!Are you looking to start a new career? Do you have strong customer service skills? If so, this might be the perfect opportunity for you. We provide you with all the tools, knowledge and training you need to be successful in this role.Responsibilities:· To provide legendary service directly to the client, after the sale by the Sales Executive.· Communicate with the client in person, by phone, email, text, etc. to answer all of their questions/inquiries, provide professional advice or recommendations regarding their coverage, and collect relevant information.· Process additions, deletions or changes to their policy on the appropriate broker management system (EPIC)· Ensure all transactions and renewals are accounted for and processed accurately and on a timely basis.· Provide quotations or estimates to clients on premiums, update information, and confirm data and coverage and to record appropriate changes or adjustments.· Communicate with insurance company personnel as required.· As an independent broker working for your client, acts as liaison with the insurer and balances the interests of the client, McDougall Insurance and the insurance company in force.· Function as part of a team responsible for assisting in the collection of accounts receivable and in any other area as required.· Where appropriate, procure a sale, normally through upgrading and bundling coverage for personal lines clientsQualifications:· Must have exceptional customer service and communication skills.· Acts in a professional manner at all times and maintains a position of trust and confidentiality.· Acts in an open, respectful, honest and helpful manner with all team members, clients and other staff.· Ability to work effectively in a fast-paced environment· Must be willing and eligible to obtain a RIBO licenseRIBO stands for the Registered Insurance Brokers of Ontario. RIBO regulates the licensing, professional competence, ethical conduct and insurance related financial obligations of all independent general insurance brokers in the province of Ontario. To learn more please visit https://www.ribo.com/What We Offer:Dedication to investing in our employees’ future by offering RIBO, CAIB, and other designation education reimbursementA supportive and inclusive culture where diversity is valuedA competitive employee health and dental benefits program including long term disabilityA competitive pension planPaid vacation timeOn-site parkingAccess to ongoing training and development through our McDougall training teamMcDougall Insurance and Financial is proud to be an equal opportunity employer. We aim to find individuals who are passionate about their work and treat others with dignity and respect.If you need assistance or an accommodation, you may reach out to our Human Resources Department through our website:https://www.mcdougallinsurance.com/contact/Job Types: Full-time, PermanentSalary: $40,000.00-$44,000.00 per yearBenefits:Company eventsCompany pensionDental careDisability insuranceEmployee assistance programExtended health carePaid time offVision careFlexible Language Requirement:French not requiredSchedule:Day shiftMonday to FridaySupplemental pay types:Bonus payWork Location: In personApplication deadline: 2023-09-08\",\n            \"location\": \"Front Street, Belleville, ON\"\n        },\n        {\n            \"id\": \"67AD530CEAE070D1DFFD49A8C45AD40E\",\n            \"cityName\": \"54 Davis Dr, Newmarket, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ec673ab070e58646\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Wingsup! Restaurants Newmarket\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694428486499,\n            \"dateOfPosted\": 1668992137108,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.0624094,\n                    \"lon\": -79.44692739999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Newmarket\",\n                \"formattedAddress\": \"Davis Dr, Newmarket, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Newmarket\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Operations of various kitchen stations (cashier, breading, frying, saucing, prep)· General preparation of ingredients and finished food products for presentation to guest· General housekeeping and cleaning of kitchen, storefront and service counter (sweeping, mopping, dishes, scrubbing surfaces, etc.)· Customer service & order taking - ringing in and adjusting orders in person and over phone· Operating a point-of-sale (POS) system to ring in orders, and basic cash handling and processing debit/credit & gift card paymentsJob Types: Full-time, Part-time, PermanentSalary: $15.50-$16.50 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftEvening shiftHolidaysNight shiftWeekend availabilityCOVID-19 considerations:Requiring the use of masks among all staff. Masks are most essential in times when physical distancing is difficult. Information should be provided to staff on proper use, removal, and washing of masksJob Type: Part-timePart-time hours: 20-40 per weekBenefits:On-site parkingStore discountSchedule:Day shiftEveningsOn callWeekend availabilitySupplemental pay types:TipsAbility to commute/relocate:Newmarket, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Davis Dr, Newmarket, ON\"\n        },\n        {\n            \"id\": \"539FE115CD983FC4D91B5188F91EED71\",\n            \"cityName\": \"Home Hardware Sherwood Park in Sherwood Park, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cdb0e7d18f896bac\",\n            \"jobName\": \"Customer Service/Sales\",\n            \"companyName\": \"Home Hardware Sherwood Park\",\n            \"rowSalary\": \"$18–$23 an hour\",\n            \"date\": 1694428445545,\n            \"dateOfPosted\": 1693581693393,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5411916,\n                    \"lon\": -113.2957355\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sherwood Park\",\n                \"formattedAddress\": \"Sherwood Park, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sherwood Park\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"CUSTOMER SERVICE SALESPERSONFULL-TIMEJOB DESCRIPTION:The LBM (Lumber and Building Materials) Counter Salesperson is responsible for providing prompt, courteous and efficient customer service, advising them on appropriate merchandise and related items. Their duties include:Being familiar with building supply pricing.Local building codes.Types of building permits issued.Preparing quotations.A variety of other related tasks.The LBM Counter Salesperson must perform all assigned tasks with sufficient speed and accuracy to avoid adverse impacts on customer service and achieve sales profitability.DUTIES / RESPONSIBILITIES:Ensure customers are greeted within 30 seconds of their arrival at the LBM counter.Determine customers’ needs by asking open-ended questions. Communicate product knowledge to the customer as appropriate—process special orders for non-stock or out-of-stock items. Be familiar with and maintain up-to-date pricing information. Help customers solve building problems. Update yourself with practical knowledge of building materials and lumber products, including their uses, advantages, and disadvantages. Resolve customer complaints. Be familiar with current yard inventory and surplus items. Suggest rules, policy and procedural changes when you believe they would improve efficiency, sales, profits, morale, etc. Maintain professional confidentiality of all store and customer records. Work on additional duties and assignments as assigned by management. Work safely following provincial and federal safety legislation and the use of good common sense. Report any potential hazards and unsafe behaviour to management to correct the situation.QUALIFICATIONS:Ability to work a flexible schedule, including weekends and evenings.A great attitude that continuously brings sales energy every day.Must communicate effectively and persuasively with employees, management, suppliers, and customers to obtain accurate information for pricing, estimates, quotations, etc.Prior retail experience is beneficial.Willingness to continually develop professional skills and knowledge base.High School graduate or equivalent.Ability to work cooperatively in a team atmosphere.WORKING RELATIONSHIPS:Reports directly to the Sales ManagerJob Type: PermanentSalary: $18.00 to $23.00 /hourJob Types: Full-time, PermanentSalary: $18.00-$23.00 per hourExpected hours: 40 per weekBenefits:Dental careExtended health careStore discountVision careSchedule:8 hour shiftMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Sherwood Park, AB\"\n        },\n        {\n            \"id\": \"97201346706005F38930F75C59818659\",\n            \"cityName\": \"693 Fairford St W, Moose Jaw, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0952cc522b119397\",\n            \"jobName\": \"Dispatcher/Customer Service\",\n            \"companyName\": \"Town & Country Plumbing & Heating (Moose Jaw)\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694428372568,\n            \"dateOfPosted\": 1693581755751,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.3925849,\n                    \"lon\": -105.547062\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moose Jaw\",\n                \"formattedAddress\": \"Fairford St W, Moose Jaw, SK S6H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moose Jaw\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Summary DetailsReporting to the Operations Manager, the dispatcher is responsible for dispatching of Technicians to customer locations, providing excellent customer service over the phone and in person, organizing upcoming jobs, overseeing maintenance program. Working under general supervision following clearly defined procedures and policies.This individual provides extraordinary customer service to clientsEstablishes and maintains effective communication and working relationships with clients, co-workers, and managers, etc.The Dispatcher assigns individuals and teams to tasks and locations.Coordinates resources according to customer requests and general job demands.Communicates assignments to employees and enters assignment data in computer software.Complies with all safety, security, compliance, and quality standards and procedures established by the Company, Clients, and regulatory authoritiesResponsibilitiesSupport the performance of the branch operations, including planned and unplanned maintenance/service/ installation/control calls from customers.Provide assistance, information and customer service as requested to clients.Schedules and dispatches employees, crews/teams, equipment, or service vehicles to appropriate locations according to customer requests, specifications, or needs, determine types or amounts of equipment, vehicles, materials, or personnel required according to work orders or client requirementsRelays work orders, messages, and information to or from crews/teams, supervisors, and managementConfers with clients and/or supervising personnel in order to address questions, problems, and requests for service or equipmentMonitors personnel and/or equipment locations and utilization in order to coordinate service and schedules to achieve optimal efficiency; ensures timely and efficient movement of resources according to work orders and/or resource schedulesOversees all communications within specifically assigned areasReceives or prepares work orders and work schedulesOrders supplies and equipment and issues them to personnelRecords and maintains files and records of customer requests, work, or services performed, inventory, and other dispatch informationStrictly adheres to all safety and regulatory compliance proceduresCoordinates and arranges for necessary repairs in order to restore service and schedulesMiscellaneous duties as assignedTracking:Maintains periodic contact with service personnel to ensure completion of assigned dutiesInforms the on-duty supervisor of any issues out of the ordinary that may need additional assistance or oversightCreates reports to monitor activity and operationsTransportation:Creates a work schedule for on-duty techniciansMaintains periodic contact with the technicians to ensure that they are safely and efficiently completing their assigned tasksInforms the supervisor of any issues out of the ordinary that may need additional assistance or oversightQualificationsMust be 18 years of age or olderPrevious knowledge in HVAC, plumbing, and/or electrical an assetPreferred Qualifications:Customer Service Experience1 yr of similar work experienceJob Type: Full-timeSalary: $18.00-$25.00 per hourBenefits:Dental careExtended health careRRSP matchFlexible Language Requirement:English not requiredSchedule:8 hour shiftSupplemental pay types:Overtime payExperience:dispatching: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Fairford St W, Moose Jaw, SK\"\n        },\n        {\n            \"id\": \"34C744A284B13F100BE31278F1638496\",\n            \"cityName\": \"6115 Danville Rd, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e43e5c3330cf4aa7\",\n            \"jobName\": \"Customer Service Representative (Pm)\",\n            \"companyName\": \"Lakeside Performance Gas Services Ltd\",\n            \"rowSalary\": \"$19.50 an hour\",\n            \"date\": 1694428351906,\n            \"dateOfPosted\": 1693580461999,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.643354,\n                    \"lon\": -79.67461700000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Danville Rd, Mississauga, ON L5T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*NOTE – applicants must be prepared to participate in the interview process via phone and/or video conference. Two references must be submitted if selected for an interview. *COMPANY OVERVIEWFor over 20 years, Lakeside Performance Gas Services Ltd. has been proudly serving the natural gas industry across Ontario and Quebec in partnership with top Utilities service providers. The company further excels in providing innovative solutions to its customers and extended group of clients. Headquartered in Mississauga with satellite offices throughout Ontario, the company values its dedicated group of personnel who consistently provide customers with the highest level of support.WORK HOURSMondays to Fridays from 11:30AM - 8:00PMJOB DESCRIPTIONThe purpose of the administrative function at Lakeside Gas Services is to deliver superior service through accurate data entry, aid with correspondence, record keeping and filing, while providing information to customers and maintaining the accuracy of databases.PRIMARY RESPONSIBILITIESReceive, process, and schedule requests for residential/commercial service as appropriate.Maintain regular and consistent communication with Technicians and customers.Respond to customer requests and schedule timely service appointments.Issue correspondence per predetermined schedule.Review work orders for accuracy and completeness.Ensure accuracy in information transfer and coding of documentation.Track and provide progress report on the status work assignments.Correspond and investigate with the Technicians and Utility organizations in regards to errors.Participate as needed in special department projects and other duties as assigned by department leaders.Ensure filing is accurate and updated correspondence is available as necessary in support of records integrity.Multitask efficiently using several Windows applications simultaneously to verify customer information, determine the root cause of any issue and provide the proper resolution.Exceptional computer skills (MS Office, Intermediate Excel.Perform other duties as assigned.EDUCATION AND EXPERIENCE REQUIREMENTHigh school or equivalent diplomaAsset to have a post-secondary diploma in Business Administration or equivalent.1-2 years Administrative and/or customer service experienceExperience in office administration/office setting is an asset.WORKING AT A LAKESIDE LOCATIONFlexibility is key; willing to work at a fast pace with attention to detail and accuracy.Ability to work as a team, as well as independently.No travelINCLUSION AND EQUAL OPPORTUNITY EMPLOYMENTAt Lakeside Gas Services, our belief is that diversity and inclusion are fundamental and integral part of its business innovation and growth.We are committed to building diverse and inclusive teams within an equitable workplace for our staff to collaborate and bring their true selves to work. We also strive to provide an accessible candidate experience for our prospective staff with various abilities. Please let us know if you need any accommodations during the recruitment process. Lakeside continues to actively address and improve on issues of inequity and systemic bias to support our diverse talent, clients, and communities.Job Types: Full-time, PermanentSalary: $19.50 per hourBenefits:Casual dressCompany eventsDental careExtended health careLife insuranceOn-site parkingPaid time offRRSP matchVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftEvening shiftMonday to FridaySupplemental pay types:Overtime payRetention bonusAbility to commute/relocate:Mississauga, ON L5T 2H7: reliably commute or plan to relocate before starting work (preferred)Application question(s):Are you legally eligible to work in Canada and location specified in the job posting and, if applicable, hold a valid work permit or study permit that allows you to fulfill the requirements of this role?Are you willing to undergo a background check (criminal, professional and academic), in accordance with local law and regulations?Are you willing to start at $19.50 per hour with a compensation review after probation?Are you comfortable with using a computer all day?Education:Secondary School (preferred)Experience:administrative, customer service and/or call center: 1 year (preferred)Work Location: In personExpected start date: 2023-10-02\",\n            \"location\": \"Danville Rd, Mississauga, ON\"\n        },\n        {\n            \"id\": \"0C2BBACB6B01605B12841A01A756A9DD\",\n            \"cityName\": \"Coquitlam, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e42997324107cf80\",\n            \"jobName\": \"Dispatcher/Customer Service\",\n            \"companyName\": \"Trifecta Plumbing & Hvac\",\n            \"rowSalary\": \"$20–$30 an hour\",\n            \"date\": 1694428215509,\n            \"dateOfPosted\": 1693577070127,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2837626,\n                    \"lon\": -122.7932065\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Coquitlam\",\n                \"formattedAddress\": \"Coquitlam, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Coquitlam\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Calling all happiness heroes and chat champions! Are you a vibrant ball of energy, fueled by the power of laughter and the joy of helping others? Well, prepare for the ultimate job extravaganza because we're hiring for the most epic role ever: Customer Service Rockstar!Our company is all about creating a work environment that's happier than a unicorn at a cotton candy factory. We've got a compensation package that will make your piggy bank dance with glee and benefits that will make you feel like you've won the lottery. It's a win-win situation, my friend!As our Customer Service Superstar, you'll embark on a thrilling adventure, communicating with our lovely customers in the plumbing wonderland. Your mission? To ensure they receive the VIP treatment they deserve and leave with smiles wider than the Grand Canyon.But hold on to your hats because the fun doesn't stop there! When you join our team, you'll unlock a treasure trove of perks and delights:A paycheck that will have you doing the cha-cha every payday.Paid time off to recharge your superhero powers and explore the world (or binge-watch your favorite shows).Superhero-worthy medical, dental, and vision insurance to keep you healthy and looking fabulous.matching rrsp to save for your futureOpportunities for career growth that will make you feel like you've leveled up in the game of life.A company culture so fantastic, it's like working in a magical land where unicorns moonlight as comedians.If you're a bundle of fun, happiness, and epic awesomeness looking to join a company that knows how to throw a party, don't wait a second longer! Apply now, and let's embark on a wild ride full of laughter, success, and mind-blowing plumbing adventures. Together, we'll create a future that's funnier than a stand-up comedy show at a water park!Duties:-using Service titan to book calls and dispatch technicians-apply for permits-collect payment over the phone from customers- Make outbound calls to customers to provide assistance and resolve issues- Analyze customer needs and provide appropriate solutions- Maintain accurate and detailed records of customer interactions- Collaborate with other team members to ensure excellent customer service- Follow company policies and procedures in all customer interactionsExperience:- if you have used Service Titan ,apply right now !- Previous experience in a customer service role is preferred but are looking for someone who has used service titan !- Strong communication skills, both verbal and written- Excellent problem-solving and analytical abilities- Ability to work well in a team environment- Proficient computer skills, including knowledge of Microsoft Office SuiteWe offer competitive pay and benefits package, including:- Health insurance- Dental insurance- Vision insurance- Paid time off- Retirement planIf you are a motivated individual with a passion for providing exceptional customer service, we would love to hear from you. Please submit your resume and cover letter detailing your relevant experience.Job Type: Full-timeSalary: $20.00-$30.00 per hourBenefits:Casual dressCompany eventsDental careExtended health carePaid time offRRSP matchVision careWork from homeSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payOvertime payRetention bonusSigning bonusEducation:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Coquitlam, BC\"\n        },\n        {\n            \"id\": \"524DD089F3948B08FC98EF6C9FC441F6\",\n            \"cityName\": \"Vanier, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5b438c7fc4265c17\",\n            \"jobName\": \"Entry Level Customer Service Representative\",\n            \"companyName\": \"Lucent Marketing Group\",\n            \"rowSalary\": \"$39,000–$45,000 a year\",\n            \"date\": 1694428186755,\n            \"dateOfPosted\": 1693577362286,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4370851,\n                    \"lon\": -75.658968\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Vanier, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 39000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    39000.0\n                ],\n                \"range\": {\n                    \"gte\": 39000.0,\n                    \"gt\": null,\n                    \"lte\": 39000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you experienced in the Customer Service and Sales field and looking to utilize your customer-centric approach to business development? Lucent Marketing Group is one of the Ottawa regions leading firms in Customer Service, Sales, and Business Development. We are dedicated to providing our clients with the utmost care and have a history of delivering profitable results and exceeding expectations in a vastly growing consulting industry. Utilizing this customer-centric and consultative approach is a cornerstone in how our Customer Service and Sales Team works together to create a dynamic, diverse and collaborative workspace.We emphasize our employee’s goals, growth, and leadership development to foster this atmosphere. As part of our Entry Level Customer Service Representative team, you would become an expert in all areas of consulting, customer service, sales, and leadership development. The ideal candidate is undeniably dedicated to advancing our core mission of innovation and inclusiveness. The right candidate for our Entry Level Customer Service Representative role is also a communications expert, empathetic towards people, and is exceptional at delivering results on behalf of our renowned clientele. If you are confident and possess these traits, joining our Entry Level Customer Service Representative team would be ideal for you.As A Entry Level Customer Service Representative You Will Be Responsible To:Articulate the features and benefits of our client’s products and services directly to our customers and possess the knowledge to answer any additional questions they may haveBuild rapport and long-lasting relationships with our customers to help ensure repeat business and brand loyaltyComplete the sales process with any qualifying customer who meets the client’s parameters and maintains the ability to lead with the client brand, not discountsSupport the rest of our Entry Level Customer Service Representatives and Sales teams with remaining daily responsibilities including but not limited to, compliance, product delivery tracking, and quality assuranceDrive customer engagement and satisfaction from initial contact through the point of sale to delivery of products to further help scale acquisition growth and longevityEffectively and efficiently communicate with customers to handle all inquiries, resolve issues, and overturn any objections while completing the sales processWhat We Look For In Our Entry Level Customer Service Representative:1 year of experience in an entry-level or introductory position within the field of customer service and/or sales is preferredA self-motivated individual dedicated to utilizing their existing skills and have a student mentality to learn new skillsetsStrong leadership skills and capability to mentor other members of the Entry Level Customer Service Representative and sales teamsExceptional communication skills, both written and verbalTenacious and dedicated to reinforcing the core values of unbelievable customer servicePerks Of Working With Lucent Marketing Group:Travel opportunities, both locally and internationallyLeadership development workshops and conferences across the country (in-person & virtual)Uncapped organic growth potential within our organizationEngagement opportunities to enhance our team collaborative cultureJob Type: Full-timeSalary: $39,000.00-$45,000.00 per yearBenefits:Employee assistance programSchedule:Monday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Vanier, ON\"\n        },\n        {\n            \"id\": \"E549FCC668DBE5E278F5A01BA5F75DE2\",\n            \"cityName\": \"Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ef7b1422a33f7e81\",\n            \"jobName\": \"Entry Level Customer Service Representative\",\n            \"companyName\": \"Lucent Marketing Group\",\n            \"rowSalary\": \"$39,000–$45,000 a year\",\n            \"date\": 1694428157495,\n            \"dateOfPosted\": 1693577070142,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 39000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    39000.0\n                ],\n                \"range\": {\n                    \"gte\": 39000.0,\n                    \"gt\": null,\n                    \"lte\": 39000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you experienced in the Customer Service and Sales field and looking to utilize your customer-centric approach to business development? Lucent Marketing Group is one of the Ottawa regions leading firms in Customer Service, Sales, and Business Development. We are dedicated to providing our clients with the utmost care and have a history of delivering profitable results and exceeding expectations in a vastly growing consulting industry. Utilizing this customer-centric and consultative approach is a cornerstone in how our Customer Service and Sales Team works together to create a dynamic, diverse and collaborative workspace.We emphasize our employee’s goals, growth, and leadership development to foster this atmosphere. As part of our Entry Level Customer Service Representative team, you would become an expert in all areas of consulting, customer service, sales, and leadership development. The ideal candidate is undeniably dedicated to advancing our core mission of innovation and inclusiveness. The right candidate for our Entry Level Customer Service Representative role is also a communications expert, empathetic towards people, and is exceptional at delivering results on behalf of our renowned clientele. If you are confident and possess these traits, joining our Entry Level Customer Service Representative team would be ideal for you.As A Entry Level Customer Service Representative You Will Be Responsible To:Articulate the features and benefits of our client’s products and services directly to our customers and possess the knowledge to answer any additional questions they may haveBuild rapport and long-lasting relationships with our customers to help ensure repeat business and brand loyaltyComplete the sales process with any qualifying customer who meets the client’s parameters and maintains the ability to lead with the client brand, not discountsSupport the rest of our Entry Level Customer Service Representatives and Sales teams with remaining daily responsibilities including but not limited to, compliance, product delivery tracking, and quality assuranceDrive customer engagement and satisfaction from initial contact through the point of sale to delivery of products to further help scale acquisition growth and longevityEffectively and efficiently communicate with customers to handle all inquiries, resolve issues, and overturn any objections while completing the sales processWhat We Look For In Our Entry Level Customer Service Representative:1 year of experience in an entry-level or introductory position within the field of customer service and/or sales is preferredA self-motivated individual dedicated to utilizing their existing skills and have a student mentality to learn new skillsetsStrong leadership skills and capability to mentor other members of the Entry Level Customer Service Representative and sales teamsExceptional communication skills, both written and verbalTenacious and dedicated to reinforcing the core values of unbelievable customer servicePerks Of Working With Lucent Marketing Group:Travel opportunities, both locally and internationallyLeadership development workshops and conferences across the country (in-person & virtual)Uncapped organic growth potential within our organizationEngagement opportunities to enhance our team collaborative cultureJob Type: Full-timeSalary: $39,000.00-$45,000.00 per yearBenefits:Employee assistance programSchedule:Monday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"D5EBC817CE00647DBCE45AADB4CD40BE\",\n            \"cityName\": \"Bracebridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a1e442e1a5bf3595\",\n            \"jobName\": \"Customer Service And Warranty Representative\",\n            \"companyName\": \"Mica Sport Canada\",\n            \"rowSalary\": \"$25–$30 an hour\",\n            \"date\": 1694428073288,\n            \"dateOfPosted\": 1693575923312,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.0389565,\n                    \"lon\": -79.3078787\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bracebridge\",\n                \"formattedAddress\": \"Bracebridge, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Muskoka District Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Bracebridge\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 25.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    25.0\n                ],\n                \"range\": {\n                    \"gte\": 25.0,\n                    \"gt\": null,\n                    \"lte\": 25.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service and Warranty RepresentativeIf you are an outdoor enthusiast, avid cyclist, skier, snowboarder, or runner that would like to work for a Global leader in the Sporting goods industry, we are hiring. Mica Sport Canada is the Canadian Distributor for Scott Sports, with the head office & warehousing located in Muskoka, Ontario.We're looking for an eager and tech-savvy customer service and warranty representative. As a customer service and warranty representative, you'll be responsible for troubleshooting product and service related issues, administering warranties and providing superior customer service.Job SummaryWork closely with the bike brand coordinator to provide excellent customer service to dealers, sales agents, and end users.Provide the first point of contact to dealers, sales agents and end users for bicycle related questions via telephone and e-mail.Provide a timely response to bicycle related questions.Work closely with the credit department making sure orders are accurately entered to ensure payment in a timely manner.Answering customer inquiries in a timely and professional mannerResponding to customers and troubleshooting technical issuesTracking and resolving customer service related issues in a timely mannerEnsuring that customer service needs are met with minimal interruption of servicePreparing and tracking warranties and replacement productsResponsibilities:Manage, maintain, and administer all aspects of bicycle related warranty claims and issues.Enter all bicycle related orders in a timely and accurate manner (Dealers, sales agents, staff, warranty, and promotional).Manage and distribute sales order pick lists through incoming and available inventory based on ship dates and in-season order requirements, while maximizing freight efficiencies.Manage and maintain inventory and available to sell reports for internal and external use.Maintain and update a dealer database to ensure accurate order entry, discounts, terms, credit limits and shipping arrangements.Assist in the generation and creation of sales and marketing analysis.Assist the sales and marketing manager in the execution and implementation of all sales and marketing programs.Assist in the preparation for bicycle related shows and events.Assist in the setup and tear down of bicycle related events and shows.Travel as required to events and shows.Track, manage and maintain the demo fleet of bicycles.Act as support for all areas of customer service.You're a great fit for this role if you have:· Post-Secondary Education· Bicycle specific Knowledge or interest1 - 2 years' experience in customer service and tech supportExcellent verbal and written communication skillsStrong technical and problem-solving skillsKnowledge of customer service systems and softwareStrong organizational and time management skillsExperience in the warranty and customer service industry is a plus· Clean Driving record and ability to drive a company vehicle· Ability to travel domestically and internationallyCompensation/Remuneration:Salaried Position Range $25-30/hour based on experience specific to sporting goods industryHealth Benefits PackageEmployee Product Benefit PackageOffice is based in Bracebridge, ONMonday-Friday 8:30-5:00If you're the perfect candidate for this role and meet the qualifications above, we'd love to hear from you. To apply, please submit your resume and any relevant experience for review.Job Types: Full-time, PermanentSalary: $25.00-$30.00 per hourBenefits:Dental careExtended health careLife insuranceSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsWork Location: In person\",\n            \"location\": \"Bracebridge, ON\"\n        },\n        {\n            \"id\": \"7D7062B8D7454DA3F895464D42251E75\",\n            \"cityName\": \"3900 12 St NE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=df025083026c39f1\",\n            \"jobName\": \"Bilingual (French) Customer Service Representative\",\n            \"companyName\": \"Advanced Orthomolecular Research\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694427730377,\n            \"dateOfPosted\": 1693534485882,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.10407319999999,\n                    \"lon\": -114.0365001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"11 St NE, Calgary, AB T2E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"AOR is one of Canada’s fastest growing Nutraceutical health supplement organizations. Our market leading premium products are manufactured and distributed primarily to specialty retailers throughout Canada and the United States.ResponsibilitiesLearn and maintain high level product knowledge of AOR products to help educate customersPromote AOR’s brand and products and capture opportunities to upsell or cross sell AOR productsProcessing orders by phone, fax and emailMaintaining up to date and accurate customer filesHandling customer creditsFilter and direct calls, and emails to the appropriate departmentsSupply relevant marketing materials to customers and fellow staff to ensure informational needs are metResolve customer complaints in a positive, timely, win/win manner. Document issues and actions taken in accordance with company processes for future problem analysis and elimination.Answer all technical questions on nutrition and our product line for customers via the phone, tickets and live chat.Receive monthly training on new and existing products.Investigate complicated customer questions with the research team, and occasionally the Quality Control team.Make suggestions on AOR products for customers based on a condition or symptom they might be trying to correctAssist the Customer Excellence Manager as necessaryAssist Marketing, Shipping, and Finance departmentWork synergistically with the both the Internal and External teamQualifications and SkillsObtained a Certificate in Holistic Nutrition (Preferable)Fluent in French- oral and written (required)Completed post- secondary diploma in business, marketing, human resources, health science) is a nice to have but not required.Should have a strong work ethic, inter-personal skills, and independentExperience within a health- related industry would be considered an assetExperience working with Navision would be considered an assetJob Type: Full-timeSalary: $18.00-$22.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceOn-site parkingPaid time offRRSP matchVision careWellness programSchedule:8 hour shiftDay shiftMonday to FridayWork Location: In person\",\n            \"location\": \"St NE, Calgary, AB\"\n        },\n        {\n            \"id\": \"3C29D77E5013F9204C504AC483A3BB7D\",\n            \"cityName\": \"Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=28abf0bf5a686523\",\n            \"jobName\": \"Customer Service Specialist\",\n            \"companyName\": \"Bauco Access Panel Solutions Inc\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694427293422,\n            \"dateOfPosted\": 1693534782073,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4284207,\n                    \"lon\": -123.3656444\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About Bauco Access Panel Solutions Inc.  Founded in 1995, BAUCO is a manufacturing enterprise located in Victoria, BC utilizing local skills and internationally sourced inputs and technologies to create exceptional products and services. As the manufacturer and distributor of quality access panels, we serve local, national and international clients in North America and the Caribbean. The panels are virtually invisible when finished, and are an architect favorite for high-rise construction projects such as hotels and residential developments. We support architects, developers, and contractors in solving service access issues, while maintaining interior design aesthetics and ensuring easy access. We have a dynamic team with overwhelming passion and commitment to excellence. About the role:  Our customer service specialists are the face of the company. In our team driven office, you will work with other specialists to keep the business moving forward. You will interact directly with industry professionals to determine the best solution for their requirements. You will work with them from first call through to delivery providing exceptional service by applying our proven process. What you will be doing:  You are all about attention to detail and delivering solutions to customers to solve their problems. You carefully listen to client concerns. You have an aptitude and desire to understand technical details. You draw upon the resources of the technical team, employ your in-house training and utilize resources such as product literature, web links, and samples to provide detailed application based consultation. You provide commercial information in the form of detailed quotes outlining cost of goods, trade discounts, freight costs and delivery times. You will work with our established account management process, utilizing CRM , accounting, and quoting software. You enjoy communicating by phone, email, and mail with people across North America and beyond. What you bring to the table: Minimum 2 years customer service experience in a similar role. Previous experience in manufacturing, construction, commercial building supply or another business-to-business sales environment is preferred. Experience in customer support or account management is preferred. Exceptional attention to detail. Customer service driven. Strong written and telephone communication skills. Multi-targeted: versatility to move between tasks with ease, and to monitor status of many different customers. Ability to investigate and problem solve. Excellent organization skills: Priority based time management and task tracking. Team player: Shares workload to maintain a cooperative team environment. Demonstrated ability to provide, receive, and act on constructive feedback in a team based environment  Ability to collaborate with a team to solve issues from a shared leadership perspective. Enthusiasm to learn and understand our market and customer environment. Tech savvy: experience including point of sale in QuickBooks or similar, Microsoft Office Suite, CRM software. Detail focused: able to perform complex tasks with a high degree of accuracy. Experience: What we will provide to you: Competitive salary plus participation in the company bonus program. Comprehensive medical, dental, and vision care benefits to support you and your family. Options for flexible hours and some remote workdays. Generous vacation and personal leave policy to recharge and rejuvenate. Continuous learning and training to sharpen your skills and keep you ahead of the game. A casual and supportive work environment that nurtures innovation , recognizes and rewards outstanding performance. One-on-one meetings, Performance reviews, Collaborative planning, and goal-setting sessions, Employee of the Month peer recognition program, Monthly staff appreciation lunches, and many other perks. Hiring Salary: $20.00-$24.00 per hour Job Type: Full-time Salary: $20.00-$24.00 per hour\",\n            \"location\": \"Victoria, BC\"\n        },\n        {\n            \"id\": \"213A9DD544F27E2F20114BC0A1D9D7AE\",\n            \"cityName\": \"2225 14th Ave, Regina, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=10677186bb750b80\",\n            \"jobName\": \"Technician Support And Customer Service\",\n            \"companyName\": \"Rescuetech (Cbas Services Ltd)\",\n            \"rowSalary\": \"$14–$16 an hour\",\n            \"date\": 1694425232266,\n            \"dateOfPosted\": 1694236814574,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"RescueTECH is Regina's premier destination for computer repair, serving both Apple and Windows-based computers for over 15 years. As a locally owned and operated business, we also offer onsite IT services to both home and business users in the Regina area.RescueTECH is currently seeking a part-time employee (approximately 20 hours a week) to assist our repair technicians in their daily tasks. Job responsibilities will include basic office maintenance, daily vacuuming and trash disposal, monitoring and responding to emails, voicemails, and social media messages, answering phone calls and in-person inquiries, contacting customers regarding their devices, processing payments and related transactions, and any other duties as required by the employer.Only individuals who meet the following criteria will be considered:Must-haves:Physical presence for conducting job interviews in Regina, Saskatchewan.Good personal hygiene, verifiable references, and excellent English language communication skills.The ability to work independently.General knowledge of computers, their components, and operations.Past experience in customer service relevant to the position and its responsibilities.Reliability and the capacity to adhere to a set work schedule, such as 9:00 am to 12:00 pm, Monday to Friday (or as otherwise agreed upon by the employee and employer).Good-to-haves include work experience in the following areas:· Hardware repair and troubleshooting of Windows and Apple computers and other devices.· Repair of Android and/or Apple devices.· Micro-soldering and board repair.· Data recovery.· Social media management.Wages will be determined based on the work experience and qualifications of the successful candidate. Students are encouraged to apply.Job Type: Part-timePart-time hours: 20 per weekSalary: $14.00-$16.00 per hourBenefits:Flexible scheduleFlexible Language Requirement:French not requiredSchedule:Day shiftNo weekendsEducation:Secondary School (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"A0FCD6F34EE2245A7BECD5FD905BFB2C\",\n            \"cityName\": \"5526 Kingsway, Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6224d2b7aa3f8b00\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Milani Plumbing Heating & Air Conditioning Ltd.\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694423942612,\n            \"dateOfPosted\": 1693533584393,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.22315889999999,\n                    \"lon\": -122.9831859\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Kingsway, Burnaby, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"If you are the kind of person that loves helping people and are looking for a role where you can apply your excellent communications skills, then we want to hear from you!As Vancouver’s largest plumbing, heating and air conditioning company continues to expand, we need to add more people to our award-winning team! We are seeking a full-time customer service representative to join our Customer Service team. With more than 120 service trucks on the road, we field a large volume of calls every day from people all over the Lower Mainland that need our help with their plumbing, drainage, heating and air conditioning service.We are looking to fill this open position within our organization immediately, we would like to hear from people with great communication skills who truly enjoy customer serviceJob Duties:- You will handle incoming calls, responding to customer e-mails and in webchat;- Learn about our services inside and out to be able to answer any questions from customers.- Learn to identify customers’ concerns and desires in order to provide appropriate service;- Keep a record of customers’ inquiries using the company’s software system;- Schedule appointments for our plumbing, heating and air conditioning services;- Work with colleagues when necessary to resolve customer complaints;- Provide feedback to other departments to improve sales and business processes.Successful candidates must:Possess outstanding communication and customer service skillsHave a great attitude, be positive and energeticBe detail-orientedHave excellent time-management and be organizedHave excellent computer skills and typing speedBe an expert multi-taskerBe comfortable in a fast-paced environmentSpeak English fluentlyExperience working in a call center is not required but an assetMandarin or Cantonese are an asset.We provide:- Competitive Wages- Extended Medical/Dental- Training- Encouraging work environment;- Excellent team;- Opportunities for advancement- Vacation Pay- Flexible work schedule- Job DiversityCustomer Service Representatives will handle a high volume of telephone calls and is critical to the success of our business.Please respond with your resume. Applicants with a matching skillset will be contacted for a phone interview to verify your energy and communication skills.Milani Plumbing Drainage & Heating Ltd. is an equal opportunity employer!While we thank all candidates for their interest, only those who most closely match our requirements will be contactedJob Types: Full-time, PermanentSalary: $20.00-$24.00 per hourBenefits:Dental careExtended health careSchedule:8 hour shiftSupplemental pay types:Commission payExperience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Kingsway, Burnaby, BC\"\n        },\n        {\n            \"id\": \"15D76F70D0FE762C9FB4FBCC28323F9D\",\n            \"cityName\": \"Terrace, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d4f74b3fcc5374e5\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Machine Pace Group\",\n            \"rowSalary\": \"$63,574–$75,363 a year\",\n            \"date\": 1694423740425,\n            \"dateOfPosted\": 1692704192066,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.5181925,\n                    \"lon\": -128.6031539\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Terrace\",\n                \"formattedAddress\": \"Terrace, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kitimat-Stikine\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Terrace\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 63574.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    63574.0\n                ],\n                \"range\": {\n                    \"gte\": 63574.0,\n                    \"gt\": null,\n                    \"lte\": 63574.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Why should you apply? Great Question:Hybrid office with remote flexibilityWeekly Pay and Uncapped Commission$60k plus first year average incomeResidual IncomeExceptional commission ratesTrips, Training Incentives/Events and other benefitsPaid TrainingResponsibilities include:Conference over zoom, skype and phone calls with customers/clientsHandle inbound calls from customers, other lenders and insurance companiesAssist customers with inquiries, account status and problem resolutionAssist multiple departments with verifying and processing finance informationAssist various outside parties with inquires and document verificationMake outbound calls and negotiate arrangements with customers who have pending contracts or an account up for renewalAssist customers with account inquiriesRequirements:A winning attitude and determination to succeedWillingness to go above and beyond for our customersMath skills are a plusMust have experience with Microsoft Word, Excel and other Modern Office Technology like ZoomPrior customer service/sales experience is a plusJust like your resume, a job description never tells the full story. Apply today and if you've got what it takes, we'd love to discuss everything in further detail. We know there's a lot more you'd like to know, why wait? Apply today!Job Types: Full-time, Part-time, Fixed term contract, Casual, SeasonalSalary: $63,574.07-$75,363.48 per yearBenefits:Casual dressCompany eventsCompany pensionDental careDisability insuranceDiscounted or free foodEmployee assistance programExtended health careOn-site gymOn-site parkingPaid time offProfit sharingStore discountTuition reimbursementVision careWellness programWork from homeSchedule:8 hour shiftEvening shiftMonday to FridayMorning shiftNight shiftWeekends as neededSupplemental pay types:Bonus payOvertime payRetention bonusSigning bonusTipsWork Location: In person\",\n            \"location\": \"Terrace, BC\"\n        },\n        {\n            \"id\": \"7F15FEF8AB35A9B56F83D23E3567F6E7\",\n            \"cityName\": \"11 Vervain Dr, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b5810a260c98c0c5\",\n            \"jobName\": \"Customer Service Representative-Financial\",\n            \"companyName\": \"6755675 Manitoba Ltd O/A Calculus Financial\",\n            \"rowSalary\": \"$24 an hour\",\n            \"date\": 1694423732762,\n            \"dateOfPosted\": 1693552038769,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.9611152,\n                    \"lon\": -97.2334349\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Vervain Dr, Winnipeg, MB R0C 3A0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Rosser\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job DescriptionInform customers of available financial products and services to address their needs. Process customer's terms lease payments and disbursements, through bills and credit card payments, money orders, and other related banking transactions. Answer inquiries and resolve discrepancies concerning customers' accounts. Inform customers about term and due lease/loan payments. Balance daily transactions. Promote financial products and services. Store, update and retrieve financial data.Completion of Secondary School, Certificate/Diploma in Business Administration/ManagementJob Types: Permanent, Full-timeSalary: $24.00 per hourBenefits:Dental careOn-site parkingPaid time offSchedule:8 hour shiftDay shiftMonday to FridayOvertimeSupplemental pay types:Overtime payAbility to commute/relocate:Winnipeg, MB R0H 2E6: reliably commute or plan to relocate before starting work (required)Education:AEC / DEP or Skilled Trade Certificate (required)Experience:Relevant: 3 years (required)Shift availability:Day Shift (required)Work Location: In personApplication deadline: 2023-10-03\",\n            \"location\": \"Vervain Dr, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"D6232454DC288F27BC207EEB46B2B441\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5565ac094b802451\",\n            \"jobName\": \"Agent Du Service à La Clientèle / Customer Service Agent\",\n            \"companyName\": \"Voxdata\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694422833866,\n            \"dateOfPosted\": 1693535122249,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*English version to follow* *NB : Nous n'acceptons que les candidatures provenant de la grande région de Montréal car la formation se fait à partir du bureau.* *Nous exigeons que nos candidats parlent anglais car certains de nos clients sont à l'extérieur du Québec et ne parlent que l'anglais.* Prêt à vous joindre à l'un des plus importants centres d'appels de Montréal ! VOXDATA vous attend ! Nous cherchons à agrandir notre équipe avec de nouveaux membres qui sont prêts à devenir nos prochains experts en offrant la meilleure expérience client possible ! Pour avoir une meilleure idée de notre entreprise et de nos valeurs, vous pouvez consulter notre site web ici ! https://www.voxdata.com/ Voici quelques raisons pour lesquelles il fait bon travailler chez VOXDATA : Une variété de types de postes, allant du service à la clientèle aux ventes, en passant par le soutien technique, avec des rôles uniquement en anglais ou bilingues et des options d'horaire variées - nous voulons mettre en valeur vos compétences uniques dans un poste qui vous convient le mieux !Un bureau facilement accessible et convoité au cœur du centre-ville de Montréal, et la possibilité de travailler à domicile pour nos postes hybrides !Un environnement de travail diversifié, positif et encourageant, notre objectif étant d'aider nos agents à briller et à réussir au maximum de leur potentiel !Les avantages et les bénéfices pour les employés tels que les plans de primes inclus dans nos postes, les primes supplémentaires pour les personnes les plus performantes (comme des cartes cadeaux et de l'argent supplémentaire !), les couvertures d'assurance, et les primes de recommandation des employés qui peuvent aller jusqu'à 1000 $ par personne !La possibilité d'évoluer et de développer vos compétences par le biais de réunions d'équipe, de séances de coaching individuel et d'évaluations des performances, toutes conçues pour vous aider à renforcer vos capacités et à devenir un maître dans votre travail !Des opportunités de développement interne ouvertes à tous - avec des rôles tels que chef d'équipe, coach, formateur, mentor et même des postes administratifs, nous sommes fiers de toujours nous tourner vers le personnel que nous avons déjà avec nous pour le promouvoir lorsque l'occasion se présente !Pour ce poste, vous travaillerez avec une société d'aviation bien établie. Vos tâches spécifiques seront les suivantes : Fournir un service à la clientèle de premier ordre à chaque interaction avec les clients.Répondre aux appels entrants des clients pour les aider à effectuer des réservations une fois qu'elles ont été achetées.Résoudre les problèmes liés à l'accès aux billets et à la navigation sur le site web.Répondre aux questions concernant les informations sur les billets ou aux questions générales sur les réservations.Ready to join one of the leading call centers in Montreal?! VOXDATA is waiting for you! We're looking to expand our team with new members who are ready to become our next experts in delivering the best customer experience possible! To get a better idea of our company and values, you can check out our website here! https://www.voxdata.com/ Here's a few reasons why it's great to work at VOXDATA: A variety of position types, ranging from customer service, sales, and technical support, with English-only or bilingual roles and ranging scheduling options – we want to highlight your unique skillset in a position that is best suited to you!An easily accessible and coveted office location in the heart of Downtown Montreal, and the option to work from home with our hybrid roles!A diverse, supportive, and encouraging work environment, our goal is to help our agents shine and succeed to their fullest potential!Employee benefits and perks such as bonus plans included into our positions, additional bonuses for top performers (like gift cards and extra money!), insurance coverages, and employee referral bonuses that can go up to $1000 per person!The chance to grow and develop your skills through team meetings, individual coaching sessions, and performance reviews; all designed to help you further strengthen your abilities and become a master at your job!Internal growth opportunities that are open to everyone – with roles like team leader, coach, trainer, mentor, and even administrative positions; we pride ourselves on always looking to the staff we already have with us to promote when the occasion arises!For this role, you will be working with an established aviation company. Your specific tasks will include: Providing top-tier customer service to clients in every interaction.Answering inbound calls from customers to assist with bookings/reservations after they have been purchased.Resolving issues relating to ticket access and website navigation.Answering questions regarding ticket information, or general questions about bookings/reservations.Requirements Qu'est-ce qui fait de quelqu'un un excellent candidat ? Nous recherchons des personnes qui : Disponible pour travailler 40 heures par semaine, du lundi au dimanche, de 7h00 à minuit, de préférence le soir et le week-end.Ont déjà travaillé dans le service à la clientèle, les ventes ou les centres d'appels, ou ont une expérience traduisible dans d'autres secteurs.Sont bilingues en français et en anglais.Vous pouvez apprendre à utiliser et à faire fonctionner plusieurs programmes informatiques avec facilité.Être disponible pour travailler le soir et le week-end si la campagne est opérationnelle pendant ces périodes.Avoir obtenu un diplôme de fin d'études secondaires ou un diplôme équivalent.Se considèrent comme des personnes capables de résoudre des problèmes, de s'adapter à des situations changeantes et sont motivées pour être les meilleures des meilleures !What do we think makes someone a great candidate?! We're looking for people who:Are available to work 40 hours/week within the operational hours of Monday to Sunday, between 7:00 AM to 12:00 AM (midnight), evening and weekend availability is preferred.Have worked in customer service, sales, or call centers before; or have translatable experience from other industries.Are bilingual in French and English.Can learn how to use and operate multiple computer programs with ease.Have graduated high school or have an equivalent diploma.Consider themselves to be problem-solvers, adaptable to changing situations and are motivated to be the best of the best!Benefits Soumettez votre candidature dès maintenant pour lancer le processus d'embauche et voyez par vous-même pourquoi il est formidable d'être un agent VOXDATA !Ce poste est assorti d'un salaire de base de 17,00 $/heure. Submit an application now to get the hiring process started and see for yourself why its great to be a VOXDATA agent! *This position has a base salary of $17.00/hour.*\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"1D5CB6124EE86CFAAFA2CCB3245421B2\",\n            \"cityName\": \"9750 140 Street, Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b0bc5080d230eeac\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Blenz Coffee Opc\",\n            \"rowSalary\": \"$16.75–$17.00 an hour\",\n            \"date\": 1694422513394,\n            \"dateOfPosted\": 1692718694033,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.142184,\n                    \"lon\": -122.776366\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"161 St, Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Blenz at JPOPC Surrey is looking for hard working individuals with have an eye for detail. He/She should be customer friendly and a fun-loving person for this position who is companionate and empathetic. Should be flexible and have availability during weekdays for atleast 2 shifts. Food Safe is a plus. Please include your availability in response. Position is permanent and part-time only.* Always smile and greet customers.* Describe the menu product, specials and recommend it to customers.* Take customer orders and perform appropiate cash handling.* Prepare or serve hot or cold beverages, such as coffee, espresso drinks, blended coffees, or teas.* Clean or sanitize work areas, seating area, utensils, or equipment.* Check temperatures of freezers, refrigerators, or heating equipment to ensure proper functioning.* Able to take instructions from supervisor and execute them.Cafe operational hours are 7 am - 4:30 pm. Should be available for morning as well as closing shift. Cafe operational hours not suitable for high school students.Job Types: Part-time, PermanentPart-time hours: 15-20 per weekSalary: $16.75-$17.00 per hourBenefits:Dental careExtended health careLife insuranceVision careSchedule:Monday to FridayNo weekendsOn callSupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Street, Surrey, BC\"\n        },\n        {\n            \"id\": \"FD8B9A6C8631A44BC83A1651CC41517D\",\n            \"cityName\": \"235 Gore Road, Kingston, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f65071fdd35e4207\",\n            \"jobName\": \"Customer Service/Florist\",\n            \"companyName\": \"In Bloom\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694422476926,\n            \"dateOfPosted\": 1694422476726,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2606493,\n                    \"lon\": -76.4441002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kingston\",\n                \"formattedAddress\": \"Gore Rd, Kingston, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Frontenac County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kingston\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Do you wake up in the morning feeling creative and happy to start your day? Finding yourself looking for a job you can fall in love with? We want YOU on our team! We are in urgent search of a passionate individual to fill a customer service/potential Designer position at our East end flower shop. MUST have a valid G2 Drivers License and willingness to work Saturdays. Experience in the floral industry is a plus, but absolutely not a must have! If you are eager to learn, we are more then happy to teach you.Responsibilities consist of but are not limited to:- Tending to customers each individual requests- Cleaning and preparing floral product- Use of organization and time-management skills- Training/Willingness to learn designing floral arrangements- Handling money and sales- Delivering orders to customersInterviews to take place the week of September 18th and 25th.Please apply IN PERSON with a resume in hand. We look forward to welcoming a new member to our flower team!*PART TIME AND FULL TIME POSITIONS NEEDED*Job Types: Full-time, Part-timeSalary: From $15.50 per hourSchedule:Day shiftAbility to commute/relocate:Kingston, ON: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Gore Road, Kingston, ON\"\n        },\n        {\n            \"id\": \"36756BC92D0C03A0E7CF24566699CA2F\",\n            \"cityName\": \"3625 50 St, Cold Lake, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3dca4afc3e93d4da\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Enterprise Holdings\",\n            \"rowSalary\": \"$17.25 an hour\",\n            \"date\": 1694422084350,\n            \"dateOfPosted\": 1691541122378,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.4642591,\n                    \"lon\": -110.1732522\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cold Lake\",\n                \"formattedAddress\": \"Cold Lake, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Bonnyville No. 87\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cold Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" The Customer Service Representative will provide a high level of customer service by assisting both internal and external customers, primarily face-to-face, supporting their branch and rental needs. The Customer Service Representative will gain knowledge through local training and hands-on experience to provide administrative support, service customers, and act as a rental back-up in a large home city branch or airport location. This role is available as full time.  Opening available at the following branch location 3625 50 STREET COLD LAKE, AB T9M 1K6 This is a full time position that pays $17.25 / hour We offer:  Paid time off Employee discount Retirement savings plan Extended Health Benefits (Medical, Prescrption Drug, Dental and Vision) Life Insurance Training and development Schedule:  Monday-Friday: 8:00am-5:00pm Saturday: 9:00am-12:00pm (Rotating) Responsibilities: Take incoming calls- reservations, rate quotes, general questions and answers, provide information and resolution for customers, other branches, insurance companies, dealerships, repair shops and other vendors  Manage outgoing calls for callback management, A/Rs and miscellaneous calls as assigned  Provide a high level of customer service by assisting customers and assessing their rental needs in person and over the phone  Meet and greet customers in a friendly and timely manner  Provide directions and general assistance  Assist to assess condition of rental upon return  Process returns, check-ins and exit kiosk transactions  Effectively market the company while picking up customers up and/or dropping off customer in a safe and courteous manner and assisting customers as needed  Understand and communicate rental terms and conditions, vehicle features and other services  May sell optional protection products, upgrades, fuel options and other additional equipment  Responsible for notifying Management of any known vehicle problems and any required vehicle maintenance  Clean vehicle interior and exterior by hand or by operating washing equipment when needed  Perform various administrative and basic accounting functions such as: research and billing support tasks, accounts receivables, transfer and key logs, run miscellaneous reports, supply maintenance, process customer billing  Perform miscellaneous and backup duties job-related duties as assigned  Equal Opportunity Employer/Disability/Veterans Qualifications: Must be at least 18 years of age. High school diploma or above required; some college preferred Must have at least 1 year prior customer service, retail, or administrative support experience Must have a valid Class 5 drivers license with no more than 2 moving violations and/or at-fault accidents on driving record in the past 3 years No drug or alcohol related conviction on driving record in the past 5 years Must be authorized to work in Canada and not require work authorization sponsorship by our company for this position now or in the future. \",\n            \"location\": \"Cold Lake, AB\"\n        },\n        {\n            \"id\": \"DAF6D9C70A5235742E5EEEEED7F4F3E0\",\n            \"cityName\": \"Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d008b4ea81dc9e65\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Fortisbc\",\n            \"rowSalary\": \"$21.11 an hour\",\n            \"date\": 1694420875211,\n            \"dateOfPosted\": 1694212606116,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Affiliation: MoveUp Customer Service Employment Status: Unscheduled Part-Time Regular Salary: $21.11 Hourly Workplace Flexibility: No Posting End Date: Open until filled  We’re a Canadian-owned and BC-based energy company taking steps toward a lower-carbon energy future by providing renewable energy, natural gas and electricity to more than 1.2 million customers.  We’re looking for new talent to join us as we transform BC’s energy future. Our diverse team of more than 2,600 employees is committed to a safe and inclusive culture where each of us can connect, belong and grow. Join us and let’s work together for a better BC. Position Overview You live and breathe the values of delivering a world-class customer experience with an empathic demeanor, integrity and respect. A people-person at heart, you put yourself in the shoes of others to gain a better perspective of every situation so you can offer the best possible solutions. You understand that customers contribute to any company's success and take tremendous pride in ensuring every customer is happy with every interaction, so they come away with memorable experiences they can share with others.  As our Customer Service Representative, you’ll put all passion for the customer experience to work and contribute to an environment where customer engagement matters most. In this role, you’ll connect with customers to support their questions, inquiries and concerns through various channels, such as online chat, phone and email. You’ll take charge to resolve customer inquiries with little to no effort from our customers to make their situation easy and worry-free. As a customer yourself, you understand it’s all about our customers and supporting them the right way the first time. In year 1, you will: Develop knowledge and skills in the overall fundamental customer service processes to provide world-class experiences while interacting with our customers. Work to better understand our customer service expectations through specialized processes and channels of communication. Build relationships with peers and leaders through regular interactions. In year 2, you will: Continue to build knowledge, skills and confidence in all customer service processes, including resolving more complex and escalated customer inquiries. Partner with customer service leaders to support and mentor new colleagues. Gain a broader understanding of projects, committees and initiatives through collaboration across the customer service teams and beyond. What it takes: A high school diploma or general educational development. A customer-centric mentality and attitude dedicated to creating memorable and world-class experiences. Excellent verbal and written communications delivered in an understanding and respectful way. A solid multi-tasker who can navigate multiple computer programs to support the work you do with customers. Exceptional problem-solving skills and an ability to ask effective questions to get to the root of any issue and provide the best possible solution. What does it mean to be an Unscheduled Part Time Regular employee? An Unscheduled Part Time Regular employee, or UPTR for short, is hired to fill a part-time position of an ongoing nature while working variable hours. You will work a minimum 4 consecutive hours to a maximum 7.5 consecutive hours in any day and will be scheduled anytime between Monday to Friday, 7am to 8pm based on operational requirements. You are able to submit a standing request for preferred shifts (although shift assignment is based solely on operational requirements). You will normally work a minimum of 37.5 hours bi-weekly and a maximum of 60 hours bi-weekly (ranging from 18.75 to 30 hours per week). You will be eligible for benefits after their completion of 975 hours of accumulated service. Additional Information To view the full job description, click here . This is an office based role that will be required to be on site during scheduled shifts (located at our Willingdon Park office). Application process: If your application is shortlisted, you will receive an eSkills link to complete a Customer Service Assessment. Once the Assessment has been completed, you will receive a separate link to complete a one-way recorded VidCruiter Video Interview. If you are shortlisted past the VidCruiter Video Interview to the last phase of recruitment, you will be scheduled for a 15 minute Teams call with a Team Manager to discuss the role in greater detail. Successful applicants will be required to attend full-time classroom training starting on October 30, 2023, from Monday to Friday and scheduled from 8:00am - 4:00pm. Attendance is MANDATORY during this time. Our engaging workplace offers a wide range of challenging opportunities, while being safe, inclusive and diverse. We offer a competitive salary and benefits package, while supporting life-long career development. We also encourage volunteerism and nourish the need to give back to your community.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"21662E6FE2FE384C3DE01D5DABE6AEFC\",\n            \"cityName\": \"100 Mandalay Dr, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7c102c993cc57472\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Pro Star Immigration Consulting Services Ltd\",\n            \"rowSalary\": \"$15.50–$19.00 an hour\",\n            \"date\": 1694420517158,\n            \"dateOfPosted\": 1694337399247,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:- Provide exceptional customer service to clients via phone, email, and chat- Respond to customer inquiries for immigration and visa, MPNP and resolve issues in a timely and professional manner- Conduct outbound calling campaigns to follow up with customers and gather feedback- Analyze customer needs and recommend appropriate products or servicesRequirements:- Previous experience in a customer service role is preferred- Excellent communication skills, both verbal and written- Strong problem-solving abilities and attention to detail- Ability to multitask and prioritize tasks effectively- Proficient computer skills, including experience with CRM software- Ability to work independently as well as part of a teamIf you are a motivated individual with a passion for providing excellent customer service for visa and immigration , we would love to hear from you. Please apply with your resume and cover letter.Job Type: Full-timeSalary: $15.50-$19.00 per hourBenefits:Flexible scheduleFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededSupplemental pay types:Commission payEducation:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Ability to Commute:Winnipeg, MB R2P 1V8 (preferred)Ability to Relocate:Winnipeg, MB R2P 1V8: Relocate before starting work (preferred)Work Location: In personApplication deadline: 2023-09-20Expected start date: 2023-10-01\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"7F175F636C8464700E53839599214273\",\n            \"cityName\": \"11801 100 Street, Grande Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=34c3a282bd2b1d91\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Luxe Petals Gp\",\n            \"rowSalary\": \"$15.25–$16.00 an hour\",\n            \"date\": 1694420321905,\n            \"dateOfPosted\": 1693554143194,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.1816551,\n                    \"lon\": -118.7818944\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grande Prairie\",\n                \"formattedAddress\": \"96 St, Grande Prairie, AB T8V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grande Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Luxe Petals GP is looking for barista and Sales Associate to join our team!ResponsibilitiesProvide exceptional customer serviceGreet customers and answer questionsProvide accurate information on the availability of flowers and servicesMaintain a clean and inviting environmentAnswer phones and provide general information to customersProcess sales and returnsFollow all safety policies and proceduresPerform other duties as assigned by the managerSkills & Qualifications:Previous experience in customer service or other related fieldsProficiency in basic math skills, including addition, subtraction, multiplication, and divisionBasic knowledge of plants and plant care practices (so you can tell people how great the plants look!)Ability to build rapport with clientsStrong written and verbal communication skillsBasic computer skills, including Microsoft Office (Word, Excel) and sales software like Hotmail or Google Calendars)Must be able to work independently with little supervision. No experience necessary, we will train you!Must be available weekends. Our peak season is April-October. Other options available.We are a family-oriented, amily-oriented, and people-oriented, workplace that offers competitive compensation, full benefits, and an active community of friends and colleagues. If you want to make a difference in the world, come join us at Grande Prairie, AB!Job Type: Part-timeSalary: $15.25-$16.00 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftEvening shiftWeekends as neededSupplemental pay types:Bonus payCommission payOvertime paySigning bonusTipsWork Location: In person\",\n            \"location\": \"Street, Grande Prairie, AB\"\n        },\n        {\n            \"id\": \"4BD6B62E626FD760DBC3DBB4B6ED74B6\",\n            \"cityName\": \"8228 Macleod Trail SE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0dc63264d9c298e5\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Once Upon A Child Calgary - Macleod Trail Location\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694420319486,\n            \"dateOfPosted\": 1692668708075,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.94908909999999,\n                    \"lon\": -114.0708377\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Macleod Trail SE, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you a friendly and outgoing individual who enjoys working in a fun, fast-paced, and team-oriented environment? If so, we have the perfect opportunity for you! We are currently hiring for the position of Customer Service Representative, and we're looking for individuals who are interested in learning how to sort and buy drop-offs, as well as tag and hang merchandise.As a Customer Service Representative, you will be interacting with customers a majority of the day, most of whom are moms and kids! Therefore, we are looking for someone with an energetic and positive attitude. Fluency in English is a must, and you should be able to work on your feet for a full shift and lift a minimum of 30lbs.We offer flexible schedule options, employee discounts, and bonuses! If you're interested in working with us, apply today!We are able to offer the following shifts:8am to 1pm8am to 4pm9:30am to 2:30pm3:30pm to 8:30pm5:30pm to 8:30pm10:30 to 6:30 (Sundays ONLY)Please note - All employees are required to work at least one (1) night shift, one (1) weekend shift each week and attend one (1) mandatory staff meeting held on a Sunday each month.Job Types: Full-time, Part-timePart-time hours: 20 - 40 per weekSalary: $17.00 per hourBenefits:On-site parkingStore discountFlexible Language Requirement:French not requiredShift:Afternoon shiftDay shiftEvening shiftMorning shiftWork setting:Apparel storeWork Location: In person\",\n            \"location\": \"MacLeod Trail SE, Calgary, AB\"\n        },\n        {\n            \"id\": \"0638CAEB4B80582330C6E369628A06DF\",\n            \"cityName\": \"5875 Highway 7, Vaughan, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4332c36acef9f282\",\n            \"jobName\": \"Tanning Customer Service Associate\",\n            \"companyName\": \"Tanning Loft\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694418974652,\n            \"dateOfPosted\": 1694207954486,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are currently looking for a part-time Customer Service Associate.If you are creative, self-motivated, passionate and a natural about sales and social media, then Tanning Loft has a great opportunity for YOU!Required Qualifications & Skills:Experience in a fast-paced service environmentConsistently delivers remarkable customer service and has a genuine passion for qualityBasic computer skills & POS SystemAbility to meet and exceed sales goalsPersonable - the ability to interact with clientsSuperb understanding of social mediaAbility to create engaging, cutting edge online content across a variety of mediumsMotivated, driven, creative and enthusiasticExcellent verbal and written communication skillsAbility to follow a few rulesAbility to uphold professional integrityHonest and reliableMust have day, nights and weekend availability.Job Types: Part-time, PermanentSalary: From $15.50 per hourDay range:Monday to FridayWeekends as neededShift:Day shiftNight shiftApplication question(s):Please provide your current availability.Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"34AF528ABB33B275FC167795996F5C25\",\n            \"cityName\": \"Watson Lake, YT\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b1cfe4b94be918b1\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"Jgv Services Incorporated\",\n            \"rowSalary\": \"$21 an hour\",\n            \"date\": 1694416973987,\n            \"dateOfPosted\": 1694416973813,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 60.06280599999999,\n                    \"lon\": -128.710913\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Watson Lake\",\n                \"formattedAddress\": \"Watson Lake, YT Y0A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Yukon\",\n                \"state_code\": \"YT\",\n                \"postalTown\": null,\n                \"county\": \"Yukon\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Watson Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: EnglishHours: 20 hours per weekEducation: College/CEGEPExperience: 2 years to less than 3 yearsor equivalent experience Work setting Remote location Willing to relocate Business Staff accommodation available Tasks Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Receive and log complaints Receive payments Advise clients on advertising or sales promotion strategies Answer written and oral inquiries Computer and technology knowledge Internet MS Excel MS Outlook MS Windows MS Word MS PowerPoint Quick Books Security and safety Basic security clearance Criminal record check Transportation/travel information Own transportation Valid driver's licence Work conditions and physical capabilities Attention to detail Hand-eye co-ordination Repetitive tasks Tight deadlines Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Judgement Ability to multitask Screening questions Are you willing to relocate for this position? Do you have previous experience in this field of employment? What is the highest level of study you have completed? Financial benefits Bonus Other benefits Learning/training paid by employer\",\n            \"location\": \"Watson Lake, YT\"\n        },\n        {\n            \"id\": \"353023EA2804577EB6A6EDEF2780B183\",\n            \"cityName\": \"875 St James St, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=92c33ba64c1eb39a\",\n            \"jobName\": \"Work From Home Customer Service Representative\",\n            \"companyName\": \"Intouchcx\",\n            \"rowSalary\": \"$14.15–$19.00 an hour\",\n            \"date\": 1694416804194,\n            \"dateOfPosted\": 1693535624670,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8973035,\n                    \"lon\": -97.20034720000001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"St James St, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About IntouchCXIntouchCX is a global leader in customer experience management, digital engagement, and technology solutions. With over 20 years of experience, 18,000+ team members, and campuses around the globe, we obsess about our clients by providing remarkable customer experiences for the world’s most innovative brands.IntouchCX has been recognized as one of the Best Employers for Diversity in 2022 by Forbes and Statista Inc. This recognition comes after IntouchCX was named by Forbes as one of America’s Best Large Employers for 2022, and a Top Employer for New Grads.About the JobWe are currently hiring Inbound Work from Home Customer Service Representatives!Are you a problem solver? Do you like making meaningful connections with people? Are you interested in a rewarding career working with the world’s most exciting brands from the comfort and safety of your own home?Our Work from Home Customer Service Representatives are passionate about delighting customers by making every interaction an unforgettable experience - whether that’s through inbound calls, emails and/or chats. We want people with personality, who love making an impact with every customer interaction.We also want people with drive and ambition - people who want a career, not just a job. Punctuality, performance and positivity will set you up for success!Note: Although it is a Work from Home position, interviews will be done on site. IntouchCX will provide all hardware and equipment necessary.Benefits of Working as a Work from Home Customer Service Representative:Work from home!Flexible schedulesCompetitive salary - $14.15-$19.00/hr (varies depending on program)Industry-leading benefits - Health, Dental, Vision,Amazing career growth opportunitiesWorking as a Work from Home Customer Service Representative, You Will:Assist all customers through inbound calls, emails, and/or chats.Communicate a variety of information to the customer.Be an active listener and help resolve customer inquiries.Provide a meaningful and positive experience with every customer interaction.Learn and retain a thorough working knowledge of all existing and new products and services.Working as a Work from Home Customer Service Representative, You Have:A high school diploma (or equivalent).6 months – 1 year of customer service experience.Great communication skills, both verbal and written.The ability to be consistently ready to work and on time as scheduled.Reliable internet speed and broadband connection.A secure area in the home to work from.The ability to work effectively in a work-at-home setting.The understanding that although this is a Work from Home position,you must be located in Winnipeg, MBAvailability: Full-time (some shifts may depend on availability).Ready to apply? Submit your application and one of our recruiters will reach out via email/phone/text to learn more about you and connect you to this exciting opportunity! If you provide your cell number, you agree to receive automatic recruiting texts from us at that number. Consent is not a condition of employment, and you can opt-out by replying STOP at any time. Message and data rates may apply.IntouchCX provides Equal Employment Opportunities in accordance with all provincial and federal laws. IntouchCX is committed to ensuring equality of opportunity in all aspects of employment and does not discriminate based on protected characteristics.IntouchCX is committed to accommodating persons with disabilities. If you need accommodation at any stage of the application process or want more information on our accommodation policies, please let us know.By signing this application, the applicant consents to IntouchCX collecting, using and retaining his/her personal information for purposes relating to the application process and if hired, the employment relationship.Any and all personal information collected is held in the strictest confidence and in accordance with all applicable Privacy Laws.Job Type: Full-timeSalary: $14.15-$19.00 per hourBenefits:Casual dressDental careExtended health careVision careWork from homeSchedule:Monday to FridayWeekends as neededWork Location: Hybrid remote in Winnipeg, MB R3H 0X2\",\n            \"location\": \"St James St, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"CD4566422D3911FC49E726753C8135D7\",\n            \"cityName\": \"635 Avenue Marshall, Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6e1f63223503d562\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Jet Car Rental\",\n            \"rowSalary\": \"From $24 an hour\",\n            \"date\": 1694416705097,\n            \"dateOfPosted\": 1649285499225,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4503213,\n                    \"lon\": -73.7500486\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval, QC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job descriptionWe are seeking Customer Service Representative to join our team for the weekend shifts! You will be responsible for helping customers by providing product and service information and resolving technical issues.As a Customer Service Representative, you will be responsible for:Qualifying and processing rental contracts with accuracy and detailPersuasively selling optional servicesProcessing customer rental returnsResponding to customer inquiries, providing directions in a courteous and expeditious mannerAdhering to all company policies and procedures.Monitoring fleet availability for reservations and walk-insA commitment to continuous improvement in an ever-changing industryRelated duties as requiredJob Qualifications:Previous car rental experience is required.Ability to work in a fast paced environment with a variety of tasks.Ability to demonstrate professionalism, enthusiasm, and outstanding communication skills.Detail oriented.Flexibility to work weekends.Computer literate.Proficiency in French & English.Valid Drivers license.Description d’emploiNous sommes à la recherche d’un représentant du service à la clientèle pour se joindre à notre équipe pour les quarts de travail de fin de semaine! Vous serez responsable d’aider les clients en fournissant des informations sur les produits et services et en résolvant les problèmes techniques.En tant que représentant du service à la clientèle, vous serez responsable de :Qualification et traitement des contrats de location avec précision et détailVendre de manière convaincante des services optionnelsTraitement des retours de location des clientsRépondre aux demandes des clients, fournir des instructions de manière courtoise et rapideAdhérer à toutes les politiques et procédures de l’entreprise.Surveillance de la disponibilité de la flotte pour les réservations et les walk-insUn engagement envers l’amélioration continue dans une industrie en constante évolutionTâches connexes au besoinQualifications professionnelles:Une expérience préalable de la location de voiture est requise.Capacité à travailler dans un environnement au rythme rapide avec une variété de tâches.Capacité à faire preuve de professionnalisme, d’enthousiasme et de compétences exceptionnelles en communication.Souci du détail.Flexibilité pour travailler les week-ends.Connaissance de l’informatique.Maîtrise de l’Français et de l’anglais.Permis de conduire valide.Job Type: Part-timePart-time hours: 16-20 per weekSalary: From $24.00 per hourSchedule:Weekend availabilitySupplemental pay types:Commission payAbility to commute/relocate:Dorval, QC H9P1E1: reliably commute or plan to relocate before starting work (preferred)Education:Secondary School (preferred)Experience:Automotive Rental Occupations: 1 year (required)Driving: 2 years (preferred)Language:English & French (required)Expected start date: 2022-04-11\",\n            \"location\": \"Dorval, QC\"\n        },\n        {\n            \"id\": \"AA78FE5005D16144CFB494D647BA1B14\",\n            \"cityName\": \"27 Monarch Rd, Guelph, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0c044f09008c48ad\",\n            \"jobName\": \"Technical Customer Service Representative\",\n            \"companyName\": \"A.R. Thomson Engineered Solutions Inc.\",\n            \"rowSalary\": \"$50,000–$60,000 a year\",\n            \"date\": 1694416660378,\n            \"dateOfPosted\": 1693531269870,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.54900240000001,\n                    \"lon\": -80.3067165\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Guelph\",\n                \"formattedAddress\": \"Monarch Rd, Guelph, ON N0B, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Wellington County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Guelph\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 50000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    50000.0\n                ],\n                \"range\": {\n                    \"gte\": 50000.0,\n                    \"gt\": null,\n                    \"lte\": 50000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full-time positionReports to: Product ManagerSudbury International was established in 1975 and has earned a vibrant reputation for producing Flue Duct expansion joints for a wide range of industries including specialties in Gas Turbine exhausts. Sudbury International is a division of A.R. Thomson Engineered Solutions Inc., a Canadian-owned business with more than 55 years of experience as one of the largest manufacturers and distributors of fluid containment and control products in North America with branches located across Canada. Our Guelph location specializes in manufacturing expansion joints, flexible hose assemblies and valve repair and acts as the central hub for technical and sales support for our Eastern Canada operations.General Accountability:Review customer bid packages and source the raw materials and processes required to meet bid package specifications for manufactured partsDemonstrate a high level of competence and accuracy when creating part numbers, descriptions, BOM’s, routings, costing/pricing conditions, etc.Provide customers with accurate information on the company’s products and servicesRespond to customer requests, displaying a sense of enthusiasm and urgency appropriate to customer expectations. Proactively follow up on quotations and customer information requests, directly interacting with customersQualifications & Requirements:Minimum 2 years of industry-related experience in the industrial supply and manufacturing fieldsAn understanding of drawing standards, tolerances and Bill of Materials (BOM)Experience using Microsoft Office products.Knowledge of applicable industry codes and standards such as ASME, CSA, ISO, etc. would be an asset.Strong technical, oral and written communication, interpersonal and negotiation skillsDemonstrate ability to solve problems and adapt to changing prioritiesPosses a professional, positive, team-oriented attitudeWe thank all candidates; however, only those selected for an interview will be contacted.Health & Safety Commitment:All employees are responsible to work in a manner that safeguards themselves, their co-workers, and other persons not engaged in the work but present on our site and the environment. Employees have three basic rights which are protected by law: (1) the Right to Know what hazards are present at their worksite; (2) the Right to Participate in keeping their worksite healthy and safe, and (3) the Right to Refuse work that they believe to be dangerous to themselves or others. Our 3 fundamental principles within the ARTES safety program are (1) Commitment to maintaining a safe and healthy workplace; (2) Compliance with Company Health & Safety requirements and OHS legislation; (3) Accountability for employees’ Health & Safety responsibilities to themselves and others.Salary & Benefits:Very competitive salaryHealth Benefits include Dental & Vision care, life insurance, extended health care, long-term disability, and an employee assistance programCompany Pension planPaid time offWork anniversaries recognitionCompany eventsEndless growing opportunities!Job Types: Full-time, PermanentSalary: $50,000.00-$60,000.00 per yearBenefits:Company pensionDental careDisability insuranceEmployee assistance programExtended health careOn-site parkingPaid time offProfit sharingTuition reimbursementVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayOn callWeekends as neededAbility to commute/relocate:Unit 6 Guelph, On N1K 1N4: reliably commute or plan to relocate before starting work (required)Language:English (required)Work Location: In person\",\n            \"location\": \"Monarch Rd, Guelph, ON\"\n        },\n        {\n            \"id\": \"A63FBFD357CD918B87FEC5E8A42A8F28\",\n            \"cityName\": \"109 McCaul Street, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9f85c6c65251c515\",\n            \"jobName\": \"Dispatcher/Customer Service\",\n            \"companyName\": \"Coffee Exchange\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694415285548,\n            \"dateOfPosted\": 1694415285345,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6548028,\n                    \"lon\": -79.3916383\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"McCaul St, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:- Handle and organize merchandise in a retail environment- Assist with stocking shelves and maintaining inventory levels- Ensure products are properly labeled and priced- Provide excellent customer service by answering questions and assisting with inquiries- Maintain cleanliness and organization of the store, including regular sanitization of high-touch areas- Assist with bussing tables and cleaning in a kitchen settingExperience:- Basic math skills, including the ability to perform retail math calculations- Previous experience in a retail or customer service role is preferred- Familiarity with kitchen operations and sanitation practices is a plusNote: This job description is not intended to be all-inclusive. The employee may be required to perform other duties as assigned by their supervisor.Job Types: Part-time, Full-timePart-time hours: 35 per weekSalary: From $15.50 per hourSchedule:Monday to FridaySupplemental pay types:TipsAbility to commute/relocate:Toronto, ON M5T 3K5: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Language:English (preferred)Licence/Certification:Food Handler Certification (required)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"McCaul Street, Toronto, ON\"\n        },\n        {\n            \"id\": \"2489CF70C53EC3F93938FD67F34F5C3F\",\n            \"cityName\": \"50 Carroll Street, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c98a76dca49fc784\",\n            \"jobName\": \"Consumer Customer Service Associate (Bilingual)\",\n            \"companyName\": \"Ecco Shoes Canada, Inc.\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694415115412,\n            \"dateOfPosted\": 1671056359014,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6600512,\n                    \"lon\": -79.35320519999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Carroll St, Toronto, ON M4M, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Consumer Customer Service Associate (Bilingual) will provide comprehensive service to our consumer customer base on the phone and through e-mail. Professionally handle incoming requests from customers and ensure that issues are resolved both promptly and thoroughly.As our Consumer Customer Service Associate, your responsibilities will include:Contribute to the future of ECCO USA by providing the highest level of customer service.Handle incoming calls and emails.Provide customers with product and order information.Show flexibility, creativity and empathy when resolving customer issues and communicating policy.Offer options for fulfillment of orders or resolution of issues.Appropriately suggest alternative products.Inform customers of new products.Talk up promotions and sales.Learn and develop personal skill levels in regards to SAP, Internet systems and the footwear industry.Communicate and coordinate with all internal departments for smooth processing of all transactions.If you have...Bilingual - excellent written and oral communication skills in both French and English.Post-Secondary diploma or degree.1+ years of experience in a customer service role.Ability to communicate clearly, concisely and professionally (both verbally and written).Ability to prioritize work and adjust priorities as needed.Superior organization and follow-up skills.Proven ability to work under pressure while maintaining composure, patience and understanding in dealing with a variety of customers.…we want to hear from you!Imagining yourself at ECCO?Check out these exciting opportunities, on our global career at https://enter.ecco.com/CREATE THE FOOTPRINTS OF TOMORROWAt ECCO, you become part of a meaningful, developing and multicultural workplace. You join a global family of more than 25,000 people who are proud to create the footprints of tomorrow.Headquartered in Denmark, we are a family-owned company that offers international opportunities. Our offices and facilities have an informal culture and relaxed dress code – our shoe code is slightly stricter.Join us and we guarantee lifelong learning – the speed of progress is up to you. So, if you’re curious, passionate and ready to make an impact, you’ll fit right in.Job Type: Full-timeSalary: $18.00-$22.00 per hourSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Toronto, ON: reliably commute or plan to relocate before starting work (required)\",\n            \"location\": \"Carroll Street, Toronto, ON\"\n        },\n        {\n            \"id\": \"4B8003871B049BFB6246827D3D3603CE\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ad848f45dc8b123f\",\n            \"jobName\": \"Customer Service Coordinator\",\n            \"companyName\": \"Truckker\",\n            \"rowSalary\": \"$19–$23 an hour\",\n            \"date\": 1694414838538,\n            \"dateOfPosted\": 1694414838355,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job description _ Hiring Customer service/Receptionist- Great place to work- Starts Asap! _ Job# 3099 Link: Apply here or Call/text at ext 30 Job Description: Answer/route phone calls and serve customers Take orders Utilize MS Office and manage emails Manage/file paperwork Other tasks assigned Shift 8:00 AM-4:30 PM Job Requirements Experience in receptionist/customer service role (supplier/construction environment) Proficient in MS Office tools Benefits: Pension plan with employee and employer contribution (after one year) Group insurance plan, life, dental, prescription, and many other services. 2 weeks vacations, 3 weeks after 5 years of employment, 4 weeks after 10 years of employment About Truckker: Truckker, a TPI company has 35+ years of experience in the transportation, logistics, and supply chain industries, giving drivers unparalleled access to a network of quality carriers. Truckker offers carriers online, on-demand access to a growing database of drivers pre-vetted for safety, eligibility, and availability. With an easy application process and automated \\\"smart\\\" driver matching, carriers can successfully connect with drivers in real-time and enjoy direct communication. INDTJ Job Type: Full-time Salary: $19.00-$23.00 per hour Benefits: Dental care Extended health care Life insurance Flexible Language Requirement: French not required Schedule: 8 hour shift Day shift Monday to Friday Overtime Supplemental pay types: Overtime pay Ability to commute/relocate: Mississauga, ON: reliably commute or plan to relocate before starting work (required) Education: Secondary School (preferred) Experience: Front desk: 2 year (required) Administrative experience: 2 year (required) Language: Mandarin (preferred) Shift availability: Day Shift (preferred) Work Location: In person Job Type: Full-time Salary: $19.00-$23.00 per hour Benefits: Dental care Extended health care Life insurance Paid time off Flexible Language Requirement: English not required Schedule: Monday to Friday Ability to commute/relocate: Mississauga, ON: reliably commute or plan to relocate before starting work (required) Education: Secondary School (preferred) Experience: Sales administration: 1 year (required) Customer service: 3 years (required) Shift availability: Day Shift (preferred) Work Location: In person\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"8079E8031E2860F9946DC0A0EB0677DC\",\n            \"cityName\": \"1441 Ellice Ave, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2cf886847685b1c0\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Booster Juice\",\n            \"rowSalary\": \"From $13.50 an hour\",\n            \"date\": 1694413400295,\n            \"dateOfPosted\": 1675891936730,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8935764,\n                    \"lon\": -97.1794978\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Ellice Ave, Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Booster Juice is Canada’s leading smoothie operator and is looking for an energetic individual passionate about customer service and a general love for health and wellness.What You Need to KnowLocation: Booster Juice 1441 Ellice AvePart-time positions availableWe Offer: Free Smoothie , flexible schedules and MORE!!Job RequirementsProvide \\\"Positively Outrageously Customer Service\\\".Welcome and connect with every customer.Discover customer needs and guide customer to selection.Respond to customer needs and say thank you to every customer.Provide quality beverages and food items consistently for all customers.Prepare Smoothies, food and other beverages to Booster Juice standards.Follow health, safety and sanitation guidelines for all products.Maintain quality store operations.Follow store policy and procedures for operational flow at each station.Follow standards for merchandising, stocking, rotating and storing products.Perform cleaning tasks in accordance with the daily checklists and cleaning standards.Present oneself professionally and demonstrate clear communication skills.Contribute to store profitability.Follow cash handling procedures and cash register policies.Follow inventory stocking and recording guidelines.Contribute to store goals for increasing sales and improving profits.What We’re Looking ForPossess an outgoing, enthusiastic and friendly attitude.Ability to work under pressure and in a fast-paced environment.Ability to identify and use resources to improve overall operations.High attention to detail.Teamwork and interpersonal skills.Multi-tasking skills.Willingness to learn.Effective listening, written and verbal communication skills.Effective organizing and planning skills.FOODSAFE certification is a plusWe thank all applicants, however only selected candidates will be contacted for interviewJob Types: Part-time, Permanent, CasualPart-time hours: 5-35 per weekSalary: From $13.50 per hourSchedule:Day shiftMonday to FridayNight shiftWeekend availabilityWork Location: In personApplication deadline: 2023-02-15Expected start date: 2023-02-17\",\n            \"location\": \"Ellice Street, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"A25C128D330431E41E29FDDDB0306781\",\n            \"cityName\": \"635 Grand Av W, Chatham-Kent, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=949d2ca034eadac5\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Macro Foods Inc.\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694413384477,\n            \"dateOfPosted\": 1692722658351,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.40032129999999,\n                    \"lon\": -82.2069641\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Chatham\",\n                \"formattedAddress\": \"Grand Ave W, Chatham, ON N7L, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Chatham-Kent\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Chatham\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Macro Foods is a small business in Chatham, ON. Our goal is to Serve the community fresh, healthy, chef prepared meals. We also serve protein shakes and sell supplements and healthy snacks. Customers can walk in and pick up food on the go, or order online direct to their homes anywhere in Ontario!.Our customer service department is seeking an experienced, energetic and capable individual to join our busy team. The successful candidate will be responsible for greeting all customers and explaining our products, using company policy and procedure to solve customer's problems and learning specific questions about products and services in order to deliver accurate information back to customers. We're seeking a self-motivated and organized individual with strong customer service skills who is also an effective multi-tasker. General health knowledge/healthy eating is a bonus.Responsibilities:Greet clients and other visitors in person.Answer customers' questions.Assist customers who need special assistance.Deal with angry or rude visitors.Cash handling and checking clients out.Answer the phone, take messages, and transfer calls to other staff as necessary.Enter information about clients and other visitors into the computer system.Must complete safe food handlers certificate within first 2 weeks of employment.Schedule:Opening - 11 AM (10am Wednesdays) to 230 PMClosing - 230PM to 6PMWeekend Shifts - 12PM to 5PMMinimum Availability Required of 6 shifts per above.Example:Monday all day - 2 shiftsTuesday offWed close - 1 shiftThursday open - 1 shiftFriday offSaturday and Sunday any time - 2 shiftsCash Handling, Customer Service, Shake Bar, Cleaning, Assisting Customers, Health KnowledgeJob Type: Part-timePart-time hours: 20 per weekSalary: From $15.50 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:TipsApplication question(s):Do you meet the minimum of 6 shift availability required for work?Experience:Customer service: 2 years (preferred)Work Location: In personExpected start date: 2023-09-01\",\n            \"location\": \"Grand Ave W, Chatham-Kent, ON\"\n        },\n        {\n            \"id\": \"DD250D11CC8188925896A6CA7D49F92F\",\n            \"cityName\": \"Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=acf919d9732b7aad\",\n            \"jobName\": \"Customer Service/ Pizza Maker\",\n            \"companyName\": \"Pizza 64\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694413260882,\n            \"dateOfPosted\": 1688810889438,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8879519,\n                    \"lon\": -119.4960106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Kelowna, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"-Prepare and store Pizza doughs and pizza sauce- Quality check of Pizzas before served to customer-Ensure all work areas and prep areas are cleaned and sanitized in routine-Handle customer complaints-Greet customers and handle cash/credit/debit transactionsJob Types: Full-time, Part-time, PermanentSalary: $16.75 per hourWork Location: In person\",\n            \"location\": \"Kelowna, BC\"\n        },\n        {\n            \"id\": \"4EE9C670827E94D5B594CA82DB018D11\",\n            \"cityName\": \"Saskatoon, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=494eaf90af5a6173\",\n            \"jobName\": \"Customer Service Representative Supervisor\",\n            \"companyName\": \"Biktrix Enterprises Inc\",\n            \"rowSalary\": \"$26.70 an hour\",\n            \"date\": 1694413198594,\n            \"dateOfPosted\": 1692714701455,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.157902,\n                    \"lon\": -106.6701577\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saskatoon\",\n                \"formattedAddress\": \"Saskatoon, SK, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saskatoon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 27.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    27.0\n                ],\n                \"range\": {\n                    \"gte\": 27.0,\n                    \"gt\": null,\n                    \"lte\": 27.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College/CEGEPExperience: 1 year to less than 2 yearsTasks Conduct performance reviews Perform same duties as workers supervised Co-ordinate, assign and review work Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Examine and verify accuracy of work and authorize routine deposits and withdrawals Identify training needs and train workers in job duties and company policies Requisition materials and supplies Resolve work-related problems and prepare and submit progress and other reports Work conditions and physical capabilities Attention to detail Personal suitability Client focus Organized Reliability Team player Screening questions Are you currently legally able to work in Canada? Do you have previous experience in this field of employment?Work Term: PermanentWork Language: EnglishHours: 30 hours per week\",\n            \"location\": \"Saskatoon, SK\"\n        },\n        {\n            \"id\": \"20B901BA45DF8F928F555F1CE89ADCA1\",\n            \"cityName\": \"6935 Buller Av, Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d0ac35abd01d60cc\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Nixon Automotive Bmw Service Specialists\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694410555799,\n            \"dateOfPosted\": 1690539013261,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.21389809999999,\n                    \"lon\": -122.9775055\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Buller Ave, Burnaby, BC V5J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Nixon Automotive BMW Service Specialists are looking for and outgoing and friendly individual to help create and maintain a friendly and hospitable environment for customers. The right candidate will maintain a positive attitude, have great listening skills, organization, multitasking skills, and is efficient.Tasks and duties overview:Answering phone callsTaking messagesTransferring callsScheduling appointmentsBlocking telemarketer callsGreeting customersChecking in vehicles for serviceVehicle walk aroundTagging keysInforming service advisor of vehicle arrivalAnswering emailsForwarding emails and messagesFollow up emailsChecking overnight drop boxReturning missed callsMaintaining printout suppliesSigning for deliveriesDelivery order data entryDispersing deliveries and mailAppointment reminders phone /emailManaging parking lotInforming customer of vehicle readinessTracking vehicle deliveryCustomer shuttle when neededCompletion of Secondary EducationTraining in customer service and experience recommended.Automotive general knowledge.Drivers license and confident driving skills with manual and automatic transmissions.Job Type: Full-timeSalary: From $20.00 per hourBenefits:Dental careExtended health careLife insuranceFlexible Language Requirement:French not requiredSchedule:Day shiftMonday to FridaySupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Buller Av, Burnaby, BC\"\n        },\n        {\n            \"id\": \"0EC9F29C1A5C7EB4453D9F2EAF7DE8CC\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d323be9ef7057613\",\n            \"jobName\": \"Call Center Representative\",\n            \"companyName\": \"Bloom Sales Partners\",\n            \"rowSalary\": \"$20–$21 an hour\",\n            \"date\": 1694409960712,\n            \"dateOfPosted\": 1694409960543,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are searching for a polite, professional Call Center Representative to work closely with other team members to provide outstanding service to our customers by answering questions, handling complaints, and troubleshooting problems with our products and services. The Call Center Representative may handle a high volume of inbound or outbound calls or both and should seek to create a positive experience for each caller. They will listen to clients to understand the reason for their call, address all questions or complaints, and provide an accurate and efficient response.  To be a successful Call Center Representative, you should be customer-focused, detail oriented, and efficient. You should be polite, reliable, knowledgeable, and adaptable.  Responsibilities Answering or making calls to clients to learn about and address their needs, complaints, or other issues with products or services.Responding efficiently and accurately to callers, explaining possible solutions, and ensuring that clients feel supported and valued.Engaging in active listening with callers, confirming or clarifying information and diffusing angry clients, as needed.Building lasting relationships with clients and other call centre team members based on trust and reliability.Utilizing software, databases, scripts, and tools appropriately.Understanding and striving to meet or exceed call centre metrics while providing excellent consistent customer service.Making sales or recommendations for products or services that may better suit client needs.Taking part in training and other learning opportunities to expand knowledge of company and position.Adhering to all company policies and procedures. Requirements High School Diploma or equivalent.More education or experience may be preferred.Exceptional customer service, active listening, and verbal and written communication skills, professional phone voice.Understanding of company products, services, and policies.Proficiency with computers, especially with CRM software, and strong typing skills.Ability to ask prying questions and diffuse tense situations.Strong time management and decision making skills.Adaptability and accountability.Fluency in multiple languages may be desired.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"827F234FB0A76683D5B5904D08F36D74\",\n            \"cityName\": \"Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8bee26481abe04e6\",\n            \"jobName\": \"Customer Service Representative - 1 Year Fixed Term Contract\",\n            \"companyName\": \"Waste Connections Of Canada\",\n            \"rowSalary\": \"$55,000 a year\",\n            \"date\": 1694409887594,\n            \"dateOfPosted\": 1694409887408,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.798329,\n                    \"lon\": -79.5079073\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Concord, Vaughan, ON L4K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 55000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    55000.0\n                ],\n                \"range\": {\n                    \"gte\": 55000.0,\n                    \"gt\": null,\n                    \"lte\": 55000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"aste Connections of Canada is a leading non-hazardous solid waste management in North America. We are looking for a SAFETY inclined, energetic, autonomous, and proactive team player who can make a difference in his/her team and community.This is an onsite position We have an immediate opening for a full-time Data Entry/CSR at our Vaughan, ON district.Address: 650 Creditstone Rd Vaughan, ONKey tasks:As a data entry clerk, you will enter new sales material as well as customer terminations and service changesYou will maintain sales spreadsheets and pdf files related to the sales teamRespond to customer inquiries via phone or email for questions related to waste and recycling services, including scheduling and pick upAnalyze account activity and suggest opportunities for service improvements to the customerMaintain appropriate files and documentation, in accordance with company policy and internal controlsCommunicates with customers to determine driver needsRequirements:2-3 years of customer service/office admin experienceHigh-volume call center or inbound calling experiencePleasant demeanor over the phone and emailsExcellent time management and prioritization skillsStrong working knowledge of Microsoft Office, TRUX an assetStrong written and oral communication skillsCritical and logical thinking skillsWe are a busy, but fun place to work. There will be flurry of activity every day, but with your speedy data entry and proficient Microsoft Office skills, you will be able to handle this role with ease.Come join a team environment with colleagues who embrace a \\\"work hard, play harder\\\" culture. You'll also be associating yourself with a company that likes to lead by example through a strong presence in our local communities, charitable giving, sustainability initiatives, and more.Waste Connections of Canada/Enviro Connexions is an Equal Opportunity EmployerJob Type: Full-timeSalary: $55,000.00 per yearBenefits:Dental carePaid time offSchedule:Monday to FridayAbility to commute/relocate:Concord, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Concord, ON\"\n        },\n        {\n            \"id\": \"565BD8534D6F078C1F00A45FCC63ECDA\",\n            \"cityName\": \"14200 Green Timbers Way, Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d0913d02262ae7e5\",\n            \"jobName\": \"Customer Service / Help Desk Operator\",\n            \"companyName\": \"Bouygues Energies & Services\",\n            \"rowSalary\": \"$25.99 an hour\",\n            \"date\": 1694409648964,\n            \"dateOfPosted\": 1694409648773,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1796279,\n                    \"lon\": -122.8306921\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Green Timbers Way, Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 26.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    26.0\n                ],\n                \"range\": {\n                    \"gte\": 26.0,\n                    \"gt\": null,\n                    \"lte\": 26.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Bouygues Energies & Services, a leading provider of facility management services across Canada, is seeking casual Customer Service/ Help Desk Operators to work at the RCMP Divisional Headquarters located in North Surrey, BC. The facility is a state-of-the-art, 35-acre multi-building complex that has won several awards.  Reporting to the Help Desk Supervisor, the duties of the Help Desk Operator are to provide the first point of contact between our company and our client, communicating politely and professionally while following procedures to respond to customer inquiries. As a casual Help Desk Operator, would not have set work shifts but would be asked to fill work shifts at various times and days based on your availability. Why work with us? Aside from earning a competitive hourly wage of $25.99 per hour, plus shift premiums, employees who are working more than 20 hours per week will receive excellent health and dental benefits that are 100% paid by us. You will be eligible for sick leave, short and long-term disability benefits. The Company also offers an attractive group Registered Retirement Savings Plan (RRSP) and will match up to 5% of your salary. These benefits, and annual increases to your rate of pay, are detailed in the Collective Bargaining Agreement (CBA).  Please note that individuals working at this location must obtain a high-level government Security Clearance that may take several months to process. For this, you must have resided in Canada for at least five years and have no criminal record. DUTIES & RESPONSIBILITIES:Receiving inquiries via phone calls, e-mails, and other channels and accurately logging them in the Maximo Support System. Determining and assigning type and priority of requests to ensure the work goes to the appropriate trade with the appropriate priority level, knowing when to escalate for immediate attention or supervisor intervention. Facilitating the planned maintenance program by printing off job dockets and returning to the system when complete. Communicating effectively with Management regarding emergency situations. Learning and maintaining the knowledge of contractual obligations and be able to interpret and explain operational policies and procedures to the client. Assisting in the preparation of reports and documents as required, maintaining confidentiality at all times. KEY REQUIREMENTS Have previous customer service or call centre experience and be able to deal with inquiries in a calm, courteous, and effective manner. Have previous experience working with a computerized maintenance management system, preferably Maximo. Have strong oral and written communication skills. The ability to speak French fluently will be considered an asset. Have excellent multi-tasking and organizational skills. Be proficient in the use of Microsoft Office. Have a strong sense of confidentiality. The selected candidate will be required to join the Union which is Public Private Workers Canada (PPWC). To learn more about Bouygues Canada, visit https://www.bouygues-es.ca/Other details: Job Family New Pay Type Hourly Hiring Rate $25.99 Travel Required No\",\n            \"location\": \"Green Timbers Way, Surrey, BC\"\n        },\n        {\n            \"id\": \"7C4B841FC91F86221BBEE7DD35281953\",\n            \"cityName\": \"Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a9f81765279d2824\",\n            \"jobName\": \"Customer Service Representative, Victoria\",\n            \"companyName\": \"Algaecal\",\n            \"rowSalary\": \"$48,000–$51,000 a year\",\n            \"date\": 1694409471411,\n            \"dateOfPosted\": 1693529688287,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4284207,\n                    \"lon\": -123.3656444\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Career with a heart! If you like helping people, and you want to feel supported in your work –– this is the opportunity for you. Every day, concerned people call the AlgaeCal helpline. They’ve just had bad news about their bones – and they’re scared they might break at any moment. But after talking with YOU, their fear will melt away. We call our Customer Care Representatives – Bone Health Consultants – and a typical day might include: Acting as a knowledge base for customers inquiries with respect to our products and their bone healthActively listening to customers and providing them with everything they need to make an informed decision about AlgaeCal.Supporting our customers through a variety of mediums (email, phone).Processing orders and returns for customers.Helping customers understand the results of their DEXA bone scans.Updating the records of customer interactions, processing customer accounts, and filing documents. So yes, you’ll need to enjoy administrative tasks to thrive in this role.But most importantly, setting our customers up for MAXIMUM SUCCESSThis opportunity is tailor-made for you if: You’re highly motivated to work at home. You’ve got a solid customer service background. You are passionate about natural health. You are an expert at building a rapport with customers and devoted to helping people find that aha moment – where they go from despair to hope. You’re organized. You’re humble. You think critically and creatively. You love to support and inspire others. You don’t just accept feedback – you WANT feedback, because you’re hungry to be better than you were yesterday. You’re also a brilliant multi-tasker who can effortlessly shift between a variety of priorities. So if you want to work with some of the nicest people you’ll ever meet. And you want to feel good about making a difference in the world –– all while learning about natural health and working in a well organized and supportive workplace –– send us your resume. And BTW… some of our senior executives started out in this role –– so if you’ve got the talent, there’s no telling where this job might take you :) To best service our clients, our Customer Success Centre is open 7 days per week. Work schedules are 5 consecutive days, which include 1 weekend day. Successful applicants must be willing to work a Saturday or a Sunday, each week. We won’t ask you to work both weekend days, but ya need to be available for one! Example shift rotation: Sunday to Thursday or Tuesday to Saturday. Other Goodies$48,000 starting salary with the opportunity to increase rapidly as training targets are met.AlgaeCal Healthcare Plan (Premiums Covered 100%!), which you're eligible to sign up for after three months of employment.Monthly lunches with your co-workers, coffee catch ups, and an informal coaching programme.Supported professional development and continued learning through training and coaching.Flexible Stat Holidays with the option to bank days for later use.Once you’ve been with us for 3 months you’ll get $200 to spend on whatever you want.You should know this… AlgaeCal is a hyper-growth company, which means that the role is always evolving as the company grows. We are not a typical ‘transactional’ thinking company. We are a heart-based company where people come first. In order to be successful here, you will need to have this mindset, work smart, hard, and embrace everything that is offered. If this sounds like a position for you, please respond to this advertisement with your resume and cover letter. This is an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your carefully written cover letter. Applications submitted without a resume and cover letter will be unsuccessful. Please, read carefully: 1. Write a cover letter addressing: 1. Why you're the best Customer Service Representative for this role. Give quantifiable examples of related achievements. 2. Describe why you fit perfectly with our values. Read them here: http://shorturl.at/lptFT 3. What's the toughest challenge you’ve ever overcome in your life? How did you overcome it? 4. What are the last three books you’ve read? 5. What do you do for fun? 6. Explain what you’re doing now for a job:If you don’t have one, explain why.If you have one, explain why you’re looking elsewhere.2. Upload your cover letter and resume: 1. Ensure that your cover letter and resume are saved and sent as one file. Click the “Apply Now” button on this page and upload your (1) cover letter (2) resume. *Important* AlgaeCal isn’t a boring run-of-the-mill company. So some of the questions in your online application might feel out of the ordinary. These questions are an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your answers. For more information about us, please visit our website. #INDLP\",\n            \"location\": \"Victoria, BC\"\n        },\n        {\n            \"id\": \"07D86D745E8DAC02690D63194E87F3CE\",\n            \"cityName\": \"50 Carroll Street, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=963e3340a834781e\",\n            \"jobName\": \"Wholesale Customer Service Representative (Bilingual)\",\n            \"companyName\": \"Ecco Shoes Canada, Inc.\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694407836674,\n            \"dateOfPosted\": 1667596866402,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6600512,\n                    \"lon\": -79.35320519999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Carroll St, Toronto, ON M4M, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Wholesale Customer Service Representative (Bilingual) will provide comprehensive service to our wholesale account customers, field sales team, and internal team. Create the best possible experience for our internal and external customers.As our Wholesale Customer Service Representative, your responsibilities will include:Manage customer files, order entry, maintenance of all orders for assigned territory, and return authorization processing with strict adherence to company policies, pricing, and programs.Responsible for building allocation fill rate and releasing orders to Distribution for shipping within customer start ship/cancel date windows.Answer inbound and make outbound calls with the highest level of professionalism and courtesy; ensure maximum customer satisfaction by using empathy, attention to detail, and accurate relay of information; consistently going above and beyond with a customer-first mindset.Communicate with Sales team representatives for assigned territory and/or accounts; provide open order reports at a pre-discussed cadence to ensure maximum shipping capability and minimum cancellations/past-cancel orders.Partner with Sales management team member of assigned accounts to address and prevent wrong pricing.Create and distribute weekly and monthly reports to Sales team and Senior Management.Ensure assigned back-up is trained and fully functional for instances of time out of the office.Assist with on-boarding of new hires and training documentation of Customer Service processes and procedures.Consistently provide accurate and timely information and follow through.Learn and develop personal skill levels in regards to SAP, EDI, and the footwear industry.Communicate and coordinate with all internal departments for smooth processing of all transactions.Troubleshoot and/or bring problems/situations to the attention of the department managers, and resolve internal issues for the common good.If you have…Bilingual - excellent written and oral communication skills in both French and English.Post-Secondary diploma or degree.3+ years in a customer service role.Proficiency with MS Office products, particularly Excel.Proficiency with order management platforms, SAP preferred.Ability to work under pressure and meet tight deadlines when necessary.Ability to communicate clearly, concisely and professionally (both verbally and written).Ability to prioritize work and adjust priorities as needed.Superior organization and follow-up skills.Ability to travel up to 5%, both domestic and internationally.…we want to hear from you!Imagining yourself at ECCO?Review this position and other US jobs at www.eccousacareers.comFor international opportunities, please access our global career site at https://enter.ecco.com/CREATE THE FOOTPRINTS OF TOMORROWAt ECCO, you become part of a meaningful, developing and multicultural workplace. You join a global family of more than 25,000 people who are proud to create the footprints of tomorrow.Headquartered in Denmark, we are a family-owned company that offers international opportunities. Our offices and facilities have an informal culture and relaxed dress code – our shoe code is slightly stricter.Join us and we guarantee lifelong learning – the speed of progress is up to you. So, if you’re curious, passionate and ready to make an impact, you’ll fit right in.Job Type: Full-timeSalary: $16.00-$20.00 per hourSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Toronto, ON: reliably commute or plan to relocate before starting work (required)\",\n            \"location\": \"Carroll Street, Toronto, ON\"\n        },\n        {\n            \"id\": \"87DEBE0C7B98D81CAE00143D18F6C007\",\n            \"cityName\": \"Saskatoon, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a646eeab4871d3de\",\n            \"jobName\": \"Customer Service Representative, Saskatoon\",\n            \"companyName\": \"Algaecal\",\n            \"rowSalary\": \"$48,000–$51,000 a year\",\n            \"date\": 1694407685544,\n            \"dateOfPosted\": 1693529524328,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.157902,\n                    \"lon\": -106.6701577\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saskatoon\",\n                \"formattedAddress\": \"Saskatoon, SK, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Saskatchewan\",\n                \"state_code\": \"SK\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saskatoon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Career with a heart! If you like helping people, and you want to feel supported in your work –– this is the opportunity for you. Every day, concerned people call the AlgaeCal helpline. They’ve just had bad news about their bones – and they’re scared they might break at any moment. But after talking with YOU, their fear will melt away.We call our Customer Care Representatives – Bone Health Consultants – and a typical day might include: Acting as a knowledge base for customers inquiries with respect to our products and their bone healthActively listening to customers and providing them with everything they need to make an informed decision about AlgaeCal.Supporting our customers through a variety of mediums (email, phone).Processing orders and returns for customers.Helping customers understand the results of their DEXA bone scans.Updating the records of customer interactions, processing customer accounts, and filing documents. So yes, you’ll need to enjoy administrative tasks to thrive in this role.But most importantly, setting our customers up for MAXIMUM SUCCESSThis opportunity is tailor-made for you if:You’re highly motivated to work at home. You’ve got a solid customer service background. You are passionate about natural health. You are an expert at building a rapport with customers and devoted to helping people find that aha moment – where they go from despair to hope. You’re organized. You’re humble. You think critically and creatively. You love to support and inspire others. You don’t just accept feedback – you WANT feedback, because you’re hungry to be better than you were yesterday. You’re also a brilliant multi-tasker who can effortlessly shift between a variety of priorities.So if you want to work with some of the nicest people you’ll ever meet. And you want to feel good about making a difference in the world –– all while learning about natural health and working in a well organized and supportive workplace –– send us your resume. And BTW… some of our senior executives started out in this role –– so if you’ve got the talent, there’s no telling where this job might take you :) To best service our clients, our Customer Success Centre is open 7 days per week. Work schedules are 5 consecutive days, which include 1 weekend day. Successful applicants must be willing to work a Saturday or a Sunday, each week. We won’t ask you to work both weekend days, but ya need to be available for one! Example shift rotation: Sunday to Thursday or Tuesday to Saturday. Other Goodies$48,000 starting salary with the opportunity to increase rapidly as training targets are met.AlgaeCal Healthcare Plan (Premiums Covered 100%!), which you're eligible to sign up for after three months of employment.Monthly lunches with your co-workers, coffee catch ups, and an informal coaching programme.Supported professional development and continued learning through training and coaching.Flexible Stat Holidays with the option to bank days for later use.Once you’ve been with us for 3 months you’ll get $200 to spend on whatever you want.You should know this… AlgaeCal is a hyper-growth company, which means that the role is always evolving as the company grows. We are not a typical ‘transactional’ thinking company. We are a heart-based company where people come first. In order to be successful here, you will need to have this mindset, work smart, hard, and embrace everything that is offered. If this sounds like a position for you, please respond to this advertisement with your resume and cover letter. This is an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your carefully written cover letter. Applications submitted without a resume and cover letter will be unsuccessful. Please, read carefully: 1. Write a cover letter addressing:Why you're the best Customer Service Representative for this role. Give quantifiable examples of related achievements.Describe why you fit perfectly with our values. Read them here: https://drive.google.com/file/d/1deCCJZ6tiDiOSlr_W0UdCuM_V_ahzPBs/view What's the toughest challenge you’ve ever overcome in your life? How did you overcome it?What are the last three books you’ve read?What do you do for fun?Explain what you’re doing now for a job: If you don’t have one, explain why.If you have one, explain why you’re looking elsewhere.2. Upload your cover letter and resume: Ensure that your cover letter and resume are saved and sent as one file. Click the “Apply Now” button on this page and upload your (1) cover letter (2) resume. \",\n            \"location\": \"Saskatoon, SK\"\n        },\n        {\n            \"id\": \"8C6D61A0D0B1A08B39C0CCB0B15052D5\",\n            \"cityName\": \"Windsor, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b0025310e2383fa3\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"Aim Kenny U-Pull\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694405880917,\n            \"dateOfPosted\": 1692670414504,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.3149367,\n                    \"lon\": -83.03636329999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Windsor\",\n                \"formattedAddress\": \"Windsor, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Essex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Windsor\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Company Description  Kenny U-Pull takes pride in giving used vehicles a second life. Our 26 auto recycling yards across Eastern Canada are backed by 400+ employees, all passionate about the revalorization of used cars and the desire for a greener environment for future generations. Since 2008, we have recycled over 1 million vehicles and counting! At Kenny, we do things differently by offering our customers the opportunity to create their own self-serve experience. Customers pick and pull replacement parts themselves for a fraction of the manufacturer's price, in a safe, clean, and environmentally responsible environment. Our engine runs on purpose, passion, and team spirit. We’re a close-knit and supportive company where your ambitions are also ours. Come ride with us - we promise it will be a rewarding journey. Job Description  Salary starting at $16.75/h + annual bonus up to 2.5%Permanent, full-time positionAddress: 200 Sprucewood Ave, Windsor, ON N9C 0B8Schedule: TBD - we're open 7/7 from 9am to 5pm Does the thought of working around cars all day long ‘rev your engine’? Interested in being part of a dynamic, growing team who is helping to create a greener environment for generations to come? Then read on, as this position is for you! As a Customer Service Clerk, you will play the important role of being our customers’ first point of contact in-store. Reporting to the Branch Manager, your day-to-day responsibilities (besides having lots of fun!) will include: Answering customers’ questions and providing advice on products and services Identifying individual customer needs and in turn, effectively providing solutions Operating the cash register and carrying out day-to-day transactions Stocking and organizing inventory on shelves in the store Helping to keep the store, parking lot and occasionally the yard, tidy and clean Perform transactions related to the purchase of vehicles Assist with administrative or production tasks Qualifications  Team player who enjoys connecting with and helping others Passionate about providing exceptional customer service Resourceful and detail oriented Able to lift items up to 30lbs A proven track record for punctuality and reliability Car enthusiast (a plus!) Additional Information  And by additional information, we mean perks! Competitive salary Year-end bonus Comprehensive group insurance plan Overtime at time and a half after 44 hours Group RRSP with employer matching contribution Referral program Exclusive employee discounts on parts from any Kenny yard A fancy new pair of steel toe boots Clothing provided Kenny U-Pull is a subsidiary of American Iron & Metal (AIM) inc., a recognized global leader in the metal recycling industry with more than 125 site locations, 3000 employees worldwide and over 3.5 billion dollars in yearly sales. AIM and its subsidiaries offer equal employment opportunities to all. Only those selected for interviews will be contacted. Thank you for your interest.\",\n            \"location\": \"Windsor, ON\"\n        },\n        {\n            \"id\": \"283048EAEFAC6910EEF242588A1354F1\",\n            \"cityName\": \"Assante Wealth Management Ltd in Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=229a81dc29bb18a8\",\n            \"jobName\": \"Inside Phone Sales Representative\",\n            \"companyName\": \"Assante Wealth Management Ltd\",\n            \"rowSalary\": \"$16–$25 an hour\",\n            \"date\": 1694403201626,\n            \"dateOfPosted\": 1652742079518,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4503213,\n                    \"lon\": -73.7500486\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Assante Capital Management Ltd. is one of Canadas largest independent investment firms.This is a great opportunity to join our expanding inside sales team. We are looking for motivated sales reps to generate new prospective clients for our financial advisors.Qualifications:Experience in cold calling a must.Must be assertive and well-spoken.Bilingual preferred but English only accepted.Sales driven with a positive attitude.Ability to work independently.Lead list is provided.This is a permanent part time position that may lead to full time pending results.Start date is immediate.We offer excellent salary plus bonus for qualified candidates.Hours are Monday to Thursday 5:00 p.m. to 9:00 p.m.Serious candidates only please contact 514 832 5148 to arrange for interview.Work remotelyTemporarily due to COVID-19Job Types: Part-time, PermanentSalary: $16.00-$25.00 per hourBenefits:Casual dressOn-site parkingSchedule:No weekendsSupplemental pay types:Bonus pay\",\n            \"location\": \"Dorval, QC\"\n        },\n        {\n            \"id\": \"A28FD35312A8045695C766169C909AD6\",\n            \"cityName\": \"Petro Canada in Campbell River, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6157183e85bd10c0\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Petro Canada\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694402492353,\n            \"dateOfPosted\": 1693552952933,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.03312260000001,\n                    \"lon\": -125.2733353\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Campbell River\",\n                \"formattedAddress\": \"Campbell River, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Strathcona\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Campbell River\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We're looking for a quality Team Member - part time day/evening/night shifts at Campbellton location (beside walmart) leading to full time as and when position may become available.Convenience store and lotto experience is an asset but not required. Duties involve friendly customer service, cleaning, organizing, stocking and etc.Job Type: Part-timePart-time hours: 24 per weekSalary: From $17.00 per hourDay range:HolidaysWeekends as neededShift:8 hour shiftDay shiftEvening shiftNight shiftWork setting:Convenience storeWork Location: In person\",\n            \"location\": \"Campbell River, BC\"\n        },\n        {\n            \"id\": \"D02BE611BC3CA0D6AB2B33A4DBAC815D\",\n            \"cityName\": \"Sherwood Park, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5f25393f4c858db8\",\n            \"jobName\": \"Customer Service Representative (Part-Time Veterinary Receptionist)\",\n            \"companyName\": \"Pulse Veterinary Specialists & Emergency\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694402435142,\n            \"dateOfPosted\": 1693555279944,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5411916,\n                    \"lon\": -113.2957355\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sherwood Park\",\n                \"formattedAddress\": \"Sherwood Park, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sherwood Park\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you an individual passionate about providing exceptional client care? Do you have a passion for animals and a desire to get into the veterinary industry? Do you already have some veterinary clinic experience and are looking to be part of a new working culture that provides both exceptional care and a fun, warm family work environment? Are you looking to help grow our locally owned and run veterinary hospital to help serve the community? Are you looking to make an impact in an organization by being the first point of contact for all visitors? If you answered YES to the above questions, then we want YOU! Overview We are seeking a motivated, team-oriented, and passionate Customer Service Representative (receptionist) to join our Client Care Services team in our growing emergency and specialty hospital. We are currently looking for a part-time receptionist to join our Client Care Services team. As a 24-hour emergency facility, this position will require shift work (days, nights, weekends, holidays). The part-time shifts are from 4 p.m. - 2 a.m. and weekend availability. Our goal is to promote a healthy working environment centred around high standards of medicine and exceptional patient care. Come feel the difference when you are truly part of the family in Alberta’s only private referral hospital. If you enjoy working in a fast-paced environment with experienced emergency veterinarians and specialists in multiple disciplines, then this may be the job for you! Company Benefits Pulse employees receive:Competitive compensation packagePersonal pet discountsUniform allowanceHealth benefitsPaid time offOn-site parkingDeferred profit-sharing plansOpportunities for growth and professional developmentAccess to a diverse team with varied experience and knowledge Position Summary The Client Service Representative will act as the first point of contact for clients and is responsible for setting an example of high-level client care and teamwork at Pulse Veterinary Specialists & Emergency. They will report to Head of Client Services and work closely with the Client Care team to deliver exceptional patient and client care to ensure all feel welcomed and cared for. The Client Service Representative will support all emergency and specialty teams including: Cardiology, Dentistry, Neurology, Ophthalmology, Radiology, Surgery, and Internal Medicine. The ideal candidate values maintaining a collegial working culture and prioritizes embracing the strategy, commitments, and goals of the organization. Duties and ResponsibilitiesDelivers exceptional client care.Creates a welcoming environment for patients and clients.Greets patients and their owners as they arrive.Responds to incoming emergencies.Answers and triages incoming telephone calls.Manages email correspondence including client and referral inquires, as well as internal messages.Schedules, tracks, and follows-up on appointments.Maintains practice software including client and patient record management.Prepares estimates, invoices, and processes payments.Performs housekeeping duties to maintain cleanliness of reception and common areas. Ensures internal and external hospital cleaning schedules are followed.Admits and discharges patients.Assists with educating clients about insurance and home care instructions as requiredCoordinates and processes end of life care for patients and their families.Supports management of client complaints as required in partnership with the Head of Client Services and Hospital Director, interacting with clientele to deescalate, resolve, and/or escalate issues in a timely fashion.Follows all SOPs to support smooth hospital operations.Follows all federal and provincial animal health laws and regulations regarding workplace health and safety.Openly and proactively communicates updates to Head of Client Services and other department team members. Prioritize interdepartmental synergy by maintaining open lines of communication with other departments.Other duties may be assigned as required. Qualifications The ideal candidate will have: The Education and ExperienceMinimum of 1 year customer service or front desk experience is preferred (ideally in a medical or hospitality setting).Post secondary education is considered an asset. Knowledge, Skills and AbilitiesExceptional customer service skills.Strong interpersonal, verbal, and written communication skills.Proven active listening and problem-solving skills.Understands how to communicate difficult/sensitive information professionally. Aptitude for making clients feel welcomed and comfortable.Ability to adapt to changing situations and remain calm in stressful situations.Strong time management and organizational skills including the abilities to plan, coordinate, multitask, and prioritize. Ability to carry out tasks independently.Genuine interest and initiative to help Pulse be the best practice it can be.Strong initiative and desire to be an integral key player in the growth and maturation of the Client Care team.Intrinsic desire to grow personally and professionally. We thank all interested candidates for applying, however, only candidates considered for an interview will be contacted.\",\n            \"location\": \"Sherwood Park, AB\"\n        },\n        {\n            \"id\": \"A475C9F111610C2E22D1A53AB8446A7F\",\n            \"cityName\": \"57 Crowfoot Terr NW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=20e565fc3b445bc3\",\n            \"jobName\": \"Customer Service Retail Crave Ambassador (Happiness Provider)\",\n            \"companyName\": \"Crave Cupcakes\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694402368835,\n            \"dateOfPosted\": 1693534098929,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.1273066,\n                    \"lon\": -114.2004557\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Crowfoot Terrace NW, Calgary, AB T3G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"WHY CRAVEWe exist to enrich people’s lives through exceptional, home-style baking. We passionately bake from scratch, we work together for the collective good of Crave and we are kind and gracious. Crave is looking for a like-minded individual who shares our passion in creating a sense of community by being part of a collaborative team. Does the idea of waking up early to bake family recipes from scratch appeal to you? If the smell of cocoa in the air and the whirring sound of whipping crave-o-licious buttercream in the mixer gets you excited, we want to hear from you!RESPONSIBILITIES- Understand and subscribe to the Crave Values & Vision- Mastery of Crave’s from scratch menu- Packaging & gift wrapping- Operating point-of-sale system- Practice food safety and store maintenance- Offer bakery support when requiredTHE ESSENTIALS- Able to think critically in the moment- Love Crave as much as we do- Strong organizational skills- You enjoy working making moments special for people- Good customer service is a priority for you to give and receive- You strive to gain insights from your mistakes- You seek constructive feedback from colleagues and supervisors to improve results- You are high energy with the ability to energize others- Team oriented- Motivated to pursue growth within your role- You love to smileWe look forward to hearing from you!Work remotelyNoJob Type: Part-timePart-time hours: 16-24 per weekSalary: From $15.00 per hourBenefits:Dental careDisability insuranceDiscounted or free foodLife insuranceStore discountSchedule:8 hour shiftMonday to FridayOvertimeWeekends as neededSupplemental pay types:Overtime payEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Crowfoot Terr NW, Calgary, AB\"\n        },\n        {\n            \"id\": \"104594DE331D80A3A92E179C793978C0\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=57a3408002ee78b9\",\n            \"jobName\": \"Customer Service Representative, Calgary\",\n            \"companyName\": \"Algaecal\",\n            \"rowSalary\": \"$48,000–$51,000 a year\",\n            \"date\": 1694402192470,\n            \"dateOfPosted\": 1693529502493,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Career with a heart! If you like helping people, and you want to feel supported in your work –– this is the opportunity for you. Every day, concerned people call the AlgaeCal helpline. They’ve just had bad news about their bones – and they’re scared they might break at any moment. But after talking with YOU, their fear will melt away. We call our Customer Care Representatives – Bone Health Consultants – and a typical day might include: Acting as a knowledge base for customers inquiries with respect to our products and their bone healthActively listening to customers and providing them with everything they need to make an informed decision about AlgaeCal.Supporting our customers through a variety of mediums (email, phone).Processing orders and returns for customers.Helping customers understand the results of their DEXA bone scans.Updating the records of customer interactions, processing customer accounts, and filing documents. So yes, you’ll need to enjoy administrative tasks to thrive in this role.But most importantly, setting our customers up for MAXIMUM SUCCESSThis opportunity is tailor-made for you if: You’re highly motivated to work at home. You’ve got a solid customer service background. You are passionate about natural health. You are an expert at building a rapport with customers and devoted to helping people find that aha moment – where they go from despair to hope. You’re organized. You’re humble. You think critically and creatively. You love to support and inspire others. You don’t just accept feedback – you WANT feedback, because you’re hungry to be better than you were yesterday. You’re also a brilliant multi-tasker who can effortlessly shift between a variety of priorities. So if you want to work with some of the nicest people you’ll ever meet. And you want to feel good about making a difference in the world –– all while learning about natural health and working in a well organized and supportive workplace –– send us your resume. And BTW… some of our senior executives started out in this role –– so if you’ve got the talent, there’s no telling where this job might take you :) To best service our clients, our Customer Success Centre is open 7 days per week. Work schedules are 5 consecutive days, which include 1 weekend day. Successful applicants must be willing to work a Saturday or a Sunday, each week. We won’t ask you to work both weekend days, but ya need to be available for one! Example shift rotation: Sunday to Thursday or Tuesday to Saturday. Other Goodies$48,000 starting salary with the opportunity to increase rapidly as training targets are met.AlgaeCal Healthcare Plan (Premiums Covered 100%!), which you're eligible to sign up for after three months of employment.Monthly lunches with your co-workers, coffee catch ups, and an informal coaching programme.Supported professional development and continued learning through training and coaching.Flexible Stat Holidays with the option to bank days for later use.Once you’ve been with us for 3 months you’ll get $200 to spend on whatever you want.You should know this… AlgaeCal is a hyper-growth company, which means that the role is always evolving as the company grows. We are not a typical ‘transactional’ thinking company. We are a heart-based company where people come first. In order to be successful here, you will need to have this mindset, work smart, hard, and embrace everything that is offered. If this sounds like a position for you, please respond to this advertisement with your resume and cover letter. This is an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your carefully written cover letter. Applications submitted without a resume and cover letter will be unsuccessful. Please, read carefully: 1. Write a cover letter addressing: 1. Why you're the best Customer Service Representative for this role. Give quantifiable examples of related achievements. 2. Describe why you fit perfectly with our values. Read them here: http://shorturl.at/lptFT 3. What's the toughest challenge you’ve ever overcome in your life? How did you overcome it? 4. What are the last three books you’ve read? 5. What do you do for fun? 6. Explain what you’re doing now for a job:If you don’t have one, explain why.If you have one, explain why you’re looking elsewhere.2. Upload your cover letter and resume: 1. Ensure that your cover letter and resume are saved and sent as one file. Click the “Apply Now” button on this page and upload your (1) cover letter (2) resume. *Important* AlgaeCal isn’t a boring run-of-the-mill company. So some of the questions in your online application might feel out of the ordinary. These questions are an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your answers. For more information about us, please visit our website. #INDLP\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"AFC9B526AE0C694536BC8BEB6586A949\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f0795f8d6c2e30ed\",\n            \"jobName\": \"Logistics Dispatcher / Customer Service\",\n            \"companyName\": \"Ballad Consulting Group\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694400957053,\n            \"dateOfPosted\": 1694211483226,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About Us: At Ballad we consider ourselves to be the most accountable, collaborative, and entrepreneurial group of professionals in the Supply Chain industry. We empower resilient people to grow their careers and are looking for talented people like you who are eager to embrace a rewarding career in the Supply Chain industry. Position Summary: We are looking for highly organized logistics professionals who enjoy taking advantage of their amazing attention to detail to assist with coordinating dispatch operations. This is a great chance to get your career started in a role that is dynamic and rewarding and offers significant growth opportunities in the supply chain industry.This position is contingent on the successful completion of a 12 week training program that will include all necessary certifications facilitated by Ballad. Responsibilities:Data entry, input orders in computer system / TMSWork with carriers and transport companies to track shipments, expedite orders, and report on delivery timesOffer support and solutions to customers in accordance with the company's customer service policiesProvide solutions and deliver commitments to customers, dispatch and work with planning teamsCommunicate in a fast-paced environment with operations daily activityWork with customer to determine their needs and expectations and operate accounts to meet those demandsBook customer appointments for import and export containersProvide regular timely customer reportsUse strong interpersonal skills to manage geographical areas of responsibilityDemonstrate effective people management skillsEngage with clients in a friendly and professional manner while actively listening to their concerns Shift Schedule: Day shift, Monday to Friday The wage range for this position ranges from $18.00 - $22.00 per hour. Only candidates selected for the interview process will be contacted.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"28774491C1BF2682E87391770D0CAB5B\",\n            \"cityName\": \"331 Durham St E, Walkerton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ea38e9a105227bb7\",\n            \"jobName\": \"Customer Service Representative (Part Time)\",\n            \"companyName\": \"Brown's Guardian Pharmacy\",\n            \"rowSalary\": \"From $15.75 an hour\",\n            \"date\": 1694399793262,\n            \"dateOfPosted\": 1694239006437,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Brown's Guardian Pharmacy is seeking a part-time Customer Service Representative to join our Front Shop Team. This position offers 24 hours per week, including occasional Saturdays. Operating within Brown’s Guardian Pharmacy, the front shop department maintains a well-stocked array of merchandises, efficiently processes orders and purchases, and upholds Brown’s mission of exceptional customer service during all visits.The ideal applicant will possess:Proven ability to communicate effectively and courteously in-person and over the phoneA valid G Driver’s License is required, with clear driver’s abstract (no major violations in the past 3 years)Previous customer service experience, preferredExperience operating point-of-sale systems, an assetThe successful applicant will be required to submit a Criminal Record CheckGeneral Duties of the position:Operate cash register and process paymentsGreet customers and offer assistance when needed, ensuring positive customer experiencesPrepare, organize, and perform occasional deliveries (company vehicle, gas, and insurance provided)Maintain a valid driver’s license and clean driving recordStock shelves, maintain inventory, general housekeeping duties, and other duties as assignedTo Apply:Interested parties may submit their resumes in-person to Rhonda Bradley - Front Shop Manager. Applications will also be accepted through Indeed but we would really love to meet you face-to-face when you apply!Hours of operation:Monday to Friday 9am-6pm;Saturday 9am-5pmClosed Sundays and Statutory HolidaysApply today to join our team!*We thank all that apply, however, only applicants selected for an interview will be contacted. If you require an accommodation at any point during the recruitment process, please notify HR - hr@brownspharmacy.ca*Job Types: Part-time, PermanentPart-time hours: 24-32 per weekSalary: From $15.75 per hourSchedule:8 hour shiftMonday to FridayWeekends as neededExperience:Customer service: 1 year (preferred)Licence/Certification:Class G Licence (required)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"F5BCC91E0703C9A30F0AA4F8685A2453\",\n            \"cityName\": \"2390 Bristol Cir, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=de12d68c766fb9b4\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Promotion Solutions\",\n            \"rowSalary\": \"$18–$21 an hour\",\n            \"date\": 1694399662866,\n            \"dateOfPosted\": 1694215339851,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"An established company has an immediate opening for an individual who is proficient with the following:· typing & computer skills in Word & Excel· answer consumers' telephone/email inquiries· solving customers' issues· utilize computer system to search and access customer information in our records management systems· enter data into the operating system and create monthly reports· perform administrative tasks· mail sorting, create daily/weekly shipments· coupon/contest report management and increasingly challenging endeavors to meet the candidate’s qualifications- a candidate who knows French is preferredBenefits:Flexible working hoursCasual dressOn-site parkingJob Type: Part-time/full time, In OfficeJob Types: Full-time, Part-timePart-time hours: 20-40 per weekSalary: $18.00-$21.00 per hourBenefits:Casual dressFlexible scheduleOn-site parkingSchedule:Monday to FridayWork Location: In personExpected start date: 2023-10-02\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"CFB10C518311E9AEF3E012C135551F04\",\n            \"cityName\": \"240 Richmond Street West, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5b89bdef0b2f3285\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Checkmark Marketing\",\n            \"rowSalary\": \"$22–$24 an hour\",\n            \"date\": 1694398942668,\n            \"dateOfPosted\": 1694224181760,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job DescriptionJoin our purpose driven, diverse and fun team! As a customer service representative, you are the face of the organization. Checkmark Marketing is a place where we care about our team and the success of our clients.Checkmark Marketing is seeking a Customer Service Representative to join our team. This position will be responsible for providing support to our customers by responding to customer inquiries, assisting with product and service orders, and general customer service duties.If you are:Outgoing - you are someone who is approachable and positive in social interactionsEmpathetic - someone who is caring and passionate about their workCustomer oriented - you are passionate about providing top tier customer supportKind - being kind to the customers is a main priority for you and your goalsWhy work with us? The opportunity to join a growing and fast paced organization surrounded by a positive and passionate teamDiverse opportunities for professional career growthA company that is committed to making a difference in our communityYou can depend on being recognized for high-achievement and acknowledgement for your successCompetitive compensation optionsRequirementsHigh school diploma or equivalent required. College degree preferred.1-2 years of experience in a customer service role.Excellent verbal and written communication skills.Ability to multi-task, prioritize, and manage time effectively.Proficient in Microsoft Office applications (Word, Excel, Outlook).Ability to work independently with minimal supervision..Demonstrates high standards of personal hygiene and confidentiality.Must be located in the Toronto, ON area (no exceptions) or able to obtain valid work authorization within 1 year of employment.Must be able to pass a criminal background check and drug test.Job Types: Full-time, Part-timePart-time hours: 20 per weekSalary: $22.00-$24.00 per hourBenefits:Dental carePaid time offFlexible Language Requirement:French not requiredSchedule:Monday to FridayNo weekendsSupplemental pay types:Overtime payAbility to commute/relocate:Toronto, ON M5V 1V6: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"BE23C8DF4C3BD67271015F03F571144E\",\n            \"cityName\": \"1100 Champlain Crt, Whitby, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=355421f0c246ad79\",\n            \"jobName\": \"E-Commerce Customer Service Associate\",\n            \"companyName\": \"Gp Bikes Inc.\",\n            \"rowSalary\": \"$16–$18 an hour\",\n            \"date\": 1694398654470,\n            \"dateOfPosted\": 1689525258168,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8667419,\n                    \"lon\": -78.9195341\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Whitby\",\n                \"formattedAddress\": \"Champlain Ct, Whitby, ON L1N, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Whitby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Overview:If you enjoy going the extra mile for a customer, making them feel like they know you well (even if you haven’t met face-to-face), then this may be the job for you! The Online/E-Commerce Sales Associate delivers outstanding customer service as they support clients by phone or email as they make online purchases. They pick the ordered products from our retail store or special order the items as necessary. Sales are enhanced by providing information about alternative products or add-ons. The Online Sales Associate will also enter all new or updated products to GP Bikes’ website, including data and images. Online Sales Associates help customers shopping in the retail store as needed. The individual must be able to work Saturdays. Working motorcycle trade shows beyond our normal store hours 2-3 times a year is compulsory.Qualifications:Passion for the riding lifestyleMotorcycle apparel, accessories or Parts sales experience is an assetPrevious customer service experienceExcellent interpersonal skills and an ability to build trust and rapportAbility to move between various tasks without losing focusStrong verbal, written, and keyboarding skills are required to compose professional emails and converse with customers by phoneAble to work with ease in a web-based computer environmentStrong attention to detailSome post-secondary education preferredWhat you’ll get:Be part of a great team of peopleA fun and fast paced environmentFull-time hoursCompensation begins at $16-$18/hour depending on experienceGroup Insurance Benefits (once eligibility requirements have been met)Employee discounts on productProfit Sharing PlanYour schedule will be determined based on our business hours. Please note, you can be scheduled prior to our opening time for regular duties. There may also be circumstances for business needs where you are scheduled outside of our regular business hours for various reasons (ex. special projects, meetings, inventory or Bike Shows).GP Bikes is committed to providing a barrier-free work environment in conjunction with the Accessibility for Ontarians with Disabilities Act (AODA) and the Ontario Human Rights Code. As such, GP Bikes will make accommodations available to applicants with disabilities upon request during the recruitment process.The above description reflects the general details considered necessary to describe the principal functions and duties as required for proper evaluation of the job and will not be construed as a detailed description of all the work requirements that may be inherent in the job. Employees may perform other related duties and tasks as required to meet the needs of the operation.#HPJob Types: Full-time, PermanentSalary: $16.00-$18.00 per hourBenefits:Dental careOn-site parkingStore discountDay range:Monday to FridayWeekends as neededShift:10 hour shift8 hour shiftWork setting:Apparel storeAbility to commute/relocate:Whitby, ON: reliably commute or plan to relocate before starting work (required)Application question(s):How many years of Motorcycle or Dirt Bike Riding experience do you have?What is your availability for work from Monday-Saturday? (NOTE: We are closed on Sundays)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Licence/Certification:M2/M Licence (preferred)Work Location: In person\",\n            \"location\": \"Champlain Crt, Whitby, ON\"\n        },\n        {\n            \"id\": \"F836025C60432F027DA815AFBC849CF4\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=00f39ef1fcf0954b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Emson Creative\",\n            \"rowSalary\": \"$28–$32 an hour\",\n            \"date\": 1694398626643,\n            \"dateOfPosted\": 1692655479290,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 28.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    28.0\n                ],\n                \"range\": {\n                    \"gte\": 28.0,\n                    \"gt\": null,\n                    \"lte\": 28.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are hiring a Customer Service Representative to manage customer queries and complaints. You will also be asked to process orders, modifications, and escalate complaints across a number of communication channels. To do well in this role you need to be able to remain calm when customers are frustrated and have experience working with computers.  Responsibilities Maintaining a positive, empathetic and professional attitude toward customers at all times.Responding promptly to customer inquiries.Communicating with customers through various channels.Acknowledging and resolving customer complaints.Knowing our products inside and out so that you can answer questions.Processing orders, forms, applications, and requests.Keeping records of customer interactions, transactions, comments and complaints.Communicating and coordinating with colleagues as necessary.Providing feedback on the efficiency of the customer service process.Managing a team of junior customer service representatives.Ensure customer satisfaction and provide professional customer support. Requirements High school diploma, general education degree or equivalent.Ability to stay calm when customers are stressed or upset.Comfortable using computers.Experience working with customer support.\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"B51CE6C524F869DDC794FF21BAD8B16F\",\n            \"cityName\": \"10a-1209 Island Highway E, Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=19a2643bad5505d7\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mid Island Liquor\",\n            \"rowSalary\": \"$17.75 an hour\",\n            \"date\": 1694398527600,\n            \"dateOfPosted\": 1694239186383,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Liquor is looking for part-time Customer Service Representatives at our South Parksville Liquor Store Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you! Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in the operations of the store, including but not limited to handling customer transactions, responding to customer questions and concerns in a professional manner, creating displays and stocking shelves, and ensuring store and merchandise are neat and organized.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Representative today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. Previous retail experience is preferred, and you must have a valid Serving it Right Certificate (or be willing to get certified prior to your first day). Who we are: Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve. Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op). We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"D09CD11B18AE17ABA939910EFC52CD4F\",\n            \"cityName\": \"1035 7 Av SW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f5aba598e1261351\",\n            \"jobName\": \"Admissions Specialist Manager (Call Center)\",\n            \"companyName\": \"Cdi College\",\n            \"rowSalary\": \"$60,000–$70,000 a year\",\n            \"date\": 1694394924600,\n            \"dateOfPosted\": 1693535388195,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0696021,\n                    \"lon\": -114.2048762\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Cougar Ridge Ave SW, Calgary, AB T3H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 60000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    60000.0\n                ],\n                \"range\": {\n                    \"gte\": 60000.0,\n                    \"gt\": null,\n                    \"lte\": 60000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are happy to say that we are looking for an experienced Admissions Specialist Manager (Call Center)to join CDI College Regional team in Calgary, AB! Position Job Title: Admissions Specialist Manager (Call Center) Reports To: Associate Vice President of Admissions Hours: Regular Office Hours and flexible to some evenings as per business needs Location: On site CDI City Center, Calgary AB Job Status: Full-time, permanent, must be eligible to work in Canada Compensation: 60K - 70K annually + comprehensive benefits WHY JOIN US? For more than 50 years, CDI College has been one of the leading career training institutions in Canada, thanks to its commitment to quality education and the success of its students. Our rich history includes alumni of thousands of successful graduates who embark on careers rich in opportunity. We are happy to say that we are looking for an experienced Admissions Specialist Manager to join our team! The Admissions Specialist Manager is responsible for the day-to-day inbound and outbound call operations through developing and managing the call center team to ensure maximized operational efficiency and high customer satisfaction. This includes evaluating, implementing, and updating call center strategies, standards and procedures, technologies and resources while managing and developing a team of call center representatives. What is important to know before sending us your application :1. Full time schedule ( Monday to Friday 8 AM to 4PM ) 2. On site position - Job location : #700-1035 7 Ave SW, Calgary Alberta T2P 0K4 3. Available immediately  Job Profile Specifically, the Admissions Specialist Manager will be responsible for: Managing call center operations by establishing and implementing call center strategies, procedures and standards Managing and developing a professional customer service team by hiring, training, motivating, coaching and retaining high quality representatives Reviewing business processes and systems to identify improvements to processes, resources and new technologies Achieving monthly and annual sales targets Other related duties as assigned Specific Responsibilities The Admissions Specialist Manager will be responsible for the following, as well as other related duties as assigned to support the business objectives and purpose of the Company. 1. Managing call center operations by establishing and implementing call center strategies, procedures and standards such as: Communicate business objectives across the department and drive awareness of performance goals Developing call center systems, designing/introducing user interfaces, planning and controlling system implementations Identifying and resolving problems, monitoring and improving call center operations Creating reference materials and training programs, ensuring representatives have accurate product information and proper customer service skills Establishing customer services standards and metrics to guide performance evaluation Maintaining up-to-date knowledge of industry developments 2. Managing and developing a professional customer service team by hiring, training, motivating, coaching and retaining high quality representatives such as:  Providing team members with proper orientation, training and day-to-day guidance Planning, monitoring, and adjusting representatives’ responsibility allocation and work schedules Monitoring random calls, conducting regular performance evaluation, appraising or disciplining representatives’ performance to improve service quality Coordinating best practices to maximize employee development, training and performance; manage ongoing business changes without sacrificing performance results Answering representatives’ questions, guiding them through difficult calls, diffusing angry customers, or handling issues that cannot be fielded by representatives 3. Reviewing business processes and systems to identify improvements to processes, resources and new technologies  Overseeing system maintenance and upgrade implementation, calling for repairs and troubleshooting as needed Evaluating and implementing equipment/ technology upgrades Contacting service and equipment providers, negotiating contracts, and maintaining business relationships Maintaining professional and technical knowledge by tracking emerging trends and technologies 4. Achieving monthly and annual targets  Meeting performance targets for speed, efficiency, sales and quality Ensuring each representatives are achieving sales target and desired service levels, and taking corrective action as needed 5. Other related duties as assigned  Position Requirements To be successful in the Admissions Specialist Manager position, individuals must be committed to developing, maintaining and demonstrating the following: Education and Experience: Certificate, diploma or degree in Customer Service, Business and/or in a related field Minimum 3+ years of experience in a high-volume call center environment Minimum 1 year of experience as a Team Lead/Supervisor Previous sales experience Experience in planning and implementing complex system and processes Possess a strong understanding of key performance metrics and their associated drivers within a call center environment Knowledge of performance evaluation and customer service metrics Skills and Abilities: Ability to think strategically, implement policies, procedures and programs Excellent interpersonal skills and the ability to build and cultivate internal and external relationships with stakeholders Advanced oral and written communication skills, including presentation, group facilitation and business writing skills Strong proficiency with necessary technology, including MS Office, software applications, call center equipment, phone systems, etc. Previous experience in hiring, training, motivating and retaining a team Proven self-starter and problem solver A positive attitude and customer-focused approach Must be deadline driven and goal-oriented Comfortable with multi-tasking, managing multiple priorities and meeting several, often movable, deadlines under pressure Provisos: Willingness to be available to work days, evenings and weekends as needed\",\n            \"location\": \"Av SW, Calgary, AB\"\n        },\n        {\n            \"id\": \"E2FF3077B00FF19121995579EC297E28\",\n            \"cityName\": \"Rosser, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2377b953c6e2568a\",\n            \"jobName\": \"Customer Service Representative - Financial Services\",\n            \"companyName\": \"Calculus Financial\",\n            \"rowSalary\": \"$24 an hour\",\n            \"date\": 1694394911577,\n            \"dateOfPosted\": 1693535318638,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.9897361,\n                    \"lon\": -97.44723859999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Rosser\",\n                \"formattedAddress\": \"Rosser, MB R0H 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 14\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Rosser\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 1 year to 2 yearsExperience: 2 years to less than 3 yearsWork setting Financial management/services Willing to relocate General office Tasks Balance daily transactions Process banking transactions Promote financial products and services Store, update and retrieve financial data Answer enquiries and resolve problems or discrepancies concerning customers' accounts Answer clients' inquiries and provide information Computer and technology knowledge MS Windows MS Access MS Excel MS Outlook MS PowerPoint MS Word Work conditions and physical capabilities Attention to detail Fast-paced environment Tight deadlines Work under pressure Personal suitability Accurate Client focus Efficient interpersonal skills Flexibility Judgement Organized Team player Time management Other benefits Free parking availableWork Term: PermanentWork Language: EnglishHours: 35 to 40 hours per week\",\n            \"location\": \"Rosser, MB\"\n        },\n        {\n            \"id\": \"879EA31AF6DA5108BF0F68EE32AFCA8D\",\n            \"cityName\": \"Cranbrook, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a3149a7c5d51ad5a\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"R.C. Purdy Chocolates Ltd\",\n            \"rowSalary\": \"$16.75–$19.26 an hour\",\n            \"date\": 1694394906707,\n            \"dateOfPosted\": 1693534875453,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.5129678,\n                    \"lon\": -115.7694002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cranbrook\",\n                \"formattedAddress\": \"Cranbrook, BC V1C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"East Kootenay\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cranbrook\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: No degree, certificate or diplomaExperience: Experience an assetTasks Operate cash register Process money, cheques and credit/debit card payments Scan items Receive payment for goods or services Suggestive selling Stock shelves and clean counter area Greet customers Provide customer service Work conditions and physical capabilities Fast-paced environment Attention to detail Standing for extended periods Personal suitability Accurate Flexibility Team player Screening questions Are you currently legally able to work in Canada? Long term benefits Other benefitsWork Term: TemporaryWork Language: EnglishHours: 12 to 30 hours per week\",\n            \"location\": \"Cranbrook, BC\"\n        },\n        {\n            \"id\": \"372889E9E8B5C9DC8E15E7C5256F0A04\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=af7864d1e22c0ef4\",\n            \"jobName\": \"Agent Bilingue Du Service Clientèle / Bilingual Customer Service Agent\",\n            \"companyName\": \"Voxdata\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694394704034,\n            \"dateOfPosted\": 1693535125222,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"*English version to follow* *NB : Nous n'acceptons que les candidatures provenant de la grande région de Montréal car la formation se fait à partir du bureau.* *Nous exigeons que nos candidats parlent anglais car certains de nos clients sont à l'extérieur du Québec et ne parlent que l'anglais.* Prêt à vous joindre à l'un des plus importants centres d'appels de Montréal ! VOXDATA vous attend ! Nous cherchons à agrandir notre équipe avec de nouveaux membres qui sont prêts à devenir nos prochains experts en offrant la meilleure expérience client possible ! Pour avoir une meilleure idée de notre entreprise et de nos valeurs, vous pouvez consulter notre site web ici ! https://www.voxdata.com/ Voici quelques raisons pour lesquelles il fait bon travailler chez VOXDATA : Une variété de types de postes, allant du service à la clientèle aux ventes, en passant par le soutien technique, avec des rôles uniquement en anglais ou bilingues et des options d'horaire variées - nous voulons mettre en valeur vos compétences uniques dans un poste qui vous convient le mieux !Un bureau facilement accessible et convoité au cœur du centre-ville de Montréal, et la possibilité de travailler à domicile pour nos postes hybrides !Un environnement de travail diversifié, positif et encourageant, notre objectif étant d'aider nos agents à briller et à réussir au maximum de leur potentiel !Les avantages et les bénéfices pour les employés tels que les plans de primes inclus dans nos postes, les primes supplémentaires pour les personnes les plus performantes (comme des cartes cadeaux et de l'argent supplémentaire !), les couvertures d'assurance, et les primes de recommandation des employés qui peuvent aller jusqu'à 1000 $ par personne !La possibilité d'évoluer et de développer vos compétences par le biais de réunions d'équipe, de séances de coaching individuel et d'évaluations des performances, toutes conçues pour vous aider à renforcer vos capacités et à devenir un maître dans votre travail !Des opportunités de développement interne ouvertes à tous - avec des rôles tels que chef d'équipe, coach, formateur, mentor et même des postes administratifs, nous sommes fiers de toujours nous tourner vers le personnel que nous avons déjà avec nous pour le promouvoir lorsque l'occasion se présente !Pour ce poste, vous travaillerez avec une société d'aviation bien établie. Vos tâches spécifiques seront les suivantes : Fournir un service à la clientèle de premier ordre à chaque interaction avec les clients.Répondre aux appels entrants des clients pour les aider à effectuer des réservations une fois qu'elles ont été achetées.Résoudre les problèmes liés à l'accès aux billets et à la navigation sur le site web.Répondre aux questions concernant les informations sur les billets ou aux questions générales sur les réservations.Ready to join one of the leading call centers in Montreal?! VOXDATA is waiting for you! We're looking to expand our team with new members who are ready to become our next experts in delivering the best customer experience possible! To get a better idea of our company and values, you can check out our website here! https://www.voxdata.com/ Here's a few reasons why it's great to work at VOXDATA: A variety of position types, ranging from customer service, sales, and technical support, with English-only or bilingual roles and ranging scheduling options – we want to highlight your unique skillset in a position that is best suited to you!An easily accessible and coveted office location in the heart of Downtown Montreal, and the option to work from home with our hybrid roles!A diverse, supportive, and encouraging work environment, our goal is to help our agents shine and succeed to their fullest potential!Employee benefits and perks such as bonus plans included into our positions, additional bonuses for top performers (like gift cards and extra money!), insurance coverages, and employee referral bonuses that can go up to $1000 per person!The chance to grow and develop your skills through team meetings, individual coaching sessions, and performance reviews; all designed to help you further strengthen your abilities and become a master at your job!Internal growth opportunities that are open to everyone – with roles like team leader, coach, trainer, mentor, and even administrative positions; we pride ourselves on always looking to the staff we already have with us to promote when the occasion arises!For this role, you will be working with an established aviation company. Your specific tasks will include: Providing top-tier customer service to clients in every interaction.Answering inbound calls from customers to assist with bookings/reservations after they have been purchased.Resolving issues relating to ticket access and website navigation.Answering questions regarding ticket information, or general questions about bookings/reservations.Requirements Qu'est-ce qui fait de quelqu'un un excellent candidat ? Nous recherchons des personnes qui : Peut travailler 40 heures par semaine pendant les heures d'ouverture de la campagne : Du lundi au dimanche, de 7 heures à 7 heures (ouvert 24 heures sur 24) ; nous préférons les candidats disponibles le soir, la nuit et le week-end. Sont bilingues en français et en anglais.Ont déjà travaillé dans le service à la clientèle, les ventes ou les centres d'appels, ou ont une expérience traduisible dans d'autres secteurs.Vous pouvez apprendre à utiliser et à faire fonctionner plusieurs programmes informatiques avec facilité.Être disponible pour travailler le soir et le week-end si la campagne est opérationnelle pendant ces périodes.Avoir obtenu un diplôme de fin d'études secondaires ou un diplôme équivalent.Se considèrent comme des personnes capables de résoudre des problèmes, de s'adapter à des situations changeantes et sont motivées pour être les meilleures des meilleures !What do we think makes someone a great candidate?! We're looking for people who: Can work 40 hours/week anytime through the campaign operation hours: Monday to Sunday, from 7 AM to 7 AM (open 24 hours/day); we prefer candidates with evening, overnight, and weekend availability. Are bilingual in French and English.Have worked in customer service, sales, or call centers before; or have translatable experience from other industries.Can learn how to use and operate multiple computer programs with ease.Have graduated high school or have an equivalent diploma.Consider themselves to be problem-solvers, adaptable to changing situations and are motivated to be the best of the best!Benefits Soumettez votre candidature dès maintenant pour lancer le processus d'embauche et voyez par vous-même pourquoi il est formidable d'être un agent VOXDATA !Ce poste est assorti d'un salaire de base de 17,00 $/heure. Submit an application now to get the hiring process started and see for yourself why its great to be a VOXDATA agent! *This position has a base salary of $17.00/hour.*\",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"0A74B665098DF351560DB3CDA9EC0C02\",\n            \"cityName\": \"3080 Boulevard Le Carrefour, Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=047f0ee173475799\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Aim Kenny U-Pull\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694394032697,\n            \"dateOfPosted\": 1693534887959,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.565253,\n                    \"lon\": -73.7539157\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Boul. le Carrefour, Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Company Description  Kenny U-Pull is a fast growing company based in the Province of Quebec that contributes to the protection of the Environment by giving a second life to used vehicules. Our 28 canadian sites, in which more than 400 employees are working, have already recycled over a million of them… and it’s not over! If you like to work with people and are looking for a stimulating work environment full of opportunities, get on board: we promise you a fulfilling journey! Job Description  We are looking for a Customer Service Agent (CSA) for Kenny U-Pull’s Call Center, located in front of the Carrefour Laval. Reporting to the Call Center Supervisor, you will play the crucial role of ambassador for our trademark, and you will be responsible to create, for every client you will interact with, an outstanding personalized experience. More specifically, your daily tasks will be: Answering calls and general inquiries of clients who would like to have information on our stocks, prices and mode of operation; Taking the time to understand the specific needs of each client and propose personalized solutions; Inform the clients on our various products (batteries, tires, etc.) and services; Guide the clients in the utilization of our website; Promote in-person visits to our several branches; Register the clients to our personalized email system « Alert-Me »; Any other task related to the role. Qualifications  Minimum 1 year of experience in customer service Work experience in a call center (asset) Excellent interpersonal communication Ability to work in a team Ability to work under pressure Ability to follow the procedures rigorously Reliability, assiduity and punctuality Interest in the automotive industry Knowledge in automobiles (asset) Functional Bilinguism required to answer the French and English calls coming from everywhere in Canada Additional Information  Your benefits: Salary starting from 18 $ by hour Retention bonus (1 year) of 1 000 $ Comprehensive Collective Insurance Plan Collective RRSP with contribution of the company Employee Assistance Program (free) Exclusive discounts on our parts and cars Complete paid training provided on site Collective transportation accessible, free parking Exceptionnal advancement opportunities Fantastic culture, work atmosphere and team!!!\",\n            \"location\": \"Boulevard Le Carrefour, Laval, QC\"\n        },\n        {\n            \"id\": \"D71C7D0F2537C9ACC064506DDA50F02E\",\n            \"cityName\": \"Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a814d0f20eee151e\",\n            \"jobName\": \"Customer Service Representative (1-Year Contract)\",\n            \"companyName\": \"Horizon Grocery + Wellness\",\n            \"rowSalary\": \"$24.02 an hour\",\n            \"date\": 1694393370002,\n            \"dateOfPosted\": 1693530778651,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2488091,\n                    \"lon\": -122.9805104\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Burnaby, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 25.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    25.0\n                ],\n                \"range\": {\n                    \"gte\": 25.0,\n                    \"gt\": null,\n                    \"lte\": 25.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"JOB SUMMARY: Our Customer Service Representatives provide excellent customer service both internally and externally. They process customer orders through our web portal, over the phone, by fax, and by email, which requires accurate data entry and following detailed procedures. Additionally, they provide product information, promote sales, handle customer questions and challenges, and invoice orders. Strong people skills and written/verbal communication skills are required, as this position involves intensive customer contact, mainly by email/phone. The primary focus will be on customer service regarding our organic and natural grocery and wellness products.  MAIN RESPONSIBILITIES: Customer service: Phone calls and call backs are the number one priority Manage email correspondence and provide excellent follow–up for customer inquiries Represent Horizon in a friendly, professional, and helpful manner to all customers over the telephone and in written email correspondence Help familiarize new customers with our products, policies, and procedures Report details for any invoicing errors or account discrepancies that may arise to the claims department Order entry: Enter orders from all sources – web, handheld, phone, fax, email Confirm details (such as ship date, prepay customers-notifying A/R, ship to addresses, co-ship and order minimums) Knowledge of our product line and of how to access the information pertaining to it, including ingredients, stock level, expected arrival time of out-of-stock items, and popularity of items Review emails and reports regarding recently added, deleted, and clearance items to ensure customers have up-to-date information Review and understand monthly special sheets and volume discounts on specific products Knowledge of shipping companies' areas of service, schedules, and rates to facilitate safe, speedy, and cost-efficient delivery of goods to customers WORKING CONDITIONS: This is a one-year contract, full-time status, (Mon-Fri) based out of our Burnaby office. After one year there may be an opportunity to transition to a permanent position. The rate of pay is $24.02/hour.  QUALIFICATIONS + EXPECTATIONS:  Minimum of 2-years previous order-desk experience in a high volume, fast-paced environment Familiarity with office procedures and accurate data entry Strong computer skills - experience with MS365 and CRM or ERP Excellent verbal and written communications skills, and a polite and positive telephone presence Knowledge of basic “soft” sales techniques (offering substitutions for items that are out of stock or discontinued, and reminders of new or ongoing special deals, where appropriate), and ability to listen to and assess customers' needs and recommend products that would fulfill those needs Ability to remain calm and helpful when a customer is upset A passion for customer service and problem solving Ability to work autonomously and with the team without direct supervision or monitoring Strong sense of self-responsibility and self-awareness Knowledge and interest in the organic and natural industry is an asset SOME OF OUR PERKS AND BENEFITS: Focus on Wellness Extended Medical + Dental (company-paid premiums) EFAP immediately upon hire Paid sick time, including dependent sick time for those with children (up to 13 days per year) Fitness Subsidy Discounted grocery and wellness products and lunch program On-site gym Dog friendly office Scent-free environment Focus on our Community Partnerships with Quest Food Exchange and The Downtown Eastside Women’s Centre Paid volunteer hours Focus on the Environment Transit Subsidy – up to 100% Cycling Subsidy Indoor bike lock up area Recycling + Composting Program Partnerships with Urban Impact and Alvéole, an urban beekeeping company SUBMISSION DEADLINE:September 15, 2023 If you, or anyone you know, is interested, please send a resume with cover letter to: hr@horizondistributors.com(please note on subject line: “CSR Sep 2023”). Horizon is an equal opportunity employer valuing diversity in the workplace. All qualified applicants will receive consideration for employment without regard to race, ancestry, colour, place of origin, gender, gender identity, age, religion, disability, family status, sexual orientation, or any other status or characteristic protected by law. If you require assistance or a reasonable accommodation in any aspect of the application process, please contact the People + Culture department. Note: We thank everyone for their interest but only those advancing to the next stage of the recruitment process will be contacted. Only Lower Mainland candidates considered.About Horizon Grocery + Wellness:Horizon Grocery + Wellness is a leading distributor of organic and natural foods, household products, supplements, and natural personal care items, servicing thousands of locations across Western Canada. We thrive as a market leader via effective partnerships and primary relationships with our valued retailers and suppliers. We are a privately owned, 100% Canadian company with a 150,000 square foot Grocery facility and a 40,000 square foot Wellness facility located in south Burnaby, BC. Horizon Grocery + Wellness is the cornerstone of the Horizon Group, a privately held, Canadian-owned group of companies with distribution facilities servicing over 6000 customers across Canada.\",\n            \"location\": \"Burnaby, BC\"\n        },\n        {\n            \"id\": \"BBCF4B2A93A45FF84E2E2EBB653EA3BE\",\n            \"cityName\": \"The ups store in Dollard-Des Ormeaux, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b416e0189ffc54f2\",\n            \"jobName\": \"Store Associate/Customer Service\",\n            \"companyName\": \"The Ups Store\",\n            \"rowSalary\": \"$14.50–$16.50 an hour\",\n            \"date\": 1694391421699,\n            \"dateOfPosted\": 1665475500070,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4895636,\n                    \"lon\": -73.8205567\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dollard-Des Ormeaux\",\n                \"formattedAddress\": \"Dollard-Des Ormeaux, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dollard-Des Ormeaux\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a hard working individual who has great customer service, positive attitude and a willingness to learn.Deliver exceptional customer service to build trust and provide convenience to the customer.Responsibilities: - Provide knowledgeable business solutions including packaging, shipping and printing- Receive and distribute parcels to mailbox holders and other recipients- Operate store equipment such as Printer/Scanner, Fax machine and more- Utilize computer software to present customer with shipping options and be able to manage outlook emails- Following and understanding standard packaging guidelines; accurately asses materials for shipping- Engage with clients in a friendly and professional manner while listening to their concernsQualifications:- Computer skills (Microsoft Office Apps and others)- Customer Service with strong verbal/written skills- Good sense of multi task- Organize and maintain organized environment- Language : Fluent verbally and written in English and French | (bilingual)Job Types: Full-time, Part-time, PermanentPart-time hours: 25-40 per weekSalary: $14.50-$16.50 per hourBenefits:On-site parkingPaid time offStore discountSchedule:8 hour shiftMonday to FridayOvertimeSupplemental pay types:Overtime pay\",\n            \"location\": \"Dollard-Des Ormeaux, QC\"\n        },\n        {\n            \"id\": \"4AEB2449D48AD2220C1B264E2D2773C2\",\n            \"cityName\": \"Renfrew, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1416564c231b24cb\",\n            \"jobName\": \"Clerk, Customer Service\",\n            \"companyName\": \"George Jackson Toyota\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694391346136,\n            \"dateOfPosted\": 1692668759600,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4749199,\n                    \"lon\": -76.6877186\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Renfrew\",\n                \"formattedAddress\": \"Renfrew, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Renfrew County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Renfrew\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 3 months to less than 1 yearExperience: 1 year to less than 2 yearsor equivalent experience Work setting Business sector Tasks Access and process information Answer inquiries and provide information to customers Perform general office duties Computer and technology knowledge Database software Internet Security and safety Driver's validity licence check Driving record check (abstract) Transportation/travel information Valid driver's licence Work conditions and physical capabilities Attention to detail Fast-paced environment Tight deadlines Work under pressure Personal suitability Punctuality Client focus Organized Reliability Team player Screening questions Are you currently legally able to work in Canada? Do you have previous experience in this field of employment? Health benefits Dental plan Health care plan Long term benefits Group insurance benefits Life insuranceWork Term: PermanentWork Language: EnglishHours: 37.5 to 44 hours per week\",\n            \"location\": \"Renfrew, ON\"\n        },\n        {\n            \"id\": \"A953E6F6168665279A4243FBE8070DAB\",\n            \"cityName\": \"1 Warman Rd, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2bfc21755dd9a506\",\n            \"jobName\": \"Customer Service Specialist - 1 Warman Road\",\n            \"companyName\": \"Future Transfer Co. Inc.\",\n            \"rowSalary\": \"$22–$25 an hour\",\n            \"date\": 1694390420054,\n            \"dateOfPosted\": 1694390419872,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8908479,\n                    \"lon\": -97.07216249999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Warman Rd, Winnipeg, MB R2J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service SpecialistLocation: 1 Warman Road, Winnipeg, MBOur People Can Tell the Future. Maybe You Can Too.Who are we?We are a warehousing and transfer company that brings pride and excellence to the market every day. We bring innovation that’s authentic and measurable as well as bringing leadership to community priorities in equal unison with our corporate priorities. We recognize our core strength is ingenuity, which is a human resource that renews through encouragement and development. We are twenty-first century accomplishment leaders; inside, safety side and market side.ISO certified; Future Transfer is an essential network of specialist services for an agriculture sector with sophisticated challenges. Strategic national warehousing, next level logistics, tolerance specific custom formulation, packaging, transloading, and a fully inclusive company-wide think-tank of empowered solution achievers.Future Transfer is a growing story; join us and tell your part.Why work for us?Competitive wagesPremium health benefitsPremium RRSP & matched contributions planEmployee Assistance ProgramCompany supplied uniforms, PPE & safety shoesPaid vacationCompany lunchesCompany promotional items throughout the yearShort term disability and long-term disabilityContinued growth and development of our people & our businessWho are we searching for?We are looking for a Customer Service Specialist to join our growing Future Transfer team.Job Duties:Create and maintain strong relationship with customersEnter all production, transfers, and bulk receipts into appropriate computer systems and spreadsheets as required by customersField customer orders, inquiries, and serviceHelp manage warehouse inventory through customer demandMaintain accuracy of records through daily, weekly and monthly reportingPerform clerical duties, such as filing, record keeping and schedulingAssist in solving inventory, delivery, and order discrepanciesMaintain up to date customer filesCreate Bills of Lading and prepare required shipping documentationAssist in warehouse operations, when requiredProviding the appropriate paperwork to customersOther related duties as required or assignedRequired Knowledge:Strong computer skills and ability to operate within Microsoft Office suite of products, and other computer systemsStrong attention to detailProven ability to manage multiple tasks and tight timelines in a professional mannerEffective communication skills to interact with external customers and individuals at all levels of the organizationAble to work efficiently as part of the team as well as independentlyAbility to use general office equipmentStrong work ethic and positive team attitudeRelated manufacturing/industrial customer service/shipping/receiving work experience of 3 – 5 years requiredWorking Conditions:Manual dexterity required to use desktop computer and peripheralsOvertime as requiredLong periods of sitting, some standingVariable environment as may be required to spend time in the warehouse when resolving issuesSafety is our priority, both the starting point and foundation for all aspects of our business operations. Safe transport and storage of products, safe operational practices and safe working conditions enable us to protect our employees, customers, suppliers, and the environment.To read more about our successes and what we do, please visit: www.futuretransfer.comWe thank you for your interest in careers at Future Transfer.Click apply to submit your resume!Job Types: Full-time, PermanentSalary: $22.00-$25.00 per hourBenefits:Dental careDisability insuranceEmployee assistance programExtended health careLife insurancePaid time offRRSP matchVision careSchedule:Day shiftSupplemental pay types:Overtime payExperience:manufacturing customer service/shipping/receiving: 3 years (required)Work Location: In person\",\n            \"location\": \"Warman Rd, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"EEC09322B0639306A706C579388CEBEB\",\n            \"cityName\": \"1547 Merivale Road, Nepean, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d98d3a28b9d8384d\",\n            \"jobName\": \"Inbound Customer Service Representative (Bilingual Required)\",\n            \"companyName\": \"Costco Wholesale Canada\",\n            \"rowSalary\": \"From $18.50 an hour\",\n            \"date\": 1694390167986,\n            \"dateOfPosted\": 1693531126246,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.3403612,\n                    \"lon\": -75.72727069999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Merivale Rd, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Costco Wholesale, we’re dedicated to providing our members with the highest level of customer service. We are looking to add dynamic and personable individuals to our growing team of inbound contact centre agents.Look forward to:A fun, fast-paced environmentThe opportunity to help others by offering excellent member serviceContinued coaching/training to help you reach goalsPersonalized mentorshipWe’re looking for candidates who are:Customer-service minded – Contact centre agents are our members’ first point of contact.Flexible – Scheduling to cover our hours of operation and changing priorities.Tech-savvy – We use a variety of computer applications and resources to research each member’s inquiry. Proficiency in online ordering, Gmail and Google Drive are assets.Patient – Our members deserve the best service.Organized – To determine the best solution.Able to communicate effectively – Active listening is key and written responses must be clear.Daily tasks:Responds to member inquiries in a courteous and professional manner by phone and email for Costco.ca deliveries. Helps members with online ordering through the website as required. Areas of inquiry include website navigation, order placement and delivery follow-up.Keys notes to computer membership record to document action or conversation. Keys notes to phone system log to classify call resolution.Operates as a liaison between members, vendors, buying and operations employees.Responds to member concerns using problem-solving skills, tact and discretion.Escalates calls to supervisor.Processes a high volume of emails and incoming phone calls.Meets department daily in-bound contact goals.Confirms member addresses, phone numbers, items purchased and quantities.Maintains the quality and consistency of written and oral communications.Languages:Candidates must be able to communicate in English (oral and written).Bilingualism is required.Job Types: Part-time, SeasonalContract length: 6 monthsPart-time hours: 0-40 per weekSalary: From $18.50 per hourBenefits:Casual dressDental careEmployee assistance programExtended health careLife insuranceOn-site parkingPaid time offRRSP matchSchedule:Day shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payAbility to commute/relocate:Nepean, ON K2G 4V3: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Language:Fluent English and French (required)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Merivale Road, Ottawa, ON\"\n        },\n        {\n            \"id\": \"63714B54BA6541A8D90079F72D3CC5F3\",\n            \"cityName\": \"3045 Baseline Road, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fce2a438d0e9bf2f\",\n            \"jobName\": \"Call Center Agent - Part-Time\",\n            \"companyName\": \"Queensway Carleton Hospital\",\n            \"rowSalary\": \"$24.18 an hour\",\n            \"date\": 1694390135913,\n            \"dateOfPosted\": 1693545766378,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.3530553,\n                    \"lon\": -75.7594363\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Baseline Rd, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 25.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    25.0\n                ],\n                \"range\": {\n                    \"gte\": 25.0,\n                    \"gt\": null,\n                    \"lte\": 25.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"General Posting InformationPOSITION: Call Centre Agent DEPARTMENT: Call Centre CONDITIONS: Part-time (0.40 FTE) HOURS: Approximately 30.0 Bi-weekly Hours SHIFTS: Days / Evenings / Nights / Weekends  7.5. hours & 11.25 hours per shift (subject to change) WAGE RANGE: Scale Minimum Maximum  NONU $24.18/hr $29.01/hr RESPONSIBILITIES:Answering and redirecting telephone calls and visitors at the main reception counterOperating ancillary communication systems in order to process emergency codesRespondig to all alarma and contacting the appropriate parties in case of emergencyPerforming clerical duties including but not limited to: preparing envelopes, updating Critical, keeping an updated tracking list of loaner pagersPaging staff and physicians and maintaining accurate paging logsProcessing all emergency code proceduresDemonstrate QCH values, collaboration, accountability, innovation, respect Please note: The 24 hour per day operation is divided into shifts and is of \\\"constantly interrupted\\\" nature, ofter requiring working long periods in a seated position. REQUIREMENTS:Grade 12 education6 months experience using a swtichboardKnowledge of medical terminologyWorking knowledge of MS Word, Excel, Microsoft Outlook and MeditechMust be familiar with all Hosptial Policies and Procedures and be capable of handling all phases of Hospital communcationsAbility to deal calmly with emergency situationsExcellent interpersonal skills to be able to communicate effectively in both oral and written format with Call Centre Staff, Hospital Staff, physicians, nursing and paramedical staff on matters relating to Call CentrePlease note that according to the Ontario Health and Queensway Carleton Hospital Vaccination Policy, all applicants must be fully vaccinated unless they can provide the proof of a valid medical contraindication or exemption on the basis of protected grounds under the Ontario Human Rights Code in order to be considered for any staff or volunteer opportunities. Upon hiring, applicants must provide the proof of either government issued documentation proving they have been fully vaccinated, or present supporting documentation of a valid medical contraindication or exemption under Ontario Human Rights Code.Thank you for your continued interest in Queensway Carleton Hospital. We deeply value and celebrate the principles of equity, diversity, inclusion, and belonging, as they are integral to the enrichment of our work environment. We believe that by fostering an inclusive and diverse community, we can achieve our mission of providing exceptional healthcare services to all individuals with compassion and respect. We encourage applicants from all backgrounds to apply. We welcome those who would contribute to the further diversification of our organization including, but not limited to women, racial or ethnic minorities, First Nations, Inuit, and Métis peoples, persons with Disabilities, and 2SLGBTQI+ communities. At Queensway Carleton Hospital, we are committed to ensuring accessibility and accommodating the needs of all candidates throughout the entire selection process. Our dedicated recruitment team is readily available to assist individuals with any inquiries or concerns regarding accessibility and accommodations at any stage of our recruitment process. We invite you to reach out and let us know how we can best support you. We look forward to welcoming diverse talent into our team and continuing to make a positive impact in the lives of our patients and the communities we serve.\",\n            \"location\": \"Baseline Rd, Ottawa, ON\"\n        },\n        {\n            \"id\": \"603B86F50F4D5D464D9E5DD7D9F9B3BA\",\n            \"cityName\": \"26557 Civic Centre Rd, Keswick, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e99469ec3464b6c1\",\n            \"jobName\": \"Roc Customer Service Representative\",\n            \"companyName\": \"Town Of Georgina\",\n            \"rowSalary\": \"$16.55 an hour\",\n            \"date\": 1694390124359,\n            \"dateOfPosted\": 1693545758533,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2985236,\n                    \"lon\": -79.4389406\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Georgina\",\n                \"formattedAddress\": \"Civic Centre Rd, Georgina, ON L0E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Georgina\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ROC Customer Service Representative (Posting #2023.99S) Department: Community Services Division: Recreation Services Location: The ROC Status: Seasonal (December 4, 2023 – April 5, 2024) Hours of Work: 4 – 25 hours per week (4 – 8 hours per day) Number of Positions: 5 – 10 Hourly Wage: $16.55 per hour Training Rate: $16.55 per hour Date Posted: August 15, 2023 Date Closing: October 15, 2023 Come work with us! Employment with the Town of Georgina offers an opportunity to make a positive difference in our community. We are a progressive, forward-thinking organization focused on continuous improvement, innovation and providing exceptional customer service. We offer a collaborative team environment and an excellent place to take charge of your career.Position Purpose Responsible for ticket sales, rentals, cash handling and customer service. For full details, please see attached job description.Minimum QualificationsKnowledge of all ticketing and sales options;Excellent customer service skills to deal effectively with the general public;Strong organizational skills;Responsible, courteous, good communication skills;Effective conflict resolution, problem solving and critical thinking skills; For full details, please see attached job description How to apply Qualified applicants are invited to submit a resume and cover letter, identifying the Job Title and Job ID#. Please apply by visiting the www.georgina.ca/careers no later than 11:59 pm on the closing date. The assessment process may include a practical test and/or interview. Committed to diversity and a barrier-free environment The Town of Georgina is an equal opportunity employer committed to inclusive, barrier-free recruitment and selection processes and work environments. We encourage applications from people with disabilities and will accommodate the needs of applicants under the Ontario Human Rights Code and the Accessibility for Ontarians with Disabilities Act (AODA) throughout all stages of the recruitment and selection process. Please advise the Human Resources Team if you require an accommodation(s) and we will work with you to meet your needs throughout any stage of the process. Please be advised that this information will be treated in a confidential manner. We thank all candidates for their interest, however only those being considered will be contacted. Personal information collected will be used in accordance with the Municipal Freedom of Information and Protection of Privacy Act for the purpose of candidate selection. Further information concerning the collection of personal information should be directed to the Human Resources Manager, Town of Georgina, 26557 Civic Centre Road, Keswick, ON L4P 3G1 (905) 476-4301 JOB DESCRIPTION Title: ROC Customer Service Representative Position #: SE6 Department: Community Services Division: Recreation Services Reports To: Recreation Services Supervisor Direct Reports: None Date Created: September 12, 2011 Date Amended: August 10, 2023 Employee Group: Seasonal Position Summary Responsible for ticket sales, rentals, cash handling and customer service. ResponsibilitiesDemonstrates a high level of customer service and provides this service on the front-line of operation and does so in an efficient, courteous and respectful manner;Daily operation of the ticketing office, including lift ticket, season pass, lesson and helmet rental sales & inquires;Supports guests with proper helmet fittings and ensures that all helmets are returned and inspected for future use.the accurate completion of liability waiver, helmet and locker rental forms as well as securing and returning of security/damage deposit;Processes all point of sale purchases, and handles cash, credit and debit transactions in an accurate manner and balances daily sales to align with computer reports;Follows all specified cash handling procedures including; float reporting, cash reconciliation, and cash depositing.Answers all in person and telephone inquiries and responds to voicemails in a timely manner;Assists with cafeteria attendant duties as required (see ROC Cafeteria Attendant job description for further details);Participate in the Town’s Health and Safety Program and follow safety practices in work methods and procedures; observes and complies with all relevant Health & Safety regulations.Immediately report all, concerns, suspicious occurrences and hazardous conditions to the Recreation Services Supervisor or designate. The above statements reflect the general details considered necessary to describe the principal functions and duties of the position and will not be construed as a detailed job description of the work requirements that may be inherent in the job. Skill/Knowledge RequirementsKnowledge of all ticketing and sales options;Experience working in a recreational and/or customer service setting considered an asset;Knowledge of the ActiveNET and Fareharbor software systems considered an asset;Responsible, courteous, good communication skills;Ability to work independently without close supervision;Effective conflict resolution, problem solving and critical thinking skills;Excellent customer service skills to deal effectively with the general public;Must be available to work flexible hours including daytime, evenings, weekends and holidays;Previous cash handling experience with accurate cash handling skills;Strong organizational skills;\",\n            \"location\": \"Civic Centre Rd, Georgina, ON\"\n        },\n        {\n            \"id\": \"1C302E2B5A6A0FFE7C93BB56F272CE5D\",\n            \"cityName\": \"19 Norm Newman Dr, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1428735f380e16cd\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Russell Lake Animal Hospital\",\n            \"rowSalary\": \"From $23.50 an hour\",\n            \"date\": 1694387711601,\n            \"dateOfPosted\": 1694387710776,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6696568,\n                    \"lon\": -63.5283615\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Norm Newman Dr, Dartmouth, NS B2W, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"As a privately owned hospital, we strongly believe in investing in our employees. We provide opportunities for professional growth and ensure that their whole wellbeing is taken care of by offering a living wage and benefits.Who are we looking for?We are looking for someone that is outgoing and has strong client relations skills. Someone who is committed to excellence in their work habits, in pursuing knowledge and education and that is motivated to help us grow our hospital.Qualifications:– Customer Service: 2+ year (required)– Veterinary Medicine Experience: 2+ years (preferred)– Administrative Experience: 2+ year (preferred)– Experience and LSHR silver certification are an asset but not required.– Education or experience in related fields is also considered an asset.– A positive attitude, the ability to stay calm, and critical thinking skills are required.What does a Client Service Representative do?Our Client Care Reps are the face of our hospital as they are the first point and last point of contact for our clients. Their role is vital to the success of our hospital as they set the tone for client interactions and conversations.– Answer phone calls– Schedule appointments– Process payment– File documents electronically– Stock shelves– Additional administrative & housekeeping dutiesWhat we offer:– Continuing Education opportunities in Hospital and outside– Uniform Shirts– 2 Weeks Paid Vacation– Staff Discounts– Health BenefitsStart Date: ASAPApplications without a cover letter or that do not complete the skills tests will not be considered.Job Types: Full-time, PermanentSalary: From $23.50 per hourBenefits:Dental careExtended health carePaid time offVision careCOVID-19 considerations:We require staff to be vaccinated for Covid-19.Our Covid Protocols can be found here: https://russelllakevet.com/covid-19-protocols/Ability to commute/relocate:Dartmouth, NS: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 3 years (required)Veterinary Medicine: 2 years (preferred)Administrative: 2 years (preferred)Work Location: In person\",\n            \"location\": \"Norm Newman Dr, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"C6D43F1FFB85D332A5798D513FE15557\",\n            \"cityName\": \"404 May St N, Thunder Bay, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0b00c7cab4b9eb4f\",\n            \"jobName\": \"Customer Service/Back Room Associate (Part-Time)\",\n            \"companyName\": \"Community Clothing Assistance\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694387708823,\n            \"dateOfPosted\": 1690387858486,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.39201449999999,\n                    \"lon\": -89.2455198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Thunder Bay\",\n                \"formattedAddress\": \"May St N, Thunder Bay, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Thunder Bay District\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Thunder Bay\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Part-Time leading to Full-Time Opportunity: Community Clothing Assistance is looking for a Customer Service Associate. Successful candidates will have previous transferable experience. Experience dealing with the public, conflict resolution, taking initiative, and problem-solving would be considered assets as well.Do you value integrity and teamwork? Are you willing to grow with a local charity? We welcome qualified candidates to submit their applications to this advertisement.Application Deadline: As soon as possibleOPEN TO THE PUBLICLocation: 404 N May StreetThunder Bay, ON P7C 3R5Hours: Monday - Friday 11 am to 5 pmSaturday 12 pm to 5 pmSunday ClosedPhone: 474 - 3583Website: https://clothingassistance.com/main_website/#thunderbaynowhiring#jobsthunderbay#thunderbaychairty#communityclothingassistance#thunderbaysmallbusiness#thunderbay#thunderbaybusiness#wearehiringJob Type: Part-timeSalary: From $15.50 per hourSchedule:8 hour shiftDay shiftMonday to FridayWork Location: In person\",\n            \"location\": \"May St N, Thunder Bay, ON\"\n        },\n        {\n            \"id\": \"532A5406154F8F40D3FE7D80823FA386\",\n            \"cityName\": \"101-11920 100 St, Grande Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4d503cdf925b03db\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Bullets & Broadheads Shooting Center\",\n            \"rowSalary\": \"$15–$20 an hour\",\n            \"date\": 1694386317612,\n            \"dateOfPosted\": 1694386317446,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.1745974,\n                    \"lon\": -118.8025315\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grande Prairie\",\n                \"formattedAddress\": \"10404 102 St, Grande Prairie, AB T8V 2W3, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grande Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our customer service role involves providing assistance, support, and guidance to customers seeking firearms, ammunition, archery, and related accessories. The primary objective of this role is to ensure that customers have a positive and safe experience while adhering to all relevant laws and regulations surrounding firearms sales.Key responsibilities of a customer service representative in a gun shop will include:Product Knowledge: Acquiring a comprehensive understanding of the various firearms, ammunition, and accessories available for sale. This includes being up-to-date on the latest models, features, and safety measures.Customer Assistance: Engaging with customers in a friendly and approachable manner, answering their questions, and helping them find products that best suit their needs and preferences.Safety Education: Emphasizing the importance of firearm safety and responsible ownership to customers, including proper storage, handling, and use.Compliance: Ensuring strict adherence to all federal, provincial, and local laws and regulations governing the sale of firearms. This includes conducting background checks and verifying customers' eligibility to purchase firearms.Sales and Transactions: Assisting customers with the purchasing process, guiding them through the necessary paperwork, and ensuring all required documentation is completed accurately.Range Services: If the gun shop has an associated shooting range, customer service representatives may provide information on range memberships, scheduling shooting sessions, and offering basic shooting tips.Troubleshooting: Addressing any issues or concerns customers may have with their purchased firearms or accessories and assisting them with resolving problems.Inventory Management: Keeping track of stock levels, ensuring products are properly displayed, and reordering merchandise as needed.Customer Relations: Building strong relationships with customers, fostering a welcoming and inclusive atmosphere in the store, and addressing any customer feedback or complaints.Continuous Learning: Staying informed about industry trends, attending training sessions, and participating in professional development opportunities to enhance product knowledge and customer service skills.In this role, exceptional interpersonal skills, knowledge of firearms, and strict adherence to safety and legal regulations are essential to providing excellent customer service while promoting responsible firearm ownership.Job Type: Full-timeSalary: $15.00-$20.00 per hourBenefits:Casual dressCompany eventsDental careExtended health careFlexible scheduleLife insuranceOn-site parkingStore discountFlexible Language Requirement:French not requiredSchedule:Monday to FridayWeekends as neededAbility to commute/relocate:Grande Prairie, AB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Licence/Certification:RPAL (preferred)Shift availability:Day Shift (preferred)Work Location: In personApplication deadline: 2023-09-17Expected start date: 2023-09-20\",\n            \"location\": \"St, Grande Prairie, AB\"\n        },\n        {\n            \"id\": \"D62E0816C0CF1F7D6C259A38D41B38CB\",\n            \"cityName\": \"3812 7 St SE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ae348ab8fefb77cf\",\n            \"jobName\": \"Customer Service Labour\",\n            \"companyName\": \"1-800-Got-Junk?\",\n            \"rowSalary\": \"$22–$24 an hour\",\n            \"date\": 1694386127584,\n            \"dateOfPosted\": 1694386127420,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.96843759999999,\n                    \"lon\": -113.9758168\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"40 St SE, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"ZAG Community of Businesses is the parent company to seven 1-800-GOT-JUNK? franchises across North America, headquartered in Calgary, AB.Hiring Immediately! Apply today and start this or next week.1-800-GOT-JUNK?, our motto is “Want More, Work Happy”. We hire happy people that enjoy our awesome team environment, like the variety of the work we do, and are excited to grow their skills to become more. We offer what very few companies can.Truck Team Members - Driver, Labor, & Customer ServiceHiring immediately for: Full-Time & Part-Time (weekday & weekend shifts available)Pay: $17/hr base + tips + bonuses (avg $22 - $24/hr all in with base pay, tips, bonuses, and other incentives).Availability: Part-Time & Full-Time (employees choice) We operate Mon-Sun starting at 7:30am. For Full-Time, we offer 4 days on, 3 days offLocation: Office based in Calgary - SE. Our trucks are available for pickup city-wide!We're a fun and fast-paced operation that helps people in our community get rid of unwanted items, responsibly. And, we do it like no one else with our professional, on-time service, clean shiny trucks and friendly uniformed team.With 1-800-GOT-JUNK? each day is different. Here’s what you’ll be doing:Alongside another Truck Team Member, you'll operate the company vehicle (no special driver's license required) on assigned service routes for the dayProviding excellent customer service when you're onsite to remove the items or give them an estimate that they've requested and educating them on our servicesRetrieving, transportation, and disposal of unwanted items, responsiblyQualifications & Requirements:You’re 19+ years of age (required for insurance purposes)You have a great attitude, are reliable, and hardworkingA valid full class 5 driver’s license & good driving recordPhysically able to lift/carry 50 pounds repeatedly over a full shiftPrevious experience in general labor, customer service, driving, and/or sales is a plus, but isn’t required - we train happy, hardworking individuals.Successful applicants will hear from us within 2 business days. We conduct onsite or remote interviews at your earliest convenience and extend job offers within 24-hours of successful interviews. Apply today - we move fast with great people!Thank you for your interest in 1-800-GOT-JUNK?\",\n            \"location\": \"St SE, Calgary, AB\"\n        },\n        {\n            \"id\": \"09F41E9301C4D806BA4DEB68DE1E2140\",\n            \"cityName\": \"Outpost Mini Donut Company in Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d6a9093a4ac2d41d\",\n            \"jobName\": \"Customer Service RepresentAtive/Team Member At Outpost Mini Donut Company\",\n            \"companyName\": \"Outpost Mini Donut Company\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694386100718,\n            \"dateOfPosted\": 1686882458872,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1665898,\n                    \"lon\": -123.133569\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Richmond, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for an enthusiastic and energetic part-time team member to join us. If you have proven customer service experience and are interested in working in a fun and relaxed setting, we would like to hear from you. The position works well for a post-secondary or high school student looking for part-time hours.Outpost Mini Donut Company is an independently owned mini donut shop located in Steveston, BC. The shop benefits from walk through traffic, corporate and personal orders, and is a go-to destination for gourmet mini donuts.The ideal candidate must be able to work in a fast paced environment and provide exceptional customer service. You will be required to work both independently and in a team environment operating all facets of the store, including but not limited to:-opening/closing of the store (independently)-operating mini donut machine and decorating donuts-operating POS system-serving customers with exceptional customer service-cleaning of shopAs the workflow can be fast paced, you must be able to multi-task and prioritize your duties, at times by yourself.Applicants can except onsite training as well as a flexible work schedule. The schedule is prepared weeks in advance and set work days are often assigned depending on availability.Preference will be given to local Richmond/Steveston residents who are familiar with the area and local businesses. Previous customer service experience in the food industry is also an asset.Please provide your weekday availability when applying. At the moment, we are only looking for applicants that will continue to have availability into the next school year. Thank you!Job Type: Part-timePart-time hours: 10-12 per weekSalary: $16.75 per hourBenefits:Casual dressSchedule:Day shiftMonday to FridayWeekend availabilitySupplemental pay types:TipsApplication question(s):Please describe your previous work experience as it relates to this job.Are you located in Richmond/Steveston?What is your availability this summer and fall/winter season?Work Location: In person\",\n            \"location\": \"Richmond, BC\"\n        },\n        {\n            \"id\": \"D364365BB0021601460E345DAE467844\",\n            \"cityName\": \"REPUBLIC PACKAGING CORP in Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4e78eb96a3622f84\",\n            \"jobName\": \"Customer Service Representative Ii\",\n            \"companyName\": \"Republic Packaging Corp\",\n            \"rowSalary\": \"From $60,000 a year\",\n            \"date\": 1694386028312,\n            \"dateOfPosted\": 1694386028109,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 60000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    60000.0\n                ],\n                \"range\": {\n                    \"gte\": 60000.0,\n                    \"gt\": null,\n                    \"lte\": 60000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OverviewThe Customer Service Representative II is responsible for interacting with the company's customers and addressing inquiries, requests, resolving complaints and processing customer orders. A part of site Operations, the role is responsible for ensuring that customers receive a high level of attention and that any customer related gaps are escalated and/or corrected.ResponsibilitiesPoint of escalation for key accounts and requirements outside of existing parameters.Liaises with production and upper management on critical issues.Resource for sales and operations when considering new, large opportunities.Interacts with customers via telephone, email, or in person to provide support and information on products or services.Collects and enters orders for new or additional products or services.Builds rapport with customers and works to ensure they receive excellent service.Updates customer information and requirements as necessary.Uses company ERP system to retrieve necessary customer information, inventory information, and purchase order status.Provides back-up support in other functional areas.Fields customer questions and complaints - when the issue is beyond the representative's knowledge, escalates to the appropriate individual.Ensures that appropriate actions are taken to resolve customers' problems and concerns.Maintains customer accounts and records of customer interactions with details of inquiries, complaints, or comments.Performs regular reviews of customer consumption against min/max levels and engages appropriate individuals and processes when adjustments are needed.Performs other related duties as assigned.Requirements4-year college degree in Business or related area.5+ years of experience in an advanced customer service role.Experience in the packaging industry a significant plus.Excellent organizational skills and attention to detail.Excellent communication and interpersonal skills.Service-oriented and able to resolve customer grievances.Ability to maintain good customer relations.Excellent computer skills with an ability and willingness to learn and adapt to ERP systems and processes.Job Type: Full-timeSalary: From $60,000.00 per yearBenefits:Dental careSchedule:Monday to FridayMorning shiftWeekends as neededAbility to commute/relocate:Mississauga, ON: Reliably commute or planning to relocate before starting work (Required)Education:Bachelor's (Required)Work Location: In person\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"1FD7FF2F070B36587980AC9EA6096F5E\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=48384c8b0030d513\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Henry & Debbie's Coffee @ Calgary Farmers' Market South\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694385184711,\n            \"dateOfPosted\": 1693536497790,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are currently looking for an enthusiastic Barista / Customer Service Assistant to join us at our Calgary Farmers’ Market SOUTH location. If you are passionate about coffee and enjoy working with people in a fun environment, please send us your resume.Barista experience although desirable, not required.At this time we are looking for baristas interested in working BOTH weekend days (Saturdays and Sundays).Calgary Farmers' Market SOUTH @ 510 77 Ave SE.Job Type: Part-timeSalary: From $18.00 per hourWork Location: In person\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"34DE1EDD3767EC67A0A04A00650A44DF\",\n            \"cityName\": \"Milton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=195101a147927be8\",\n            \"jobName\": \"Financial Customer Service Representative\",\n            \"companyName\": \"Pay2day\",\n            \"rowSalary\": \"$16.50–$18.00 an hour\",\n            \"date\": 1694385001358,\n            \"dateOfPosted\": 1690301765306,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5182991,\n                    \"lon\": -79.8774042\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Milton\",\n                \"formattedAddress\": \"Milton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Milton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you interested in growth, development, and leadership? If you are, join our team because you are exactly who we’re looking for! Pay2Day is a rapidly growing company with endless opportunities for career advancement.Additional characteristics of our team members include:Customer focused; Check us out on Google and Trust Pilot. Our customers love us, and we LOVE them! We do what’s right for our clients when it counts, not what’s easy.Team players; We all succeed together and want the best for everyone on our team.Goal oriented; We care about our results and understand that the performance of our company is a reflection of us.Outgoing; Team members participate in community events, talk to potential clients, and regularly perform local marketing tasks.Open to feedback; Team members at all levels have an open door policy. Feedback makes us stronger as individuals and employees.Hard working; Our team members will do whatever it takes and more to get the job done. Our high performing team actively looks for solutions. We only focus on the barriers to understand how to break them down.Flexibility; Our Stores are open 7 days a week with varying hours. Our team members need to be available for varying shifts throughout the week.Innovative; Our team is full of tech savvy, creative people who think outside the box, will communicate new ideas and embrace change.Detail Oriented; Both internal and external clients matter so we take care in how and what we do in order to continually exceed expectations.If this sounds like a fit for you, we cannot wait to meet you!Your responsibilities will also include:Cash handling/teller responsibilitiesOpening/closing the branchPerforming daily calls to remind clients of payment arrangementsReviewing applicants/completing financial risk assessment to determine approvalsResponding to client inquiries/Information requests by both in store and virtual clientsCollaborate with various departments to maximize profit while focusing on exceptional customer service and salesFocusing on client retentionMarketing/growing the businessCandidate must have a broad availability as this is a 7 day a week operation. Must be available to work days, evenings and weekends to meet our client’s business needs.Pay2Day welcomes and encourages applications from people with disabilities. Accommodations are available upon request for candidates taking part in all aspects of the selection process.For more information about our company, visit www.pay2day.ca and check out our locations!Job Types: Full-time, PermanentSalary: $16.50-$18.00 per hourFlexible Language Requirement:English not requiredSchedule:8 hour shiftSupplemental pay types:Overtime payEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Milton, ON\"\n        },\n        {\n            \"id\": \"11EF271FCE7D1CAB92482E4F30A0E721\",\n            \"cityName\": \"19 City View Dr Unit 1, Etobicoke, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a5e52e413a5f28da\",\n            \"jobName\": \"Customer Service/Office Co-Ordinator\",\n            \"companyName\": \"Torbram Fire Protection\",\n            \"rowSalary\": \"$24–$30 an hour\",\n            \"date\": 1694384492719,\n            \"dateOfPosted\": 1693537593706,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6971555,\n                    \"lon\": -79.5857856\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"City View Dr, Toronto, ON M9W, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Join our team as a Office Co-Ordinator with Customer Service experience and play a vital role in providing exceptional service to our valued customers. As a Customer Service Representative, you will have the opportunity to interact with customers, analyze their needs, and provide them with the best solutions. We offer a supportive work environment, competitive compensation, and opportunities for growth within the company.If you are passionate about delivering outstanding customer service as well as co-ordinate with office staff and enjoy working in a fast-paced environment, we would love to hear from you. Apply today to join our team!You will be the first point of contact for our customers and maintain positive working relationships with our customers. In this role you can expect to perform a combination of the following:Duties and Responsibilities:Strong communication and problem-solving skills with a focus on delivering an excellent customer service experienceSelf-motivation, detail-orientation and the ability to multitask.Accurate typing and keyboard skills; comfort with PC/internet navigationCommunicate with customers through various channels to acknowledge and resolve complaints or respond promptly to inquiries.Maintain detailed product knowledge to effectively answer customer questions.Communicate and coordinate with colleagues in a positive manner.Keep records of customer interactions, transactions, comments, and complaints.Review, evaluate and implement new administrative proceduresEstablish work priorities and ensure procedures are followed and deadlines are metCarry out administrative activities of establishmentQualifications:Experienced in customer service/ call center ideally within a Fire Protection company.1-3 years’ experience in sprinklers/fire protection is preferred.Possesses exceptional communication skills, both verbal and written.Able to work with a high volume of calls and inquiries.Able to take direction and work in a team environment (professional, tactful, diplomatic)Excellent communication and interpersonal skills.Product knowledge of the Fire Protection industry is required.Strong knowledge and aptitude of Microsoft applications (i.e. Microsoft Office)Highly organizedand able to work under pressure.Strong verbal and written communication and people skills, including a proven ability to build relationshipsExcellent at planning and organizingKnowledge of building standards and requirements coupled with sound technical knowledgeKnowledge of local building code & NFPA requirements.Strong analytical, problem-solving & negotiation skillsFlexible and can adapt to change.Job Type: Full-timeSalary: $24.00-$30.00 per hourBenefits:Extended health careFlexible Language Requirement:French not requiredSchedule:Monday to FridayAbility to commute/relocate:Etobicoke, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 3 years (required)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In personApplication deadline: 2023-09-10Expected start date: 2023-09-11\",\n            \"location\": \"City View Dr, Toronto, ON\"\n        },\n        {\n            \"id\": \"6ED18B196E4C840CABD1EFA30F7E9C8B\",\n            \"cityName\": \"1300 Woolridge Street, Coquitlam, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d808381694fa0d4b\",\n            \"jobName\": \"Customer Service (Full-Time)\",\n            \"companyName\": \"Crash Crawly's/Ninja Tag\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694384157842,\n            \"dateOfPosted\": 1693535866176,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2329442,\n                    \"lon\": -122.8591801\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Coquitlam\",\n                \"formattedAddress\": \"Woolridge St, Coquitlam, BC V3K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Coquitlam\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Crash Crawly's is an indoor children's play centre and Ninja Tag is the latest gamified experience located in Coquitlam.We are looking for outgoing and energetic individuals who enjoy dealing with customers and children in a fast paced environment to join our team.Currently we are looking to hire for a FULL-TIME position.WORK DAYS will be MONDAY to FRIDAY. (*Work days are subject to change if required.)The daily shift will be an 8 HOUR SHIFT either 12pm-8pm or 2pm-10pm.Skills/Experience: operating a point-of-sale, handling cash, customer service and cleaning of the facility.Job Type: Full-timeSalary: $16.75 per hourSchedule:8 hour shiftEducation:Secondary School (preferred)Experience:Customer Support & Client Services Occupations: 1 year (preferred)Work Location: In personExpected start date: 2023-09-11\",\n            \"location\": \"Woolridge St, Coquitlam, BC\"\n        },\n        {\n            \"id\": \"073F2543B1829945850038577B9CF536\",\n            \"cityName\": \"875 St James St Unit 3, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=55f6af13b5243aa9\",\n            \"jobName\": \"Work At Home Customer Service RepresentAtive (French Bilingual) [Ats36-15]\",\n            \"companyName\": \"Intouchcx\",\n            \"rowSalary\": \"$16–$22 an hour\",\n            \"date\": 1694384091185,\n            \"dateOfPosted\": 1693523999751,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8878595,\n                    \"lon\": -97.202473\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"810 St James St Unit A, Winnipeg, MB R3G 3J7, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About IntouchCXIntouchCX is a global leader in customer experience management, digital engagement, and technology solutions. With over 20 years of experience, 18,000+ team members, and campuses around the globe, we obsess about our clients by providing remarkable customer experiences for the world’s most innovative brands.IntouchCX has been recognized as one of the Best Employers for Diversity in 2022 by Forbes and Statista Inc. This recognition comes after IntouchCX was named by Forbes as one of America’s Best Large Employers for 2022, and a Top Employer for New Grads.About the JobWe are currently hiring Inbound French Bilingual Work at Home Inbound Customer Service Representatives!Are you a problem solver? Do you like making meaningful connections with people? Are you interested in a rewarding career working with the world’s most exciting brands from the comfort and safety of your own home?Our Work at Home Customer Service Representatives (French Bilingual) are passionate about delighting customers by making every interaction an unforgettable experience - whether that’s through inbound calls, emails and/or chats. We want people with personality, who love making an impact with every customer interaction.We also want people with drive and ambition - people who want a career, not just a job. Punctuality, performance and positivity will set you up for success!Note: All applications, interviews, orientation, and training will be done virtually. IntouchCX will also provide all hardware and equipment necessary.Benefits of Working as a Work from Home Customer Service Representative (French Bilingual):Work from home!Flexible schedulesCompetitive salary - $16.00-$22.00 hr (varies depending on program)Industry-leading benefits - Health, Dental, VisionAmazing career growth opportunitiesWorking as a Work from Home Customer Service Representative (French Bilingual), You Will:Assist all customers through inbound calls, emails, and/or chats.Communicate a variety of information to the customer.Be an active listener and help resolve customer inquiries.Provide a meaningful and positive experience with every customer interaction.Learn and retain a thorough working knowledge of all existing and new products and services.Working as a Work from Home Customer Service Representative (French Bilingual), You Have:French Bilingual is a must!A high school diploma (or equivalent).6 months – 1 year of customer service experience.Great communication skills, both verbal and written.The ability to be consistently ready to work and on time as scheduled.Reliable internet speed and broadband connection.A secure area in the home to work from.The ability to work effectively in a work-at-home setting.The understanding that although this is a Work from Home position,you must be located in Winnipeg, MBAvailability: Full Time (some shifts may depend on availability).Ready to apply? Submit your application and one of our recruiters will reach out via email/phone/text to learn more about you and connect you to this exciting opportunity! If you provide your cell number, you agree to receive automatic recruiting texts from us at that number. Consent is not a condition of employment, and you can opt-out by replying STOP at any time. Message and data rates may apply.IntouchCX provides Equal Employment Opportunities in accordance with all provincial and federal laws. IntouchCX is committed to ensuring equality of opportunity in all aspects of employment and does not discriminate based on protected characteristics.IntouchCX is committed to accommodating persons with disabilities. If you need accommodation at any stage of the application process or want more information on our accommodation policies, please let us know.By signing this application, the applicant consents to IntouchCX collecting, using and retaining his/her personal information for purposes relating to the application process and if hired, the employment relationship.Any and all personal information collected is held in the strictest confidence and in accordance with all applicable Privacy Laws.Job Type: Full-timeSalary: $16.00-$22.00 per hourBenefits:Dental careVision careWork from homeSchedule:8 hour shiftMonday to FridayWeekends as neededWork Location: Hybrid remote in Winnipeg, MB R3G 3J7\",\n            \"location\": \"St James St Unit, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"6627AC96488F618A908D500DDADA572C\",\n            \"cityName\": \"Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=527db7ff82a5300a\",\n            \"jobName\": \"Customer Service Representative, Winnipeg\",\n            \"companyName\": \"Algaecal\",\n            \"rowSalary\": \"$48,000–$51,000 a year\",\n            \"date\": 1694381918633,\n            \"dateOfPosted\": 1693533411620,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.895136,\n                    \"lon\": -97.13837439999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Career with a heart! If you like helping people, and you want to feel supported in your work –– this is the opportunity for you. Every day, concerned people call the AlgaeCal helpline. They’ve just had bad news about their bones – and they’re scared they might break at any moment. But after talking with YOU, their fear will melt away. We call our Customer Care Representatives – Bone Health Consultants – and a typical day might include: Acting as a knowledge base for customers inquiries with respect to our products and their bone healthActively listening to customers and providing them with everything they need to make an informed decision about AlgaeCal.Supporting our customers through a variety of mediums (email, phone).Processing orders and returns for customers.Helping customers understand the results of their DEXA bone scans.Updating the records of customer interactions, processing customer accounts, and filing documents. So yes, you’ll need to enjoy administrative tasks to thrive in this role.But most importantly, setting our customers up for MAXIMUM SUCCESSThis opportunity is tailor-made for you if: You’re highly motivated to work at home. You’ve got a solid customer service background. You are passionate about natural health. You are an expert at building a rapport with customers and devoted to helping people find that aha moment – where they go from despair to hope. You’re organized. You’re humble. You think critically and creatively. You love to support and inspire others. You don’t just accept feedback – you WANT feedback, because you’re hungry to be better than you were yesterday. You’re also a brilliant multi-tasker who can effortlessly shift between a variety of priorities. So if you want to work with some of the nicest people you’ll ever meet. And you want to feel good about making a difference in the world –– all while learning about natural health and working in a well organized and supportive workplace –– send us your resume. And BTW… some of our senior executives started out in this role –– so if you’ve got the talent, there’s no telling where this job might take you :) To best service our clients, our Customer Success Centre is open 7 days per week. Work schedules are 5 consecutive days, which include 1 weekend day. Successful applicants must be willing to work a Saturday or a Sunday, each week. We won’t ask you to work both weekend days, but ya need to be available for one! We are currently hiring for the following shift rotations:Tuesday to Saturday, 9am - 5pm PST (Tues-Fri) / 8am - 4pm PST (Sat)Sunday to Thursday, 9am - 5pm PST (Mon-Thurs) / 8am - 4pm PST (Sun)Note: Shift times are subject to change and are dependent on biz unit requirements. Other Goodies$48,000 starting salary with the opportunity to increase rapidly as training targets are met.AlgaeCal Healthcare Plan (Premiums Covered 100%!), which you're eligible to sign up for after three months of employment.Monthly lunches with your co-workers, coffee catch ups, and an informal coaching programme.Supported professional development and continued learning through training and coaching.Flexible Stat Holidays with the option to bank days for later use.Once you’ve been with us for 3 months you’ll get $200 to spend on whatever you want.You should know this… AlgaeCal is a hyper-growth company, which means that the role is always evolving as the company grows. We are not a typical ‘transactional’ thinking company. We are a heart-based company where people come first. In order to be successful here, you will need to have this mindset, work smart, hard, and embrace everything that is offered. If this sounds like a position for you, please respond to this advertisement with your resume and cover letter. This is an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your carefully written cover letter. Applications submitted without a resume and cover letter will be unsuccessful. Please, read carefully: 1. Write a cover letter addressing: 1. Why you're the best Customer Service Representative for this role. Give quantifiable examples of related achievements. 2. Describe why you fit perfectly with our values. Read them here: http://shorturl.at/lptFT 3. What's the toughest challenge you’ve ever overcome in your life? How did you overcome it? 4. What are the last three books you’ve read? 5. What do you do for fun? 6. Explain what you’re doing now for a job:If you don’t have one, explain why.If you have one, explain why you’re looking elsewhere.2. Upload your cover letter and resume: 1. Ensure that your cover letter and resume are saved and sent as one file. Click the “Apply Now” button on this page and upload your (1) cover letter (2) resume. *Important* AlgaeCal isn’t a boring run-of-the-mill company. So some of the questions in your online application might feel out of the ordinary. These questions are an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your answers. For more information about us, please visit our website.\",\n            \"location\": \"Winnipeg, MB\"\n        },\n        {\n            \"id\": \"EC4FC92F50A32EB52CCE7B7B22848B2D\",\n            \"cityName\": \"Fire Grill House in Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8bc3e030c8c05e74\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Fire Grill House\",\n            \"rowSalary\": \"$15.50–$20.00 an hour\",\n            \"date\": 1694381742324,\n            \"dateOfPosted\": 1693535604108,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Join an exciting and thriving environment in a brand new up-coming restaurant that is about to launch in the ever-fun Westboro area. We are looking for an enthusiastic individual who loves customer service and is tech-savy (social media oriented)! We are here to have fun and service delicious food. If you want to work with a great team, apply today! Send your CV to us!Job Responsibilities:- Provide exceptional customer service by greeting and assisting customers in a friendly and professional manner- Process customer transactions accurately and efficiently, including cash, credit, and debit payments- Maintain a clean and organized restaurant area- Answer customer inquiries and resolve any issues or concerns- Promote and upsell products- Assist with inventory management, including restocking shelves and monitoring product availability- Work well in a group- Handle food appropriately- Also looking for servers and other roles, including kitchen service and other. Please don't hesitate to apply within.Qualifications:- Strong time management and organizational skills to prioritize tasks effectively- Previous experience in retail or customer service or the restaurant business is preferred- Excellent verbal communication skills in English to interact with customersWe offer great pay + TIPS and opportunities for career growth within our restaurant. Join our team today!Job Types: Full-time, Part-timePart-time hours: 14-36 per weekSalary: $15.50-$20.00 per hourBenefits:Dental carePaid time offDay range:HolidaysMonday to FridayWeekends as neededShift:Afternoon shiftDay shiftEvening shiftMorning shiftWork Location: In person\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"C0CCEE30779EED97691CF97A1E905755\",\n            \"cityName\": \"Courtenay, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c89b3262e481302f\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"R.C. Purdy Chocolates Ltd\",\n            \"rowSalary\": \"$16.75–$19.26 an hour\",\n            \"date\": 1694381469425,\n            \"dateOfPosted\": 1693535456385,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.6841391,\n                    \"lon\": -124.9904494\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Courtenay\",\n                \"formattedAddress\": \"Courtenay, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Strathcona\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Courtenay\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: No degree, certificate or diplomaExperience: Experience an assetTasks Operate cash register Process money, cheques and credit/debit card payments Scan items Greet customers Provide customer service Work conditions and physical capabilities Fast-paced environment Attention to detail Standing for extended periods Personal suitability Accurate Flexibility Team player Screening questions Are you currently legally able to work in Canada? Long term benefits Other benefitsWork Term: TemporaryWork Language: EnglishHours: 12 to 30 hours per week\",\n            \"location\": \"Courtenay, BC\"\n        },\n        {\n            \"id\": \"E1EE7911419381C9093B44E7AD87EFA7\",\n            \"cityName\": \"Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f1a1feb8a33e634b\",\n            \"jobName\": \"Overnight Customer Service Representative\",\n            \"companyName\": \"Tigertel\",\n            \"rowSalary\": \"$17.42 an hour\",\n            \"date\": 1694381391198,\n            \"dateOfPosted\": 1693535318199,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6660885,\n                    \"lon\": -63.56756309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Job DescriptionJob Description  Immediately hiring Full Time Overnight Customer Service Representatives at TigerTel! Through our dedicated Customer Service Representatives at TigerTel, we deliver critical services and create exceptional outcomes for our clients and the many people who count on them. Do you love helping people? You have the opportunity to make a difference and be part of a culture that values your contributions. As a member of our team, your excellent customer service and communication skills will create positive experiences for our customers. Your punctuality and dependability are important to the success of our clients. Customer service experience is a plus, but not required. Training in office and then remote after training. Your job will be to professionally handle incoming calls, greet callers, provide and request required information, transfer calls, or take messages as necessary. You will work on our state-of-the-art call processing system and will be trained on a variety of call centre tools to help properly prioritize customer needs. We are an inbound call centre only. We do not perform any outbound telemarketing or hard sales calls. To be successful in this role, you must have: A welcoming voice with an upbeat tone Strong command of the English language with good spelling and grammar Computer skills in a Windows based environment Good attendance The ability to type 35 words per minute or more Live within an hour of the office Compensation: $17.42 per hour Shifts Offered: Full Time (40 hour work week) Various shifts available Must be available to work weekends Our Benefits for Full Time Employees Include: RRSP with company matching Health Insurance Dental Insurance Vision Insurance Paid Vacations (up to 4 weeks per year over time) Benefit Conditions: Waiting period may apply Only full-time employees eligible Don't miss out on this opportunity - Apply Today! Job Posted by ApplicantPro\",\n            \"location\": \"Dartmouth, NS\"\n        },\n        {\n            \"id\": \"7FB3320EF8D10B48DE2179A9DF19E7D3\",\n            \"cityName\": \"Fort McMurray, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8e5d05e9016262f4\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"R.C. Purdy Chocolates Ltd\",\n            \"rowSalary\": \"$15.25–$17.54 an hour\",\n            \"date\": 1694381336469,\n            \"dateOfPosted\": 1693534907507,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 56.7266598,\n                    \"lon\": -111.3790441\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fort McMurray\",\n                \"formattedAddress\": \"Fort McMurray, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 16\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fort McMurray\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: No degree, certificate or diplomaExperience: Experience an assetTasks Operate cash register Process money, cheques and credit/debit card payments Receive payment for goods or services Greet customers Provide customer service Work conditions and physical capabilities Fast-paced environment Attention to detail Standing for extended periods Personal suitability Accurate Flexibility Team player Screening questions Are you currently legally able to work in Canada? Long term benefits Other benefitsWork Term: TemporaryWork Language: EnglishHours: 12 to 30 hours per week\",\n            \"location\": \"Fort McMurray, AB\"\n        },\n        {\n            \"id\": \"007BC0958738F3FD3A379F20D26DF082\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8b53912594c18a49\",\n            \"jobName\": \"Bilingual Customer Service Representative (Day Shift)\",\n            \"companyName\": \"Phoenix Amd International Inc.\",\n            \"rowSalary\": \"$36,000–$38,000 a year\",\n            \"date\": 1694381239123,\n            \"dateOfPosted\": 1693534863897,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 36000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    36000.0\n                ],\n                \"range\": {\n                    \"gte\": 36000.0,\n                    \"gt\": null,\n                    \"lte\": 36000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" C ustomer Service Representative Calling all Customer Service enthusiasts! Phoenix AMD International is looking to expand its Customer Service department. The responsibility is simple, handle all furniture/repair or service-related communication with the end users of our products and programs while providing an exceptional customer experience!!  Do You: Speak and write English and French Fluently? Work well as part of a team that is empathetic, positive, professional with high-energy? Thrive on challenges, and discovering new ways of doing things? Want to be in a job that requires you to work on things outside of your comfort zone? Want to work in an environment where progress is made, and you are the tool that moves things forward? Want to be listened to, and encouraged to use your initiative and creativity? If this sounds like you, apply today! What you need if you want to be the successful applicant: You have experience in a furniture sales and/or service environment. You learn quickly and get very passionate about getting results. You're a doer, if you don't know how, you will find out how to do it and learn. You have strong communication skills both verbally and in writing. You have strong customer service skills/soft skills. You have excellent organization skills. You have strong problem solving skills. You have experience in using Excel, Outlook and Word. You have the ability to multitask and work well in a fast paced environment while under pressure. What we bring to the table: We are a growing entrepreneurial Canadian Bilingual company in business for over 32 years, led by the 2 entrepreneurs who originally started the business. We provide lifestyle protection programs and services for the furniture, bedding, appliances and electronics retailers across North America, which are designed to enhance the experience of consumers who buy them while creating indispensable profit centers for the retailers who sell them. We are committed to innovation and being the best at what we do. What we Offer: Great Benefits Plan. Health and dental coverage, so you can focus on your work. Fun Company Events. Strong Charity & Community Support. Great Environment to Work in. Part of a Growing Community in Bowmanville. Salary: $36,000.00-$38,000.00 per year.  Benefits: Dental care. Disability insurance. Extended health care. Life insurance. Paid time off. Vision care. Wellness program. Work from home. Schedule:  8 hour shift. Day shift. Monday to Friday. Education: Secondary School. (required) Experience: Customer service: 1 year. (preferred)About Phoenix AMD International Inc.:Phoenix A.M.D. International Inc., a privately held company, is one of North America’s leading value-added home furnishings protection and service specialists, with an unparalleled reputation for customer service and support. Since its’ inception in 1991, Phoenix has been providing customers with the highest quality home furnishing warranty programs with the greatest perceived value and realistic expectations. They also provide fully bilingual customer service, using the most advanced computer technology. As one of North America’s leading providers of lifestyle protection programs and services, supported by our exceptional vendor partners, such as Teflon™, Phoenix A.M.D. International consistently and passionately innovates the future and sets the trend for all other suppliers and companies to follow.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"0DC7FBC69AF50D1A724947CC60C96F98\",\n            \"cityName\": \"365 Argyle St S, Caledonia, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=57fdb2a44a9f8157\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Canadian Tire #049\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694380634050,\n            \"dateOfPosted\": 1693534592142,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.0632464,\n                    \"lon\": -79.9602989\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Caledonia\",\n                \"formattedAddress\": \"Argyle St S, Caledonia, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Haldimand County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Caledonia\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Canadian Tire Caledonia is looking for part and full time cashiers!Previous cash handling experience is preferred, but we are willing to train the right candidate.Successful candidates will demonstrate the following competencies:· Strong orientation towards customer service excellence.· Highly approachable, customer-oriented individual who thrives in offering exceptional service to customers.· Strong belief in the Canadian Tire Values of honesty, integrity, and respect.· Effective written and oral communication skills (probing, listening, etc.) and the ability to maintain professional communication, even in challenging situations.· Ability to complete detail-oriented retail tasks according to instructions and to demonstrate responsibility for outcomes.· Ability to work in a fast-paced team environment that provides assistance and support to co-workers to achieve common goals.· Ability to resolve retail and/or customer issues.· Ability to multitask, adapt and cope with challenging and changing situations.Positive attitude, punctuality and solid work ethic.Job Types: Full-time, Part-timePart-time hours: 20-40 per weekSalary: From $15.50 per hourBenefits:On-site parkingStore discountDay range:Monday to FridayWeekends as neededShift:8 hour shiftDay shiftEvening shiftExperience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Argyle St S, Caledonia, ON\"\n        },\n        {\n            \"id\": \"2820426354C9879B221054EC57DFF8DD\",\n            \"cityName\": \"639 Terry Fox Drive, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fee335087932411f\",\n            \"jobName\": \"Customer Service Advisor\",\n            \"companyName\": \"Mr. Lube - Kanata\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694380608830,\n            \"dateOfPosted\": 1693533636366,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.306109,\n                    \"lon\": -75.912274\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Terry Fox Dr, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Updated: August 31st, 2023Location: 639, Terry Fox Dr, Kanata, ONWe're not looking for someone who \\\"needs a job.\\\" We're looking for someone who can make a difference in our customers' experience, learn some skills and earn an income. Sales experience is preferred.Job Overview: Ready for a Change?Named one of Canada's Best Managed Companies & 10 Most Admired Corporate Cultures, Mr. Lube offers a fun work environment, competitive wages, and the best paid training and advancement program in the industry for our employees.Customer Service RepresentativeIn this role, you'll get to take full ownership over the complete customer experience. We will provide full training so you can confidently work directly on a customer's car and be in control of the entire customer service and sales cycle; from walking a customer through the services on a car to completing the tasks and sale.A Customer Service Representative at Mr. Lube spends:70% of their time providing Customer Service:Greeting customersDiscussing products and services with customersProviding recommendations based on vehicle assessmentsSuggesting new products and servicesWorking with a close knit team and communicating with Lower Technicians30% of their time completing Mechanical Duties:Oil and filter changesReplacement of vital car fluids (e.g. coolant, transmission, and transfer case fluid)Replacement of parts under the hood (e.g. air filters, headlights, taillights and wiper blade replacements)Refilling performance enhancers to ensure the car runs smoothly (e.g. engine stop leak, oil treatment, and valve cleaner)Performing courtesy checks on all vehicles (e.g. topping up fluid levels, cleaning windows and checking tire pressure)Performing tire changes and rotationsWhat else can you expect from a career at Mr. Lube?A fun environment with the best paid training in the industry Excellent employee incentives and recognition. With constant learning and growth opportunities. A company, management and team that cares. If you have a positive attitude, flexible availability, are driven to succeed, have a willingness to learn, and genuinely like interacting with people, put yourself in the driver's seat at Mr. Lube!Please contact:Denis GagneArea ManagerJob Types: Full-time, Part-timePart-time hours: 20-44 per weekSalary: From $16.50 per hourBenefits:Company eventsDental careExtended health careFlexible scheduleOn-site parkingPaid time offStore discountTuition reimbursementVision careSupplemental pay types:Bonus payCommission payOvertime payTipsAbility to commute/relocate:Ottawa, ON K2L 4H9: reliably commute or plan to relocate before starting work (required)Experience:Service Advisor: 1 year (required)Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Terry Fox Drive, Ottawa, ON\"\n        },\n        {\n            \"id\": \"825E28E863F63AE682473FE598B4FE35\",\n            \"cityName\": \"Delta, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=16bfaced0db5e64b\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"True Blue Construction Ltd\",\n            \"rowSalary\": \"$35 an hour\",\n            \"date\": 1694379616783,\n            \"dateOfPosted\": 1692669347449,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.09521549999999,\n                    \"lon\": -123.0264758\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Delta\",\n                \"formattedAddress\": \"Delta, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Delta\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 35.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35.0\n                ],\n                \"range\": {\n                    \"gte\": 35.0,\n                    \"gt\": null,\n                    \"lte\": 35.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Experience an assetTasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Recruit and hire workers and carry out related staffing actions Train or arrange for training Set up machines and equipment Estimate costs and materials Ensure health and safety regulations are followed Recommend personnel actions Read blueprints and drawings Requisition or order materials, equipment and suppliesWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Delta, BC\"\n        },\n        {\n            \"id\": \"DEB78AD6BAB96DB297914300F8116C7E\",\n            \"cityName\": \"320 Bayfield St, Barrie, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=13e05c70043dc69e\",\n            \"jobName\": \"Weekend Customer Service Cashier\",\n            \"companyName\": \"Canadian Tire Gas Bar\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694379288255,\n            \"dateOfPosted\": 1694239194174,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Every weekend MANDATORYThis is a weekends only positionShifts may be 7am-3pm or 3-11pmweekday afternoon shifts may be available shortlyMUST have good communication and interpersonal skillsMUST be reliableMUST be able to manage cashing out customers, have view of outside all the time as well as keeping store sufficiently stocked and cleanedJob Type: Part-timePart-time hours: 16 per weekSalary: From $15.50 per hourBenefits:Dental carePaid time offVision careDay range:Every WeekendWeekends onlyShift:8 hour shiftAfternoon shiftDay shiftWork setting:Convenience storeExperience:Cash handling: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (required)Night Shift (required)Work Location: In personApplication deadline: 2023-09-18Expected start date: 2023-09-20\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"23AB4917B8A7F1264147D0DB0C8A3417\",\n            \"cityName\": \"706 Denison St, Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8ec84d1ac30ab9da\",\n            \"jobName\": \"Customer Service Rep\",\n            \"companyName\": \"Running Free\",\n            \"rowSalary\": \"$16.80–$18.00 an hour\",\n            \"date\": 1694379083555,\n            \"dateOfPosted\": 1694288878153,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Online retail is an exciting and constantly evolving space in which providing customers with a truly exceptional experience is our number one priority. If you're an enthusiastic, self-motivated, detail-oriented person, who is passionate about running, triathlon, cycling, or fitness, we want to talk to you!Description:Part-time position involves interacting with customers via email and phone, and occasionally in person. Handling ordering, shipping, reporting, and product related questions and tasks. Flexible hours. Small and friendly online team. Opportunities for growth.Skills and Experience:- Excellent communication in English (spoken and written).- Previous retail experience an asset.- Very comfortable working with Windows based systems and programs.- Experience with programs such as Excel or Google Sheets valuable.- Eye for detail and design and familiarity with graphics programs (similar to Photoshop) useful.Job Type: Part-timePart-time hours: 20 - 40 per weekSalary: $16.80-$18.00 per hourBenefits:On-site parkingSchedule:8 hour shiftWeekends as neededWork Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"ED6A6E031F702FF8D8A30F62E95CFEC0\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=17d07df84f3c4d96\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Algaecal\",\n            \"rowSalary\": \"$48,000–$51,000 a year\",\n            \"date\": 1694378648897,\n            \"dateOfPosted\": 1693529543967,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Career with a heart! If you like helping people, and you want to feel supported in your work –– this is the opportunity for you. Every day, concerned people call the AlgaeCal helpline. They’ve just had bad news about their bones – and they’re scared they might break at any moment. But after talking with YOU, their fear will melt away. We call our Customer Care Representatives – Bone Health Consultants – and a typical day might include: Acting as a knowledge base for customers inquiries with respect to our products and their bone healthActively listening to customers and providing them with everything they need to make an informed decision about AlgaeCal.Supporting our customers through a variety of mediums (email, phone).Processing orders and returns for customers.Helping customers understand the results of their DEXA bone scans.Updating the records of customer interactions, processing customer accounts, and filing documents. So yes, you’ll need to enjoy administrative tasks to thrive in this role.But most importantly, setting our customers up for MAXIMUM SUCCESSThis opportunity is tailor-made for you if: You’ve got a solid customer service background. You are passionate about natural health. You are an expert at building a rapport with customers and devoted to helping people find that aha moment – where they go from despair to hope. You’re organized. You’re humble. You think critically and creatively. You love to support and inspire others. You don’t just accept feedback – you WANT feedback, because you’re hungry to be better than you were yesterday. You’re also a brilliant multi-tasker who can effortlessly shift between a variety of priorities. So if you want to work with some of the nicest people you’ll ever meet. And you want to feel good about making a difference in the world –– all while learning about natural health and working in a well organized and supportive workplace –– send us your resume. And BTW… some of our senior executives started out in this role –– so if you’ve got the talent, there’s no telling where this job might take you :) To best service our clients, our Customer Success Centre is open 7 days per week. Work schedules are 5 consecutive days, which include 1 weekend day. Successful applicants must be willing to work a Saturday or a Sunday, each week. We won’t ask you to work both weekend days, but ya need to be available for one! Example shift rotation: Sunday to Thursday or Tuesday to Saturday. Other Goodies$48,000 starting salary with the opportunity to increase rapidly as training targets are met.AlgaeCal Healthcare Plan (Premiums Covered 100%!), which you're eligible to sign up for after three months of employment.Monthly lunches with your co-workers, coffee catch ups, and an informal coaching programme.Supported professional development and continued learning through training and coaching.Flexible Stat Holidays with the option to bank days for later use.You should know this… AlgaeCal is a hyper-growth company, which means that the role is always evolving as the company grows. We are not a typical ‘transactional’ thinking company. We are a heart-based company where people come first. In order to be successful here, you will need to have this mindset, work smart, hard, and embrace everything that is offered. If this sounds like a position for you, please respond to this advertisement with your resume and cover letter. This is an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your carefully written cover letter. Applications submitted without a resume and cover letter will be unsuccessful. Please, read carefully: 1. Write a cover letter addressing: 1. Why you're the best Customer Service Representative for this role. Give quantifiable examples of related achievements. 2. Describe why you fit perfectly with our values. Read them here: http://shorturl.at/lptFT 3. What's the toughest challenge you’ve ever overcome in your life? How did you overcome it? 4. What are the last three books you’ve read? 5. What do you do for fun? 6. Explain what you’re doing now for a job:If you don’t have one, explain why.If you have one, explain why you’re looking elsewhere.2. Upload your cover letter and resume: 1. Ensure that your cover letter and resume are saved and sent as one file. Click the “Apply Now” button on this page and upload your (1) cover letter (2) resume. *Important* AlgaeCal isn’t a boring run-of-the-mill company. So some of the questions in your online application might feel out of the ordinary. These questions are an essential part of your application. We need to make sure you’re a good fit for our happy team - that’s why we’ll be paying close attention to your answers. For more information about us, please visit our website.\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"F5C89E26A82557E99EEB18FF95D67CFF\",\n            \"cityName\": \"3454 Tillicum Rd, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=28f6d67d4ec8fa00\",\n            \"jobName\": \"Ice-Cream Parlor And Arcade Customer Service\",\n            \"companyName\": \"Mr. Tubbs Ice Cream Parlor\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694377626021,\n            \"dateOfPosted\": 1693531288333,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4504499,\n                    \"lon\": -123.3967516\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Tillicum Rd, Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About us:Mr. Tubbs Ice Cream Parlor has its history of nearly thirty years. With 48 flavours ice creams and a room of video games, it is a place creates memories for thousands of kids and families.Now, we are looking for both full-time and part-time employees who enjoy spending time with kids, scooping ice creams, making ice-cream sandwiches and cakes, and operating and arcade game machines.Responsibilities:Make ice cream cakes (will be trained)Serve ice cream and birthday parties.Answering phones and managing our online booking systems and be able to take online orders.Take payment.Clean up equipment after use and keep kitchen area organized and sanitized.Stock ingredients as needed.Operate machinery, including mixers, blenders, etc., safely and effectively.Maintain a clean work area, including storage areas and workstations.Follow all health and safety standards to ensure proper food safety practices.Ability to manage an ever-changing environment.Qualification· * Customer service oriented, experience preferred however willing to train the right candidate· * Strong ability to organize and multi-task· * Ability to prioritize· * Energetic, High level of accuracy and Attention to detail· * Excellent verbal communication skills· * Problem solving skills and accountability for work assigned· * Willingness to learn and continuously improve· * Be punctual and a 100% focused on job related tasksPlease note only the selected candidates will be contacted and invited to an interview. However, we thank you for expressing your interest!Job Types: Full-time, Permanent, CasualSalary: $17.00-$19.00 per hourBenefits:Discounted or free foodJob Types: Full-time, Part-time, PermanentPart-time hours: 30 per weekSalary: $17.00-$19.00 per hourSchedule:Day shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Victoria, BC V8Z 4H3: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 2 years (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Tillicum Rd, Victoria, BC\"\n        },\n        {\n            \"id\": \"492B753BA72C119A2D349C67D2DABE5A\",\n            \"cityName\": \"5777 Trans Canada Highway, Duncan, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=30d4e8239bcc685d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mid Island Liquor\",\n            \"rowSalary\": \"From $17.75 an hour\",\n            \"date\": 1694377171524,\n            \"dateOfPosted\": 1694289432437,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Liquor is looking for part-time Customer Service Representatives at our Duncan Liquor Store.Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you!Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in the operations of the store, including but not limited to handling customer transactions, responding to customer questions and concerns in a professional manner, creating displays and stocking shelves, and ensuring store and merchandise are neat and organized.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Representative today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. Previous retail experience is preferred, and you must have a valid Serving it Right Certificate (or be willing to get certified prior to your first day).Who we are:Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve.Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op).We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.Job Types: Permanent, Part-timeSalary: From $17.75 per hourBenefits:Employee assistance programFlexible scheduleOn-site parkingStore discountSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"3916505F2AAF1775F8C9B3AE555312F4\",\n            \"cityName\": \"360 Newkirk Road, Richmond Hill, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1e6c74b74068f2f0\",\n            \"jobName\": \"Customer Service Representative (Csr)\",\n            \"companyName\": \"James Snow Storage\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694377169555,\n            \"dateOfPosted\": 1694287981593,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"As a customer service representative, you should be able to provide speedy and efficient service to our customers. We offer both storage and U-Haul servicers for which training will be provided. Secondarily, there is a physical component to the position; must be able to assist in physical labor both indoors and outdoors. The job has a 3 month probationary period you can expect $ 0.5 pay raise pending on your performance ofter the end of probationary period.Primary responsibilities include: (Training will be provided)Interact with our customers in a friendly, fast, courteous and efficient manner.Should be able to perform physically demanding tasks such as connecting trailers.Should be able to perform tasks under minimum supervision.Renting U-Haul trucks, trailers and storage rooms.Maintain a standard of cleanliness of Trucks and Storage.Attention to detail in order to promote positive customer interactions.Efficient communication with customers and fellow staff members.Complete online and hands on training.Help out in maintenance of the building all year.Requirements:Availability to work weekends.Valid driver’s license (Preferred) and the ability to maintain a good driving record to operate commercial motor vehicles.Ability to work with computers and use specialized rental software (Training will be provided).Education/Training:High School Diploma or equivalent.Post secondary students, international students (Preferred)Job Types: Part-time, Fridays, Saturdays and Sundays.Salary: From $16.50 per hour.Benefits:Insurance Benefits including.Dental careDisabilityLife insuranceVision Care.Company events.On-site parking.Job Type: Part-timePart-time hours: 20 per weekSalary: From $16.50 per hourBenefits:Company eventsDental careDisability insuranceLife insuranceOn-site parkingStore discountVision careSchedule:8 hour shiftEvery WeekendWeekends onlyAbility to commute/relocate:Richmond Hill, ON: reliably commute or plan to relocate before starting work (required)Application question(s):Are you allowed legally to work in Canada?Are you available to work Fridays, Saturdays and Sundays every week?Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"2B880055E2F0FA414F2573CBFDA887CC\",\n            \"cityName\": \"Speedy Cash in Kamloops, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b9ae68b3f41d64a4\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Speedy Cash\",\n            \"rowSalary\": \"From $18.75 an hour\",\n            \"date\": 1694377133564,\n            \"dateOfPosted\": 1693520740378,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.674522,\n                    \"lon\": -120.3272675\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kamloops\",\n                \"formattedAddress\": \"Kamloops, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Thompson-Nicola\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kamloops\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Canadian-operated, Speedy Cash is a strong leader in the financial services industry. Founded in 1998, Speedy Cash currently operates over twenty branch locations across Canada. We are building a dynamic team of business professionals and can provide the right candidate with significant opportunities for career growth and job satisfaction.If you’re looking for a fun, energized environment where we support each other, as a team, to create a rewarding workplace and deliver amazing customer service, then look no further, Speedy Cash is the place for you!Perks and BenefitsWelcome BonusCompetitive wages, bonuses, and benefitsHands-on and continual training in transferable skillsBirthdays off, annual fun day for each storeIncredible support systemA team environment that makes work satisfying and funRRSP matchingOpportunities for growth. We promote from within!You are a Champion of Change; you will help motivate the team to increase sales, minimize bad debt and adapt to the ever-changing regulatory environment. You have a strong sense of curiosity and have a passion for learning; you are proactive and look for ways to be more efficient in your day-to-day work. You inspire your teammates with your innovative and resourceful way of thinking. Your attention to detail and exceptional organizational skills will ensure that the day-to-day operations of the store run smoothly. You can work independently as you pursue excellence while taking pride in your achievements, supporting company initiatives, and accomplishing the work that needs to be done in the store. An interest in travel would be considered an asset as from time to time support in other stores in the network is needed.Job ResponsibilitiesBuilding customer relationships while providing exceptional customer serviceIdentifying and meeting the customer’s financial needs in order to process loan applicationsCollecting on delinquent accounts in the interest of minimizing bad debtConveying information through in-person, telephone, and email communicationsAiding in loan sales, cheque cashing, and in-store promotionsHandling and balancing daily cash and debit transactionsPerforming all daily operations of the storeRequirementsValid Government Issued Photo IDClean Criminal RecordHigh School Diploma or EquivalentWageSalary commensurate with experienceFor more information about Speedy Cash check out our website at www.speedycash.ca/careersJob Type: Full-timeSalary: From $18.75 per hourBenefits:Dental careExtended health carePaid time offRRSP matchVision careSchedule:Monday to FridayWeekends as neededEducation:Secondary School (preferred)Work Location: In personApplication deadline: 2023-09-18\",\n            \"location\": \"Kamloops, BC\"\n        },\n        {\n            \"id\": \"E0091B940D575ABBBEA7E8F5BCA98400\",\n            \"cityName\": \"Speedy Cash in Cranbrook, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2a3022b2812ea3e8\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Speedy Cash\",\n            \"rowSalary\": \"From $18.75 an hour\",\n            \"date\": 1694377089914,\n            \"dateOfPosted\": 1693522629263,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.5129678,\n                    \"lon\": -115.7694002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cranbrook\",\n                \"formattedAddress\": \"Cranbrook, BC V1C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"East Kootenay\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cranbrook\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Canadian-operated, Speedy Cash is a strong leader in the financial services industry. Founded in 1998, Speedy Cash currently operates over twenty branch locations across Canada. We are building a dynamic team of business professionals and can provide the right candidate with significant opportunities for career growth and job satisfaction.If you’re looking for a fun, energized environment where we support each other, as a team, to create a rewarding workplace and deliver amazing customer service, then look no further, Speedy Cash is the place for you!Perks and BenefitsWelcome BonusCompetitive wages, bonuses, and benefitsHands-on and continual training in transferable skillsBirthdays off, annual fun day for each storeIncredible support systemA team environment that makes work satisfying and funRRSP matchingOpportunities for growth. We promote from within!You are a Champion of Change; you will help motivate the team to increase sales, minimize bad debt and adapt to the ever-changing regulatory environment. You have a strong sense of curiosity and have a passion for learning; you are proactive and look for ways to be more efficient in your day-to-day work. You inspire your teammates with your innovative and resourceful way of thinking. Your attention to detail and exceptional organizational skills will ensure that the day-to-day operations of the store run smoothly. You can work independently as you pursue excellence while taking pride in your achievements, supporting company initiatives, and accomplishing the work that needs to be done in the store. An interest in travel would be considered an asset as from time to time support in other stores in the network is needed.Job ResponsibilitiesBuilding customer relationships while providing exceptional customer serviceIdentifying and meeting the customer’s financial needs in order to process loan applicationsCollecting on delinquent accounts in the interest of minimizing bad debtConveying information through in-person, telephone, and email communicationsAiding in loan sales, cheque cashing, and in-store promotionsHandling and balancing daily cash and debit transactionsPerforming all daily operations of the storeRequirementsValid Government Issued Photo IDClean Criminal RecordHigh School Diploma or EquivalentWageSalary commensurate with experienceFor more information about Speedy Cash check out our website at www.speedycash.ca/careersJob Type: Full-timeSalary: From $18.75 per hourBenefits:Dental careExtended health carePaid time offRRSP matchVision careSchedule:Monday to FridayWeekends as neededEducation:Secondary School (preferred)Work Location: In personApplication deadline: 2023-09-29\",\n            \"location\": \"Cranbrook, BC\"\n        },\n        {\n            \"id\": \"48A1B19C4B92BF5C28C70750B2A6127E\",\n            \"cityName\": \"Fort Erie, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c53d2704da0e8c31\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Aerogutter Inc\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694376983657,\n            \"dateOfPosted\": 1694240123557,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Aerogutter Inc is looking to add another member to our team!We are a family owned and operated small company who handles incoming calls/requests from customers who use our exterior services in the USA. We've been in business since 2002 and we work hard at building a team of qualified, driven, and wonderful people! If you're tired of working in a place where you're simply a number...and are interested in a position with a small group of dedicated people who make work more exciting, keep reading!The position involves a nice comfy chair and a desk with two monitors. There is a headset (and yes it's comfortable) that covers both ears and the phone is answered on the screen. We have a picnic table outside for lunch during the warmer times, and a nice kitchen with chairs and a tv. We even have a dishwasher so you don't have to worry about dishes (wow!).With all that being said, we are looking for a happy person who enjoys making the lives of others better by providing an excellent customer experience! Someone who keeps a \\\"to do\\\" list and enjoys checking things off as they finish them! Someone who can empathize with a customer who calls in with a problem and has the ability to offer peace of mind because you know you have a team of capable people who can handle any issue a customer may have. If this sounds like the job for you...keep reading and apply below!Duties include but are not limited to:· Answer incoming customer phone calls regarding billing issues, estimate and service requests, scheduling inquiries and general client concerns and take appropriate action for each call· Return customer voicemails, emails, and text messages· Entering and checking customer contracts in the customer database· Reviewing, printing and mailing of customer invoices and contract renewals· Processing customer payments and contract renewals received in the mail via check or credit card· Match service trucks GPS records to work completed· Contact customers regarding outstanding balancesJob Details:· 1 full time position available in a small office setting working with 6 other team members.· Office hours are Monday through Friday 8:30AM to 5:00PM and some Saturdays (Spring and Fall).· In-office training will be Monday to Friday from 10:00AM to 3:00PM.· Starting wage is $18.00-$20.00 per hour .· Candidate must have a minimum of 2 years of Call Centre Customer Service experience.· Candidate must have own transportation. Public transit is not available.· Good work ethic, attendance, ability to work as part of a team, and professional customer service is also a MUST!Job Type: Full-timeSalary: $18.00-$20.00 per hourSchedule:8 hour shiftHolidaysMonday to FridayWeekend availabilityEducation:Secondary School (preferred)Experience:customer service: 2 years (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"DB651E0F16802D9EE640C7D52D4CDD90\",\n            \"cityName\": \"13120 66 Street NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6a4943f19d763148\",\n            \"jobName\": \"Customer Service Representative/Cashier\",\n            \"companyName\": \"Mac'S Convenience Store/ Circle K\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694376923179,\n            \"dateOfPosted\": 1694223927188,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Description: Customer Service RepresentativeLooking for experienced CSR to work at Circle K located North east side. Looking for someone with a flexible schedule that is able to work various shifts including overnight, throughout the week and weekendDuties:- Provide exceptional customer service- Ring up sales on cash register- Process payments and handle customer complaints- Performs cleaning duties to uphold store standard, this includes inside and outside the store- Receives and verifies deliveries- Maintains food safe practice- Stock and merchandise products- Control shoplifting as per our company policyExperience:- Previous experience is considered an assetPhysical Requirements- Able to stand for 8 hours-Lift up to 50lbsIf you are passionate about providing exceptional customer service and have the necessary skills and experience, we would love to hear from you. Please submit your resume and cover letter detailing your relevant qualifications.Job Type: Full-timeSalary: From $15.00 per hourSchedule:8 hour shiftEvening shiftMonday to FridayNight shiftWeekends as neededEducation:Secondary School (preferred)Shift availability:Day Shift (required)Night Shift (required)Overnight Shift (required)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"BA852DCD860AC3215A154EA21B4B9071\",\n            \"cityName\": \"SKM Acquisitions in Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5e7514a4d5f7e285\",\n            \"jobName\": \"Customer Service Sales Representative\",\n            \"companyName\": \"Skm Acquisitions\",\n            \"rowSalary\": \"$700–$1,000 a week\",\n            \"date\": 1694375918254,\n            \"dateOfPosted\": 1694215050866,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 700.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    700.0\n                ],\n                \"range\": {\n                    \"gte\": 700.0,\n                    \"gt\": null,\n                    \"lte\": 700.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you looking for a supportive, collaborative workplace with great teams and inspiring leaders? You’ve come to the right place. SKM is looking for ambitious people who share our values and want to make every day better for people around the world. If this sounds like you, and the career below sounds exciting, we’d like to hear from you.As a Customer Service Sales Representative, you will be the face of our clients. You will interact with customers to bring our clients products and services to life! You will create effective sales opportunities with each customer using the skills provided in our intensive training model. Customer Service Sales Representative will establish sales objectives which will contribute to the overall success of the business.Key Accountabilities:Meet sales, service, quality and productivity objectivesResponsible for interacting with new and existing customers and clientsConduct needs analysis and provide advice to customers by effectively communicating the value and benefits of the products and services offered by our clientsProvide a high level of service, build relationships and provide accurate information and the appropriate solutions to new and existing customersRaise issues, concerns and trends to the leadership teamMaintain a high level of product knowledge, operational process and servicesAs our ideal candidate, you make valuable contributions in your ability to communicate effectively with people. You have a high-energy level and a desire to become part of a globally dynamic organization offering long-term career opportunities.Qualifications:Experience in a retail, customer service or sales rolePost-secondary degree or equivalent work/business experienceDemonstrated ability to persuade and negotiate and must possess active listening skillsEffective client record management, with attention to detailAbility to work in a fast-paced environment and manage multiple day-to-day tasksStrong computer skills, and a general knowledge level of the MS Office suite of productsMust have a valid driver’s license and access to reliable transportationJob Type: Full-timeSalary: $700.00-$1,000.00 per weekSchedule:Monday to FridayWeekends as neededAbility to commute/relocate:Ottawa, ON K2C 3N1: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"5CA5C4383AB32996952269EF1B8211DE\",\n            \"cityName\": \"Michaud Petroleum Inc. Grand Falls and St-Leonard NB in Grand-sault/grand Falls, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a162d3f681f89584\",\n            \"jobName\": \"Cashier/Customer Service - Full And Part Time Day & Evenings\",\n            \"companyName\": \"Michaud Petroleum Inc. GrAnd Falls And St-Leonard Nb\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694373550363,\n            \"dateOfPosted\": 1689530225864,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.0479934,\n                    \"lon\": -67.7399015\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grand Falls\",\n                \"formattedAddress\": \"Grand Falls, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Victoria County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grand Falls\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Michaud Petroleum Inc. is currently looking to fill a Full Time Cashier position for its Shell gas station in Grand Falls and St-Leonard location as well as the Ultramar station in Grand Falls.The candidate will be in charge of completing the following tasks (but not limited to) :Help and assist customersReplenishing store shelvesBalance cashKeeping store cleanAnswer phonesAssist card lock customersKeeping sidewalks and walkways clean (Sweeping in summertime and Shovel during winter).Maintain work equipmentMaintain a safe work environmentAfternoon shift is 11:00 am to 7:00 pm, evening shift is 2:00 pm to 10:00 pm. Weekends has same shifts plus a 6:00 am to 2:00 Pm option as well.Position offers 5 shifts per week, Monday to Sunday.Job requirementsAll candidates must be fully bilingual in both official languages (Oral)Have a strong client oriented attitudeMust be available to work daytime, evenings and on week-endsJob Types: Full-time, Part-time, PermanentSalary: $15.00-$16.00 per hourBenefits:Dental careOn-site parkingVision careShift:8 hour shiftAfternoon shiftDay shiftEvening shiftWork setting:Convenience storeCOVID-19 considerations:Language:English and French (required)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Grand Falls, NB\"\n        },\n        {\n            \"id\": \"B6A531BAFEAF682F9946C561D7FE4EEC\",\n            \"cityName\": \"656 Dundas St, London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c4782049e07d115b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Union Ten Distilling Co.\",\n            \"rowSalary\": \"$16.55 an hour\",\n            \"date\": 1694373548215,\n            \"dateOfPosted\": 1693519282617,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.0034491,\n                    \"lon\": -81.1805791\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"Dundas St, London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking a highly motivated and enthusiastic individual to join our team as a Customer Service Representative at our Distillery. As a Customer Service Representative, you will be providing exceptional service and support to our valued customers. You will be responsible to ensure a positive and memorable experience for all who interact with our Distillery. This is an excellent opportunity for someone with a passion for the spirits industry and a knack for delivering outstanding customer service.Responsibilities:Provide accurate information about our distillery products, including their production process, ingredients, tasting notes, and availability.Assist customers with placing orders, providing guidance on product selection, and recommending suitable options based on their preferences.Manage bookings and host Cocktail Classes and Tours as required.Assist in managing inventory as needed, restocking of product in retail store. This may also include tasks related to fulfilling of online orders for shipping and curbside pickup.Maintain a thorough understanding of our distillery's offerings, promotions, and special events to effectively communicate them to customers.Collaborate with internal teams, such as sales and production, to relay customer feedback, identify trends, and suggest improvements for enhancing customer satisfaction.Continuously develop product knowledge by staying up-to-date with industry trends, attending training sessions.Contribute to a positive and engaging work environment, fostering teamwork, collaboration, and a customer-centric mindset.Requirements:High school diploma or equivalent; additional education or certification in customer service is a plus.Proven experience in a customer service role, preferably in the beverage, hospitality, or related industry.Excellent verbal and written communication skills, with the ability to convey information clearly, concisely, and in a friendly manner.Strong interpersonal skills, capable of building rapport and maintaining positive relationships with customers and team members.Ability to handle challenging situations with patience, empathy, and a solution-oriented mindset.Detail-oriented with excellent organizational and multitasking abilities.Flexibility to work in shifts, including days, evenings, weekends, and holidays, as required.A genuine interest in and knowledge of spirits, distilling processes, and the craft beverage industry.Must be of legal drinking age and comply with all applicable laws and regulations related to alcohol.Smart Serve certification is required.We offer the opportunity to be part of a dynamic team dedicated to producing exceptional spirits and providing unparalleled customer service. If you are passionate about the world of spirits, possess outstanding customer service skills, and thrive in a fast-paced environment, we would love to hear from you!Job Type: Part-timePart-time hours: 30 per weekSalary: $16.55 per hourBenefits:Casual dressStore discountFlexible Language Requirement:French not requiredSchedule:Day shiftMonday to FridayWeekends as neededWork Location: In personExpected start date: 2023-09-19\",\n            \"location\": \"Dundas St, London, ON\"\n        },\n        {\n            \"id\": \"A417A401C4D646723ABAA55586F281C8\",\n            \"cityName\": \"137 Cowichan Lake Road, Lake Cowichan, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ba3e77afdaaf55a9\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mid Island Co-Op\",\n            \"rowSalary\": \"From $17.75 an hour\",\n            \"date\": 1694373507992,\n            \"dateOfPosted\": 1693507878727,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.8299295,\n                    \"lon\": -124.0258333\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lake Cowichan\",\n                \"formattedAddress\": \"Cowichan Lake Rd, Lake Cowichan, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Cowichan Valley\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lake Cowichan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Co-op is hiring full-time and part-time Customer Service Representatives at our Gas Bar located in Lake Cowichan, British Columbia.Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you!Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in the operations of the store, including but not limited to handling customer transactions, responding to customer questions and concerns in a professional manner, creating displays and stocking shelves, and ensuring store and merchandise are neat and organized.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Representative today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. Previous retail experience is preferred, and propane and/or FoodSafe certification would be an asset.Who we are:Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve.Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op).We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.Job Types: Permanent, Part-time, Full-timePart-time hours: 24-40 per weekSalary: From $17.75 per hourBenefits:Company eventsCompany pensionDental careDisability insuranceEmployee assistance programExtended health careLife insuranceOn-site parkingPaid time offTuition reimbursementVision careSchedule:Day shiftEvening shiftHolidaysMonday to FridayWeekends as neededSupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Cowichan Lake Rd, Lake Cowichan, BC\"\n        },\n        {\n            \"id\": \"7DE74F761FAA7CFD30A02129A245436D\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fabbcdf0b1a77d4b\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"Sam Dhaliwal Professional Corporation\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694370947101,\n            \"dateOfPosted\": 1689674908889,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsTasks Operate cash register Process money, cheques and credit/debit card payments Scan items Tabulate total payment for goods or services required Receive payment for goods or services Calculate daily/shift payments received and reconcile with total sales Suggestive selling Greet customers Provide customer service Personal suitability Team playerWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"7E734AB841350A9259901477989FC199\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=663e30b62af05b87\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Pro-Line Building Materials\",\n            \"rowSalary\": \"$18–$21 an hour\",\n            \"date\": 1694369910318,\n            \"dateOfPosted\": 1693517259643,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Pro-Line Building Materials Ltd. is a leading distributor of roofing, insulation and waterproofing products in Western Canada we are currently taking applications at our Victoria, B.C. store for a full time Customer Service Representative.The Customer Service Rep is responsible for assisting, maintaining, and building profitable relationships with our customers by ensuring all customer requirements are met to the best of Pro-Line's abilities.Communicate effectively with all team members (warehouse to office) regarding customer objectivesOverseeing warehouse and yard is tidy, organized, and that stock rotatesCompile and maintain all sales orders as they flow through the branchContribute to the work environment that leads to a winning team and personal growthParticipate as a key player by supporting operational needsMaintain housekeeping standards as set by the management staffAcknowledge and greet appropriately customers in a timely mannerDressed in appropriate attire (proper tied up footwear, no tattered clothing)Process customer orders in a courteous, efficient, and timely mannerRecognize sales orders with delivery deadlines and back ordersEffectively present and demonstrate products and services offered to the customersManage telephone calls professionally with good communication skillsAttend to customer questions, challenges, and facilitate a satisfactory resolutionCoding of credit and cash orders, inventory inputtingSupport outside sales reps by gathering customer information to achieve a successful deliveryEnsuring sales orders have been double checked the day prior to deliveryFill out Bill of Ladings with all pertinent information (address, loading instructions, directions, pitch, etc.)Project tracking (Cool Net)All other duties as specified by managementFeel free to apply online or show up in person at 4910 Builders Road S.E.Calgary, AB. T2G 4C6Job Type: Full-timeSalary: $18.00-$21.00 per hourSchedule:8 hour shiftMonday to Friday\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"F693FC3CA96AE83A8546DF3650C4F73C\",\n            \"cityName\": \"Grande Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3fb4147ba9e693ea\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Tenacious Detail Grande Prairie\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694368538724,\n            \"dateOfPosted\": 1693517263263,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.17071259999999,\n                    \"lon\": -118.7884464\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Grande Prairie\",\n                \"formattedAddress\": \"Grande Prairie, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 19\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Grande Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Tenacious Detail is looking to hire a full-time/ part-time front counter person.You will be the first point of contact for our walk-in clients.Other tasks will be:answering phone callscollecting paymentslight office cleaninghelping in the Detail shop when needed for other tasks.keeping things organized in and around the shopWe are looking for an individual who can work independently or as part of a team! Someone with a bright and bubbly personality. Knowledge of detailing products an asset.Job Types: Full-time, Part-timePart-time hours: 20-40 per weekSalary: From $17.00 per hourBenefits:Dental carePaid time offFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayWeekends as neededSupplemental pay types:Overtime payAbility to commute/relocate:Grande Prairie, AB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In personExpected start date: 2023-09-11\",\n            \"location\": \"Grande Prairie, AB\"\n        },\n        {\n            \"id\": \"B04D971110D238534A9C04797F27C984\",\n            \"cityName\": \"Canada\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9d9c9df290ee4a8c\",\n            \"jobName\": \"Call Centre Agent - Work At Home\",\n            \"companyName\": \"Inspire Direct Marketing\",\n            \"rowSalary\": \"$20–$24 an hour\",\n            \"date\": 1694364628182,\n            \"dateOfPosted\": 1693517243927,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"$20.00-$24.00/hour + Benefits.Call Centre Agent - Work from HomeIf you are a mature sales or call centre representative, come join our team of professional fundraising agents to elevate your career and use your skills to help make our world a better place. Quit your day job, come help us save the world!We are a Canadian agency on a mission to inspire fundraising. We provide a warm and friendly voice to the largest and most respected charities in Canada. Our team is passionate, engaged and extremely effective. We call existing supporters to raise funds for important causes around the globe. So while there are no cold calls or high-pressure tactics, we are a performance team and results matter. We hope they motivate you as well.This is a full-time, outbound, work-from-home position.Description:Each day and each call can be different. We find new child sponsors, welcome new donors, renew event participants, and invite donors to give monthly. We thank, connect, engage and inspire. We look for creative new ways to delight on every call. We are all about teamwork, customer connections and most importantly, having fun while we do it. Inspire fundraisers connect with, laugh with and uplift the lives of our client's donors - even if just for a few moments. Their work goes beyond raising funds for some of the world's most worthwhile causes; it's about creating a human connection with every donor. They enjoy being able to deliver world-class results autonomously, while representing great causes and being part of a passionate team.Benefits:Premium wages, $20.00 - $24.00 hourly w bonuses Permanent, full-time employment with consistent hours and growth opportunities Engagement with world-class charitable organizations 100% paid training and health benefits (at 3 months) Trip incentives (to visit child sponsor communities), bonuses and rewards Training opportunities, lunch-and-learns, workshops Team culture and activities, ice breakers, community eventsYou have:A minimum of 2 years' customer service and call centre experience You love talking to people and are a great communicator You are looking for full-time hours, 40 hours a week Availability to work evenings (1:00PM - 10:00PM EST Mon -Thu, 10:00AM - 7:00PM EST Fri) Availability to work occasional Saturday shifts (10:00AM to 5:00PM) You are technically savvy and self-reliantYou provide:A professional work from home office space newer-version Windows PC or laptop computer (Apple or Mac are not supported) High-speed cabled internet connection (min 25 mbps down/5 mbps up) A USB headset and webcamIf you are looking to be part of something bigger than yourself and to join a mature call centre team with opportunities to grow and support your peers; we would love to hear from you.Inspire is committed to Employment Equity and Diversity. We do not discriminate against any employee or applicant for employment because of national origin, race, religion, ethnicity, age, disability, sex, sexual orientation, gender identity, veteran status or any other federal, provincial, or local protected class. We welcome and encourage applications from persons with disabilities. Accommodations are available upon request for candidates who participate in all aspects of the selection process.Please note: We thank everyone for their interest however only the best qualified candidates may be contacted.\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"27580B3EBB1E95A716ACBF541482CB66\",\n            \"cityName\": \"26 Thomas Raddall Dr Suite 182, Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1c2c2a18082b227a\",\n            \"jobName\": \"Part-Time Customer Service Representative\",\n            \"companyName\": \"Canada Games Centre\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694363751463,\n            \"dateOfPosted\": 1693517261950,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.65802,\n                    \"lon\": -63.66342119999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax\",\n                \"formattedAddress\": \"Thomas Raddall Dr, Halifax, NS B3S, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halifax\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Canada Games Centre (CGC) is a vibrant multi-sport community and recreation centre in Halifax, Nova Scotia. We are a 176,000 sqft facility operated by a non-profit society committed to promoting physical literacy, fitness and wellness, and to supporting the needs of high performance sport & athlete development. The Centre runs sport and recreation programs, camps, fitness classes and so much more in an inclusive environment. Located in Mi’kma’ki, the ancestral and traditional lands of the Mi’kmaq people, the CGC acknowledges the Peace & Friendship Treaties signed in this Territory and recognizes that we are all Treaty People. Together, we inspire healthy active living. Position Summary For the first point of contact at the Canada Games Centre Customer Service Desk, we are looking for enthusiastic, friendly individuals to assist in delivering exceptional customer service and support to all of our guests. Must be able to multi-task and work under the pressure of a busy environment. ResponsibilitiesWelcome and greet all guests – members, drop-ins, corporate, or leisure groupsReceive, respond, and manage all inquiries – on site, phone calls, and email – in a timely mannerCommunicate policies, procedures, updates, and all other required information to guestsAccept and process all payments – cash, credit card, etc.UpsellFollow opening and closing proceduresMaintain files in proper orderBe able to multi-task in a fast-paced environmentAbide by Canada Games Centre policies and procedures – phone etiquette, dress code, etc.Qualifications MandatoryHigh school graduate – some level of post-secondary education is considered an assetExperience working with the public in a similar roleExperience working in a facility or venueCustomer service experience – i.e., the retail or hospitality industriesExperience and comfort using computers and various software programsExperience processing financial transactions – cash handling, payment processing, etc.DesirableDemonstrate strong interpersonal, communication, and listening skillsBe actively engaged and excited about your roleHave a proactive and positive attitudeMember and guest focusedAlways conduct oneself with integrity and professionalismBe detail oriented and well organizedDemonstrated problem solving skills with a solution-based approachWork well under pressureExperience working in a diverse, multi-cultural environmentMotivated by the success of othersUnderstand and appreciate the role that sport and recreation plays in healthy communitiesWorking ConditionsDaytime, evening and weekend availability requiredWorking environment includes physical, emotional, and mental demandsSafe use of all protective / barrier equipment as required by the employerExposure to loud noises and ability to concentrate in a busy environmentNotesCriminal Record & Child Abuse Registry checks will be required as part of the hiring processWhat’s in it for you?Free facility membershipFree parking and close proximity to Halifax TransitAmazing team environmentOrganization committed to extraordinary staff and customer experienceCompensation The compensation for this position is $15.50 per hour (plus 4% vacation pay). Applications Instructions To apply, please submit a cover letter and resume, outlining how you meet the specific qualifications listed in the job posting to Wasan Nayfeh at careers@canadagamescentre.ca by Friday, September 29th, 2023. Please include your full name and the position you are applying for in the subject line. Failure to properly identify your application or attach working documents may result in your application being omitted. We are a welcoming and supportive environment whose goal is to be a diverse workplace representative of the citizens we serve. Indigenous people, persons with disabilities, African Nova Scotians, racially visible persons, women in occupations where they are under-represented, and the LGBTQIA2S+ community are encouraged to self-identify on your application.\",\n            \"location\": \"Thomas Raddall Dr, Halifax, NS\"\n        },\n        {\n            \"id\": \"BDE2B0D9DE7AC32CCE99FE6275D78945\",\n            \"cityName\": \"140 Ellen St, Miramichi, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a41b0dc3577a8904\",\n            \"jobName\": \"Customer Service/Bakery Assistant\",\n            \"companyName\": \"Cake a Chance\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694363426980,\n            \"dateOfPosted\": 1692662081298,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.0016309,\n                    \"lon\": -65.565644\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Miramichi\",\n                \"formattedAddress\": \"Ellen St, Miramichi, NB E1V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Miramichi\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ellen St, Miramichi, NB Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Tuesday-Friday 9-5Saturday 9-3-Have an outgoing personality-Hard-working, efficient-able to multitask-able to work unsupervised-detail oriented-strong work ethic, punctual-provide excellent customer serviceDuties-serving customers-Taking orders in person and over the phone-packing up orders-keeping out front fully stocked-Ensure that the store front is clean-able to stand for 8 hours-must be able to lift 20kg-frost cupcakes/small display cakes--make boxes/cut circles-cleaning/doing dishes-sweep/mop floors-frost cupcakes (will train)-decorating cookies (will train)- keep show case, fridges fully stocked-take inventory-able to help with fondant details for orders is an asset. (can train)*Need food safety courseJob Type: Full-timeSalary: From $16.00 per hourBenefits:Casual dressStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftSupplemental pay types:TipsEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In personApplication deadline: 2023-08-31Expected start date: 2023-09-05\",\n            \"location\": \"Ellen St, Miramichi, NB\"\n        },\n        {\n            \"id\": \"5FBF6F1F0C4D7878248C3648E914FA60\",\n            \"cityName\": \"3900 12 St NE, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1daecee555ee028b\",\n            \"jobName\": \"Nutritional Support Customer Service Representative\",\n            \"companyName\": \"Advanced Orthomolecular Research\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694363403324,\n            \"dateOfPosted\": 1693517257539,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.10407319999999,\n                    \"lon\": -114.0365001\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"11 St NE, Calgary, AB T2E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"AOR is one of Canada’s fastest growing Nutraceutical health supplement organizations. Our market leading premium products are manufactured and distributed primarily to specialty retailers throughout Canada and the United States.ResponsibilitiesLearn and maintain high level product knowledge of AOR products to help educate customersPromote AOR’s brand and products and capture opportunities to upsell or cross sell AOR productsProcessing orders by phone, fax and emailMaintaining up to date and accurate customer filesHandling customer creditsFilter and direct calls, and emails to the appropriate departmentsSupply relevant marketing materials to customers and fellow staff to ensure informational needs are metResolve customer complaints in a positive, timely, win/win manner. Document issues and actions taken in accordance with company processes for future problem analysis and elimination.Answer all technical questions on nutrition and our product line for customers via the phone, tickets and live chat.Receive monthly training on new and existing products.Investigate complicated customer questions with the research team, and occasionally the Quality Control team.Make suggestions on AOR products for customers based on a condition or symptom they might be trying to correctAssist the Customer Service Manager as necessaryAssist Marketing, Shipping, and Finance departmentWork synergistically with the both the Internal and External teamQualifications and SkillsObtained a Certificate in Holistic Nutrition or equivalent (Required)Completed post- secondary diploma in business, marketing, human resources, health science) is a nice to have but not required.Should have a strong work ethic, inter-personal skills, and independentExperience within a health- related industry would be considered an assetExperience working with Navision would be considered an assetJob Types: Full-time, PermanentSalary: $19.00-$22.00 per hourBenefits:Casual dressDental careDisability insuranceEmployee assistance programExtended health careLife insuranceOn-site parkingPaid time offRRSP matchStore discountVision careWellness programSchedule:8 hour shiftDay shiftMonday to FridayWork Location: In person\",\n            \"location\": \"St NE, Calgary, AB\"\n        },\n        {\n            \"id\": \"5DB6EBB41445BD0E9841B892A7594F2B\",\n            \"cityName\": \"Manitoba\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=76f0aa93ad896733\",\n            \"jobName\": \"Work-At-Home Customer Service RepresentAtive Job Openings (Full-Time)\",\n            \"companyName\": \"Mci Careers\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694362703969,\n            \"dateOfPosted\": 1665853894972,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.7608608,\n                    \"lon\": -98.8138762\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Manitoba, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" LOCATION: Remote Work-at-Home JOB TYPE: Full-Time PAY TYPES: Hourly + Bonus SALARY: $14.50 / hour BENEFITS & PERKS: REMOTE REPRESENTATIVE: Work-From-Home, Paid Training, Paid Time Off, Medical, Dental, Vision, Life Insurance, Retirement, Flexible Schedules, Company Laptop, Daily Contests, Prizes, Casual Dress Code, Regular Raises APPLICATION DETAILS: No Resume Required, Phone Interview POSITION OVERVIEW:  Sydney Call Centre, a MCI company is looking for work at home customer service, help desk, technical support, and sales representatives to support remote work demand. In these roles, you will handle inbound customer inquiries, or troubleshoot basic technical issues, and assist customers in adding or removing products and services. There are full-time positions available for almost any schedule, day, night, seven days a week.  The positions offers a competitive base pay, schedule, level, plus benefits for full-time, paid vacation, and variable bonus and contest incentives. All it takes to get started is for you to complete an easy online application and an informal interview with a talent acquisition specialist. If you do not have your equipment, MCI will provide it. You will need a home broadband connection.  -:  POSITION RESPONSIBILITIES:  WHAT DOES A CALL CENTRE REPRESENTATIVE DO? Develop your abilities and grow with our team, interacting with customers from coast to coast making outbound calls. Call Centre Representatives are responsible for the following tasks: Listen to customers, understand their needs, and resolve customer issues Utilize systems and technology to complete account management tasks Recognize sales opportunity and apply sales skills to upgrade Explain and position the products and processes with customers Appropriately escalate customer dissatisfaction with managerial team Ensure first call resolution through problems solving and effective call handling CANDIDATE QUALIFICATIONS:  WONDER IF YOU ARE A GOOD FIT? MCI provides all new employees with world-class training, so all positive, driven, and confident applicants are encouraged to apply. Ideal candidates for this position are highly motivated, energetic, and dedicated.Qualifications Must be 18 years of age or older High school diploma or equivalent Excellent organizational, written, and oral communication skills The ability to type swiftly and accurately (20+ words a minute) Basic knowledge of Microsoft Office Suite (Excel, PowerPoint, Word, Outlook) Basic understanding of Windows operating system Highly reliable with the ability to maintain regular attendance and punctuality The ability to evaluate, troubleshoot, and follow-up on customer issues An aptitude for conflict resolution, problem solving and negotiation Must be customer service oriented (empathetic, responsive, patient, and conscientious) Ability to multi-task, stay focused and self manage Strong team orientation and customer focus The ability to thrive in a fast-paced environment where change and ambiguity prevalent Excellent interpersonal skills and the ability to build relationships with your team and customers CONDITIONS OF EMPLOYMENT: Must be authorized to work in their country of residence (The United States or Canada) If needed, must be willing to submit up to a LEVEL II background and/or security investigation with a fingerprint. Job offers are contingent on background/security investigation results COMPENSATION DETAILS:  WANT AN EMPLOYER THAT VALUES YOUR CONTRIBUTION? We believe that hard work should pay off, so we make sure that our compensation and total rewards are competitive. Standard starting compensation is commensurate with experience. Regular reviews and raises are awarded based on tenure and performance, so our employees make more each year. Employees earn paid time off as well as paid holidays and paid training opportunities. Regular daily, weekly and monthly incentives are part of the overall compensation our team members enjoy and include monetary incentive and prizes such as computers, tablets, phones, TV’s, trips, tickets, and even cars. In addition to our standard group benefits offering for full-time employees following 90-days of employment, all employees are eligible to opt for our MEC medical plan after only 30-days of employment. Benefits options and plans vary slightly by location. JUST A FEW OF THE BENEFITS Medical, Dental, and Vision Coverage Options Paid Time-Off Advancement Opportunity Fun, Engaging Work Environment Casual Dress Code Cash and Prize Contests PHYSICAL REQUIREMENTS:  This job operates in a professional office environment. While performing the duties of this job, the employee will be largely sedentary and will be required to sit/stand for long periods while using a computer and telephone headset. The employee will be regularly required to operate a computer and other office equipment, including a phone, copier, and printer. The employee may occasionally be required to move about the office to accomplish tasks; reach in any direction; raise or lower objects, move objects from place to place, hold onto objects, and move or exert force up to forty (40) pounds.  REASONABLE ACCOMMODATION:  Consistent with the Americans with Disabilities Act (ADA), or the Canadian Disabilities Act (CDA) it is the policy of MCI and affiliates to provide reasonable accommodation when requested by a qualified applicant or employee with a disability unless such accommodation would cause undue hardship. The policy regarding requests for reasonable accommodation applies to all aspects of employment. If reasonable accommodation is needed, please contact Kate Murph, Vice President of Human Resources, kate.murph@mci.world.  DIVERSITY AND EQUALITY:  At MCI and its subsidiaries, we embrace differences and believe diversity is a benefit to our employees, our company, our customers, and our community. All aspects of employment at MCI are based solely on a person's merit and qualifications. MCI maintains a work environment free from discrimination, one where employees are treated with dignity and respect. All employees share in the responsibility for fulfilling MCI's commitment to a diverse and equal opportunity work environment. MCI does not discriminate against any employee or applicant on the basis of age, ancestry, color, family or medical care leave, gender identity or expression, genetic information, marital status, medical condition, national origin, physical or mental disability, political affiliation, protected veteran status, race, religion, sex (including pregnancy), sexual orientation, or any other characteristic protected by applicable laws, regulations, and ordinances. MCI will consider for employment qualified applicants with criminal histories in a manner consistent with local and federal requirements. MCI will not tolerate discrimination or harassment based on any of these characteristics. We adhere to these principles in all aspects of employment, including recruitment, hiring, training, compensation, promotion, benefits, social and recreational programs, and discipline. In addition, it is the policy of MCI to provide reasonable accommodation to qualified employees who have protected disabilities to the extent required by applicable laws, regulations, and ordinances where an employee works. ABOUT MCI (PARENT COMPANY):  MCI helps customers take on their CX and DX challenges differently, creating industry-leading solutions that deliver exceptional experiences and drive optimal performance. MCI assists companies with business process outsourcing, staff augmentation, contact center customer services, and IT Services needs by providing general and specialized hosting, software, staff, and services.  In 2019 Marlowe Companies Inc. (MCI) was named by Inc. Magazine as Iowa’s Fastest Growing Company in the State of Iowa and was named the 452nd Fastest Growing Privately Company in the USA, making the coveted top 500 for the first time. MCI’s subsidiaries had previously made Inc. Magazine's List of Fastest-Growing Companies 15 times respectively. MCI has fifteen business process outsourcing service delivery facilities in Iowa, Georgia, Florida, Texas, Massachusetts, New Hampshire, South Dakota, New Mexico, California, Kansas, and Nova Scotia.  Driving modernization through digitalization, MCI ensures clients do more for less. MCI is the holding company for a diverse lineup of tech-enabled business services operating companies. MCI organically grows, acquires, and operates companies that have a synergistic products and services portfolios, including but not limited to Automated Contact Center Solutions (ACCS), customer contact management, IT Services (IT Schedule 70), and Temporary and Administrative Professional Staffing (TAPS Schedule 736), Business Process Management (BPM), Business Process Outsourcing (BPO), Claims Processing, Collections, Customer Experience Provider (CXP), Customer Service, Digital Experience Provider (DXP), Account Receivables Management (ARM), Application Software Development, Managed Services, and Technology Services, to mid-market, Federal & enterprise partners. MCI now employs 10,000+ talented individuals with 150+ diverse North American client partners across the following MCI brands: GravisApps, Mass Markets, MCI Federal Services (MFS), The Sydney Call Center, OnBrand24, and Valor Intelligent Processing (VIP).  DISCLAIMER:  The purpose of the above job description is to provide potential candidates with a general overview of the role. It's not an all-inclusive list of the duties, responsibilities, skills, and qualifications required for the job. You may be asked by your supervisors or managers to perform other duties. You will be evaluated in part based upon your performance of the tasks listed in this job description. The employer has the right to revise this job description at any time. This job description is not a contract for employment, and either you or the employer may terminate employment at any time, for any reason. REGARDING COVID-19:  As an employer supporting critical Federal, State, Provincial, and Commercial clients, we have taken steps to ensure that we remain operational while taking every precaution possible to prevent the spread of COVID-19 and keep our employees safe. Measures include social distancing for those working on-site, frequent deep cleaning and disinfecting of workstations and common areas, daily contactless temperature checks for those essential employees working on-site, travel policies limiting travel and mandatory quarantine, reporting and quarantine processes and policies for those exposed, and requesting masks to be worn when on-site employees are not at their workstation.REGARDING MASKS To help protect our candidates and employees, we are REQUESTING that all on-site candidates wear a mask to interviews and training. In locations where state or local government has mandated the use of masks, we will abide by the mandate, and REQUIRE masks be worn when on-location. For more information on MCI’s response to COVID-19 please visit www.mci.world/covid-19.\",\n            \"location\": \"Manitoba\"\n        },\n        {\n            \"id\": \"CDA0BDB1AC0AED665880E54E60B6F0D7\",\n            \"cityName\": \"60 Calder St, Red Deer, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fbcf853e5d5ea076\",\n            \"jobName\": \"Customer Service/Retail Sales (Shine Genius)\",\n            \"companyName\": \"Mint Smartwash\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694362651293,\n            \"dateOfPosted\": 1692658282748,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 52.2690328,\n                    \"lon\": -113.8114955\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Red Deer\",\n                \"formattedAddress\": \"Red Deer, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Red Deer County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Red Deer, AB\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"COMPANY OVERVIEWMint Smartwash (“Mint”) is an unparalleled growth story in the express tunnel car wash market space, strategically headquartered in Calgary, Alberta, with operations located in Western Canada and Montana, USA. The mission of Mint Smartwash is To provide a superior car wash experience delivering epic shine while saving time and feeling mint! Mint is highly focused on capitalizing on their successes to date, as an industry leader, innovator, and employer of choice to expand their presence across our geographical markets. The Mint leadership team is a dedicated group of car wash enthusiasts with strong operational and business competencies exemplifying a growth mind set, in the pursuit of excellence. At Mint we look to SHINE everyday through living our corporate values of being MAVERICKS, helping our COMMUNITIES, investing in the future of our PEOPLE, neutralizing our ENVIRONMENTAL impact and delivering EXCELLENCE in customer experience.COMPENSATION· Base pay starting at $15.00 per hour.· UNLIMITED earning potential! Earn an extra $15.00 or MORE when you match customers with the right membership product!· Profit sharing through our monthly bonus program! Sharing up to 1% of revenue by achieving our targets and following our processes while achieving our shared goals.· Investing in the future of our people through our professional development / scholarship program.REPORTINGReports directly to General Manager, takes direction from Assistant Managers & Supervisors.Why does this role exist? To build customer relationships through great service. Providing sales support to customers and driving membership sales for the business. Shine Genius is also responsible to identify prohibited vehicles and ensure they do not enter the wash.CORE ACCOUNTABILITIES(listed in order of importance)Customer Service: Ensure we are providing outstanding customer service throughout the wash experience. Provide our customers with knowledgeable and friendly service.Membership and Wash Sales: Develop sales skills to drive membership sales at the location.Tunnel Operations: Develop skills to operate and troubleshoot the equipment in the wash tunnel, and vacuum plaza.Safety Performance: Be an active participant in safety meetings, hazard assessments and training.Facility Upkeep: Ensuring that all aspects of a Mint Smartwash location is neat and tidy all the time.Professional Development: Ensure you are continuously learning and growing your skillset through Mint's competency-based training program.KEY RESPONSIBILITIESCustomer Service· Greet the customer with a smile and wave, this is the foundation for creating a welcoming and fun environment.· Embody professionalism with colleagues and customers. Wear the Mint uniform and take pride in its appearance.· Represent Mint Smartwash in the community in a positive manner.· Guide and mentor new employees to become successful Shine Genius’s.Membership and Wash Sales· Follow the Mint sales process and execute on all aspects of it.· In depth knowledge of the products and services we offer.· Be able to execute sales promotions.· Consistently execute on sales targets.· Screen vehicles at the paystation and radio any requirements to the operations staff.Tunnel Operations· Develop in-depth knowledge of the wash equipment, and how each component is supposed to operate.· Manage the tunnel. This includes monitoring no pile-ups and being in the tunnel at all times that a vehicle is going through the wash.· Work with the team to improve wash quality.· Work with the team to ensure we meet uptime targets for the wash.· Support maintenance personnel by keeping the equipment room in good order and reporting any issues or leaks that develop.Understand the car wash chemistry and how to add, document and work on chemical panels.Safety Performance· Bring forward safety concerns to your supervisor and log them as Hazard ID's in Mint Ops.· Complete, understand and put into action the required safety training.· Participate in Safety Meetings.Facility Upkeep· Own the daily tasks that keep the office, pay stations, vacuum lot and entire site looking Mint.· Actively look for ways to improve the cleanliness or appearance of the facility.· Become proficient with Mint Operations software and how to complete tasks and checklists.Professional Development· Become an expert in all tasks related to the Shine Genius position.· Work through the competency-based training program to develop the skills required for the next role.CORE COMPETENCIES· Customer Orientation: Focused on ensuring we provide excellent customer service. This includes direct interaction as well as wash quality and facility and employee presentation.· Team Player: Concerned with team success as well as individual performance; works well with other team members.· Safety Leadership: Robust understanding of safety principles and ability to lead, train and enforce safe operating procedures.· Inquisitive: Seeks to understand and asks questions about things they don't know. Empowers themselves with knowledge.· Well-Developed Communication Skills: Fosters mutual understanding using solid verbal communication skills; able to effectively influence and positively negotiate with others.Job Types: Full-time, Part-time, PermanentPart-time hours: 20 per weekSalary: From $15.00 per hourBenefits:Dental careExtended health carePaid time offVision careSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayMorning shiftWeekends as neededSupplemental pay types:Commission payEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Red Deer, AB\"\n        },\n        {\n            \"id\": \"5A6F30B19C5C7D5971E7C25545C0F6BA\",\n            \"cityName\": \"Whitby, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8c7edcf5b3bbbb47\",\n            \"jobName\": \"Clerk, Customer Service\",\n            \"companyName\": \"P.D. Mclaren Limited\",\n            \"rowSalary\": \"$45,000 a year\",\n            \"date\": 1694361477341,\n            \"dateOfPosted\": 1693511345102,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8975446,\n                    \"lon\": -78.94293290000002\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Whitby\",\n                \"formattedAddress\": \"Whitby, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Whitby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: BilingualHours: 40 hours per weekEducation: Secondary (high) school graduation certificateExperience: 7 months to less than 1 yearTasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Receive and log complaints Receive payments Answer written and oral inquiries Prepare or oversee preparation of reports, briefs, bibliographies, speeches, presentations, Website content and press releases Explain procedures, risks and benefits to clients Computer and technology knowledge Internet MS Excel MS Outlook MS Word MS PowerPoint MS Office Work conditions and physical capabilities Attention to detail Fast-paced environment Tight deadlines Work under pressure Personal suitability Punctuality Client focus Efficient interpersonal skills Excellent oral communication Excellent written communication Flexibility Organized Reliability Team player Initiative Judgement Ability to multitask Screening questions Are you currently a student? Are you currently legally able to work in Canada? Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? Health benefits Dental plan Health care plan Paramedical services coverage Long term benefits Long-term care insurance\",\n            \"location\": \"Whitby, ON\"\n        },\n        {\n            \"id\": \"F165ABD4D37553E78784130B34F99AFC\",\n            \"cityName\": \"1055 St Laurent Blvd, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2f88a28757d6ac50\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Adonis Groupe\",\n            \"rowSalary\": \"From $16.10 an hour\",\n            \"date\": 1694360730163,\n            \"dateOfPosted\": 1692655831593,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4184938,\n                    \"lon\": -75.6342112\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"St. Laurent Blvd, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking a multi-talented and highly motivated customer service professional to join our team. The ideal candidate will have strong communication skills, a keen attention to detail, and the ability to quickly learn and adapt to the ever-changing retail environment. This position is a great fit for an individual who possesses these skills and is interested in working in a dynamic and fast-paced retail environment.SummaryAs the last point of contact with customers, it is the cashier's responsibility to ensure that the customer's experience has been positive, that they have found everything they were looking for and that they leave the store with a smile. The Cashier takes care of the payment stage, balances the register and finally, makes sure that his workstation is clean.Specific Tasks· Greet customers and make them feel welcome· Advise and answer customers' questions· Provide exemplary customer service· Ask the customer if they have found everything they were looking for; if not, ask a clerk or cashier's assistant to pick up the product· Ensure that all items have been paid for and there are no products on the bottom of the cart· Ensures that the customer is of legal age to purchase liquor and lottery products· Record all sales in accordance with store procedures· Collects money due from customers (cash, credit or debit card)· Completes purchase orders for delivery· Assist in the packaging of products when the packer is not available· Contact the packer or clerk to verify the price of a product· Clean the work area (carpet and cash counter)· Make cash deposits during the day, according to policy· Count the cash float, according to policy· Close the cash register, produce the cash report and make deposits· Adhere to store dress and personal hygiene code· Adhere to safety standards and wear personal protective equipment as required· Follow food safety procedures as required by the departmentEligibility Criteria· Cashier Experience is an asset· Past work experience in a grocery store setting is an AssetCompetencies· Focused on excellent customer service· Honesty and speed· Team player· Autonomous and resourceful· Sense of responsibilityThe Cashier works as a team with the members of the Department. They also interact with customers in order provide them with good service.Adonis welcomes and encourages applications from people with disabilities. Every effort will be made to provide accommodations requested by candidates taking part in all aspects of the selection process.Job Type: Full-timePay: From $16.10 per hourBenefits:On-site parkingDay range:Every WeekendMonday to FridayShift:Day shiftEvening shiftWork setting:Grocery storeWork Location: In person\",\n            \"location\": \"St-laurent, Boulevard, Ottawa, ON\"\n        },\n        {\n            \"id\": \"2440F44B646233C725F496172BA83E39\",\n            \"cityName\": \"Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d50f1931e01b0fb3\",\n            \"jobName\": \"Customer Service Representative - Insurance\",\n            \"companyName\": \"Recrute Action Inc.\",\n            \"rowSalary\": \"$21.02 an hour\",\n            \"date\": 1694360574810,\n            \"dateOfPosted\": 1692655676076,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.64876350000001,\n                    \"lon\": -63.5752387\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax Regional Municipality\",\n                \"formattedAddress\": \"Halifax Regional Municipality, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halifax Regional Municipality\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 2 years to less than 3 yearsWork setting Insurance company Tasks Answer inquiries and provide information to customers Computer and technology knowledge MS Windows Sales experience Call centre Security and safety Criminal record check Work conditions and physical capabilities Attention to detail Fast-paced environment Personal suitability Efficient interpersonal skills Excellent oral communication Excellent written communicationWork Term: TemporaryWork Language: EnglishHours: 37.5 hours per week\",\n            \"location\": \"Halifax, NS\"\n        },\n        {\n            \"id\": \"9BBFFDD0FF6FF3F241C017CDF47CB4E0\",\n            \"cityName\": \"140 Ellen St, Miramichi, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=defd90c2caf2bc22\",\n            \"jobName\": \"Customer Service/Bakery Assistant\",\n            \"companyName\": \"Cake a Chance\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694360373756,\n            \"dateOfPosted\": 1692662087851,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.0016309,\n                    \"lon\": -65.565644\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Miramichi\",\n                \"formattedAddress\": \"Ellen St, Miramichi, NB E1V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Miramichi\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ellen St, Miramichi, NB\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Tuesday-Friday 9-5Saturday 9-3-Have an outgoing personality-Hard-working, efficient-able to multitask-able to work unsupervised-detail oriented-strong work ethic, punctual-provide excellent customer serviceDuties-serving customers-Taking orders in person and over the phone-packing up orders-keeping out front fully stocked-Ensure that the store front is clean-able to stand for 8 hours-must be able to lift 20kg-frost cupcakes/small display cakes--make boxes/cut circles-cleaning/doing dishes-sweep/mop floors-frost cupcakes (will train)-decorating cookies (will train)- keep show case, fridges fully stocked-take inventory-able to help with fondant details for orders is an asset. (can train)*Need food safety courseJob Type: Full-timeSalary: From $16.00 per hourBenefits:Casual dressStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftSupplemental pay types:TipsEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In personApplication deadline: 2023-08-31Expected start date: 2023-09-05\",\n            \"location\": \"Ellen St, Miramichi, NB\"\n        },\n        {\n            \"id\": \"E4930A03AD5751ACD144F5AE9F7B6985\",\n            \"cityName\": \"Kenora, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=16237b593e382179\",\n            \"jobName\": \"Clerk, Customer Service\",\n            \"companyName\": \"Xtracash Ltd\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694360364590,\n            \"dateOfPosted\": 1692657332860,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.7670416,\n                    \"lon\": -94.4893924\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kenora\",\n                \"formattedAddress\": \"Kenora, ON P0V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Kenora District\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kenora\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Will trainWork setting Private sector Security and safety Bondable Criminal record check Transportation/travel information Own transportation Work conditions and physical capabilities Attention to detail Personal suitability Excellent written communication Organized Reliability Team playerWork Term: PermanentWork Language: EnglishHours: 20 to 30 hours per week\",\n            \"location\": \"Kenora, ON\"\n        },\n        {\n            \"id\": \"0B8E1FB93589746EC8067EFFD4B001B0\",\n            \"cityName\": \"Harrow, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6ed2c52c118497e3\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Viewpointe Estate Winery\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694357120230,\n            \"dateOfPosted\": 1692657234468,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.0355591,\n                    \"lon\": -82.918148\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Essex\",\n                \"formattedAddress\": \"Harrow, Essex, ON N0R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Essex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Essex\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Viewpointe Estate Winery is looking for a qualified part-time candidate for Customer Service Associate . Are you someone that is friendly, well spoken and has a passion for wine with an interest to develop that further? Capable of providing guests with a memorable and enjoyable experience?We strive to make all of our staff and guests feel welcomed and appreciated. We are looking for someone with a great work ethic and the integrity who is capable of providing the highest level of customer satisfaction. This candidate will be working in the Tasting Bar, on the Patio and in Retail Store.Smart serve certification is a must.Looking for someone with a flexible schedule but capable of working Day shifts Daily including weekends and holidaysThe Candidate should:Be able to provide the highest level of customer service at all times (for the guests' entire experience)Have 1-3 years experience in the wine, hospitality or retail industryBe able to anticipate guests' needs, offer suggestions and anticipate customer concerns and requestsBe responsible for educating guests on Viewpointe's wines & wine-making processes in a friendly, informative, professional way , including suggestive-selling to provide the customer with a complete satisfying experience.Be able to effectively operate the POS system with accuracy ,efficiency and provide accurate cash counts and perform opening & end-of-shift closeout tasks.Stock shelves and maintain wine inventory levelsEnsure that the retail area & other common areas are kept swept, mopped & cleaned ,including washrooms, halls and the outdoor patio areasBus and clear tables as well as sanitizing as per Covid guidelinesAssist with promotion, display and marketing of merchandise and ensure specials, features and/or events are highlightedPossess presentation skills-leading guest through tastings or toursBe able to lift 40 pounds (wine cases)Be able to work independently and within a team structure.Have excellent written and oral communication skillsHave the ability to organize & prioritize the workload and possess quick decision-making skills and withstand a high-pressure environment.Follow all policies, procedures and service standardsPerform other duties as assignedViewpointe welcomes and encourages applications from people with disabilities. Accommodations are available on request for candidates taking part in all aspects of the selection processPart-time hours: 10-24 per week*Job Types: Part-time, CasualSalary: $16.50 per hourCOVID-19 considerations:All customers are required to where a mask until seated, PPE provided, curbside service availableBenefits:Discounted or free foodStore discountCOVID-19 precautionsPPE provided, curbside service availableJob Types: Part-time, Fixed term contract, SeasonalContract length: 6 monthsPart-time hours: 10-24 per weekSalary: $16.50 per hourBenefits:Store discountDay range:HolidaysMonday to FridayWeekend availabilityShift:Day shiftExperience:sales: 2 years (preferred)customer service: 2 years (preferred)Work Location: In personExpected start date: 2023-08-28\",\n            \"location\": \"Harrow, ON\"\n        },\n        {\n            \"id\": \"86A02E302D9BB001C96DBBD5B3F80100\",\n            \"cityName\": \"Central Mountain Air in Campbell River, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5a0943cd04b1fb68\",\n            \"jobName\": \"Customer Service And Ramp Agent\",\n            \"companyName\": \"Central Mountain Air\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694356386877,\n            \"dateOfPosted\": 1693508667664,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.03312260000001,\n                    \"lon\": -125.2733353\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Campbell River\",\n                \"formattedAddress\": \"Campbell River, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Strathcona\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Campbell River\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Central Mountain Air, we pride ourselves in providing vital air connectivity to remote communities nestled within the stunning landscapes of Alberta and British Columbia. Our commitment to safety, reliability, and exceptional customer service is at the core of everything we do. Join our dedicated team and become an integral part of bringing people together and fostering economic growth in these unique regions. We are currently seeking a Part-Time Customer Service Agent/Ramp Agent to join our team at our Campbell River, BC base.Customer Service Agents are part of a team that works in conjunction with crew members and ground agents to escort and board passengers, take reservations, and maintain baggage accuracy and safety.Customer Service Agents report to the Customer Service Supervisor.Job ResponsibilitiesCustomer Service AgentCheck-in and greeting passengers, taking reservations and handling payments (when necessary)Responding to passenger inquiriesAssisting passengers with disabilities during deplaning and enplaningProcessing baggage and cargoGate operations and flight closure, communicating load counts to flight crewsOther duties as assignedRamp AgentHandling passenger baggage and cargo while adhering to all ramp/airside methods and standardsMarshalling aircraft in and out of the ramp area safelyOperating and positioning all airside equipmentPerforming basic baggage equipment maintenance checksAssisting passengers with disabilities during deplaning and enplaningCoordinate aircraft de-icingAccepting and receiving cargoCommunicate load counts to flight crewsOther duties as assignedJob RequirementsMust have a valid driver’s license or transferrable license (“N” license at minimum)Ability to lift 70lbs/32kgs repetitivelyAbility to bend, kneel, crawl, stoop, climb repetitivelyWork in confined spacesSafety conscious- able to keep safety a priority in all tasksSuperior customer service skillsGood communication and interpersonal skillsAbility to work independently as well as in a team environmentAbility to work flexible hours, including split shifts and weekend coverageWillingness to work outside in adverse weather conditionsGood computer skillsA positive attitude with the ability to be flexibleMust be able to obtain and retain an Airport RAICBenefits of Working at Central Mountain Air (part-time employees)Standby travel within Central Mountain Air network for employees, their eligible family members, and their buddies (not including fees and taxes)Free cargo shipping for employees on CMA flightsCentral Mountain Air is an equal opportunity employer and values diversity in our workplace. Our requirement is that you have the skills and abilities to do the job and the attitude of a team player. We encourage applications from all qualified individuals regardless of race, nationality, ethnic origin, color, religion, age, sex, sexual orientation, marital status, family status, and disability.Central Mountain Air thanks all applicants, however, only those selected for an interview will be contacted.Job Type: Part-timePart-time hours: 2 - 3 per weekSalary: $17.00-$18.00 per hourAbility to commute/relocate:Campbell River, BC V9H 1T5: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Campbell River, BC\"\n        },\n        {\n            \"id\": \"6C8DEC921DC1760B81FC910E24E6BAB0\",\n            \"cityName\": \"700 Penner St, Virgil, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c1e3d3b0ba042e26\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Penner Building Centre\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694355575613,\n            \"dateOfPosted\": 1692655486184,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.22555939999999,\n                    \"lon\": -79.12088729999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara-on-the-Lake\",\n                \"formattedAddress\": \"Penner St, Niagara-on-the-Lake, ON L0S, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Elden Street, Niagara-on-the-Lake, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you looking for a part time scenario where you can work 3 days a week and feel like your part of a family? we are looking to hire a part time cashier to work through out the week and on the very rare occasion on a saturday. We are only ever open till 6pm and we are always closed on Sundays. This position will be ongoing and is not a seasonal job so we are hoping to find someone local and part of the NOTL and Virgil community. A positive attitude and a smile mean more to us that years of experience so don't worry about having an extensive resume with a lot of experience, we can train the cashier part but you need the smile.If this sounds like what you need and are looking for please apply and we will get back to you asap.Job Types: Part-time, PermanentPart-time hours: 18-28 per weekSalary: From $15.50 per hourBenefits:Store discountDay range:Weekends as neededShift:10 hour shift8 hour shiftDay shiftShift availability:Day Shift (preferred)Work Location: In personExpected start date: 2023-09-08\",\n            \"location\": \"Elden Street, Niagara-on-the-Lake, ON\"\n        },\n        {\n            \"id\": \"F8FD7348B23AFB85A0EDC58D65B0A272\",\n            \"cityName\": \"Calforex Currency Exchange in Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9b913b3bc14aaac0\",\n            \"jobName\": \"Teller/Customer Service Representative\",\n            \"companyName\": \"Calforex Currency Exchange\",\n            \"rowSalary\": \"$16–$18 an hour\",\n            \"date\": 1694355505938,\n            \"dateOfPosted\": 1693506956047,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"NO STUDENTS/MUST SPEAK FRENCH AND ENGLISH AT HIGH LEVELCalforex is a rapidly growing foreign exchange company with branches across Canada. We are currently seeking Foreign Exchange Tellers in our Ottawa branch.Hiring either Full-Time or Part-Time positions with shifts scheduled between 10:00 am -8:00 pm seven days a week.Applicants MUST have flexible availability in order to apply for this position.The position of teller is of a front line, ambassador to both our local clientele and tourists from across the globe. We are looking for candidates to fulfill the following responsibilities:Offer excellent customer service and professionalismProbe customers to accurately determine their needs and offer appropriate products and services from Retail, Corporate and Private Client departmentsCash and time management experience (an asset)Bilingual (English and French) preferableSuccessful candidates will possess the following skill sets and qualifications:Friendly and enjoys working with the publicProfessional and courteous phone etiquetteHigh school diploma and proficient with computersAbility and desire to learn and growA professional, business dress code is in place and must be adhered to at all times. Applicants must be bondable and be able to pass a police background check.Job Type: Full-TimeSalary: $16.00 to $18.00 /hourFull-time hours: 30-40 per weekJob Types: Part-timeSalary: $16.00-$18.00 per hourCOVID-19 considerations:We have policies in place that all employees and customers must adhere to.Job Type: Full-timeSalary: $16.00-$18.00 per hourSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayNight shiftWeekends as neededExperience:customer service: 2 years (preferred)Language:French (required)Work Location: In person\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"512B4B68D8944C5B8135D604AEE293B0\",\n            \"cityName\": \"27 Allstate Pky, Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1bd750ff9d5b8897\",\n            \"jobName\": \"Customer Service Associate - 28467\",\n            \"companyName\": \"Exela Technologies\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694355504750,\n            \"dateOfPosted\": 1693506955297,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8561002,\n                    \"lon\": -79.3370188\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Markham\",\n                \"formattedAddress\": \"Markham, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Markham\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Key responsibilities include:Backfill for front receptionist- greet visitors, answer phones, and hospitality dutiesReview and process confidential and extremely time-sensitive applicationsIdentify objective data and enter (“key what you see”) at a high level of productivity and accuracy.Perform data entry task from a paper and/or document imageUtilize system functions to perform data look-up and validationMaintain high degree of quality control and validation of the completed workIdentify, classify, and sort documents electronicallyUpdate computer records on multiple local databasesLocate, retrieve, maintain, organize and assist usersRetrieve and/or archive documentsEnsure operating and quality standards are met based on service objectivesMaintain accuracy of required reports and logsEnsure the highest level of customer careEnsure adherence to business guidelines, safety, and security proceduresSupport financial results by minimizing site waste and reworkCreate excel spreadsheets, mail merge projects and word documentsAbility to multi-task and manage multiple priorities and deadlines is criticalPerform A/P functionsAssist with general facility computer task and supportProcess system access requests for clientDependable, Self-motivated and accountableMust be a team player with a solution minded attitudeTake direction from supervisor or site managerParticipate in cross-training and perform other duties as assigned (answer phones, outgoing shipments, etc)Perform other tasks as assignedAdhering to all safety procedures PositionRequirements:High school diploma or equivalent (GED) requiredMinimum of 1 year A/P related experience preferredAbility to communicate both verbally and written with customers and company personnel requiredGeneral knowledge of Access and Lotus notes databasesMust become fully familiar with a variety of on-site equipment and be capable and willing to perform first level troubleshootingStrong organizational and administrative skills preferredProficient with PC and windowsProficient in MS OfficeAbility to walk, sit, stand or sit for long periods (possibly entire shift)Ability to adhere to employee attendance policyPreferred Qualifications:One year administrative/Accounts Payable or related work experience preferredProven organizational and multi-tasking skills“The pay range for this position starts at $17; however, base pay offered may vary depending on job-related knowledge, skills, and experience. Bonus opportunities may be provided as part of the compensation package, in addition to a full range of medical, financial, and/or other benefits, dependent on the position offered.”Job Types: Full-time, PermanentPay: $17.00-$18.00 per hourDay range:Monday to FridayShift:8 hour shiftExperience:Front desk: 1 year (preferred)Administrative: 1 year (preferred)\",\n            \"location\": \"Markham, ON\"\n        },\n        {\n            \"id\": \"E66952C69E8EDCC9D62B1285E31C91EB\",\n            \"cityName\": \"120 Lowson Cres, Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2230d8133c3339b0\",\n            \"jobName\": \"E-Store Customer Service Representative\",\n            \"companyName\": \"The Quark Group\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694355410328,\n            \"dateOfPosted\": 1692655592817,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8357439,\n                    \"lon\": -97.20617569999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Lowson Cres, Winnipeg, MB R3P, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"In Office Position:The E-Store Customer Service Representative performs the daily functions of the Quarks E-Store: Upload merchandise details to the website, generating picking information for the stores, and handle troubleshooting, complaints, returns, and phone orders with exceptional customer service skills.ResponsibilitiesE store Customer Service:· Respond to email and telephone queries.· Handle customer complaints, provide appropriate solutions and alternatives within the time limits; follow up to ensure resolution.· Process special orders, exchanges and returns.Website Updates:· Upload images and group merchandise for the E-Store.\\\\· Communicate with vendors to receive images in advance of upcoming season.- Various other website maintenance dutiesOrder Fulfillment:· Generate picking info to stores.· Supply shipping information to stores.Other:· Adhere to all applicable federal and provincial regulations and company policies.· Consistently look for operational improvements.· Other duties, relevant to the position, shall be assigned as required.Requirements· 1 Year of proven customer support experience or experience as a client service representative.· Strong phone contact handling skills and active listening.· Ability to multi-task, prioritize, and manage time effectively.· Excellent communication skills.· Proficient with Microsoft Excel, Word and Outlook. Knowledge of Imagine is an asset.· Team oriented, and able to manage stress.· Bilingual is an asset.Job Type: Full-timeSalary: $16.50 per hourBenefits:Dental careExtended health carePaid time offSchedule:8 hour shiftEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Lowson Cres, Winnipeg, MB\"\n        },\n        {\n            \"id\": \"95260582D134B9257892A590239C5FB6\",\n            \"cityName\": \"London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ee360d088118769e\",\n            \"jobName\": \"Vmi Customer Service Representative\",\n            \"companyName\": \"Wfs Ltd\",\n            \"rowSalary\": \"$19.35 an hour\",\n            \"date\": 1694355407284,\n            \"dateOfPosted\": 1693506619947,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9849233,\n                    \"lon\": -81.2452768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"POSITION TITLE: VMI Customer Service RepresentativeThis is a Full Time position on the day shift. WFS Ltd. is an industrial distribution company founded in 1955. In 2014, WFS was acquired by Grainger, marking the beginning of a new and exciting chapter in WFS’ evolution. With multiple branch locations across Southwestern Ontario, and approximately 250 team members, we help professionals keep the world working, while creating a company where dedicated talented people can thrive.At WFS our true value is our people. Attracting and engaging the best team members is the key to our success. We offer a positive work environment, and we value diversity and inclusion, which makes WFS a great place to work. Are you looking for a career that offers competitive pay for performance, comprehensive benefits, an attractive pension plan, and challenging and rewarding job opportunities?Join us today!KEY DUTIES AND RESPONSIBILITIES:Travel to customer facilities in London and surrounding area on a daily or weekly basisPerform inventory cycle counts and inventory replenishment for on-site inventory and vending machine inventory at customer stocking locationsInteract with the customer’s personnel to provide the highest level of customer serviceFill customer orders and package orders for deliveryComplete deliveries as requiredOrganize and maintain accurate inventory at all stocking locationsWork with WFS Sales staff to create VMI programs for customersAdvise Inside Customer Service Representative of customer orders and requestsFollow all safety protocol in compliance with WFS' Health and Safety policies, the Occupational Health & Safety Act and the customer’s safety programSupport the WFS Quality SystemAll other duties as assignedREQUIRED EXPERIENCE AND QUALIFICATIONS:Minimum of 1 year warehouse experience, and 2 years’ customer service experienceCompletion of high school diploma, or equivalent experienceAbility to self-manage, self-motivate, and work independentlyDemonstrated winning attitudeSuperior organizational and time management skillsProven ability to build relationships with customers and business partners, and communicate effectivelyIntermediate computer literacy including Microsoft applications (Excel, Word, etc.)Ability to learn and retain new software programs relating to industrial vendingPossession of a valid G driver’s license and a clean driver’s abstractIf you don't meet every qualification, know that at WFS Ltd. we are dedicated to building a diverse, inclusive, and authentic workplace. So, if you're excited about this role but your past experience doesn't align perfectly with every skillset in the job description, we encourage you to apply anyway. You may be just the right candidate for this or other roles.WFS strives to be an employer of choice, to attract and retain top diverse talent, and to provide a safe and positive work environment for all of its team members. As part of the WFS hiring process, pre-employment background checks will be required for all external candidates. Internal candidates will be required to undergo a pre-employment background check when they move from a non-driving role to a driving role, and/or into a leadership position.WFS is an Equal Opportunity Workplace. All applicants who we believe to be qualified will receive consideration for employment without regard to race, religion, sex, sexual orientation, gender identity, national origin, age, or disability. Accommodations are available on request for all persons with disabilities taking part in the selection process.Job Type: Full-timePay: $19.35 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftMonday to FridayApplication question(s):What are your salary expectations for this position?Shift availability:Day Shift (required)Willingness to travel:50% (required)Work Location: On the road\",\n            \"location\": \"London, ON\"\n        },\n        {\n            \"id\": \"D73EBEEFFA3E26F81AEFA3F6A1A7FB22\",\n            \"cityName\": \"3105 Winston Churchill Blvd, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2fcebe79d8b0a686\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Cell N Computer\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694355333380,\n            \"dateOfPosted\": 1672355604166,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5506821,\n                    \"lon\": -79.7195594\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Winston Churchill Blvd, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Maintaining a positive, empathetic and professional attitude toward customers at all times.Responding promptly to customer inquiries.Communicating with customers through various channels.Acknowledging and resolving customer complaints.Knowing our products inside and out so that you can answer questions.Processing orders, forms, applications, and requests.Keeping records of customer interactions, transactions, comments and complaints.Communicating and coordinating with colleagues as necessary.Providing feedback on the efficiency of the customer service process.Ensure customer satisfaction and provide professional customer support.Organizing and shelving products, if neededJob Type: Part-timeSalary: $15.00-$16.00 per hourBenefits:On-site parkingStore discountSchedule:4 hour shiftMonday to FridayWeekend availabilitySupplemental pay types:Commission payCOVID-19 considerations:To keep our employees as safe as possible, we have installed clear plastic barriers and provided masks, gloves, and hand sanitizers. Additionally, masks are mandatory for Employees and Customers inside.Work Location: In person\",\n            \"location\": \"Winston Churchill Blvd, Mississauga, ON\"\n        },\n        {\n            \"id\": \"40C5251AFCD86174721FCD341B24A56E\",\n            \"cityName\": \"Aurora, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c5fec82ccb34d070\",\n            \"jobName\": \"Insurance Customer Service Representative\",\n            \"companyName\": \"Gowda-Singh Insurance Inc.\",\n            \"rowSalary\": \"$44,000 a year\",\n            \"date\": 1694354354936,\n            \"dateOfPosted\": 1693508806665,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.00648,\n                    \"lon\": -79.450396\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Aurora\",\n                \"formattedAddress\": \"Aurora, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Aurora\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 44000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    44000.0\n                ],\n                \"range\": {\n                    \"gte\": 44000.0,\n                    \"gt\": null,\n                    \"lte\": 44000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Insurance - Customer Service Representative Desjardins Agent Team Member Location: Aurora, ON Type: Full Time, Permanent, 100% In office positionThank you for your interest and time in reviewing our open posting! My name is Samantha Gowda-Singh and I am a Desjardins Insurance Agent looking for an energetic, driven and competitve sales professional interested in joining my team, helping our clients through value-based conversations and providing a truly remarkable client experience! If you are motivated, honest, indepenedent, and looking for a long-term career with a supportive team then this might just be the opportunity for you!About Our Team & Office SpaceWe help customers with their insurance and financial services needs, including Auto Insurance, Home Insurance, Life Insurance, Business InsuranceOur entire team works from our office location, and we recently moved to our new office space located in Aurora, ONWe currently have 6 team members at our agencyWe hold monthly team meetings that include lunch, where we always support a local small businessBeverage & snack station at the office included (e.g. coffee, tea, water)We love supporting our local community! e.g. participating in Chamber of Commerce events like the annual Street Festival & Home Show, donating to our local food banks.Responsibilities:Provide efficient, and exceptional customer service each and every time you interact with a client Service can include responding to telephone, email or walk-in inquiries regarding insurance eligibility, coverages, changes, claim submissions and billing clarifications.Work with the team to establish sales goals that will contribute to the agency's growth and then executing on the plan laid out by the team to achieve these goalsComplete administrative tasks as neededRequirements:Property & Casualty OTL license (preferred/must be able to obtain within 1 month of a job offer) please note all job offers are conditional upon successful completion of the OTL license - learn more about the exam through the Insurance Institute of Ontario.Previous sales or customer service experience is an assetExcellent communication skills - written, verbal and listeningProactive in problem-solvingAbility to multi-taskAbility to make presentations to potential customersstrong typing speedCompensation Package highlights:Base salary starting at $42,000 increase to $44,000/year, after successful completion of probationary period (6 months) as well as obtaining OTL license OTLEmployee benefitsUncapped income earning potential through sales commissions and incentivesPaid trainingPaid vacation (starting at 3 weeks/year)Paid personal daysPaid sick daysThese positions are with an independent contractor agent that is part of the Desjardins exclusive agent network, not with Desjardins Group or its subsidiaries. This agents’ employees are not employees of Desjardins. Independent contractor agents are responsible for and make all employment decisions regarding their employees. Samantha Gowda-Singh - Desjardins Insurance Agent Company Website: www.gowdasingh.com\",\n            \"location\": \"Aurora, ON\"\n        },\n        {\n            \"id\": \"7C675EF4DE321BE4A3D22634FFB2F01A\",\n            \"cityName\": \"Allseas Fisheries Corp. in Etobicoke, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d899f7542282b319\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Allseas Fisheries Corp.\",\n            \"rowSalary\": \"$20–$23 an hour\",\n            \"date\": 1694354228285,\n            \"dateOfPosted\": 1693506945221,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6204946,\n                    \"lon\": -79.5131983\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Etobicoke, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service RepresentativeABOUT USSince 1986, Allseas Fisheries is the industry leader in Canada in the development, marketing and direct distribution of fresh and frozen fish and seafood. Allseas Fisheries strives to provide its customers with the highest quality product combined with value in a wide line of fish and seafood products from around the world as well as value-added products.SUMMARYWe have an exciting career opportunity for a full-time Customer Service Representative to become part of our growing team! As a customer service rep, you will be required to interact with customers to address their concerns, answer their questions, and assist them with their needs. This role will be reporting to the President.KEY POSITION ACCOUNTABILITIES· Taking customer orders accurately in-person or over the phone.· Actively promotign existing and newly available goods.· Investigating complaints and updating accounts.· Dynamically selling product by providing customers with information needed to make product-related decisions.· Arranging for refunds, exchanges, and credits for returned items.· Initiating billing and processing claim payments.· Receiving payment for goods.ABOUT YOU· You have previous customer service experience with a passion for serving people.· You have experience in a sales environment.· You have knowledge of seafood and fish species which is considered an asset.· You are proficient in Microsoft Office (Word, Excel, and PowerPoint).WORK CONDITIONS· Monday to Friday, 8AM to 5PM· On-site, indoor office environment.Allseas Fisheries Inc. is an equal opportunity employer and is committed to providing employment accommodation in accordance with the Ontario Human Rights Code and the Accessibility for Ontarians with Disabilities Act. Please note that only qualified candidates will be contacted. Should you require an accommodation, please notify Human Resources at the time of scheduling your interview.If interested, apply today!Job Types: Full-time, PermanentSalary: $20.00-$23.00 per hourBenefits:Casual dressDental careExtended health careLife insuranceOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Overtime payAbility to commute/relocate:Etobicoke, ON M8Z 5Z8: reliably commute or plan to relocate before starting work (required)Education:Bachelor's Degree (preferred)Experience:customer service: 2 years (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Etobicoke, ON\"\n        },\n        {\n            \"id\": \"CF6D139BF2374C15FF6BD9A191A183D4\",\n            \"cityName\": \"2130 Morningside Ave, Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e4a2cc9f9b852c96\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Petit Delights\",\n            \"rowSalary\": \"$15.75–$16.50 an hour\",\n            \"date\": 1694354156912,\n            \"dateOfPosted\": 1694211486831,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Experience:barista, Customer Service RepresentativeDuties:- Provide exceptional customer service to ensure customer satisfaction- Assist customers with inquiries, concerns, and complaints in a professional and timely manner- Process customer orders.- Operate cash register and handle cash transactions- Maintain a clean and organized work area- Follow food handling and preparation guidelines to ensure food safety- Collaborate with team members to achieve sales goals and targets- Utilize basic math skills to calculate prices, discounts, and change accuratelyRequirements:barista: 1 year (preferred)customer service: 1 year (preferred)- Previous experience in customer service, preferably in the food industry or retail environment- Strong communication skills with the ability to effectively interact with customers and team members- Basic math skills for cash handling and retail math calculations- Knowledge of food handling and preparation guidelines is a plus- Ability to work in a fast-paced environment while maintaining attention to detail- Excellent problem-solving skills to address customer inquiries and resolve issues- Flexibility to work various shifts, including weekends and holidaysJoin our team as a Customer Service Representative and be part of a dynamic and customer-focused environment. As a valued member of our team, you will have the opportunity to provide exceptional service to our customers while gaining valuable experience in the food service industry.fulltime and long term .Note: This job description is intended to provide a general overview of the position. It is not an exhaustive list of responsibilities, duties, or qualifications associated with the job.Job Type: Full-timeSalary: $15.75-$16.50 per hourSchedule:Monday to FridayWeekends as neededShift availability:Day Shift (preferred)Overnight Shift (preferred)Night Shift (preferred)Ability to Commute:Scarborough, ON M1X 0C9 (preferred)Ability to Relocate:Scarborough, ON M1X 0C9: Relocate before starting work (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"177C37DEC910EE7F542E499D112BF0D8\",\n            \"cityName\": \"Happy Valley-Goose Bay, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d91555abe32c5fae\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Enterprise Holdings\",\n            \"rowSalary\": \"$19 an hour\",\n            \"date\": 1694353960902,\n            \"dateOfPosted\": 1692658246411,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.3016826,\n                    \"lon\": -60.3260842\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Happy Valley-Goose Bay\",\n                \"formattedAddress\": \"Happy Valley-Goose Bay, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 10\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Happy Valley-Goose Bay\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" The Customer Service Representative will provide a high level of customer service by assisting both internal and external customers, primarily face-to-face, supporting their branch and rental needs. The CAR Sr will gain knowledge through local training and hands-on experience to provide administrative support, service customers, and act as a rental back-up in a large home city branch or airport location. This role is available as regular part time  Opening available at the following branch location:6 VULCAN RD HAPPY VALLEYGOOSE BAY, NL A0P 1C0. This is a part time position that pays $19.00 / hour We offer:  Employee discount Retirement savings plan Training and development Responsibilities: Take incoming calls- reservations, rate quotes, general questions and answers, provide information and resolution for customers, other branches, insurance companies, dealerships, repair shops and other vendors  Manage outgoing calls for callback management, A/Rs and miscellaneous calls as assigned  Provide a high level of customer service by assisting customers and assessing their rental needs in person and over the phone  Meet and greet customers in a friendly and timely manner  Provide directions and general assistance  Assist to assess condition of rental upon return  Process returns, check-ins and exit kiosk transactions  Effectively market the company while picking up customers up and/or dropping off customer in a safe and courteous manner and assisting customers as needed  Understand and communicate rental terms and conditions, vehicle features and other services  May sell optional protection products, upgrades, fuel options and other additional equipment  Responsible for notifying Management of any known vehicle problems and any required vehicle maintenance  Clean vehicle interior and exterior by hand or by operating washing equipment when needed  Perform various administrative and basic accounting functions such as: research and billing support tasks, accounts receivables, transfer and key logs, run miscellaneous reports, supply maintenance, process customer billing  Perform miscellaneous and backup duties job-related duties as assigned  Equal Opportunity Employer/Disability/Veterans Qualifications: Must be at least 18 years of age. High school diploma or above required; some college preferred Must have at least 1 year prior customer service, retail, or administrative support experience Must have a valid Class 5 drivers license with no more than 2 moving violations and/or at-fault accidents on driving record in the past 3 years No drug or alcohol related conviction on driving record in the past 5 years Must be authorized to work in Canada and not require work authorization sponsorship by our company for this position now or in the future. \",\n            \"location\": \"Happy Valley-Goose Bay, NL\"\n        },\n        {\n            \"id\": \"8FEC9B6DB98F79ECF659C97F701B9A7F\",\n            \"cityName\": \"Rocky View, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f52d0393347344b8\",\n            \"jobName\": \"Customer Service Representative - 203\",\n            \"companyName\": \"Copart\",\n            \"rowSalary\": \"$22.38 an hour\",\n            \"date\": 1694353895041,\n            \"dateOfPosted\": 1692655747172,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.2086495,\n                    \"lon\": -113.9815345\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Rocky View County, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service Representative (CSR) provides exceptional customer service to internal and external customers of Copart. Through a thorough understanding of Copart practices, the CSR offers solutions that aid and facilitate a unique customer service experience. The CSR provides general administrative support while multi-tasking in hectic and stressful situations. In addition, the CSR will be the face of the Company through face-to-face and vocal interactions with all levels of customers which range from the general public to high-level managers of organizations.Receive and process payments.Update lot (vehicle) notes in the system.Answer multi-line telephone in a professional manner.Face-to-face customer interaction.Use company resources to gather information and offer solutions to meet customer needs.Contact clients to obtain vehicle pick-up information.File documents according to criteria.Process mail incoming and outgoing per criteria.Read and interpret various reports and documents.Proper completion of sale documents.Other duties as assigned.Required Skills & Experience:One year of office support experience in a customer service role preferredHigh School diplomaExcellent customer service skills and attitudeExcellent written and verbal skillsProficient with office equipmentAttention to detailProblem-solvingComputer proficiency - MS SuiteTyping speed 45WPMProfessional appearanceAbility to multi-task in a fast-paced environmentBilingual skills a plusOccasional overtime as neededFor 40 years, Copart has led its industry in innovation and customer service, enabling it to grow profitably in markets across the globe. Our success is the direct result of the skills and efforts of our talented and diverse employees. Our mindset? It's never just a \\\"job\\\" when your coworkers are like family - it's like coming home.Location: Rocky View,AB,Canada, AlbertaLocation: Rocky View,AB,Canada, AlbertaJob Type: Full-timePay: $22.38 per hour\",\n            \"location\": \"Rocky View, AB\"\n        },\n        {\n            \"id\": \"C4258EB753F5BD440503AFA1D3DB4328\",\n            \"cityName\": \"1200 Derry Rd E, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2adb27d34d3d6da0\",\n            \"jobName\": \"Csr (Customer Service Representative)\",\n            \"companyName\": \"Dm Horizon Insurance Solutions Inc\",\n            \"rowSalary\": \"$16–$21 an hour\",\n            \"date\": 1694353894501,\n            \"dateOfPosted\": 1667212544741,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6841863,\n                    \"lon\": -79.6641054\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Derry Rd E, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position: Customer Service Representative (Insurance) - RIBO LicensedDuties and Responsibilities:Building and maintaining client relationshipsProviding customer service with the highest standard while building and maintaining great client relationshipReviewing policies and making recommendations based on individual client needs while identifying opportunities to cross-sell/upsellAdhering to underwriting guidelines set out by broker partnersFollowing up and coordinating with clients to ensure documents are completeQualifications:RIBO licensed RequiredMinimum 1 years of experience working in general insurance brokerageAbility to organize and prioritize work effectivelyHighly organized with strong attention to detailMust be able to prioritize work and meet deadlinesExcellent interpersonal and communication (written and oral) skillsPrior experience with Compuquote, Powerbroker & company partner’s portalsWhat We Offer:Competitive salaryOpportunities to grow and developOnly Qualified candidates will be contactedJob Type: Full-timeSalary: $16.00-$21.00 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayEducation:Bachelor's Degree (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Derry Rd E, Mississauga, ON\"\n        },\n        {\n            \"id\": \"43219B6B74FEF91F9FD70C44E9908F4E\",\n            \"cityName\": \"515 Dundas St W Ste 214, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=eab22acaae00b919\",\n            \"jobName\": \"Broker - Experienced Insurance Customer Service Representative\",\n            \"companyName\": \"Billyard Insurance Group\",\n            \"rowSalary\": \"From $62,000 a year\",\n            \"date\": 1694353756659,\n            \"dateOfPosted\": 1690394034176,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4750608,\n                    \"lon\": -79.73379849999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Dundas St W, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 62000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    62000.0\n                ],\n                \"range\": {\n                    \"gte\": 62000.0,\n                    \"gt\": null,\n                    \"lte\": 62000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Please only apply if you currently hold a RIBO license and have experience as a CSR.Billyard Insurance Group is attracting top insurance professionals and providing them with innovative technology, tools, and the support required to compete in the fast-changing insurance landscape. We are a rapidly growing insurance brokerage with over 40 locations across Ontario. We’re also proud to have been recognized on Insurance Business Canada’s Top Brokerages list for the last two years and named one of Canada’s Top Growing Companies on the Globe and Mail’s 2020 Report on Business.Billyard Insurance Group Oakville is seeking an energetic Customer Service Representative to join our established team.This role is responsible for all aspects of account management from new business to servicing clients. In addition to providing excellent customer service, individuals must be able to prioritize work and meet deadlines. If you are comfortable working in a technology-focused environment that continues to evolve, we encourage you to apply.There is a great opportunity to write your own business and make your salary + commission.Feel free to visit our website www.thebig.caResponsibilities:Building and maintaining client relationshipsProviding superior customer service when responding to client inquiries and resolving concerns in a timely mannerReviewing policies and making recommendations based on individual client needs while identifying opportunities to cross-sell/upsellAdhering to underwriting criteria set out by broker partnersFollowing up and coordinating with clients to ensure documents are completeMaking changes through company partners’ portals and websitesConducting billing calls as neededIf you’d like to try sales, we have an opportunity available with an attractive commission structure, although not requiredAttributes:Ambitious and self-motivatedAbility to thrive in a fast-paced environmentPositive attitude and customer-focusedExcellent interpersonal and communication (written and oral) skillsStrong computer skills with ability to learn new software systemsQualifications:RIBO license is requiredExperience in insurance industry is also a requirementRequired education:High school or equivalentWhat We Offer:Competitive salaryHealth care and dental care benefits for you and your familyOpportunities to grow and developJob Types: Full-time, PermanentSalary: From $62,000.00 per yearBenefits:Casual dressDental careExtended health careLife insuranceWork from homeSchedule:8 hour shiftMonday to FridayNo weekendsSupplemental pay types:Bonus payCommission payEducation:Secondary School (preferred)Work Location: Hybrid remote in Oakville, ON\",\n            \"location\": \"Dundas Street West, Oakville, ON\"\n        },\n        {\n            \"id\": \"B63AE0AF4C0EDECB72454D1F8838F0CD\",\n            \"cityName\": \"17531 Stony Plain Rd NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=15eed5034966c42f\",\n            \"jobName\": \"Customer Service Representative (Part Time)\",\n            \"companyName\": \"Homes Alive Pets\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694353269161,\n            \"dateOfPosted\": 1694353268975,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5416043,\n                    \"lon\": -113.6228336\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Stony Plain Rd, Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Why Homes Alive Pets? This isn't your average pet store. You'll feel it when you walk through our door. It's more than beautifully-designed locations and friendly staff – it's a belief in a higher standard for pet care. Our stores are community hubs – somewhere to come and share an experience with your pet. You'll immediately notice a refreshing shopping experience at Homes Alive because we take a brand-agnostic, knowledge-over-upselling approach. Rather than pushing a certain product or feeling pressured to meet sales quotas, our team's attention is solely focused on getting to know you and your pet and empowering you to make confident decisions. Our Mission is to add value to every life. When we say every life, we include guests and their pets. Employees and co-workers. Brand reps and vendors. Even our communities. There is life all around us, and it is our mission to add value qualitatively and quantitatively. In the qualitative sense, it is our mission to elevate every life as important and worthwhile. In the quantitative sense, and in the context of our business, it is also our mission to add value, discounts, and a fair balance of price and quality for our guests. This is how we will make a positive impact in our communities and world. Job Title Customer Service Representative Direct Report Store Manager Department Store Operations Location 17531 Stony Plain Rd NW, Edmonton, AB T5S 2S1 Job Summary Customer Service Representatives are the first point of contact for customers and strive to ensure that each customer has a positive shopping experience. Responsibilities of Customer Service Representatives include operating cash registers and handling money, providing customers with information about products offered in the store, and maintaining a clean and organized work environment. The ideal Customer Service Representative has excellent communication and people skills, experience in customer service or a willingness to learn, and a passion for pets. Core Competencies A Positive and Hardworking Attitude. A willingness to go the extra mile to provide customers with the best possible shopping experience. Strong Communication Skills. Ability to clearly communicate with customers and other staff. Resilience. Ability to remain calm and navigate through high stress situations Behaviour & Skills Customer Service Excellent time management & attention to detail Excellent teamwork & collaborative abilities Confident & articulate communication Trustworthy & positive attitude Understanding of pet nutrition & needs Ability to lift 50lbs Job Responsibilities Customer Service Representatives are responsible for these 5 areas of store functions in order of Priority with objectives: Customer Service To serve and learn the immediate needs of customers and offering honest and sincere advice, as well as welcoming them to the culture of the Homes Alive community. Operate cash registers and accurately handle cash. Store Appearance Maintain stock on the shelves, product detail communication for your specific section (ie. Price tags, sales signs, etc.), clean and face products and shelves to provide the highest quality of solo shopping experience for the customer. Employee Service Self-initiate service to co-workers and leaders to assist with any projects or tasks to develop a culture and community of servantship and improve the quality of life of those around you. System Maintenance Complete routine tasks specified in checklists & delegated by leaders and follow proper system procedures for efficiency, effective communication, and accuracy of inventory. Self-Development Take initiative in any possible opportunities to learn and develop skills or knowledge in any area within Homes Alive to develop yourself to become a servant leader (a leader that goes the extra mile to serve others). A Day in the Life of a Customer Service Representative Each day as a Customer Service Representative will be dynamic and unique. A typical day will involve you helping customers find the supplies they need for their pets, providing them with information about pet care and nutrition, and assisting them at the cash register. You will also work to make sure your store looks clean and presentable and that inventory on the shelves is full and well organized. As customers often bring their pets into the store, you will also get plenty of opportunity to interact with dogs and cats (and even hand out treats!). Schedule Part-time Customer Service Representatives work up to 30 hrs./week, at the discretion of the Store Manager. Shifts may be morning, afternoon, or evening, Monday to Sunday. Compensation $16.00/hr.\",\n            \"location\": \"Stony Plain Road NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"23226FDACD7B1179372E6115B5148E14\",\n            \"cityName\": \"1401 20 Avenue NW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=81db49a22f8d6e09\",\n            \"jobName\": \"Kitchen Helper/Customer Service\",\n            \"companyName\": \"Jimmys Donair\",\n            \"rowSalary\": \"$16.50–$18.50 an hour\",\n            \"date\": 1694352984588,\n            \"dateOfPosted\": 1692659184363,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.0678621,\n                    \"lon\": -114.0848958\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"17 Ave NW, Calgary, AB T2M, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Hey!We need a few great people to complete our team , here are some of the highlights on what your job will entail: Greeting guests, taking orders and processing payments  Preparing food Managing delivery and mobile orders  Assembling orders and packaging take-out and delivery Keeping all surfaces clean and sanitary to ensure the safety for our guests, fellow crew members, and yourself Whether you are working in the kitchen or at the front counter you are a part of a dynamic team that works together to deliver an exceptional guest experience.Food safety course is necessary. Experience is a must minimum 1 year.Job Types: Part-time, PermanentPart-time hours: 20 per weekSalary: $16.50-$18.50 per hourFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayWeekends as neededCOVID-19 considerations:Following all current protocols as set by Alberta Health.Work Location: In person\",\n            \"location\": \"Avenue NW, Calgary, AB\"\n        },\n        {\n            \"id\": \"9BAA28EF8862DAC5994BC2F553612DBF\",\n            \"cityName\": \"60 Victoria Crescent, Nanaimo, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=15ce0010d5cd25e3\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mid Island Consumer Services Cooperative\",\n            \"rowSalary\": \"$17.75 an hour\",\n            \"date\": 1694352816243,\n            \"dateOfPosted\": 1693446295197,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1633011,\n                    \"lon\": -123.9352068\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Nanaimo\",\n                \"formattedAddress\": \"Victoria Crescent, Nanaimo, BC V9R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria Crescent, Nanaimo, BC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Co-op is hiring a part-time Customer Service Representative at our Victoria Crescent Gas Bar. Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you! Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in the operations of the store, including but not limited to handling customer transactions, responding to customer questions and concerns in a professional manner, creating displays and stocking shelves, and ensuring store and merchandise are neat and organized.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Representative today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. Previous retail experience is preferred, and propane and/or FoodSafe certification would be an asset. Who we are: Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve. Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op). We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.\",\n            \"location\": \"Victoria Crescent, Nanaimo, BC\"\n        },\n        {\n            \"id\": \"A841E0EAAF28772CF53951A2F1BD38F3\",\n            \"cityName\": \"Fredericton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7c8509eb2ead0a23\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Stow It All\",\n            \"rowSalary\": \"$16–$17 an hour\",\n            \"date\": 1694352798351,\n            \"dateOfPosted\": 1693506948550,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.9635895,\n                    \"lon\": -66.6431151\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fredericton\",\n                \"formattedAddress\": \"Fredericton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"York County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fredericton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a Maritime owned self storage company looking for a customer service officer to join our team. The position is permanent, part-time position available, weekdays 8:30 am to 4:30 pm. Perfect for an individual whose not ready to fully retire.As the customer service officer, you will:Meet and greet clientsRespond to enquiries via e-mail, phone and face-to-faceProvide customers with quotes and product informationCreate and manage filesManage customer invoicing and paymentsKeep database currentThe successful candidate will:Love working one-on-one with customersHave a warm, approachable mannerHave the rare people skills which allow you to cheerfully assist customers, in a sometimes busy environmentHave an easy going, can-do-it attitudeHave basic computer knowledgeBe flexible to work at both Fredericton area locationsBe able to do light property maintenance would be an asset, but not a deciding factor for this positionWork remotelyNoJob Types: Permanent, Part-timePart-time hours: 16-24 per weekSalary: $16.00-$17.00 per hourBenefits:Profit sharingFlexible Language Requirement:French not requiredSchedule:8 hour shiftCOVID-19 considerations:All customers and staff are required to follow current COVID-19 precautions, as mandated by the government.Education:Secondary School (required)Experience:customer service: 1 year (preferred)Work Location: In personExpected start date: 2023-09-11\",\n            \"location\": \"Fredericton, NB\"\n        },\n        {\n            \"id\": \"07E065969D2B740AE9AAED4551FBF068\",\n            \"cityName\": \"7420 Rue Saint-Jacques, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5cf74bfead6425bd\",\n            \"jobName\": \"Full-Time Customer Service Representative\",\n            \"companyName\": \"Sutton Plumbing\",\n            \"rowSalary\": \"$45,000–$55,000 a year\",\n            \"date\": 1694352671327,\n            \"dateOfPosted\": 1693506958466,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4749414,\n                    \"lon\": -73.595434\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Saint-Jacques, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Sutton Plumbing and Heating Supplies Ltd., a family-owned and operated company since 1954, is currently looking for an experienced full-time Customer service representative to join our growing team. We are a leading supplier in our field, and are currently in expansion. If you are a hard-working, dedicated individual, and are looking for a new opportunity in a great company, please apply. (Knowledge of the plumbing field is an asset)Job Description and responsibilitiesLearn to identify customer needs or desires in order to recommend the appropriate product or service.Learn the software systems used by the company to be able to communicate effectively with incoming inquiries.Keep a record of incoming inquiries to be able to reference at a later date.Be able to process orders, forms, and quotations.Work with colleagues when necessary to resolve customer complaints.Provide feedback to other departments to help improve sales, marketing, and business processes.Learn about the products inside and out to be able to answer any questions from customers.Handle customer complaints by providing solutions, often within a time limit to ensure the customer is satisfied.Customer Service Representative skills and qualifications3 Years Customer service experience required (Knowledge of the plumbing industry is a plus)Strong phone contact handling skills and active listeningability to adapt/respond to different types of charactersAbility to multitask, prioritize and manage time effectivelyBilingual English/French is an assetWhy work at Sutton? (Extra Bonuses!)Join a young, energetic and fun teamon site GymFree on site parking!Basketball, Lacrosse and Hockey Gear for Lunchtime friendly competition!\\\"chill room\\\" with couches and games (Nintendo cube, cards etc.)Large updated lunch room (with Free coffee)Pool table***DartsTable hockeyIf you are interested in taking on a new challenge at a growing company, we encourage you to apply today.---------------------------------------------------------------------------Sutton Plumbing and Heating Supplies Ltd., une entreprise familiale en affaires depuis 1954, est actuellement à la recherche d'un(e) représentant(e) du service clientèle à temps plein pour rejoindre notre équipe. Nous sommes chef de file dans le domaine de la distribution en plomberie et chauffage et nous sommes en pleine phase d’expansion. Si vous êtes une personne travaillante, dévouée et que vous recherchez de nouvelles opportunités au sein d'une excellente entreprise, ne chercher pas plus loin! (Une connaissance du domaine de la plomberie est fortement recommandée)Description du poste et responsabilités :Identifier les besoins ou les désirs des clients afin de recommander le produit ou le service approprié.Apprendre à connaître les produits en détail pour pouvoir répondre aux questions des clients.Apprendre à utiliser les systèmes informatiques de l'entreprise pour pouvoir communiquer efficacement avec les demandes entrantes.Conserver un enregistrement des demandes entrantes pour pouvoir y faire référence ultérieurement.Être capable de traiter les commandes, les formulaires et les devis.Travailler avec des collègues au besoin pour résoudre les plaintes des clients.Fournir des retours d'information à d'autres départements pour aider à améliorer les ventes, le marketing et les processus commerciaux.Traiter les plaintes des clients en fournissant des solutions, souvent dans des délais serrés, pour garantir la satisfaction du client.Compétences et qualifications du représentant du service clientèle :3 ans d'expérience en service clientèle liée au domaine de la plomberie requis (Connaissance de l'industrie)Solides compétences en gestion des contacts téléphoniques et en écoute activeCapacité à s'adapter/répondre à différents types de personnalitésCapacité à gérer plusieurs tâches, à établir des priorités et à gérer efficacement le tempsPourquoi travailler chez Sutton ? (Bonus supplémentaires !)Rejoignez une équipe jeune, énergique et amusanteSalle de sport sur placeParking gratuit sur placeÉquipement de basketball, de crosse et de hockey pour des compétitions amicales à l'heure du lunch\\\"Salle de détente\\\" avec canapésGrande salle de déjeuner rénovée (avec café gratuit et jeux tel que Nintendo GameCube, cartes, etc.)Table de billard ***FléchettesHockey sur tableSi vous êtes intéressé(e) par le défi que représente une entreprise en pleine croissance, nous vous encourageons à postuler dès aujourd'hui.Job Types: Full-time, PermanentSalary: $45,000.00-$55,000.00 per yearBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site gymOn-site parkingVision careSchedule:Monday to FridayApplication question(s):Do you have Experience / Knowledge related to Plumbing?Experience:customer service: 3 years (preferred)Work Location: In person\",\n            \"location\": \"Montreal- Rue Saint-Jacques, Montréal, QC\"\n        },\n        {\n            \"id\": \"988DB5C3525973A011EE24A2B9ADFF50\",\n            \"cityName\": \"7 Arbour Lake Dr NW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e7006a4d88c14c6e\",\n            \"jobName\": \"Grocery/Customer Service Clerk - Arbour Lake\",\n            \"companyName\": \"Amaranth Whole Foods Southland\",\n            \"rowSalary\": \"$16.50–$18.00 an hour\",\n            \"date\": 1694352600274,\n            \"dateOfPosted\": 1693506950448,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.1366093,\n                    \"lon\": -114.1993777\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Arbour Lake Dr NW, Calgary, AB T3G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Amaranth, our mission is to create a great customer experience. Our vision is to work with local farmers and producers to provide healthy food for our communities. As we continue to grow within Alberta, Amaranth is excited to welcome new team members that share our passions. All Amaranth retail jobs require ensuring a positive company image by providing courteous, friendly, and efficient service to customers and team members at all times. All positions must be performed in accordance with store best practices. Further, Team Members must be prepared and able to perform the duties inherent in other Team Member job descriptions. All positions must strive to support Amaranth's core values and goals.A successful team member:WILL BEPassionate and Knowledgeable about Health & WellnessPut others first and willing to go above and beyond in the customer experience.Committed, Flexible and Open to Growth.Solution Focused and Business Minded.Motivated to provide Outstanding Customer Service.Experienced in various grocery departments and responsibilities.Role: The Grocery/Customer Service Clerk is responsible for the Department’s daily operations. Duties may include providing support to Grocery Department team members; receiving and verifying shipments primarily in Grocery, and in other departments during peak times; picking transfers; stocking shelves, overstock and down stock rotation, stocking shelves, coolers and freezers; bulk re-packing, maintaining correct inventory levels and records for expiry dates; product merchandising; maintaining store cleanliness; and providing friendly, attentive and EXCELLENT customer service. As a cashier; responsible for outstanding customer service and monitoring tills, processing customers transactions; bagging and carrying out groceries; maintaining store cleanliness; and providing friendly, attentive and efficient customer service.Reports to: Store Manager and Grocery LeadTime Requirements: Full-time position with flexible working availability including days, evenings, weekends and assisting with added shift coverage**Physical Requirements: Able to stand for extended periods of time, climb ladders, ability to lift up to 50 lbs and be able to navigate certain tools and environments.Compensation: To be discussed based on level of experience.WILL HAVEStrong Performance in Customer Service:Proactively engage customers to ensure unparalleled customer service.Efficiently and accurately process customer transactions through the use of applicable POS functions and carry out customer purchases.Respond to customer questions and provide assistance or when necessary page department representative to provide assistance.Assist customers with product inquiries, share product knowledge and take customers to the location of the product directly.Be knowledgeable about and advise customers of current store promotions and programs.Report errors in retail pricing or signage to the management team.Ensure daily department checklists are being followed and completed.Assist with store opening and closing duties to ensure the store is properly prepared for the day’s operations.Other duties as assigned by the Store Manager or Store Lead.Cash Experience with POS, Till Transactions and Unparalleled Service to Others:Efficiently and accurately process customer transactions through the use of applicable till functions.Bag groceries in a careful and timely manner and offer carry-out assistance.Assist with customer flow and line-ups through till operation or grocery bagging.Keep the till area clean, well-stocked, and organized, change receipt rolls, sweep floors behind tills, and wash counters.Maintain confection area stock, face gluten-free freezer, dairy cooler, and drink cooler.Grocery/Bulk/Repack/Perishables familiarity with store products, local and organic:Maintain on-shelf inventory including stocking coolers and shelves, down stocking and stock rotation, shipment receiving and verification, and putting away shipments.Manage inventory using a database system and maintain accurate shelf signage and pricing.Keep aisles clean and free of ladders, boxes and carts.Sweep bulk areas regularly, ensure clean scoops, pencils, bags, and twist ties are stocked.Check expiry dates and complete markdowns for perishables stock.Special Orders and Going Above and Beyond in Customer Service:Once a special order arrives in store, ensure the customer who placed the special order is contacted initially and weekly thereafter until the 4th week where appropriate action is taken if not picked up.Maintain “on-hold” status of items in the database system.Inventory Management with hole counts, out of stock, on-order, backorder, and yearly counts:Ensure inventory levels recorded in the database system match the physical inventory on shelf and in back stock.Manage inventory using the database system and maintain accurate shelf signage and pricing.Receiving Process from start to finish, awareness with credits and follow up an asset.Physically receive and verify shipments.Received stock is delivered on floor in a timely manner, placed accordingly, rotated by correct best before dates and rotated with down stock.Ensure price tags are accurate and red dots are on all Gluten Free tags, and blue dots are on discontinued items.Transfers for multi-store database system:Respond to Pick Requests from other locations in an accurate and timely manner, maintaining an orderly transfer area.Process incoming transfers from other stores in an accurate and timely manner, following up on errors with the appropriate location immediately.Distributing combined orders and working with the Category Manager to implement efficiencies.LeadershipAbility to lead by example in daily activities and strive to improve personal performance each and every day.Commitment to maintaining a positive attitude and approach challenges in a pro-active and problem-solving manner.Capability to assist and direct team members to complete duties such as stocking, down stocking, and stock rotation including coolers and shelves, empty shelf look-ups, shipment receiving and verification, and putting away shipments.Keen attention to prioritizing the day by level of importance, organize tasks and to-do lists that fall into categories of daily, weekly, monthly requirements.Store MaintenanceAbility to support in mopping the store floor first thing each morning.Ability to direct staff when there are cleaning projects to be completed.End CapsCommitment to working with the Category Manager, ensuring end caps are well stocked and changed over in a timely manner for sales and promotions.Qualifications and Attributes:Excellent communication skills and willingness to work as part of a teamHave supervisory experience in a retail environmentIntermediate computer skills with an emphasis on database operationAbility to follow instructions and proceduresAbility to work with a flexible attitude in a dynamic environmentAbility to think independently, prioritize, and complete projects in a timely mannerExcellent organization and interpersonal skillsKnowledge of the organic and natural foods industry is an assetFood Handling Safety education and/or certificate is an assetBasic Physical RequirementsStand for extended periods of time. Walk, bend and twist your body, reach above and below shoulders.Use of mops, brooms, cleaning products, knives, box cutters, carts, computers and printers.Use ladders of varying heights up to 12 feet.Ability to lift up to 50lbs maximum.Repetitive use of hands for grasping, pushing, pulling, and typing.Environmental exposure to extreme temperatures in coolers, freezers, and outdoorsJob Type: Part-timePart-time hours: 30 per weekSalary: $16.50-$18.00 per hourBenefits:Store discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftHolidaysMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Arbour Lake Dr NW, Calgary, AB\"\n        },\n        {\n            \"id\": \"ECC2C696D8940821CD2CCAEF250E3D6E\",\n            \"cityName\": \"545 Memorial Ave, Orillia, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=58d8d7849035171c\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Wendy's Restaurant Orillia\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694352550860,\n            \"dateOfPosted\": 1692657410070,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.58068180000001,\n                    \"lon\": -79.4306655\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Orillia\",\n                \"formattedAddress\": \"Memorial Ave, Orillia, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Orillia\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Focused, ability to multi task, fast paced environment, follow direction,Job Type: Full-timeSalary: $15.50 per hourBenefits:On-site parkingDay range:Every WeekendHolidaysMonday to FridayWeekends as neededShift:4 hour shift8 hour shiftDay shiftEvening shiftMorning shiftNight shiftWork Location: In person\",\n            \"location\": \"Memorial Avenue, Orillia, ON\"\n        },\n        {\n            \"id\": \"A2364F9DCF2585DFA5246C0BB55BBC9E\",\n            \"cityName\": \"James Snow Self Storage in Milton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6862ae1a5cbfbab4\",\n            \"jobName\": \"Part Time Customer Service\",\n            \"companyName\": \"James Snow Self Storage\",\n            \"rowSalary\": \"$16.50–$18.00 an hour\",\n            \"date\": 1694352416799,\n            \"dateOfPosted\": 1691525654153,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5182991,\n                    \"lon\": -79.8774042\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Milton\",\n                \"formattedAddress\": \"Milton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Milton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position: Customer Service RepresentativeLocation: Milton, ONJob Description:The Customer Service Representative will interact with customers via phone, email, and chat to ensure a smooth and positive experience. This will include learning both the U-Haul system and the storage systems to assist customers with all storage and U-Haul needs. MUST HAVE A DRIVERS LICENSE. G2 IS FINE BUT G PREFERED. MUST BE ABLE TO WORK SATURDAY'S. THIS IS NOT A FULL TIME POSITION. Ideal for a high-school student looking for after school hours. Hours during the week are 3-6 and Saturday shifts are 7:30-12:30 AND/OR 12-5.*If you can't work these hours or want full time work, or do not have a drivers license please do not apply.*Essential Duties & Responsibilities:Answer incoming calls and emails to provide a positive customer experience.Provide a positive first impression to the customer by providing a clear message on the outbound call or email.Build and maintain strong relationships with customers by clearly communicating the needs of the business and providing prompt, accurate information.Respond to customer inquiries regarding product details; pricing; availability.Sing in/out U-Haul trucks, ensuring they are swept and cleanly enough for the next customer.Provide accurate information regarding storage/U-Haul inquiriesProcess U-Haul returns in a timely manner.Maintain an organized, clean, and sanitary work area.Perform other duties as assigned.Required Skills: ·Excellent written and verbal communication skills. This position requires excellent listening skills as well.·Strong organizational skills with the ability to work with a team and aloneStarting wage will reflect experience.Job Type: Part-timeSalary: $16.50-$18.00 per hourFlexible Language Requirement:French not requiredSchedule:Evening shiftMonday to FridayWeekends as neededAbility to commute/relocate:Milton, ON L9T 5G7: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Milton, ON\"\n        },\n        {\n            \"id\": \"70CC434CE5267BF57B764E198494A9D4\",\n            \"cityName\": \"1020 South Service Road East, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0b5b56a4d66a2f88\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Pioneer Family Pools & Spas\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694352396122,\n            \"dateOfPosted\": 1693506945329,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4639338,\n                    \"lon\": -79.6804022\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"South Service Rd E, Oakville, ON L6J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Seasonal Contract· Support a strong commitment to superior and genuine customer service by exerting compassion, knowledge and empathy to all customers and associates. Drive sales through engaging both customers and associates with accurate and practical product knowledge.· Deliver a positive, friendly and pleasant experience with the goal of always exceeding our customers’ expectations.· Your behavior at work should be ethical, positive, encouraging, helpful, dedicated, efficient and respectful at all times.· You are required to dress according to Pioneer Family Pools uniform policy.· Maintain a clean and organized work environment free of clutter at all times· Perform miscellaneous cleaning in the store· Provide courteous and friendly service to all customers, escorting those who require further assistance to the appropriate sales associate or manager· Assist all customers on the retail floor, and answer any questions that are within your training, knowledge, and expertise. If you can’t answer their question, notify them you will find someone who can better assist.· Ensure float is the correct amount at the beginning of your shift and complete accurate float count and end of day paperwork responsibilities. All end of day results should be reviewed with the Retail Manager or Assistant Manager at the end of each day.· Check out customers’ orders in an accurate and efficient manner using the correct scan or processing method· Excessive Cash Payments (+$500) must be reviewed by Retail Manager or Assistant Manager and immediately stored in the safe.· Perform cashier-customer transactions accurately in order to maximize customer satisfaction and minimize losses by handling all monetary transactions according to Pioneer Family Pools’ policies and procedures· Maintain security and minimize losses through awareness of pricing errors, coupons, promotions, and other interactions. Be informed and execute promotions accurately and consistently.· Properly bag customer’s orders. Watch for torn bags, leaking items, broken products, heavy bags and assist where necessary to provide an easy and efficient carry out.· Help price, stock, and face merchandise on the sales floor and retail shelves daily, or as required by current stock levels or manager request· Stock and maintain all register supplies each morning and throughout the day as needed· Re-stock returns (if saleable); *See Internal Training Guide for Cashier’s for details.· Retrieve shopping carts throughout the day· Responsible for accurate till counts and deposits, End of day reports, copies of receipts,· Thank all customers for visiting the store upon them leaving· Log and Schedule hours, vacation request and time off with Retail Manager or Assistant Retail Manager· Other duties as assignedJob Types: Full-time, Part-time, Temporary, SeasonalContract length: 3 monthsSalary: From $15.50 per hourDay range:Monday to FridayWeekends as neededShift:8 hour shiftDay shiftAbility to commute/relocate:Oakville, ON: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"South Service Road East, Oakville, ON\"\n        },\n        {\n            \"id\": \"E81385C7F6E2DB04177D1252748ABA70\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0189dc3a605a6462\",\n            \"jobName\": \"Delivery Driver/Customer Service\",\n            \"companyName\": \"Vegan Supply\",\n            \"rowSalary\": \"$20–$25 an hour\",\n            \"date\": 1694352391860,\n            \"dateOfPosted\": 1692659694404,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"A Vegan Owned & Operated business in Vancouver, BC is looking for a P/T Delivery Driver to join our team! We service customers within Vancouver & The Lower Mainland, Vancouver Island, up The Sea to Sky, and occasionally the Okanagan.This is a customer facing position when dropping off/picking up items so a friendly disposition and ability to trouble shoot is essential. This position is mostly Mon-Fri however an occasional weekend delivery will be required. Delivery schedule is coordinated with our in-house staff based out of our Chinatown location.Experience city driving a large truck, a class 5 license, and clean drivers abstract are required.Job Type: Part-timeSalary: $20.00-$25.00 per hourBenefits:Casual dressDiscounted or free foodExtended health careOn-site parkingStore discountSchedule:Monday to FridayExperience:delivery driving: 1 year (preferred)Language:English (preferred)Licence/Certification:Class 5 Licence (preferred)Shift availability:Day Shift (preferred)Work Location: On the roadExpected start date: 2023-09-04\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"46F218BC3EE6D2F774F77961748FC0DB\",\n            \"cityName\": \"62 On 401 E, Tilbury, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=aa7520062b2ff3d2\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Canadian Tire Gas Station Tilbury 401 Eastbound\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694352134643,\n            \"dateOfPosted\": 1692655468412,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.2643968,\n                    \"lon\": -82.42923119999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Tilbury\",\n                \"formattedAddress\": \"Tilbury, ON N0P 2L0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Chatham-Kent\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Tilbury, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job DescriptionCanadian Tire Gas Station Tilbury 401 Eastbound is seeking a Customer Service Representative to join our team!Duties include:Greeting customersHandling cashStocking shelvesMaintaining a clean work environment.Outside duties, pumping fuel, cleaning, sweeping, etcJob Type: Part-timePart-time hours: 16-24 per weekSalary: $15.50 per hourSchedule:8 hour shiftEvening shiftWeekends as neededWork Location: In person\",\n            \"location\": \"Tilbury, ON\"\n        },\n        {\n            \"id\": \"E02DCAC8776D950E3B1153EF808BCE8D\",\n            \"cityName\": \"305 Cranston Crescent, Midland, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0cf540716593e6c8\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Enterprise Holdings\",\n            \"rowSalary\": \"$18 an hour\",\n            \"date\": 1694351903161,\n            \"dateOfPosted\": 1693506960029,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.72886279999999,\n                    \"lon\": -79.86487199999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Midland\",\n                \"formattedAddress\": \"Cranston Crescent, Midland, ON L0K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Midland\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" The Customer Service Representative Sr (CAR Sr) will provide a high level of customer service by assisting both internal and external customers, primarily face-to-face, supporting their branch and rental needs. The CAR Sr will gain knowledge through local training and hands-on experience to provide administrative support, service customers, and act as a rental back-up in a large home city branch or airport location. This role is available as permanent part time.  Opening available at the following branch location: 305 CRANSTON CRESCENT MIDLAND, ON L4R 4P4 This is a part time position that pays $18.00 / hour We offer:  Employee discount Retirement savings plan Training and development Responsibilities: Take incoming calls- reservations, rate quotes, general questions and answers, provide information and resolution for customers, other branches, insurance companies, dealerships, repair shops and other vendors  Manage outgoing calls for callback management, A/Rs and miscellaneous calls as assigned  Provide a high level of customer service by assisting customers and assessing their rental needs in person and over the phone  Meet and greet customers in a friendly and timely manner  Provide directions and general assistance  Assist to assess condition of rental upon return  Process returns, check-ins and exit kiosk transactions  Effectively market the company while picking up customers up and/or dropping off customer in a safe and courteous manner and assisting customers as needed  Understand and communicate rental terms and conditions, vehicle features and other services  May sell optional protection products, upgrades, fuel options and other additional equipment  Responsible for notifying Management of any known vehicle problems and any required vehicle maintenance  Clean vehicle interior and exterior by hand or by operating washing equipment when needed  Perform various administrative and basic accounting functions such as: research and billing support tasks, accounts receivables, transfer and key logs, run miscellaneous reports, supply maintenance, process customer billing  Perform miscellaneous and backup duties job-related duties as assigned  Equal Opportunity Employer/Disability/Veterans Qualifications: Must be at least 18 years of age. High school diploma or above required; some college preferred Must have at least 1 year prior customer service, retail, or administrative support experience Must have a valid G or G2 drivers license with no more than 2 moving violations and/or at-fault accidents on driving record in the past 3 years No drug or alcohol related conviction on driving record in the past 5 years Must be authorized to work in Canada and not require work authorization sponsorship by our company for this position now or in the future. \",\n            \"location\": \"Cranston Crescent, Midland, ON\"\n        },\n        {\n            \"id\": \"A0E7368F708286D9FF45B7106A69F72D\",\n            \"cityName\": \"Serious Coffee in Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6092a5d2d6c55be8\",\n            \"jobName\": \"Customer Service/Barista\",\n            \"companyName\": \"Serious Coffee\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694351890355,\n            \"dateOfPosted\": 1693506961488,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3193375,\n                    \"lon\": -124.3136411\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Parksville\",\n                \"formattedAddress\": \"Parksville, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Parksville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usAs a barista with Serious Coffee you will fill many roles. Your main duties will be preparing specialty drinks, preparing lunch foods, working the cash and offering exceptional customer service. If you have a positive attitude and work well in a team environment, no experience is necessary.Our work environment includes:On-the-job trainingCompany perksSafe work environmentFlexible working hoursCasual work attireFood providedCurrently we are in need of someone to work 5 days a week but are open to 3 days a week. Please note that this is a permanent position.We offer paid training, flex time, tips paid out daily, medical and dental after probationary period, and free staff meals.Please email your resume, or come to the café and if it is not busy we may be able to interview you on the spot.Job Types: Full-time, Part-time, PermanentPart-time hours: 40 per weekSalary: From $16.75 per hourBenefits:Casual dressDental careDisability insuranceDiscounted or free foodExtended health careLife insuranceOn-site parkingVision careFlexible Language Requirement:French not requiredSchedule:Weekends as neededSupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Parksville, BC\"\n        },\n        {\n            \"id\": \"3B086CEF65DC37F4C3F622F8881779FD\",\n            \"cityName\": \"Johnny K CARSTAR Group in Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=51436e6c7a7f67e7\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Johnny K Carstar Group\",\n            \"rowSalary\": \"$15–$20 an hour\",\n            \"date\": 1694351884094,\n            \"dateOfPosted\": 1692658298757,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a Customer Service Representative (CSR) who communicates well with both the team and customer, highly organized (i.e. on top of schedule, able to prioritize tasks, always update the team with new information), able to handle multiple tasks at once,In return, we are offering competitive hourly wage and benefits package, a fair and family-like atmosphere, opportunities for advancement, and continuous training for our team at the Leduc North location!Role of a CSR/Parts:The CSR is a crucial position for our team since they create the first impression of the team to our customers. Therefore, the CSR is responsible to create a warm and welcoming environment for our customers, while being knowledgeable of what is happening in his/her surroundings (i.e. repair status, rental bookings, becoming the point of contact, etc.)Other responsibilities include:Administrative DutiesBooking appointments for estimates as well as confirming deductibles with insurance companies as well as calling customers for follow up.Update and maintain estimates schedules as well as updating insurance companies information on both the booking system and under each insurance companies’ profile.Collect and record any payments.Create files for any customers and file all paperwork accordingly, including explaining the national-wide warranty program to the customers.Refer customers complaints and/or questions to the appropriate team members.Checking-in and checking-out vehicles before and after repair.Managing rental reservations and updates for our customers.Responsible for receiving, scanning, labelling and sorting vehicle parts.Other additional duties as assigned.Operational and Other DutiesOperating CARSTAR’s vehicles in a safe manner to provides shuttle services to customers as well as our partners in terms of picking up and dropping off vehicles.Operating customers vehicles to our vendors for any sublets work (e.g. vehicles that need to be brought to a dealership, detailing, etc.).Assist with the daily production of the shop (i.e. washing vehicles, keeping the front office clean, etc.)Receiving parts for the vehicles that are being repaired and ensuring that the parts match with both the invoice and the repair orders.Posting of parts on the shop management system.Processed damaged parts as well as any returns for damaged item or incorrect items.Other additional duties as assigned.Requirements:Excellent customer service (experience in providing customer service in a service/retail environment).Some knowledge of vehicle partsHave basic estimating skills is considered an asset.Knowledge in Microsoft Office programs (mandatory) and Collision Repair Estimating/Management System (preferred).Ability to communicate effectively and efficiently.Able to work as a team and handle pressure well during busy times.Ability to communicate with all level of personnel and prioritize, organize and plan work independently.Valid and clean Driver’s License – Alberta Class 5 or equivalent.What we can offer you:- Standard work hours – 8 hours shift with 1-hour break.- Continuous training and advancement opportunities.- Open communications with management and ongoing support.- Competitive wages.If you feel that this is the environment that you have been looking for, do not hesitate to send in your applications!We would like to thank all applicants for their interest, however, only those who meet the qualifications and being considered for the said positions will be contacted.Job Type: Full-timeSalary: $15.00-$20.00 per hourBenefits:Dental careDisability insuranceEmployee assistance programExtended health careLife insuranceOn-site parkingWellness programFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayAbility to commute/relocate:Edmonton, AB T5P 4B6: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Licence/Certification:Driving Licence (required)Work Location: In person\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"B80EAE425247090486C46DD60055ACA1\",\n            \"cityName\": \"Wipro in Moncton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ca4206418816ba3c\",\n            \"jobName\": \"Customer Service (Bilingual English And French Or English And Spanish)\",\n            \"companyName\": \"Wipro\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694351847856,\n            \"dateOfPosted\": 1693506947459,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.0878165,\n                    \"lon\": -64.7782313\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"3 Roles available1. Loyalty Customer Support Analysts - Phone Support, 2 Shifts between 10am-8pm, Monday-Friday. Salary based on experience, up to 22$/hr2. Technical support roles for retail locations (Also phone support), on rotating 24/7 shift schedule, where alternating weekends are guaranteed. Salary based on experience, up to 22$/hr3. Customer Complaints - 10-8 Monday to Friday - Phone Support, 2 Shifts between 10am-8pm, Monday-Friday. Salary based on experience, up to 22$/hr. (Must be bilingual English and french)Full Benefits, competitive salary with opportunities to develop professionally.3 weeks vacation, paid sick leave. Flexible work/life balance.If you have any more questions, please apply and we'll be happy to answer them.Job Types: Full-time, PermanentSalary: $19.00-$22.00 per hourBenefits:Dental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offRRSP matchVision careSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayNight shiftWeekends as neededCOVID-19 considerations:Site operator has excellent cleaning practices in place. Ability to commute/relocate:Moncton, NB E1C 0J4: reliably commute or plan to relocate before starting work (preferred)Work Location: In person\",\n            \"location\": \"Moncton, NB\"\n        },\n        {\n            \"id\": \"DD71AAD39C917FDEA248E4860E307524\",\n            \"cityName\": \"Burlington, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0c1e5771f1201f62\",\n            \"jobName\": \"Customer Service And Sales Representative\",\n            \"companyName\": \"Goldfish Swim School - Ontario\",\n            \"rowSalary\": \"$19–$20 an hour\",\n            \"date\": 1694351827503,\n            \"dateOfPosted\": 1692657295944,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.3255196,\n                    \"lon\": -79.7990319\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burlington\",\n                \"formattedAddress\": \"Burlington, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burlington\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"WHY JOIN GOLDFISH SWIM SCHOOL? Making a meaningful difference in the lives of children is what drives us. Watching our swimmers gain confidence, self-esteem and life-changing skills makes every day GOLDEN! We look for dynamic individuals who share this passion.  If you want to have fun and improve the lives of children in and out of the pool, join our team - you will get back way more than you give! Status: Part time *Must be available to work DAY time with some evenings and weekend shifts*** WILL BE A FLOATER BETWEEN OAKVILLE & BURLINGTON LOCATIONS***Summary: Promotes the sale of swim lesson memberships and related products and services with Goldfish Swim School. Displays quality customer service in addressing the needs of existing and new members. Acts as the first point of contact and as such is responsible for presenting a positive image for the company. Duties and Responsibilities include the following. Other duties may be assigned. Completes the sales process using leads generated through marketing activities including events, advertising, referrals, etc.With effective communication skills, addresses a potential customer’s needs & expectations while presenting the services available from Goldfish Swim School.Manages day to day inquiries from existing members while building strong relationshipsAssists members with purchases of merchandise & vending productsResolves member concerns using a professional & empathetic approach.Prepares daily reports & schedules to support lesson execution and management activitiesParticipates in training/in-services as required.Benefits: Flexible schedule to accommodate school or other activities  Staff Referral bonuses  Team building events  Starting rate $19ph and pay increase at 12 months of continuous service  Discounts on swim lessons for family members Education/Experience:Minimum of two years experience in direct sales or in a related retail sales roleSelf-motivated and conscientiousExcellent presentation, organization, verbal and written communication are mandatoryPositive and clear phone mannerMotivated to achieve sales results Intermediate-level computer skills required using Word, Excel, and other software systems. We will provide reasonable accommodation at any time throughout the hiring and employment process for applicants with disabilities. If you require accommodation, please contact the General Manager and include the job title of the role you are interested in, your name, and your preferred method of contact.  Job Type: Part-time  Salary: $19.00 per hour Application QuestionsYou have requested that Indeed ask candidates the following questions:How many years of Sales experience do you have? Each Goldfish Swim School is an independently owned and operated franchise. The respective Franchisee is the employer at each Goldfish Swim School location. Each franchisee can set their own wages, benefit programs and terms and conditions of employment, which may vary at each Goldfish Swim School location.\",\n            \"location\": \"Burlington, ON\"\n        },\n        {\n            \"id\": \"5D5B4917381AA0804E29DED1B33907F2\",\n            \"cityName\": \"987 Gordon St Unit 11, Guelph, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e9181bd87aa0e0fe\",\n            \"jobName\": \"Retail Customer Service Representative For Specialty Food Store\",\n            \"companyName\": \"University Square Bakery & Deli\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694348187562,\n            \"dateOfPosted\": 1693496511492,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5419735,\n                    \"lon\": -80.24724789999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Guelph\",\n                \"formattedAddress\": \"26 Gordon St, Guelph, ON N1H 4G7, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Wellington County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Guelph\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"University Square Bakery & Deli requires a motivated, Bakery Customer Service Representative who will be responsible for providing prompt, courteous and knowledgeable service to customers. The incumbent must be able to take customer orders, prepare merchandise for sale and ring in customer purchases. The position requires an individual who has the ability to multitask, works well as a team as well as on their own and has strong communication skills.Job Duties:· Greet customers and discuss type, quality and quantity of merchandise or services required· Take orders from clients and prepare merchandise for purchase· Prepare sales and accept cash, credit card or automatic debit payment. Able to Manually use a deli slicer and knives to cut cheese and meats· Replace used stock, rotate current stock and ensure satisfactory inventory levels· Maintain cleanliness of the bakery throughout shift· Understand and follow all pertinent Food Safety guidelines, procedures and requirements· Engage and interact with customers to create a positive shopping experience· Maintain a high level of customer service· Participate in merchandising and promotional activities· Participate in all manner of store maintenance· Maintain a high level of product and service knowledge· Work in partnership with Store Manager and other employees to maximize store sales and in-store presence· Maintain a professional appearance, demeanor, and attitude at all timesQualified applicants should email their resumeRegards,OwnershipJob Type: Part-timePart-time hours: 12-18 per weekSalary: From $16.50 per hourBenefits:On-site parkingStore discountSchedule:Day shiftEvery WeekendCOVID-19 considerations:Regular Sanitization is done throughout store, curbside pick-up is available.Work Location: In personApplication deadline: 2023-09-15Expected start date: 2023-09-05\",\n            \"location\": \"Gordon St Unit, Guelph, ON\"\n        },\n        {\n            \"id\": \"B097F63966911410CFE69EE6A8B1B94A\",\n            \"cityName\": \"33 Commonwealth Ave, Mount Pearl, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fca8a10c7a3e9d79\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Ches's Fish And Chips\",\n            \"rowSalary\": \"From $14.75 an hour\",\n            \"date\": 1694348131689,\n            \"dateOfPosted\": 1693499627040,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.5126534,\n                    \"lon\": -52.8011297\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mount Pearl\",\n                \"formattedAddress\": \"Commonwealth Ave, Mount Pearl, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mount Pearl\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full Job Descriptionwe are looking for someone energetic, have a flexible schedule, like a fast-paced environment, and can learn quickly, we want to hear from you!We are currently hiring a cashier with daytime and evening time availability (weekdays and weekends).Greet guests and advise on store's ordering products and services, handle transactions on POS terminal and process payments, maintain a clean environment for the guests (restock, clearing and cleaning of dining room area), perform all opening and closing duties.Job Types: Part-time, Full-timePart-time hours: 20-40 per weekSalary: From $14.75 per hourBenefits:Store discountVision careDay range:Monday to FridayWeekends as neededShift:4 hour shift8 hour shiftAbility to commute/relocate:Mount Pearl, NL A1N 1W7: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Commonwealth Ave, Mount Pearl, NL\"\n        },\n        {\n            \"id\": \"32665EFCEA1EAF3BB32636EC1F242E57\",\n            \"cityName\": \"209 Bank St, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b6bcddc4483fe7f8\",\n            \"jobName\": \"Financial Customer Service Representative\",\n            \"companyName\": \"Pay2day\",\n            \"rowSalary\": \"$16.50–$17.50 an hour\",\n            \"date\": 1694346816447,\n            \"dateOfPosted\": 1686861403004,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4209477,\n                    \"lon\": -75.70115419999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Bank St, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Do you believe that providing exceptional customer service is the key to a company’s success?At Pay2day, we believe this to be a vital component of success for the individual hired. Within the role of a Financial Customer Service Representative, we are looking for individuals who model they way through every client interaction because our clients are the lifeline of our business.To be a better and different kind of financial service provider; we believe in being EPIC in all we do.Our ideal candidate is in search of an opportunity that allows them to enhance their professional skillset while embracing a culture of ongoing feedback for that next level development.While assisting clients meet their financial goals and building relationships at all levels, you will be part of a team that truly cares. If you’re looking for opportunities within Pay2Day, we offer multiple levels of development programs to those that possess the right attitude and a determination to succeed.Additional Characteristics of Our Team Members Include:· Team player: We succeed together; a collaborative approach wins.· Goal oriented: Results reflect our frontline team’s commitment.· Open to feedback: At all levels feedback is a constant, feedback is a gift.· Problem Solving: Initiative to get the job done, breaking down the barriers to find a solution.· Innovative: Creativity and thinking outside the box is promoted, at Pay2Day the best idea wins!· Detail Oriented: Both internal and external clients matter so we take care in how and what we do to continually exceed expectations.· Communication: Open communication and productive conversations are a focus. Transparency at all levels allows us to success as a team.· Adaptable: Working within an ever-changing industry means you are comfortable with adapting to and embracing change.Job Responsibilities:· Delivering an exceptional client experience/ Responding to client inquiries and requests.· Cash handling/ Data entry· Opening and/or closing the store· Communicating with clients to solidify payment arrangements on past due accounts· Reviewing applicants and completing financial risk assessment to determine approvals· Collaborating with various departments as required· Tasks as assigned by your Branch Manager that are client and revenue focused.If you believe that the role of a Financial Customer Service Representative sounds like a fit for you, we want to meet you!Job Types: Full-time, PermanentSalary: $16.50-$17.50 per hourBenefits:Dental careFlexible schedulePaid time offVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekend availabilityEducation:Secondary School (preferred)Experience:customer service: 1 year (required)Cash handling: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Bank Street, Ottawa, ON\"\n        },\n        {\n            \"id\": \"83A9FFBD0D5CF701D19B3C8D092787CB\",\n            \"cityName\": \"245 Daniel Street South, Arnprior, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=73961f9b943ceeb5\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Canadian Tire Gas+ Arnprior\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694346584449,\n            \"dateOfPosted\": 1693499619726,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4255866,\n                    \"lon\": -76.3649207\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Arnprior\",\n                \"formattedAddress\": \"Daniel St S, Arnprior, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Renfrew County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Arnprior\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking to fill two positions immediately. We need people to fill both opening(5am) and closing(11pm) positions at a busy gas station. We have a steady stream of customers throughout the day and time management will be a great trait for someone to have here. In between customers we have to clean up and restock the store. If you are looking to keep yourself busy while having some enjoyable conversations with customers, this could be the role you were looking for.We will schedule a four hour training shift with follow up training as needed. We can offer full time hours after a couple weeks of employment.If you do not live in Canada, do not apply. I can not see someone willing to commute from Mozambique.Job Types: Permanent, Part-timePart-time hours: 15-20 per weekSalary: From $16.00 per hourBenefits:Flexible scheduleSchedule:8 hour shiftDay shiftEvening shiftMonday to FridayNight shiftWeekends as neededAbility to commute/relocate:Arnprior, ON: reliably commute or plan to relocate before starting work (required)Work Location: In personExpected start date: 2023-09-05\",\n            \"location\": \"Daniel St S, Arnprior, ON\"\n        },\n        {\n            \"id\": \"93E1F724CA2A2F2BDCADBA7AB4B2DB5D\",\n            \"cityName\": \"686 Crown Drive, Peterborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c0158f8c45df7bfa\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Alypsis Inc.\",\n            \"rowSalary\": \"$15.50–$18.80 an hour\",\n            \"date\": 1694346305094,\n            \"dateOfPosted\": 1693499623423,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.276707,\n                    \"lon\": -78.3381535\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Peterborough\",\n                \"formattedAddress\": \"Crown Dr, Peterborough, ON K9J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Peterborough County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Peterborough\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position: Customer Service RepresentativeJob Description:The Customer Service Representative will play a key role in the success of our company. This position is responsible for answering phone calls, responding to emails and web research. The Customer Service Representative will work closely with all departments and may be required to help in other departments.Core Duties & Responsibilities:Answer incoming phone calls and direct calls to appropriate person.Handle web research for customers in a timely manner.Follow up with customers on any issues that may arise from the sales team.Maintain an organized, clean work area.Perform other duties as assigned.Required Skills & Competencies:Excellent communication skills, both written and verbal.Excellent computer skills, including Google drive (docs, sheets, etc...)Attention to detail.Ability to work in a fast-paced, high-pressure environment while maintaining a positive attitude.Desire to learn new skills and be part of the team success.Strong organizational skills and ability to multitask.Passion for natural healthKnowledge about cosmetics and essential oilsWork Location:One location - No remote positions currently offeredWork RemotelyNoJob Types: Seasonal, Casual, Part-timeContract length: 6 monthsPart-time hours: 24-32 per weekSalary: $15.50-$18.80 per hourBenefits:Casual dressOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftNo weekendsSupplemental pay types:Bonus payOvertime payAbility to commute/relocate:Peterborough, ON K9J 6W1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Crown Dr, Peterborough, ON\"\n        },\n        {\n            \"id\": \"0F897A56390EE6C235C81A057F2663EF\",\n            \"cityName\": \"3650 Langstaff Rd, Woodbridge, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b282e1898f027472\",\n            \"jobName\": \"Front Counter Customer Service\",\n            \"companyName\": \"Langstaff Dry Cleaners\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694345888654,\n            \"dateOfPosted\": 1693496558635,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8034026,\n                    \"lon\": -79.5849546\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Langstaff Rd, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking a motivated individual to work as front counter customer service. Minimum 3 years customer service experience required. Must live locally.Responsibilities:Assist in store customers.Sort, ticket and package customer laundryMaintain a high level of professionalism when dealing with customers.Job Type: Full-timeSalary: From $16.00 per hourSchedule:8 hour shiftMonday to FridayEducation:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Langstaff Rd, Woodbridge, ON\"\n        },\n        {\n            \"id\": \"E09CF9EFC0FCD9F6A953CA0011DB7D3C\",\n            \"cityName\": \"1 Promenade Cir, Thornhill, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6fa37c1905413edc\",\n            \"jobName\": \"Customer Service Associate / Cashier\",\n            \"companyName\": \"Aroma Espresso Bar Promenade Mall\",\n            \"rowSalary\": \"$15.50–$18.36 an hour\",\n            \"date\": 1694345170047,\n            \"dateOfPosted\": 1687763150437,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8068111,\n                    \"lon\": -79.4501259\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Promenade Cir, Vaughan, ON L4J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We at aroma espresso bar Promenade mall are seeking a Customer Service Associate / Cashier to join our team. As a Customer Service Associate / Cashier, you will be responsible for providing exceptional customer service and technical sales support to our customers. The ideal candidate is organized, has excellent time management skills, and is fluent in English.Duties:- Greet customers as they enter the store- Answer customer questions and provide technical sales support- Operate cash register and handle financial transactions- Maintain a clean and organized storeQualifications:- Excellent customer service skills- Strong organizational skills- Ability to manage time effectively- Fluent in English- Previous retail or customer service experience is preferredBenefits:- Competitive pay- Flexible scheduling- Employee discounts on productsIf you are looking for a challenging and rewarding position in a fast-paced environment, we encourage you to apply for this exciting opportunity!Job Type: Part-timePart-time hours: 20 per weekSalary: $15.50-$18.36 per hourBenefits:Store discountDay range:Weekend availabilityFlexible Language Requirement:French not requiredAbility to commute/relocate:Thornhill, ON L4J 4P8: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:fast food: 1 year (required)Language:Filipino (required)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Promenade Cir, Vaughan, ON\"\n        },\n        {\n            \"id\": \"4935FDE462C855FC89E0BC50B9D45F2C\",\n            \"cityName\": \"13571 Verdun Place, Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=580bd7ba7bd091e9\",\n            \"jobName\": \"Front Counter Customer Service\",\n            \"companyName\": \"Fred Holmes Fuel Injection\",\n            \"rowSalary\": \"From $25 an hour\",\n            \"date\": 1694345036359,\n            \"dateOfPosted\": 1694345036074,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.193288,\n                    \"lon\": -123.0747659\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Verdun Pl, Richmond, BC V6V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 25.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    25.0\n                ],\n                \"range\": {\n                    \"gte\": 25.0,\n                    \"gt\": null,\n                    \"lte\": 25.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Start at 8am and end at 4:30pm, 2 coffee breaks and 1 lunch break. Need to have strong English skills and be able to fluently communicate. Must have at least 1 year of experience in the automotive/parts industry. Additional training will be provided. Looking for someone to work long-term in our company.Responsibilities:- Provide exceptional customer service and support to clients- Answer incoming calls and respond to customer inquiries- Assist customers with product information, pricing, and order status- Resolve customer complaints or issues in a professional and timely manner- Process orders, returns, and exchanges accurately- Maintain customer records and update information as needed- Collaborate with other team members to ensure customer satisfaction- Conduct outbound calls to follow up with customers or provide additional informationExperience:- Previous experience in a customer service role preferred- Excellent communication skills, both verbal and written- Strong problem-solving abilities and attention to detail- Ability to multitask and prioritize tasks effectively- Proficient in using computer systems and software applications- Knowledge of CRM software is a plusJoin our team as a Customer Service Representative and be part of a dynamic and supportive work environment. We offer competitive compensation, opportunities for growth, and a positive company culture. Apply today to start your career in customer service!Job Types: Full-time, PermanentSalary: From $25.00 per hourJob Types: Full-time, PermanentSalary: From $25.00 per hourBenefits:Casual dressOn-site parkingFlexible Language Requirement:French not requiredSchedule:Day shiftMonday to FridayNo weekendsEducation:Secondary School (preferred)Experience:Automotive / Parts Inustry: 1 year (required)Customer service: 1 year (preferred)Shift availability:Day Shift (required)Ability to Commute:Richmond, BC V6V 1W5 (preferred)Ability to Relocate:Richmond, BC V6V 1W5: Relocate before starting work (preferred)Work Location: In personExpected start date: 2023-09-13\",\n            \"location\": \"Verdun Pl, Richmond, BC\"\n        },\n        {\n            \"id\": \"5CC7F780F24AC27CF54F2AF45CA370B6\",\n            \"cityName\": \"2000 Boul St Régis, Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ee1fee0c73bd486b\",\n            \"jobName\": \"Customer Service Representative/Inside Sales\",\n            \"companyName\": \"Amacor\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694344985411,\n            \"dateOfPosted\": 1693498021423,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.488025,\n                    \"lon\": -73.7817139\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Boul Saint Régis, Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer service representative / Inside Sales:Amacor is seeking a dynamic, detailed orientated CSR/Inside sales Representative.Located in the West Island close to Highway 40 and Blvd Des Sources.Amacor provides its clients with full-service garment embellishment that includes Silk-screening, Embroidery, Patches and a host of Digital technologies.Responsibilities:Responding promptly to customer inquiriesCollaborate with several departments to address client’s needsEnsure to have all required information to process ordersPrepare quotes, input information and process ordersOrder entry into CRM databaseKeeping records of customer interactions, transactions and commentsAssist sales team with administrative dutiesFollow-up on order statusAnswer customer inquiries about orders via phone or emailSkills:High school diploma or equivalent2 years related work experience preferredBilingual (fluent French and English both written and verbal)Great communicator in person and via telephone and emailProblem solver-ConfidentTeam player as it is a collaborative open environmentMust work well under pressure in a fast-paced environmentAbility to prioritize many tasksComputer skills: Excel-Outlook-WordReprésentant du service à la clientèle / Ventes internes :Amacor est à la recherche d'un représentant RSE/ventes internes dynamique et détaillé.Situé dans le West Island près de l'autoroute 40 et du boulevard Des Sources.Amacor fournit à ses clients un service complet d'embellissement de vêtements qui comprend la sérigraphie, la broderie, les écussons et une multitude de technologies numériques.-------------------------------------------------------------------------------Représentant du service à la clientèle / Ventes internes :Amacor est à la recherche d'un représentant RSE/ventes internes dynamique et détaillé.Situé dans le West Island près de l'autoroute 40 et du boulevard Des Sources.Amacor fournit à ses clients un service complet d'embellissement de vêtements qui comprend la sérigraphie, la broderie, les écussons et une multitude de technologies numériques.Responsabilités:- Répondre rapidement aux demandes des clients- Collaborer avec plusieurs départements pour répondre aux besoins des clients- S'assurer d'avoir toutes les informations nécessaires pour traiter les commandes- Préparer les soumissions, saisir les informations et traiter les commandes- Saisie des commandes dans la base de données CRM- Tenir des registres des interactions, des transactions et des commentaires des clients- Assister l'équipe de vente dans les tâches administratives- Suivi de l'état des commandes- Répondre aux demandes des clients sur les commandes par téléphone ou par courrielCompétences:- Diplôme d'études secondaires ou équivalent- 2 ans d'expérience de travail connexe préférable- Bilingue (français et anglais courants tant à l'écrit qu'à l'oral)- Excellent communicateur en personne et par téléphone et courriel- Résolveur de problèmes - Confiant- Avoir un esprit d'équipe car il s'agit d'un environnement collaboratif ouvert- Doit bien travailler sous pression dans un environnement en évolution rapide- Capacité à prioriser de nombreuses tâches- Compétences informatiques: Excel-Outlook-WordBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingSchedule:8 hour shiftMonday to FridayEdit jobOpenView public job pageJob Types: Permanent, Full-timeSalary: $18.00-$22.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payWork Location: In person\",\n            \"location\": \"Boul Saint-Régis, Dorval, QC\"\n        },\n        {\n            \"id\": \"8F3AFB74BE3BBD5A55843809E90C4F4B\",\n            \"cityName\": \"8063 North Fraser Way, Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d91ae0b9326bd0c5\",\n            \"jobName\": \"Customer Service/Sales Representative\",\n            \"companyName\": \"Bmg Industries Inc.\",\n            \"rowSalary\": \"$19–$23 an hour\",\n            \"date\": 1694344720247,\n            \"dateOfPosted\": 1693499579393,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.195621,\n                    \"lon\": -122.995875\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"N Fraser Way, Burnaby, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burnaby\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About Us: BMG Industries Inc.Qualified candidates from Burnaby and Lower mainland onlyFounded in 2015, BMG Industries Inc. set out with an aspiration to make a significant mark on Canada's e-commerce landscape. Today, having navigated the challenges and opportunities that came our way, we have experienced commendable growth and are now setting our gaze beyond Canadian territories, aiming for a substantial presence in the U.S. market and further.Our approach is rather direct: We pinpoint exceptional products, ensure they're priced attractively, and then rely on our adept marketing team to promote them effectively.What differentiates BMG Industries Inc. in the bustling e-commerce market?Vertical Integration: Instead of depending on third-party logistics, we've invested in our own warehouse. This not only streamlines our operations from sourcing to delivery but also gives us better control over our supply chain's entirety.Dedicated In-House Team: Our belief is that effective branding is as crucial as the product itself. Supporting this conviction is our team of in-house UX/UI designers, graphic artists, social media experts, and videographers. Their collaborative efforts ensure that our products aren't just sold but are presented in a way that resonates with our audience.Our Unique Edge: This combined operational and creative approach provides us a distinct advantage, helping our brands stand out in a sea of e-commerce offerings.For those newer to the field and looking to delve deep into the e-commerce sector, BMG Industries Inc. offers a unique opportunity. While we do promise a conducive working environment, it's the learning experience and the chance to be part of a growth-centric company that truly makes the difference.Your RoleThis multifaceted role demands an individual who can efficiently address real-time challenges, such as rerouting packages, while also possessing the finesse to liaise with wholesale clients, ensuring their needs are consistently met and relationships are nurtured.Key Responsibilities:Customer Service Excellence: Address customer queries promptly, whether from individual buyers on our platforms or wholesale partners.Package Management: Act swiftly in cases where packages face issues. This includes rerouting or providing solutions to ensure customer satisfaction.Liaison with Virtual Assistants: Collaborate with VAs to manage feedback on Amazon, aiming for resolution and continual service enhancement.Call Management: Handle incoming calls, ensuring they are effectively routed and that callers receive comprehensive assistance.Wholesale Client Relationship: Serve as the primary contact for wholesale clients, understanding their needs, addressing their concerns, and maintaining a positive, productive relationship.Sales Quotations: Craft and send tailored quotes to clients based on their requirements.Order Oversight: Track and monitor orders, intervening proactively when issues arise.Digital Expansion: Contribute insights and feedback as we diversify our sales platforms, especially focusing on enhancing our proprietary website's user experience.Feedback Loop: Regularly gather feedback to refine our processes and enhance customer satisfaction across all platforms.Qualifications:Proven experience in a combined customer service and sales role.Exceptional communication skills, both oral and written.Familiarity with e-commerce platforms, especially Amazon, is an asset.Acumen to manage challenges in real-time, such as package rerouting.Strong interpersonal skills, particularly in relationship management with key clients.Proficiency in CRM tools and other relevant software.A proactive approach, anticipating challenges and acting before they escalate.Additional Note:We’re seeking a versatile candidate who not only excels in customer service but is also motivated by the prospects of earning commissions by identifying and converting potential leads. Recognizing that there may be downtimes during regular responsibilities, the ideal candidate will utilize these periods proactively to make cold calls to qualified leads.Key Responsibilities:Customer Service Excellence: Efficiently address and resolve queries from our platform users and wholesale partners.Package Management: Handle any challenges related to packages, including rerouting or finding quick solutions to delivery issues.Wholesale Client Liaison: Act as the primary contact for wholesale clients, fostering a positive, lasting relationship.Cold Calls: Utilize downtime to proactively make cold calls to qualified leads, aiming for sales conversions.Commission-Based Sales: Actively seek out new clients and sales opportunities, earning a commission for every successful conversion you initiate.Order Management: Monitor orders diligently, ensuring a seamless customer experience.Feedback Implementation: Regularly gather and act upon feedback to optimize our services.Qualifications:Solid experience in a customer service and sales capacity.Excellent communication skills, both verbal and written.Familiarity with e-commerce platforms, particularly Amazon.Aptitude for managing challenges promptly, e.g., package rerouting.Strong interpersonal and relationship management skills.Experience with CRM tools and sales software.Self-motivation and a proactive mindset, especially regarding sales opportunities.Compensation:Apart from a competitive base salary, candidates will have the opportunity to earn a commission for every customer or sale they independently secure. This offers an excellent incentive for those who are driven by performance and results.Additional Note:This role is perfect for those who wish to combine their customer service expertise with a passion for sales. The structure allows for substantial earning potential for those who are proactive and results-oriented.If you have the drive to not only address customer needs but also expand our clientele base, we want to hear from you! Kindly apply with an updated CV and a cover letter detailing your experience in both customer service and sales, especially any prior roles that involved commission-based earning. their experience in managing both individual customers and wholesale relationships.Job Type: Full-timeSalary: $19.00-$23.00 per hourBenefits:Dental careLife insurancePaid time offVision careFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Commission payAbility to commute/relocate:Burnaby, BC V5J 5M8: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)Work Location: In personApplication deadline: 2023-09-07Expected start date: 2023-09-11\",\n            \"location\": \"North Fraser Way, Burnaby, BC\"\n        },\n        {\n            \"id\": \"3296F6AEF095A01D19E7F7390F1A4940\",\n            \"cityName\": \"Frisco Pools Inc. in Bolton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5e27c168286cacd7\",\n            \"jobName\": \"Executive Customer Service/Office Manager\",\n            \"companyName\": \"Frisco Pools Inc.\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694344685307,\n            \"dateOfPosted\": 1682455746943,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8741995,\n                    \"lon\": -79.7306602\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Caledon\",\n                \"formattedAddress\": \"Bolton, Caledon, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Caledon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job descriptionFrisco Pools Inc. has been providing quality services to residential locations for over 25 years and we are growing! We are looking to hire an Executive Customer Service/Office Manager to handle all of our pools, hot tubs, and water feature inquiries. We are looking for candidates that have experience providing high-value Customer Service, are self-motivated, hard-working, and able to work as part of a team. We are looking for people who want to learn and grow within our organization. This is a permanent position with seasonal hours. We offer competitive pay and an excellent team dynamic. Must have prior experience in a similar role.Job Details:Plan, organize, direct, control, and evaluate daily operationsCommunicate with Department ManagersCustomer relations, including maintaining customer electronic files, & responding to emails and phone callsManage part-time staff and assign dutiesDetermine merchandise and services to be sold, locate, select and procure merchandise for resaleExplain the type of and cost of services offered, issue receipts and other formsQualifications:Experience using QuickBooks in a workplace setting for at least ONE YEAR is a must.Must have your own transportation to head office.Excellent interpersonal and negotiation skills in a professional manner across a range of mediums including internet, email, telephone, and in-personMust be a self-motivated team player able to organize and prioritize workload in a high volume fast-paced environmentProficiency in Windows-based office applications including Word, Excel, and OutlookMarketing experience is an assetCompensation & Benefits:$18.00 to $25.00/hourBonus PerksVacation**Additional benefits will become available in early 2023.Schedule & Hours:Monday to Friday, & occasional weekendsAverage day 10 am to 5 pm, flexible, extended times during peak seasonWinter hours are reduced (December to March)35 Average weekly hours#READYTOWORKJob Types: Permanent, Part-time, Full-timePart-time hours: 30-40 per weekSalary: $18.00-$25.00 per hourBenefits:Casual dressFlexible scheduleOn-site parkingFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftCOVID-19 considerations:To keep our team as safe as possible, we have limited staff in the office, specified workstations to work from, we have on-site masks, gloves, and hand sanitizer.Application question(s):We are located in Bolton. Do you have reliable transportation to and from the office?Experience:administrative/customer service: 1 year (preferred)QuickBooks (in a workplace setting): 1 year (preferred)Work Location: In person\",\n            \"location\": \"Bolton, ON\"\n        },\n        {\n            \"id\": \"FC46830C6AAF2B38C72EA1FD85F94A19\",\n            \"cityName\": \"Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1fb1f4a2f66e2fe2\",\n            \"jobName\": \"Customer Service Sales Representative\",\n            \"companyName\": \"United Management Group Inc.\",\n            \"rowSalary\": \"$600–$850 a week\",\n            \"date\": 1694344676594,\n            \"dateOfPosted\": 1693495282305,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.895136,\n                    \"lon\": -97.13837439999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 600.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    600.0\n                ],\n                \"range\": {\n                    \"gte\": 600.0,\n                    \"gt\": null,\n                    \"lte\": 600.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We specialize in client acquisition and business development for brands with a strong commitment with a passion for providing exceptional products and services. Our team shares a passion for giving back; both to our fellow teammates and to our community. Our team enjoys problem-solving and to continue our efforts in the Winnipeg area and keep up with client demand, we are hiring a Customer Service Sales Representative immediately.The Customer Service Sales Representative will act as the first point of contact with existing customers. They will assist with organizing our sales team and reporting back to the Executive Sales Manager. The Customer Service Sales Representative will receive hands-on training on all sales and marketing techniques, brand management strategies, territory management, and compliance standards as well as coaching, mentoring, and career development. The ideal candidate will have exceptional communication skills and be genuinely excited to grow with a company.Customer Service Sales Representative Responsibilities:Meeting planned sales goalsSetting individual sales targets with the sales team.Tracking sales goals and reporting results as necessaryOverseeing the activities and performance of the sales team.Develop and deliver informative sales presentations based on individual customer needs to maximize market shareParticipate in continuous training opportunities with the intent to increase qualified customer contacts, enhance relationships and advance the sales process.Customer Service Sales Representative Qualifications:Previous experience in marketing, promotions, sales, or account management preferredComfortable taking on a leadership role and support role within a team (must work well with others)Strong interpersonal skillsExperience in customer relationship management (preferred, not required)Experience in a management or leadership roleExcellent written and verbal communication skills.Dedication to providing great customer serviceJob Types: Full-time, PermanentSalary: $600.00-$850.00 per weekBenefits:On-site parkingSchedule:8 hour shiftMonday to FridayWeekends as neededAbility to commute/relocate:Winnipeg, MB: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Winnipeg, MB\"\n        },\n        {\n            \"id\": \"38082F8E43474942EA881CBD2D8325F6\",\n            \"cityName\": \"1760 Ymca Rd, Gibsons, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=44dc9343b0b960fd\",\n            \"jobName\": \"Customer Service Representative, Ymca Camp Elphinstone\",\n            \"companyName\": \"Ybc\",\n            \"rowSalary\": \"$23 an hour\",\n            \"date\": 1694344642333,\n            \"dateOfPosted\": 1690269516733,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.4453039,\n                    \"lon\": -123.4735974\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Gibsons\",\n                \"formattedAddress\": \"YMCA Rd, British Columbia V0N 1V6, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Sunshine Coast Regional District\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Gibsons\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Title: Customer Service Representative, YMCA Camp Elphinstone  Location: 1760 YMCA Road Gibsons, BC  Terms:Full-Time Seasonal Contract Contract Dates: As soon as possible – November 4, 2023  Shifts: Monday – Friday  Rate: $23.00 per hour  Reports To: Director, YMCA Camp Elphinstone  YMCA Camp Elphinstone  YMCA Camp Elphinstone is located near Gibsons on the Sunshine Coast, a 40-minute ferry ride from Vancouver. It is situated on 144 acres of temperate rainforest along the shores of Howe Sound. Camp Elphinstone operates as a residential summer camp during July and August offering programs like one and two week camp, Sailing Camp, Leadership Development, and out-trips to Desolation Sound and the Sunshine Coast Trail.  From September to June, Camp Elphinstone operates as an Outdoor Education, Recreation and Retreat Centre for schools, businesses, clubs, and other special interest groups. Camp Elphinstone currently serves over 12,000 participants annually.  YMCA Camp Elphinstone has accommodation and dining for up to 400 people and has programs and equipment for swimming, canoeing, kayaking, sailing, stand up paddleboarding, low/high ropes, rock climbing, wilderness and environmental programs, archery, crafts and more. Camp Elphinstone employs approximately 140 staff/volunteers during July and August, with a team between 20-50 for the spring and fall Outdoor Education seasons, and a smaller core team of 10 staff during the winter season. Successful Camp Elphinstone staff are self-motivated individuals whose ambition is to help children and youth develop in an outdoor camp setting.  Nature and Scope: The Customer Service Representative is the primary administrative support for the YMCA Camp Elphinstone main office. The person will provide onsite excellent customer service, registration support, and office administration support for all camp programs. The work environment is fast-paced with a high volume of program participants.  Major Responsibilities: Support registration for all YMCA Camp Elphinstone programs Provide exemplary customer service Monitor phone and email inquiries Support customers in the navigation of online self-service technologies Work with Microsoft Office, ActiveNet, and other Database systems Process transactions Produce reports Waitlist management Collect and sort mail Provide positive and welcoming presence at reception desk; maintains organized reception area Develops and maintains positive working relationships with key stakeholders including YMCA staff and volunteers, community agencies and other service providers Behaves in a professional manner at all times Willingness to learn new skills Other tasks and duties as assigned Qualifications: Related experience Experience with CRM Systems Working knowledge of new technologies Strong computer proficiency Ability to multitask, prioritize and work independently Ability to be flexible and problem solve Strong attention to detail Strong written and verbal communication skills in English Ability to work in a team environment Well-developed interpersonal and relationship building skills Successful candidates will be required to provide a current and satisfactory Criminal Reference Check/Vulnerable Sector Search issued no later than six (6) months preceding your start date About the YMCA: YMCA BC is a charity dedicated to strengthening the foundations of community, by nurturing the potential of children, teens & young adults, promoting healthy lifestyles, fostering a sense of social responsibility and delivering lasting personal & social change to grow in spirit, mind, and body.  Since January 2023, YMCA of Northern British Columbia, YMCA-YWCA of Kamloops and YMCA of Greater Vancouver are officially one association, with one mission to strengthen our impact for communities across British Columbia. We are YMCA BC. This transition marks a new chapter in our long-standing history of building communities, transforming lives, and connecting people of all ages, stages, backgrounds and abilities, to unique opportunities to learn, grow, and reach their potential.  YMCA BC provides services in health, fitness & aquatics, child care, camping, employment & community services to over 150,000 participants annually. Our values guide our decision-making and behavior: Do the right thing - We are caring, respectful, honest and responsible in all we doPut people first - We believe in the strengths, perspectives and passion of peopleKeep our promises -We do what we say we will doLead by example -We are courageous, speak with conviction, listen attentively and collaborate Application Deadline: Ongoing until filled, consideration of candidates will begin immediately  Thank you for your interest and application. Due to the high volume of applications received, only short-listed candidates will be contacted.\",\n            \"location\": \"Ymca Rd, Gibsons, BC\"\n        },\n        {\n            \"id\": \"FAC7E6E6724B53879EBD2D85AAD4AE4B\",\n            \"cityName\": \"5379 Hwy 2, Shannonville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c7a2f5a5d63e4532\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Fast Freddy's North Shannonville\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694344619894,\n            \"dateOfPosted\": 1693492882717,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.194916,\n                    \"lon\": -77.2274319\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Shannonville\",\n                \"formattedAddress\": \"Shannonville, ON K0K 3A0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hastings County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Shannonville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Reliable persons needed for Busy gas station/variety store . Experience: Cash, Lottery training considered an asset (willing to train the right candidate)Cashier, customer service, POS system, stocking, Input inventory as received. Able to lift up to 40 lbs, carry, bend, stand for long periods.Stock/ Cleaning are required : Be able to time management and be proactive.Scheduled times can be any time between 5:30am to 11:00pm Monday to Sunday, various shifts on weekdays and weekends.Looking to hire both full time and part time with availability for all shifts. Subsidized benefits plan available for full time employees.Job Types: Permanent, Part-time, Full-timePart-time hours: 20-40 per weekSalary: $15.50 per hourBenefits:Dental careOn-site parkingStore discountVision careDay range:HolidaysWeekend availabilityFlexible Language Requirement:French not requiredShift:8 hour shiftDay shiftEvening shiftMorning shiftWork setting:Convenience storeWork Location: In personExpected start date: 2023-09-08\",\n            \"location\": \"Shannonville, ON\"\n        },\n        {\n            \"id\": \"C46F0D03BE15A2693B0CF46B272DB3B9\",\n            \"cityName\": \"Fall River, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=657475462bfbaef7\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Petro Canada\",\n            \"rowSalary\": \"$13.35–$13.85 an hour\",\n            \"date\": 1694344584363,\n            \"dateOfPosted\": 1652421036693,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.8180582,\n                    \"lon\": -63.6119749\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Fall River\",\n                \"formattedAddress\": \"Fall River, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Fall River\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Looking to hire for two day shifts weekends only saturday sunday 6:45 to 3:15 and evening 2:45 to 11:15No experence is needed.As a gas station cashier, your duties includegreeting and assisting customers, maintaining the inventory of products on store shelves, operating the cash register and running credit card transactions, lotto machine, scratch tickets, handling and cleaning the gas station shop and restrooms.Job Type: Part-timePart-time hours: 34 per weekSalary: $13.35-$13.85 per hourBenefits:Dental careVision careSchedule:8 hour shiftSupplemental pay types:Bonus payAbility to commute/relocate:Fall River, NS: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Overnight Shift (preferred)Day Shift (preferred)Night Shift (preferred)\",\n            \"location\": \"Fall River, NS\"\n        },\n        {\n            \"id\": \"087A9064D0ACAFFEADF4BE33F99DB85B\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bfcc515080a4db77\",\n            \"jobName\": \"Customer Service Supervisor (Except Financial Services)\",\n            \"companyName\": \"Southwood Automotive\",\n            \"rowSalary\": \"$31 an hour\",\n            \"date\": 1694344449922,\n            \"dateOfPosted\": 1686824273682,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 31.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    31.0\n                ],\n                \"range\": {\n                    \"gte\": 31.0,\n                    \"gt\": null,\n                    \"lte\": 31.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 3 months to less than 1 yearExperience: 2 years to less than 3 yearsTasks Co-ordinate, assign and review work Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Identify training needs and train workers in job duties and company policies Requisition materials and supplies Resolve work-related problems and prepare and submit progress and other reports Supervision 3-4 people Security and safety Criminal record check Work conditions and physical capabilities Attention to detail Fast-paced environment Large workload Tight deadlines Work under pressure Personal suitability Accurate Client focus Dependability Efficient interpersonal skills Initiative Judgement Organized Reliability Team player Screening questions Are you available for the advertised start date? Do you have previous experience in this field of employment? Long term benefits Other benefitsWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"84495894B31B609F33EFEC4925A852D2\",\n            \"cityName\": \"114 Sydenham St, Flesherton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c1784b32a234b422\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Esso\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694341726396,\n            \"dateOfPosted\": 1669018985368,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2648914,\n                    \"lon\": -80.5533015\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Flesherton\",\n                \"formattedAddress\": \"Sydenham St, Flesherton, ON N0C 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Flesherton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"$16.50/HRLOCAL CANDIDATES ONLYApply Now! Hiring Now! All training will be provided.ESSO Gas Station in Flesherton is hiring Customer Service Representatives to join its team - opening or closing shifts, weekdays or weekends. No experience necessary. Previous gas station or convenience store experience is always an asset. Full Training will be provided.Send resume online or welcome to stop by at the store.Job Types: Full-time, Part-time, PermanentSalary: From $16.50 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftEveningsEvening shiftEvery WeekendHolidaysMonday to FridayMorning shiftNo weekendsOn callWeekend availabilityWeekends onlyAbility to commute/relocate:Flesherton, ON: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Sydenham St, Flesherton, ON\"\n        },\n        {\n            \"id\": \"22EBCF0069DAAF4AB72BFDDD73218B58\",\n            \"cityName\": \"1888 West Broadway, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d4fe0cc104bfe56d\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Le Coq Frit\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694341142710,\n            \"dateOfPosted\": 1675833991466,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.26376459999999,\n                    \"lon\": -123.14866\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Broadway, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"-serving-bussing-phone orders for take-out-POS system, 3rd party delivery tablet, payment processing-take-out prep for packaging orders-cleaning duties-various other related dutiesMust be able to work during weekday(Monday - Friday between 11-9pm)Job Types: Permanent, Part-timePart-time hours: 25 per weekSalary: From $16.00 per hourSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayMorning shiftSupplemental pay types:TipsCOVID-19 considerations:Required to wear a mask. Sanitize surfaces after use.Work Location: In person\",\n            \"location\": \"Broadway WR\"\n        },\n        {\n            \"id\": \"11101BB5C45FB63E336C41533FF7B93C\",\n            \"cityName\": \"9917 99 Avenue, Sexsmith, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=459c7064513964a2\",\n            \"jobName\": \"Customer Service And Communications Assistant\",\n            \"companyName\": \"Sexsmith Shannon Municipal Library\",\n            \"rowSalary\": \"$22.12–$24.71 an hour\",\n            \"date\": 1694341055476,\n            \"dateOfPosted\": 1693490472098,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.3451183,\n                    \"lon\": -118.7797081\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sexsmith\",\n                \"formattedAddress\": \"Sexsmith, AB T0H 3C0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Grande Prairie County No. 1\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sexsmith\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service and Communications AssistantJob Description:The role plays a key role at the Sexsmith Shannon Municipal Library. This position will assist with answering phone calls, responding to emails and requests for materials. You will helping our patrons make the most of their library experience and will take a lead role in our social media.Core Duties & Responsibilities:Assist library patrons with finding materials within the library, ordering materials from other libraries and systemsAnswer incoming phone calls and respond to emails and inquiriesMaintain general knowledge of products and servicesParticipate in the development of programs and offeringsDevelop and create a social media plan for the library and servicesPerform other duties as assignedRequirements:High School Diploma or equivalent required2 years of customer service experience in a business settingMust be able to work flexible hours including weekends and holidaysAbility to build rapport with clients and employeesStrong written and verbal communication skillsAbility to problem solve, analyze problems, and develop solutionsThis position will be 30 to 34 hours per week and is expected to be filled in late September.Job Types: Full-time, PermanentSalary: $22.12-$24.71 per hourBenefits:Casual dressPaid time offSchedule:Evening shiftWeekends as neededWork Location: In person\",\n            \"location\": \"Avenue, Sexsmith, AB\"\n        },\n        {\n            \"id\": \"F56E66741822E290CA5DFBE99806C513\",\n            \"cityName\": \"Smart IP in Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=842a7d1e49a1f1fa\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Smart Ip\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694341047614,\n            \"dateOfPosted\": 1668834044099,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7315479,\n                    \"lon\": -79.7624177\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Brampton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job SummaryWorking in a contact center providing support to our customers.Connecting and building a rapport with a variety of customers, asking questions and offering solutions to resolve their needsCommunicating efficiently with customer, regarding tickets, tasks and escalationsResponsibilities and DutiesCommunicating efficiently with customer, regarding tickets, tasks and escalationsQualifications and SkillsExperience in Telecommunications RoleGrade 12 GraduateJob Type: Full-timeSalary: $17.00-$18.00 per hourBenefits:Casual dressExtended health careOn-site gymOn-site parkingPaid time offSchedule:8 hour shiftWork Location: In person\",\n            \"location\": \"Brampton, ON\"\n        },\n        {\n            \"id\": \"BC0112755CD56CC047EB628EB8783C92\",\n            \"cityName\": \"Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d9e8e290cdd28755\",\n            \"jobName\": \"Customer Service Alarm Dispatcher\",\n            \"companyName\": \"Armstrongs\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694341015689,\n            \"dateOfPosted\": 1688681350036,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6066487,\n                    \"lon\": -73.712409\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laval\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Alarm DispatcherArmstrong's Monitoring Centers, an AvantGuard Company Laval, PQ, CanadaAt Armstrong’s we are Canada’s premiere alarm monitoring company. We are a part of the AvantGuard Monitoring company with the mission to create solutions for a safer world through our innovative technologies and caring people. We operate one of the largest and fastest growing monitoring companies in North America, monitoring alarms (security, fire, medical, environmental, IoT) throughout the U.S. and Canada for nearly 1.7 million people every day. At Armstrong's we are defined by our core values: We Care, We're Fun, We're Innovative, We value Relationships, We give great Service, and We work as a team to extend trust. In short, We Care F.I.R.S.T. about our employees and subscribers.Reasons You'll Love Working Here:4 days off per week! We have a rotating schedule where you will work 4 days on and 4 days off (12 hour shifts)Starting pay of $17/hr for day shift and $18.00/hr for night shift - Earn an extra $1 per hour for speaking French.4 weeks of fully paid, hands-on trainingJob security with guaranteed hours (various shifts)Secure building with key fob access and free parkingNO SALES or Surveys, just helping people!Growth opportunities - We have strong, steady growth and always look internally for promotions firstA FUN team, company parties, professional development, and more!What You'll Do:Process alarm signals quickly, accurately and professionally in stressful situationsDispatch the proper authorities, verify that help is on the way and notify subscribersAccurately document all responses for the alarm on the computerLearn and use new software to complete multiple tasksWhat We're Looking for?:Our ideal candidate is fluent in FrenchMust have a completed high school diploma or equivalentExperience providing excellent customer service preferredAbility to stay calm in a very fast past environment with high pressure situationsMust be able to pass a pre-employment criminal record checkCandidates MUST reside and be legally authorized to work in CanadaArmstrong's Montioring Centers, AvantGuard Monitoring Centers and Becklar, LLC is an equal opportunity employer. All applicants will be considered for employment without attention to race, color, religion, sex, sexual orientation, gender identity, national origin, veteran or disability statusAgent au service à la clientèleArmstrong’s - Un Centre de Surveillance AvantGuard Laval, PQ, CanadaChez Armstrong’s, nous sommes un centre de surveillance d’alarme de premier choix au Canada. Nous faisons partie de la société AvantGuard Monitoring avec la mission de créer des solutions pour un monde plus sûr grâce à nos technologies innovantes et à nos employées attentionnées. Nous exploitons l’une des entreprises de surveillance les plus importantes et à la croissance la plus rapide en Amérique du Nord, en surveillant les alarmes (sécurité, incendie, médical, environnemental) aux États-Unis et au Canada pour près de 1,7 million de clients chaque jour. Chez Armstrong, nous sommes définis par nos valeurs fondamentales: nous nous soucions des autres, nous sommes innovants, nous valorisons les relations, nous offrons un excellent service et nous travaillons en équipe pour étendre la confiance. En bref, Nous nous soucions en premier de nos employés et abonnés.Raisons pour lesquelles vous allez adorer travailler ici:4 jours de congé par semaine! Nous avons un horaire rotatif où vous travaillerez 4 jours et 4 jours de congé (quarts de travail de 12 heures)Salaire de départ de 17 $/h pour le quart de jour et 18,00 $/h pour le quart de nuit - Gagnez 1 $ de plus de l'heure pour parler français.Sécurité d’emploi avec heures garanties (divers quarts de travail)Bâtiment sécurisé avec carte d’accès et stationnement gratuitPAS DE VENTES ou de sondage, on aide simplement les gens!Opportunités de croissance - Nous avons une croissance forte et régulière et cherchons toujours d’abord à l’interne pour des promotions.Une équipe dynamique, des évenement d’entreprise, un développement professionnel et plus encore!Ce que vous ferez:Traiter les signaux d’alarme rapidement, avec précision et professionnellement dans des situations stressantesDépêchez les autorités appropriées, vérifiez que l’aide est en route et informez les abonnésDocumenter avec précision toutes les réponses pour l’alarme sur l’ordinateurApprenez et utilisez de nouveaux logiciels pour effectuer plusieurs tâchesCe que nous recherchons?:Notre candidat idéal parle couramment le français et l’anglaisDoit avoir un diplôme d’études secondaires ou l’équivalentExpériencea fournir un excellent service à la clientèleCapacité à rester calme dans un environnement de travail très rapide avec des situations de haute pressionDoit être en mesure de passer une vérification du casier judiciaire préalable à l’emploiArmstrong’s Montioring Centers, AvantGuard Monitoring Centers et Becklar, LLC est un employeur d’égalité des chances. Tous les candidats seront pris en considération pour un emploi sans se souciant de la race, de la couleur, de la religion, du sexe, de l’orientation sexuelle, de l’identité de genre, de l’origine nationale, du statut d’ancien combattant ou d’invalidité\",\n            \"location\": \"Laval, QC\"\n        },\n        {\n            \"id\": \"F8DB4501705E264FF21E5F15F3D9ECD4\",\n            \"cityName\": \"15110 54a Ave, Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ca94bfeb7185f887\",\n            \"jobName\": \"Customer Service /Gym Staff\",\n            \"companyName\": \"Elevation Fitness\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694339292988,\n            \"dateOfPosted\": 1690129626464,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1901012,\n                    \"lon\": -122.8503845\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"13438 Central Ave, Surrey, BC V3T 0N2, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Elevation Fitness is looking for high energy, outgoing customer service representatives for closing shifts Wednesday to Sunday. 30-35hrsApplicants with a confident, outgoing and social personality required. Must be responsible, have reliable transportation, have excellent customer service skills and be good at multitasking. Duties include, greeting customers, creating a high energy pleasant environment, front desk duties, giving tours, general cleanliness of the facility and juice bar duties. Must be available for evening and weekend shifts.Please apply with cover letter and resume.Job Types: Full-time, Part-timePart-time hours: 30 -35 per weekSalary: $16.00-$20.00 per hourSchedule:Day shiftEvening shiftWeekend availabilityEducation:Secondary School (required)Experience:Customer Support & Client Services Occupations: 1 year (preferred)Work Location: In person\",\n            \"location\": \"A  Ave, Surrey, BC\"\n        },\n        {\n            \"id\": \"00140BBB85D261AFF36BECDC162BB214\",\n            \"cityName\": \"Dufresne Furniture and Appliances in Thunder Bay, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=451121a081764ba5\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Dufresne Furniture And Appliances\",\n            \"rowSalary\": \"$16.50–$17.00 an hour\",\n            \"date\": 1694338331970,\n            \"dateOfPosted\": 1693490468281,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.3808951,\n                    \"lon\": -89.2476823\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Thunder Bay\",\n                \"formattedAddress\": \"Thunder Bay, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Thunder Bay District\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Thunder Bay\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"As a Customer Service Agent, you will be responsible for addressing our customer service issues and notifications.The Dufresne Group is committed to investing in our team members; we offer:Market competitive wages;Excellent employee discounts;Career growth and continuous development;Respectful and family-oriented working environment with strong company values.As the Customer Service Agent, you will:Provide excellent customer service to our team and our guestsCommunicate with guests by following your training resolution processesContact customers through outbound queue provide updates and book deliveries and advise of delivery/technician timeframesAccurately opens, monitors and closes Customer Service OrdersAccurately records Delivery Completion DataComplete Customer Invoicing and initiate parts orderingAs a successful candidate you will have the following:Be available to work days, evening and weekends as requiredHave excellent verbal communication skills and telephone etiquette with ability to negotiate tactfully and act with diplomacy and respectGood computer skills with ability to quickly learn new applicationsApply now!Job Types: Part-time, PermanentPart-time hours: 8-20 per weekSalary: $16.50-$17.00 per hourWork Location: In person\",\n            \"location\": \"Thunder Bay, ON\"\n        },\n        {\n            \"id\": \"E8CEAB2DED77DF06F8B873414C64D339\",\n            \"cityName\": \"New Westminster, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b8a39ab4411a1cd9\",\n            \"jobName\": \"Casino Dealer (Customer Service Alternative)\",\n            \"companyName\": \"Evolution Americas\",\n            \"rowSalary\": \"$17–$24 an hour\",\n            \"date\": 1694338311721,\n            \"dateOfPosted\": 1693487254517,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2057179,\n                    \"lon\": -122.910956\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"New Westminster\",\n                \"formattedAddress\": \"New Westminster, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"New Westminster\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Job Description  Do you have the flair to be a great entertainer and are able to improvise while performing live as a Casino Dealer? Do you have acting experience and are comfortable hosting live on camera? We are now looking for Casino Dealers who want to work in a fast-paced and social work environment. As a Casino Dealer, you will spend most of your working day in front of the camera hosting classic casino games like blackjack, poker, roulette, and other casino games and interacting with the players. The job will help you grow your performance techniques and your ability to entertain. We operate from a newly renovated facility in the central part of New Westminster, easily accessible from locations such as Surrey, Coquitlam, Port Moody and Burnaby. The studio runs all hours of the day, which means that we offer both night and day shifts. We Offer Generous Compensation Package including: Earn from $17.00 - $24.00 per hour plus monthly performance bonus. Extended Health and Benefit Plan 15 Days Paid Vacation 8 Paid Sick Days 2 Paid Evo Day We are looking for: Fast learners with positive energy who are looking to start a career with us or build professional hosting skills for the future Previous acting, hosting experience is an advantage Applicants should be charismatic with an open-minded personality A show person at heart and be able to communicate fluently in English Open availability for shifts Qualifications  Age 19+ High school diploma or equivalent Professional and service-minded with good communications skills Must be able to work a flexible schedule, evenings, weekends and holidays Must be able to obtain Provincial Gaming License (sponsored by the company) Wear an assigned uniform and maintain professional appearance standards Must be comfortable wearing theatrical make-up (foundation, blush) Fluent in English, with strong communication skills Prior experience as an actor, performer, theatre, or broadcasting. Additional Information  About Us Evolution is a market-leading developer and provider of products and services for online casino entertainment. Our excellence is driven by over 17,000 EVOlutioneers across 30 markets worldwide, working in product innovation, software development, IT solutions, game hosting and business support. Evolution's dynamic and creative environment creates a unique opportunity for personal and professional growth. Our integrated business-to-business solutions guarantee that our clients can always provide an unrivalled online entertainment experience to their players globally. We thrive on remaining an award-winning digital powerhouse of entertainment products and services with an ever-expanding line-up of product brands: Evolution Live, NetEnt, Red Tiger, Ezugi, Big Time Gaming, Nolimit City and DigiWheel. Evolution is a Swedish company founded in 2006 and listed on Nasdaq Nordic (EVO).\",\n            \"location\": \"New Westminster, BC\"\n        },\n        {\n            \"id\": \"02CDBF376E5C170048C23D57770ABF53\",\n            \"cityName\": \"300 East River Rd, New Glasgow, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9bb83abddfab48b1\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Needs Convenience\",\n            \"rowSalary\": \"From $14.50 an hour\",\n            \"date\": 1694338260939,\n            \"dateOfPosted\": 1693493033752,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5741799,\n                    \"lon\": -62.6423135\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"New Glasgow\",\n                \"formattedAddress\": \"E River Rd, New Glasgow, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Pictou County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"New Glasgow\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cash/Debit SalesUp selling a mustLotto and Tobacco SalesCustomer Service/Following PolicyMerchandising/StockingCleaningSign work contract and expectations of job upon hiringLift, kneeling and bendingAble to work alone and have great time management skillsSome experience an asset but willing to trainNight shift premiumJob Type: Part-timePart-time hours: 16 per weekSalary: From $14.50 per hourShift:8 hour shiftDay shiftEvening shiftNight shiftWork setting:Convenience storeWork Location: In personExpected start date: 2023-09-02\",\n            \"location\": \"East River Road, New Glasgow, NS\"\n        },\n        {\n            \"id\": \"0EF364B9856DE9273FD50F911E8EB3CB\",\n            \"cityName\": \"991 Victoria Street North, Kitchener, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3714c8ee9125cbf7\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Colonial Acres Coins Ltd.\",\n            \"rowSalary\": \"$16–$18 an hour\",\n            \"date\": 1694338127185,\n            \"dateOfPosted\": 1693494283922,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4753536,\n                    \"lon\": -80.4310146\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kitchener\",\n                \"formattedAddress\": \"Victoria St N, Kitchener, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kitchener\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service RepresentativeColonial Acres Coins and Jewellery has been in business since 1991. We strive to provide exceptional Customer Service to collectors of numismatics all over the world, focusing on Canadian products. We provide services both online and in our store front.We require a fresh face for our store front to assist customers who come into the store with their numismatic shopping needs.This is a full time position, 9am to 5pm Monday to Friday. Must be available to work one Saturday a month from 9:30am to 3pmKey ResponsibilitiesGreet customers as they come into the store, and direct them to where they need to goAssist customers with their coin and jewellery purchasesProcess transactionsMaintain inventory on an online platformOrganize and maintain products and displays in the store frontAnswer incoming customer inquiriesCollaborate with management teams to stay updated on new products, services, and policiesCollaborate with other departments to ensure smooth operation in day-to-day businessEngage with clients in a friendly and professional manner while actively listening to their needs and concernsResolve customer service problems promptly and accurately, within proscribed company guidelines, and in a manner designed to retain and promote customer loyalty.Daily reconciliationsAnswer incoming phone calls as required in a friendly and professional mannerOther duties as assigned by managementIdeal Candidates will possess:1+ years experience in a customer service environmentHigh school diploma or equivalent requiredCriminal record check may be requiredComfort and ease in dealing with the public in an upbeat, friendly mannerExcellent written and oral communication skillsExcellent problem-solving skillsAbility to multitaskInternet navigation and website user knowledgeExcellent attention to detailComputer proficiencyAbility to work in a fast-paced environmentAbility to maintain strict confidentiality with customer account informationJob Type: Full time, 37.5 hours a week to 44 hours a weekSchedule: 9am to 5pm Monday to Friday. Must be available for one Saturday per month 10am to 3pmJob Types: Full-time, PermanentPay: $16.00-$18.00 per hourBenefits:Casual dressCompany eventsDental careExtended health carePaid time offFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayOvertimeWeekends as neededSupplemental pay types:Overtime payAbility to commute/relocate:Kitchener, ON N2B 3C7: reliably commute or plan to relocate before starting work (required)Application question(s):Are you able to work Monday to Friday, 9am to 5pm?Are you able to work one Saturday a month from 9:30am to 3pm?Education:Secondary School (preferred)Experience:Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"Victoria Street North, Kitchener, ON\"\n        },\n        {\n            \"id\": \"3366A56B4340CBCD8F7ECECA0AD3FD17\",\n            \"cityName\": \"1226A King St W, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b2eef0883d5f8654\",\n            \"jobName\": \"Ecommerce Customer Service Representative\",\n            \"companyName\": \"Nella Cutlery & Food Equipment Inc.\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694337711402,\n            \"dateOfPosted\": 1693492878031,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6472532,\n                    \"lon\": -79.3866709\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"King St W, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Nella Cutlery was established 70 years ago, and serves Toronto’s finest restaurants, businesses and food shops with food equipment, utensils and a knife sharpening service. Nella is currently looking for a Ecommerce Customer Service Representative.Responsibilities include:Customer InteractionEngage with customers courteously and professionally across diverse communication channels, such as email, chat, phone.Provide precise and pertinent information about products, prices, promotions, and company policies, catering to customers' specific needs.Order AssistanceAssist customers in placing orders, navigating the ecommerce platform, and completing the checkout process seamlessly.Address inquiries related to product availability, sizing, colors, specifications, and any customization options.Issue ResolutionIdentify and meticulously resolve customer problems and complaints, prioritizing swift resolution and optimal customer satisfaction.Handle customer frustrations and concerns empathetically, ensuring a positive interaction even during challenging situations.Returns and RefundsProficiently manage the returns, exchanges, and refunds process, adhering to established company protocols and ensuring customers are informed about the process.Guide customers through the return process, provide updates on their requests, and ensure a hassle-free experience.Product KnowledgeDevelop an in-depth understanding of the company's product offerings, enabling the delivery of accurate, comprehensive, and insightful information to customers.Technical SupportProvide adept technical support to customers encountering issues with the ecommerce platform, including payment concerns, and account management queries.CommunicationMaintain crystal-clear and concise communication with customers, conveying complex information in a digestible manner to facilitate understanding.CollaborationCollaborate seamlessly with various departments, including logistics, marketing, and product teams, to address customer concerns and provide pertinent information.Order Processing to ShippingFacilitate the seamless transition of web orders to the shipping department, ensuring accurate order details are communicated to expedite timely fulfillment.Collaborate with the shipping team to ensure orders are properly packaged, labeled, and dispatched, monitoring the shipping process to guarantee a smooth delivery experience for customers.Upselling and Cross-SellingRecognize opportunities to introduce additional products or services that align with customers' preferences, enhancing their shopping experience and potentially increasing sales.Feedback and ImprovementAct as a conduit for gathering and transmitting valuable customer feedback to relevant teams, contributing to continuous improvements in products and services.Adaptability and Time ManagementKeep abreast of product updates, policy changes, and evolving customer needs, efficiently managing multiple customer interactions while maintaining service excellence.Customer SatisfactionAspire to surpass customer expectations, leaving a lasting positive impression of the company and its services.Continuous LearningActively participate in ongoing training initiatives to enrich product knowledge, enhance customer service skills, and refine problem-solving capabilities.Qualifications:· Shopify experience or similar ecommerce solution is an asset· Strong working knowledge of MS Excel or similar· Proficient communication skills· Excellent problem-solving skills, analytical skills and be able to multi-task· Excellent organizational skills, with strong attention to detail & timelines· Excellent written and verbal communication skillsStrong ability to work independently and within a team environment Company IntroductionJob Types: Permanent, Full-timeSalary: $20.00-$22.00 per hourBenefits:Casual dressDental careExtended health carePaid time offSchedule:8 hour shiftWork Location: In person\",\n            \"location\": \"King St W, Toronto, ON\"\n        },\n        {\n            \"id\": \"135F7AF4C35B6BE17045DC3CEF49B024\",\n            \"cityName\": \"FreshCo Grocery Store in London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a71c0544528be17f\",\n            \"jobName\": \"Customer Service Manager (Csm)\",\n            \"companyName\": \"Freshco Grocery Store\",\n            \"rowSalary\": \"From $19 an hour\",\n            \"date\": 1694337364008,\n            \"dateOfPosted\": 1693490475110,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9849233,\n                    \"lon\": -81.2452768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OverviewThe Customer ServiceManager is responsible for the efficient and fiscally responsible operation of the front End department. The Manager will lead and manage staff to achieve the highest level of customer service, while adhering to all Food Safety Protocols, Standard Operating Procedures, corporate policies and Health and Safety, and other programs and initiatives. The Manager will also manage budgets, labour costs, inventory control, product presentation and merchandising. The Manager will coach, motivate and develop their team to foster customer loyalty, fullfill customer needs and actively contribute to an environment of employee and customer engagement.The front end manager is responsible for payroll and labour hours of the entire store.The front end running smoothly with no line ups.People LeadershipCreate a coaching and development culture for all employees, which embraces a passion for foodDemonstrate outstanding leadership, while serving as a role modelManage direct reports including: selection, orientation, training and development, performance management, succession planning and compensationCommunicate operational requirements/changes to department employeesManage store operations as requiredCustomer Offering Create a shopping experience that engages customers in a way that enhances loyalty, sales, and profit  Provide superior customer service to meet customer needsDemonstrate exceptional product knowledge, including awareness of product changes, promotions, and seasonal trends*Order, receive, organize, rotate, merchandise and present products and stock in accordance with company standardsExecute winning conditions as requiredPolicy/ Regulatory Adherence Lead the implementation of all corporate policies, initiatives, and Standard Operating Procedures and ensure the department and employees comply and use them effectively, including timely and accurate submission of all relevant documentation as required  Responsible for ensuring that OH&S, food safety, and other regulatory requirements and procedures are implemented and maintained*Financial Directly responsible to ensure the department achieves all financial targets and maximizes sales and margins, including appropriate sales forecasting, variance analysis and correction, and labour cost controlManage the department budgetPersonal/ Professional Development Thorough understanding of all relevant company programs; attend training as requiredKeeps abreast of local competitor activity, industry trends and makes recommendations on internal pricing, promotions and product policiesEmployee Engagement Act as the employer of choice by actively supporting an environment of employee engagement  Initiate, support, participate and lead community and charitable events and activities*Other Duties Coordinate maintenance of department equipment and repairsProvide feedback for continuous improvementMaintain a clean and safe working environment as per Company requirementsOther duties as requiredJob Requirements Ability to work independently in a fast paced environment  Above average communication skills (both oral and written)Full knowledge of department operations and skills*Proficient use of Microsoft Office SuiteFull knowledge of total store operations and skillsHigh School DiplomaMinimum 18 months of retail store experience, particularly in the specific departmentExperience reading and analyzing financial reports, and experience in developing and adhering to budgetsWhile all responses are appreciated only those being considered for interviews will be acknowledged.Looking for a strong leader.Must have 5 years cashier experience.Must be able to work in a fast paced environment and have great customer service.Must be able to multitask in a fast paced environment.Job Type: PermanentSalary: From $19.00 per hourBenefits:Dental careDisability insuranceExtended health careLife insuranceRRSP matchStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftEvening shiftWeekends as neededSupplemental pay types:Bonus payEducation:Secondary School (preferred)Experience:Retail Management: 5 years (required)Work Location: In person\",\n            \"location\": \"London, ON\"\n        },\n        {\n            \"id\": \"0BF0F7FCC69270B5C825C24F7BD6AACD\",\n            \"cityName\": \"Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f196bbc5202be1b4\",\n            \"jobName\": \"Customer Service Representative Supervisor\",\n            \"companyName\": \"Swami Enterprises\",\n            \"rowSalary\": \"$27 an hour\",\n            \"date\": 1694337317754,\n            \"dateOfPosted\": 1693456060560,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7315479,\n                    \"lon\": -79.7624177\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Brampton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 27.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    27.0\n                ],\n                \"range\": {\n                    \"gte\": 27.0,\n                    \"gt\": null,\n                    \"lte\": 27.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College, CEGEP or other non-university certificate or diploma from a program of 1 year to 2 yearsExperience: 7 months to less than 1 yearTasks Conduct performance reviews Recruit and hire staff Co-ordinate, assign and review work Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Examine and verify accuracy of work and authorize routine deposits and withdrawals Identify training needs and train workers in job duties and company policies Resolve work-related problems and prepare and submit progress and other reports Work conditions and physical capabilities Attention to detail Personal suitability Client focus Organized Reliability Team playerWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Brampton, ON\"\n        },\n        {\n            \"id\": \"976B4970F08C7C21A1B074C919F80BC5\",\n            \"cityName\": \"7622 Keele St, Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=865dd93d8edd8fef\",\n            \"jobName\": \"Bilingual Customer Service Representative- Fulltime Hybrid\",\n            \"companyName\": \"Kohl & Frisch Limited\",\n            \"rowSalary\": \"From $48,000 a year\",\n            \"date\": 1694326493690,\n            \"dateOfPosted\": 1693449564006,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8086703,\n                    \"lon\": -79.50147179999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Keele St, Vaughan, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vaughan\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 48000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    48000.0\n                ],\n                \"range\": {\n                    \"gte\": 48000.0,\n                    \"gt\": null,\n                    \"lte\": 48000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Founded in 1916, Kohl & Frisch Limited has a solid reputation in the healthcare industry that distinguishes it as the only national, Canadian-owned, and operated wholesale distributor. A family-owned company, it is one of Canada’s leading national distributors and is the essential link between pharmaceutical manufacturers and healthcare providers. Kohl & Frisch is fully equipped to service large chain retailers, independent pharmacies, clinics, and hospitals for all their Rx, OTC, home healthcare, and front shop needs.Primary Role of This PositionIn this role, the Customer Service Representative (CSR) provides excellence in customer service to our customers with regard to order placement and issue resolution.LocationWe are proud to offer full-time remote work for our Bilingual Customer Service team; however there is a requirement to be in-office 1 day per month to meet with the Customer Service team. For this reason, you must be within a reasonable commuting distance to the Concord, ON office or be based in the Montreal area to be able to attend these meetings.Major ResponsibilitiesResponsible for several key customer service tasks including order entry and the resolution of customer issues and inquiries.Empowered to build relationships with customers by ‘owning’ customer issues, being responsive and proactive, and consistently providing a high level of customer follow-up and service.Education and ExperienceHigh school graduatePrevious customer service or Call Centre experience is a strong assetQualificationsCapable of handling a large volume of calls while maintaining professional and efficient serviceAbility to think problems through and recommend creative solutions to nonstandard customer issuesExcellent communication and interpersonal skillsDemonstrated ability to work in a team environmentAbility to communicate effectively (verbally and written) in a professional manner with K& F customers and internal K&F departmentsStrong computer skills (Microsoft Office applications), good typing skillsGood work history including performance, attendance, etc.Must be able to work independently with limited supervisionProactive nature, high attention to detail, and takes initiativeHours of WorkMust be available to work a flexible shift schedule Monday to Friday between 8:00 am to 10:00 pmKohl & Frisch Limited is an equal opportunity employer that is committed to diversity and inclusion in the workplace. We prohibit discrimination and harassment of any kind and are committed to a diverse and inclusive workplace for all. Our employees’ diverse backgrounds, abilities, and experiences make our business successful. This policy applies to all employment practices within our organization. If you are contacted for a job opportunity, please advise us of any accommodations needed to ensure fair and equitable access throughout the recruitment and selection process. All accommodation information provided will be treated as confidential and used only for the purpose of providing an accessible candidate experience.Job Type: Full-timeSalary: From $48,000.00 per yearBenefits:Casual dressCompany eventsCompany pensionDental careEmployee assistance programExtended health carePaid time offVision careWellness programWork from homeSchedule:8 hour shiftMonday to FridayOn callSupplemental pay types:Bonus payExperience:Customer service: 1 year (required)Language:French (required)Shift availability:Day Shift (preferred)Night Shift (required)Work Location: Hybrid remote in Concord, ON L4K 2R5\",\n            \"location\": \"Keele St, Concord, ON\"\n        },\n        {\n            \"id\": \"4447C164C661832ED28DB7DFDA4EBDE9\",\n            \"cityName\": null,\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9a1d6773486b93f1\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Chivlabs Inc\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694325003210,\n            \"dateOfPosted\": 1668876233982,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 56.130366,\n                    \"lon\": -106.346771\n                },\n                \"country\": \"Canada\",\n                \"locality\": null,\n                \"formattedAddress\": \"Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": null,\n                \"state_code\": null,\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Canada Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Join our team as a remote customer service representative in Canada to assist clients while being safe and at ease in your own home. Start a remote-based career with a group that represents many of the most well-known companies in the world. What you'll do in this job:Take pleasure in busy days filled with phone calls from consumers and problem-solvingProvide first-rate customer service by responding to inquiries, resolving problems, and dispensing knowledge in response to worries and requestsCustomers should be made aware of the features, services, billing, and costs of current products. When applicable, provide alternatives to your current solutions in an effort to keep customers as clients.Work with us and you’ll enjoy:Full-Time, 40 hour/week schedule100% paid trainingFull benefits package including medical, dental, vision, and life insuranceOpportunities for advancement and professional developmentPersonal benefits of working from home including saving time, money, and the environment.Required qualifications, skills and experienceApply with us, if you possess:A high school diploma or GEDThe ability to connect with customers with empathy & offer helpful solutionsExcellent listening & communication skills, both written and verbalBasic PC navigation skills, including basic search engine experience, browser navigation, typing in URL’s, completing forms online, etc.Ability to work evening and weekend shiftsAble to provide a stand-alone monitor, USB corded headset and a quiet, and distraction-free home workspace (we’ll provide the rest!)Job Types: Full-time, Internship / Co-opSalary: $17.00-$18.00 per hourBenefits:Flexible scheduleWork from homeFlexible Language Requirement:French not requiredSchedule:8 hour shiftSupplemental pay types:Commission payEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: Remote\",\n            \"location\": \"Canada Canada\"\n        },\n        {\n            \"id\": \"C3BAF281D31FBEE4AB1D8B7827DF6212\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=94479fb32c17f4ab\",\n            \"jobName\": \"Customer Service Cashier\",\n            \"companyName\": \"Sportech Indoor Golf\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694323022852,\n            \"dateOfPosted\": 1693466498865,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: Will trainTasks Operate cash register Process money, cheques and credit/debit card payments Receive payment for goods or services Stock shelves and clean counter area Greet customers Provide customer serviceWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"89CE664CBF0FA929B126B908937B5065\",\n            \"cityName\": \"3356 Elmbank Rd, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3a12a94cf84de0a2\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Jet Car Rental\",\n            \"rowSalary\": \"From $18.50 an hour\",\n            \"date\": 1694322956426,\n            \"dateOfPosted\": 1651325595405,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are seeking Customer Service Representative to join our team for the weekend & afternoon shifts. You will be responsible for helping customers by providing product and service information and resolving technical issues.As a Customer Service Representative, you will be responsible for:Qualifying and processing rental contracts with accuracy and detailPersuasively selling optional servicesProcessing customer rental returnsResponding to customer inquiries, providing directions in a courteous and expeditious mannerAdhering to all company policies and proceduresMonitoring fleet availability for reservations and walk-insA commitment to continuous improvement in an ever-changing industryRelated duties as requiredJob Qualifications:Previous car rental experience is requiredAbility to work in a fast paced environment with a variety of tasksAbility to demonstrate professionalism, enthusiasm, and outstanding communication skillsDetail orientedFlexibility to work weekends & afternoonsComputer literateProficiency in EnglishValid Drivers licenseJob Type: Part-timePart-time hours: 16-32 per weekSalary: From $18.50 per hourSchedule:Evening shiftWeekend availabilitySupplemental pay types:Commission payAbility to commute/relocate:Mississauga, ON L4V 1A5: reliably commute or plan to relocate before starting work (preferred)Application question(s):Are you available to work on weekends?Experience:Automotive Rental Occupations: 1 year (required)Driving: 2 years (preferred)Expected start date: 2022-05-06\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"34843951B194319326F32EC19EFFBF97\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e3f09898dcdde398\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Key Equipment Services\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694320757551,\n            \"dateOfPosted\": 1693462783061,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Key Equipment Services Customer Service Representative Who we are: Key Equipment Services, a division of Heritage Food Service Group of Canada, is the largest service provider for the food service industry in western Canada. We have 40 years of history, and our licensed, factory-trained technicians minimize downtime and prioritize urgent service. In addition, we have an extensive support team to drive service excellence and we maintain a sizable inventory of OEM parts. We are the industry leader in Canada, and we care beyond service! A Day in the life: As a CSR at you are the first point of contact for the customer, so your main priority is to welcome them, hear their concerns, and leave them with the confidence that they have been listened to and that they will be looked after. The day goes by quickly in this fast-paced environment. There's always something to learn and this keeps the job fresh and challenging! Responsibilities: Answers incoming/outgoing calls and written communications in a courteous and customer-focused manner Acts as the first point for conflict resolution by listening and empathizing with dissatisfied customers to reduce escalation and achieve a resolution to complaint Provides customers with requested information, updates, ETAs, schedules and contact sub-agents, technicians and other stakeholders as needed Creates service orders using our ERP system from service requests via telephone, emails, portals, and the Salesforce platform Ensures accuracy of information, such as warranty verification, billing address, contact names, equipment location, COD payment processing, etc Builds positive relationships with all clients through active listening Works closely with other members of the customer service team, but also with the team of dispatchers and technicians What you will bring: Minimum of 2 years' experience working in customer service Experience working with an ERP system Excellent written and verbal communication skills Ability to learn quickly Having the curiosity and capacity to learn about various commercial kitchen equipment Minimum 50 wpm Demonstrated ability and proficiency in MS Office suite of applications Need strong memory retention - we service over 300 manufacturers and 1000's of customers Why work for us? Industry-leading compensation Each day brings new challenges and endless learning opportunities Comprehensive group benefits and retirement savings program Extended health, dental, STD and LTD Training and Development Opportunities 24/7 Resources and Support Industry leaders in Canada You will be part of a growing, stable organization, that is the industry leader in Canada We are an equal opportunity employer that supports diversity and inclusion in the workplace. We put safety first, and deliver service excellence with integrity, from a team-driven, collaborative mindset. We support community, both internally and externally. Come join us and be part of a Canadian industry leader in commercial kitchen equipment service. Due to the high volume of interest, we regret that we are unable to respond to all applications. To be considered, candidates must be able to live and work in Canada. Qualified candidates are invited to apply online at:https://keyfood.prevueaps.com/jobs/.\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"EAB696BC808752D6EA02DF80C278C769\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=13ce4148d7c33a6b\",\n            \"jobName\": \"Customer Service Supervisor - Retail\",\n            \"companyName\": \"Maan Truck Sales And Leasing Limited\",\n            \"rowSalary\": \"$29.35 an hour\",\n            \"date\": 1694320168577,\n            \"dateOfPosted\": 1693455962586,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 30.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    30.0\n                ],\n                \"range\": {\n                    \"gte\": 30.0,\n                    \"gt\": null,\n                    \"lte\": 30.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Assign sales workers to duties Order merchandise Establish work schedules Sell merchandise Resolve problems that arise, such as customer complaints and supply shortages Supervise and co-ordinate activities of workers Supervision 1 to 2 people Transportation/travel information Public transportation is available Work conditions and physical capabilities Fast-paced environment Attention to detail Personal suitability Team playerWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"585C6EBA06858A3EBB098102D545A4C7\",\n            \"cityName\": \"181 Commercial St, Berwick, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5619eec944bf9c56\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Petro Canada\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694319955763,\n            \"dateOfPosted\": 1692228063705,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.0460443,\n                    \"lon\": -64.7363937\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Berwick\",\n                \"formattedAddress\": \"Commercial St, Berwick, NS B0P 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Kings County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Berwick\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for an energetic person to join Mel's team!!Job Duties include but are not limited to:Operate all aspects of the register, including cash and card transactions, scanners, and scalesMaintain an accurate cash drawer, ensuring that all transactions are accounted for by the end of the shiftAnswer any customer inquiries, and use your knowledge of store layout and product content to give directions as neededMaintain a clean work environment, keeping register clear for incoming customersOther duties as requestedJob Qualifications:Able to multitask.Able to lift heavy boxes.Able to stand for long periods of time.Attention to DetailAmbitiousJob Types: Full-time, PermanentSalary: From $15.00 per hourBenefits:Dental careVision careDay range:HolidaysMonday to FridayWeekend availabilityFlexible Language Requirement:French not requiredWork setting:Convenience storeWork Location: In person\",\n            \"location\": \"Commercial St, Berwick, NS\"\n        },\n        {\n            \"id\": \"5551750F7CAD31015A4D3BA83488CDE9\",\n            \"cityName\": \"334 Munster Ave, Etobicoke, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6943ffe9000bc101\",\n            \"jobName\": \"Bilingual Call Centre Representative\",\n            \"companyName\": \"Voicelogic\",\n            \"rowSalary\": \"$17–$21 an hour\",\n            \"date\": 1694319786952,\n            \"dateOfPosted\": 1693466500340,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6381825,\n                    \"lon\": -79.5322343\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Munster Ave, Toronto, ON M8Z, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Munster Ave, Etobicoke, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Must be fluent in both English and French (Quebecois).Part time and Full time available. Monday to Friday only. Day time and evening hours available.This bilingual role consists of outbound calls, customer service, and membership renewals for a prominent Canadian membership organization.**We are looking for candidates with a strong call centre, sales. and customer service background.**While we do look at every resume submitted, we only reach out to the applicants we wish to interview. If we have not reached out to you within five business days of when you first applied, then your resume was not selected for an interview.Amenities: For the pleasure of our staff, we have a 1,000 sq ft lounge, full kitchen, water cooler, Microwave, coffee machine, TV, couches, snack machine, outdoor picnic tables, free parking.Site Directions:1. Get off at Kipling Subway station.2. Take the escalators or stairs DOWNSTAIRS and exit LEFT (you will see signs for the South Parking Lot)3. When outside, you will see a bridge. Walk towards it and go under it.Once under the bridge, you are now on Munster Ave.4. Keep walking along Munster Ave to the end of Road. We are at 334 Munster Ave, (Shawbridge & Munster)ALSO AVAILABLE: Part-time work, part time leading to full-time , shift work, customer service, customer support, call center, telemarketing. Flexibility to choose your hours.ABOUT US: We are a communications company. We have been in business since 1997. We service customers in Canada and USA. Our services include b2b and B2C voice broadcasting, email broadcasting, fax broadcasting, and call centre services. ( VOICELOGIC.COM )Job Type: Full-timeSalary: $17.00-$21.00 per hourBenefits:Casual dressFlexible scheduleOn-site parkingSchedule:Monday to FridayNo weekendsExperience:Sales: 1 year (preferred)Call Centre: 1 year (preferred)Customer service: 1 year (preferred)Language:English (required)French (required)Work Location: Hybrid remote in Etobicoke, ON\",\n            \"location\": \"Munster Ave, Etobicoke, ON\"\n        },\n        {\n            \"id\": \"145623EC1DF3B9055D260CE6C9035F8E\",\n            \"cityName\": \"Stony Plain, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bf460fd917d2f2aa\",\n            \"jobName\": \"Customer Service Clerk\",\n            \"companyName\": \"Shell Gas Station\",\n            \"rowSalary\": \"$23.18 an hour\",\n            \"date\": 1694319569890,\n            \"dateOfPosted\": 1689370566404,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.52942880000001,\n                    \"lon\": -114.0018793\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Stony Plain\",\n                \"formattedAddress\": \"Stony Plain, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Stony Plain\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsTasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Issue receipts and other forms Maintain records and statistics Order office supplies and maintain inventory Perform general office duties Receive and log complaints Receive payments Work conditions and physical capabilities Attention to detail Repetitive tasksWork Term: PermanentWork Language: EnglishHours: 32 hours per week\",\n            \"location\": \"Stony Plain, AB\"\n        },\n        {\n            \"id\": \"2003810F6F385399E20ED91D1466562F\",\n            \"cityName\": \"New Westminster, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=51f6f3d03fd20a53\",\n            \"jobName\": \"Card Shuffler - Customer Service\",\n            \"companyName\": \"Evolution Americas\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694319563155,\n            \"dateOfPosted\": 1693456102860,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2057179,\n                    \"lon\": -122.910956\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"New Westminster\",\n                \"formattedAddress\": \"New Westminster, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"New Westminster\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Company Description  Evolution is a market-leading developer and provider of products and services for online casino entertainment. Our excellence is driven by over 17,000 EVOlutioneers across 30 markets worldwide, working in product innovation, software development, IT solutions, game hosting and business support. Evolution's dynamic and creative environment creates a unique opportunity for personal and professional growth. Our integrated business-to-business solutions guarantee that our clients can always provide an unrivalled online entertainment experience to their players globally. We thrive on remaining an award-winning digital powerhouse of entertainment products and services with an ever-expanding line-up of product brands: Evolution Live, NetEnt, Red Tiger, Ezugi, Big Time Gaming, Nolimit City and DigiWheel. Evolution is a Swedish company founded in 2006 and listed on Nasdaq Nordic (EVO). Job Description  We are looking for driven and focused individuals to work as Card Shuffler in our state of the art broadcast studios in New Westminster, BC. The chosen person will be in charge of shuffling playing cards on the Live gaming tables and provide customer service. Responsibilities Shuffle and change the cards on the Live tables when needed Keep in order and under control all facilities that store playing cards, equipment for the tables, and related documentation To keep in order equipment for the Live tables: playing cards and any sort of tables' equipment Flexible attitude to changing priorities, including changes to shifts and covering colleague absences where required Attend training courses/workshops as required and strive to continually improve his/her own technical skills To keep in order documentation for audit To carry out any other duties that may be reasonably requested from time to time. Qualifications  Good working knowledge of English Ability to work well in a multi-cultural team whilst also being able to work independently Ability to perform and work well under pressure Attention to detail Customer Service Resilience and dedication Applicants must be at least 19 years old able to pass BC Gaming Policy & Enforcement Branch (GPEB) licensing able to work shifts (Morning/Afternoon/Night) able to work in a fast paced environment Additional Information  Why you should apply Earn $17 per hour plus a monthly performance bonus. 15 Days Paid Leave 8 Paid Personal Days 2 Paid Evo Days Extended Benefit Plan (Family Coverage) About Us Evolution is a market-leading developer and provider of products and services for online casino entertainment. Our excellence is driven by over 17,000 EVOlutioneers across 30 markets worldwide, working in product innovation, software development, IT solutions, game hosting and business support. Evolution's dynamic and creative environment creates a unique opportunity for personal and professional growth. Our integrated business-to-business solutions guarantee that our clients can always provide an unrivalled online entertainment experience to their players globally. We thrive on remaining an award-winning digital powerhouse of entertainment products and services with an ever-expanding line-up of product brands: Evolution Live, NetEnt, Red Tiger, Ezugi, Big Time Gaming, Nolimit City and DigiWheel. Evolution is a Swedish company founded in 2006 and listed on Nasdaq Nordic (EVO).\",\n            \"location\": \"New Westminster, BC\"\n        },\n        {\n            \"id\": \"72E1CB88A8A1DFBBFB12A0671E4851FB\",\n            \"cityName\": \"1873 Forge Pl, Abbotsford, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cf6b8f5ed1c2d75d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Matteo Lighting Inc\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694317507314,\n            \"dateOfPosted\": 1693451412781,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.0351127,\n                    \"lon\": -122.3424947\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Abbotsford\",\n                \"formattedAddress\": \"Forge Pl., Abbotsford, BC V2T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Fraser Valley\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Forge Pl, Abbotsford, BC Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Looking for a hardworking, self-motivated employee who will bring energy and enthusiasm to the workplace.Must have excellent English verbal and written skills.Ability to multitask and work in a fast-paced environment.Computer skills required in Outlook, Excel and Word is required.Knowledge of Sage or Truck mate is an asset.Job duties include:Order EntryAnswering phones, replying to emails, sending order confirmationsDeal with customer requests and complaintsRunning Reports when requiredBuilding strong relationships with the customers and sales team to help grow the business.Job Type: Full-timeSalary: $20.00 per hourBenefits:Dental careExtended health careSchedule:Monday to FridayAbility to commute/relocate:Abbotsford, BC V2T 5Z9: reliably commute or plan to relocate before starting work (preferred)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Forge Pl, Abbotsford, BC\"\n        },\n        {\n            \"id\": \"CB9961BFC27EEB4AEED5ACAAC2A121E3\",\n            \"cityName\": \"Vernon, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bbc37bc3bc432ac0\",\n            \"jobName\": \"Customer Service Sales Clerk\",\n            \"companyName\": \"Corbett Office Equipment Ltd.\",\n            \"rowSalary\": \"$17.57 an hour\",\n            \"date\": 1694317111886,\n            \"dateOfPosted\": 1693455752804,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.2670137,\n                    \"lon\": -119.2720107\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vernon\",\n                \"formattedAddress\": \"Vernon, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"North Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vernon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: EnglishHours: 40 hours per weekEducation: Secondary (high) school graduation certificateExperience: Experience an assetWork setting Urban area Furniture store Office supplies store Tasks Operate cash register Provide advice about merchandise Conduct sales transactions through Internet-based electronic commerce Estimate or quote prices, credit or contract terms, warranties and delivery dates Greet customers and discuss type, quality and quantity of merchandise or services sought for purchase, rental or lease Prepare merchandise for purchase, rental or lease Prepare sales, rental or leasing contracts and accept cash, cheque, credit card or automatic debit payment Type of product Office supplies Area of specialization Office furniture Transportation/travel information Own transportation Public transportation is available Work conditions and physical capabilities Repetitive tasks Sitting Combination of sitting, standing, walking Weight handling Up to 13.5 kg (30 lbs) Personal suitability Adaptability Analytical Efficiency Goal-oriented Hardworking Integrity Outgoing Positive attitude Proactive Quick learner Time management Dependability Efficient interpersonal skills Flexibility Organized Reliability Team player Excellent oral communication Accurate Screening questions Are you currently legally able to work in Canada? Health benefits Dental plan Disability benefits Health care plan Paramedical services coverage Vision care benefits\",\n            \"location\": \"Vernon, BC\"\n        },\n        {\n            \"id\": \"FA455A278CD2D404B9D952C136A77030\",\n            \"cityName\": \"Firetronics 2000 Inc. in Saint John, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e05f2062e8d34b71\",\n            \"jobName\": \"Monitoring Call Centre Operator - Bilingual (English/French)\",\n            \"companyName\": \"Firetronics 2000 Inc.\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694316811891,\n            \"dateOfPosted\": 1678307118819,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.2733153,\n                    \"lon\": -66.06330799999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saint John\",\n                \"formattedAddress\": \"Saint John, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Saint John County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saint John\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OverviewAt Firetronics 2000 Inc. safety is our number one concern. We specialize in installing, maintaining and monitoring ULC fire alarm systems. We stand by our services and products, ensuring adherence to all applicable regulations, industry standards and guidelines. One of our principal goals is to be a dependable and trusted partner to our clients, authorities and associations.Find out more information about Firetronics 2000 Inc. by visiting our website at www.firetronics.ca.Duties and ResponsibilitiesMonitor fire and security alarm systems utilizing specialized monitoring software and equipmentHandle all telephone calls efficiently and in a professional mannerNotify appropriate contacts or emergency authorities such as Fire Department, Police, Emergency Medical Services in a prompt and efficient manner following strict proceduresDiligently keep required records and filesPrepare and distribute reports internally and to external parties as requiredFollow all established procedures, regulations and guidelinesOther related duties as may be assignedPlease note that this is not a remote positionQualificationsVerbal and written fluency in both English and FrenchEducation: secondary school diploma minimumPreferred a minimum of 1 year experience in the same or similar role such as 911 Operator/Dispatcher, Customer Service Representative (CSR), Telephone Operator/Agent, Call Centre Operator/Agent, Answering Service Operator/Agent, etc.Excellent telephone and communication skillsFlexibility to work 12-hour rotating shifts (days and nights required)Advanced computer proficiency with strong data entry/keyboarding skillsAbility to work under pressureAttention to detail is requiredAbility to stay focused at all times during working hours.Passing criminal record checkWorking ConditionsFriendly team environmentCareer growth opportunitiesContinuous operations (24/7)12-hour rotating shifts (4 on- 4 off Schedule)Participation in On Call Schedule is requiredOffice environment with semi-open workstationsLocated close to major highways and public transitJob Types: Full-time, PermanentSalary: $20.00-$22.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offVision careSchedule:12 hour shiftSupplemental pay types:Overtime payAbility to commute/relocate:Saint John, NB E2L 4L1: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer Service: 1 year (preferred)Language:English fluently (required)French fluently (required)Work Location: In person\",\n            \"location\": \"Saint John, NB\"\n        },\n        {\n            \"id\": \"8E2DBFEDD7060C242ECBFACE6F47B25A\",\n            \"cityName\": \"812 Warden Ave, Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9ae78ed8d12e760c\",\n            \"jobName\": \"Customer Service/Cashier\",\n            \"companyName\": \"California Sandwiches\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694316043579,\n            \"dateOfPosted\": 1667377027488,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7699591,\n                    \"lon\": -79.3038263\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Warden Ave., Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for someone who is high energy, someone who is capable of working well with others while providing a great service to our customers. It’s important that this person is able to take and follow direction. A positive attitude goes along way when you’re working with the public. Food prep, dishwashing, cleanliness, multi-tasker, strong work ethic.Job Type: Full-timeSalary: From $16.00 per hourDay range:Weekend availabilityShift:Day shiftAbility to commute/relocate:Scarborough, ON: reliably commute or plan to relocate before starting work (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Warden Ave, Scarborough, ON\"\n        },\n        {\n            \"id\": \"730379145DDBC67C2B569957D8DF77FD\",\n            \"cityName\": \"1164 Notre Dame Dr, Petersburg, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ee87a0756d789d13\",\n            \"jobName\": \"Customer Service Coordinator\",\n            \"companyName\": \"Queen Of The Thrones™\",\n            \"rowSalary\": \"From $42,000 a year\",\n            \"date\": 1694314849796,\n            \"dateOfPosted\": 1693446671951,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4438974,\n                    \"lon\": -80.6390153\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kitchener\",\n                \"formattedAddress\": \"Notre Dame Dr, Wilmot, ON N0B, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kitchener\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"If this is you, please apply, and feel good about joining a fast growing natural health **COVER LETTER + RESUME REQUIRED**Are you passionate about health and wellness?If you are a dedicated, organized, energetic and joyful person who is looking for a full-time role as Customer Service Coordinator in CPG company in the Natural Health and Wellness industry, then Queen of the Thrones® would love to connect with you.You love the challenge of your company and its amazing products expanding internationally and doing good for all those that invest in themselves. You love the multifaceted nature of our business that includes growing not only a CPG brand, but also Property Management and a Not for Profit Charity Division dedicated to perform research in natural wellness to ultimately serve and grow both people and preserve the planet.If this is you, please apply, and feel good about joining a fast growing natural health products company that makes it easy for people around the world to live the natural way.This is a high-speed, flexible, & exciting job opportunity with wonderful colleagues that are a dream team to work with.Your role is mainly acted on remotely, from the comfort of your home or your favourite working space. You will be required to attend some in-person trainings/meetings in the Kitchener/Waterloo area , and travel internationally for key events with shareholders.You are right for this position because of…A Degree or Diploma in Communications/natural health and wellness or other experienceA personal passion for health, nutrition & natural medicine.You serve selflessly, helping the customer in every way possible, to have an excellent experience with us.You lead and guide your colleagues towards success, always working within the spirit of cooperation and not competition, Yes & thinking, acting as a person of increase and because of that you meet all of your “DONELINES\\\"You have solid attuned business experience You LOVE and thrive in a fast paced environment and find challenges the spice of life having with an excellent ability to make probiotic kombucha lemonade out of rotting lemons.You speak another language preferably Spanish or Portuguese, french, fluently**COVER LETTER + RESUME REQUIRED**THE ROLEAnswering customer service questions online, through email and over the phonesFind creative solutions to improve service to our customersTrack common customer service feedback, and report to other departments to help support improvement of products and customer journeyInnovate ways to rate your ability to provide next level, and extra mile supportOther Administrative tasks as neededUpselling and Cross Selling to best service client needsExceptional understanding of the customer service and sales processesWorking cooperatively with other team membersREQUIREMENTS**COVER LETTER + RESUME REQUIRED**Must be highly proficient in the English languageNice to have Proficiency in other language ( Spanish, French, Portuguese)Must be open to spirituality and growth trainingStrong financial and bookkeeping assistant skills with a friendly, enthusiastic and positive attitude in assisting all shareholdersBe a Person of IncreaseBe a YES AND personA background as a nutritionist, naturopathic doctor, or have alternative formal training in natural health/nutrition, or a personal interest is an assetAbility to adapt and solve problems independently with strong attention to detailExcellent communication and critical thinking skillsMust be flexible, some weeks require more hours, some less, with a few hours on the weekends**COVER LETTER + RESUME REQUIRED**THE COMPANYQueen of the Thrones® is a fast-growing international natural products company and online business located in the Kitchener/Waterloo area. Our mission is to became a Unicorn company in under 10 years, so we can help millions of people around the world to feel better the natural way.Our e-commerce company started a mere 4 years ago but is blooming with growth! Founded by renowned naturopathic doctor, Marisol Teijeiro, the company’s roots date back to 10 years ago, when Marisol barely out of naturopathic Medical School, took a messy, DIY health treatment & invented the only heatless, less-mess, reusable castor oil pack (a natural health practice that improves digestion & other foundational health functions).Our company primarily sells castor oil kits and other self-care products and informational training. Our next phase of growth into done for you services, Not For Profit Research, Property Management of health retreats, ownership of supply chain and apps.HOW TO APPLYDo you think you have what it takes to excel in this exciting role? If so, we invite you to submit your resume to the email provided. We thank all that apply, however, only those selected for an interview will be contacted.Job Type: Full-timeSalary: From $42,000.00 per yearBenefits:Extended health careStore discountFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Bonus payEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: Hybrid remote in Petersburg, ON N0B 1M0\",\n            \"location\": \"Notre Dame Dr, Petersburg, ON\"\n        },\n        {\n            \"id\": \"8CBE80997EA71FF1C5868FCB3868BE38\",\n            \"cityName\": \"9045 Chemin de la Côte-de-Liesse, Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f2f8af1a842a1c22\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Scanwell Logistics (Montreal) Inc.\",\n            \"rowSalary\": \"$650–$700 a week\",\n            \"date\": 1694314817939,\n            \"dateOfPosted\": 1662693617286,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4623591,\n                    \"lon\": -73.72318779999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Chem. de la Côte-de-Liesse, Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 650.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    650.0\n                ],\n                \"range\": {\n                    \"gte\": 650.0,\n                    \"gt\": null,\n                    \"lte\": 650.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Cargo Logistics Co-ordinatorWe are seeking a Customer Service Representative to join our team! You will be responsible for helping customers by providing service information and resolving technical issues.Responsibilities:Handle customer inquiries and complaintsData entryProvide information about the products and servicesTroubleshoot and resolve product issues and concernsDocument and update customer records based on interactionsDevelop and maintain a knowledge base of the evolving products and servicesQualifications:Previous experience in customer service, sales, or other related fieldsAbility to build rapport with clientsAbility to prioritize and multitaskPositive and professional demeanorExcellent written and verbal communication skillsJob Type: Full-timeSalary: $650.00-$700.00 per weekSchedule:8 hour shiftCOVID-19 considerations:All employees here are fully vaccinatedEducation:Secondary School (required)Experience:customer service: 2 years (required)Language:English (preferred)French (preferred)\",\n            \"location\": \"Chemin de la Côte-de-Liesse, Dorval, QC\"\n        },\n        {\n            \"id\": \"DD743C032BACBB4249C62DAD3D0C7A82\",\n            \"cityName\": \"8528 Glenlyon Pky, Burnaby, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a0372c8b2c26cafd\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Key Food Equipment Services\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694314749787,\n            \"dateOfPosted\": 1693455772585,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2016496,\n                    \"lon\": -123.009984\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burnaby\",\n                \"formattedAddress\": \"Glenlyon Pkwy, Burnaby, BC V5J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Glenlyon Pky, Burnaby, BC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Key Equipment ServicesCustomer Service RepresentativeWho we are:Key Equipment Services, a division of Heritage Food Service Group of Canada, is the largest service provider for the food service industry in western Canada. We have 40 years of history, and our licensed, factory-trained technicians minimize downtime and prioritize urgent service. In addition, we have an extensive support team to drive service excellence and we maintain a sizable inventory of OEM parts. We are the industry leader in Canada, and we care beyond service!A Day in the life:As a CSR at you are the first point of contact for the customer, so your main priority is to welcome them, hear their concerns, and leave them with the confidence that they have been listened to and that they will be looked after. The day goes by quickly in this fast-paced environment. There's always something to learn and this keeps the job fresh and challenging!What you will bring:2-3 years previous office experience and customer service experience preferredSuperior communication skills when dealing with challenging service callsExcellent computer skills; savvy with new ERP programs and MS Office (Excel)Typing speed of 50-60 wpmExcellent attention to detail; accurate and efficient with data entryNeed strong memory retention - we service over 300 manufacturers and 1000's of customersGeographically savvy; has better than basic understanding of western provincesWhy work for us?Industry-leading compensationComprehensive group benefits and retirement savings programExtended health, dental, STD and LTDTraining and Development OpportunitiesIndustry leaders in CanadaYou will be part of a growing, stable organization, that is the industry leader in CanadaBe part of a fun and collaborative team dedicated to the success of our businessInput and ideas are always accepted. Your opinion matters here!We are an equal opportunity employer that supports diversity and inclusion in the workplace. We put safety first, and deliver service excellence with integrity, from a team-driven, collaborative mindset. We support community, both internally and externally. Come join us and be part of a Canadian industry leader in commercial kitchen equipment service.Due to the high volume of interest, we regret that we are unable to respond to all applications. To be considered, candidates must be able to live and work in Canada.Qualified candidates are invited to apply online at:https://keyfood.prevueaps.com/jobs/.Job Type: Full-timeSalary: $19.00-$22.00 per hourFlexible Language Requirement:French not requiredSchedule:Monday to FridayOn callWork Location: In person\",\n            \"location\": \"Glenlyon Pky, Burnaby, BC\"\n        },\n        {\n            \"id\": \"3F5AFF8ABF1509BAEF8B0936EBD3E35D\",\n            \"cityName\": \"Hamilton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f12c7aa020d84369\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Thos. R. Birnie & Sons\",\n            \"rowSalary\": \"$18–$21 an hour\",\n            \"date\": 1694314709820,\n            \"dateOfPosted\": 1692302691853,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2557206,\n                    \"lon\": -79.8711024\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Hamilton\",\n                \"formattedAddress\": \"Hamilton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Hamilton Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Hamilton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Opportunity We have a an opening for a full-time Customer Service Representative in our call center. In this position you are a key member of our team, acting as the first point of contact for our company. You are responsible for providing the highest level of customer service to our customers. Key job tasks include: Receive incoming calls in a professional and courteous mannerConvert calls into booked service appointmentsMake outbound calls, following up on recent service visitsPrioritize and coordinate the scheduling of servicesMaintain and update our customer database with accurate information Other administrative duties as assigned Job Type: Full Time Job Location: Our Customer Service Representatives are are expected to report in person to our office location for each scheduled shift. Benefits & Perks:Supportive and friendly office team environment.Competitive wages.Health benefits.RRSP plan with company match.Culture building events. Training and resources to help you learn and grow What We Need From You:Minimum two years of customer service experience.Experience in a call center environment is preferred.Open availability.You are a great communicator and are able to connect and build positive relationships with customers and your team.You are detail-oriented with the ability to multitask.You demonstrate a positive attitude and are willing to learn and grow.You are customer service focused.About Us Thos. R. Birnie & Sons is an original family owned company that has been providing service to the Hamilton and Golden Horseshoe communities for 100 years. We specialize in residential plumbing and drain services. Our team is dedicated to enhancing the lives of the people we meet daily, and we have been for generations! Check us out by visiting our website: www.birnie.pro  Equal Opportunity Employer \",\n            \"location\": \"Hamilton, ON\"\n        },\n        {\n            \"id\": \"49EA8817567D092E563C3FC2B3ECC4BC\",\n            \"cityName\": \"Winnipeg, MB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e6cda464c6a8b9a7\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Humphry Inn & Suites\",\n            \"rowSalary\": \"$14.15 an hour\",\n            \"date\": 1694314346887,\n            \"dateOfPosted\": 1693456056974,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.895136,\n                    \"lon\": -97.13837439999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Winnipeg, MB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: No degree, certificate or diplomaExperience: Experience an assetTasks Answer inquiries and provide information to customers Arrange for billing for services Arrange for refunds and credits Explain the type and cost of services offered Maintain records and statistics Receive and log complaints Receive payments Sell merchandise Financial benefits BonusWork Term: PermanentWork Language: EnglishHours: 30 to 40 hours per week\",\n            \"location\": \"Winnipeg, MB\"\n        },\n        {\n            \"id\": \"A5FE2F5928D92491D411F0E5C9FD6A14\",\n            \"cityName\": \"Cerco Cable Inc. in Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=42e73ec7b4cf9574\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Cerco Cable Inc.\",\n            \"rowSalary\": \"$45,000–$50,000 a year\",\n            \"date\": 1694313672908,\n            \"dateOfPosted\": 1694215273927,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Role DescriptionThis is a full-time on-site role for a Customer Service Representative located in Mississauga, ON.Support the sales team in the preparation of project bids.Support the sales team via Microsoft Office & SharePoint software.Support the sales team related to the IT requests/issues.Support the sales team with the daily order entries.Follow-up of orders for customers with the procurement team.Prepare samples and marketing documents for meetings with clients.Gather the credit references and proper documentation from clients/others so our accounting department may open a line of credit in a timely manner.nd concerns in a timely manner- Maintain accurate and detailed records of customer interactions and transactions- Collaborate with other team members to ensure customer satisfactionSkills:- Excellent verbal and written communication skills- Strong problem-solving abilities- Ability to multitask and prioritize tasks effectively- Proficient in using computer systems and software applications- Ability to work well in a team environmentThis position requires a high level of professionalism, attention to detail, and the ability to handle challenging situations with patience and empathy. Successful candidates will have a strong customer service background and the ability to adapt to changing customer needs.Job Types: Full-time, PermanentSalary: $45,000.00-$50,000.00 per yearBenefits:Dental careLife insuranceOn-site parkingPaid time offSchedule:Monday to FridayAbility to commute/relocate:Mississauga, ON L4W 3Y5: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"DB0D56A3AD01BFD8399E6BEDB6701747\",\n            \"cityName\": \"Sherwood Park, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fd654960140ea81e\",\n            \"jobName\": \"Cashier, Customer Service\",\n            \"companyName\": \"Petro Canada A&W\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694313334168,\n            \"dateOfPosted\": 1686142682670,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5411916,\n                    \"lon\": -113.2957355\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sherwood Park\",\n                \"formattedAddress\": \"Sherwood Park, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sherwood Park\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 7 months to less than 1 yearWork setting Restaurant Retail business Tasks Operate cash register Process money, cheques and credit/debit card payments Scan items Tabulate total payment for goods or services required Receive payment for goods or services Calculate daily/shift payments received and reconcile with total sales Stock shelves and clean counter area Greet customers Provide customer service Assist customers with self-checkout Verify the age of customers when selling lottery tickets, alcohol or tobacco products Screening questions Are you available for shift or on-call work? Long term benefits Other benefits Other benefits Free parking availableWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Sherwood Park, AB\"\n        },\n        {\n            \"id\": \"588917970F3B1FC7A759C6727EB1E455\",\n            \"cityName\": \"6228 Rue St Jacques, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=26678c6139f1aefc\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"The Ups Store #345\",\n            \"rowSalary\": \"From $14.25 an hour\",\n            \"date\": 1694313298374,\n            \"dateOfPosted\": 1669496574521,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.474932,\n                    \"lon\": -73.5954731\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Rue Saint-Jacques, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Bonne disponibilité variante pendant la semaine entre 9h et 18h30. Et disponibilité fiable pour les Samedis entre 10h et 15h Requise. La période de formation commencera avec des quarts flexibles pendant la semaine, durant une période de 3 - 4 semaines.Bilinguisme: Bonne communication Eng/Fr orale & écriteTÂCHES, EXIGENCES ET RESPONSABILITÉSConseiller les clients (par téléphone, email, et en personne) et savoir identifier leurs besoins. Aptitude pour la communication et la résolution de problèmes.Apprendre les processus d’expédition à l’international; Rechercher et fournir les différents tarifs et d'autres options des services à la satisfaction du client.Remplir les labels d’expéditions avec precision; gérer les pick-ups et receptions de colis avec attention; emballage de colis etc..Job Types: Part-time, PermanentSalary: From $14.25 per hourSchedule:8 hour shiftMonday to FridayWeekend availabilitySupplemental pay types:Bonus payCommission payEducation:Secondary School (preferred)Language:French (required)English (required)\",\n            \"location\": \"Rue St Jacques, Montréal, QC\"\n        },\n        {\n            \"id\": \"442F55CEDC3E7DFCD5E70D4CD3380049\",\n            \"cityName\": \"15440 Bayview Avenue, Aurora, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=82343b2330efdff5\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Nj Staffing Agency Inc\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694313112755,\n            \"dateOfPosted\": 1664978000569,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.99592029999999,\n                    \"lon\": -79.44169579999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Aurora\",\n                \"formattedAddress\": \"Bayview Ave, Aurora, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Aurora\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a Customer Service Representative with a strong background in Food industry and written communication skills. Our ideal candidate is an individual who enjoys working in a fast-paced work environment. The Customer Service Representative will be required to follow company policiesLocation: NICK FAMOUS SHAWARMAS located at 15440 Bayview Ave, Aurora, ON L4G 7J1RESPONSIBILITYwelcoming customers,taking beverage and food orders,conducting satisfaction checks,placing orders using the POS, and collecting payments for meals.Servers should be knowledgeable about menu items and be able to answer questions about ingredients and dietary restrictions. Will be trainedGreet and speak with customers.Answer questions about products, processes, or services.Briefly explain things to customers.Resolve customer billing issues.Handle customer complaints.FriendlyOrganizedWorks well under pressureGreat multitasker1 Year experience in restaurant industry(Fast food , Shawarma)Ability to commute/relocate:Job Types: Full-time, Part-time, PermanentSalary: $17.00-$18.00 per hourSchedule:10 hour shift4 hour shift8 hour shiftSupplemental pay types:Bonus payOvertime payTips\",\n            \"location\": \"Bayview Avenue, Aurora, ON\"\n        },\n        {\n            \"id\": \"0FA857B336C119DE00AE92638E363427\",\n            \"cityName\": \"Pearls Furniture and Mattresses in Langley, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3446a170465c459c\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Pearls Furniture And Mattresses\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694312769087,\n            \"dateOfPosted\": 1673959002653,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1041779,\n                    \"lon\": -122.6603519\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Langley City\",\n                \"formattedAddress\": \"Langley City, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Langley City\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for Customer Service Associates for our Langley store.Qualifications*At least 1 year of retail experience;Effective communication skills;Proficiency in English;Proven salesmanship and positive leadership;Proven strong collaboration spirit, enthusiasm, teamwork, and interest in interior design;Available from Monday to Sunday days and evenings.Job Types: Full-time, Part-time, PermanentSalary: $16.00-$20.00 per hourBenefits:On-site parkingStore discountSchedule:8 hour shiftSupplemental pay types:Overtime payWork Location: In person\",\n            \"location\": \"Langley, BC\"\n        },\n        {\n            \"id\": \"35C2B82FD78B2DB1901DDB867BC288F1\",\n            \"cityName\": \"4045 Main Street, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f3e5b5b89e291fdd\",\n            \"jobName\": \"Life Insurance Customer Service Representative\",\n            \"companyName\": \"Tony Lau Insurance Agencies Ltd\",\n            \"rowSalary\": \"$40,000–$50,000 a year\",\n            \"date\": 1694312454173,\n            \"dateOfPosted\": 1693456293550,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2457108,\n                    \"lon\": -123.101237\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Main St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Life Insurance Customer Service Representative is required to be trained in general insurance. Eligible candidate must hold a life insurance license and be computer literate. Mandarin and Cantonese speaking mandatory. We offer:1. Competitive salary and benefits2. Commission3. E & O and License fees4. Quality Life insurance leads from our branches5. Autoplan and General Insurance training6. Excellent prospects for advancementPlease note that this is a salaried position. The employee will work INSIDE an office serving walk-in Autoplan, General Insurance and Life Insurance clients.For the profile of our agencies established in 1981, please visit our website at www.tonylauinsurance.com.Please send resume in confidence to: tlau@tonylauinsurance.comAnnual salary: $40,000-$50,000 plus life insurance commissions and benefitsJob Types: Full-time, PermanentSalary: $40,000.00-$50,000.00 per yearBenefits:Dental careExtended health careSchedule:8 hour shiftSupplemental pay types:Commission payLanguage:Both Mandarin and Cantonese (required)Licence/Certification:Life insurance license (required)Work Location: In personExpected start date: 2023-09-01\",\n            \"location\": \"Main St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"65D3F4681310AAC96093A1C097C06613\",\n            \"cityName\": \"Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c078534eade91e6d\",\n            \"jobName\": \"Ice Cream Scooper/Customer Service - Casual (VictOria Or LangfOrd)\",\n            \"companyName\": \"Parachute Ice Cream\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694312434431,\n            \"dateOfPosted\": 1692349675914,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4284207,\n                    \"lon\": -123.3656444\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Busy local ice cream shop is looking for a positive, reliable, professional team member to work Casually at our Bridge and/orLangford location this Spring/Summer. Pay starts at $17/hr and includes approx $4-6/hr in Tip as well as Vacation pay and potential health benefits (full time staff).This position would be casual to start, but could lead to Seasonal/Permanent Part/Full time for the right candidate. We are prioritizing individuals with more availability. If you are great with customers, love light kitchen duties like making waffle cones, baking pies, and love eating ice cream, we would love to hear from you!Please include your availability, if you are seeking casual, seasonal or permanent employment, and your ideal number of working days per week.We get many applicants so if you want to stand out you're welcome to message us something about yourself. Some ideas are: who you are, what's important to you in a work place and why you think you would be a good fit.A little bit about us: We are a locally owned and operated artisan ice cream shop. We create ice cream for both retail and wholesale markets, both traditional, water buffalo milk, sorbet and vegan. We are positive and passionate about local food, and we love to put smiles on peoples faces! We offer higher than average wages and an equal share of the generous tip pool.The ideal candidate will have some or all of:The ability to work with a team or alonePositive attitudeWillingness to work weekdays and weekendsWilling to work in a fast paced environmentWe offer a full benefits package (health, dental, disability, other) to full-time employees who are committed to working with us long-term.We can’t wait to hear from you!Job Types: Part-time, Permanent, Casual, SeasonalPart-time hours: 8-40 per weekSalary: From $17.00 per hourBenefits:Casual dressDental careDisability insuranceDiscounted or free foodExtended health careFlexible scheduleLife insuranceOn-site parkingPaid time offStore discountVision careSchedule:4 hour shift8 hour shiftDay shiftMonday to FridayWeekends as neededSupplemental pay types:Overtime payTipsApplication question(s):Are you currently living in BC?Are you looking to work at our Victoria or Langford location. Or both?What is your availability?Are you looking for Permanent or Seasonal?Are you looking for Full, Part time or Casual?Work Location: In personExpected start date: 2023-08-14\",\n            \"location\": \"Victoria, BC\"\n        },\n        {\n            \"id\": \"3A44D3372A9A6806C5709C065254115D\",\n            \"cityName\": \"626 Victoria St, Strathroy, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3dc1b42b146d609e\",\n            \"jobName\": \"Cashier/Customer Service Representative\",\n            \"companyName\": \"Mobil Gas Station\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694312399539,\n            \"dateOfPosted\": 1670145906424,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9586997,\n                    \"lon\": -81.63092189999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Strathroy\",\n                \"formattedAddress\": \"Victoria St, Strathroy, ON N7G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Strathroy\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Seeking a reliable and trust worthy individual. Must be comfortable working alone and at night.Job duties would include; general cleaning, closing (or opening) of the store, stocking shelves as needed, customer service, as well as tending to lottery and gas sales. Reliability for shifts is a must as we have a small group of employees.Seeking someone with experience in the following:Customer serviceCashierCigarette sales (or a knowledge of brands and types)Lottery experiencePrevious experience working in a gas station— Part time, 3-4 shifts to start (available for either Saturday or Sunday shifts) 6-8 hour shifts— Primarily afternoon shifts (closing)— Must be available to work some weekendsJob Type: Part-timeSalary: $15.50 per hourShift:Evening shiftCOVID-19 considerations:All customers and employees are required to wear a mask. The employees must sanitize the POS and disinfect the pumps, door handles, pinpads, etc.Experience:Retail sales: 1 year (preferred)Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Victoria St, Strathroy, ON\"\n        },\n        {\n            \"id\": \"1752EFB1C67AE3C4C912969BBEB94CCF\",\n            \"cityName\": \"282 W 49th Ave, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e622441d734d1b6b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Ybc\",\n            \"rowSalary\": \"$17.25 an hour\",\n            \"date\": 1694312185673,\n            \"dateOfPosted\": 1693455764619,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2674848,\n                    \"lon\": -123.1094236\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W 4th Ave, Vancouver, BC V5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"W th Ave, Vancouver, BC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position Title: Customer Service Representative Location: YMCA Contact Centre (282 W 49th Ave, Vancouver, BC V5Y 2Z5 or 955 Burrard St, Vancouver, BC V6Z 1Y2) Terms: Permanent, Part-Time (8-24 hours/week) Shifts: Thursday-Saturday or Sunday 8:00am-6:00 pm Start Date: As soon as possible Salary: 0-500 hours $17.25 per hour 501-1000 hours $17.77 per hour 1001 – 1500 hours $18.30 per hour 1500 + hours $18.85 per hour Reports To: Manager, Client Services Benefits: Free YMCA Staff Membership Casual dress code Flexible Scheduling Training and Professional Development Opportunities Be part of a charitable organization that positively impacts the community Nature & Scope: The Client Services Representative works collaboratively with YMCA staff and volunteers to provide exceptional service to YMCA members, guests, and staff. The primary focus is on the client experience, resolving any client issues and promoting membership sales and services. Who we are? We’re a small group of dedicated individuals who love working with our Members and our Community. We are compassionate, innovative, accountable and strive to contribute to the success of the team and the YMCA as a whole. Who you are? You are detail-oriented, conscientious and eager to learn. You take pride in your work and are passionate about helping others. You enjoy working as part of Team and look for opportunities to affect change. A Day at the Contact Centre: We are not your typical Contact Centre. We provide a casual, relaxed atmosphere where you are encouraged to contribute ideas and provide solutions. Your daily assignments include responding to members via emails and inbound and outbound phone calls, working on reports and other administrative tasks. You are encouraged to provide feedback and suggestions to make our Team and Department better. As your knowledge grows, you will assist with training new staff/volunteers in procedures and practices. Requirements: Computer proficiency, including Microsoft Office and CRM systems experience Excellent communication and interpersonal skills with customer service orientation Exceptional customer service skills and a great attitude towards helping others Successful candidates will be required to provide a current and satisfactory Criminal Reference Check/Vulnerable Sector Search issued no later than six (6) months preceding your start date 3 professional references YMCA BC is committed to creating an inclusive, accessible environment where all members of our community feel valued, respected, and supported. We encourage applications from the diverse communities in which we live and serve, including but not limited to people of colour, Indigenous people, persons with disabilities, and persons of any sexual orientation or gender identity. We have established policies, procedures, and practices to meet accessibility standards throughout the hiring process. Should you require any accommodation throughout the recruitment process, please do not hesitate to contact our Human Resources department. Application Deadline: Ongoing Thank you for your interest and application. Due to the high volume of applications received, only short-listed candidates will be contacted.\",\n            \"location\": \"W th Ave, Vancouver, BC\"\n        },\n        {\n            \"id\": \"BD3A8B275556246F94115F81FCAD3F87\",\n            \"cityName\": \"Vernon, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fb437fb3925f0190\",\n            \"jobName\": \"Call Center Representative\",\n            \"companyName\": \"Fox Plumbing Heating Cooling Electrical\",\n            \"rowSalary\": \"$20 an hour\",\n            \"date\": 1694312133632,\n            \"dateOfPosted\": 1693455840827,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.2670137,\n                    \"lon\": -119.2720107\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vernon\",\n                \"formattedAddress\": \"Vernon, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"North Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vernon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Call Center Representative in Vernon, BC at FOX Plumbing Heating Cooling Electrical WHO YOU ARE You're not just a Call Center Representative – you're the voice of exceptional service and customer satisfaction. Your passion for building genuine rapport, coupled with your effective communication skills, make you a valued team member. Whether addressing inquiries or resolving issues, your authenticity shines through, creating memorable interactions. At FOX, we're excited to have you join us as a pivotal part of our customer-centric team. A DAY IN THE LIFEConvert incoming customer calls into meaningful service appointments, delivering an authentic and personable experienceEngage customers with call scripts that resonate and leave a positive impressionRespond promptly to customer requests, efficiently resolving concerns and promoting the FOX brandCultivate professionalism and rapport, fostering repeat business and creating strong customer relationshipsParticipate in training to optimize booking calls and enhance outbound calling skillsAdhere to the company's customer complaint resolution plan, ensuring swift and favorable outcomesMaintain an updated customer database with accurate information for streamlined service delivery WHAT YOU BRINGA track record of delivering exceptional customer service and fostering positive interactionsIT proficiency, strong typing skills, and familiarity with phone systemsStrong organizational skills with an unwavering commitment to task follow-throughExcellent verbal and written communication abilitiesA knack for building trust, demonstrating empathy, and creating lasting customer relationshipsAdaptability to a fast-paced, goal-oriented environment, contributing both individually and as a team playerMotivation, flexibility, and a positive outlook that resonates with your team and customers WHAT'S IN IT FOR YOUCompetitive Compensation and Bonuses: Rewarding your dedication and hard work with competitive wages and performance bonuses.Comprehensive Health Benefits: Access robust health, dental, and vision benefits to ensure the well-being of both you and your family.Work-Life Balance: Enjoy a set schedule with no evenings, weekends, or holidays required, allowing you to cherish time with loved ones.Birthday \\\"PAID\\\" Holiday: Celebrate your special day with a paid holiday, showcasing our commitment to your well-being.Dynamic Work Environment: Thrive in a fast-paced setting, surrounded by a supportive family atmosphere.Daily Support and Training: Receive ongoing coaching and training to enhance your skills and foster your professional growth.Family-Centered Culture: Engage in fun, company-wide events that foster camaraderie and a strong sense of community.Full-Time Employment: Benefit from full-time work, providing stability and consistency.Work/Life Balance: Embrace a healthy balance between your work responsibilities and quality time with friends and family.Peak Time Flexibility: Alternate shift options during peak periods, ensuring adaptability while maintaining overall work-life harmony. ABOUT US FOX Plumbing Heating Cooling Electrical is more than a company – it's a community dedicated to growth and excellence. With a legacy spanning over two decades, we're a trusted name in the Vernon home service industry. Our team is committed to exceeding expectations, delivering 5-star service, and creating an environment where you can thrive. As a Call Centre Representative at FOX, you're joining a community that values your contributions and invests in your success. Your commitment to exceptional service aligns perfectly with our mission to raise the bar in customer experiences. Join us for a journey of learning, achievement, and industry excellence. At FOX, you're not just an employee – you're part of a family that is dedicated to your success and prioritizes your growth. Apply now and let's talk!\",\n            \"location\": \"Vernon, BC\"\n        },\n        {\n            \"id\": \"B9B80089D87CE0CECE014ECA5FFA535E\",\n            \"cityName\": \"Terrace, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6c113b2ccd01304d\",\n            \"jobName\": \"Call Center Rep\",\n            \"companyName\": \"Grand Techx Group\",\n            \"rowSalary\": \"$73,763–$84,107 a year\",\n            \"date\": 1694311247070,\n            \"dateOfPosted\": 1693452705586,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.5181925,\n                    \"lon\": -128.6031539\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Terrace\",\n                \"formattedAddress\": \"Terrace, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Kitimat-Stikine\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Terrace\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 73763.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    73763.0\n                ],\n                \"range\": {\n                    \"gte\": 73763.0,\n                    \"gt\": null,\n                    \"lte\": 73763.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Thank you for taking a moment to look into our Call Center Program. This is a unique opportunity to join an exceptional team and gain hands-on experience at a high-growth company. This program gives you the chance to learn the steps and systems to efficiently run, market and ultimately grow a business. The primary function of the call center rep is to provide a wide range of strategic, organizational and administrative support to our most premier clientele and business partners. You'll engage with customer through a digital communication center where you can schedule zoom meetings, line up phone calls and streamline email conversations.Requirements:An upbeat, positive attitudeWillingness to go that extra mile for your team and our customersMath/Accounting skills are a plus!Must have experience with Microsoft/ExcelPrior customer service/sales experience is a plusEssential Functions:Book zoom meetings and educate/troubleshoot questions with clienteleWork cooperatively between customers, service providers and other departmentsCommunicate with customers and vendors in a clear, effective, and professional mannerReceive customer inquiries, issues, or challenges and follow-through to resolutionBasic filing and data entryHere’s why you should apply:Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingWe promote from within and are proud to be a company that embraces diversity and inclusion. Please apply with a current resume and be on the lookout for a message from one of our area managers.Job Types: Full-time, CasualSalary: $73,763.00-$84,107.00 per yearBenefits:Casual dressCompany eventsCompany pensionDental careDisability insuranceDiscounted or free foodEmployee assistance programExtended health careFlexible scheduleOn-site gymOn-site parkingPaid time offProfit sharingRRSP matchStore discountVision careWellness programSchedule:Day shiftMonday to FridayMorning shiftNight shiftSupplemental pay types:Bonus payOvertime payRetention bonusSigning bonusTipsWork Location: In person\",\n            \"location\": \"Terrace, BC\"\n        },\n        {\n            \"id\": \"2126479F8A9C6AFBCEE838DE18F2866F\",\n            \"cityName\": \"240 Richmond Street West, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4a6e4b868ca43bb7\",\n            \"jobName\": \"Customer Service Representative (Csr)\",\n            \"companyName\": \"Harwood Sales Group\",\n            \"rowSalary\": \"$20–$22 an hour\",\n            \"date\": 1694310984683,\n            \"dateOfPosted\": 1693447771440,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6478501,\n                    \"lon\": -79.3958828\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Richmond St W, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond St W, Toronto, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a sales and marketing company based out of Toronto Ontario, looking for motivated and passionate Customer Service Representatives that want to make a difference! Looking for full time schedules, Monday to Friday. Please review the following info for more details!Customer Service Representative Job Responsibilities:Serves customers by providing product and service information and resolving product and service problems.Attracts potential customers by answering product and service questions and suggesting information about other products and services.Maintains financial accounts by processing customer adjustments.Recommends potential products or services to management by collecting customer information and analyzing customer needs.Prepares product or service reports by collecting and analyzing customer information.Contributes to team effort by accomplishing related results as needed.Customer Service Representative Qualifications / Skills:Customer serviceProduct knowledgeMarket knowledgeQuality focusProblem solvingDocumentation skillsPhone skillsListeningJob Type: Full-timeSalary: $20.00-$22.00 per hourBenefits:Flexible scheduleOn-site gymOn-site parkingPaid time offFlexible Language Requirement:French not requiredSchedule:Monday to FridaySupplemental pay types:Overtime payAbility to commute/relocate:Toronto, ON M5V 1V6: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Richmond St W, Toronto, ON\"\n        },\n        {\n            \"id\": \"F144EFC4C49ADD2017CA02E48A63E288\",\n            \"cityName\": \"6260 Thorold Stone Rd, Niagara Falls, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=297001d35fa3bde4\",\n            \"jobName\": \"Customer Service And Sales Associate\",\n            \"companyName\": \"Party Connection\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694310972836,\n            \"dateOfPosted\": 1689720287733,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.11450360000001,\n                    \"lon\": -79.12803939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara Falls\",\n                \"formattedAddress\": \"Thorold Stone Rd, Niagara Falls, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Niagara Falls\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for a sales associate to join our Event Team - friendly and eager to learn. We sell party supplies, helium balloons, party & event decor and party rentals including tents. We pride ourselves in our customer service over the past 38 years in Niagara Falls. You will help our customers who are planning life's special moments. Using your product knowledge, you will showcase our products and services. You will also be required to take phone orders, complete sales, price and put out merchandise, inflate balloons and assist in creating balloon sculptures. A familiarity with computers is helpful in cashing out sales and printing & processing online orders. We have flexible work hours from Monday to Saturday. We are closed on Sundays. If you enjoy a fast paced environment and interacting with people, consider \\\"partying\\\" for a living.Job Types: Full-time, Part-time, PermanentPart-time hours: 20-40 per weekSalary: From $15.50 per hourShift:8 hour shiftCOVID-19 considerations:You are free to wear a mask if you are more comfortable with this protection. Otherwise, we follow covid protocols that are mandated. Ability to commute/relocate:Niagara Falls, ON L2J 1A7: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Thorold Stone Rd, Niagara Falls, ON\"\n        },\n        {\n            \"id\": \"12ABF5BECEDD20DDD3C4F857F768732E\",\n            \"cityName\": \"16610 59a Street NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b7e3f35478e4807a\",\n            \"jobName\": \"Sales Associate/Customer Service\",\n            \"companyName\": \"Circle K\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694310785676,\n            \"dateOfPosted\": 1693449898274,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5225151,\n                    \"lon\": -113.6241906\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"8882 170 St NW, Edmonton, AB T5T 4J2, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"West Edmonton Mall, AB\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative Operate cash registerProvide advice about merchandiseConduct sales transactions through Internet-based electronic commerceGreet customers and discuss type, quality and quantity of merchandise or services sought for purchase, rental or leaseMaintain sales records for inventory controlAssist in display of merchandiseWork Conditions and Physical CapabilitiesFast-paced environmentRepetitive tasksHandling heavy loadsStanding for extended periodsBending, crouching, kneelingWork RemotelyNoJob Types: Full-time, Part-timePart-time hours: 25-30 per weekSalary: $16.00 per hourBenefits:On-site parkingStore discountDay range:Monday to FridayWeekends as neededShift:4 hour shift8 hour shiftDay shiftEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"West Edmonton Mall, AB\"\n        },\n        {\n            \"id\": \"E994D081C4462C68A813D5FB13FCDE29\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b17bcfdedd3afc21\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"Fast Drywall Ltd\",\n            \"rowSalary\": \"$34 an hour\",\n            \"date\": 1694310695349,\n            \"dateOfPosted\": 1688987824361,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 34.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    34.0\n                ],\n                \"range\": {\n                    \"gte\": 34.0,\n                    \"gt\": null,\n                    \"lte\": 34.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 2 years to less than 3 yearsWork site environment Outdoors Noisy Work setting Construction Inspection Willing to relocate Installation Commercial Industrial Institutional Maintenance Residential Repair Tasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Oversee apprenticeship training Recruit and hire workers and carry out related staffing actions Train or arrange for training Estimate costs and materials Ensure health and safety regulations are followed Read blueprints and drawings Requisition or order materials, equipment and supplies Supervision 5-10 people Drywall installers and finishers Apprentices Trades helpers Labourers Transportation/travel information Own vehicle Work conditions and physical capabilities Work under pressure Overtime required Own tools/equipment Steel-toed safety boots Hard hat Safety glasses/goggles Personal suitability Excellent oral communication Organized Reliability Team playerWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"4368AE13D8E8419BCD40641029300BBB\",\n            \"cityName\": \"Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f0b3a74df01fe55e\",\n            \"jobName\": \"Central Dispatcher/Customer Service Kelowna\",\n            \"companyName\": \"Mario's Towing Ltd\",\n            \"rowSalary\": \"$20–$25 an hour\",\n            \"date\": 1694310575988,\n            \"dateOfPosted\": 1694310575738,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8879519,\n                    \"lon\": -119.4960106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Kelowna, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Salary: $20-$25.00 per hour DOE  Central Dispatch Person required Responsibilities: Answering phones, emails Working directly with customers to book tows Working directly with drivers in all locations, giving call information and clearing Maintaining Customer Service with Team Members and Customer's Requirements: Vehicle knowledge an asset. Must have computer skills Able to work under busy conditions Have excellent communication skills dealing with customers, drivers, co-workers, team members and management. Able to work without supervision. Able to work within a team environment Strong Multitasker and Positive Attitude Strong Organizing Skill Criminal Record Check required yearly Extended Health Benefits after 3 months. Job Types: Full-time Job Duties: Answer incoming customer inquiries Offer support and solutions to customers in accordance with the company's customer service policies Job Type: Full-time Wage: $20-$25.00 per hour Benefits: Casual dress Dental care Extended health care Paid time off RRSP match Vision care Schedule: 8 hour shift Day shift Afternoon shift Holidays Weekend availability Experience: Language: English (Required)\",\n            \"location\": \"Kelowna, BC\"\n        },\n        {\n            \"id\": \"656017B782F5CFA53C9D2DA82B8A7C62\",\n            \"cityName\": \"Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=23df94e904bdc54f\",\n            \"jobName\": \"Call Center Representative\",\n            \"companyName\": \"Jetfx Solutions\",\n            \"rowSalary\": \"$53,244–$74,016 a year\",\n            \"date\": 1694310274013,\n            \"dateOfPosted\": 1692552366145,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8879519,\n                    \"lon\": -119.4960106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Kelowna, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 53244.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    53244.0\n                ],\n                \"range\": {\n                    \"gte\": 53244.0,\n                    \"gt\": null,\n                    \"lte\": 53244.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"If you're looking to join a company that has won back-to-back awards for their company culture and workplace vibe, look no further! We’re making a massive expansion throughout the state and giving a handful of candidates the chance to launch the career of a lifetime.I'm sure you have some questions. No worries! Upon being chosen to move forward in the hiring process, you'll receive a full company overview to make sure you have everything you need to know about this opportunity. With our whole company now working remote, a call center job has never been more convenient or more lucrative!Why work here?Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingRequirements:An upbeat, positive attitudeWillingness to go that extra mile for your team and our customersMath/Accounting skills are a plus!Must have experience with Microsoft/ExcelPrior customer service/sales experience is a plusEssential Functions:Book zoom meetings and educate/troubleshoot questions with clienteleWork cooperatively between customers, service providers and other departmentsCommunicate with customers and vendors in a clear, effective, and professional mannerReceive customer inquiries, issues, or challenges and follow-through to resolutionBasic filing and data entryWe are an Equal Opportunity Employer. We promote from within and are proud to be a company that embraces diversity and inclusion. Our approach to training and ongoing mentorship is what has led us to be ranked as a top workplace, top office culture, and put on the Forbes list as one of the happiest companies to work for. Please apply with a recent resume and lookout for email correspondence from our area managers.Job Types: Full-time, Permanent, CasualSalary: $53,244.00-$74,016.00 per yearBenefits:Casual dressCompany eventsCompany pensionDental careDisability insuranceDiscounted or free foodEmployee assistance programExtended health careLife insuranceOn-site gymOn-site parkingPaid time offProfit sharingStore discountTuition reimbursementVision careWellness programSchedule:Evening shiftMonday to FridayMorning shiftSupplemental pay types:Bonus payCommission payOvertime payRetention bonusSigning bonusTipsWork Location: In person\",\n            \"location\": \"Kelowna, BC\"\n        },\n        {\n            \"id\": \"0E4C52552A58E36A14577585DED8F8B9\",\n            \"cityName\": \"145 Idema Rd, Markham, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a25cebcd9f06985d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Ventmere\",\n            \"rowSalary\": \"$15.50–$18.00 an hour\",\n            \"date\": 1694310257543,\n            \"dateOfPosted\": 1693448391805,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8162561,\n                    \"lon\": -79.3510552\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Markham\",\n                \"formattedAddress\": \"Idema Rd, Markham, ON L3R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Idema Road, Markham, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job descriptionCOMPANYVentmere is a fast-growing start-up specializing in online marketing and ecommerce. We make use of the latest web-based technologies and platforms to boost online sales. Ventmere offers a vast catalog of products across all major online marketplaces on the planet.DUTIES AND RESPONSIBILITIESSolve customer inquiry tickets on ZendeskAnswer emails, phone calls and chat inquiriesProvide product troubleshooting and recommendations in audio, tools, small appliances, etcMake decisions on returns, refunds and warranty claimsIdentify potential product flaws and raise them to manufacturersIdentify opportunities to improve the efficiency of customer servicesCOMPETENCIES AND QUALIFICATIONSGreat personality and communication skillsExcellent professional phone and email etiquetteFluent in English, verbally and writtenCustomer service experience preferredAble to learn and understand product functionalities and troubleshootingBilingual in French, Spanish, German or Chinese is a great assetJob Types: Full-time, PermanentSalary: $15.50-$18.00 per hourBenefits:Dental careDiscounted or free foodExtended health careOn-site parkingVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Overtime payWork Location: In person\",\n            \"location\": \"Idema Road, Markham, ON\"\n        },\n        {\n            \"id\": \"189A382D6381FDB0AAAAD0A94E1E1CFE\",\n            \"cityName\": \"30 Capilano Way, New Westminster, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d55b8d4709320842\",\n            \"jobName\": \"Junk Removal - General Labourer / Driver/ Customer Service\",\n            \"companyName\": \"First Choice Junk Removal\",\n            \"rowSalary\": \"$19–$25 an hour\",\n            \"date\": 1694310232842,\n            \"dateOfPosted\": 1663260714526,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2248876,\n                    \"lon\": -122.8845709\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"New Westminster\",\n                \"formattedAddress\": \"Capilano Way, New Westminster, BC V3L, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"New Westminster\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"APPLY TODAY & START AS SOON AS NEXT WEEK!First Choice Junk Removal is growing and looking for positive, physically fit people to join our Truck Teams.Every day is a new adventure when it comes to the removal industry. We work together as a team, keeping a positive mental attitude. We create the atmosphere needed to have fun while working. This environment allows us to service the customer, give them a great experience; therefore, we are the first and only choice they consider using junk removal services. You'll get to travel around the nicest areas of the Greater Vancouver Area while taking away customer’s unwanted items. Variety is the spice of life!Truck Team Member – General Labour / Customer Service / DriverFull-Time & Part-TimeAt First Choice Junk Removal, we take measures to ensure our team members have access to the recommended health and safety precautions to provide this essential service. Our Safety Focus Areas are healthy teams, physical distance, safety equipment and training, and refusal of service.Compensation:Truck Team Member - General Labour / Customer Service / DriverHiring Immediately for Full-Time and Part-TimePay: Starting Base Pay $16.5 for Navigators Average pay is between $19-$25/hr all-in (inclusive of hourly pay, bonuses, and tips- paid every paycheck)We offer performance-based and promotion-based pay raises as you stay and grow on the team.Schedules that work:We offer full-time or part-time hours (as long as you can work at least 2-days per week).We can accommodate students looking for weekend workShort term work; summers/waiting for work to start up againAbout you:Valid driver’s license (no special license required to drive our trucks)A positive, friendly attitudePhysically capable of lifting 50lbs+ repeatedlyGood verbal and written communication skillsPrevious general labor or customer service experience a plus!https://www.icbc.com/driver-licensing/getting-licensed/Pages/Your-driving-record.aspxJob Types: Full-time, Part-timeSalary: $19.00-$25.00 per hourFlexible Language Requirement:French not requiredSchedule:10 hour shift8 hour shiftDay shiftOvertimeWeekend availabilitySupplemental pay types:Bonus payOvertime payTips\",\n            \"location\": \"Capilano Way, New Westminster, BC\"\n        },\n        {\n            \"id\": \"050A6594B3019C9A4ED6DC90CD31372E\",\n            \"cityName\": \"1415 Alberni Highway, Parksville, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4a9f65f27a74d2b8\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Mid Island Liquor\",\n            \"rowSalary\": \"From $17.75 an hour\",\n            \"date\": 1694310157345,\n            \"dateOfPosted\": 1694310157157,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.3045941,\n                    \"lon\": -124.3349719\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Parksville\",\n                \"formattedAddress\": \"Alberni Hwy, Parksville, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Nanaimo\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Parksville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mid Island Liquor is looking for part-time Customer Service Representatives at our Parksville Liquor Store.Are you committed, outgoing, reliable and love being in service for our community? Do you strive to create exceptional customer experiences in the retail industry? This may be the job for you!Things you’ll do:Represent Mid Island Co-op by being an ambassador and demonstrating our values of Community, Respect, Integrity, and Teamwork.Assist management in the operations of the store, including but not limited to handling customer transactions, responding to customer questions and concerns in a professional manner, creating displays and stocking shelves, and ensuring store and merchandise are neat and organized.Maintain a safe, efficient, and positive work environment while adhering to company policies, procedures, and standards.Apply to become a Customer Service Representative today if you're a team player with strong communication skills, and you can lift, push, and pull up to 50 lbs. Previous retail experience is preferred, and you must have a valid Serving it Right Certificate (or be willing to get certified prior to your first day).Who we are:Mid Island Co-op is a different kind of business. If you’re a member, you’re an owner. We support and invest in our community because we live here too. With gas bars and liquor stores located throughout Central and Northern Vancouver Island, we pride ourselves on providing quality services and products to our customers. At Co-op, we embrace diversity and inclusion, and we’re working to create a workplace that is as diverse as the communities we serve.Please note that all positions require a criminal background check, and our safety-sensitive positions will require pre-employment alcohol and substance testing (paid for by Mid Island Co-op).We thank all candidates for their interest; however, only those selected to continue in the recruitment process will be contacted.Job Types: Permanent, Part-timeSalary: From $17.75 per hourBenefits:Employee assistance programFlexible scheduleOn-site parkingStore discountSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayWeekends as neededWork Location: In person\",\n            \"location\": \"Alberni Highway, Parksville, BC\"\n        },\n        {\n            \"id\": \"FBF86AB346423BFA3FC5CFECDF5130D1\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c5dbca2a9db438db\",\n            \"jobName\": \"Customer Service Representative Supervisor\",\n            \"companyName\": \"Rcspl Canada Inc.\",\n            \"rowSalary\": \"$28.50 an hour\",\n            \"date\": 1694310147275,\n            \"dateOfPosted\": 1686806332848,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 29.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    29.0\n                ],\n                \"range\": {\n                    \"gte\": 29.0,\n                    \"gt\": null,\n                    \"lte\": 29.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsHealth benefits Dental plan Health care planWork Term: PermanentWork Language: EnglishHours: 32 hours per week\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"250381D77C03D83BF9178B44D9924EA6\",\n            \"cityName\": \"The Village Store in Athens, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=36a48b206da5a2cf\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"The Village Store\",\n            \"rowSalary\": \"From $32,000 a year\",\n            \"date\": 1694309925017,\n            \"dateOfPosted\": 1689525193992,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6265326,\n                    \"lon\": -75.95113839999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Athens\",\n                \"formattedAddress\": \"Athens, ON K0E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Leeds and Grenville United Counties\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Athens\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 32000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    32000.0\n                ],\n                \"range\": {\n                    \"gte\": 32000.0,\n                    \"gt\": null,\n                    \"lte\": 32000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Village Store is a family-owned and operated grocery business. We're committed to providing a truly exceptional grocery experience, where customers get exceptional value, great service, and great selection.Greet customers and offer exceptional customer service.Scan, process and bag customer orders accurately and with careHandle cash and EFT transactions accuratelyProvide customers with information on our unique items, sales items and up-sellingShare customer feedback with managementMaintain a clean and safe workplace, adhering to sanitation policiesAdditional duties as requiredJob RequirementsPrevious experience working as a Cashier or Service in a grocery store is preferredPassionate about customer service; approachable and enjoys helping customersHealth and safety orientated adhering to food, safety and sanitation standardsExcellent manual dexterity; comfortable standing, bending, walking and light lifting for long periods of timeOpen availability; must be flexible to work all shifts including days, evenings and weekends.Job Types: Full-time, Part-timePart-time hours: 35 per weekSalary: From $32,000.00 per yearDay range:HolidaysMonday to FridayWeekends as neededShift:8 hour shiftDay shiftNight shiftCOVID-19 considerations:Public health guidelines are followed as requiredExperience:sales: 1 year (preferred)customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Athens, ON\"\n        },\n        {\n            \"id\": \"4F0C5CA328926069FA1AF6BB211BACEC\",\n            \"cityName\": \"6941 Steeles Ave W, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a2107e33268b2f5b\",\n            \"jobName\": \"Customer Service Representative With Sales Experience\",\n            \"companyName\": \"Melodia Homecare\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694309872378,\n            \"dateOfPosted\": 1669046159272,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7737989,\n                    \"lon\": -79.5298064\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Steeles Ave W, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Looking for Customer Service Agent that has at least one year of sales experience.Job Type: Full-timeSalary: From $16.00 per hourSchedule:8 hour shiftDay shiftMonday to FridayWeekend availabilitySupplemental pay types:Commission payAbility to commute/relocate:NOBLETON, ON: reliably commute or plan to relocate before starting work (required)Education:DCS / DEC (preferred)Experience:Customer service: 1 year (preferred)Work Location: Hybrid remote in Toronto, ON\",\n            \"location\": \"Steeles Avenue West, Toronto, ON\"\n        },\n        {\n            \"id\": \"4A946BEF71CA22CEBE4D003F0A40D870\",\n            \"cityName\": \"110-6711 MacLeod Trail SW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ec2c4d32f4c76208\",\n            \"jobName\": \"Customer Service Representative (Part Time)\",\n            \"companyName\": \"Homes Alive Pets\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694309686341,\n            \"dateOfPosted\": 1694309686151,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.9702696,\n                    \"lon\": -114.0714787\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Macleod Trail SW, Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Why Homes Alive Pets? This isn't your average pet store. You'll feel it when you walk through our door. It's more than beautifully-designed locations and friendly staff – it's a belief in a higher standard for pet care. Our stores are community hubs – somewhere to come and share an experience with your pet. You'll immediately notice a refreshing shopping experience at Homes Alive because we take a brand-agnostic, knowledge-over-upselling approach. Rather than pushing a certain product or feeling pressured to meet sales quotas, our team's attention is solely focused on getting to know you and your pet and empowering you to make confident decisions. Our Mission is to add value to every life. When we say every life, we include guests and their pets. Employees and co-workers. Brand reps and vendors. Even our communities. There is life all around us, and it is our mission to add value qualitatively and quantitatively. In the qualitative sense, it is our mission to elevate every life as important and worthwhile. In the quantitative sense, and in the context of our business, it is also our mission to add value, discounts, and a fair balance of price and quality for our guests. This is how we will make a positive impact in our communities and world. Job Title Customer Service Representative Direct Report Store Manager Department Store Operations Location 110-6711 Macleod Trail SW Calgary AB, T2H 2T3 Summary Customer Service Representatives are the first point of contact for customers and strive to ensure that each customer has a positive shopping experience. Responsibilities of Customer Service Representatives include operating cash registers and handling money, providing customers with information about products offered in the store, and maintaining a clean and organized work environment. The ideal Customer Service Representative has excellent communication and people skills, experience in customer service or a willingness to learn, and a passion for pets. Core Competencies A Positive and Hardworking Attitude. A willingness to go the extra mile to provide customers with the best possible shopping experience. Strong Communication Skills. Ability to clearly communicate with customers and other staff. Resilience. Ability to remain calm and navigate through high stress situations Behaviour & Skills Customer Service Excellent time management & attention to detail Excellent teamwork & collaborative abilities Confident & articulate communication Trustworthy & positive attitude Understanding of pet nutrition & needs Ability to lift 50lbs Job Responsibilities Customer Service Representatives are responsible for these 5 areas of store functions in order of Priority with objectives: Customer Service To serve and learn the immediate needs of customers and offering honest and sincere advice, as well as welcoming them to the culture of the Homes Alive community. Operate cash registers and accurately handle cash. Store Appearance Maintain stock on the shelves, product detail communication for your specific section (ie. Price tags, sales signs, etc.), clean and face products and shelves to provide the highest quality of solo shopping experience for the customer. Employee Service Self-initiate service to co-workers and leaders to assist with any projects or tasks to develop a culture and community of servantship and improve the quality of life of those around you. System Maintenance Complete routine tasks specified in checklists & delegated by leaders and follow proper system procedures for efficiency, effective communication, and accuracy of inventory. Self-Development Take initiative in any possible opportunities to learn and develop skills or knowledge in any area within Homes Alive to develop yourself to become a servant leader (a leader that goes the extra mile to serve others). A Day in the Life of a Customer Service Representative Each day as a Customer Service Representative will be dynamic and unique. A typical day will involve you helping customers find the supplies they need for their pets, providing them with information about pet care and nutrition, and assisting them at the cash register. You will also work to make sure your store looks clean and presentable and that inventory on the shelves is full and well organized. As customers often bring their pets into the store, you will also get plenty of opportunity to interact with dogs and cats (and even hand out treats!) Schedule Part-time Guest Service Representatives work up to 30 hrs./week, at the discretion of the Store Manager. Shifts may be morning, afternoon, or evening, Monday to Sunday. Compensation $16.00/hr.\",\n            \"location\": \"S Macleod Trl, Calgary, AB\"\n        },\n        {\n            \"id\": \"9B605CB0A49EA295187BB1EEAE820E5B\",\n            \"cityName\": \"Dollard-Des Ormeaux, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=22279517b8debb0f\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Starbucks Des Sources\",\n            \"rowSalary\": \"From $14.90 an hour\",\n            \"date\": 1694309679236,\n            \"dateOfPosted\": 1648560395532,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4895636,\n                    \"lon\": -73.8205567\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dollard-Des Ormeaux\",\n                \"formattedAddress\": \"Dollard-Des Ormeaux, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dollard-Des Ormeaux\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Great work environment with a friendly staff!Barista tasks include:- Preparing beverages- Creating best moments with customers- Drive thru fun- Basic cleaning tasksOperating hoursMonday - Friday: 5:30-22:30Saturday- Sunday: 6:30-22:30Job Types: Full-time, Part-timePart-time hours: 20 per weekSalary: From $14.90 per hourBenefits:Dental careExtended health carePaid time offRRSP matchVision careSchedule:8 hour shiftDay shiftSupplemental pay types:Bonus payOvertime payTipsAbility to commute/relocate:Dollard-Des Ormeaux, QC H9B 1Z9: reliably commute or plan to relocate before starting work (required)\",\n            \"location\": \"Dollard-Des Ormeaux, QC\"\n        },\n        {\n            \"id\": \"9D84C3265DF973D5C959FF78FBCB00F6\",\n            \"cityName\": \"6016 Yonge Street, North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cfc069e3d4e3d2a2\",\n            \"jobName\": \"Bi-Lingual Customer Service Representative (Korean And English)\",\n            \"companyName\": \"Hans Lee Insurance Agency\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694309489414,\n            \"dateOfPosted\": 1666209012530,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7542766,\n                    \"lon\": -79.40866609999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Yonge St, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Insurance office is looking for a candidate to fill a part time position. Candidate must be fluent in English and Korean.Candidate will be responsible for assisting clients with their insurance matters. No prior experience required, however previous office experience will be an asset.Candidate must have excellent computer and phone skills.All training will be provided on the job.Job Type: Part-timeSalary: From $16.00 per hourSchedule:Day shiftMonday to FridayNo weekendsLanguage:Korean (required)\",\n            \"location\": \"Yonge Street, North York, ON\"\n        },\n        {\n            \"id\": \"8C722000192FFE2A38D326E2856A3AD3\",\n            \"cityName\": \"6720 Highway 35, Coboconk, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b18a66516e6c6ed3\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Shell Gas Station Coboconk\",\n            \"rowSalary\": \"$15–$16 an hour\",\n            \"date\": 1694309250136,\n            \"dateOfPosted\": 1656196808824,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.66080950000001,\n                    \"lon\": -78.80183939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kawartha Lakes\",\n                \"formattedAddress\": \"Coboconk, Kawartha Lakes, ON K0M, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Kawartha Lakes\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kawartha Lakes\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job DescriptionCome and join a winning team with strong family values that has exciting expansion plans. Our company has a great culture where we put the customer at the heart of everything we do!Our Values - Honour: Respect: Honesty: Integrity: Ethics Is this something that you would like to be part of?We are currently hiring at our Shell Gas Station and Convenience Store located in Coboconk.Full time or Part time hours available.What are we looking for?You will have:A positive attitude to working with a team outstanding customer service skills.Your own transportation and be flexible when it comes to working within a business that operates from 5am to 10pm all year round (Holiday hours apply at Christmas time)No Experience necessary. Training will be provided.We offer:Competitive salary ratesSafe environments to workCareer opportunities with a growing businessNew Uniform including safety PPEFull & Part Time Positions availableGreat working culture!Please send us your resume... we'd love to hear from you!'Don't delay...apply today'Job Types: Full-time, Part-timeSalary: $14.00 to $16.00 /hourJob Types: Full-time, Part-timeSalary: $14.00 to $16.00 /hourPart-time hours: 17-35 per weekJob Types: Full-time, Part-time, PermanentSalary: $14.00-$16.00 per hourCOVID-19 considerations:All current COVID-19 Protocols in force at this time.Job Types: Permanent, Part-time, Full-timePart-time hours: 20 - 40 per weekSalary: $15.00-$16.00 per hourSchedule:8 hour shiftAbility to commute/relocate:Coboconk, ON K0M 1K0: reliably commute or plan to relocate before starting work (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)\",\n            \"location\": \"Coboconk, ON\"\n        },\n        {\n            \"id\": \"29DA9BE3375CE282DB170C675BA8E75E\",\n            \"cityName\": \"Dorval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b686e53ce34f1c75\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Alarme Sentinelle / Sentinel Alarm\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694308920898,\n            \"dateOfPosted\": 1693447816110,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4503213,\n                    \"lon\": -73.7500486\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dorval\",\n                \"formattedAddress\": \"Dorval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dorval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Established in 1978, Alarme Sentinelle is a privately held full-service security company with a ULC listed and Five Diamond monitoring station providing customized solutions to customer in the greater Montreal region. With over 100 years of combined experience amongst our bilingual staff we are able to maintain high value service to our customers.We are looking for a new detail-oriented member to join our team to take the reigns as Customer Service and Sales Support. You will be reporting directly to the former support specialist, who will be moving to another position, and will work closely with the sales department, the installation/service departments and central station manager.If you cannot speak both English andFrench, please do not applyThe following list is not exhaustive, other duties may be assigned by managementResponsibilities· Verify all documents are collected and open customer files accordingly· Prepare contracts and send online using Adobe Sign· Process client inquires over the phone, through email, online chat· Upsell through cancellations and customer feedback· Follow up on potential cancellation and forward to sales team for retention· Process cancellations· Manage social media and website· Perform any other tasks that may be assigned to you from time to timeRequirements· Oral and written fluency in French and English· Ability to provide outstanding customer service· Knowledge of Microsoft Office products· Knowledge of social media platforms· Industry experience is an asset· Confidence to upsell new services to clients· Resourceful with a self-starter attitude· Ability to work under pressure and meet time sensitive deadlines· Ability to work in a teamJob Type: Full-timeSalary: From $18.00 per hourBenefits:Casual dressDental careDisability insuranceExtended health careLife insuranceOn-site parkingVision careSchedule:8 hour shiftNo weekendsSupplemental pay types:Signing bonusAbility to commute/relocate:Dorval, QC: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Language:English (required)French (required)Work Location: In person\",\n            \"location\": \"Dorval, QC\"\n        },\n        {\n            \"id\": \"87E6B0815F4B196804AEEDE7CFDC2308\",\n            \"cityName\": \"26 Thomas Raddall Dr Suite 182, Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5df08e041e300fbe\",\n            \"jobName\": \"Customer Service Coordinator (Two Positions)\",\n            \"companyName\": \"Canada Games Centre\",\n            \"rowSalary\": \"$42,000–$58,000 a year\",\n            \"date\": 1694308840782,\n            \"dateOfPosted\": 1693447678579,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.65802,\n                    \"lon\": -63.66342119999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax\",\n                \"formattedAddress\": \"Thomas Raddall Dr, Halifax, NS B3S, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Thomas Raddall Dr, Halifax, NS\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 42000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    42000.0\n                ],\n                \"range\": {\n                    \"gte\": 42000.0,\n                    \"gt\": null,\n                    \"lte\": 42000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Canada Games Centre (CGC) is a vibrant multi-sport community and recreation centre in Halifax, Nova Scotia. We are a 176,000 sqft facility operated by a non-profit society committed to promoting physical literacy, fitness and wellness, and to supporting the needs of high performance sport & athlete development. The Centre runs sport and recreation programs, camps, fitness classes and so much more in an inclusive environment. Located in Mi’kma’ki, the ancestral and traditional lands of the Mi’kmaq people, the CGC acknowledges the Peace & Friendship Treaties signed in this Territory and recognizes that we are all Treaty People. Together, we inspire healthy active living. Position Summary We are looking for two (2) enthusiastic, recreation/sports-minded, positive individuals to provide leadership in delivering exceptional customer service and support to our members and guests. This position is responsible to work alongside another Customer Service Coordinator for the overall day-to-day supervision and training of the Canada Games Centre Customer Service and Membership teams. Strong communication skills and relationship building are key to success in this role. The Coordinator will work within our Service Operations department to ensure members and guests have a quality experience in our Centre. This position will report directly to the Manager, Service Operations and will aid in providing support and leadership to a staff team consisting of Customer Service staff, Membership Assistants, Gate Monitors, and Child Minding staff. In addition to a commitment to exceptional customer service and a positive customer experience, the Customer Service Coordinator must be highly organized, sales focused, manage time effectively, and complete correspondence with members and users in a timely, efficient, and professional manner. This is a client facing role where professionalism and building rapport are the keys to success. ResponsibilitiesHours will consist of flexible daytime, evening, and weekend hoursOrganize and administer customer service protocols and proceduresEnsure staff scheduling for appropriate coverage and keep within budgetary allowancesIdentify training needs and build/conduct training as necessary for staff regarding memberships, service delivery, paperwork completion, and other relevant topicsAssist with member services including, but not limited to check-ins, membership sales, daily cash-outs, facility tours, paperwork, and end of shift reconciliationsAssist with member adherence to the User Code of Conduct for the facility and provide counselling for behaviour improvement and/or disciple when necessaryRespond to inquiries – on-site, emails, and phone calls/textsCommunicate policies, procedures, updates, and all other required information to guestsAssist in the growth and development of memberships for the facility including the corporate membership programAccept and process paymentsReceive and manage all customer complaints or concerns (either directly or through other departments, depending on the specific issue)Act as the lead point of contact for Customer Management Software (Legend) at Customer ServiceDay-to-day coaching, recruitment, hiring, training, and development of part-time and full-time Membership, Customer Service, Child Minding and Gate Monitor staffAdminister the organizations Performance Management system with all members of the Customer Service business unitResponsible for ensuring that staffing levels are appropriate for fluctuating business needsAssist in the planning and implementation of member appreciation events and marketing events to promote membership growthAssist in developing and expanding any procedural documents and training materials necessary for end-users and staffAssist in the organization’s member retention strategy, including working with the Marketing department on member communications, following up on cancellations,Maintaining inventory and ordering supplies for areaUnderstanding and coordination of all financial responsibilities associated with Customer Service, including but not limited to ensuring change/cash floats are monitored and replenished, investigating discrepancies in staff daily balance sheets and payrollLiaise with all Canada Games Centre departments to ensure key messages are received and communicated to the Customer Service teamServe as an after-hours point of contact for Customer Service staff and provide desk coverage when neededWork in conjunction with other Canada Games Centre staff to develop best practices to maximize use of the CentreCommunicate effectively and in a timely manner with public, user groups and staffProcess payments and perform invoicing where necessaryPrepare and submit payrollComplete additional projects and tasks as assigned by Manager, Service OperationsQualifications Education & ExperienceDegree in Business Administration, Recreation Management, or equivalent combination of relevant education and experienceTwo (2) years’ experience in supervisory role in similar environmentExperience in cash handling and revenue reportingExperience working with the public in a customer service focused role including in conflict situationsExperience and comfort using computers and various software programsExperience processing financial transactionsExperience in staff training and coaching for successUnderstand and appreciate the important role that sport, and recreation plays in healthy communitiesStrong interpersonal and communication skillsStrong listening skillsDetail and solution orientedGood decision-making skillsExperience dealing with various publics (individuals, families, corporate, seniors, youth, etc.)Schedule flexibility required – weekdays and weekends + day and evening shiftsWorking ConditionsThis position requires full-time work, 35+ hours per week, with flexibility for working hours between 5:30am and 10:00pm, Monday through Sunday, mornings, evenings, and weekends. This includes the potential to be on call when required by facility operations and schedule demands and to serve as the Person on Duty (POD) on our duty schedule with other facility Coordinators/Supervisors/Assistants.Working conditions in general, subject to seasonal programs, evening meetings, budgetary planning exercises or individual projects or events. May require evening hours for internal meetings or other community meetingsThis position may include heavy lifting of supplies and equipment and may be exposed to loud noises and will require an individual to be able to concentrate in a busy environmentPsychological Demands: Potentially high stress environment due to multi-task requirement and customer expectationsNotesCriminal Record & Child Abuse Registry checks will be required as part of the hiring processWhat’s in it for you?Group benefits and RRSP planEducation allowanceFree facility membershipFree parking and close proximity to Halifax TransitAmazing team environmentOrganization committed to extraordinary staff and customer experienceCompensation Salary will be based on a range from $42,000–$58,000 commensurate with education and level of experience. Applications Instructions To apply, please submit a cover letter and resume, outlining how you meet the specific qualifications listed in the job posting to Wasan Nayfeh at careers@canadagamescentre.ca by Friday, September 29th, 2023. Please include your full name and the position you are applying for in the subject line. Failure to properly identify your application or attach working documents may result in your application being omitted. We are a welcoming and supportive environment whose goal is to be a diverse workplace representative of the citizens we serve. Indigenous people, persons with disabilities, African Nova Scotians, racially visible persons, women in occupations where they are under-represented, and the LGBTQIA2S+ community are encouraged to self-identify on your application.\",\n            \"location\": \"Thomas Raddall Dr, Halifax, NS\"\n        },\n        {\n            \"id\": \"5DC8C81E7E400E7F79067B10B8DD679B\",\n            \"cityName\": \"FAS GAS Plus South Avenue in Spruce Grove, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c0dea4fea545d00c\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Fas Gas Plus South Avenue\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694308534844,\n            \"dateOfPosted\": 1671090684452,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5411191,\n                    \"lon\": -113.9101291\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Spruce Grove\",\n                \"formattedAddress\": \"Spruce Grove, AB T7X, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Spruce Grove\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Company descriptionFAS GAS Plus South Avenue,REDDI MARTConvenience store + Gas stationJob descriptionJob requirements Languages English Education Secondary (high) school graduation certificate Experience 2 years to less than 3 years Specific Skills Sell merchandise; Prepare reports on sales volumes, merchandising and personnel matters; Authorize payments by cheque; Authorize return of merchandise; Assign sales workers to duties; Resolve problems that arise, such as customer complaints and supply shortages; Organize and maintain inventory Additional SkillsEstablish work schedules; Hire and train or arrange for training of staffWork Conditions and Physical CapabilitiesFast-paced environment; Attention to detailPersonal SuitabilityEffective interpersonal skills; Flexibility; Accurate; ReliabilityIndustry: RetailJob Types: Full-time, TemporarySalary: $15.00 per hourSchedule:EveningsWork Location: In person\",\n            \"location\": \"Spruce Grove, AB\"\n        },\n        {\n            \"id\": \"CDF169B8716E4DCB6A17B3007421715F\",\n            \"cityName\": \"Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=69cdb16d0708465d\",\n            \"jobName\": \"Call Center Agent\",\n            \"companyName\": \"Orange Dot Clean\",\n            \"rowSalary\": \"$19.80–$25.50 an hour\",\n            \"date\": 1694308530848,\n            \"dateOfPosted\": 1692606882001,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4215296,\n                    \"lon\": -75.69719309999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Responsibilities:Interact with all customers in a friendly and courteous mannerMust be able and willing to receive a high amount of inbound callsPerform a variety of tasks associated with customer and client servicesThorough documentation of all contacts within the customer management systemHandle interactions via phone, chat, or emailUnderstand and adhere to all rules of conductQualifications:High School Diploma or combination of education and experienceHigh-speed internet connection (if working remotely)Excellent verbal and written communication skillsBasic understanding of windows base systemsAbility to read, understand, and follow oral and written instructionsStrong attention to detailJob Types: Full-time, Part-timePart-time hours: 20 per weekSalary: $19.80-$25.50 per hourBenefits:Company pensionDental careLife insurancePaid time offSchedule:Monday to FridaySupplemental pay types:Commission payAbility to commute/relocate:Hamilton, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)\",\n            \"location\": \"Ottawa, ON\"\n        },\n        {\n            \"id\": \"129BE0B2EE65873E8EE2BD20CF3A88A7\",\n            \"cityName\": \"478 Woody Rd, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2abd8364feb03115\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"U-Haul\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694307457652,\n            \"dateOfPosted\": 1661368312355,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.467517,\n                    \"lon\": -79.6876659\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oakville, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"START TODAY, GET PAID TODAY! New hires eligible for BONUS!Are you a people person? Do you love helping others? U-Haul is in search of friendly, motivated people for the position of Customer Service Technician. As a Customer Service Technician, you will work as part of a supportive team to be the face of U-Haul’s exceptional service, ensuring customers get all the help they need on their journeys.U-Haul Offers Customer Service Representative:Paid holidays, vacation, and sick daysCareer stabilityOpportunities for advancementValuable on-the-job trainingComplete Benefit Plan if eligibleRRSP payroll deduction planDeferred profit-sharing plan if eligible.Discounts on Dell computers, hotels, and moreCustomer Service Representative Responsibilities:Assist customers inside and outside U-Haul Center with U-Haul products & servicesUse smartphone-based U-Scan technology to manage rentals and inventoryMove and hook up U-Haul trucks and trailersClean and inspect equipment on the lot including checking fluid levelsAnswer questions and educate customers regarding products and servicesPrepare rental invoices and accept equipment returned from rentalCustomer Service Representative Minimum Qualifications:Valid driver’s license and ability to maintain a good driving recordHigh School Diploma or equivalentWork Environment:The work involves moderate risks or discomforts which require special safety precautions, e.g., working around moving parts or machines, fumes, or irritant chemicals. May be required to use protective clothing, or gear such as masks, goggles, gloves or shields.Physical Demands:The work requires some physical exertion such as long periods of remaining stationary, moving around an office and occasionally outdoors, positioning oneself to reach objects at varying heights, and moving equipment weighing a minimum of 50 lbs. assisted or unassisted.U-Haul is an equal opportunity employer. All applications for employment will be considered without regard to race, color, religion, sex, national origin, physical or mental disability, veteran status, or any other basis protected by applicable federal, provincial, state, or local law. Individual accommodations are available on requests for applicants taking part in all aspects of the selection process. Information obtained during this process will only be shared on a need to know basis.Job Type: Part-timePart-time hours: 30 per weekSalary: $17.00-$18.00 per hourSchedule:8 hour shiftAbility to commute/relocate:Oakville, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)\",\n            \"location\": \"Oakville, ON\"\n        },\n        {\n            \"id\": \"73BC01456EEA301CD4AE1F728DE6D3F9\",\n            \"cityName\": \"High Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e12c0ead00297621\",\n            \"jobName\": \"Customer Service Associate - High Prairie\",\n            \"companyName\": \"Peavey Industries Lp\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694307296148,\n            \"dateOfPosted\": 1693450116049,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.43289910000001,\n                    \"lon\": -116.4886918\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"High Prairie\",\n                \"formattedAddress\": \"High Prairie, AB T0G 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 17\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"High Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate Type of Employment: Part time Location: High Prairie  With its Corporate office in Red Deer, Alberta and its Regional office in London Ontario, Peavey Industries LP is the corporate parent to retail brands Peavey Mart, MainStreet Hardware, and Ace Canada. We are 100% Canadian and employee owned.  Peavey is an engaging workplace. We are proud to promote from within and provide training to make this possible. We offer flextime and comprehensive benefits.  We are committed to our customers and the communities and agricultural regions we serve every day. Job Overview: The Customer Service Associate is a customer service specialist. Customer Service Associates are responsible for advising customers and processing customer purchases/returns. When not attending to a customer, the Customer Service Associate stocks shelves, assists in setting up displays, prices product, and maintains the cleanliness of the store. Ideal Candidate: The ideal candidate has experience working with the public and has excellent customer service skills.  Responsibilities Warmly approaching and greeting customers.Advising customers on products and suggesting solutions to their needs.Providing a high level of customer service.Encouraging further business by thanking customers and asking for them to come back.Help customers with concerns and put them in contact with a Supervisor as needed.Answering the telephone in a warm and friendly mannerLearn and maintain a product knowledge of store merchandiseHelping to set up displays as directed by store management teamProvide customer carry outs and load products for customers. Use Team Lift when needed.Weigh, measure, and cut merchandise to fill customer orders.Establishing/identifying prices for itemsKeying or scanning merchandise for customer purchaseTotal and receive payment for merchandiseIssue receipts, refunds, credits, or change due to customers per policyEnsuring proper return and refund policy is followed, including Management sign-offWrapping or bagging merchandise purchased by the customerCount money in cash drawers at the beginning of shifts to verify accuracyManager on duty verifies opening and closing cash countsStocking/Re-stocking merchandise as neededMaintaining cleanliness of the store and checkout areaMerchandising, pricing and tasking the point of purchase area when there are no customers in lineHelp with receiving on an as needed basisUse safe work procedures while setting a good example to fellow employeesCarry out work in a manner that will not create a hazard to themselves or othersWork with co-workers and members of the Safety Committee to help create a safe working environment by making safety suggestions and recommendationsReport any accidents, incidents, near misses, injuries, and/or occupational health concerns to a safety committee memberFollow Peavey Industries LP medical and first aid proceduresPositively communicate and demonstrate the company’s Core Values Qualifications On the job training or previous experience Employee Perks Employee DiscountInclusive work cultureLaid back atmosphereWork-life balanceOnly those selected for an interview will be contacted. Peavey Industries LP is committed to creating a diverse environment and is proud to be an equal opportunity employer. All qualified applicants will receive equal consideration for employment, and we welcome the unique contributions that you can bring in terms of education, culture, ethnicity, race, sex, gender identity and expression, nation of origin, age, languages spoken, veteran’s status, colour, religion, disability, sexual orientation and beliefs.\",\n            \"location\": \"High Prairie, AB\"\n        },\n        {\n            \"id\": \"2D1A7E544CD5169DBF61FA1DA9CB8F9B\",\n            \"cityName\": \"High Prairie, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3f23a16c1a9d827c\",\n            \"jobName\": \"Customer Service Associate - High Prairie\",\n            \"companyName\": \"Peavey Industries Lp\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694306872467,\n            \"dateOfPosted\": 1693450106216,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 55.43289910000001,\n                    \"lon\": -116.4886918\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"High Prairie\",\n                \"formattedAddress\": \"High Prairie, AB T0G 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 17\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"High Prairie\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate Type of Employment: Full time Location: High Prairie, AB  With its Corporate office in Red Deer, Alberta and its Regional office in London Ontario, Peavey Industries LP is the corporate parent to retail brands Peavey Mart, MainStreet Hardware, and Ace Canada. We are 100% Canadian and employee owned.  Peavey is an engaging workplace. We are proud to promote from within and provide training to make this possible. We offer flextime and comprehensive benefits.  We are committed to our customers and the communities and agricultural regions we serve every day. Job Overview: The Customer Service Associate is a customer service specialist. Customer Service Associates are responsible for advising customers and processing customer purchases/returns. When not attending to a customer, the Customer Service Associate stocks shelves, assists in setting up displays, prices product, and maintains the cleanliness of the store. Ideal Candidate: The ideal candidate has experience working with the public and has excellent customer service skills.  Responsibilities Warmly approaching and greeting customers.Advising customers on products and suggesting solutions to their needs.Providing a high level of customer service.Encouraging further business by thanking customers and asking for them to come back.Help customers with concerns and put them in contact with a Supervisor as needed.Answering the telephone in a warm and friendly mannerLearn and maintain a product knowledge of store merchandiseHelping to set up displays as directed by store management teamProvide customer carry outs and load products for customers. Use Team Lift when needed.Weigh, measure, and cut merchandise to fill customer orders.Establishing/identifying prices for itemsKeying or scanning merchandise for customer purchaseTotal and receive payment for merchandiseIssue receipts, refunds, credits, or change due to customers per policyEnsuring proper return and refund policy is followed, including Management sign-offWrapping or bagging merchandise purchased by the customerCount money in cash drawers at the beginning of shifts to verify accuracyManager on duty verifies opening and closing cash countsStocking/Re-stocking merchandise as neededMaintaining cleanliness of the store and checkout areaMerchandising, pricing and tasking the point of purchase area when there are no customers in lineHelp with receiving on an as needed basisUse safe work procedures while setting a good example to fellow employeesCarry out work in a manner that will not create a hazard to themselves or othersWork with co-workers and members of the Safety Committee to help create a safe working environment by making safety suggestions and recommendationsReport any accidents, incidents, near misses, injuries, and/or occupational health concerns to a safety committee memberFollow Peavey Industries LP medical and first aid proceduresPositively communicate and demonstrate the company’s Core Values Qualifications On the job training or previous experience Employee Perks (FT/Permanent) Employee Ownership ProgramEmployee DiscountRRSP Matching ProgramCompetitive Group BenefitsInclusive work cultureLaid back atmosphereWork-life balanceOnly those selected for an interview will be contacted. Peavey Industries LP is committed to creating a diverse environment and is proud to be an equal opportunity employer. All qualified applicants will receive equal consideration for employment, and we welcome the unique contributions that you can bring in terms of education, culture, ethnicity, race, sex, gender identity and expression, nation of origin, age, languages spoken, veteran’s status, colour, religion, disability, sexual orientation and beliefs.\",\n            \"location\": \"High Prairie, AB\"\n        },\n        {\n            \"id\": \"5107EE42F5A36DC1F1E088D05AC7F142\",\n            \"cityName\": \"15110 54a Ave, Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9b9679b94f0c2298\",\n            \"jobName\": \"Customer Service/Key Holder\",\n            \"companyName\": \"Elevation Fitness\",\n            \"rowSalary\": \"$17–$20 an hour\",\n            \"date\": 1694306733266,\n            \"dateOfPosted\": 1689721263149,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1901012,\n                    \"lon\": -122.8503845\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"13438 Central Ave, Surrey, BC V3T 0N2, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Elevation Fitness is looking to hire Customer Service Representatives to join our team!2 Postions: Full time morning 5 am to 1pm and 2nd position is evenings and weekends.Please indicate which position you are applying for.Duties:Service staff are responsible for front desk duties, giving tours, juice bar duties. and providing excellent customer service to members and guests of Elevation Fitness.Qualifications:The ideal candidate will have a background in customer service experience, have a passion for helping others and will be a great team member! Other qualities we are looking for in a candidate include: positive attitude, strong communication skills, self-motivation and dependability.We look forward to hearing from you!Job Type: Full-timeSalary: $17.00-$20.00 per hourSchedule:Evening shiftMorning shiftEducation:Secondary School (preferred)Experience:Microsoft Office: 1 year (preferred)Work Location: In person\",\n            \"location\": \"A  Ave, Surrey, BC\"\n        },\n        {\n            \"id\": \"0AE7E796D7C51764E698EAF49DE182C4\",\n            \"cityName\": \"Lethbridge, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4ff63f5c22735599\",\n            \"jobName\": \"Call Center Rep\",\n            \"companyName\": \"Two Links Solutions\",\n            \"rowSalary\": \"$63,548–$87,321 a year\",\n            \"date\": 1694306187466,\n            \"dateOfPosted\": 1692552257063,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.6955856,\n                    \"lon\": -112.8451364\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lethbridge\",\n                \"formattedAddress\": \"Lethbridge, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 2\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lethbridge\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 63548.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    63548.0\n                ],\n                \"range\": {\n                    \"gte\": 63548.0,\n                    \"gt\": null,\n                    \"lte\": 63548.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"What you get from us:Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeBonusesResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingPrimary Responsibilities:Trained in and proficient in responding to inquiries about varies programs and benefitsIdentify customer needs and expectationsResponsible for promptly and accurately addressing customer inquiriesServe as primary contact for inbound customer issues.Escalate more technical product-related issues to the proper support departmentUpdate customer information and ensure accurate entry of contact informationMaintain quality service by following established policies and proceduresEnsure proper security procedures are followed on all customer interactionsWe are an Equal Opportunity Employer and prohibit discrimination and harassment of ANY KIND: We are committed to the principle of equal employment opportunity for all employees and to providing employees with a work environment free of discrimination and harassment. We hope you take the time to apply today and may we have the chance to speak with each other in the near future.Job Type: Full-timeSalary: $63,548.40-$87,321.30 per yearBenefits:Casual dressCompany carCompany eventsCompany pensionDental careDisability insuranceDiscounted or free foodEmployee assistance programExtended health careFlexible scheduleOn-site gymOn-site parkingPaid time offProfit sharingRRSP matchStore discountTuition reimbursementVision careWellness programSchedule:8 hour shiftDay shiftMonday to FridayMorning shiftSupplemental pay types:Bonus payOvertime paySigning bonusWork Location: In person\",\n            \"location\": \"Lethbridge, AB\"\n        },\n        {\n            \"id\": \"387E750C23651D7E07A200F99652274D\",\n            \"cityName\": \"1782 Baron Rd, Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8924db79cf1d6cdd\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Platos Closet Kelowna\",\n            \"rowSalary\": \"$17.68–$18.20 an hour\",\n            \"date\": 1694305832112,\n            \"dateOfPosted\": 1691455552347,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.88296889999999,\n                    \"lon\": -119.4274829\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Baron Rd, Kelowna, BC V1X, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate / Buyer - Full-time or 3/4 timePlato’s Closet Kelowna is a locally-owned resale business that is all about being fashion savvy and shopping smart. We’re an unique gently used retail store specializing in buying and selling current fashions from petite to plus sizes for teens to young adults.POSITION DESCRIPTIONPresent a high level of customer service by ensuring customers are assisted in an enthusiastic, timely, and knowledgeable manner. Promote all aspects of the business including but not limited to buying, selling, pricing, and merchandising. Work with the team and store management in daily operations of the store.RESPONSIBILITIESGreet customers immediately, determine their needs and handle all transactions in a professional and enthusiastic mannerExhibit appropriate selling and buying procedures and effectively communicate to all customers our Buy Policy as well as our inventory needsBecome familiar with products, brands, and prices and make recommendations of products, including their features and benefits, to suit customers’ needsBecome certified in the buying processPrice and tag all items based on pricing and buying guidelines. Restock store following merchandising plan. Maintain store displays and follow store housekeeping and maintenance standards and proceduresDevelop proficiency in operating computerized Point of Sale (POS) system for all sales transactions, buys, returns, etc.Achieve store sales goals by applying sound customer service and sales protocolQUALIFICATIONSPlato’s Closet Kelowna is looking for high-energy customer service-oriented associates to join our team. We offer a fun, fast-paced family-oriented environment with lots of variety in the role. The right candidate will be available to work flexible hours and meet the following criteria:Proven customer service skillsRetail and Merchandising experience an assetKey Holder experience an assetFlexible availability for day, evening and weekend shiftsAbility to work independently as well as in a team and take direction from supervisorsExcellent communication and interpersonal skillsAbility to work at a fast pace with accuracy (multi-tasking is essential)Basic math skills essentialSales and goal drivenPHYSICAL REQUIREMENTSAbility to stand and walk for long periods of time, up to 8 hours a day.Lift up to 40 lbs. without assistanceBending, rotating, and reaching customary to a retail environment; including receiving, pricing, and stocking/back stocking merchandiseExposure to typical retail environment conditions and noise levelsCOMPENSATIONWage to be discussed, great employee discount and we promote from withinWe thank all applicants for their interest however only those candidates selected for an interview will be contacted. If you meet the above requirements and are interested in joining our team please apply today or stop by the store with your resume.Plato’s Closet Kelowna1782 Baron Rd., Kelowna, BC V1X 7G9Job Types: Full-time, PermanentSalary: $17.68-$18.20 per hourBenefits:Store discountDay range:Monday to FridayWeekends as neededShift:4 hour shift8 hour shiftDay shiftEvening shiftExperience:Fashion retail: 3 years (required)Key Holder: 2 years (preferred)customer service: 3 years (required)Work Location: In person\",\n            \"location\": \"Baron Road, Kelowna, BC\"\n        },\n        {\n            \"id\": \"DD2340282A31676AB1AD01B2A68AC5B2\",\n            \"cityName\": \"2633 Viking Way, Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5edc135b117e2808\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Motostarz\",\n            \"rowSalary\": \"$19.50 an hour\",\n            \"date\": 1694305480221,\n            \"dateOfPosted\": 1665776888686,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1904602,\n                    \"lon\": -123.0733212\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond\",\n                \"formattedAddress\": \"Viking Way, Richmond, BC V6V, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for motivated staff to assist customers with motorcycles parts and accessories inquiry. Also, this job is specifically geared towards someone that has a passion for motorcycles. Basic knowledge of motorcycles is a MUST.Some requirements:Assist customers in a friendly and professional manner.Maintain a clean and organized storefront.Receive and issue paymentsWebsiteResponding to emails and shipping orders. Training is provided on the job.No experience needed as long as you know a lot about motorcycles.We are considering Full-time applicants and will provide training for the right candidate.We are open 5 days a week, shifts are from 10-6 pmJob Type: Full-timeJob Types: Full-time, PermanentSalary: $19.50 per hourBenefits:Store discountSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsOvertimeEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)\",\n            \"location\": \"Viking Way, Richmond, BC\"\n        },\n        {\n            \"id\": \"FEE8C5C4A37C3DC191DABA96E001A6E4\",\n            \"cityName\": \"7013 Thunder Bay St, Powell River, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7d08e045cbc4eb08\",\n            \"jobName\": \"Cashier And Customer Service\",\n            \"companyName\": \"Pacific Point Market And Suites\",\n            \"rowSalary\": \"$16–$20 an hour\",\n            \"date\": 1694305453300,\n            \"dateOfPosted\": 1689526828042,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8037035,\n                    \"lon\": -124.5149188\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Powell River\",\n                \"formattedAddress\": \"Thunder Bay St, Powell River, BC V8A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"qathet Regional District\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Thunder Bay St, Powell River, BC Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Pacific Point MarketWage negotiable – part or full time permanentPacific Point Market and Suites has openings for Part or Full Time Permanent Employees. These roles are available in all areas of the Market.Job Duties and Responsibilities could includeCustomer Service, cash handling, health & safety, receiving and stocking shelves, deli prep, produce, receiving freight etc.Cash register operationProvide superior customer service to all customersEnsure a clean and sanitary environmentTo perform other duties and tasks assigned or required as consistent with the nature and scope of the positionSkills and Qualifications:Must be available to work during day and closing shifts.Previous retail or customer service experience in a grocery setting an assetLotto and/or food safe certification an assetWork well in a fast paced environmentSuperb customer service skills with a desire to provide a great shopping experience for every customerWillingness and availability to work a variety of shifts, including: Mornings, Afternoons, Evenings & WeekendsAbility to work in a safe and responsible mannerDemonstrated high level of communication, interpersonal & conflict resolution skillsProven track record as a self-starter; dedicated and reliablePhysical ability to stand, lift, and handle up to 50 pounds on a regular basisAbility to follow established company policiesExcellent command of the English language both verbal and writtenIf you feel you are the this person and want to join a great Team of people, please drop Resume off at Pacific Point Market and Suites or by emailJob Types: Full-time, Part-timePart-time hours: 24 - 40 per weekSalary: $16.00-$20.00 per hourDay range:HolidaysWeekend availabilityShift:Evening shiftAbility to commute/relocate:Powell River, BC V8A 1E3: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)customer service: 1 year (preferred)Shift availability:Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Thunder Bay St, Powell River, BC\"\n        },\n        {\n            \"id\": \"C57802ADCB4C062474EB12D0988A3AF1\",\n            \"cityName\": \"1402 Douglas St, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=017101dbd4fb32a2\",\n            \"jobName\": \"Cannabis Customer Service Associate (Budtender)\",\n            \"companyName\": \"The Original Farm Ltd.\",\n            \"rowSalary\": \"$19.07–$19.57 an hour\",\n            \"date\": 1694305443049,\n            \"dateOfPosted\": 1693447763075,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4295924,\n                    \"lon\": -123.3645015\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Victoria\",\n                \"formattedAddress\": \"Douglas St, Victoria, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Victoria\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Since 2015, FARM has been providing safe access to cannabis in a discreet and professional environment remaining client focused and service minded in a high volume retail setting. Budtenders at FARM interact with customers seeking information on the range of available cannabis products and are essential for the front of house (FOH) customer service team. Individuals in this position educate and train new hires ensuring that quality and efficiency standards are met for all customers.PRINCIPLE DUTIES/RESPONSIBILITIES:Ensuring quality assurance and excellent customer service;Maintaining knowledge of a wide range of products and accessories;Providing customer education on FARM’s range of products;Providing a smooth full-spectrum customer experience;Maintaining a pleasant and organized environment;Strict adherence to all policy and compliance, including The Original FARM’s internal policies, Provincial, and Federal; andOther duties as required.QUALIFICATIONS AND SKILLS:Strong customer service skillsWorking knowledge of POS systems, Word, and ExcelStrong communication skills, time management, and problem-solving skillsWorks well in high volume, high level of care, retail environmentAble to work as a member of a teamStrong cannabis knowledge and passion requiredBC Selling it Right CertificateTERMS OF EMPLOYMENT:Part-time ranging from 10 - 30 hours weeklyMust be willing to sign FARM’s terms of employment contractMust be able to work a variety of night/weekend shifts when requiredMust be willing to cover shifts in the event of sick days/ leaves of colleaguesReports to: Assistant Front of House Managers and Store ManagerDirect Reports: NoFARM adheres to BC Employment Standards law for hiring and terminationJob Type: Part-timePart-time hours: 10-30 per weekSalary: $19.07-$19.57 per hourBenefits:Dental careExtended health careLife insuranceOn-site parkingStore discountSchedule:8 hour shiftDay shiftEvening shiftSupplemental pay types:Overtime payTipsWork Location: In person\",\n            \"location\": \"Douglas St, Victoria, BC\"\n        },\n        {\n            \"id\": \"25C1A2895DEE9F66115F2F5348B0E8D8\",\n            \"cityName\": \"555 W 12th Av, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f64fabca286cdef0\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Vancouver Hot Yoga 101\",\n            \"rowSalary\": \"$15.65–$17.00 an hour\",\n            \"date\": 1694305426004,\n            \"dateOfPosted\": 1671486236843,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2674848,\n                    \"lon\": -123.1094236\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W 4th Ave, Vancouver, BC V5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Hot Yoga 101 | Inferno Hot Pilates Vancouver is seeking a part-time Front Desk Customer Experience and Sales Rep to join our team!We are looking for someone motivated, energetic and friendly to go above and beyond to enhance the customer experience. This is a customer service and sales oriented position. You must be confident in explaining and selling memberships to new and returning students. Previous sales experience is desirable, but we will train the right candidate.The Front Desk Customer Service Team Member is also responsible for ensuring a clean and presentable studio at all times. Cleaning duties are required. This is a part-time position, and will be for our studio inside City Square Mall at Cambie and West 12th.What we are looking for:Enjoys yoga and fitnessFun, friendly and personableSales oriented (sales experience a bonus)Ability to multi-task and prioritize workStrong problem solving abilities (understanding customer needs)Works well in a team environmentExcellent communication skillsAttention to detailIf you are a customer service and sales driven individual, with a passion for yoga, we invite you to apply with your resume via email. Please enter the following in your subject line: \\\" Front Desk Application\\\"Only qualified candidates will be contacted. Please do not call the studio. Applications will only be considered via online process.Job Type: Part-timePart-time hours: 8-20 per weekSalary: $15.65-$17.00 per hourSchedule:HolidaysMonday to FridayWeekend availabilityWork Location: In person\",\n            \"location\": \"W th Ave, Vancouver, BC\"\n        },\n        {\n            \"id\": \"2EA03E917ABF476385E8B55635E57D39\",\n            \"cityName\": \"Lower Sackville, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b0ae1078712f1d99\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Money Direct\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694305322437,\n            \"dateOfPosted\": 1691455532933,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.7763767,\n                    \"lon\": -63.6775544\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Lower Sackville\",\n                \"formattedAddress\": \"Lower Sackville, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Lower Sackville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Would you like to be part of a fun, friendly, management team? Money Direct is a Canadian owned and operated company with 9 Canadian branches, so we are a very close knit accessible team!Job Description What do you do?In the Customer Service Representative role you will do it all, sales, customer service, local area marketing, collections, security of your store, and the list goes on. Your primary function in the CSR role is to provide excellent customer service through the provision of Money Direct Financial Services.Duties/Responsibilities· Provide and ensure quality Customer Service is consistently delivered .· Complete all product and service transactions in the Point of Sale system.· Enter customer information completely and accurately into the Point of Sale system.· Issue Loans quickly and efficiently ensuring risk assessment strategies are utilized· Cross-selling additional products and services to all customers.· Respond to customer complaints and provide resolution.· Ensure store appearance is maintained in adherence to company standards.· Adhere to and ensure proper operational policy/procedures are followed.· Adhere to and ensure proper Security and cash management policy/procedures are followed.· Maintain all audit/compliance policy/procedures· Carry out chargeback/collection activity and complete all collection related tasks assigned.· Ensure financial goals/targets are met for the store.· Maintain proper accounting procedures and ensure all reporting is completed in a timely fashion.· Successfully, open and close the store and complete all paperwork accurately.· Maintain cash and inventory accuracy/controls and effectively control cash variances.· Drive revenue through the implementation of company-wide marketing plans and execution of promotions as well as through other local area marketing efforts.· All other job related duties as directed by Management.Qualifications/Skills:· High School Diploma· 1-2 years customer service and cash handling· Experience in the financial services industry highly desirable.· Friendly, outgoing, confident / problem solver, flexible, self-motivated, team player.· Customer Service Orientation· Accountability· OrganizationWe invest in our employees, and offer extensive training, and development programs to set you up for future success. If we sound like a fit and you’re ready to start an exciting career with an organization that encourages employee growth, apply today! We look for bright, energetic, motivated individuals who are interested in learning and developing their careerJob Types: Full-time, PermanentJob Type: Full-timeSalary: From $15.50 per hourBenefits:Dental careExtended health careFlexible scheduleLife insuranceOn-site parkingPaid time offSchedule:Day shiftEvening shiftWeekend availabilitySupplemental pay types:Bonus payCOVID-19 considerations:Consistent sanitizing of all high touch surfaces.Education:DCS / DEC (required)Experience:Customer service: 2 years (required)Work Location: In person\",\n            \"location\": \"Lower Sackville, NS\"\n        },\n        {\n            \"id\": \"470BAF0AD80D6C04AC30441BC811A543\",\n            \"cityName\": \"Kuujjuaq, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=517a722e0b3924e4\",\n            \"jobName\": \"Tamaani – Customer Service Representative\",\n            \"companyName\": \"Kativik Regional Government\",\n            \"rowSalary\": \"$38,651 a year\",\n            \"date\": 1694305302609,\n            \"dateOfPosted\": 1664881404540,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 58.102996,\n                    \"lon\": -68.41883899999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kuujjuaq\",\n                \"formattedAddress\": \"Kuujjuaq, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Nord-du-Québec\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kuujjuaq\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 38651.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    38651.0\n                ],\n                \"range\": {\n                    \"gte\": 38651.0,\n                    \"gt\": null,\n                    \"lte\": 38651.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Kativik Regional Government (KRG), a supra municipal body with jurisdiction over the  territory located north of the 55th parallel, is now looking for a self-motivated and dynamic individual interested in joining the KRG to work in the capacity of:TAMAANI – CUSTOMER SERVICE REPRESENTATIVE  (TEMPORARY, FULL-TIME POSITION) The Customer Services Representative is the front line support for Tamaani Internet customers.  He/she has to ensure that Tamaani Internet’s clients receive support to connect to Internet. Under  the supervision of the Internet Services Coordinator, the Customer Services Representative has  responsibility for the following duties:   Assist new customers to activate their Internet service;   Provide basic technical support to existing customers when they have problems related to the Internet;   Assist local Tamaani agents in each village in the troubleshooting and support of remote customers;   Provide support to customers over the phone and sometime go on client’s premises to provide support;   Manage customer’s email accounts (creation, deletion, modifications and passwords management);   Maintain hardware/software inventories of Tamaani’s equipment;   Assist with the maintenance of Tamaani’s Network under the supervision of the Senior Network administrator;   Creating or maintaining support documentation up to date;   Provide assistance to the Senior Accounting Clerk with basic accounting and clerical tasks;   Carry out any work related tasks as requested by the Internet Services Coordinator.QUALIFICATIONS   Pertinent computer training or equivalent;   Possess troubleshooting abilities with computers;   Experience providing services to customers;   Definite interest in computer related activities;   Written and oral working knowledge of at least two (2) of the following languages: Inuktitut, English and French;   Excellent communication skills;   Good organization skills;   Good moral character.Place of employment: KuujjuaqSalary: Min. $38 651 yearly to a Max. $62 638 yearly (E5) Other Benefits: Cost-of-living differential: minimum $8 500 annually; Food allowance: minimum $3 453 annually;  Annual leave trips: maximum of 3 per person annually;  RRSP: 6% employer, 4% employee; Group Insurance;  Vacation: 20 days/year; Statutory Holidays: 19 days including 10 during Christmas  holidays.Please send your résumé to: Human Resources Department Kativik Regional Government P.O. Box 9 Kuujjuaq QC J0M 1C0 Fax: 819-964-2975 E-mail : humanresources@krg.ca* An employee is entitled to receive at least the Northern benefits allocated to an employee without dependants. An employee with dependants is entitled to benefits for her/his spouse and eligible dependants. The KRG is an equal opportunity employer. In accordance with this and with the James Bay and Northern Québec Agreement, conditions may vary to promote the employment of Inuit candidates. Only candidates selected for an interview will be contacted.\",\n            \"location\": \"Kuujjuaq, QC\"\n        },\n        {\n            \"id\": \"48A1B50C8D3BB4F44D166CDD1BC9D7BC\",\n            \"cityName\": \"#550 Rue De Boucherville, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a10048b610c825ff\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Canada-Europe Ltée / Canada-Europe Ltd.\",\n            \"rowSalary\": \"$17–$22 an hour\",\n            \"date\": 1694305254235,\n            \"dateOfPosted\": 1689719095005,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"International trading company (wholesale distributor) is looking for a B2B Customer Service Representative who is passionate about providing excellent inbound customer service to our clients and who will maintain and increase customer satisfaction. Training offered. You will liaise with a Sales Representative and work closely with a Manager, our office and warehouse teams.Main Responsibilities:Respond to existing and prospective inquiries to house accounts, customers and Sales RepresentativeProvide superior B2B customer service (incoming calls, emails, and new quotes)Provide knowledgeable answers to questions about products, pricing, availability and understand each customer's needsUpdate existing customer database, to ensure all communications are logged and identifiedCoordinate communication strategy for Sales Representative and marketingAbout you:Excellent organizational and time-management skillsExcellent communicator and listenerProven ability to effectively manage multiple projects and prioritiesExcellent email communication and note takingSelf-motivated and collaborativeQualifications:Previous experience (2-5 years) with B2B Customer service, inbound sales rolesPrevious experience in Retail hardware and/ or Industrial distribution channelsMust be bilingual and be proficient in French and EnglishGood knowledge of MS (Word, Excel, PowerPoint)Experience in project management and Sales CRMTeam player with excellent interpersonal skillsSchedule:9 am to 5 pm75% desk position (no remote working), 25% on-site with VPWorking at Condor ...Friendly and dynamic teamCasual dress codeLaid back cultureGrowth opportunitiesCompetitive salaryOn-site parkingLocation:Company located at the corner of Notre-dame street East and highway 25 service road. Accessible by public transportation.Metro L'Assomption and bus #33or Metro Langelier and bus #22Starting date: as soon as possibleJob Types: Permanent, Full-timeSalary: $17.00-$22.00 per hourBenefits:Paid time offFlexible Language Requirement:English not requiredSchedule:Monday to FridaySupplemental pay types:Bonus payCOVID-19 considerations:Wearing a mask and social distancing.Application question(s):Do you live in Montreal ?Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"5F0CDE9FDAA3E95F49C015E44FF54A17\",\n            \"cityName\": \"Saint-Augustin-de-Desmaures, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8592a0cae97132e0\",\n            \"jobName\": \"Customer Service Agent\",\n            \"companyName\": \"Louis Garneau Sports Inc.\",\n            \"rowSalary\": \"$22.29–$34.02 an hour\",\n            \"date\": 1694305244287,\n            \"dateOfPosted\": 1686955502342,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.747041,\n                    \"lon\": -71.459344\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Saint-Augustin-de-Desmaures\",\n                \"formattedAddress\": \"Saint-Augustin-de-Desmaures, QC G3A 2E3, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Québec\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saint-Augustin-de-Desmaures\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Work Term: PermanentWork Language: BilingualHours: 37.5 hours per weekEducation: College, CEGEP or other non-university certificate or diploma from a program of 1 year to 2 yearsExperience: 7 months to less than 1 yearWork setting Private sector Bicycle store Tasks Access and process information Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for refunds and credits Explain the type and cost of services offered Issue receipts and other forms Maintain records and statistics Perform general office duties Receive and log complaints Answer written and oral inquiries Computer and technology knowledge Internet MS Excel MS Outlook MS Word Work conditions and physical capabilities Attention to detail Fast-paced environment Tight deadlines Personal suitability Punctuality Client focus Excellent oral communication Excellent written communication Organized Reliability Team player Initiative Judgement Screening questions Do you currently reside in proximity to the advertised location? Do you have previous experience in this field of employment? What is the highest level of study you have completed? Workplace information Remote work available Health benefits Dental plan Disability benefits Health care plan Paramedical services coverage Vision care benefits Long term benefits Deferred Profit Sharing Plan (DPSP) Life insurance Registered Retirement Savings Plan (RRSP) Other benefits Free parking available On-site recreation and activities Paid time off (volunteering or personal days) Parking available\",\n            \"location\": \"Saint-Augustin-de-Desmaures, QC\"\n        },\n        {\n            \"id\": \"6F695D2F5F138B49D98870A3889FB1E3\",\n            \"cityName\": \"210 McLeod Avenue, Spruce Grove, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4bcd89f114d632b9\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Stony Plain Dry Cleaners/Grove Fashion Cleaners\",\n            \"rowSalary\": \"$15–$18 an hour\",\n            \"date\": 1694305094515,\n            \"dateOfPosted\": 1686791782967,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.542311,\n                    \"lon\": -113.9063023\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Spruce Grove\",\n                \"formattedAddress\": \"McLeod Ave, Spruce Grove, AB T7X, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Spruce Grove\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Mature person needed for part time customer service work in a dry cleaning plant.-Must be outgoing and good with customer interaction.-Must be organized and able to work alone.-Computer knowledge is an asset.Job Type: Part-timePart-time hours: 16 per weekSalary: $15.00-$18.00 per hourDay range:Monday to FridayWeekend availabilityShift:4 hour shift8 hour shiftAfternoon shiftDay shiftWork Location: In person\",\n            \"location\": \"McLeod Avenue, Spruce Grove, AB\"\n        },\n        {\n            \"id\": \"7BDAFEDC5722BC85323D4DA1B9400866\",\n            \"cityName\": \"3555 Johnston Road, Port Alberni, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f3f75a57aa88e2a0\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"A&W\",\n            \"rowSalary\": \"$15.65–$16.40 an hour\",\n            \"date\": 1694305070395,\n            \"dateOfPosted\": 1642462961646,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2631393,\n                    \"lon\": -124.7980987\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Port Alberni\",\n                \"formattedAddress\": \"Johnston Rd, Port Alberni, BC V9Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Alberni-Clayoquot\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Port Alberni\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"You are an enthusiastic individual who works hard to deliver exceptional service to every guest, every time. As a Kitchen Crew Member/Front Crew Member, you are proud to serve great tasting food, made with care. You are a team player that arrives to work energized and motivated and you thrive in a fun, fast paced work environment.What we can offer you:A flexible working schedule;• Employee discounts; • Great training and transferable skills; • Opportunities for advancement • Competitive wage depending upon experience. Apply for this job if you: • Have a passion for guest service and creating exceptional guest experiences; • Enjoy working in a fast-paced environment • Have excellent communication skills; • Enjoy learning new things; • Have a ready smile and a warm personality; You can be part of the changing face of fast foodWork RemotelyNoJob Types: Full-time, Part-time, PermanentPart-time hours: 20-40 per weekSalary: $15.65-$16.40 per hourBenefits:Discounted or free foodOn-site parkingSchedule:8 hour shiftDay shiftHolidaysMonday to FridayNight shiftWeekend availabilityExperience:A&W: 1 year (preferred)customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)\",\n            \"location\": \"Johnston Rd, Port Alberni, BC\"\n        },\n        {\n            \"id\": \"BCAF1975D6E0EA45D3E6F5BAE145D052\",\n            \"cityName\": \"1729 Powell St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=378f84a9022144cb\",\n            \"jobName\": \"Inside Sales / Customer Service\",\n            \"companyName\": \"Signamara Vancouver\",\n            \"rowSalary\": \"$17–$22 an hour\",\n            \"date\": 1694305037904,\n            \"dateOfPosted\": 1689719274760,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827482,\n                    \"lon\": -123.0843227\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Powell St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you a highly motivated and results-driven individual with a passion for sales and a flair for creativity? If so, this is the perfect opportunity for you to unleash your potential and become an integral part of our thriving team at Sign A Rama Vancouver!About Us:At Sign A Rama Vancouver, we take immense pride in being a pioneer in the signage industry for over 17 years. Our commitment to using state-of-the-art computer technology to craft customized and eye-catching designs has earned us a reputation as a top-notch, full-service sign company.Why Join Us:A Culture of Excellence: Joining our team means being part of a culture that celebrates excellence and innovation. You'll be surrounded by a talented group of professionals who are passionate about what they do and committed to achieving outstanding results.Endless Growth Opportunities: As a Sales Representative, you'll have the chance to truly shine and grow in your career. We believe in providing ample opportunities for skill development and career advancement, so you can constantly elevate your performance and reach new heights and positions.Unleash Your Creativity: At Sign A Rama Vancouver, we believe that creativity is the key to crafting remarkable signage solutions. As a sales rep, you'll collaborate with our skilled design team to bring unique and captivating visions to life for our clients, leaving a lasting impression.What We're Looking For:We are seeking a sales rep who is not just another employee but a dynamic go-getter who can drive our business forward. The ideal candidate will:Be a Sales Superstar: You will be the driving force behind our business expansion, generating, prospecting, qualifying, and closing leads. Your passion for sales and your ability to build strong relationships will be key to your success.Exude Charisma: Your outgoing personality will shine through as you interact with clients, leaving them with a positive and memorable experience.Embody Professionalism: As the face of our company, you will represent us with professionalism and integrity, creating trust and credibility with our valued customers.*Qualifications:Some Previous Sales Experience requiredHave Great Attention to Detail with an ability to multi-taskHave a Positive AttitudeBe able to build and maintain lasting relationships with customersPossess professional and organized follow-up skillsHave good organization skills to grow and manage a territoryBe a strong problem solver with good objection handling skillsHave an incredible work ethic willing to do what it takes to succeedHave great people skills and enjoy assisting clientsMust have a great verbal and written communications skillsJoin Our Team Today!If you are ready to embark on an exciting journey of growth and success, we welcome you to join our passionate and dynamic team at Sign A Rama Vancouver. Together, let's make an impact and redefine the world of customized signage and designs. Apply now and let your sales prowess and creativity shine!Job Type: Full-timeSalary: $17.00-$22.00 per hourBenefits:Dental careExtended health careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Commission payAbility to commute/relocate:Vancouver, BC V5L 1H6: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Retail sales: 1 year (preferred)sales: 1 year (preferred)Licence/Certification:Driving Licence (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Powell St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"8DA2B3CA675ED984DE3AFBD4C3D54CE9\",\n            \"cityName\": \"Surrey, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5612f6c741a88652\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Bottleworks Liquor Store\",\n            \"rowSalary\": \"From $17.25 an hour\",\n            \"date\": 1694305023858,\n            \"dateOfPosted\": 1693447877576,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.1913466,\n                    \"lon\": -122.8490125\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Surrey\",\n                \"formattedAddress\": \"Surrey, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Surrey\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Bottleworks Customer Service RepresentativeAboutWith several locations across the lower mainland, the Kooner Hospitality Group has been an innovator and pioneer in the industry for over 10 years. We offer a fun and energetic work atmosphere, competitive wages, staff discounts, staff incentives, product knowledge training, and an opportunity for advancement.You’ll find us at the King George hub just steps away from the King George Skytrain Station.Our liquor store boasts an incredible selection of boutique wines, craft beers and specialty spirits, including products that you won’t find anywhere else. We are looking for energetic, outgoing and positive people to join our team.TypeStart Date: TBD Hours: Full-time, Part-timeSalary/Hourly: $17.25/hr Average Gratuities: $1-2/hourWho You AreYou are an outgoing, energetic and positive person.You take pride in providing exceptional customer service.You enjoy being part of a team, can work independently and have a strong work ethic.You thrive working in a fast-paced environment, have a sense of urgency, and can multitask.You enjoy beer, wine and spirits and want to learn more about them.You want flexible hours and a positive working environment.Position ResponsibilitiesEnsure exceptional customer service is provided.Assist with the everyday tasks including stocking, building displays and assisting customers.Perform general cleaning and maintenance including dusting, sweeping floors and putting away orders.Representing the team in a professional manner.What We OfferA great working environment.Room to advance within our growing company.A team member discount at all of our locations.To be eligible, applicants must meet the following qualification requirements:Be at least 19 years of age.A valid Serving it Right Certificate.Are able to lift 50lbs.Excellent customer service and interpersonal skills.Must be flexible and be able to work evenings and weekends.Knowledge of beer, wine, and spirits is an asset.If you are interested in the position, apply now, and tell us a bit about yourself!Job Types: Full-time, Part-timeSalary: From $17.25 per hourBenefits:Store discountFlexible Language Requirement:French not requiredSchedule:Day shiftEvening shiftHolidaysMonday to FridayWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Surrey, BC V3T 0P9: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Surrey, BC\"\n        },\n        {\n            \"id\": \"968EA6BEF34E4AA2C30FB916431E5ED8\",\n            \"cityName\": \"80 Westcreek Blvd, Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0b5cfa9778618c63\",\n            \"jobName\": \"Cash Management (Call Centre Agent)\",\n            \"companyName\": \"Aeolus Freight Solutions Inc.\",\n            \"rowSalary\": \"$16–$21 an hour\",\n            \"date\": 1694304747740,\n            \"dateOfPosted\": 1665518130484,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6796058,\n                    \"lon\": -79.7034733\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Westcreek Blvd, Brampton, ON L6T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are searching for a remarkable INBOUND CUSTOMER SERVICE REPRESENTATIVE - CONTACT CENTER to join our passionate teamGrowing your career as a Full Time INBOUND CUSTOMER SERVICE REPRESENTATIVE - CONTACT CENTER is a fantastic opportunity to develop productive skills.REQUIREMENTS- 2-3 years of experience in customer service inbound.Education • Secondary (high) school graduation certificateExperience Work SettingPrivate sector TasksAccess and process informationAddress customers' complaints or concernsAnswer inquiries and provide information to customersMaintain records and statisticsReceive and log complaints Computer and Technology KnowledgeSalesforceDatabase softwareInternetMS OutlookMS Windows Security and SafetyCriminal record check Work Conditions and Physical CapabilitiesAttention to detailFast-paced environmentHand-eye co-ordinationRepetitive tasksTight deadlinesWork under pressure Personal SuitabilityPunctualityClient focusEffective interpersonal skillsExcellent oral communicationExcellent written communicationFlexibility • Organized • Reliability • Team player ExperienceJob Type: Full-timeSalary: $16.00-$21.00 per hourSchedule:10 hour shift8 hour shiftSupplemental pay types:Overtime pay\",\n            \"location\": \"Westcreek Blvd, Brampton, ON\"\n        },\n        {\n            \"id\": \"0F2C8B01DC92336BBE375F53F01CAE2E\",\n            \"cityName\": \"80 Westcreek Blvd, Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=765a2e580b7466a6\",\n            \"jobName\": \"Call Centre Agent (A/R, A/P)\",\n            \"companyName\": \"Aeolus Freight Solutions Inc.\",\n            \"rowSalary\": \"$16–$21 an hour\",\n            \"date\": 1694304002482,\n            \"dateOfPosted\": 1668146998410,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.6796058,\n                    \"lon\": -79.7034733\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Westcreek Blvd, Brampton, ON L6T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are searching for a remarkable INBOUND CUSTOMER SERVICE REPRESENTATIVE - CONTACT CENTER to join our passionate teamGrowing your career as a Full Time INBOUND CUSTOMER SERVICE REPRESENTATIVE - CONTACT CENTER is a fantastic opportunity to develop productive skills.REQUIREMENTS- 2-3 years of experience in customer service inbound.Education • Secondary (high) school graduation certificateExperience Work SettingPrivate sector TasksAccess and process informationAddress customers' complaints or concernsAnswer inquiries and provide information to customersMaintain records and statisticsReceive and log complaints Computer and Technology KnowledgeSalesforceDatabase softwareInternetMS OutlookMS Windows Security and SafetyCriminal record check Work Conditions and Physical CapabilitiesAttention to detailFast-paced environmentHand-eye co-ordinationRepetitive tasksTight deadlinesWork under pressure Personal SuitabilityPunctualityClient focusEffective interpersonal skillsExcellent oral communicationExcellent written communicationFlexibility • Organized • Reliability • Team player ExperienceJob Type: Full-timeSalary: $16.00-$21.00 per hourSchedule:10 hour shift8 hour shiftSupplemental pay types:Overtime payAbility to commute/relocate:Brampton, ON: reliably commute or plan to relocate before starting work (preferred)\",\n            \"location\": \"Westcreek Blvd, Brampton, ON\"\n        },\n        {\n            \"id\": \"E2CD725C7766C589F3AB2A1D887D1407\",\n            \"cityName\": \"10406 184 Street NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a69699ac20ceb5fb\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Kms Tools & Equipment Edmonton West\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694303673164,\n            \"dateOfPosted\": 1693446810274,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.6065656,\n                    \"lon\": -113.3801256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"24a St NW, Edmonton, AB T5Y, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"KMS Tools Edmonton West is looking for a Cashier to add to our team. Applicants must be dependable, friendly, detail oriented and focused on customer service. Ability to handle high volume of orders and customers. We are closed Sundays and Holidays. Working Saturdays is required. Competitive benefits offered.Job Types: Full-time, PermanentSalary: From $15.00 per hourBenefits:Dental careOn-site parkingPaid time offStore discountDay range:Every WeekendMonday to FridayShift:8 hour shiftDay shiftCOVID-19 considerations:Personal protective equipment provided or required Plastic shield at work stations Social distancing guidelines in place Sanitizing, disinfecting, or cleaning procedures in placeApplication question(s):Are you currently working? If so - when would you be able to start?Do you have any schedule restrictions?What is your expected starting pay based on your experience?Experience:customer service: 1 year (preferred)Cashiering: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Street NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"3C1157758A602525A111097B56800DD9\",\n            \"cityName\": \"Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=99ae976b98fbb3bd\",\n            \"jobName\": \"Customer Service/Inside Sales Representative (Maternity Leave)\",\n            \"companyName\": \"Heidelberg Materials Us, Inc.\",\n            \"rowSalary\": \"$58,104–$81,346 a year\",\n            \"date\": 1694303625215,\n            \"dateOfPosted\": 1690387767529,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5461245,\n                    \"lon\": -113.4938229\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Edmonton, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 58104.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    58104.0\n                ],\n                \"range\": {\n                    \"gte\": 58104.0,\n                    \"gt\": null,\n                    \"lte\": 58104.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"AutoReqId: 18300BRPay Class: Salaried Non-ExemptDepartment: SalesJob Posting:Heidelberg Materials provides the materials to build our future. Our future is sustainable. Our future is digital. And it goes beyond cement, aggregates, and ready-mixed concrete. Heidelberg Materials North America, previously known as Lehigh Hanson, operates more than 450 locations with approximately 9,000 employees in the U.S. and CanadaHeidelberg Materials is seeking a Temporary Inside Sales Representative (Maternity Leave Coverage) to join the local team in Edmonton, AB. Reporting to the Customer Service Manager the Inside Sales Representative will be responsible for receiving and processing of cement and fly ash sales orders. This opportunity is perfect for the sales professional who is looking to grow their career with an industry leader. While focusing on growing existing and prospective customers to increase market share and improve profit margins, you will begin your career with a proven leader in the cement and construction materials industry.What you'll get to do:Leads the order process assuring accurate, courteous, and timely scheduling and data input of customer phone, online, and email orders.Work with carriers to schedule and dispatch delivery to customers on an on-time basis.Ensure all incidents or issues regarding quality, customer complaints or delivery are entered into database.Prioritize customer needs to provide superior customer service and support.Develop and maintain customer relationships.Work closely with sales department in identifying customer needs and wants.Essential Experience & Skills:Minimum high school diploma. Preference will be given to candidates who possess a post-secondary educationPrevious administration or inside sales experience an assetExcellent customer relations and communication skillsProblem solver with an aptitude for focusing on customer requirementsWorking knowledge of Microsoft Office products.Ability to work independently as required and under time and scheduling pressuresKnowledge of the trucking industryStrong organizational skillShift work, rotating 12-hour shiftsPreferred Experience and SkillsCDM Order Management experience is an assetSAP experience is an asset\",\n            \"location\": \"Edmonton, AB\"\n        },\n        {\n            \"id\": \"892FE30DFA5B73422751468698600A31\",\n            \"cityName\": \"Sherwood Park, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4d8b2a7502127b59\",\n            \"jobName\": \"Customer Service Representative - Insurance\",\n            \"companyName\": \"Chowdhury Insurance Ltd.\",\n            \"rowSalary\": \"$23.18 an hour\",\n            \"date\": 1694303529804,\n            \"dateOfPosted\": 1692449695959,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5411916,\n                    \"lon\": -113.2957355\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sherwood Park\",\n                \"formattedAddress\": \"Sherwood Park, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 11\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sherwood Park\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 24.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    24.0\n                ],\n                \"range\": {\n                    \"gte\": 24.0,\n                    \"gt\": null,\n                    \"lte\": 24.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 year to less than 2 yearsor equivalent experience Work setting Insurance company Tasks Address customers' complaints or concerns Answer inquiries and provide information to customers Arrange for billing for services Explain the type and cost of services offered Order office supplies and maintain inventory Perform general office duties Answer written and oral inquiries Health benefits Dental plan Health care plan Vision care benefitsWork Term: PermanentWork Language: EnglishHours: 37.5 to 40 hours per week\",\n            \"location\": \"Sherwood Park, AB\"\n        },\n        {\n            \"id\": \"B29B3CC3182C721632C9C67408D63DC4\",\n            \"cityName\": \"1053 Carling Avenue, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0c41bd776a2743bc\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Second Cup Cafe\",\n            \"rowSalary\": \"$16.28 an hour\",\n            \"date\": 1694303396220,\n            \"dateOfPosted\": 1693447896405,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.35917600000001,\n                    \"lon\": -75.79599209999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"Carling Ave, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ottawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Duties of a Barista Customer servicePreparing specialty drinksFood preparationAll General cleaningJob Type: Part-timePart-time hours: 16-20 per weekSalary: $16.28 per hourBenefits:Dental careDiscounted or free foodPaid time offTuition reimbursementFlexible Language Requirement:French not requiredSchedule:Monday to FridayShift availability:Day Shift (required)Work Location: In personExpected start date: 2023-09-05\",\n            \"location\": \"Carling Avenue, Ottawa, ON\"\n        },\n        {\n            \"id\": \"7ECDEBAF131FCBCD8C013E51790E6F56\",\n            \"cityName\": \"6506 Norwest Bay Rd, Sechelt, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1a4b4187b2dab182\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Mason Place Market\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694303394753,\n            \"dateOfPosted\": 1691497625599,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are a small family run business and would love to welcome more people to our team!We are looking for people who are super friendly and energetic, extremely reliable and responsible and able to stand on their feet for long periods. We can teach the rest!The days and hours of work are flexible! We are mostly looking to cover the hours from 3pm until 9:30 pm, 7 days a week.Please drop off your resume at the store; 6506 Norwest Bay RdJob Type: Part-timePart-time hours: 20-36 per weekSalary: $17.00-$19.00 per hourBenefits:On-site parkingDay range:HolidaysMonday to FridayWeekends as neededShift:4 hour shift8 hour shiftAfternoon shiftEvening shiftWork setting:Convenience storeWork Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"BCB7B6359CC576A402CE37B19335A5A0\",\n            \"cityName\": \"Rocky View, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=042b87658fcc7386\",\n            \"jobName\": \"Customer Service Representative - 203\",\n            \"companyName\": \"Copart\",\n            \"rowSalary\": \"$22.38 an hour\",\n            \"date\": 1694303110450,\n            \"dateOfPosted\": 1686166990692,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.2086495,\n                    \"lon\": -113.9815345\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Rocky View County, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Customer Service Representative (CSR) provides exceptional customer service to internal and external customers of Copart. Through a thorough understanding of Copart practices, the CSR offers solutions that aid and facilitate a unique customer service experience. The CSR provides general administrative support while multi-tasking in hectic and stressful situations. In addition, the CSR will be the face of the Company through face-to-face and vocal interactions with all levels of customers which range from the general public to high-level managers of organizations.Receive and process payments.Update lot (vehicle) notes in the system.Answer multi-line telephone in a professional manner.Face-to-face customer interaction.Use company resources to gather information and offer solutions to meet customer needs.Contact clients to obtain vehicle pick-up information.File documents according to criteria.Process mail incoming and outgoing per criteria.Read and interpret various reports and documents.Proper completion of sale documents.Other duties as assigned.Required Skills & Experience:One year of office support experience in a customer service role preferredHigh School diplomaExcellent customer service skills and attitudeExcellent written and verbal skillsProficient with office equipmentAttention to detailProblem-solvingComputer proficiency - MS SuiteTyping speed 45WPMProfessional appearanceAbility to multi-task in a fast-paced environmentBilingual skills a plusOccasional overtime as neededFor 40 years, Copart has led its industry in innovation and customer service, enabling it to grow profitably in markets across the globe. Our success is the direct result of the skills and efforts of our talented and diverse employees. Our mindset? It's never just a \\\"job\\\" when your coworkers are like family - it's like coming home.Location: Rocky View,AB,Canada, AlbertaLocation: Rocky View,AB,Canada, AlbertaJob Type: Full-timePay: $22.38 per hour\",\n            \"location\": \"Rocky View, AB\"\n        },\n        {\n            \"id\": \"40D158562EB45C4F09E31ED870DEFFB4\",\n            \"cityName\": \"Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=10bda59da0472794\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Service Experts\",\n            \"rowSalary\": \"$15–$19 an hour\",\n            \"date\": 1694302954500,\n            \"dateOfPosted\": 1598544655638,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7764258,\n                    \"lon\": -79.2317521\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Scarborough, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Service Experts Heating & Air Conditioning, we believe in doing what’s right for our customers and our employees. We offer the stability of working for a national industry leader but we also treat our people like family. Our team is made up of the very best, and we provide ongoing training, support, and opportunities for unlimited professional growth.What we can offer:Competitive wages and vacation timeBenefits after 3 months of employment which includes medical, dental, short-term and long-term disability, vision care, and life insuranceCompany RRSP match available after 6 months of employmentEmployee Assistance ProgramEmployee Referral BonusExtensive training and long-term career opportunitiesPersonal Protection Equipment provided, including safety bootsHoliday and vacation payRelocation expenses for the right candidateThe Customer Service Specialist handles customer questions, complaints, and billing inquiries with the highest degree of courtesy and professionalism to resolve customer issues with one-call resolution.QualificationsMust be able to work from 3-11 PM on Monday and FridaysHigh school diploma or equivalent (post-secondary education preferred)Previous customer service experienceExcellent interpersonal skillsExceptional verbal communicationStrong computer software skillsWillingness to work with and assist co-workers as needed, in addition to working occasional overtime and weekend hours as requiredResponsibilitiesAnswering incoming phone calls from customers and other office duties as assignedMaintaining good customer relations and ensuring that all calls meet Service Experts’ standardsHandling and resolving a variety of customer concerns, complaints, and questions by phone, email, and in-person (questions may include billing inquires, technician ETA, scheduling issues, and general company product and service questions)Ability to accept empowerment and to be prepared to make decisions regarding customer satisfaction with confidenceResolving problems by clarifying issues, researching, exploring answers/alternative solutions, implementing solutions, and escalating unresolved issuesMaintaining customer records by updating account informationWorking with Dispatch to improve accuracy in scheduling and speed of responseCommunicating with customers on the status of service callsAssisting with dispatching as neededPerforming outbound calls to schedule preventative maintenances and tune-upsEnsuring that customers are contacted in a timely manner to schedule preventative maintenanceWorking with General Manager/Operations Manager to ensure that capacity demands are metContinually maintain working knowledge of all company products, services, and promotionsAll employees must be able to pass our background check criteria.Join the team of Experts and realize your full potential.Service Experts is an Equal Opportunity Employer.Service Experts is committed to an inclusive, barrier-free recruitment process. We will accommodate the needs of applicants under the Ontario Human Rights Code and the Accessibility for Ontarians with Disabilities Act (AODA)Job Types: Full-time, PermanentSalary: $15.00-$19.00 per hourBenefits:Company eventsDental careDisability insuranceEmployee assistance programLife insuranceOn-site parkingPaid time offRRSP matchTuition reimbursementVision careSchedule:8 hour shiftMonday to FridayExperience:call center: 1 year (Required)customer service: 1 year (Required)Education:Secondary School (Required)Job Duties:Answer incoming customer inquiriesCollaborate with key stakeholders and teams to stay updated on new products, services, and policiesRecord and modify customer information within the databaseEngage with clients in a friendly and professional manner while actively listening to their concernsOffer support and solutions to customers in accordance with the company's customer service policiesOther duties as requestedWork remotely:No\",\n            \"location\": \"Scarborough, ON\"\n        },\n        {\n            \"id\": \"87F9CF55384F598F2011225E0A0DCEB5\",\n            \"cityName\": \"2032 Boul Curé Labelle, Laval, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dc565ca2e01b8043\",\n            \"jobName\": \"Call Center Representative\",\n            \"companyName\": \"Auto Primo, Laval\",\n            \"rowSalary\": \"$18–$25 an hour\",\n            \"date\": 1694302811274,\n            \"dateOfPosted\": 1693448587961,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.6110486,\n                    \"lon\": -73.7922317\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Bd du Curé-Labelle, Laval, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laval\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Description complète du posteAuto Primo est un concessionnaire automobile connaissant une grande croissance avec plus de 200 véhicules en inventaire.Vous devez etre dynamique, professionnel et proactif.Fonction du poste;Répondre aux appels de nouveau clients et répondre à leur besoinsPrendre des rendez-vous pour le département des ventesÉcoutez les clients et les accompagner durant toute la transactionAssister les vendeurs dans leurs suivis et tachesQualification:Expérience dans le travail à commission;Experience dans l'automobile (Non obligatoire)Connaissance basique (Suite google) ;Comfortable de travailler dans un centre d'appel actifÊtre capable de creer des relations rapides aux téléphonesBonne orginisation afin de faire les suivis nécessaireDemandes:Blilingue (Francais et anglais);Qualité interpersonnel;Facilitié à travailler en équipe;Avoir de l'aisance et être extraverti ;)Porfessionnel, organisé et courtoisConditions:Poste temps plein et permanent;Possibilité de travail en fin de semaine;Rabais pour employs;Ambiance d'équipe super jeune;Équipe accès sur les résultats;____________________Full job descriptionAuto Primo is a fast growing car dealership with over 200 vehicles in inventory.You must be dynamic, professional and proactive.Job function;Answer calls from new customers and respond to their needsMake appointments for the sales departmentListen to customers and accompany them throughout the transactionAssist sales people in their follow-ups and tasksQualifications:Experience in commission work;Experience in the automotive industry (Not required)Basic knowledge (google suite);Comfortable working in an active call centerAbility to build rapport quickly on the phoneGood orginization in order to do the necessary follow-upsDemands:Blilingual (French and English);Interpersonal skills;Ability to work in a team;Comfortable and outgoing ;)Professional, organized and courteousConditions:Full-time, permanent position;Possibility of working on weekends;Discounts for employees;Young team atmosphere;Team access on results;Job Type: Full-timeSalary: $18.00-$25.00 per hourBenefits:Dental careDisability insuranceExtended health careLife insuranceVision careSchedule:8 hour shiftMonday to FridayWeekends as neededSupplemental pay types:Bonus payCommission payOvertime payTipsEducation:Secondary School (preferred)Experience:Sales: 1 year (preferred)Customer service: 3 years (preferred)Work Location: In person\",\n            \"location\": \"Boulevard Curé-Labelle, Laval, QC\"\n        },\n        {\n            \"id\": \"085705EC73907140D2D0EA07F3F3E8AB\",\n            \"cityName\": \"London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=695937cf4223d28f\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Talbot Marketing\",\n            \"rowSalary\": \"$19–$21 an hour\",\n            \"date\": 1694302719698,\n            \"dateOfPosted\": 1692242128052,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9849233,\n                    \"lon\": -81.2452768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Talbot Marketing is a leader in the Canadian promotional products industry. Talbot has stood the test of time because we continue to invest, innovate and bring value to our customers and to the promotional product marketplace. Talbot is one of the largest providers of promotional products and corporate apparel in Canada. We specialize in solutions to leverage the power of a company’s brand.We aspire to become a company where our employees and clients are proud to call themselves a part of Talbot Marketing. Our corporate values include: to improve the lives of all those around us, operate with integrity, embrace diversity, make it fun and earn a fair profit. Talbot is a family oriented organization that treats everyone associated with Talbot with empathy, trust, fairness, and respect.We are looking for a Customer Service Representative to join our growing team. Candidates with customer service experience and the interest to develop and grow your skills thru learning and mentorship within the customer service team would be considered an asset as we grow our team.We offer a competitive compensation and benefit package – including 2 retirement programs with company contributions, company paid health & dental benefits and an employee assistance program. Employee sick days and vacation time above ESA standards.Job DescriptionThe purpose of this position is to maintain superior support of the sales representatives by ensuring that orders, quotations and sourcing are processed and produced in a timely and efficient manner. The incumbent must be able to knowledgably answer questions from sales representatives, end users, suppliers and fellow employees on a timely basis.Duties· Answer all communication from sales agents, suppliers and end users providing information and assistance as and when necessary.· To act as liaison between supplier and sales associates regarding items such as proof approvals, extra charges, ordering samples (and returning as needed), generate spec samples and ensuring deliveries are on track (by utilizing open order report). Email artwork/embroidery discs when required, resolve discrepancies between end user, sales associate and supplier.· Review supplier acknowledgements for correctness and noting supplier confirmation on system in a timely fashion.· Source products for sales associates and prepare formal quotations when required. Assist sales associates with creative selling ideas.· Attend various outside/inside trade shows and supplier product knowledge sessions.· Prioritize and organize effectively to maximize use of time to meet workload volume.· Other duties as requiredSkills· Excellent knowledge of Windows, Excel, Word, PowerPoint, etc· Strong in customer service and communication· Organizing / Prioritizing· Team Player (offer assistance, actively listen, respect others, be a problem solver, celebrate team successes)· Positive attitude, motivated, compassionate· Results orientatedEducation and Experience· Completion of a Community College program (concession may be considered based upon an individual’s job experience).· One year of industry related experience or a minimum of three years of customer service experience, is necessary to carry out the Customer Service Associate role.To learn more about Talbot Marketing visit our website at www.talbot-promo.com.Job Types: Full-time, PermanentSalary: $19.00-$21.00 per hourBenefits:Casual dressCompany eventsCompany pensionDental careDisability insuranceExtended health careLife insuranceOn-site parkingPaid time offRRSP matchVision careWellness programFlexible Language Requirement:French not requiredSchedule:Monday to FridayOvertimeSupplemental pay types:Bonus payOvertime payWork Location: In person\",\n            \"location\": \"London, ON\"\n        },\n        {\n            \"id\": \"19FE975DEC40DDBEFE0205B80CA55155\",\n            \"cityName\": \"1867 Ashburnham Dr, Peterborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8a9f5436ac1befdf\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Peterborough Utilities Group\",\n            \"rowSalary\": \"$25.66–$36.58 an hour\",\n            \"date\": 1694302667021,\n            \"dateOfPosted\": 1693447899436,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2945085,\n                    \"lon\": -78.2994973\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Peterborough\",\n                \"formattedAddress\": \"Ashburnham Dr, Peterborough, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Peterborough County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Peterborough\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 26.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    26.0\n                ],\n                \"range\": {\n                    \"gte\": 26.0,\n                    \"gt\": null,\n                    \"lte\": 26.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative - Full Time Union Reports to: Supervisor, Customer Service Department: Customer Service Location: 1867 Ashburnham Dr., Peterborough Rate: $25.66 - $36.58 per hour, 37.5 hours per week JOB PURPOSE: The Customer Service Representative utilizes skills by dealing effectively and in a friendly, professional manner with internal and external customers by telephone and in person regarding all aspects of utility services to include billing, credit, collections, and service order processing. Receive and reply to verbal and written customer inquiries and be involved in a broad range of customer service office responsibilities. Process, monitor and adjusts business transactions as well as conducts daily, weekly, and monthly processes required to accurately bill utility customer accounts. MAIN ACCOUNTABILITIES:Process customer requests for new applicants, changes in service, account closures, book appointments and document pertinent customer dealings.Inbound/Outbound - Communicate directly with the customer to obtain all necessary and relevant information and reach a mutual agreement for payment of their debt. Ensure a balance between quality customer service and effective collections techniques.Make needed adjustments to customer records and transactions as necessary to ensure accurate billing, collecting and receipt of service.In compliance with the Policies and Practices, identify appropriate conditions for discontinuing service and initiating action.Deal with external contractors and internal operations staff regarding delivery of notices, collection of arrears and process all attendant forms and service orders.Receive and process customer, finance, and zoo payments. Balance and create daily deposit for banking. Investigate misapplied or unidentified customer payments.Take customers calls for water heater investigations, new installs and removals. Obtain signed contract for water heater rental, create/resolve service orders, enter inventory into the billing system, scrap inventory, approve payment of invoices and scan contracts.Investigate consumption issues; leaks, zero consumption, stopped meters and resolve the issue.Process and investigate high bill inquiries, and correct billing system errors and warnings, no application for service, duplicate payments/duplicate banking information on multiple accounts, incorrect phone number, email bounce back, refunds with no forwarding address etc.Answer customer inquiries from info at and Customer Self ServiceShare knowledge on various procedures as requested with other representatives.Responsible for personal safety and the safety of others that is dependent upon their actions. Report hazards and unsafe acts or conditions encountered on the job to fellow workers and supervisors.Assist with projects, programs and miscellaneous assignments as required including cross department workflow. Consult with and share information with all departments for the purpose of monitoring and correcting transactionsDaily processing of manual and electronic reads that fail validation to ensure that reads are available for billing: Review and estimate/approve water reads based on historical dataCreate and resolve service ordersCorrect billed reads, add customer bill messages, and cancel/rebillQUALIFICATIONS Post secondary education in related discipline (Business Administration, Office Administration, Customer Service) A minimum of one (1) years of experience involved with customer service and collection in a call centre environment. TECHNCIAL SKILLS Demonstrated ability to work in fast paced, high pressure, high stress situations.Strong written and oral communications and customer service skills.Being understanding, helpful, cooperative, sensitive to needs and feelings of others while maintaining composure in difficult situations.Demonstrated ability to analyze multiple sources of information to determine best course of action.Demonstrated initiative, good judgment, integrity, and stability in executing duties.Demonstrated techniques in collections.Must be willing to work in an environment that requires heavy phone-based customer interaction.Previous computer experience within in a Microsoft office software environment. Experience working with a Customer Information System Demonstrated knowledge on regulations, guidelines, and programs.Demonstrated ability to process work in an accurate, efficient, and timely manner.Demonstrated excellent safety record and attitude and attendance record.Demonstrated ability to deal with personal information in a confidential, ethical, and professional manner.All applications must be submitted by end of day September 15th, 2023. Please indicate in your cover letter if you are interested in a full time position, contract position or both.\",\n            \"location\": \"Ashburnham Drive, Peterborough, ON\"\n        },\n        {\n            \"id\": \"F8FD0A64971F94DC812E20EEA1A94EE5\",\n            \"cityName\": \"114 Sydenham St, Flesherton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ff408608f685a78a\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Country Style & Mr. Sub\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694302554076,\n            \"dateOfPosted\": 1691497521642,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2648914,\n                    \"lon\": -80.5533015\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Flesherton\",\n                \"formattedAddress\": \"Sydenham St, Flesherton, ON N0C 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Flesherton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"$16.50/HR“ LOCAL CANDIDATES ONLY “Apply Now! Hiring Now! All training will be provided.ESSO Gas Station in Flesherton is hiring Customer Service Representatives to join its team - opening or closing shifts, weekdays or weekends. No experience necessary. Previous gas station or convenience store experience is always an asset. Full Training will be provided.Send resume online or welcome to stop by at the store.Job Types: Full-time, Part-time, PermanentSalary: From $16.50 per hourFlexible Language Requirement:French not requiredAbility to commute/relocate:Flesherton, ON N0C 1E0: reliably commute or plan to relocate before starting work (required)Work Location: In person\",\n            \"location\": \"Sydenham St, Flesherton, ON\"\n        },\n        {\n            \"id\": \"B9C534C72D6A493AB8E5F33A1411EFBB\",\n            \"cityName\": \"1867 Ashburnham Dr, Peterborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=48b266a32cbe5f46\",\n            \"jobName\": \"Contract Customer Service Representative\",\n            \"companyName\": \"Peterborough Utilities Group\",\n            \"rowSalary\": \"$25.66–$36.58 an hour\",\n            \"date\": 1694302369088,\n            \"dateOfPosted\": 1693448328849,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2945085,\n                    \"lon\": -78.2994973\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Peterborough\",\n                \"formattedAddress\": \"Ashburnham Dr, Peterborough, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Peterborough County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Peterborough\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 26.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    26.0\n                ],\n                \"range\": {\n                    \"gte\": 26.0,\n                    \"gt\": null,\n                    \"lte\": 26.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Representative - 1 Year Contract Reports to: Supervisor, Customer Service Department: Customer Service Location: 1867 Ashburnham Dr., Peterborough Rate: $25.66 - $36.58 per hour, 37.5 hours per week JOB PURPOSE: The Customer Service Representative utilizes skills by dealing effectively and in a friendly, professional manner with internal and external customers by telephone and in person regarding all aspects of utility services to include billing, credit, collections, and service order processing. Receive and reply to verbal and written customer inquiries and be involved in a broad range of customer service office responsibilities. Process, monitor and adjusts business transactions as well as conducts daily, weekly, and monthly processes required to accurately bill utility customer accounts. MAIN ACCOUNTABILITIES:Process customer requests for new applicants, changes in service, account closures, book appointments and document pertinent customer dealings.Inbound/Outbound - Communicate directly with the customer to obtain all necessary and relevant information and reach a mutual agreement for payment of their debt. Ensure a balance between quality customer service and effective collections techniques.Make needed adjustments to customer records and transactions as necessary to ensure accurate billing, collecting and receipt of service.In compliance with the Policies and Practices, identify appropriate conditions for discontinuing service and initiating action.Deal with external contractors and internal operations staff regarding delivery of notices, collection of arrears and process all attendant forms and service orders.Receive and process customer, finance, and zoo payments. Balance and create daily deposit for banking. Investigate misapplied or unidentified customer payments.Take customers calls for water heater investigations, new installs and removals. Obtain signed contract for water heater rental, create/resolve service orders, enter inventory into the billing system, scrap inventory, approve payment of invoices and scan contracts.Investigate consumption issues; leaks, zero consumption, stopped meters and resolve the issue.Process and investigate high bill inquiries, and correct billing system errors and warnings, no application for service, duplicate payments/duplicate banking information on multiple accounts, incorrect phone number, email bounce back, refunds with no forwarding address etc.Answer customer inquiries from info at and Customer Self ServiceShare knowledge on various procedures as requested with other representatives.Responsible for personal safety and the safety of others that is dependent upon their actions. Report hazards and unsafe acts or conditions encountered on the job to fellow workers and supervisors.Assist with projects, programs and miscellaneous assignments as required including cross department workflow. Consult with and share information with all departments for the purpose of monitoring and correcting transactionsDaily processing of manual and electronic reads that fail validation to ensure that reads are available for billing: Review and estimate/approve water reads based on historical dataCreate and resolve service ordersCorrect billed reads, add customer bill messages, and cancel/rebillQUALIFICATIONS Post secondary education in related discipline (Business Administration, Office Administration, Customer Service) A minimum of one (1) years of experience involved with customer service and collection in a call centre environment. TECHNCIAL SKILLS Demonstrated ability to work in fast paced, high pressure, high stress situations.Strong written and oral communications and customer service skills.Being understanding, helpful, cooperative, sensitive to needs and feelings of others while maintaining composure in difficult situations.Demonstrated ability to analyze multiple sources of information to determine best course of action.Demonstrated initiative, good judgment, integrity, and stability in executing duties.Demonstrated techniques in collections.Must be willing to work in an environment that requires heavy phone-based customer interaction.Previous computer experience within in a Microsoft office software environment. Experience working with a Customer Information System Demonstrated knowledge on regulations, guidelines, and programs.Demonstrated ability to process work in an accurate, efficient, and timely manner.Demonstrated excellent safety record and attitude and attendance record.Demonstrated ability to deal with personal information in a confidential, ethical, and professional manner.All applications must be submitted by end of day September 15th, 2023. Please indicate in your cover letter if you are interested in a full time position, contract position or both.\",\n            \"location\": \"Ashburnham Drive, Peterborough, ON\"\n        },\n        {\n            \"id\": \"9581E0AF944D927A91ECBD1BF422D10B\",\n            \"cityName\": \"5516 Spring Garden Rd, Halifax, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bc402247bd8a8828\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Highmart Store\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694302290652,\n            \"dateOfPosted\": 1692242113886,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Store Associates must have cash knowledge, some computer knowledge, good customer service, be punctual, and self motivated. Reliability is extremely important. We are a fast-paced store, so the ability to multi task is a must. Daily tasks include but are not limited to : Cash duties, selling to customers, receiving stock and merchandising the store, cleaning and maintaining cleanliness of store. Must be able to stand, and lift up to 50lbs.Job Types: , Part-time, PermanentSalary: From $15.00 per hourJob Types: Permanent, Full-timeSalary: From $15.00 per hourDay range:Monday to FridayWeekends as neededShift:8 hour shiftEvening shiftMorning shiftWork setting:Convenience storeSpecialty storeWork Location: In personExpected start date: 2023-08-17\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"3191FD46A790D1AB6F3D941ACB22E34A\",\n            \"cityName\": \"850 Powell St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d9be26328b306359\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Starbucks Coffee Canada- Powell Street Drive-Thru\",\n            \"rowSalary\": \"$16.30–$18.85 an hour\",\n            \"date\": 1694302086584,\n            \"dateOfPosted\": 1650263504099,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827482,\n                    \"lon\": -123.0843227\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Powell St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Starbucks is looking for partners to join our team at our Powell Street Drive-Thru location (located in Strathcona neighbourhood- accessible by transit buses 4, 7, 14, 20). We are looking for both baristas for flexible, full time or part time shifts.Our barista position is our entry level role and requires no experience.We offer a competitive total pay package, excellent perks and benefits and have many opportunities for career development and growth. Partners that work at least 20 hours a week are eligible for our full benefits package, including medical and dental. We have opportunities for shifts during all day parts, starting as early as 4:30am and as late as 9pm.If you are interested in exploring opportunities with Starbucks, please submit your application! More details on all of our roles can be found at www.starbucks.ca/careers and apply online and select store 4502- Powell Street location or drop by with your resume at 850 Powell Street or call 604 215-0711Job Types: Full-time, Part-timeSalary: $16.30-$18.85 per hourCOVID-19 considerations:All partners have the option to wear a mask; CoVid safety check done before all shifts; partners work behind plexi barriers to ensure physical distancing; high touch areas sanitized on a timely basisJob Types: Full-time, Part-time, PermanentSalary: $16.30-$18.85 per hourJob Types: Full-time, Part-time, PermanentPart-time hours: 20-30 per weekSalary: $16.30-$18.85 per hourBenefits:Casual dressDental careDisability insuranceDiscounted or free foodEmployee assistance programEmployee stock purchase planExtended health careFlexible scheduleLife insuranceOn-site parkingPaid time offRRSP matchStock optionsStore discountTuition reimbursementVision careWellness programSchedule:Day shiftHolidaysMonday to FridayNight shiftOvertimeWeekend availabilitySupplemental pay types:Overtime payTipsAbility to commute/relocate:Vancouver, BC V6A 1H8: reliably commute or plan to relocate before starting work (required)\",\n            \"location\": \"Powell St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"C456E995639BD08E623817AEA2956FB6\",\n            \"cityName\": \"1410 Elmwood Dr, Moncton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6fe611341e00b305\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Needs/Fast Fuel Moncton\",\n            \"rowSalary\": \"From $13.75 an hour\",\n            \"date\": 1694301780619,\n            \"dateOfPosted\": 1667532942368,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.13788400000001,\n                    \"lon\": -64.7721581\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Elmwood Dr, Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"WE ARE LOOKING FOR “PART-TIME CASHIER”The cashier is responsible for providing exceptional customer service in a high energy, demanding environment. Cashiers are required to process credit/debit card and cash transactions using an electronic register. Other responsibilities include daily store maintenance, unpacking and stocking merchandise, store cleaning (inside and outside), counting products and cash floats, as well as other store specific duties.JOB DUTIES & RESPONSIBILITIESPerform visual checks of store (inside and outside)Provide prompt, personalized and courteous customer serviceCash Handling, use of POS System and Inventory Monitoring/ BalancingAbide by all policies, procedures, operational guidelines, and government regulationsPrepare ice, drink (coffee, slushies), and food.Execute daily store cleaning maintenance (e.g. mopping, sweeping, dusting, emptying garbage, etc)Any task required by management in order to run the business efficientlyEXPECTATIONSStrong verbal and written communication skillsExceptional customer service skillsAccountable and DependableAttention to detailAble to work effectively in groups, as well as independentlyExcellent organization skillsStrong work ethic and positive team attitudeAbility to multitaskAble to work a flexible schedule including days, evenings, and weekends (scheduling will be discussed at interview).Job Types: Permanent, Part-timeSalary: From $13.75 per hourShift:8 hour shiftAbility to commute/relocate:Moncton, NB: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)\",\n            \"location\": \"Elmwood Dr, Moncton, NB\"\n        },\n        {\n            \"id\": \"7F0971D60053BD82823E5399BECB2718\",\n            \"cityName\": \"3381 Steeles Avenue, Suite 200, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=33040768d405745a\",\n            \"jobName\": \"Customer Service Representative I\",\n            \"companyName\": \"Global Payments\",\n            \"rowSalary\": \"$17.05 an hour\",\n            \"date\": 1694301755334,\n            \"dateOfPosted\": 1665752766809,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.577719,\n                    \"lon\": -79.831102\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halton Hills\",\n                \"formattedAddress\": \"Steeles Ave, Halton Hills, ON L0P, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halton Hills\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Every day, Global Payments makes it possible for millions of people to move money between buyers and sellers using our payments solutions for credit, debit, prepaid and merchant services. Our worldwide team helps over 3 million companies, more than 1,300 financial institutions and over 600 million cardholders grow with confidence and achieve amazing results. We are driven by our passion for success and we are proud to deliver best-in-class payment technology and software solutions. Join our dynamic team and make your mark on the payments technology landscape of tomorrow. Who We Are Every day, the people of TSYS (A Global Payments’ Company) improve lives and businesses around the globe through our payment processing capabilities and Customer Service. We make it possible for millions of people to move money between buyers and sellers using our payments solutions including credit, prepaid, and merchant services. We are People-Centered Payments®, and our team has the unique opportunity to help create a world in which payments make people’s lives easier and better. This is both a tremendous honour and important responsibility for those who accept the challenge. If you are looking to make a valuable difference for people everywhere – and for yourself – TSYS may be the right place for you!Why Us? What We Offer Full-time, permanent employment with a predictable and stable schedule $17.05/hour Work from Home position – we supply the equipment! Opportunities for over-time Shift premiums available Competitive benefits that include extended health care, dental, and vision care Retirement Savings Plan (employer match up to 5%) Employee Stock Purchase Plan Paid Training (during daytime hours only) Employee Assistance Program available for your use as early as your first day on the job What Role Will You Play? As a Customer Service Representative, you would: Respond to customer inquiries via telephone, email, SMS and Chat to provide problem resolution in accordance with the organization's service standards. Receive and/or place telephone calls which are predominantly routine, but may require deviation from standard screens, scripts, and procedures. Answer customer telephone inquiries, orders, service needs and complaints, respond where applicable or direct to technical/service areas. Maintain detailed and current knowledge of the company's/assigned client's products and services. Analyze customer service needs for communication to service and technical departments, when applicable Who You Are: People and Customer Oriented : You are not only great at talking on the phone, but you are friendly, personable, and a natural-born problem solver A Team Player : You’re ready to join a tight-knit team that works closely with one another to meet and exceed the expectations of our customers Organized: You can calmly and positively handle conversations with real people, all while multitasking efficiently Education: You have a minimum of a High School Diploma (or equivalent) or higher Ready for a New Challenge: No relevant experience is required for the role, we offer comprehensive training to build on your current skills to help you excel in this role. Do you think you’ve found your calling? Apply to this posting today! TSYS and Global Payments Inc. is an equal opportunity employer. We provide equal employment opportunities to all employees and applicants for employment without regard to race, color, religion, sex (including pregnancy), national origin, ancestry, age, marital status, sexual orientation, gender identity or expression, disability, veteran status, genetic information or any other basis protected by law. Those applicants requiring reasonable accommodation to the application and/or interview process should notify a representative of the Human Resources Department. Global Payments Inc. is an equal opportunity employer. Global Payments provides equal employment opportunities to all employees and applicants for employment without regard to race, color, religion, sex (including pregnancy), national origin, ancestry, age, marital status, sexual orientation, gender identity or expression, disability, veteran status, genetic information or any other basis protected by law. Those applicants requiring reasonable accommodation to the application and/or interview process should notify a representative of the Human Resources Department.\",\n            \"location\": \"Steeles Ave, Hornby, ON\"\n        },\n        {\n            \"id\": \"0DDCAF84D35AF8487838AA221ECE5A51\",\n            \"cityName\": \"530 Portland St, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c1dd064786867d2b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Co-Operators Insurance & Financial Services\",\n            \"rowSalary\": \"$35,000–$40,000 a year\",\n            \"date\": 1694301331758,\n            \"dateOfPosted\": 1693438646160,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.6705489,\n                    \"lon\": -63.5360417\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Portland St, Dartmouth, NS, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Portland St, Dartmouth, NS\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position: Customer Service RepresentativeJob Description:The Customer Service Representative is ensuring our daily administrative activities are handled in a timely and accurate manner. They manage agency administrative processes and ensure the agency stays on track for daily and annual goals.The Customer Service Representative is the team’s first point-of-contact for our clients. They should take pride in delivering and servicing client inquiries and have the ability and initiative to take on new and challenging assignments. They should also be able to work cooperatively, with our team, to accomplish objectives.This is a full-time position: Monday to Friday, 9:00-5:00pm. The office is in Dartmouth, Nova Scotia and our Customer Service Representative is required to work in the office every day.Roles and responsibilities:· First responder to client walk-ins, phone calls and Group email and assisting them accordingly.· Manage the agency’s leads.· Take payments, balance daily.· Responsible for filing paperwork for all lines of business.· Call clients to remind them of renewals.· Manage Policy Centre activities and assign them accordingly.· Manage all Billing Centre activities daily.· Manage all incoming, outgoing mail, and returned mail.· Book Client Reviews for the agency.· Any other duties necessary to reach the agency objectives.Working Conditions:· Regular office environment.Qualifications and Skills:· Skilled in communication (verbal and written)· Strong interpersonal skills.· Strong organizational and time management skills.· Candidate must be comfortable in a technology-dependent environment including proficiency with Microsoft Office and other corporate software (training in-house)· The successful candidate shall be subject to a Criminal Record and Consumer History background check as a condition of employment.Experience required:· Minimum 2 years working in Administration in an office environment.Job Types: Full-time, PermanentSalary: $35,000.00-$40,000.00 per yearBenefits:Dental careDisability insuranceEmployee assistance programOn-site parkingPaid time offVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayNo weekendsSupplemental pay types:Bonus payAbility to commute/relocate:Dartmouth, NS B2Y 4V6: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Office Administration: 2 years (required)Customer service: 2 years (required)Shift availability:Day Shift (preferred)Work Location: In personApplication deadline: 2023-09-08Expected start date: 2023-10-02\",\n            \"location\": \"Portland St, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"F11E20882C55B2DF10B92E414B85DFE5\",\n            \"cityName\": \"Bow SS Agency. in Windsor, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=399f9b1602b7e150\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Bow Ss Agency.\",\n            \"rowSalary\": \"$45,000–$50,000 a year\",\n            \"date\": 1694300363116,\n            \"dateOfPosted\": 1687800200458,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.3149367,\n                    \"lon\": -83.03636329999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Windsor\",\n                \"formattedAddress\": \"Windsor, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Essex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Windsor\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Benefits of working with us:Weekly Pay and Uncapped CommissionHybrid office with remote flexibility$60k plus first year average incomeBonusesResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingWhat are we looking for from you?Strong communication and interpersonal skillsA positive attitude and results-oriented work ethicAn ability to self-monitor progress on project goals and employ corrective actions as necessaryDemonstrated problem-solving skillsResults-oriented work ethicAble to work both independently and within a team environmentJob Requirements:Help customers using zoom, facetime, over the phone or in personServe as a customer service professional inputting order information, pricing, product information and catalog requestsEnsure delivery of excellent customer service through timely, accurate and professional communicationWork alongside executive staff members to streamline effortsLearn our ERP systemIf you feel that you possess the qualities that we are looking for and would like to see if you are a fit for our company, apply now! I will set you up with an interview at the soonest available date. We will email you back promptly, so please check your emails for a response.Job Types: Full-time, PermanentSalary: $45,000.00-$50,000.00 per yearBenefits:Dental careEmployee assistance programExtended health careOn-site parkingPaid time offRRSP matchSchedule:Monday to FridaySupplemental pay types:Bonus payCommission payOvertime payTipsEducation:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Windsor, ON\"\n        },\n        {\n            \"id\": \"0A31FA82AD95B15AF2DA01FFB4BA7360\",\n            \"cityName\": \"Greater Sudbury, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4814f519f43230ad\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Pinchman's Cafe & Bakery\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694300325825,\n            \"dateOfPosted\": 1694300325624,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.4917317,\n                    \"lon\": -80.99302899999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Greater Sudbury\",\n                \"formattedAddress\": \"Greater Sudbury, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Greater Sudbury Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Greater Sudbury\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"APPLICANTS MUST BE AVAILABLE TO WORK MORNING/LUNCH/DAY SHIFTS DURING THE WEEK. BUSY BAKERY IN THE SOUTH END OF SUDBURY, PINCHMANS HAS A SOLID REPUTATION FOR FRENCH AND INTERNATIONAL BAKED GOODS. COME AND DISCOVER THE BENEFITS OF WORKING FOR A LOCALLY, INDEPENDENTLY OWNED BUSINESS.Job Types: Permanent, Full-timeSalary: From $16.00 per hourExpected hours: 20 – 35 per weekBenefits:Discounted or free foodOn-site parkingStore discountSchedule:Day shiftSupplemental pay types:TipsCOVID-19 considerations:YESEducation:Secondary School (required)Shift availability:Day Shift (required)Work Location: In personExpected start date: 2023-09-19\",\n            \"location\": \"Greater Sudbury, ON\"\n        },\n        {\n            \"id\": \"0ED548825D2C04AE7439C9FDCDFCE52E\",\n            \"cityName\": \"1888 West Broadway, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3ca140ba3644d2fc\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Le Coq Frit\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694299680524,\n            \"dateOfPosted\": 1670761444528,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.26376459999999,\n                    \"lon\": -123.14866\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Broadway, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"-serving-bussing-phone orders for take-out-POS system, 3rd party delivery tablet, payment processing-take-out prep for packaging orders-cleaning duties-various other related dutiesMust be able to work during weekday(Monday - Friday between 11-9pm)Job Types: Permanent, Part-timeSalary: From $16.00 per hourSchedule:HolidaysMonday to FridayMorning shiftSupplemental pay types:TipsCOVID-19 considerations:Required to wear a mask. Sanitize surfaces after use.Work Location: In person\",\n            \"location\": \"Broadway WR\"\n        },\n        {\n            \"id\": \"840D5EA76DF2E534234A571BED1E6F7B\",\n            \"cityName\": \"3901 11 Ave NE, Salmon Arm, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0ca5916b0d132cf0\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Enterprise Holdings\",\n            \"rowSalary\": \"$18.40 an hour\",\n            \"date\": 1694299483712,\n            \"dateOfPosted\": 1692374137337,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.7529838,\n                    \"lon\": -119.2594938\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Salmon Arm\",\n                \"formattedAddress\": \"73 Ave NE, Salmon Arm, BC V1E, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Columbia-Shuswap\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Salmon Arm\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" The Customer Assistance Representative Sr (CAR Sr) will provide a high level of customer service by assisting both internal and external customers, primarily face-to-face, supporting their branch and rental needs. The CAR Sr will gain knowledge through local training and hands-on experience to provide administrative support, service customers, and act as a rental back-up in a large home city branch or airport location.  Opening available at the following branch location: 3901 11 Ave Ne, Salmon Arm, BC. V1E 2S2 This is a full time position that pays $18.40 / hour We offer:  Paid time off Employee discount Retirement savings plan Extended Health Benefits (Medical, Prescription Drug, Dental and Vision) Life Insurance Training and development Schedule Monday-Friday: 8am-5pm Responsibilities: Take incoming calls- reservations, rate quotes, general questions and answers, provide information and resolution for customers, other branches, insurance companies, dealerships, repair shops and other vendors  Manage outgoing calls for callback management, A/Rs and miscellaneous calls as assigned  Provide a high level of customer service by assisting customers and assessing their rental needs in person and over the phone  Meet and greet customers in a friendly and timely manner  Provide directions and general assistance  Assist to assess condition of rental upon return  Process returns, check-ins and exit kiosk transactions  Effectively market the company while picking up customers up and/or dropping off customer in a safe and courteous manner and assisting customers as needed  Understand and communicate rental terms and conditions, vehicle features and other services  May sell optional protection products, upgrades, fuel options and other additional equipment  Responsible for notifying Management of any known vehicle problems and any required vehicle maintenance  Clean vehicle interior and exterior by hand or by operating washing equipment when needed  Perform various administrative and basic accounting functions such as: research and billing support tasks, accounts receivables, transfer and key logs, run miscellaneous reports, supply maintenance, process customer billing  Perform miscellaneous and backup duties job-related duties as assigned  Equal Opportunity Employer/Disability/Veterans Qualifications: Must be at least 18 years of age. High school diploma or above required; some college preferred Must have at least 1 year prior customer service, retail, or administrative support experience Must have a valid Class 5 drivers license with no more than 2 moving violations and/or at-fault accidents on driving record in the past 3 years No drug or alcohol related conviction on driving record in the past 5 years Must be authorized to work in Canada and not require work authorization sponsorship by our company for this position now or in the future.  Apart from religious observation, must be able to work the following schedule(s):  Monday-Friday 8am-5pm\",\n            \"location\": \"Ave NE, Salmon Arm, BC\"\n        },\n        {\n            \"id\": \"4805B38E5FBBE36EA956CBB3911E1376\",\n            \"cityName\": \"231 Lombard St, Smiths Falls, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=41fc43654c3d11af\",\n            \"jobName\": \"Customer Service\",\n            \"companyName\": \"Peavey Industries (Peavey Mart)\",\n            \"rowSalary\": \"Up to $15.50 an hour\",\n            \"date\": 1694299332430,\n            \"dateOfPosted\": 1652194775677,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.8872851,\n                    \"lon\": -76.033272\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Smiths Falls\",\n                \"formattedAddress\": \"Lombard St, Smiths Falls, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Lanark County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Smiths Falls\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Corporate Office and Distribution CentreRegional Office and Distribution Centre 7740 40 Avenue, Red Deer, AB T4P 2H9 1000 Clarke Road, London, ON N5V 3A9Tel: 403.346.8991 Tel: 519.453.5270Customer Service Associate Reports to: Department Lead, Supervisor, Store Management TeamDepartment: RetailJob Overview: The Customer Service Associate is a customer service specialist. Customer Service Associates are responsible for advising customers and processing customer purchases/returns. When not attending to a customer, the Customer Service Associate stocks shelves, assists in setting up displays, prices product, and maintains the cleanliness of the store.Responsibilities Warmly approaching and greeting customers.Advising customers on products and suggesting solutions to their needs.Providing a high level of customer service.Encouraging further business by thanking customers and asking for them to come back.Help customers with concerns and put them in contact with a Supervisor as needed.Answering the telephone in a warm and friendly mannerLearn and maintain a product knowledge of store merchandiseHelping to set up displays as directed by store management teamProvide customer carry outs and load products for customers. Use Team Lift when needed.Weigh, measure, and cut merchandise to fill customer orders.Establishing/identifying prices for itemsKeying or scanning merchandise for customer purchaseTotal and receive payment for merchandiseIssue receipts, refunds, credits, or change due to customers per policyEnsuring proper return and refund policy is followed, including Management sign-offWrapping or bagging merchandise purchased by the customerCount money in cash drawers at the beginning of shifts to verify accuracyManager on duty verifies opening and closing cash countsStocking/Re-stocking merchandise as neededMaintaining cleanliness of the store and checkout areaMerchandising, pricing and tasking the point of purchase area when there are no customers in lineHelp with receiving on an as needed basisUse safe work procedures while setting a good example to fellow employeesCarry out work in a manner that will not create a hazard to themselves or othersProud to be 100% Canadian and Employee Owned Corporate Office and Distribution CentreRegional Office and Distribution Centre 7740 40 Avenue, Red Deer, AB T4P 2H9 1000 Clarke Road, London, ON N5V 3A9Tel: 403.346.8991 Tel: 519.453.5270Work with co-workers and members of the Safety Committee to help create a safe working environment by making safety suggestions and recommendationsReport any accidents, incidents, near misses, injuries, and/or occupational health concerns to a safety committee memberFollow Peavey Industries LP medical and first aid proceduresPositively communicate and demonstrate the company’s Core Values.Supervisory Responsibilities NoneKnowledge, Skills, and Abilities Required Maintaining a customer first, positive attitudeHigh attention to detailAbility to count, total, and work with numbersAbility to learn and operate till technologyStaying calm and attentive in a busy environmentAbility to approach customers, listen attentively, and use suggestive selling.Ability to multi-taskQualifications On the job training or previous experienceWorking Conditions Standing for extended periods, walking long distances to move/handle merchandise and provide customer serviceLifting up to 40lbs. and maintaining fitness level to perform all functions as set forth aboveOperating keyboard, scanning, and touch screen till technology in a repetitive mannerJob Type: Part-timePart-time hours: 20 per weekSalary: Up to $15.50 per hourSupplemental pay types:Bonus payEducation:Secondary School (preferred)Experience:Customer service: 1 year (preferred)\",\n            \"location\": \"Lombard Street, Smiths Falls, ON\"\n        },\n        {\n            \"id\": \"F2DAE9E117814CB901FAAD05F02E2F15\",\n            \"cityName\": \"Canada\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6433a2e03f7b5eaa\",\n            \"jobName\": \"Bilingual Customer Service Specialist\",\n            \"companyName\": \"Bpa International Inc\",\n            \"rowSalary\": \"From $18 an hour\",\n            \"date\": 1694299277768,\n            \"dateOfPosted\": 1692357148334,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.83385,\n                    \"lon\": -119.5236098\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Okanagan Lake, British Columbia, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Bilingual Customer Service SpecialistRemote Work from Home Position, Canada*Overview of Job Function*Conducting outbound call surveys to customers who recently received services from our client. You will receive training in conducting the surveys and responding to general questions. Your survey results will be compiled to provide our client with insights on the customers’ feedback in order to help them improve customer satisfaction.*Principal Duties and Essential Responsibilities*Attending training program and calibration sessionsConduct a survey with the customer and document detailed customer feedback, maintaining a high level of quality.Demonstrate identified winning behaviors.Successfully navigate the customer software applications and systems.Ensure all surveys are completed in a timely manner and in accordance with the project requirements.Ensure compliance with all up-to-date health and safety regulations and procedures maintaining a safe working environment.Comply with all BPA policies and procedures and maintain the highest standards of Client and information confidentiality.*Job Requirements*Bi-lingual Canadian French and EnglishA passion for customers and the ability to recognize excellent customer service.Excellent communication skillsDesire to develop skills in providing clear, objective, feedback to our clients.Focus and attention to detail to provide accurate assessments to our clients.Comfortable navigating and learning computer programs/systemsAbility to work to tight targets and deadlines.Fast, reliable, internet connectionAs a homeworker, a dedicated space where you can focus and provide accurate assessments is required.Comfortable troubleshooting basic internet and computer issues*Preferred Requirements*Call Center experienceOutbound Call Surveyor experience*About Us*At BPA Quality, we believe customer engagement is at the core of every successful global brand. Our mission is to help organizations discover opportunities to connect to their customers positively and efficiently. We hire innovators with a passion for customers and drive for quality. Our commitment is to attract and retain talented, diverse and engaged teams that create a collaborative environment that openly celebrates all cultures and affords personal and professional growth opportunities.*More Information*As an equal opportunity employer, BPA Quality prides itself on providing employees with a work environment in which all individuals are treated with respect and dignity. This means we are committed to providing equal opportunity to all qualified employees and applicants for employment without regard to one’s race, color, religion, national origin, age, sex (including pregnancy, sex stereotyping, gender identity, gender expression, or transgender status), disability, alienage or citizenship status, marital status, creed, genetic predisposition or carrier status, sexual orientation, Veteran status, political affiliation or any other classification or characteristic protected by applicable federal, state or local laws. This policy applies to all terms and conditions of employment including but not limited to hiring, placement, promotion, compensation, training, leave of absence or termination.*Job Info*Job Schedule: Full and Part TimeLocation: Remote Homeworker, CanadaStatus: Non- Exempt/ HourlyStarting Salary-18 per hour*Spécialiste du Service à la Clientèle Bilingue - Télétravail*Télétravail, Canada*Aperçu des descriptions de tâches*Mener des sondages téléphoniques auprès des consommateurs qui ont récemment reçu des services de notre client. Vous recevrez une formation dans le but d’effectuer des sondages et répondre aux questions générales. Les résultats du sondage seront compilés pour fournir un aperçus des commentaires des consommateurs afin d’aider notre client à améliorer la satisfaction de la clientèle.*Fonctions principales et responsabilités essentielles*Assister au programme de formation et aux séances d’échantillonnage.Mener des sondages auprès des consommateurs et documenter les commentaires détaillés, en maintenant un haut niveau de qualité.Démontrer un comportement positif.Naviguer avec succès dans le système de gestion du consommateur.S’assurer que tous les sondages soient réalisés en temps opportun et conformément aux exigences du projet.Assurer le respect de tous les réglementations et procédures de santé et sécurité afin de maintenir un environment de travail sécuritaire.Respecter les procédures de BPA. Maintenir les normes et les informations confidentiel du client.*Compétences Requises*Bilingue Français et Anglais CanadienÊtre passionné et avoir la capacité de reconnaître un excellent service à la clientèle.Excellente faculté à communiqué.Une désir de développer des compétences pour fournir une rétroaction claire et objective à nos clients.Attention et souci du détail pour fournir une évaluation précise à nos clients.Naviguer confortablement et apprendre les programmes/systèmes du logiciel.Capacité à travailler aves des objectifs et des délais serrés.Connection internet rapide et fiable.Pour le Télétravail dédié un espace où vous pouvez vous concentrer et fournir une évaluation précise est nécessaire.À l’aise pour résoudre les problèmes de base liés à Internet et à l’ordinateur*Exigences Requises*Expérience en centre d’appelsExpérience en sondages téléphoniqueÀ propos de nousChez BPA Quality, nous croyons que l’engagement du client est au coeur de toute compagnie mondiale prospère. Notre mission est d’aider les organizations à découvrir des opportunités de se connecter à leurs clients de manière positive et efficace. Nous embauchons des innovateurs passionnés pour les consommateurs et soucieux de la qualité. Notre engagement est d’attirer et de retenir des équipes talentueuses, diversifiées et engagées qui créent un environment collaboratif qui célèbre ouvertement toutes les cultures et offre des opportunités de croissance personnelle et professionnelle.*Plus d’informations*En tant qu’employeur équitable, BPA Quality est fière d’offrir à ses employés un environnement de travail dans lequel tous les individus sont traités aves respect et dignité. Cela signifie que nous nous engageons à offrir des chances égales à tous les employés qualifiés et candidats à l’emploi sans égard à la race, la couleur, la religion, nationalité, l’âge, le sexe (incluant grossesse, les stéréotype sexuels, l’identité de genre, l’expression de genre ou le statu transgenre) handicap, aliénation ou statut citoyen, état matrimonial, croyance, prédisposition génétique ou statut de porteur, orientation sexuelle, Vétéran, affiliation politique ou classification ou caractéristique protégée par les lois fédérales, les états ou locales. Cette politique s’applique à toutes les conditions d’emploi, y compris, mais sans limiter, l’embauche, le placement, la promotion, la rémunération, la formation, les congés ou la démission.*Information sur l’emploi*Horaire: Temps plein et temps partielLieu: Télétravail, CanadaStatus: Non exonéré/ l’heureSalaire débutant à 18$/hrsType d'emploi : Temps PleinRémunération : 18,00$ par heure\",\n            \"location\": \"Okanagan\"\n        },\n        {\n            \"id\": \"A8374FB95DEE31F8CB676CDC518BD54B\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=54eca50df33eef7d\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Thai Express\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694299247277,\n            \"dateOfPosted\": 1664104548424,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Richmond Hillcrest mallSzechuan(Chinese Fast food Restaurant)hiring a full/part timecashier or Counter helpwelcome student employment !9350 yonge st Richmond hill.(16th and Yonge Streets )Tel James Yao :4168285850职位类型：全职, 兼职, 临时工, 合同工兼职小时数： 每周 30-40薪资： 每小时$16.00预期开始日期： 25-09-2022\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"38D4C4C72DB1E14270D98D7048781E79\",\n            \"cityName\": \"Richmond Hill, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dc21de333931e14f\",\n            \"jobName\": \"Customer Service Supervisor (Except Financial Services)\",\n            \"companyName\": \"Media Technologies\",\n            \"rowSalary\": \"$28.25–$30.00 an hour\",\n            \"date\": 1694298944538,\n            \"dateOfPosted\": 1692353458812,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8828401,\n                    \"lon\": -79.4402808\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Richmond Hill\",\n                \"formattedAddress\": \"Richmond Hill, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Richmond Hill\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 29.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    29.0\n                ],\n                \"range\": {\n                    \"gte\": 29.0,\n                    \"gt\": null,\n                    \"lte\": 29.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: College/CEGEPExperience: 1 year to less than 2 yearsTasks Conduct performance reviews Perform same duties as workers supervised Co-ordinate, assign and review work Ensure smooth operation of computer systems, equipment and machinery, and arrange for maintenance and repair work Establish work schedules and procedures and co-ordinate activities with other work units or departments Examine and verify accuracy of work and authorize routine deposits and withdrawals Identify training needs and train workers in job duties and company policies Resolve work-related problems and prepare and submit progress and other reports Supervision Customer service clerk 1 to 2 people Work conditions and physical capabilities Attention to detail Fast-paced environment Large workload Tight deadlines Work under pressure Personal suitability Accurate Client focus Dependability Efficient interpersonal skills Excellent oral communication Excellent written communication Initiative Interpersonal awareness Judgement Organized Reliability Team playerWork Term: PermanentWork Language: EnglishHours: 30 hours per week\",\n            \"location\": \"Richmond Hill, ON\"\n        },\n        {\n            \"id\": \"CA227E9EA661F4F89744912AE807D2E9\",\n            \"cityName\": \"503 Centennial Road North, Scarborough, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=733045b4fe5ec279\",\n            \"jobName\": \"Customer Service Operator\",\n            \"companyName\": \"Answer North America\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694298898419,\n            \"dateOfPosted\": 1692281088038,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7935509,\n                    \"lon\": -79.1533266\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Centennial Rd N, Toronto, ON M1C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Centennial Road North, Scarborough, ON Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Part-time work required in a call centre from the hours of 3pm-11pm on Thursdays, Fridays, Saturdays, and Sundays. Potential other shift available at the same time on Mondays-Wednesdays. You will be required to answer phone calls for a number of companies and dispatch calls/messages out as required for each client.Ideally, you will have strong customer service skills and are able to listen to callers to determine what they need and provide top notch service. Typing proficiency is a plus as you will relay messages through typing emails to clients, as well as some computer skills (Microsoft Office).Training will be conducted in our office in Scarborough. You must be able to work 3pm-11pm, preference will be given to anyone who is able to work occasional overnight shifts, approximately two per month as well as occasional back-up or coverage shifts. Our office is open 365 days of the year, so you may be required to work some holidays.For the quickest response, call us at 416-724-8333!Job Type: Part-timePart-time hours: 20-30 per weekSalary: $16.50 per hourSchedule:8 hour shiftEvening shiftNight shiftWork Location: In person\",\n            \"location\": \"Centennial Road North, Scarborough, ON\"\n        },\n        {\n            \"id\": \"AC0B705D19223E0609B72E6C3381675B\",\n            \"cityName\": \"7 Copeland Street, East York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c23757eafe001f37\",\n            \"jobName\": \"Customer Service Representative/Receptionist\",\n            \"companyName\": \"My Storage\",\n            \"rowSalary\": \"$18–$22 an hour\",\n            \"date\": 1694298546930,\n            \"dateOfPosted\": 1693427319621,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7114575,\n                    \"lon\": -79.3535203\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Copeland St, Toronto, ON M4G, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Copeland Street, East York, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Hourly pay rate plus commission and travel payJob Responsibilities include;- Managing/maintaining a facility(s) and completing site checks, sweeping halls, and cleaning storage units- Provide assistance to customers, taking payments, move in's, etc..- Completing daily and weekly reports pertaining to your site(s)- Cleaning office space daily after use, mopping, disinfecting, cleaning windows, dusting, etc.. as well as keeping facility up to standards- Have a vehicle and valid drivers license to complete bank runs- Be able to go to different GTA Locations and perform same tasks at each site- digital content creation, run kijij ads, promotions, post on social mediaEmployees need to be;- Punctual and reliable- have full availability including weekends- computer literate, customer service capabilities, phone etiquette- Great communication skills while handling customers and working in an office aloneAll candidates can forward a copy of their resume via email and will be contacted for a interview meeting through zoom.Job Types: Full-time, PermanentSalary: $18.00-$22.00 per hourSchedule:10 hour shift8 hour shiftEvery WeekendWeekends as neededSupplemental pay types:Commission payCOVID-19 considerations:All customers need to wear masks and maintain social distance, sanitize space after use.Application question(s):Do you have your own vehicle to travel to different facilities? MandatoryEducation:Secondary School (preferred)Experience:customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Copeland Street, East York, ON\"\n        },\n        {\n            \"id\": \"E93153BD3FE3FCF3CC4212747C37879D\",\n            \"cityName\": \"Vanderhoof, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dda9d0001d41a774\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Ymca Of Northern Bc\",\n            \"rowSalary\": \"$16.20 an hour\",\n            \"date\": 1694298346526,\n            \"dateOfPosted\": 1667018546571,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 54.01397979999999,\n                    \"lon\": -124.0129801\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vanderhoof\",\n                \"formattedAddress\": \"Vanderhoof, BC V0J, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Bulkley-Nechako\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vanderhoof\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Health, Fitness, and Aquatics  Employment Opportunities P.O. Box 1808 • 2020 Massey Drive • Prince George • BC • V2L 4V7 | 250 562 9341 | nbc.ymca.ca Customer Service Representative Responsibilities and abilities  The Customer Service Representative, reporting to the Centre Manager,  is responsible for delivering excellent service through our SAM  Standards. The Customer Service Representative ensures that the front  counter is welcoming, friendly and operated in a clean, efficient and  effective manner. Fostering a culture of continuous improvement to delivering a 5  star customer service experience. Detail oriented, self-starter and organized. Excellent communication skills. Excellent time management and teamwork abilities. Occasional participation in Y community events. Location  Vanderhoof Aquatic CentreHours  Flexible Hours Part-time and Full-time positionsWhat you will gain  $16.20/hr starting wage YMCA Membership Health, Fitness, and Aquatics  Employment Opportunities P.O. Box 1808 • 2020 Massey Drive • Prince George • BC • V2L 4V7 | 250 562 9341 | nbc.ymca.ca Flexibility required to meet changing demands. Qualifications A combination of experience and training related to customer service. Experience working within a customer service orientated setting is preferred. Current First Aid and CPR certification or willingness to complete. Satisfactory criminal record check and clear vulnerable sector search. 3 satisfactory professional references Competencies  In addition to bringing a commitment to YMCA vision and values, and an orientation  to service, the candidate should possess the following competencies: 1. Leadership/Coaching – Ability to direct and develop performance of others to achieve desired  result. 2. Negotiation/Communication/Interpersonal Skills Able to speak, write, listen, and secure  information in a variety of settings. Ability to cooperate with others to achieve results. Ability to  create and build relationships inside and outside the organization. 3. Planning/Organizing – Ability to establish a clearly defined and effective course of action for self  and others to accomplish short and long term goals. 4. Problem Solving – Ability to identify an issue, gathers and processes relevant information,  determine possible solutions, selects appropriate responses and implements and evaluates  them. 5. Service Strategy – Ability to identify the needs and wants of members/participants as a priority  and respond in an effective and timely manner to enhance every person’s YMCA experience. 6. Community Awareness and Understanding – Demonstrates and promotes a personal  understanding of and appreciation for the vision, mission, and values of the organization.How to apply The YMCA thanks all those interested in this position.  Only those selected for an interview will be contacted. Please apply with cover letter, resume, and  application (found at nbc.ymca.ca) to: Sara Lungtoo  Centre Manager- Vanderhoof Aquatic Centre and  Integris Community Centre  sara.lungtoo@nbc.ymca.ca\",\n            \"location\": \"Vanderhoof, BC\"\n        },\n        {\n            \"id\": \"880AEB8542E54B5C7E875C2B240346CE\",\n            \"cityName\": \"25515 Township Road 500, Leduc, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a36000d76d9d1f0c\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Raodia Agency\",\n            \"rowSalary\": \"$45,000–$55,000 a year\",\n            \"date\": 1694298271686,\n            \"dateOfPosted\": 1687800194572,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.2704335,\n                    \"lon\": -113.5669902\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Leduc\",\n                \"formattedAddress\": \"5406 Discovery Way Unit 101a, Leduc, AB T9E 8L9, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Leduc County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Leduc\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 45000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    45000.0\n                ],\n                \"range\": {\n                    \"gte\": 45000.0,\n                    \"gt\": null,\n                    \"lte\": 45000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Here’s why you should apply:Weekly Advances and BonusesHybrid office with remote flexibility65k plus first year average incomeResidual IncomeExceptional commission ratesTrip Incentives and other benefitsFull TrainingPrimary Functions:Serve as the information center for all customers, community contacts, and other company representativesMust be aware of daily activities and administrative responsibilitiesInteract with customers to provide information in response to inquiries, concerns and requests about products and servicesMust professionally handle all phone calls and route callersAnswers questions in a timely and courteous mannerProduce reports, forms, correspondence, orders and other materials as neededPerform other duties as assigned.QualificationsSolid organization and active listening skillsRazor sharp attention to detail with fast and accurate data entryCustomer service focused with creative problem solving skillsAbility to anticipate and advocate for your customers needsAbility to multi-task, prioritize and adjust to changing needsJust like your resume, a job description never tells the full story. Apply today and if you've got what it takes, we'd love to discuss everything in further detail. We know there's a lot more you'd like to know, why wait? Apply today!Job Types: Full-time, PermanentSalary: $45,000.00-$55,000.00 per yearBenefits:Dental careExtended health careOn-site parkingPaid time offFlexible Language Requirement:English not requiredFrench not requiredSchedule:8 hour shiftMonday to FridayWeekend availabilitySupplemental pay types:Bonus payOvertime payTipsEducation:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Township Road, Leduc, AB Canada\"\n        },\n        {\n            \"id\": \"2CDC68C7339DD889CE8D060370FE941F\",\n            \"cityName\": \"700 3rd Line, Oakville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=eebaaceaceea26b7\",\n            \"jobName\": \"Customer Service/Administrative Assistant\",\n            \"companyName\": \"Beauty First\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694298222489,\n            \"dateOfPosted\": 1693421901653,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4283542,\n                    \"lon\": -79.73036499999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oakville\",\n                \"formattedAddress\": \"Third Line, Oakville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"rd Line, Oakville, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"OverviewBeauty First Spa is committed to giving our guests an inclusive, unique experience at every visit to one of our spas. The happiness of our guests is our priority, and it’s what keeps our guests coming back to us. Our employees build meaningful relationships with each one of our guests to ensure we are always prioritizing their needs.Major ResponsibilitiesDo admin duties like filing and updating POS system· Engage in incoming and outgoing calls to Pre-book future appointments.· Answering phones and working different shifts and weekend.· Learn about the products inside and out to be able to answer any questions from customers.· Resolve customer complaints/queries via phone, email, mail, or social media (Google, Facebook, Instagram, Whatsapp)· To handle multiple tasks and Utilize computer technology to manage day to day business.· Various administrative duties as required.· Flexibility in hours (Evenings/Weekends)Experience & Skills RequiredHigh-school diploma.Excellent verbal and written communication skills.Passion for finding solutions and providing the best possible customer experience.* Must have proficiency in Excel*· Ability to multitask and communicate with multiple customers at one time.Extremely strong conversational phone skills.Minimum 1-year customer service-related experience.Job Type: 1 Part-time applicant & 1 Full Time applicant requiredSalary: $17.00 per hourJob Types: Full-time, Part-timeSalary: From $17.00 per hourSchedule:8 hour shiftEvening shiftMonday to FridayMorning shiftWeekends as neededAbility to commute/relocate:Oakville, ON L6L 4B1: reliably commute or plan to relocate before starting work (preferred)Education:Secondary School (preferred)Experience:Front desk: 1 year (preferred)Administrative experience: 1 year (preferred)Work Location: In person\",\n            \"location\": \"rd Line, Oakville, ON\"\n        },\n        {\n            \"id\": \"8D23F590328DC000CA25E3EA811936BB\",\n            \"cityName\": \"Nova Scotia\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=77ac2046b6dcbf8f\",\n            \"jobName\": \"Remote Customer Service Agent (Work At Home)\",\n            \"companyName\": \"Mci Careers\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694298077557,\n            \"dateOfPosted\": 1667989583883,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.68198659999999,\n                    \"lon\": -63.744311\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Halifax Regional Municipality\",\n                \"formattedAddress\": \"Nova Scotia, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Halifax Regional Municipality\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" LOCATION: Remote Work-at-Home JOB TYPE: Full-Time PAY TYPES: Hourly + Bonus SALARY: $14.50 / hour BENEFITS & PERKS: REMOTE REPRESENTATIVE: Work-From-Home, Paid Training, Paid Time Off, Medical, Dental, Vision, Life Insurance, Retirement, Flexible Schedules, Company Laptop, Daily Contests, Prizes, Casual Dress Code, Regular Raises APPLICATION DETAILS: No Resume Required, Phone Interview POSITION OVERVIEW:  Remote Customer Service Agent, Work at Home, Bring Your Own Device Looking to work for a fast growing company? In these challenging times, we are offering work at home positions with flexible schedules.  The compensation is competitive. Benefits include paid vacation, variable bonus, and contest incentives.  Your own working PC device and internet broadband at home are required. All it takes to get started is for you to complete an easy online application and an informal interview with a talent acquisition specialist.  -:  POSITION RESPONSIBILITIES:  WHAT DOES A WORK AT HOME CONTACT CENTER REPRESENTATIVE DO? This position supports customer service and sales interactions. This role requires you to interact with hundreds of customers each week across the country to resolve support issues, sell new products and services, and ensure best in class customer experience. In addition to being the best in the business when it comes to customer interactions, you will need to be confident, fully engaged, a team player, and dedicated to bringing a positive and enthusiastic outlook to work each day.  Our entry-level Contact Center Representatives are responsible for the following tasks: Listen to customers, understand their needs, and resolve customer issues Utilize systems and technology to complete account management tasks Recognize sales opportunity and apply sales skills to upgrade Explain and position the products and processes with customers Appropriately escalate customer dissatisfaction with managerial team Ensure first call resolution through problems solving and effective call handling CANDIDATE QUALIFICATIONS:  WONDER IF YOU ARE A GOOD FIT? MCI provides all new employees with world-class training, so all positive, driven, and confident applicants are encouraged to apply. Ideal candidates for this position are highly motivated, energetic, and dedicated.Qualifications Must be 18 years of age or older High school diploma or equivalent Excellent organizational, written, and oral communication skills The ability to type swiftly and accurately (20+ words a minute) Basic knowledge of Microsoft Office Suite (Excel, PowerPoint, Word, Outlook) Basic understanding of Windows operating system Highly reliable with the ability to maintain regular attendance and punctuality The ability to evaluate, troubleshoot, and follow-up on customer issues An aptitude for conflict resolution, problem solving and negotiation Must be customer service oriented (empathetic, responsive, patient, and conscientious) Ability to multi-task, stay focused and self manage Strong team orientation and customer focus The ability to thrive in a fast-paced environment where change and ambiguity prevalent Excellent interpersonal skills and the ability to build relationships with your team and customers CONDITIONS OF EMPLOYMENT: Must be authorized to work in their country of residence (The United States or Canada) Must be willing to submit up to a LEVEL II background and/or security investigation with a fingerprint. Job offers are contingent on background/security investigation results COMPENSATION DETAILS:  WANT AN EMPLOYER THAT VALUES YOUR CONTRIBUTION? We believe that hard work should pay off, so we make sure that our compensation and total rewards are competitive. Standard starting compensation is commensurate with experience. Regular reviews and raises are awarded based on tenure and performance, so our employees make more each year. Employees earn paid time off as well as paid holidays and paid training opportunities. Regular daily, weekly and monthly incentives are part of the overall compensation our team members enjoy and include monetary incentive and prizes such as computers, tablets, phones, TV’s, trips, tickets, and even cars. In addition to our standard group benefits offering for full-time employees following 90-days of employment, all employees are eligible to opt for our MEC medical plan after only 30-days of employment. Benefits options and plans vary slightly by location. JUST A FEW OF THE BENEFITS Medical, Dental, and Vision Coverage Options Paid Time-Off Advancement Opportunity Fun, Engaging Work Environment Casual Dress Code Cash and Prize Contests PHYSICAL REQUIREMENTS:  This job operates in a professional office environment. While performing the duties of this job, the employee will be largely sedentary and will be required to sit/stand for long periods while using a computer and telephone headset. The employee will be regularly required to operate a computer and other office equipment, including a phone, copier, and printer. The employee may occasionally be required to move about the office to accomplish tasks; reach in any direction; raise or lower objects, move objects from place to place, hold onto objects, and move or exert force up to forty (40) pounds.  REASONABLE ACCOMMODATION:  Consistent with the Americans with Disabilities Act (ADA) it is the policy of MCI and affiliates to provide reasonable accommodation when requested by a qualified applicant or employee with a disability unless such accommodation would cause undue hardship. The policy regarding requests for reasonable accommodation applies to all aspects of employment. If reasonable accommodation is needed, please contact Kate Murph, Vice President of Human Resources.  DIVERSITY AND EQUALITY:  At MCI and its subsidiaries, we embrace differences and believe diversity is a benefit to our employees, our company, our customers, and our community. All aspects of employment at MCI are based solely on a person's merit and qualifications. MCI maintains a work environment free from discrimination, one where employees are treated with dignity and respect. All employees share in the responsibility for fulfilling MCI's commitment to a diverse and equal opportunity work environment. MCI does not discriminate against any employee or applicant on the basis of age, ancestry, color, family or medical care leave, gender identity or expression, genetic information, marital status, medical condition, national origin, physical or mental disability, political affiliation, protected veteran status, race, religion, sex (including pregnancy), sexual orientation, or any other characteristic protected by applicable laws, regulations, and ordinances. MCI will consider for employment qualified applicants with criminal histories in a manner consistent with local and federal requirements. MCI will not tolerate discrimination or harassment based on any of these characteristics. We adhere to these principles in all aspects of employment, including recruitment, hiring, training, compensation, promotion, benefits, social and recreational programs, and discipline. In addition, it is the policy of MCI to provide reasonable accommodation to qualified employees who have protected disabilities to the extent required by applicable laws, regulations, and ordinances where an employee works. ABOUT MCI (PARENT COMPANY):  MCI helps customers take on their CX and DX challenges differently, creating industry-leading solutions that deliver exceptional experiences and drive optimal performance. MCI assists companies with business process outsourcing, staff augmentation, contact center customer services, and IT Services needs by providing general and specialized hosting, software, staff, and services.  In 2019 Marlowe Companies Inc. (MCI) was named by Inc. Magazine as Iowa’s Fastest Growing Company in the State of Iowa and was named the 452nd Fastest Growing Privately Company in the USA, making the coveted top 500 for the first time. MCI’s subsidiaries had previously made Inc. Magazine's List of Fastest-Growing Companies 15 times respectively. MCI has fifteen business process outsourcing service delivery facilities in Iowa, Georgia, Florida, Texas, Massachusetts, New Hampshire, South Dakota, New Mexico, California, Kansas, and Nova Scotia.  Driving modernization through digitalization, MCI ensures clients do more for less. MCI is the holding company for a diverse lineup of tech-enabled business services operating companies. MCI organically grows, acquires, and operates companies that have a synergistic products and services portfolios, including but not limited to Automated Contact Center Solutions (ACCS), customer contact management, IT Services (IT Schedule 70), and Temporary and Administrative Professional Staffing (TAPS Schedule 736), Business Process Management (BPM), Business Process Outsourcing (BPO), Claims Processing, Collections, Customer Experience Provider (CXP), Customer Service, Digital Experience Provider (DXP), Account Receivables Management (ARM), Application Software Development, Managed Services, and Technology Services, to mid-market, Federal & enterprise partners. MCI now employs 10,000+ talented individuals with 150+ diverse North American client partners across the following MCI brands: GravisApps, Mass Markets, MCI Federal Services (MFS), The Sydney Call Center, OnBrand24, and Valor Intelligent Processing (VIP). DISCLAIMER:  The purpose of the above job description is to provide potential candidates with a general overview of the role. It's not an all-inclusive list of the duties, responsibilities, skills, and qualifications required for the job. You may be asked by your supervisors or managers to perform other duties. You will be evaluated in part based upon your performance of the tasks listed in this job description. The employer has the right to revise this job description at any time. This job description is not a contract for employment, and either you or the employer may terminate employment at any time, for any reason. REGARDING COVID-19:  As an employer supporting critical Federal, State, Provincial, and Commercial clients, we have taken steps to ensure that we remain operational while taking every precaution possible to prevent the spread of COVID-19 and keep our employees safe. Measures include social distancing for those working on-site, frequent deep cleaning and disinfecting of workstations and common areas, daily contactless temperature checks for those essential employees working on-site, travel policies limiting travel and mandatory quarantine, reporting and quarantine processes and policies for those exposed, and requesting masks to be worn when on-site employees are not at their workstation.REGARDING MASKS To help protect our candidates and employees, we are REQUESTING that all on-site candidates wear a mask to interviews and training. In locations where state or local government has mandated the use of masks, we will abide by the mandate, and REQUIRE masks be worn when on-location. For more information on MCI’s response to COVID-19 please visit www.mci.world/covid-19.\",\n            \"location\": \"Nova Scotia\"\n        },\n        {\n            \"id\": \"9B32476F0CE8163544FBF13D5D573FA5\",\n            \"cityName\": \"88 W Pender St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a67cdbc09b45ea20\",\n            \"jobName\": \"Customer Service And Cooking On Flat Grill\",\n            \"companyName\": \"Milaty Grill\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694298069228,\n            \"dateOfPosted\": 1668245657914,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.28590639999999,\n                    \"lon\": -123.1167774\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"W Pender St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Must have Foodsafe level 1 taking order from customers, taking payment and cooking there meal on the flat grill , cutting vegetables and meat , washing dishes cleaning up the kitchenJob Type: Part-timeSalary: From $17.00 per hourSchedule:4 hour shiftAbility to commute/relocate:VANCOUVER, BC: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Work Location: In person\",\n            \"location\": \"Pender St E, Vancouver, BC\"\n        },\n        {\n            \"id\": \"9F5AD1B2A30A3C389BB96A661F30FDE0\",\n            \"cityName\": \"10505 20 Ave, Blairmore, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=eb0a859823aa1478\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"A & B Liquor Store\",\n            \"rowSalary\": \"$16 an hour\",\n            \"date\": 1694298035765,\n            \"dateOfPosted\": 1688662982149,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.60809889999999,\n                    \"lon\": -114.4394835\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"12305 20 Ave, Blairmore, AB T0K 0E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Crowsnest Pass\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Part time permanent casual position. Average of 2 shifts per week. Possibility of more shifts throughout the summer. Must be physically fit and able to lift repetitively. Must have no prior injuries. Must be available for shifts in the day, evening and weekends. Must live locally. Must have ProServe.Specific Skills - Operate POS System, process money and credit/debit transactions, scan items, count and reconcile float at the end of shift, stock shelves and coolers, help keep the store clean, and greet and assist customers.Business Equipment - POS System, credit/debit machine, price scanner, calculator and fax machine.Essential Skills - Mature, reliable, trustworthy, standing for extended periods, reading text, numeracy, problem solving, decision making, computer use, lifting up to 25lbs., communication, working well with others and alone. Must be flexible about working different shifts, evenings, weekends, and occasional days.Job Types: Part-time, PermanentSalary: $16.00 per hourJob Types: Part-time, Permanent, casualSalary: $16.00 per hourJob Type: Part-timeSalary: $16.00 per hourBenefits:Store discountSchedule:Day shiftEvening shiftWeekend availabilityExperience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Ave, Blairmore, AB\"\n        },\n        {\n            \"id\": \"2B9EA6D7B6C7D6879B0D6C6790A279E1\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=20853ed7f8e44053\",\n            \"jobName\": \"Game Presenter - French Speaking - Customer Service\",\n            \"companyName\": \"Evolution Americas\",\n            \"rowSalary\": \"$17–$24 an hour\",\n            \"date\": 1694297989030,\n            \"dateOfPosted\": 1689698929272,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Company Description  Evolution is a market-leading developer and provider of products and services for online casino entertainment. Our excellence is driven by over 17,000 EVOlutioneers across 30 markets worldwide, working in product innovation, software development, IT solutions, game hosting and business support. Evolution's dynamic and creative environment creates a unique opportunity for personal and professional growth. Our integrated business-to-business solutions guarantee that our clients can always provide an unrivalled online entertainment experience to their players globally. We thrive on remaining an award-winning digital powerhouse of entertainment products and services with an ever-expanding line-up of product brands: Evolution Live, NetEnt, Red Tiger, Ezugi, Big Time Gaming, Nolimit City and DigiWheel. Evolution is a Swedish company founded in 2006 and listed on Nasdaq Nordic (EVO). Job Description  Showcase your vivacious personality as Evolution’s Online Casino Dealer! Rotate between morning and evening shifts from the comfort of our private, state-of-the-art studio located in New Westminster. You’ll host iconic casino games like Blackjack, Poker and Roulette, provide customer service with unlimited virtual players – with the chance to earn unlimited tips. We Offer Generous Compensation Package including: Earn from $17.00 - $24.00 per hour plus monthly performance bonus. Extended Health and Benefit Plan 15 Days Paid Vacation 8 Paid Personal Days 2 Paid Evo Day What You’ll Do Enthusiastically introduce players, the rules of the game and the winners Deal cards, spin a wheel, and announce winners Use quick and accurate handling of cards Research appropriate topics and trivia to discuss with the audience Follow and supervise the updates and amendments in the game Engage in friendly conversation, without offering your opinion (sports, music, and trivia facts) Be presentable and confident in front of the camera Provide Customer Service to players Always use a positive parting remark to end the game conversation Our Benefits At and After Work Work for a casino without smoking, alcohol, loud music, and health hazards Toast your successes on treat days and holiday events Collaborate with approachable, diverse and global co-workers Security-protected office with no physical players in the studio Paid vacation time and paid breaks No experiences required as we will provide paid in-house trainings Company-assistance to obtain Provincial Gaming License Enhanced Covid-19 safety protocols implemented to ensure a safe work environment. Receive up to $750 per employee referral Loyalty Incentives and Employee Discounts Complimentary Night shift taxi drop off service Fun and Engaging Company sponsored Team-building Events Qualifications  Age 19+ High school diploma or equivalent Experience in customer service and hospitality Professional and service-minded with good communications skills Must be able to work a flexible schedule, evenings, weekends and holidays Must be able to obtain Provincial Gaming License (sponsored by the company) Wear an assigned uniform and maintain professional appearance standards Must be comfortable wearing theatrical make-up (foundation, blush) Fluent in French, working knowledge of English Additional Information  #EVOHP About Us Evolution is a market-leading developer and provider of products and services for online casino entertainment. Our excellence is driven by over 17,000 EVOlutioneers across 30 markets worldwide, working in product innovation, software development, IT solutions, game hosting and business support. Evolution's dynamic and creative environment creates a unique opportunity for personal and professional growth. Our integrated business-to-business solutions guarantee that our clients can always provide an unrivalled online entertainment experience to their players globally. We thrive on remaining an award-winning digital powerhouse of entertainment products and services with an ever-expanding line-up of product brands: Evolution Live, NetEnt, Red Tiger, Ezugi, Big Time Gaming, Nolimit City and DigiWheel. Evolution is a Swedish company founded in 2006 and listed on Nasdaq Nordic (EVO).\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"820011F7A45DCAF151416B2528CF532F\",\n            \"cityName\": \"2435 4 St SW, Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=88f4d9b32753cac0\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"La Boulangerie Bakery Cafe\",\n            \"rowSalary\": \"$15 an hour\",\n            \"date\": 1694297895859,\n            \"dateOfPosted\": 1662646022251,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.02468200000001,\n                    \"lon\": -114.093319\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Alfege St SW, Calgary, AB T2T, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"La Boulangerie bakery cafe is looking for friendly Barista and food counter attended to work in a fast paced environment.The job includes: taking orders ,making coffee sandwiches and crepes .Please apply if you are able to work in a full time job .You can drop off resume (please not on lunch time ) or send us emailWork RemotelyNoJob Types: Full-time, PermanentSalary: $15.00 per hour\",\n            \"location\": \"St SW, Calgary, AB\"\n        },\n        {\n            \"id\": \"2C995A2CC17B55260142617D93260CE9\",\n            \"cityName\": \"97 Saramia Cres Unit 2, Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7887fa531531450f\",\n            \"jobName\": \"Customer Service Representative / Admin. Assistant\",\n            \"companyName\": \"Chemsyn Services Inc.\",\n            \"rowSalary\": \"$40,000–$43,000 a year\",\n            \"date\": 1694296651486,\n            \"dateOfPosted\": 1693424110681,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8150008,\n                    \"lon\": -79.5263283\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"60 Saramia Crescent #1, Concord, ON L4K 4J7, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Saramia Cres Unit, Concord, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job SummaryCustomer Service / Admin will be responsible for providing administrative and clerical support. The candidate will provide administrative support in a dynamic environment, and function with a high degree of attention to detail, quality, accuracy and prioritization of work autonomously. The Customer Service / Admin will also have the key responsibility to liaise customers and employees and as such is expected to provide the highest level of customer service addressing all inquiries in a timely and professional manner.Minimum EducationHigh School Diploma or GED requiredMinimum ExperienceFive (5) years experience required in clerical support or related area; two (2) of those years as an Office Administrator II or equivalent administrative experience supporting a manager-level or district staff position.Responsibilities· Provide a variety of complex and time sensitive administrative duties within tight time frames.· Communicate (including phone, email, and direct face to face) with the Company employees and customers in a timely and professional manner· Greet people and direct them to contacts or service areas· Assists with creation of reports, presentations, etc., including researching, compiling, analyzing and/or developing necessary information and materials· Ensures the efficient daily operation of the office and department functions, including maintenance of supplies and equipment· Support The Sales and Service Team daily.· Draft documents, responses, memorandums while ensuring accuracy using intermediate skills in relevant software applications (Word, Excel, Power Point.)Qualifications· Excellent written and verbal communication skills· Coordinates travel arrangements, meetings, updates and maintains calendar appointments.· Prepares required materials for conferences, meetings, calls, and various appointments· Excellent organization and time management skills with an ability to effectively manage complex tasks simultaneously· Ability to deal effectively with multiple priorities and possess tact and diplomacy in dealing with inquiries and requests for information· Demonstrates initiative, high degree of accuracy, and ability to handle a complexity of tasks simultaneously· Strong problem solving skills with an ability to identify problems/issues and take necessary steps to resolve them· Professional and customer service oriented with an ability to work with individuals across all levels of the organization· Self-directed, detail oriented, dependable, and resourceful· Performs other duties as assigned.Schedule:Monday to FridayCOVID-19 considerations:All interviews will be conducted via Zoom or MS TeamsAdditional SkillsTrain other workersIntermediate computer skills, including Microsoft Word, Excel and OutlookPersonal SuitabilityCustomer Service OrientedFlexibilityAccurateTeam playerExcellent oral communicationExcellent written communicationReliabilityOrganizedAbility to multi-taskWe thank everyone for taking the time to apply; only selected candidates will be contacted.Job Type: PermanentSalary: $40,000.00-$43,000.00 per hourJob Types: Full-time, PermanentSalary: $40,000.00-$43,000.00 per yearBenefits:Extended health careSchedule:8 hour shiftWork Location: In person\",\n            \"location\": \"Saramia Cres Unit, Concord, ON\"\n        },\n        {\n            \"id\": \"86C1CA354E32E5CB2CB17748C89B6705\",\n            \"cityName\": \"20330 88 Avenue, Langley, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a54d42d7556b6c04\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Meridian Meats & Seafood Ltd.\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694296162867,\n            \"dateOfPosted\": 1691454540048,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.10396770000001,\n                    \"lon\": -122.6631466\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Langley\",\n                \"formattedAddress\": \"20200 56 Avenue Sunshine Hills Surrey, 102-20200 56 Ave, Langley, BC V3A 851, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Langley\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service ACE (Ambassador of Customer Experience)Join our growing family business! Enjoy a 30% Employee Discount, Benefits, and Flexible Hours.Meridian ACEs give people the best possible experience through serving them well and personally connecting with friendly hospitality.You’ll LOVE this job if you:Have the ability to connect with people in ways that help them feel welcomed, valued, and appreciatedEnjoy being there for others, serving, and providing assistance.No previous experience required.This role is for you if you have:Strong interpersonal skillsAbility to learn quicklyKnowledge of the retail environmentEffective communication skillsAbility to work as part of a teamAbility to lift up to 50 lbs continuously.Ability to work on your feet all day, bending, leaning, crouching, and walking.Ability to work for extended periods of time, in a refrigerated environment (cooler or freezer)Deli or kitchen experience is a plus.Weekday, daytime availability is a must!Job Type: Full & Part-time Positions availableSchedule:20-35 hours per week4–8-hour shiftsDay shifts and/or closing shiftsWage/Salary:starting at $16.75 per hour (dependent upon experience)Bi-annual wage increasesAdvancement opportunitiesBenefits:30% Employee Discount on in-store purchasesHealth & Dental carePaid Sick TimeFlexible ScheduleMeridian is an equal opportunity employer of all qualified individuals. Our workplace is welcoming to people of all backgrounds, orientations, and diversities, and we encourage all to apply.Job Types: Full-time, Part-time, PermanentPart-time hours: 15 - 35 per weekSalary: From $16.75 per hourBenefits:Extended health careOn-site parkingStore discountFlexible Language Requirement:French not requiredSchedule:4 hour shift8 hour shiftDay shiftEvening shiftMonday to FridayWeekend availabilitySupplemental pay types:Overtime payAbility to commute/relocate:Langley, BC: reliably commute or plan to relocate before starting work (required)Application question(s):Are you able to work during the Day come September?Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Avenue, Langley, BC\"\n        },\n        {\n            \"id\": \"6C112ACB1E0D9AFB6321C37CA7F0C25F\",\n            \"cityName\": \"2287 Commercial Dr, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bf69c3ea47d7b4d6\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Express News Convenience\",\n            \"rowSalary\": \"$16.75 an hour\",\n            \"date\": 1694295842022,\n            \"dateOfPosted\": 1692208843103,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2838641,\n                    \"lon\": -123.0703588\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Commercial Dr, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position: Customer Service RepresentativeJob Description:The Customer Service Representative will play a key role in the success of our organization. This position is responsible for answering phone calls, responding to emails, and providing customer service support to our sales team. The CSR will also serve as the main point of contact for customer questions and inquiries. The position requires a high level of attention to detail, excellent organizational skills, the ability to think critically and maintain a positive attitude during fast-paced situations.Core Duties & Responsibilities:Greet and assist customers in a warm and welcoming manner.Provide product information and help customers make informed purchasing decisions.Operate the cash register and handle transactions accurately.Maintain a clean and organized store environment, including restocking shelves and ensuring product availability.Address customer inquiries, concerns, and complaints professionally and promptly.Follow store policies and procedures to ensure smooth operations.Promote store loyalty programs and special promotions to customers and UPSELL.Collaborate with team members to ensure a positive and cohesive work environment.Requirements:Strong communication skills – face-to-faceStrong attention to detailAbility to work independently as well as in a team environmentHighly motivated with a positive attitudeAbility to multi-task, prioritize, and manage time effectivelyKnowledge of operation systems or tools used in office settings (e.g., CRM, G-Suite) is a plus!Express News Convenience is an equal opportunity employer. All qualified applicants will receive consideration for employment without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, disability or protected veteran status.Job Type: Part-timePart-time hours: 20 per weekSalary: $16.75 per hourSchedule:Every WeekendMonday to FridayEducation:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Ability to Commute:Vancouver, BC V5N 4B6 (preferred)Ability to Relocate:Vancouver, BC V5N 4B6: Relocate before starting work (preferred)Work Location: In personApplication deadline: 2023-08-17Expected start date: 2023-08-21\",\n            \"location\": \"Commercial Dr, Vancouver, BC\"\n        },\n        {\n            \"id\": \"1CE78175287C6EE3C86EAA6C044323C6\",\n            \"cityName\": \"90 Inglis St Unit A005, Sydney, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=cec4cc6284a53663\",\n            \"jobName\": \"Customer Service Representative (Full-Time)\",\n            \"companyName\": \"Mci Careers\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694295634087,\n            \"dateOfPosted\": 1625167774802,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.14031689999999,\n                    \"lon\": -60.1832895\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Sydney\",\n                \"formattedAddress\": \"Inglis St, Sydney, NS B1P, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Cape Breton Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Sydney\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" LOCATION: Sydney, NS SALARY: $14.50 / hour POSITION OVERVIEW:  CALL CENTER REPRESENTATIVE SUPPORTING COMMERCIAL AND PUBLIC SECTOR CLIENTS We are looking for call center representatives to support inbound and outbound customer service and sales projects for a wide variety of clients. In this role, you will handle inbound inquiries, make outbound calls to existing customers to assist with customer service questions and upsell customers on new products and services. There are a wide variety of project openings on government program as well as some of the most recognizable brands in the world. Candidates should have excellent communication skills, willing to learn on the job and be highly reliable. Schedules vary by site and project however we can usually find something that works for everyone. This is an entry-level position with competitive compensation commensurate with experience. While prior contact center experience isn't required, Experience in customer service, technical support, inside sales, or back-office support in a contact center environment is a plus.  -:  POSITION RESPONSIBILITIES:  WHAT DOES SOMEONE IN THIS ROLE ACTUALLY DO? This position supports customer service, technical support, and customer sales interactions. This role requires you to interact with hundreds of customers each week across the country to resolve support issues, sell new products and services, and ensure a best-in-class customer experience. In addition to being the best in the business when it comes to customer interactions, you will need to be confident, fully engaged, a team player, and dedicated to bringing a positive and enthusiastic outlook to work each day. Essential Duties Handle inbound and outbound contacts in a courteous, timely, and professional manner Listen to customers, understand their needs, and resolve customer issues Research systems to find missing information as applicable; coordinate with other departments to resolve issues as applicable Follow the processes of the Client program and perform all tasks in a courteous and professional manner Utilize systems and technology to complete account management tasks Accurately document and process customer claims in appropriate systems Follow all required scripts, policies, and procedures Utilize knowledge base and training to accurately answer customer questions Comply with requirements surrounding confidential information and personal information Appropriately escalate customer issues with the managerial team Escalate customer issues to the appropriate staff and managerial for resolution as needed. Ensure first call resolution through problems solving and effective call handling Attend meetings and training and review all new training material to stay up-to-date on changes to program knowledge, systems, and processes Adhere to all attendance and work schedule requirements CANDIDATE QUALIFICATIONS:  WONDER IF YOU ARE A GOOD FIT? It's about building relationships and turning the knowledge you gain in training into customer wins. Representatives make a difference to customers and the company, providing over-the-phone customer service, sales, and technical support. We provide all new employees with world-class training, so all positive, driven, and confident applicants are encouraged to apply. Ideal candidates for this position are highly motivated, energetic, and dedicated. Required Must be 18 years of age or older High school diploma or equivalent Experience with data-entry utilizing a computer The ability to read and speak English fluently Have a wired, high-speed internet connection (Download speed of 20Mbps+) Excellent organizational, written, and oral communication skills The ability to type swiftly and accurately (20+ words a minute) Ability to work regularly scheduled shifts within our hours of operation including the training period. Basic knowledge of Microsoft Office Suite (Excel, PowerPoint, Word, Outlook) Familiarity with computer and Windows PC applications and the ability to learn new and complex computer system applications Highly reliable with the ability to maintain regular attendance and punctuality The ability to evaluate, troubleshoot, and follow-up on customer issues An aptitude for conflict resolution, problem solving and negotiation Must be customer service oriented (empathetic, responsive, patient, and conscientious) Ability to multi-task, stay focused, and self-manage Strong team orientation and customer focus The ability to thrive in a fast-paced environment where change and ambiguity are prevalent Excellent interpersonal skills and the ability to build relationships with your team and customers Preferred (Not Required) One (1) year of experience in customer service, technical support, inside sales, back-office, chat, or administrative support in a contact center environment Work at home experience State or Federal work experience CONDITIONS OF EMPLOYMENT: Must be authorized to work in their country of residence (The United States or Canada) Must be willing to submit up to a LEVEL II background and/or security investigation with a fingerprint. Job offers are contingent on background/security investigation results COMPENSATION DETAILS:  WANT AN EMPLOYER THAT VALUES YOUR CONTRIBUTION? We believe that hard work should pay off, so we make sure that our compensation and total rewards are competitive. Standard starting compensation is commensurate with experience. Employees earn paid time off as well as paid holidays and paid training opportunities. Regular daily, weekly and monthly incentives are part of the overall compensation our team members enjoy and include monetary incentive and prizes such as computers, tablets, phones, TV’s, trips, tickets, and even cars. In addition to our standard group benefits offering for full-time employees following 90-days of employment, all employees are eligible to opt for our MEC medical plan after only 30-days of employment. Benefits options and plans vary slightly by location. JUST A FEW OF THE BENEFITS Medical, Dental, and Vision Coverage Options Paid Time-Off Regular Raises Advancement Opportunity Fun, Engaging Work Environment Casual Dress Code Cash and Prize Contests PHYSICAL REQUIREMENTS:  This job operates in a professional office environment. While performing the duties of this job, the employee will be largely sedentary and will be required to sit/stand for long periods while using a computer and telephone headset. The employee will be regularly required to operate a computer and other office equipment, including a phone, copier, and printer. The employee may occasionally be required to move about the office to accomplish tasks; reach in any direction; raise or lower objects, move objects from place to place, hold onto objects, and move or exert force up to forty (40) pounds.  REASONABLE ACCOMMODATION:  Consistent with the Americans with Disabilities Act (ADA) it is the policy of MCI and affiliates to provide reasonable accommodation when requested by a qualified applicant or employee with a disability unless such accommodation would cause undue hardship. The policy regarding requests for reasonable accommodation applies to all aspects of employment. If reasonable accommodation is needed, please contact Kate Murph, Vice President of Human Resources, kate.murph@mci.world.  DIVERSITY AND EQUALITY:  At MCI and its subsidiaries, we embrace differences and believe diversity is a benefit to our employees, our company, our customers, and our community. All aspects of employment at MCI are based solely on a person's merit and qualifications. MCI maintains a work environment free from discrimination, one where employees are treated with dignity and respect. All employees share in the responsibility for fulfilling MCI's commitment to a diverse and equal opportunity work environment. MCI does not discriminate against any employee or applicant on the basis of age, ancestry, color, family or medical care leave, gender identity or expression, genetic information, marital status, medical condition, national origin, physical or mental disability, political affiliation, protected veteran status, race, religion, sex (including pregnancy), sexual orientation, or any other characteristic protected by applicable laws, regulations, and ordinances. MCI will consider for employment qualified applicants with criminal histories in a manner consistent with local and federal requirements. MCI will not tolerate discrimination or harassment based on any of these characteristics. We adhere to these principles in all aspects of employment, including recruitment, hiring, training, compensation, promotion, benefits, social and recreational programs, and discipline. In addition, it is the policy of MCI to provide reasonable accommodation to qualified employees who have protected disabilities to the extent required by applicable laws, regulations, and ordinances where an employee works. ABOUT MCI (PARENT COMPANY):  MCI helps customers take on their CX and DX challenges differently, creating industry-leading solutions that deliver exceptional experiences and drive optimal performance. MCI assists companies with business process outsourcing, staff augmentation, contact center customer services, and IT Services needs by providing general and specialized hosting, software, staff, and services.  In 2019 Marlowe Companies Inc. (MCI) was named by Inc. Magazine as Iowa’s Fastest Growing Company in the State of Iowa and was named the 452nd Fastest Growing Privately Company in the USA, making the coveted top 500 for the first time. MCI’s subsidiaries had previously made Inc. Magazine's List of Fastest-Growing Companies 15 times respectively. MCI has fifteen business process outsourcing service delivery facilities in Iowa, Georgia, Florida, Texas, Massachusetts, New Hampshire, South Dakota, New Mexico, California, Kansas, and Nova Scotia.  Driving modernization through digitalization, MCI ensures clients do more for less. MCI is the holding company for a diverse lineup of tech-enabled business services operating companies. MCI organically grows, acquires, and operates companies that have a synergistic products and services portfolios, including but not limited to Automated Contact Center Solutions (ACCS), customer contact management, IT Services (IT Schedule 70), and Temporary and Administrative Professional Staffing (TAPS Schedule 736), Business Process Management (BPM), Business Process Outsourcing (BPO), Claims Processing, Collections, Customer Experience Provider (CXP), Customer Service, Digital Experience Provider (DXP), Account Receivables Management (ARM), Application Software Development, Managed Services, and Technology Services, to mid-market, Federal & enterprise partners. MCI now employs 10,000+ talented individuals with 150+ diverse North American client partners across the following MCI brands: GravisApps, Mass Markets, MCI Federal Services (MFS), The Sydney Call Center, OnBrand24, and Valor Intelligent Processing (VIP). DISCLAIMER:  The purpose of the above job description is to provide potential candidates with a general overview of the role. It's not an all-inclusive list of the duties, responsibilities, skills, and qualifications required for the job. You may be asked by your supervisors or managers to perform other duties. You will be evaluated in part based upon your performance of the tasks listed in this job description. The employer has the right to revise this job description at any time. This job description is not a contract for employment, and either you or the employer may terminate employment at any time, for any reason. REGARDING COVID-19:  As an employer supporting critical Federal, State, Provincial, and Commercial clients, we have taken steps to ensure that we remain operational while taking every precaution possible to prevent the spread of COVID-19 and keep our employees safe. Measures include social distancing for those working on-site, frequent deep cleaning and disinfecting of workstations and common areas, daily contactless temperature checks for those essential employees working on-site, travel policies limiting travel and mandatory quarantine, reporting and quarantine processes and policies for those exposed, and requesting masks to be worn when on-site employees are not at their workstation. For more information on MCI’s response to COVID-19 please visitwww.mci.world/covid-19.\",\n            \"location\": \"Inglis St Unit A, Sydney, NS\"\n        },\n        {\n            \"id\": \"E18DC05A0D6AE4443EFBF7D05872C1CA\",\n            \"cityName\": \"120 Boul Ste Rose, Laval-ouest, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=1d8d5b314434cf5f\",\n            \"jobName\": \"Bilingual Customer Service Representative - Remote\",\n            \"companyName\": \"Assistance Services Group\",\n            \"rowSalary\": \"$15.00–$17.05 an hour\",\n            \"date\": 1694295627037,\n            \"dateOfPosted\": 1692300109537,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5517876,\n                    \"lon\": -73.8703587\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Laval\",\n                \"formattedAddress\": \"Laval-Ouest, Laval, QC H7R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Laval\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Laval-ouest, QC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"100% Online Application. Virtual Interview.Bilingual Inbound Customer Assistance Representative - RemoteWhen you're good at what you do, you can Work from Home.When you're the best at what you do, come work with us!Start Date:Various - August, September, OctoberLocation:Work from Home - CanadaEmployment Type:Permanent Full-Time, Part, Time and Contract roles availableApplication Closing Date:14 April 2023About UsWe provide expert assistance for moments that matter.Now part of Sitel Group, Assistance Services Group (ASG) is committed to building positive and lasting relationships with our clients' customers, associates, and citizens. For over 66 years, we have provided enterprise-wide services addressing needs across various industries, including automotive, healthcare, insurance and legal. But regardless of the industry, our goal remains the same: to provide timely assistance and information for the moments that matter most. Whether it's car trouble in the middle of nowhere or a child's fever in the middle of the night, we pride ourselves on being there 24/7 with prompt, professional and experienced help.We believe in relationships, value, change and YOU.What Can We Offer YOU!With the rising cost of Gas Prices, what better way to ease the Day's stress than by Working from Home. Benefits include saving time, money, and the environment.Hands-on paid virtual classroom-style training.Company-sponsored benefits include medical, dental, life and vision insurance, company-matched RRSP contribution and paid vacation time.Don't have the equipment needed to do the job? Don't worry; we will send you what you need.Bilingual (French/English) associates are paid an additional $2.50 per hour.When work seems fun, you must be working from home.Customer AssistanceAs a full-time Work from Home Bilingual Customer Assistance Representative, you will work with our incredible Roadside Assistance team to dispatch roadside services quickly and efficiently to our members in difficult and stressful situations. They could be stuck on a busy highway, in the middle of an intersection, or alone late at night in an empty parking lot.With empathy, reassurance, and a sense of urgency, you will ensure they're safe, determine their exact location using mapping software, and quickly dispatch an authorized service provider to help. Your calm, soothing voice and can-do attitude make all the difference, and their gratitude is your reward.What You Bring!You currently reside in CanadaHigh School graduates or equivalentMust have at least three (3) months of working experience in the customer service fieldKnowledge of MS Office 365, MS TEAMS and a Microsoft Windows environment.Must have a good command of English and spoken FrenchYou'll need to be able to work varying shifts in our 24/7 operationProblem-Solving, Empathy, Adaptability and ReliabilityWhat You Can Offer US!A desk, comfortable chair, access to a quiet home office space, high-speed internet (minimum of 10 mbops download and 5 mbps upload), and the ability to hardwire your internet modem to the equipment we supply.Follow ASG on Social MediaLOVE YOUR CAREER!Sitel Group is committed to Global Ethics and is an equal opportunity employer. We are committed to fostering a diverse, inclusive and equitable work environment where all associates are represented, supported and treated with fairness and respect. We believe in selecting, developing and rewarding the best candidate for the job based on the requirements and responsibilities of the role. If you are contacted for any opportunity with us and require any accommodation during the recruitment and selection process please be sure to communicate your needs with your recruiter. Any information shared will be treated confidentially and will only be shared in order to provide a positive and accessible candidate experience.Job Type: Full-timeSalary: $15.00-$17.05 per hourBenefits:Dental careExtended health careLife insurancePaid time offRRSP matchWork from homeSchedule:8 hour shiftDay shiftEvening shiftHolidaysMonday to FridayMorning shiftNight shiftWork Location: Hybrid remote in Laval-Ouest, QC H7R 1R2\",\n            \"location\": \"Laval-ouest, QC\"\n        },\n        {\n            \"id\": \"6A0D987A8DA663E5AFD0520AC1482323\",\n            \"cityName\": \"100 Aldersmith Pl, Victoria, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=baa340935f59dd66\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Domino's Pizza | 655069 Bc Ltd\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694295609392,\n            \"dateOfPosted\": 1692266470696,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 48.4487147,\n                    \"lon\": -123.4287257\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"View Royal\",\n                \"formattedAddress\": \"Aldersmith Pl, View Royal, BC V9A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Capital\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"View Royal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Hot job opening, fresh out of the Oven! The Customer Service Representative's role is crucial within the Domino's system! We pride ourselves on offering fast and friendly service with a smile, and our CSRs lead the way in doing so. Within our fast paced environment, the role is primarily to offer top quality customer service by phone and in person at the counter. Customer Service Representatives are expected to know Domino's products and the current offers in order to provide customers with the correct order and best value based on their needs. Customer Service Representatives will take orders by phone-in customers, as well as customers at the store. They are expected to manage the cash drawer when accepting payment for orders and returning change. CSRs will also handle customer concerns using the approach taught during Domino's onboarding and orientation. In secondary roles, Customer Service Representatives will help make quality products, label boxes, cut pizzas and prepare orders for delivery or to be served to in-store customers. CSRs also help in maintaining the store's professional image by participating in the cleaning tasks assigned to all team members. Benefits of working with Domino's Pizza include: Flexible schedules Competitive wages Staff pizzas Career growth opportunities A uniform is provided, and wages start at $15.65 plus $1.50 - $ 3.50/hour in tips. Customer Service Representatives are expected to be presentable by following Domino's personal image and grooming standards. Domino's is an equal opportunity employer. REQUIREMENTS Previous experience preferred Friendly and well spoken Good math skills to handle cash handling for in-store customer payments Speak English fluently in order to serve customers Focus on cleanliness and personal hygiene At Domino's Pizza, Our Most Important Ingredient is Our People! We offer employment opportunities within our franchise stores. Take the first step in joining our team, and you'll find opportunities you won't find anywhere else in the industry!\",\n            \"location\": \"Aldersmith Pl, Victoria, BC\"\n        },\n        {\n            \"id\": \"C875A44034D761DDDB9ED9E819198C63\",\n            \"cityName\": \"1360 Boul René Lévesque O, Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7001d5e0de8d9bd8\",\n            \"jobName\": \"Food Preparation And Customer Service\",\n            \"companyName\": \"Cultures Restaurant\",\n            \"rowSalary\": \"$17–$19 an hour\",\n            \"date\": 1694295583171,\n            \"dateOfPosted\": 1691469923719,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4980208,\n                    \"lon\": -73.5709092\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Boulevard René-Lévesque O, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking to fill in the position for food preparation and customer service.From Monday to Friday from 8:00 to 15:00.Job Type: Full-timeSalary: $17.00-$19.00 per hourSchedule:Day shiftMonday to FridaySupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"René-Lévesque Boulevard West, Montréal, QC\"\n        },\n        {\n            \"id\": \"859602944C0C9FEAA93914C6FE714F48\",\n            \"cityName\": \"Smiths Falls, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=524881204cc7031d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Wetrentals Inc.\",\n            \"rowSalary\": \"$15–$20 an hour\",\n            \"date\": 1694295538341,\n            \"dateOfPosted\": 1623804750302,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.903748,\n                    \"lon\": -76.02161889999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Smiths Falls\",\n                \"formattedAddress\": \"Smiths Falls, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Lanark County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Smiths Falls\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Boat Delivery & Customer Service Company descriptionWetRentals is a local Seadoo and other boat rental company. We offer rentals at a reasonable rate and they are delivered to our customers docks or doors.Job descriptionJob Title: Boat Delivery and Customer ServiceReports To: Sales ManagerJob Overview:As a Boat Delivery & Customer Service Representative, you will be required to deliver our boats to our customers dock or door. Once delivered, the boats must be unloaded and the customers must be briefed on the safety and operations of the boat. Customer service is key. Once the boats are fully delivered, the job duties are finished until the boats are required to be picked up. On pickup the boats must be inspected and returned to our location. Deliveries take place all over Ottawa, Kingston and Perth.A TRUCK IS REQUIRED (you will be paid $.58c/ km)Responsibilities and Duties- Rent Seadoo's to customers- Upsell our boats and accessories- Complete transactions- Collect deposits and signed contracts- Give safety briefings- Deliver Boats- Clean down boats, check for damage.- Answer questions as needed.Qualifications- Minimum of 18 Years of age- Sales experience is an asset- Boat knowledge is an asset- Local knowledge is an asset- Boaters licence is a must.- Truck or large vehicle is a must.HoursHours vary based on rentals. Our rentals are 9am-5pm. Deliveries and pickups happen at 9am and 5pm.The Perfect HireOur perfect hire is an energetic, outgoing individual who is looking to help grow our small business. The hire will have to be able to back up a trailer with boats and unload them proficiently. Customer service is a must as the hire must be able to fully explain how our boats work.Contract length: 2 monthsApplication deadline: 2021-06-20Expected start date: 2021-07-01Job Types: Full-time, TemporarySalary: $15-$20 per hourCOVID-19 considerations:All employees are required to wear a face covering while the government regulations are in place. Hand sanitizer and cleaning supplies are available 24/7Contract length: 2 monthsPart-time hours: 20 per weekExpected start date: 2021-07-01WetRentals Inc. provided the following inclusive hiring information:We are an equal opportunity employer and considers all qualified applicants equally without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, veteran status, or disability status.Job Types: Part-time, TemporarySalary: $15.00-$20.00 per hourApplication question(s):Do You Own A Large SUV or Truck?Education:Secondary School (preferred)Experience:customer service: 1 year (preferred)\",\n            \"location\": \"Smiths Falls, ON\"\n        },\n        {\n            \"id\": \"107AAA3BD6E6DB0E41D033E313E06BAC\",\n            \"cityName\": \"GTA Kitchen Remodeling inc. in Brampton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=772b2e417b735975\",\n            \"jobName\": \"Customer Service Assistant\",\n            \"companyName\": \"Gta Kitchen Remodeling Inc.\",\n            \"rowSalary\": \"$38,386–$50,000 a year\",\n            \"date\": 1694295532867,\n            \"dateOfPosted\": 1638402492269,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7315479,\n                    \"lon\": -79.7624177\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Brampton\",\n                \"formattedAddress\": \"Brampton, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Brampton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 38386.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    38386.0\n                ],\n                \"range\": {\n                    \"gte\": 38386.0,\n                    \"gt\": null,\n                    \"lte\": 38386.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Our company is looking for a full time Retail Sales Specialist to join our team in Mississauga. This job is a fantastic opportunity for an individual who can work effectively with store management to increase retail sales and execute client-driven merchandising that meet the client’s expectations. The sales representative will need to be outgoing, friendly, and be able to drive sales and brand awareness for our client’s products at major retail locations. You will be engaging and educating the customers on their next purchase of some of the leading brands in retail. The ideal candidate is independent, self-motivated, ambitious, and driven to succeed. When you join the Company, you will receive top-notch training and competitive pay rates.Responsibilities:Meet client and Company objectives by maintaining full distribution on all authorized SKU’s.Must have the ability to communicate effectively both internally with The Company management and externally with all Customers.Perform sales skills through continuously creating sale opportunities to reach goalsEnsure that communication between the client and all post sales follow-ups are met and upt date such as delivery status and deadlines.Will complete accurate and timely paperwork and reports, recaps, itineraries, timesheets, expense reports, etcQualificationsSales experience of at least 1 year.Must have a vehicleJob Types: Full-time, PermanentSalary: $38,386.00-$50,000.00 per yearSchedule:8 hour shiftEducation:Bachelor's Degree (preferred)Experience:customer service: 1 year (preferred)Work remotely:No\",\n            \"location\": \"Brampton, ON\"\n        },\n        {\n            \"id\": \"1EACDBF7D6261C69843E0260721C7FF4\",\n            \"cityName\": \"11819 111 Ave NW, Edmonton, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2601b70efe2cedee\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Spec Hardware\",\n            \"rowSalary\": \"$19–$22 an hour\",\n            \"date\": 1694295457519,\n            \"dateOfPosted\": 1668223544451,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.5862898,\n                    \"lon\": -113.402279\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Edmonton\",\n                \"formattedAddress\": \"Henry Ave NW, Edmonton, AB T5A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Edmonton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Spec Hardware is Edmonton’s one stop shop for all specialty hardware for indoor, outdoor, residential and commercial spaces.Spec Hardware assists customers, interior designers, architects, builders, renovators, and millworkers in the selection of the architectural hardware for their upcoming projects. We have a vast selection of door, cabinet, bath, and exterior hardware readily available. We are always bringing in new hardware displays and partnering with new suppliers to keep our competitive edge on our products.We are looking for an outgoing individual who is passionate about home design to join our team!You will be a customer facing associate charged with working with our clientele to meet their design needs. Your primary responsibility will focus on providing exceptional customer service while professionally representing Spec. You will be responsible for daily administrative duties; knowing our products and selection, providing a positive customer experience, completing customized sales orders, as well as other duties assigned.RequirementsWorking knowledge/understanding of hardware and designComputer literacy with POS systems and Microsoft OfficeExcellent Customer Service skills – ability to deal effectively with customers in person and on the phoneFlexible with the ability to multi-task and work effectively handling multiple job functionsMust be able to work varying hours and shifts to reflect Specs Hardware operating hoursResponsibilitiesExhibits a high level of activity, passion and energy, while providing an expert level of product knowledgeProvide detailed product information to customers and peersPromoting and recommending products and plans that match customer needsPrepare Quotes for sales TeamTake initiative to elevate personal knowledge of all product categories in current and future merchandise and maintains awareness of store promotions, pricing and special eventsAnticipate customer needs and follow up on all leadsAll other duties as assignedJob Types: Full-time, PermanentSalary: $19.00-$22.00 per hourSchedule:8 hour shiftEducation:Bachelor's Degree (preferred)Experience:customer service: 3 years (preferred)\",\n            \"location\": \"Ave NW, Edmonton, AB\"\n        },\n        {\n            \"id\": \"E67203083B08DECF0BCAE998217A46C0\",\n            \"cityName\": \"Au Canada Apparel in Kelowna, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=01beb7221457b3b0\",\n            \"jobName\": \"Au Canada Apparel Fulfillment, Social Media & Customer Service Associate\",\n            \"companyName\": \"Au Canada Apparel\",\n            \"rowSalary\": \"$17 an hour\",\n            \"date\": 1694295052817,\n            \"dateOfPosted\": 1663414267405,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.8879519,\n                    \"lon\": -119.4960106\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kelowna\",\n                \"formattedAddress\": \"Kelowna, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Central Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kelowna\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We're a small online business located in Kelowna, BC looking for an easy-going, yet hard-working member to add to small family team!If you're looking for flexible part time hours, keep reading!You'll have the opportunity to work with us and make sure our customers have the best experience with our brand!With this position, you'll ship out our customer's orders over the holiday season. It also includes a customer service role (responding to emails), and could grow into inventory management and getting new designs made for our apparel. (Don't worry, you won't have to design it, you'll just have to facilitate it!).We're also looking for someone to post images and reels on our social media.Requirements & Details:You must have a car to get to and from the storage unitFlexible, part-time hoursPacking is done in our studioPost images & videos on our social mediaIf you're interested we'd love to hear from you! Please respond and let us know if you'd like to work with Au Canada Apparel!www.aucanadaapparel.comJob Types: Part-time, Casual, Seasonal, Internship / Co-opContract length: 3 monthsPart-time hours: 10 per weekSalary: $17.00 per hourSchedule:4 hour shiftDay shiftMonday to FridayNo weekendsAbility to commute/relocate:Kelowna, BC V1V0C6: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Application deadline: 2022-09-24\",\n            \"location\": \"Kelowna, BC\"\n        },\n        {\n            \"id\": \"2C688F663279C7F6F7CC1672DDA7732B\",\n            \"cityName\": \"250 Teakwood Pl, Waterloo, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e062f20136132f38\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Ventigo Publications\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694295052722,\n            \"dateOfPosted\": 1662728952440,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.4642578,\n                    \"lon\": -80.5204096\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Waterloo\",\n                \"formattedAddress\": \"Waterloo, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Waterloo Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Waterloo, Ontario, Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Company descriptionFounded in 2017, Ventigo Publications specializes in multi-language novel translation and publication. With hundreds of published titles and a large customer base, the business continues to see accelerating growth.Job descriptionWe are seeking for an enthusiastic Customer Service Representative to join our growing team and to push our business forward.Responsibilities1. Respond to customer support tickets2. Resolve customer requests via email in a timely manner3. Monitor and report site reliability issues4. Accelerate customer experience and provide feedback to improve customer satisfactionSkills Requirement1. 1 year of customer service experience2. Excellent team player with a high sense of responsibility3. Experience with communication platforms such as Discord and familiarity with webtools in the ecommerce industry4. Proficiency with MS Word and Excel5. Strong grasp of English and Mandarin Chinese6. Strong communications skills and a quick learner7. Fast typer职位类型：全职, 终身制薪资： 每小时$15.50\",\n            \"location\": \"Waterloo, Ontario, Canada\"\n        },\n        {\n            \"id\": \"EEA9DB42EB487EE825B7BE1A35FA2B2E\",\n            \"cityName\": \"St. Catharines, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bf68bf5301e21a25\",\n            \"jobName\": \"Retail Customer Service & Sales Associate\",\n            \"companyName\": \"Essential Hr\",\n            \"rowSalary\": \"$16.50 an hour\",\n            \"date\": 1694294758848,\n            \"dateOfPosted\": 1694239233667,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We envision a world where everyone has access to clean water! By actioning our core values of Respect, Connection, Ambition and Value our team stives to achieve this goal..... one client at time. At Water Superstore (St. Catharines) we value YOU and the skills and experience you have to contribute. We are looking for passionate individuals who value the opportunity to learn about the growing health and water industry, love interacting with people , and have a positive attitude ! JOB DETAILS Primary Responsibilities : Accurately complete point of sale transactions in the retail store Serve clients through our drive thru, which involves lifting 50-pound water bottles Recommend and sell water filtration systems and water accessories Opening and closing the retail store Receiving/Inventory management Merchandising Book service and sales appointments Maintaining a clean retail work space Schedule  Full-time and part-time roles are available. The successful candidate must have flexibility in scheduling and be able to work shifts that accommodate our hours (Monday to Saturday, 10am - 6pm) Compensation  Starting at $16.50/hour. \",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"87DDEB9CEDE9854EB28C3B654D738C3B\",\n            \"cityName\": \"34 Futurity Gate, Concord, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=43ea4fe877203ecf\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Ecotech Windows & Doors\",\n            \"rowSalary\": \"$35,000–$45,000 a year\",\n            \"date\": 1694294627183,\n            \"dateOfPosted\": 1668088665424,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.798329,\n                    \"lon\": -79.5079073\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vaughan\",\n                \"formattedAddress\": \"Concord, Vaughan, ON L4K, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of York\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Concord, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Ecotech Windows and Doors is seeking an ambitious and detail oriented individual with a drive to provide the highest level of internal and external customer care in this fast paced industryServes customers by providing product and service information and resolving product and service problems.Attracts potential customers by answering product and service questions and suggesting information about other products and services.Maintains customer records by updating account information.Resolves product or service problems by clarifying the customer’s complaint, determining the cause of the problem, selecting and explaining the best solution to solve the problem, expediting correction or adjustment, and following up to ensure resolution.Listen to customer concerns and complaints with the goal of identifying the causes of the problemContact clients as needed to ensure payment of outstanding invoicesQualificationsCustomer support experienceOver-achieving quotaStrong phone contact handling skills and active listeningFamiliar with CRM systems and practicesCustomer orientation and ability to adapt/respond to different types of charactersExcellent communication and presentation skillsAbility to multi-task, prioritize and manage time effectivelyHigh school diploma or equivalent; college degree preferredJob Type: Full-timeSalary: $35,000.00-$45,000.00 per yearBenefits:Casual dressDental careDisability insuranceExtended health careFlexible scheduleLife insuranceVision careSchedule:8 hour shiftSupplemental pay types:Bonus payEducation:Secondary School (preferred)Experience:Customer service: 1 year (required)\",\n            \"location\": \"Concord, ON\"\n        },\n        {\n            \"id\": \"65427E5B6DD07FA6F561ECFEA39ECF38\",\n            \"cityName\": \"Mission, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=62c15242acdea61d\",\n            \"jobName\": \"Order Desk & Customer Service\",\n            \"companyName\": \"Talentnest On Demand\",\n            \"rowSalary\": \"From $20 an hour\",\n            \"date\": 1694294588590,\n            \"dateOfPosted\": 1694215082806,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Order Desk and Customer Service We are seeking an enthusiastic and detail-oriented Administrative Assistant to join our team and assist with our order desk and customer support services. The ideal candidate will have exceptional customer service skills, excellent computer knowledge, and experience with bookkeeping and some accounting. Responsibilities: Answering phone calls, emails and responding to inquiries or complaints in a timely, professional, and courteous manner Taking customer orders via phone, email, or post and processing them accurately and efficiently Handling inquiries and complaints with tact and diplomacy to ensure customer satisfaction Providing alternative suggestions to products that may be out of stock or unsuitable for the customer Promoting sales by highlighting discounts and sales to increase revenue Reaching out to customers via social media, email, and phone to ensure customer satisfaction Keeping accurate records of customer interactions and transactions Supporting the sales team and other departments as needed Requirements: Excellent customer service skills with a customer-focused mindset and exceptional communication skills Strong computer skills, including proficiency with Microsoft and Google Drive functions Experience with bookkeeping and accounting is a plus Proactive and able to take initiative, with excellent organizational skills Comfortable working as part of a team and independently Fluent in English with excellent verbal and written communication skills Able to think quickly and creatively in interactions with customers to provide a positive brand image Education and Training: High school diploma or equivalent Experience with mass-email software programs is preferred If you are passionate about providing exceptional customer service and enjoy working in a dynamic team environment, please apply. While we appreciate all applications, only successful applicants will be contacted. Starting $20 / hour\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"AC8736B390C8A9FEFC88F1718A6D95D9\",\n            \"cityName\": \"2731 Mountain Rd, Moncton, NB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9c48dc4fd19e3ffd\",\n            \"jobName\": \"Customer Service/Cashier Part Time\",\n            \"companyName\": \"Magnetic Hill Irving\",\n            \"rowSalary\": \"From $15 an hour\",\n            \"date\": 1694294372480,\n            \"dateOfPosted\": 1692207174266,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 46.1175797,\n                    \"lon\": -64.84080349999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Moncton\",\n                \"formattedAddress\": \"Mountain Rd, Moncton, NB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"New Brunswick\",\n                \"state_code\": \"NB\",\n                \"postalTown\": null,\n                \"county\": \"Westmorland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Moncton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usMagnetic Hill Irving is owned and operated by Power Plus Technology Inc based out of Moncton, NB. Power Plus Technology Inc also ownes and operates Carrefour a Cap-Pele and Crossroads at Hanwell and employs approximately 40 people.We are looking for energetic and responsible individuals to join our team of Customer Service Associates. The successful candidates will be responsible for operating a cash register and dealing with customers on a regular basis. The ideal candidates have experience with retail environments, quick decision-making skills and the ability to work in fast-paced environments.Responsibilities:Provide customer service to each customer quickly and efficiently.Interact with customers in a friendly manner.Answer customers' questions about products and offering suggestions to help them find what they are looking for.Receiving orders, stockingDaily store maintenance and cleaning inside and outside(e.g. sweeping/mopping, garbages, washrooms etc)Full Service gas attendant duties when requiredJob Types: Part-time, PermanentPart-time hours: 20 per weekSalary: From $15.00 per hourBenefits:On-site parkingDay range:HolidaysWeekend availabilityShift:8 hour shiftAfternoon shiftDay shiftEvening shiftMorning shiftWork setting:Convenience storeAbility to commute/relocate:Moncton, NB: reliably commute or plan to relocate before starting work (required)Experience:Retail sales: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In person\",\n            \"location\": \"Mountain Rd, Moncton, NB\"\n        },\n        {\n            \"id\": \"8BABB2EBE5330658A35873E0A8863ACA\",\n            \"cityName\": \"Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=948e688ae145cc1c\",\n            \"jobName\": \"Customer Service Sales Representative\",\n            \"companyName\": \"United West Mississauga\",\n            \"rowSalary\": \"$620–$1,050 a week\",\n            \"date\": 1694294370812,\n            \"dateOfPosted\": 1691410529201,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5890452,\n                    \"lon\": -79.6441198\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"week\",\n                \"salaryFrom\": 620.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    620.0\n                ],\n                \"range\": {\n                    \"gte\": 620.0,\n                    \"gt\": null,\n                    \"lte\": 620.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Are you looking for a supportive, collaborative workplace with great teams and inspiring leaders? You’ve come to the right place. We’re looking for ambitious people who share our values and want to make every day better for people around the world. If this sounds like you, and the career below sounds exciting, we’d like to hear from you. As a Customer Service Sales Representative , you will be the face of our clients. You will interact with customers to bring our clients products and services to life! You will create effective sales opportunities with each customer using the skills provided in our intensive training model. You will establish sales objectives which will contribute towards the overall success of the business. We have relationships with numerous high-profile associations and external businesses; therefore, you can directly impact the Company’s reputation, profitability and image.Key Accountability:Meet sales, service, quality and productivity objectivesResponsible for interacting with new and existing customers and clientsConduct needs analysis and provide advice to customers by effectively communicating the value and benefits of the products and services offered by our clientsProvide a high level of service, build relationships and provide accurate information and the appropriate solutions to new and existing customersRaise issues, concerns and trends to the leadership teamMaintain a high level of product knowledge, operational process and servicesAs our ideal candidate, you make valuable contributions in your ability to communicate effectively with people. You have a high-energy level and a desire to become part of a globally dynamic organization offering long-term career opportunities.Qualifications:Experience in a retail, customer service or sales rolePost-secondary degree or equivalent work/business experienceDemonstrated ability to persuade and negotiate and must possess active listening skillsEffective client record management, with attention to detailAbility to work in a fast-paced environment and manage multiple day-to-day tasksStrong computer skills, and a general knowledge level of the MS Office suite of productsJob Type: Full-timeSalary: $620.00-$1,050.00 per weekFlexible Language Requirement:French not requiredSchedule:8 hour shiftDay shiftMonday to FridayWeekends as neededAbility to commute/relocate:Mississauga, ON: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Shift availability:Day Shift (preferred)Work Location: In person\",\n            \"location\": \"Mississauga, ON\"\n        },\n        {\n            \"id\": \"45C7B369585593F1A0A6233DE4ABD5BB\",\n            \"cityName\": \"975 Wilkinson Ave, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=7edcb5f34bf86a27\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Needs/Shell\",\n            \"rowSalary\": \"$13.60 an hour\",\n            \"date\": 1694293136481,\n            \"dateOfPosted\": 1666633379957,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.7146169,\n                    \"lon\": -63.5683191\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Wilkinson Ave, Dartmouth, NS B3B, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Full time job is available at Needs/Shell Gas Station & Convenience. **Shifts are available for weekdays and weekends 12pm-8pm or 1pm-9pm**Looking for someone who is able to work Weekends. Some duties include but are not limited to:- Serving and assisting customers with fuel and grocery based transactions- Maintain store cleanliness in efforts to meet and exceed customer expectations- Ensure food safety compliance by maintaining temperature logs- Ensure customer satisfaction by keeping shelves and coolers full of product-Handle and resolve customer issues and complaints- Having knowledge of product and location of product within store to meet customers needs- Ensure legal age requirements for customers purchasing lotto & tobacco productsIdeal candidate would be someone who is punctual and reliable, someone who possesses a natural customer service ability with a friendly attitude and someone who takes pride in their work that shows in terms of store condition. Previous experience in customer service is not needed but is considered an asset. Qualified candidates will be reached out to for an interview.Full time: 30-37.5 hr/weekJob Types: Full-time, PermanentSalary: $13.60 per hourDay range:HolidaysMonday to FridayWeekend availabilitySchedule:8 hour shiftMonday to FridayNight shiftWeekend availabilityShift:8 hour shiftDay shiftEveningsEvening shiftAbility to commute/relocate:Dartmouth, NS B3B 0J4: reliably commute or plan to relocate before starting work (preferred)Experience:Cash handling: 1 year (preferred)gas: 1 year (preferred)\",\n            \"location\": \"Ave Wilkinson, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"3AF82A99E801577187A3E583B58A1689\",\n            \"cityName\": \"855 Industrial Ave Unit 13, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ab8f01fc6c175428\",\n            \"jobName\": \"Call Centre Representative With Golfworks Canada\",\n            \"companyName\": \"Golfworks Canada\",\n            \"rowSalary\": \"From $17 an hour\",\n            \"date\": 1694293028819,\n            \"dateOfPosted\": 1694211477798,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"GolfWorks Canada is hiring for their call centre in Ottawa, at 855 Industrial AvenueThe position is available right away40 hours per week.Typical hours are Monday to Friday 9am-5pmResponsibilities include answering phones, processing customer orders and other customer supportGolf knowledge is requiredCustomer service experience is preferredJob Type: Full-timeSalary: From $17.00 per hourSchedule:8 hour shiftDay shiftMonday to FridayExperience:customer service: 1 year (preferred)Golf: 2 years (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"8BC366372B6866C9AD8B56ADB1883384\",\n            \"cityName\": \"Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=dd7270fc5b52d522\",\n            \"jobName\": \"Customer Service - Vehicle Replacement Specialist\",\n            \"companyName\": \"Solera\",\n            \"rowSalary\": \"$19–$21 an hour\",\n            \"date\": 1694292810515,\n            \"dateOfPosted\": 1694207942801,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The RoleServe as the primary point of contact for insurance clients requesting a vehicle replacement report for a total loss claim.Responsible for handling frontline inbound telephone calls and or electronic inquiries from customers (insurance companies) regarding the vehicle replacement product. The VRS1 agent will be responsible for entering or updating automotive, boat, equipment, and other vehicles total loss replacement reports on behalf of our insurance clients.Our agents make an important contribution to customer satisfaction by providing a prompt, efficient and courteous service.What You Will DoAccurately produce vehicle replacements for regular passenger vehicles; by conducting online research, utilizing our internal resources, and making outbound calls to dealerships.Provides level one support by assisting clients with entering a new request for a vehicle replacement report or update an existing one.Provides level one support by answering questions or guiding clients to understand the content of the report.Accurately assesses the customer's concerns.Asks the client well thought out or detailed questions and carefully listens to the user's response to fully comprehend the need, product issue, and best approach for resolving the problem.Take responsibility for all duties relating to compliance proceduresUse internal knowledgebase to resolve issues. Keeps current on most recent changes and/or upgrades.Communicates issues clearly and effectively to clients; documents all customer interactions consistently, thoroughly, and free of grammatical errors.Documents customer issues clearly and accurately when escalating to Tier 2 support to minimize resolution time for customer.Participates in continuous training programs to improve product knowledge and service skills, as well as learning in an ever-changing environment with different vehicles introduced every year.Deliver an amazing customer experience to clients requesting and updating reports through phone and electronic support.Performs all other duties as assigned.What You Will BringTo perform this job successfully, an individual must be able to perform each essential duty satisfactorily. The requirements listed below are representative of the knowledge, skill, and/or ability required. Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions.High School diploma or GED equivalent required, College diploma or University degree preferred.1-2 years customer service experience. (Required)Bilingual (French/English Required)Sales experience is a plus.Required Skills and AbilitiesMust have an aptitude for math.Analytical and naturally inquisitive with good questioning skills and good attention to detailsDesire to go the extra mile for the customers, and take personal responsibility for resolving issuesAbility to effectively communicate with others at all levels of the Company and the public, both verbally and in writing.Ability to demonstrate a courteous, tactful, and professional approach with employees and external customers and vendors.Ability to accurately complete tasks and projects, within allowable timeframes.Ability to perform special assignments as requested by the management team.Ability to work both independently and as part of a team.Ability to multi-task and switch between tasks seamlessly within a fast-paced environment.Must be able to always maintain confidentiality.Excellent written and oral communication skillsKnowledge and experience with Windows Operating systemsExcellent computer skills (Microsoft office, SharePoint, mobile applications, etc.)Knowledge to work in a dealership environment, auto insurance, or related is a plus.PHYSICAL DEMANDSThe physical demands described here are representative of those that must be met by an employee to successfully perform the essential functions of this job. Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions.Required to sit for extended periods of time.Required to wear a telephone headset to interact with clients over the phone for 7+ hours a day.Required to type for extended periods of time.Required to work with digital displays for 7+ hours a day.WORK ENVIRONMENTThe work environment characteristics described here are representative of those an employee encounters while performing the essential functions of this job. Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions.Work from the office.Flexibility if required to work shifts and or weekends.ACCOUNTABILITYDetailed description of responsibility including subordinates and functional responsibility.This position does not have any subordinates. It is an entry level position, independent contributor.Decisions are escalated to a senior level.Job Type: Full-timePay: $19.00-$21.00 per hourBenefits:Dental careExtended health careLife insurancePaid time offVision careSchedule:8 hour shiftDay shiftMonday to FridayOvertimeWeekends as neededSupplemental pay types:Bonus payExperience:Customer service: 1 year (required)Language:French (required)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"0EC3E6C2E94E0648CEBE38962F43DEC1\",\n            \"cityName\": \"Blue Mountains, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6314087d163acfe0\",\n            \"jobName\": \"Barista/Customer Service *** Saturday & Sunday 7am -2pm*****\",\n            \"companyName\": \"Royal Majesty Espresso Bar Bakery\",\n            \"rowSalary\": \"$18–$20 an hour\",\n            \"date\": 1694292775863,\n            \"dateOfPosted\": 1694204506635,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 18.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    18.0\n                ],\n                \"range\": {\n                    \"gte\": 18.0,\n                    \"gt\": null,\n                    \"lte\": 18.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Royal Majesty Espresso Bar Bakery - Blue Mountains. $18-$20/per hour~Im much rather hang out in a a cafe~Hello EveryoneIf you are a morning person - WE ARE YOUR PEOPLEIf you love coffee - WE ARE YOUR PEOPLEIf you want to learn how to make Lattes and Cappuccinos - WE ARE YOUR PEOPLEShifts available : Saturday and Sunday 7am-2pm. - GOOD VIBES ONLYWe look forward to meeting everyone !Job Type: Part-timePart-time hours: 15 per weekSalary: $18.00-$20.00 per hourSchedule:Weekends as neededWork Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"A81139F939A9CDD6A3ED3DB46060DC12\",\n            \"cityName\": \"Speedy Cash in North Battleford, SK\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fbf79648cfa2a65d\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Speedy Cash\",\n            \"rowSalary\": \"From $16 an hour\",\n            \"date\": 1694292572978,\n            \"dateOfPosted\": 1694239244825,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Canadian-operated, Speedy Cash is a strong leader in the financial services industry. Founded in 1998, Speedy Cash currently operates over twenty branch locations across Canada. We are building a dynamic team of business professionals and can provide the right candidate with significant opportunities for career growth and job satisfaction.If you’re looking for a fun, energized environment where we support each other, as a team, to create a rewarding workplace and deliver amazing customer service, then look no further, Speedy Cash is the place for you!Perks and BenefitsWelcome BonusCompetitive wages, bonuses, and benefitsHands-on and continual training in transferable skillsBirthdays off, annual fun day for each storeIncredible support systemA team environment that makes work satisfying and funRRSP matchingOpportunities for growth. We promote from within!You are a Champion of Change; you will help motivate the team to increase sales, minimize bad debt and adapt to the ever-changing regulatory environment. You have a strong sense of curiosity and have a passion for learning; you are proactive and look for ways to be more efficient in your day-to-day work. You inspire your teammates with your innovative and resourceful way of thinking. Your attention to detail and exceptional organizational skills will ensure that the day-to-day operations of the store run smoothly. You can work independently as you pursue excellence while taking pride in your achievements, supporting company initiatives, and accomplishing the work that needs to be done in the store. An interest in travel would be considered an asset as from time to time support in other stores in the network is needed.Job ResponsibilitiesBuilding customer relationships while providing exceptional customer serviceIdentifying and meeting the customer’s financial needs in order to process loan applicationsCollecting on delinquent accounts in the interest of minimizing bad debtConveying information through in-person, telephone, and email communicationsAiding in loan sales, cheque cashing, and in-store promotionsHandling and balancing daily cash and debit transactionsPerforming all daily operations of the storeRequirementsValid Government Issued Photo IDClean Criminal RecordHigh School Diploma or EquivalentWageSalary commensurate with experienceFor more information about Speedy Cash check out our website at www.speedycash.ca/careersJob Type: Full-timeSalary: From $16.00 per hourBenefits:Dental careExtended health carePaid time offRRSP matchVision careSchedule:Monday to FridayWeekends as neededEducation:Secondary School (preferred)Work Location: In personApplication deadline: 2023-09-30\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"7F9AB219F131C04A5A92F420831DF836\",\n            \"cityName\": \"12015 Main St, Winchester, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=5e538498594b89b2\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Winchester Foodland\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694292296066,\n            \"dateOfPosted\": 1692278921655,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.1768527,\n                    \"lon\": -75.28705889999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cornwall\",\n                \"formattedAddress\": \"Main St, North Dundas, ON K0C, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Stormont, Dundas and Glengarry United Counties\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cornwall\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We at Winchester Foodland pride ourselves with providing our customers with excellent care and friendly service. The Front End Customer Experience is key to building a strong customer relationship within our community and beyond. Our courteous, efficient and caring Cashiers play such an important role in the success of our store. Full training is provided for this position.***If you have applied for this position in the past please feel free to apply again as we navigate through the hiring process. ***Experience· No previous experience requiredKey Responsibilities· Upholds and complies with company procedures, standards and policies in all situations· Greets customers in a polite and friendly manner· Demonstrates superior customer service in accordance with Company’s programs· Process cash register payments by cash, cheque, credit card, gift card and debit· Wrap and place merchandise in bags / carts· Maintain cleanliness of check stands· Stock various product in check stand areaKnowledge, Skills and Abilities Required· Ability to learn quickly· Ability to work in a fast paced environment· Highly motivated and team oriented· Ability to communicate clearly and concisely in both oral and written form· Possess strong customer service qualities· Works in a safe and responsible manner· Available to work flexible hours· Day, Evening and Weekend availability is a MUSTMust have or be able to get SmartServeJob Type: Part-timeBenefits:On-site parkingStore discountDay range:Monday to FridayWeekend availabilityFlexible Language Requirement:French not requiredShift:Day shiftEvening shiftWork Location: One locationJob Type: Part-timePart-time hours: 15-32 per weekSalary: From $15.50 per hourDay range:Monday to FridayWeekends as neededFlexible Language Requirement:French not requiredShift:Day shiftEvening shiftMorning shiftWork setting:Grocery storeWork Location: In person\",\n            \"location\": \"Main St, Winchester, ON\"\n        },\n        {\n            \"id\": \"68C28E23476755C01ABD0279A4783322\",\n            \"cityName\": \"580 Adelaide St N, London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=64e73716f1eb4a8e\",\n            \"jobName\": \"Customer Service/Food Preparation\",\n            \"companyName\": \"Marshalls Pasta & Bakery\",\n            \"rowSalary\": \"$16.55–$18.00 an hour\",\n            \"date\": 1694292214110,\n            \"dateOfPosted\": 1694223940052,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About usMarshalls Pasta & Bakery is a small business operating in London, ON for over 25 years.We are customer-centric, fast-paced catering company and retail store. We specialize in making home made Italian food. We make all types of fresh pasta and sauces on site. We also bake our own bread. We are the leading supplier of school hot lunches in the city. We also catering to many sport teams in London and from out of town.Our work environment includes:Food providedMarshall's Pasta is looking for an experienced individual in the food service sector. We are very customer oriented so we are looking for someone who is friendly and outgoing. This new hire must be fluent in English. Your job description includes, using the cash register, preparing meals, helping to prep food in the kitchen, taking catering orders and kitchen maintenance. Kitchen maintenance includes mopping and dishes. We are looking for someone who can work days from 2:00 pm to 7:00pm and Saturdays from 9 to 5. We are closed Sundays and all Stat holidays.Job Type: Part-timePart-time hours: 24 per weekSalary: $16.55-$18.00 per hourBenefits:Discounted or free foodFlexible scheduleStore discountFlexible Language Requirement:French not requiredSchedule:Every WeekendMonday to FridayWeekends as neededSupplemental pay types:TipsApplication question(s):Are you able to work Saturdays?Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Language:English (preferred)Licence/Certification:Food Handler Certification (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"CF24B256B04B04483F145328226143C1\",\n            \"cityName\": \"2 Robert Speck Pky Ste 620, Mississauga, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=06b210f64287e7f1\",\n            \"jobName\": \"Bilingual Customer Service Representative\",\n            \"companyName\": \"Remitbee Inc\",\n            \"rowSalary\": \"$15.59–$20.00 an hour\",\n            \"date\": 1694292159314,\n            \"dateOfPosted\": 1692327367253,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.5977341,\n                    \"lon\": -79.6362388\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Mississauga\",\n                \"formattedAddress\": \"Robert Speck Pkwy, Mississauga, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Peel\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Mississauga\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"About RemitbeeRemitbee is online money transfer and currency exchange platform. Customers can send money to over 90 countries from Canada using web and mobile devices. We are just at the beginning of our growth and have ambitious plans to bring our service to all the countries on Earth.https://www.remitbee.com/aboutAbout the role:At Remitbee, we value customer care and satisfaction greatly. We are therefore looking for a part time outgoing and enthusiastic individuals for our customer service representative roles. As a bilingual customer service representative, you will be responsible for managing and directing inbound/outbound communication and customer service interaction, with a specific emphasis on the Spanish language.Additional description:Part time position for 6 months with the scope of converting into full time permanent position.Answer inquiries through the intended method of communication graciously and in a customer-oriented mannerUnderstand the needs of customers and provide quotes through phone or email communicationGuide and instruct customers when they are navigating Remitbee platformsEfficiently and effectively follow up with customers, companies and other leads to maintain relationshipsExhibit exceptional negotiation and conflict resolution skills when communicating with irritated customersMaintain detailed and organized documentation of communicated inquiries and conversationsApplicant RequirementsMust be able to communicate in Spanish with at least professional work proficiency (fluent)Ability to commute to work location.Weekend AvailabilityMust hold a High School Diploma2+ years of customer service experience preferredExceptional verbal and written communication skillsAble to effectively manage time and keep organizedAdvanced critical-thinking and problem-solving skillsProficient in required programs and softwaresBenefits package offeredMonthly Uber eats creditExtended health insurance (Drugs, Vision, Dental)Education creditApplyingWe look forward to hearing from you, but please note that due to the volume of applications that we usually receive for our job positions, only those shortlisted for next steps will be contacted.To stay in touch with Remitbee and keep up to date on all open opportunities, follow us on LinkedIn!Tipo de puesto: Medio tiempoSalario: $15,00 - $20,00 la horaPregunta(s) de postulación:Have you submitted the resume in English language ?Are you available to work on Weekends ?Experiencia:customer service: 1 año (Obligatorio)Idioma:Spanish (Obligatorio)Job Type: Full-timeSalary: $15.59-$20.00 per hourBenefits:Dental careSupplemental pay types:Overtime payAbility to commute/relocate:Mississauga, ON L4Z 1H8: reliably commute or plan to relocate before starting work (required)Experience:Customer service: 1 year (required)\",\n            \"location\": \"Robert Speck Parkway East, Mississauga, ON\"\n        },\n        {\n            \"id\": \"8A396AD87878FAF84713F8720BDA54AE\",\n            \"cityName\": \"423 Elizabeth Street, Burlington, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=20dd64468c309f25\",\n            \"jobName\": \"Barista/Customer Service - Fall Availability Required\",\n            \"companyName\": \"Lola Choco Bar\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694292121702,\n            \"dateOfPosted\": 1690501285768,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.3265888,\n                    \"lon\": -79.796796\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Burlington\",\n                \"formattedAddress\": \"Elizabeth St, Burlington, ON L7R, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Halton\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Burlington\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Lola Choco Bar and Sweet House is located in Village Square in downtown Burlington. We are looking for an enthusiastic, and friendly barista to work on a part time basis (20-30 hours per week; shifts will include day, evening and weekend hours).Skills Required:Candidates must have exceptional customer service skills, and be extremely reliable and responsible.have a positive, outgoing and energetic attitude and love interacting with otherswork well and efficiently in a team environment and have strong communication skillsable to prioritize and multi task jobs on your ownare thorough and detailed orientedhave the ability to work well under pressureavailable to work a flexible schedule Monday through Sunday (including both morning and afternoon/evening shifts)able to maintain a clean and organized work environmentDuties include but not limited to:- Greeting customers with a positive and welcoming demeanor- Preparing and serving hot and cold beverage orders (previous barista and Espresso machine experience is an asset)- Taking and processing orders- Cleaning tasks and maintaining an organized work environmentJob Type: Part-timePart-time hours: 20-30 per weekSalary: From $15.50 per hourBenefits:Casual dressSchedule:Day shiftMonday to FridayMorning shiftWeekends as neededSupplemental pay types:TipsAbility to commute/relocate:Burlington, ON L7R 2L8: reliably commute or plan to relocate before starting work (required)Experience:Barista: 1 year (preferred)Shift availability:Day Shift (required)Work Location: In person\",\n            \"location\": \"Elizabeth St., Burlington, ON\"\n        },\n        {\n            \"id\": \"7DA57691B97E34E031BE2ACC09230928\",\n            \"cityName\": \"Downsview, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=d9b79b31ff183c9a\",\n            \"jobName\": \"Customer Service Agent 3 -Downsview - Part Time - Perm - Bilingual (French And English)\",\n            \"companyName\": \"Serco North America\",\n            \"rowSalary\": \"$21.18 an hour\",\n            \"date\": 1694291947543,\n            \"dateOfPosted\": 1690362582393,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7266992,\n                    \"lon\": -79.4820609\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Downsview, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Position Description :  This role has a starting hourly rate of $21.18!  Serco Canada Inc. operates all the DriveTest Centres across Ontario on behalf of the Ministry of Transportation. As a customer service agent with Serco Canada Inc., you will be based out of one of our 56 Ontario DriveTest Centres. If you are a positive and professional team player who enjoys working with the public in a high energy environment, rewarding job opportunities await you at Serco Canada Inc.  Customer service agents are responsible for providing information and assisting members of the public at various stages of the driver’s licensing process. Some of the work includes responding to customer inquiries in person and on the telephone, providing information about licence rules and regulations, verifying driver records, taking applicant photos, scheduling road test appointments, collecting applicable fees, and preparing reports. Customer service agents must have excellent time management and organizational skills and exercise superior judgment skills. We require individuals who can work independently, meet deadlines, and strive to achieve customer satisfaction in all aspects of their work.  Purpose of the Job: Provides information and assistance related to driver examination services. Reviews information, determines test(s) requirements, and conducts/processes transactions and exams inside the DriveTest Centre. Assists in the smooth and efficient administration of examinations, including preparation of test takers entry, invigilating, the distribution of exam materials, and the collection of examinations. Ensures the fair and proper conduct of examinations. Creates a calm, professional, and supportive environment that enables applicants to perform to the best of their abilities. Provides Security Guard Testing (SGT) examination services support. Primary Duties and Responsibilities: Responds to inquiries related to driver licensing, determines applicant status, and provides information regarding test/re-test procedures and regulations relating to all classes of licences. Distributes and verifies application forms for accuracy and completeness. Investigates problems or errors in licence records and initiates corrections. Captures applicant photos, administers vision tests to ensure minimum requirements are met, and provides referrals to vision specialists. Collects applicable fees accurately. Conducts and processes knowledge tests, dispatches road test appointments, provides results, issues temporary driver’s licences, and processes licensing changes. Identifies licence exchange privileges and/or test requirements for driver’s licence applicants from other countries, provinces, and jurisdictions; assesses foreign licence eligibility, translations, and letters of authentication from other countries. Contacts members of the public to communicate information and correct errors. Administers commercial licence renewals, including accepting medical examination reports and criminal record checks. Escalates customer concerns and redirects customers to other government agencies, when required. Qualifications :  To be successful in this role, you must have:  Fluency level in French and English. Valid Ontario class “G” of licence is required. 1-4 years of customer service experience in a service environment is preferred to include, but not required:  Airline Industry Financial Industry Banking Industry Federal and Local Government Services Healthcare Industry Must have and maintain an acceptable driving record. Intermediate-level computer skills in Microsoft Office are required. Touch-typing and data entry. Must be able to perform physical duties of the position, this may include sitting or standing for extended periods of time and entering and existing vehicles up to 30 times per shift. Must pass Criminal Record Check (CPIC); Fingerprint Criminal Record Check. **Employee hours vary based on customer demand and location’s operating hours. **This position may require extended shift hours and possibly Saturday hours (depending on location) during certain periods of the year when Drive Test Centre volume is higher. **This position requires the attendance of a formal training session, which includes classroom instruction with experienced and qualified trainers and on-the-job shadowing at a Drive Test Centre facilitated by a coach. If you are unsuccessful at any stage of the training, your employment will end effective immediately. If you are interested in supporting and working with our Customer Service professionals and a passionate Serco team- then submit your application now for immediate consideration. It only takes a few minutes and could change your career! Company Overview :  Serco Inc. (Serco) is the Americas division of Serco Group, plc. In North America, Serco’s 9,000+ employees strive to make an impact every day across 100+ sites in the areas of Defense, Citizen Services, and Transportation. We help our clients deliver vital services more efficiently while increasing the satisfaction of their end customers. Serco serves every branch of the U.S. military, numerous U.S. Federal civilian agencies, the Intelligence Community, the Canadian government, state, provincial and local governments, and commercial clients. While your place may look a little different depending on your role, we know you will find yours here. Wherever you work and whatever you do, we invite you to discover your place in our world. Serco is a place you can count on and where you can make an impact because every contribution matters.  To review Serco benefits please visit: https://www.serco.com/na/careers/benefits-of-choosing-serco. If you require an accommodation with the application process please email: careers@serco-na.com or call the HR Service Desk at 800-628-6458, option 1. Please note, due to EEOC/OFCCP compliance, Serco is unable to accept resumes by email.  Candidates may be asked to present proof of identify during the selection process. If requested, this will require presentation of a government-issued I.D. (with photo) with name and address that match the information entered on the application. Serco will not take possession of or retain/store the information provided as proof of identity. For more information on how Serco uses your information, please see our Applicant Privacy Policy and Notice.  Serco does not accept unsolicited resumes through or from search firms or staffing agencies without being a contracted approved vendor. All unsolicited resumes will be considered the property of Serco and will not be obligated to pay a placement or contract fee. If you are interested in becoming an approved vendor at Serco, please email Agencies@serco-na.com.  Serco is an equal opportunity employer. We evaluate qualified applicants without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, disability, veteran status, and other legally protected characteristics. \",\n            \"location\": \"Downsview, ON\"\n        },\n        {\n            \"id\": \"E01E76DD5D08C48CE87CA2D78A928121\",\n            \"cityName\": \"1411 Avenue Dollard, Lasalle, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=b29466a14d21282e\",\n            \"jobName\": \"Reception/Customer Service\",\n            \"companyName\": \"Salon De Bronzage Suntan\",\n            \"rowSalary\": \"$14.25 an hour\",\n            \"date\": 1694291478865,\n            \"dateOfPosted\": 1670761538414,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.4309034,\n                    \"lon\": -73.63370909999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montréal\",\n                \"formattedAddress\": \"Av Dollard, Montréal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Québec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Communauté-Urbaine-de-Montréal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service/Receptionfront deskJob Types: Part-time, PermanentPart-time hours: 14 per weekSalary: $14.25 per hourBenefits:Casual dressFlexible scheduleOn-site parkingStore discountSchedule:Day shiftEvery WeekendWeekends onlySupplemental pay types:Commission payAbility to commute/relocate:Lasalle, QC: reliably commute or plan to relocate before starting work (required)Education:Secondary School (preferred)Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Av Dollard, Lasalle, QC\"\n        },\n        {\n            \"id\": \"9F66A76DBBBB354763E70023BD4867CC\",\n            \"cityName\": \"46 Wright Ave, Dartmouth, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0b4c72fdcae9107b\",\n            \"jobName\": \"Warehouse Assistant - Customer Service\",\n            \"companyName\": \"Happy Harry's\",\n            \"rowSalary\": \"$17–$18 an hour\",\n            \"date\": 1694291337870,\n            \"dateOfPosted\": 1669262763200,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.7083211,\n                    \"lon\": -63.5827791\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Dartmouth\",\n                \"formattedAddress\": \"Wright Ave, Dartmouth, NS B3B, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Halifax Regional Municipality\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Dartmouth\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Description: This position has the primary function of working in the warehouse to complete customer orders to their exact specifications; assist with loading orders; and, installing window inserts; and re-stocking products. This position also has responsibility of obtaining and delivering product to and from the warehouse. This position is also responsible for ensuring that all merchandise and work areas are maintained in a clean and safe manner.DUTIES AND RESPONSIBILITES· Abide by and adhere to all tasks and procedures outlined in the HH Distributing Company Limited Employee Manual and any other distributed documents.· Comply with all health and safety regulations and wearing appropriate personal protective equipment as required.· Report for work as scheduled wearing the appropriate clothing and logoed HH Distributing Company Limited attire as may be required.· Processing door orders by checking and ensuring the dimensions are correct.· Installing window inserts ensuring orders are correct.· Loading product for customers and checking off the product loaded to the sales ticket.· Assisting customers with returns when necessary.· Loading and unloading product from the warehouse to restock inventory as required.· Maintain outside areas and ensure they are neat, tidy and safe always.· Cleaning washrooms when assigned, signing off the schedule and following requested appropriate procedures.· Assisting co-workers with their tasks during slow periods or by sharing product knowledge, etc.· Communicate with other stores/door plant/suppliers as necessary.· Clean up work area daily, ensuring site is always kept tidy and safe.· Perform any other tasks as assigned by supervisors.Tools & EquipmentCompany specified tools for this position include but are not limited to:· Drills· Knife· Hand Saw· Measuring tape· Calculator· Shovel, broom, mop, etc.· Pallet jack· Forklifts· Carts· Ladders· Electrical SawSkills· Completion of High School or equivalent.· Certifications in WHMIS and First Aid would be considered an asset.· Strong technical knowledge in carpentry/construction products and processes; application of products and processes; math skills; occupational health and safety.· Previous experience in sales would be considered an asset.· Ability to communicate clearly and concisely in English both verbally and in writing.· Excellent analytical and problem-solving skills.· Ability to be self-motivated.· Strong organizational skills and must be detail oriented and flexible.· Ability to work as part of a team and be a team player.· Ability to lift 50 to 75 pounds on a repetitive basis.· Ability to provide clean drivers abstract and criminal records background check.Decision MakingThis position makes decisions only within the scope of the job description and/or specific instructions from his supervisors. This position is accountable for the decisions he makes.Inside/Outside RelationshipsThis position deals with customers, co-workers, suppliers on a regular basis and must always be able to maintain a professional and business-like attitude.Position ConditionsThis position works both inside and outside and must monitor and adhere to various safety guidelines. This position must have the flexibility to stand, sit, walk, climb, twist or bend as required and must be able to lift 50 to 75 pounds on a repetitive basis. This position has some exposure to dust, dirt, fumes, heat, cold, noise, and inclement weather. This position requires visual concentration to complete daily tasks. This position requires good hearing to listen for unusual sounds in equipment and site management.FinancialThis position does not have any financial responsibility.Supervisory/ManagementThis position has no supervisory responsibility.Job Type: Full-timeSalary: $17.00-$18.00 per hourBenefits:On-site parkingStore discountSchedule:Monday to FridayWeekend availabilityCOVID-19 considerations:All customers are required to wear a mask while in our warehouseExperience:warehouse: 1 year (preferred)warehouse worker: 1 year (preferred)Expected start date: 2022-11-28\",\n            \"location\": \"Wright Ave, Dartmouth, NS\"\n        },\n        {\n            \"id\": \"190AFCACD1F5CA02B8D36D9B8AFF764F\",\n            \"cityName\": \"London, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=96bbdab0413740f7\",\n            \"jobName\": \"Lumber Yard Customer Service\",\n            \"companyName\": \"Copp Building Materials Limited\",\n            \"rowSalary\": \"$15.50–$16.50 an hour\",\n            \"date\": 1694291151071,\n            \"dateOfPosted\": 1659423385018,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 42.9849233,\n                    \"lon\": -81.2452768\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"London\",\n                \"formattedAddress\": \"London, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Middlesex County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"London\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Family owned and operated through four generations, Copp’s Buildall has played a prominent role in the city of London’s building industry for over 140 years. We have four locations within London and supply to both contractor and retail customers. We are currently seeking Customer Service Representatives to provide support in our Lambeth Lumber Yard A Yard Associate will be responsible with assisting customers with fast and friendly service and general yard maintenance. Daily tasks include assisting customers throughout their experience in our yard with both knowledge on our products, helping with loading and unloading materials from vehicles, and keeping the yard in pristine shape. RESPONSIBILITIES: Proper stocking of materials Assisting customers with their purchases Responsible for maintaining branch appearance according to branch standards guidelines Ensures machinery maintenance by completing daily checks Contributes to a positive team environment within the branch and throughout the company QUALIFICATIONS: A basic knowledge of building materials Forklift experience General math skills Ability to lift heavy materials / objects Able to work independently and accurately Ability to work outdoors in all weather conditions Customer focused WHY JOIN US? Family owned and operated company with a long standing history in the city Career advancement opportunities Employee discount Dynamic work environment Diverse culture and family values Excellent benefit package Copp’s Buildall is an equal opportunity employer valuing equality and diversity. Job Type: Full-time Salary: $15.50-$16.50 per hour\",\n            \"location\": \"London, ON\"\n        },\n        {\n            \"id\": \"D98F2C2727DCFC8DB2F2BB7832DD04C0\",\n            \"cityName\": \"Cedarbrae Eye Doctors in Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=e61fa4aa379cd2d3\",\n            \"jobName\": \"Optometric Assistant Office Advisor And Front Desk Customer Service\",\n            \"companyName\": \"Cedarbrae Eye Doctors\",\n            \"rowSalary\": \"$15–$18 an hour\",\n            \"date\": 1694290853443,\n            \"dateOfPosted\": 1626675462808,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"customer service work with patientsAnswer calls and book appointmentsperform pretests with patients (will train)Answer questions about procedures and productsDo computer billing deal with OHIPother office dutiesReference ID: 11Job Type: Full-timeSalary: $15.00-$18.00 per hourBenefits:On-site parkingSchedule:Monday to FridayEducation:DCS / DEC (required)Work remotely:No\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"C7C4012E506A534DA1D7F83D46D79396\",\n            \"cityName\": \"Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=6342b30256cd438a\",\n            \"jobName\": \"Customer Service Supervisor - Housing Construction\",\n            \"companyName\": \"Batista Properties Inc\",\n            \"rowSalary\": \"$34 an hour\",\n            \"date\": 1694290848726,\n            \"dateOfPosted\": 1686938945551,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 34.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    34.0\n                ],\n                \"range\": {\n                    \"gte\": 34.0,\n                    \"gt\": null,\n                    \"lte\": 34.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 2 years to less than 3 yearsTasks Prepare production and other reports Supervise workers and projects Co-ordinate and schedule activities Oversee apprenticeship training Recruit and hire workers and carry out related staffing actions Train or arrange for training Set up machines and equipment Estimate costs and materials Ensure health and safety regulations are followed Recommend personnel actions Requisition or order materials, equipment and supplies Work conditions and physical capabilities Work under pressure Overtime required Personal suitability Excellent oral communication Organized Reliability Team playerWork Term: PermanentWork Language: EnglishHours: 40 hours per week\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"68B45FAB869D48286BE6DFD486DCB1E0\",\n            \"cityName\": \"Niagara-on-the-Lake, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3972b687167d5a31\",\n            \"jobName\": \"Inside Phone Sales\",\n            \"companyName\": \"Empowerment Technologies Inc.\",\n            \"rowSalary\": \"$23–$25 an hour\",\n            \"date\": 1694290784988,\n            \"dateOfPosted\": 1692278918669,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.2549988,\n                    \"lon\": -79.0772616\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Niagara-on-the-Lake\",\n                \"formattedAddress\": \"Niagara-on-the-Lake, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Niagara\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Niagara-on-the-Lake\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 23.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    23.0\n                ],\n                \"range\": {\n                    \"gte\": 23.0,\n                    \"gt\": null,\n                    \"lte\": 23.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"**This role is in office within our Niagara-on-the-Lake site.**Who We Are:For 20 years, we’ve been leaders in the baby safety (Levana) and DIY security space (Defender), creating ground-breaking consumer electronics that bring peace of mind to millions of people all over the world. Selling directly through our brand websites, Amazon, and our retail partners such as Walmart, Costco, and Home Depot, we are growing fast and are looking for new team members to join us on this journey. For those looking to join a passionate and collaborative team that challenge conventional methods, take risks, and settle for nothing but excellence, you’ve found the right place!Who Are You?You are a fast paced, results driven, and experienced Inside Salesperson with a successful sales track record, you have a high degree of self-motivation and resilience within a sales environment. Using your strong interpersonal skills and entrepreneurial mind set, you strategically use various contact methods to maximize your communication efforts and close sales. This role operates out of our Head Office in Niagara-on-the-Lake.Perks of This Role:Full time, 40 hours per weekScheduled shifts are days, Monday – Friday with weekend availability requiredWage is $23.00-$25.00 per hourImmediately receive 2 weeks vacation (no waiting period)Comprehensive Health Benefits program after 60 daysWork in an office environment (we are NOT a call centre)50% product discount for friends and familyWork directly for the brand owners and not a 3rd partyBe involved in new product testingQualifications:1 year of sales experience with a high focus on sales targets and customer engagementStrong attention to detail and ability to multitaskExcellent organizational, time management and communication skillsFlexible/creative approach to problem solving with the ability to simplify/detangle issues to their core factorsEmotional Intelligence: self-awareness - have a strong desire to develop and improve yourself and know when to seek out expertise; self-regulation - knowing when to push and when to stop; motivation – remain motivated while creating a strong desire to achieve in others; empathy – understand and care about people’s current reality; social skills – understand people, develop trust and help themHigh School Diploma (OSSD)Our Core ValuesExcellence - We never settle for “good enough.Results - The path to success is paved with our dedication.Love - Challenges are no match for our hearts and minds.Learning - Experimentation and curiosity are part of our DNA.Simplicity - We strip away the non-essentials to get to what really matters.Job Types: Full-time, PermanentSalary: $23.00-$25.00 per hourBenefits:Casual dressDental careExtended health careOn-site parkingPaid time offStore discountVision careFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridayWeekends as neededCOVID-19 considerations:COVID-19 vaccination is required. We have put measures in place, such as daily office sanitization, socially distant desk spaces, and providing masks.Ability to commute/relocate:Niagara-on-the-Lake, ON: reliably commute or plan to relocate before starting work (required)Experience:phone sales: 1 year (required)B2B sales: 1 year (required)Work Location: In person\",\n            \"location\": \"Niagara-on-the-Lake, ON\"\n        },\n        {\n            \"id\": \"3669C67731359298E4C96E04F3E202C7\",\n            \"cityName\": \"8488 Main St, Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2b189c90b59ef011\",\n            \"jobName\": \"Customer Service Representative - Order Fulfillment\",\n            \"companyName\": \"Coast Appliances\",\n            \"rowSalary\": \"$17–$20 an hour\",\n            \"date\": 1694290737656,\n            \"dateOfPosted\": 1693421108447,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2457108,\n                    \"lon\": -123.101237\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Main St, Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Main St, Vancouver, BC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Coast Appliances is a great place to work. We are an ambitious organization, investing in technology, process, and most importantly, dynamic PEOPLE! With an energized team that stretches across Canada, we are invested in growing our team members as we grow our business.Our Order Fulfillment Specialists are responsible for processing online orders, communicating with customers and supporting the sales cycle of the selling staff . This position will be responsible to order review invoices for completeness, order product, secure final payment, schedule deliveries and be the main contact with customers regarding delivery and post-delivery follow-up, ensuring customer satisfaction and reducing delivery issues/errors.ResponsibilitiesTo improve Customer Service while increasing Profitability by reducing company losses (non-deliveries, shipping costs, unnecessary clearance product, etc.) for Retail invoices:Answer incoming customer inquiriesCollaborate with key stakeholders and teams to stay updated on new products, services, and policiesRecord and modify customer information within the databaseEngage with clients in a friendly and professional manner while actively listening to their concernsOffer support and solutions to customers in accordance with the company's customer service policiesOther duties as requestedApply now and grow with us!We thank all applicants for their time. Pease note, only applicants under consideration will be contacted.Coast is an Equal Employment Opportunity Employer. We celebrate diversity and are committed to creating an inclusive environment.Employment decisions are based on merit and business needs, and not on race, color, creed, age, sex, gender, sexual orientation, national origin, religion, marital status, medical condition, physical or mental disability, military service, pregnancy, childbirth and related medical conditions or any other classification protected by federal, provincial and local laws and ordinances. Reasonable accommodation is available for qualified individuals with disabilities, upon request. This Equal Employment Opportunity policy applies to all practices.Location: 8488 Main Street, Vancouver, British Columbia V5X 3L8Job Type: Full-timeSalary: $17.00-$20.00 per hour\",\n            \"location\": \"Main St, Vancouver, BC\"\n        },\n        {\n            \"id\": \"4952318BE5EF55FDAE6C59479CD3505A\",\n            \"cityName\": \"Calgary, AB\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=405250e6ffe7a817\",\n            \"jobName\": \"Sales And Customer Service Associate - Remote (In Calgary)\",\n            \"companyName\": \"7x Powered Inc\",\n            \"rowSalary\": \"$35,000–$55,000 a year\",\n            \"date\": 1694290693887,\n            \"dateOfPosted\": 1671603032590,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 51.04473309999999,\n                    \"lon\": -114.0718831\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Calgary\",\n                \"formattedAddress\": \"Calgary, AB, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Alberta\",\n                \"state_code\": \"AB\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 6\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Calgary\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 35000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    35000.0\n                ],\n                \"range\": {\n                    \"gte\": 35000.0,\n                    \"gt\": null,\n                    \"lte\": 35000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Sales and Customer Service Associate – Work from Home / Fully Remote (Calgary) Location: Work from home (Must live in Calgary) Do you love the idea of being part of a team that will forever change the way Canadians interact with our favourite brands? Do you enjoy working in an entrepreneurial environment, where quick decision-making enables meaningful and measurable progress? Are you always striving to be a top performer in anything you put your mind to? Does the prospect of joining a disruptive (but proven) business, with tons of growth potential, excite you? We've already hired 200+ Calgarians, and we're just getting started! Grow with us! Actually build a career at 7x, and gain access to our world-class compensation package including: 100% Health and Dental Coverage package, on day 1 Total cash compensation of 20-40% higher than other similar roles in Calgary Predictable scheduling and office hours Disrupt an industry together, with our proven recipe! If you answered yes to the questions above, then we’d love to hear from you! About 7x 7x was founded on the basic premise that most contact centers suck, resulting in painful client interactions with some of the world’s most recognized consumer brands. We set out to reinvent the industry, shifting focus towards co-creating delightful experiences to drive brand affinity, loyalty and conversion, for our client brands. We’ve now proven, with one of Canada’s largest Telcos, that this approach drives exponential results! Our unique engagement model involves a more customized and collaborative approach to designing, building, and operating omnichannel contact centers for the world’s coolest customer-centric brands. We help our clients redefine industries – from top to bottom and inside out. Delivering a world-class experience requires that we look at the world in a whole new way. Using kick-ass technology, and insights gleaned from rich data, we create exceptional, fully customized, experiences that go well beyond what anyone thought possible. Key Responsibilities Demonstrated ability to effectively implement a consultative and solutions-based sales and/or methodology. Thrive in a fast-paced environment and meet established sales targets. Multi-task in various systems to ensure the customers transaction is completely quickly and accurately. Demonstrate ability to positively influence customers (propose options/solutions). Act as an ambassador for our clients and provide their customers with a superior experience. Required qualifications Only four real requirements: You're an Ace at navigating software systems: Exceptional multitasking skills with productivity tools such as MS Office and Microsoft Windows. You know how to be real: You have the patience to listen attentively, solve creatively and create strong human connections. You're an upbeat, self-motivated, tenacious team player who is a fast learner, and has the ability to work independently. You have stronger-than-average English language skills (verbal and written communication) that translate well across communication channels (i.e. Phone, Email, and SMS). A couple “nice to have” items: Telephone sales or service experience is nice, but not required. Telecommunications industry experience is nice, but not required. Job Types: Full-time, Permanent Salary: $35,000 - $55,000 per year Benefits: Casual dress Dental care Extended health care Paid time off Vision care Schedule: Monday to Friday\",\n            \"location\": \"Calgary, AB\"\n        },\n        {\n            \"id\": \"B54CF47CA083F2D58E970BCD096FD15D\",\n            \"cityName\": \"1801 Harwood Avenue North, Ajax, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=48a32f62a614188b\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Insurance Brokerage (Ajax)\",\n            \"rowSalary\": \"$40,000–$45,000 a year\",\n            \"date\": 1694290629831,\n            \"dateOfPosted\": 1690310199978,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.8794663,\n                    \"lon\": -79.0269648\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ajax\",\n                \"formattedAddress\": \"Harwood Ave N, Ajax, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Ajax\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 40000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    40000.0\n                ],\n                \"range\": {\n                    \"gte\": 40000.0,\n                    \"gt\": null,\n                    \"lte\": 40000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position OverviewOur Successful Brokerage is seeking a qualified professional to join our team for the role of Customer Service Representative. We seek an energetic professional interested in helping our business grow through value-based conversations and remarkable customer experience. If you are a motivated self starter who thrives in a fast-paced environment, then this is your opportunity for a rewarding career with excellent income and growth potential.ResponsibilitiesEstablish customer relationships and follow up with customers, as needed. Such as payments, pending requests or follow up on emails.Provide prompt, accurate, and friendly customer service. Preparing new business applications, ordering abstracts & scanning.RequirementsExcellent communication skills - written, verbal and listeningSelf-motivated. Prior customer service experience (2yrs). Insurance Experience preferred.Experience in a variety of computer applicationsJob Types: Full-time, PermanentSalary: $40,000.00-$45,000.00 per yearSchedule:8 hour shiftSupplemental pay types:Commission payCOVID-19 considerations:We have complied and have taken extra precautions with regards to Covid-19 pandemic. And currently operating by appointment only for all our customers.Work Location: In person\",\n            \"location\": \"Harwood Ave N, Ajax, ON\"\n        },\n        {\n            \"id\": \"9FED08FB61713376AC389B4624C19DDE\",\n            \"cityName\": \"114 Sydenham St, Flesherton, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=ac6a298f221d9151\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Country Style & Mr. Sub\",\n            \"rowSalary\": \"From $16.50 an hour\",\n            \"date\": 1694290579254,\n            \"dateOfPosted\": 1692315096353,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.2648914,\n                    \"lon\": -80.5533015\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Flesherton\",\n                \"formattedAddress\": \"Sydenham St, Flesherton, ON N0C 1E0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Grey County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Flesherton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"“ LOCAL CANDIDATES ONLY ”Customer Service Representative$16.50/HRNo experience necessary..All Training will be providedApplicants should be:-Mature-Responsible-Punctual-A Team PlayerApply ASAP online or drop resume in person at the store to be hired!Job Types: Full-time, Part-time, Permanent, CasualSalary: From $16.50 per hourFlexible Language Requirement:French not requiredSchedule:Day shiftEvening shiftHolidaysMonday to FridayMorning shiftWeekends as neededWork Location: In person\",\n            \"location\": \"Sydenham St, Flesherton, ON\"\n        },\n        {\n            \"id\": \"1220D36AD1EC6E86AEF94C70696E7520\",\n            \"cityName\": \"245 West Hunt Club Road, Ottawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=800cef8f638b7991\",\n            \"jobName\": \"Customer Service Representative: Adoptions (Part Time)\",\n            \"companyName\": \"Ottawa Humane Society\",\n            \"rowSalary\": \"$20.32–$24.72 an hour\",\n            \"date\": 1694290571033,\n            \"dateOfPosted\": 1693408859624,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.3228772,\n                    \"lon\": -75.7673026\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Ottawa\",\n                \"formattedAddress\": \"W Hunt Club Rd, Ottawa, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Ottawa\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"West Hunt Club Rd, Ottawa, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 21.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    21.0\n                ],\n                \"range\": {\n                    \"gte\": 21.0,\n                    \"gt\": null,\n                    \"lte\": 21.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"The Ottawa Humane Society is a non-profit, community-based organization and a registered charity. Since 1888, we have been the leading organization providing a safe haven for sick, injured and homeless animals in Ottawa. For more information on the Ottawa Humane Society, visit us at: http://www.ottawahumane.ca.The Customer Service Representative (CSR): Adoptions is responsible for assisting the public through the process of adopting Ottawa Humane Society (OHS) animals.Job Details:Position: CSR: Adoptions Hourly wage range: $20.32/hr - $24.72/hrWork schedule: given belowStart date: ASAPThis is a part time position with a 4 week repeating schedule with 34.5 hours biweekly:Week 1 - Friday 3:30pm to 8:30pmWeek 2 - Thursday & Friday 3:30pm to 8:30pm , Saturday & Sunday 9am to 6 pm,Week 3 - Saturday & Sunday 11am to 5 pmWeek 4 - Tuesday 11am to 8:30 pm, Saturday & Sunday 9 am to 6 pmWhat would you do?Provide consultation and support for OHS clients seeking to adopt an animalProvide information to OHS clients on good animal care practicesMonitor the health and safety of animals available for adoptionProvide adoption follow-up servicesSupport operations in the Buddy and Belle retail boutique by processing sales transactions, maintaining and organizing stock, and promoting OHS goods for saleMaintain the Adoption Centre and Buddy and Belle boutique area, facilities, and equipmentEnsure appropriate fees are collected and accounted forEnter data and maintain data integrity in ChameleonSupport the activities of coworkers, volunteers, students and work placements and provide orientation and training as requiredBe thoroughly familiar with pertinent legislation, regulations, guidelines, OHS policies, procedures, collective agreement, and good animal care practicesProduce and maintain accurate reports, records, and filesParticipate in supervision, evaluation, training and other meetings as requiredParticipate in the identification and evaluation of OHS program goals and objectivesParticipate in professional development opportunitiesRepresent the OHS in a professional mannerParticipate in public relations and promotional activities as requiredWill be required to assume some of the responsibilities of CSR: IntakeMay be required to assume some of the responsibilities of the Supervisor: Customer Service or Coordinator: PALQualifications:Secondary school diploma or equivalentMinimum of one year experience in customer serviceAnimal handling experience preferredProficiency in Microsoft Office SuiteProfessional working proficiency in spoken and written English is requiredEssential Duties and Working Conditions:Employee may be required to work evening, holiday and weekend shiftsEmployment is conditional upon the ability to provide services in a safe manner, including, but not limited to, lifts and transfers of large animals and interaction with potentially aggressive animalsEmployee will be required to wear a uniform designated by the employerEmployment is conditional upon maintaining confidentiality of OHS informationEmployment is conditional upon the ability to work around all species of animals safelyThe Ottawa Humane Society is an equal opportunity employer. The OHS offers accommodation for applicants with disabilities in its recruitment processes. If you are contacted by the OHS regarding a job opportunity, please advise prior to the interview if you require accommodation. We thank all applicants for applying, however, only candidates selected for interviews will be contacted.Job Type: Part-timeSalary: $20.32-$24.72 per hourEducation:Secondary School (required)Experience:Customer service: 1 year (required)Work Location: In person\",\n            \"location\": \"West Hunt Club Rd, Ottawa, ON\"\n        },\n        {\n            \"id\": \"57D94456A1C982E4FBA7F885E0778CED\",\n            \"cityName\": \"North York, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=3f6aec862b2b65f6\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Good To Great Solutions\",\n            \"rowSalary\": \"$38,000–$43,000 a year\",\n            \"date\": 1694290540149,\n            \"dateOfPosted\": 1693410238083,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.7615377,\n                    \"lon\": -79.41107939999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"North York, Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"year\",\n                \"salaryFrom\": 38000.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    38000.0\n                ],\n                \"range\": {\n                    \"gte\": 38000.0,\n                    \"gt\": null,\n                    \"lte\": 38000.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"At Good to Great Solutions, We strive for excellence and are the leaders in consulting and customer acquisition across North York. We are looking for an entry-level Customer Service Representative who will play a valuable support role by providing a superior level of service to all customers to help them achieve their individual goals. As an entry-level Customer Service Representative, you'll be responsible for delivering effective direct communication with clients and consumers. You will execute this by using knowledge of our client's history, products, and services.Our mission is to create a distinctive culture and career development for our Customer Service Representative team. With the passion for driving excellence, never allowing our team to hit the ceiling but only the ability to surpass expectations is why we have become so successful. Collaborative success is our main priority for our Customer Service Representatives because culture and teamwork are at the heart of our work. We offer the ability to grow from entry-level on and the opportunity to advance your professional skill set.Customer Service Representative Responsibilities:Effectively solve customer inquiries and find the best solution possible to fir the customer's needsGenerate long-term customer satisfaction by building genuine relationshipsCross-selling and up-selling by assisting customers in finding a product that satisfies their needsThe ability to be successful independently as well as collaborating with internal Customer Service teams, clients, and partners on market strategyCollect accurate and updated customer information in our internal databaseIdentify market trends and key opportunities for innovation to enhance the customer experienceImpact client experience positively with knowledgeable information about our clientele.Advocate for customers by identifying trends in issues and suggesting improvements to processes, policies, and productsRequirements:High school diploma or equivalentExquisite communication and people skillsCreative thinking skills, good problem-solving skills, ability to think outside the boxExceptional self-management skillsExcellent planning and organizational skills with demonstrated multi-tasking abilitiesGoal-driven with the ability to work under pressureTeam playerPerks for you!Holiday closuresDiverse and open environment where your ideas are encouragedOpportunity for career advancement into a team lead or supervisor positionsBonuses and incentives will be provided for our top performersTeam building activities with a diverse cultureJob Type: Full-timeSalary: $38,000.00-$43,000.00 per yearSchedule:Monday to FridayWeekend availabilityApplication question(s):Do you have availability to commute to M2H 2N8 on a daily basis?Work Location: In person\",\n            \"location\": \"North York, ON\"\n        },\n        {\n            \"id\": \"400E84D8837DF7E7B4D47600B55BB9C4\",\n            \"cityName\": \"1600 32 St, Vernon, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=2b1edf484dc3e945\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Jim’s Place\",\n            \"rowSalary\": \"$17–$22 an hour\",\n            \"date\": 1694289635446,\n            \"dateOfPosted\": 1694289635264,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 50.2670137,\n                    \"lon\": -119.2720107\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vernon\",\n                \"formattedAddress\": \"Vernon, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"North Okanagan\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vernon\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Jim's Place Pizza is a popular local pizzeria.We are searching for a new person to join our awesome family. The staff culture is great and we would love to have you be a part of it.Your position would be at the front helping customers and taking phone and online orders. Strong customer service skills are a must. It’s a fun & fast paced environment and we have an incredible staff.Hours are flexible, we have people that are both part time and full time.Job Types: Full-time, Part-timePart-time hours: 10-40 per weekSalary: $17.00-$22.00 per hourFlexible Language Requirement:French not requiredSupplemental pay types:TipsWork Location: In person\",\n            \"location\": \"Vernon, BC\"\n        },\n        {\n            \"id\": \"0622E10E16444B963B42B229584E1E74\",\n            \"cityName\": \"Abbotsford, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9331b08b625e24bd\",\n            \"jobName\": \"Customer Service Representative\",\n            \"companyName\": \"Meridian Farm Market\",\n            \"rowSalary\": \"From $16.75 an hour\",\n            \"date\": 1694289447768,\n            \"dateOfPosted\": 1694289447549,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.0504377,\n                    \"lon\": -122.3044697\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Abbotsford\",\n                \"formattedAddress\": \"Abbotsford, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Fraser Valley\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Abbotsford\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 17.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    17.0\n                ],\n                \"range\": {\n                    \"gte\": 17.0,\n                    \"gt\": null,\n                    \"lte\": 17.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service ACE (Ambassador of Customer Experience) Join our growing family business! Enjoy a 30% Employee Discount, Benefits, and Flexible Hours. Meridian ACEs give people the best possible experience through serving them well and personally connecting with friendly hospitality. You'll LOVE this job if you: Have the ability to connect with people in ways that help them feel welcomed, valued, and appreciated Enjoy being there for others, serving, and providing assistance. No previous experience required. This role is for you if you have: Strong interpersonal skills Ability to learn quickly Knowledge of the retail environment Effective communication skills Ability to work as part of a team Ability to lift up to 50 lbs continuously. Ability to work on your feet all day, bending, leaning, crouching, and walking. Ability to work for extended periods of time, in a refrigerated environment (cooler or freezer) Deli or kitchen experience is a plus. Weekday, daytime availability is a must! Job Type: Full & Part-time Positions available Schedule: 20-35 hours per week 4-8-hour shifts Day shifts and/or closing shifts Wage/Salary: starting at $16.75 per hour (dependent upon experience) Bi-annual wage increases Advancement opportunities Benefits: 30% Employee Discount on in-store purchases Health & Dental care Paid Sick Time Flexible Schedule _Meridian is an equal opportunity employer of all qualified individuals. Our workplace is welcoming to people of all backgrounds, orientations, and diversities, and we encourage all to apply._ Job Types: Full-time, Part-time, Permanent Part-time hours: 15 - 35 per week Salary: From $16.75 per hour Benefits: Extended health care On-site parking Store discount Flexible Language Requirement: French not required Schedule: 4 hour shift 8 hour shift Day shift Evening shift Monday to Friday Weekend availability Supplemental pay types: Overtime pay Ability to commute/relocate: Abbotsford, BC V2S 5A1: reliably commute or plan to relocate before starting work (required) Education: Secondary School (preferred) Experience: Customer service: 1 year (preferred) Shift availability: Day Shift (preferred) Work Location: In person\",\n            \"location\": \"Abbotsford, BC\"\n        },\n        {\n            \"id\": \"E4609080A808861B203E48CD77E038BB\",\n            \"cityName\": \"39 Martin Rd, Bowmanville, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=a51d85d7824f9f06\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Circle K\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694289185705,\n            \"dateOfPosted\": 1692207173086,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.9023127,\n                    \"lon\": -78.6982075\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Bowmanville\",\n                \"formattedAddress\": \"Martin Rd, Bowmanville, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Martin Rd, Bowmanville, ON\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"You'll be working as a cashier. We are looking for 1 person to cover the night shift.- Monday to Thursday 11 pm - 7 amWe are looking for people aged 19 or older since you'll be dealing with cigarettes, smoking products, lottery, etc.If you are interested please bring in your resume we would be happy to have you on our team.Job Types: Full-time, PermanentSalary: $15.50 per hourDay range:HolidaysMonday to FridayShift:8 hour shiftNight shiftCOVID-19 considerations:All employees and customers must wear masks at all times while in the store.Application question(s):Do you have a form of transportation to the job?Work Location: In person\",\n            \"location\": \"Martin Rd, Bowmanville, ON\"\n        },\n        {\n            \"id\": \"5816F5CB4FF354DD78261A9AFF784885\",\n            \"cityName\": \"7667 County Rd 56, Utopia, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=da21dc1bb26e45db\",\n            \"jobName\": \"General Labour/Customer Service\",\n            \"companyName\": \"Country Meat Cuts\",\n            \"rowSalary\": \"$15.50–$19.00 an hour\",\n            \"date\": 1694289123219,\n            \"dateOfPosted\": 1692297909513,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 44.3378348,\n                    \"lon\": -79.81922279999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Utopia\",\n                \"formattedAddress\": \"8807 Simcoe County Rd 56, Utopia, ON L0M 1T0, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Simcoe County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Utopia\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"PLEASE READ the description of the job carefully, and ensure that ALL of the aspects are a fit for you, BEFORE you apply. We are an extremely busy place. Hard work and a high quality of work are essential to us.* Lifting 40 lbs many times each day.* Ability to multitask.* Standing for long periods and moving quickly in a fast paced environment.* Comfortable spending a lot of time in the freezer organizing and re-stocking.* Reliability and consistency is crucial to this job.* Able to work 8 ½ hour shifts, 5 days a week.* Comfortable conversing with customers and providing excellent customer service.* Do you cook? Have a good knowledge of meat? This is essential when serving our customers.* Willingness to participate in every aspect of running the shop, including cleaning, packaging, customer service, and so much more.* Food handling certificate is an asset.We are a small family run butcher store that has been in business for 50 years. We are a close knit group. Providing a happy, healthy work environment is extremely important to us. When our employees work hard for us, we take good care of them. Please note that we are located rurally, in Utopia and there is no public transportation. Hours and days of work will be various shifts Tuesdays - Saturdays, 8am - 6pm. Working every Saturday is guaranteed.The salary for this position will depend on experience, and ability to check all of the boxes that we are looking for. Competitive wages will be offered to the right candidate. Experience in the industry is an asset, but we are willing to train, if you are willing to work hard.If this position sounds like a good match to you, please email your resume to: brandyrafeekcmc@gmail.com. Please do not apply any other way.Country Meat Cuts7667 County Rd. 56 Utopia, ON L0M 1T0705-424-2447 - countrymeatcuts.comJob Type: Full-timeSalary: $15.50-$19.00 per hourAbility to commute/relocate:Utopia, ON L0M 1T0: reliably commute or plan to relocate before starting work (required)Application question(s):This job will require lifting 40+ lbs many, many times a day. Is this something that you are comfortable with?This job will require spending several hours each day inside a heavy duty freezer, re-stocking and re-organizing. Is this something that you are comfortable with?Experience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"County Rd, Utopia, ON\"\n        },\n        {\n            \"id\": \"3CA9AEB9EE8C7950CCCB90DCFE6C3E69\",\n            \"cityName\": \"252 Main St, Kentville, NS\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=65127225c31d81f1\",\n            \"jobName\": \"Customer Service Associate\",\n            \"companyName\": \"Needs Convenience\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694288952139,\n            \"dateOfPosted\": 1692278995430,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.07587820000001,\n                    \"lon\": -64.4911615\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Kentville\",\n                \"formattedAddress\": \"Main St, Kentville, NS B4N, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Nova Scotia\",\n                \"state_code\": \"NS\",\n                \"postalTown\": null,\n                \"county\": \"Kings County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Kentville\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service Associate will be responsible to carry out full range of duties:Provide customer service to meet customer needs and process customer transactionsMaintain an accurate cash drawer while following company policies and proceduresStocking products and maintaining products displaysEnsure everything is clean and tidy in store and back storage roomOther duties as requiredRequirements :Ability to lift or move 5-25 lbsStanding long hoursAbility to work independently in fast paced environmentFlexibility to work a variety of hours on weekdays and weekendOpen availability - Seven days in weekPresently in CanadaJob Type: Full-timeSalary: $14.50 per hourFlexible Language Requirement:French not requiredSchedule:8 hour shiftEvening shiftEvery WeekendMonday to FridayMorning shiftWeekends as neededWork Location: In person\",\n            \"location\": \"B- Main St, Kentville, NS\"\n        },\n        {\n            \"id\": \"9D572A1F9D545580FDD5DA2A21E6846B\",\n            \"cityName\": \"852 Ontario St, Stratford, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=f5ef6a272d37e5be\",\n            \"jobName\": \"Customer Service Representative Meal Advisor\",\n            \"companyName\": \"M&M Food Market Stratford\",\n            \"rowSalary\": \"$15.50 an hour\",\n            \"date\": 1694287714818,\n            \"dateOfPosted\": 1694287714629,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.3711286,\n                    \"lon\": -80.96233149999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Stratford\",\n                \"formattedAddress\": \"Ontario St, Stratford, ON N5A, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Perth County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Stratford\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Job Title– Customer Service RepresentativeCompany– M&M Food Market StratfordLocation– Stratford, ONSalary– $15.50 per hourJob type– Part-timeJob DescriptionM&M Food Market is a food retailer unlike any other; we don’t just sell products, we offer meal solutions and a unique shopping experience that helps to make customer’s everyday lives a little easier. We’ve been helping customers make delicious meals and entertain with ease for over 40 years!Our Customer Service Associates – known as Meal Advisors in our stores – are truly the face of M&M Food Market. If you have passion for food, can deliver exceptional customer service, and are willing to learn about our incredible lineup of wholesome and delicious products, we'd love to hear from you! We offer competitive wages, a welcoming, \\\"small team\\\" environment and flexible hours that allow you to balance your personal and professional needs. To learn more about M&M Food Market, we invite you to visit www.mmfoodmarket.comTHE POSITIONReporting to the Store Manager, the Customer Service Associate/Meal Advisor exhibits positive energy, provides knowledgeable service, and ensures a welcoming environment is presented to customers at all times. They are responsible for learning about products and promotions, receiving and organizing inventory, preparing product for customer sampling and light cleaning duties within the store.THE PERSONIs a people-person and can create a friendly, professional rapport with everyone they meet.Takes a genuine interest in customers and creating a delightful in-store experience, always taking into consideration the brand promise to help customers.Is hard-working and has a positive, can-do attitude towards working as part of the store team.Knows about and enjoys eating and preparing food! Can speak intelligently about food and meal preparation.Understands the challenges that time-starved, busy consumers face and can provide great meal and entertaining ideas/advice.Can operate a Point of Sale system and use Windows-based computer programs.Can meet the physical demands of the job, including lifting/carrying boxes weighing up to 40 lbs, standing for extended periods of time, and working within a freezer environment.We thank all applicants for their interest in this opportunity, however only those selected for an interview will be contacted.Job Type: Part-time 14 - 20 hours per week ( evenings and weekends)Salary: $15.50 /hourApplicant Qualifications– High School, we provide trainingHires Needed: 1 hireApply method : Drop resume at the store 852 Ontario St.Work RemotelyNoJob Types: Part-time, PermanentPart-time hours: 14-20 per weekSalary: $15.50 per hourBenefits:Store discountSchedule:Monday to FridayWeekendsWork Location: In person\",\n            \"location\": \"Ontario St, Stratford, ON\"\n        },\n        {\n            \"id\": \"562E969426AB4B77E22401504021E97E\",\n            \"cityName\": \"970 Nelson Street, Oshawa, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=9942f156b1553aa3\",\n            \"jobName\": \"Customer Service Representative - Automotive\",\n            \"companyName\": \"Fix Auto\",\n            \"rowSalary\": \"$20–$25 an hour\",\n            \"date\": 1694287692299,\n            \"dateOfPosted\": 1692207248013,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.875179,\n                    \"lon\": -78.83734799999999\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Oshawa\",\n                \"formattedAddress\": \"Nelson St, Oshawa, ON L1H, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Regional Municipality of Durham\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Oshawa\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Fix Auto is looking for a Customer Service Representative!If you are a people person and are looking to evolve in a fast-paced work environment, then this could be your ticket to a great career. As a Customer Service Representative, you will act as brand ambassador and provides positive brand experience to all customers.A day in the Life of a Customer Service Representative at Fix AutoEffectively manage front office operations to ensure efficient organization and support of the sales functionProvide service to customers by reviewing the services offered and cross-sell different programs by explaining the advantage of our multiple service offerings.Collaboration with production manager and sales managers to ensure vehicles are on track for timely and flawless deliveryCommunicate and interact with clients throughout the different technologies such as text messages, emails, online videocall, etc.As required, assign the work order to technicians.Our ideal candidate is someone with:Extensive experience in Customer Service.Experience working in an administration or data entry role preferredComputer literateStrong work ethic, quality oriented and a positive team attitudeWhy join Fix Auto ?You will join a dynamic and super motivatedteam in a fast-paced work environment. Fix Auto is part of the Fix Network, one of the world’s largest automotive aftermarket services providers. Celebrating more than 28 years of excellence, each of our over 900 Fix Auto Centre is owned and operated locally offering a wealth of opportunity for personal growth and development. Throughout your journey with us, you will sharpen your skills.If you want to be part of the fastest growing collision repair brands in North America, Apply now!Location: 970 Nelson Street, Oshawa, Ontario L1H 8L6Job Type: Full-timeSalary: $20.00-$25.00 per hourWork Location: In person\",\n            \"location\": \"Nelson Street, Oshawa, ON\"\n        },\n        {\n            \"id\": \"474DC389240C89679F2E734CFB669BFB\",\n            \"cityName\": \"2 Conception Bay Highway, Conception Bay, NL\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=bc7ddcd1fb8a2b42\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Marshall`s Cornerstop\",\n            \"rowSalary\": \"From $14 an hour\",\n            \"date\": 1694287379323,\n            \"dateOfPosted\": 1676745498800,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 47.5083178,\n                    \"lon\": -52.9940605\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Conception Bay South\",\n                \"formattedAddress\": \"Conception Bay South, NL, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Newfoundland and Labrador\",\n                \"state_code\": \"NL\",\n                \"postalTown\": null,\n                \"county\": \"Division No. 1\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Conception Bay South, NL\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 14.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    14.0\n                ],\n                \"range\": {\n                    \"gte\": 14.0,\n                    \"gt\": null,\n                    \"lte\": 14.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"General cashier duties including serving customers, answering calls and stocking shelves. Must have customer service experience!Job Types: Part-time, PermanentPart-time hours: 30 per weekSalary: From $14.00 per hourBenefits:Dental careOn-site parkingVision careDay range:HolidaysMonday to FridayWeekend availabilityFlexible Language Requirement:French not requiredShift:8 hour shiftDay shiftNight shiftWork setting:Convenience storeAbility to commute/relocate:South River, NL: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Shift availability:Day Shift (preferred)Night Shift (preferred)Work Location: In personExpected start date: 2023-02-22\",\n            \"location\": \"Conception Bay South, NL\"\n        },\n        {\n            \"id\": \"62095A72976A21C24BE94A8434C31515\",\n            \"cityName\": \"Penticton, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=61704d53feffe4f0\",\n            \"jobName\": \"Customer Service Representative - Financial Services\",\n            \"companyName\": \"Speedy Cash Canada\",\n            \"rowSalary\": \"$18.75 an hour\",\n            \"date\": 1694287362888,\n            \"dateOfPosted\": 1693422585780,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.4991381,\n                    \"lon\": -119.5937077\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Penticton\",\n                \"formattedAddress\": \"Penticton, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Okanagan-Similkameen\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Penticton\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 19.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    19.0\n                ],\n                \"range\": {\n                    \"gte\": 19.0,\n                    \"gt\": null,\n                    \"lte\": 19.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Education: Secondary (high) school graduation certificateExperience: 1 to less than 7 monthsHealth benefits Dental plan Health care plan Paramedical services coverage Vision care benefits Financial benefits BonusWork Term: PermanentWork Language: EnglishHours: 35 hours per week\",\n            \"location\": \"Penticton, BC\"\n        },\n        {\n            \"id\": \"1BDF1372F2633A826F65D0876F75AD62\",\n            \"cityName\": \"39 King St E, Cobourg, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=c8c94ebc67d8b46a\",\n            \"jobName\": \"Customer Service/Cashier\",\n            \"companyName\": \"The Market & Smør\",\n            \"rowSalary\": \"$15.50–$18.00 an hour\",\n            \"date\": 1694287334305,\n            \"dateOfPosted\": 1692199251522,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.9639213,\n                    \"lon\": -78.1483111\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Cobourg\",\n                \"formattedAddress\": \"King St E, Cobourg, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Northumberland County\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Cobourg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Position title: Market CashierReports to: Front of House ManagerBrief Company SummaryWelcome, we are so happy to have you here!The Market & Smør is Cobourg’s downtown fresh market. We are a leader in customer experience and exceptional, quality foods and produce.The Market puts customer experience and exceptional foods at the heart of our brand. We operate in a zero food-waste capacity. We have proven that people can shop in a beautiful space with the best foods and that employees can work in a professional, career-driven atmosphere while being challenged and doing what they love. Opening in 2019 and serving hundreds of customers since, we are looking for someone to help us continue succeeding in what we do best.What a Customer Cashier doesAs the Customer Service Cashier for The Market & Smør, you’ll have an impact on hundreds of people in your community each week. Your goal is to make people feel better than when they came in as you help them purchase what will nourish them, their families, and their friends. You will use food to connect to people and you will be an integral part of a 7 department company that works in unison to provide the most exceptional services to all of our guests. Your success will have a direct impact on our customers and community.Working with The Market & Smør, you are provided with a host of benefits. These include full benefits for full-time employees, a supportive atmosphere that strives to reach goals and succeed as a team, multiple departments to work in, respect and value for open communication and learning opportunities that will enhance your career. Other bonuses include on-site parking, casual dress, store discount and more.To be considered for this role, here are the skills that we are looking for:At least one year in a similar role with similar responsibilitiesYou must be an excellent communicator and quick thinking, someone who understands the experience of a shopper and their connection to food and serviceYou must be able to understand the impact that food has on peopleYou must be able to cash people out properly and quickly and balance tils at the end of the nightYou must understand the importance of thorough product knowledgeCore Job ResponsibilitiesAs a Market & Smør Customer Service Cashier, you’ll be on your feet, meeting the needs of our guests and ensuring that they are being rung through and going home with the best quality foods. You will be responsible for:Provides a positive customer experience with fair, friendly, and courteous service.Memorizes top 40 PLUs and uses them properlyRegisters sales on a cash register by scanning items, itemizing and totaling customers’ purchases.Resolves customer issues and answers questions.Order Fresh FlowersProcesses return transactions.Follows through on Opening and Closing List with efficiency and completelyEnsures tags are in good shape and prices are correct.Works with other departments to ensure proper sale prices are communicated on a daily basis.Itemizes and totals purchases by recording prices, departments, taxable and nontaxable items; and operating a cash register.Thinks quickly on the spot to fix problemsCommunicates clearly with Inventory Manager about prices, scanned items and inventory changesDiscounts purchases by redeeming coupons.Collects payments from customers and makes change for cash.Verifies credit acceptance by reviewing the debit machine before the customer leaves.Balances the cash drawer by counting cash at opening and closing.Provides pricing information by answering questions.Maintains checkout operations by following policies and procedures and reporting needed changes.Maintains a safe and clean working environment by complying with procedures, rules, and regulations.Contributes to team effort by accomplishing related results as needed.Has a thorough understanding of fresh produce and what to do with it.Memorizes The Welcome and walks new customers through The Market with it.Utilizes First In, First Out (FIFO) systems.Stocks items efficiently and effectively minimizing wasteTakes pride in product knowledge, community partners that we work with and can communicate this with customers effectively.QualificationsQualifications include:Attention to detailExcellent communication skillsQuick thinkingAbility to work with minimal functional directionAbility to work quickly and efficientlyWorking conditionsThis is a retail environment. There are many hours standing on your feet while being customer-facing.There are many hours with the public coming in and out of the retail with many different interactions.Physical requirementsThe physical requirements of a Market Cashier include:Regularly required to walk or stand;Regularly lift and/or move up to 23kg (50lbs.);Will be required to perform tasks involving firm grasping;Occasionally be required to bend, twist or squat.Will be involved in frequent repetitive hand actions.Will be required to reach above shoulder height and below waist level.We look forward to hearing from you!Job Types: Full-time, Part-timePart-time hours: 28 per weekSalary: $15.50-$18.00 per hourBenefits:Dental careOn-site parkingStore discountVision careDay range:Monday to FridayWeekends as neededFlexible Language Requirement:French not requiredShift:8 hour shiftDay shiftWork setting:Grocery storeSpecialty storeAbility to commute/relocate:Cobourg, ON K9A 1K6: reliably commute or plan to relocate before starting work (required)Experience:sales: 1 year (preferred)Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"King St E, Cobourg, ON\"\n        },\n        {\n            \"id\": \"E0A68C1E751166F8B5F525F98D364CC0\",\n            \"cityName\": \"8069 River Way, Delta, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=07a26a645d6ad382\",\n            \"jobName\": \"Csr - Customer Service Representative\",\n            \"companyName\": \"Acumen Logistics Ltd\",\n            \"rowSalary\": \"$20–$21 an hour\",\n            \"date\": 1694287323040,\n            \"dateOfPosted\": 1693421121621,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.147112,\n                    \"lon\": -122.98955\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Delta\",\n                \"formattedAddress\": \"River Way, Delta, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"River Way, Delta, BC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 20.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    20.0\n                ],\n                \"range\": {\n                    \"gte\": 20.0,\n                    \"gt\": null,\n                    \"lte\": 20.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Acumen Logistics is one of the respected names in the logistics and supply chain industry. We are a one-stop solution for Transportation, Warehousing and Fulfillment services. We have a very diverse customer portfolio, which makes us a unique service provider servicing all industry types!We are looking for a motivated, reliable, and experienced CSR to join our team! We are looking for someone who can work with transporters or carriers, customers, and third-party logistics companies. The candidate will communicate with both internal and external stakeholders, handles day-to-day pick-ups, deliveries, follows up until the delivery is done and monitors other daily operations.Responsibilities· Communicate with customers via phone, email and chat· Provide knowledgeable answers to questions about product, pricing and availability· Work with internal departments to meet customer's needs· Data entry in various platformsQualifications· High school diploma, secondary education level or equivalent· Legally entitled to work in Canada· At least 2 - 3 years' of relevant work experience - Sales force· Excellent phone etiquette and excellent verbal, written, and interpersonal skills· Ability to multi-task, organize, and prioritize work· Ability to use Microsoft Office and Outlook· Punctuality to work (Working hours 8.00 am to 4.00, unless notified otherwise)Job Type: Full-timeSalary: $20.00-$21.00 per hourSchedule:8 hour shiftAbility to commute/relocate:Delta, BC: reliably commute or plan to relocate before starting work (required)Experience:logistics: 1 year (preferred)Work Location: In personApplication deadline: 2023-09-10Expected start date: 2023-09-15\",\n            \"location\": \"River Way, Delta, BC\"\n        },\n        {\n            \"id\": \"7ED124DA8AF68EF45705ACE83F80689B\",\n            \"cityName\": \"5 Northtown Way, Toronto, ON\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=8f6b221506007449\",\n            \"jobName\": \"Cashier/Customer Service\",\n            \"companyName\": \"Monga Fired Chicken\",\n            \"rowSalary\": \"From $15.50 an hour\",\n            \"date\": 1694287245054,\n            \"dateOfPosted\": 1686876726290,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 43.653226,\n                    \"lon\": -79.3831843\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Toronto\",\n                \"formattedAddress\": \"Toronto, ON, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Ontario\",\n                \"state_code\": \"ON\",\n                \"postalTown\": null,\n                \"county\": \"Toronto Division\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Toronto, ON Canada\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"We are looking for more great people to join our teams in North York Toronto!Location:5 Northtown way Unit16&17, M2N7L4-Motivated and passionate individuals-Detail-oriented and attentive-Fast learner and be able to work under fast-paced environment that demands accuracy, speed and professionalism with every order-Quick learner-Co-operation and teamwork-Good time management-Hourly pay rateJob Types: Part-timeJob Type: Part-timePart-time hours: 20 per weekSalary: From $15.50 per hourBenefits:On-site parkingStore discountFlexible Language Requirement:French not requiredExperience:Customer service: 1 year (preferred)Work Location: In person\",\n            \"location\": \"Toronto, ON\"\n        },\n        {\n            \"id\": \"6EF7F43984B270521191EDC4EB7739E8\",\n            \"cityName\": \"Manitoba\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=fba5773d7dc89d40\",\n            \"jobName\": \"Full-Time Remote Customer Service Representative (Manitoba)\",\n            \"companyName\": \"Mci Careers\",\n            \"rowSalary\": \"$14.50 an hour\",\n            \"date\": 1694287125200,\n            \"dateOfPosted\": 1665853900987,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 53.7608608,\n                    \"lon\": -98.8138762\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Winnipeg\",\n                \"formattedAddress\": \"Manitoba, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Manitoba\",\n                \"state_code\": \"MB\",\n                \"postalTown\": null,\n                \"county\": null,\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Winnipeg\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 15.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    15.0\n                ],\n                \"range\": {\n                    \"gte\": 15.0,\n                    \"gt\": null,\n                    \"lte\": 15.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" LOCATION: Remote Work-at-Home JOB TYPE: Full-Time PAY TYPES: Hourly + Bonus SALARY: $14.50 / hour BENEFITS & PERKS: REMOTE REPRESENTATIVE: Work-From-Home, Paid Training, Paid Time Off, Medical, Dental, Vision, Life Insurance, Retirement, Flexible Schedules, Company Laptop, Daily Contests, Prizes, Casual Dress Code, Regular Raises APPLICATION DETAILS: No Resume Required, Phone Interview POSITION OVERVIEW:  FULL-TIME REMOTE CUSTOMER SERVICE REPRESENTATIVE (MANITOBA) We are looking for full-time customer service representatives to support inbound customer service, help desk, and back-office processing representatives for commercial and public sector support positions. In this role, you will handle inbound calls, troubleshoot basic technical issues, build strong relationships with customers while professionally representing some of the most recognizable brands in the world.  Schedules vary by site and project; however, we can usually find something that works for everyone. This is a wonderful opportunity for you to start your career with our growing team, and with our industry-leading training, you are sure to grow. We offer many advancement opportunities, including Supervisor, Trainer, Talent Acquisition, and Operations Management.  To be considered for this position, you must complete a full application on our company careers page, including screening questions and a brief pre-employment test. -:  POSITION RESPONSIBILITIES:  WHAT DOES A WORK AT HOME CONTACT CENTER REPRESENTATIVE DO? This position supports customer service, technical support, and customer sales interactions. This role requires you to interact with hundreds of customers each week across the country to resolve support issues, sell new products and services, and ensure best in class customer experience. In addition to being the best in the business when it comes to customer interactions, you will need to be confident, fully engaged, a team player, and dedicated to bringing a positive and enthusiastic outlook to work each day.  Our entry-level Contact Center Representatives are responsible for the following tasks: Listen to customers, understand their needs, and resolve customer issues Utilize systems and technology to complete account management tasks Recognize sales opportunity and apply sales skills to upgrade Explain and position the products and processes with customers Appropriately escalate customer dissatisfaction with managerial team Ensure first call resolution through problems solving and effective call handling CANDIDATE QUALIFICATIONS:  WONDER IF YOU ARE A GOOD FIT? MCI provides all new employees with world-class training, so all positive, driven, and confident applicants are encouraged to apply. Ideal candidates for this position are highly motivated, energetic, and dedicated.Qualifications Must be 18 years of age or older High school diploma or equivalent Excellent organizational, written, and oral communication skills The ability to type swiftly and accurately (20+ words a minute) Basic knowledge of Microsoft Office Suite (Excel, PowerPoint, Word, Outlook) Basic understanding of Windows operating system Highly reliable with the ability to maintain regular attendance and punctuality The ability to evaluate, troubleshoot, and follow-up on customer issues An aptitude for conflict resolution, problem solving and negotiation Must be customer service oriented (empathetic, responsive, patient, and conscientious) Ability to multi-task, stay focused and self manage Strong team orientation and customer focus The ability to thrive in a fast-paced environment where change and ambiguity prevalent Excellent interpersonal skills and the ability to build relationships with your team and customers CONDITIONS OF EMPLOYMENT: Must be authorized to work in their country of residence (The United States or Canada) Must be willing to submit up to a LEVEL II background and/or security investigation with a fingerprint. Job offers are contingent on background/security investigation results COMPENSATION DETAILS:  WANT AN EMPLOYER THAT VALUES YOUR CONTRIBUTION? We believe that hard work should pay off, so we make sure that our compensation and total rewards are competitive. Standard starting compensation is commensurate with experience. Regular reviews and raises are awarded based on tenure and performance, so our employees make more each year. Employees earn paid time off as well as paid holidays and paid training opportunities. Regular daily, weekly and monthly incentives are part of the overall compensation our team members enjoy and include monetary incentive and prizes such as computers, tablets, phones, TV’s, trips, tickets, and even cars. In addition to our standard group benefits offering for full-time employees following 90-days of employment, all employees are eligible to opt for our MEC medical plan after only 30-days of employment. Benefits options and plans vary slightly by location. JUST A FEW OF THE BENEFITS Medical, Dental, and Vision Coverage Options Paid Time-Off Advancement Opportunity Fun, Engaging Work Environment Casual Dress Code Cash and Prize Contests PHYSICAL REQUIREMENTS:  This job operates in a professional office environment. While performing the duties of this job, the employee will be largely sedentary and will be required to sit/stand for long periods while using a computer and telephone headset. The employee will be regularly required to operate a computer and other office equipment, including a phone, copier, and printer. The employee may occasionally be required to move about the office to accomplish tasks; reach in any direction; raise or lower objects, move objects from place to place, hold onto objects, and move or exert force up to forty (40) pounds.  REASONABLE ACCOMMODATION:  Consistent with the Americans with Disabilities Act (ADA) it is the policy of MCI and affiliates to provide reasonable accommodation when requested by a qualified applicant or employee with a disability unless such accommodation would cause undue hardship. The policy regarding requests for reasonable accommodation applies to all aspects of employment. If reasonable accommodation is needed, please contact Kate Murph, Vice President of Human Resources, kate.murph@mci.world.  DIVERSITY AND EQUALITY:  At MCI and its subsidiaries, we embrace differences and believe diversity is a benefit to our employees, our company, our customers, and our community. All aspects of employment at MCI are based solely on a person's merit and qualifications. MCI maintains a work environment free from discrimination, one where employees are treated with dignity and respect. All employees share in the responsibility for fulfilling MCI's commitment to a diverse and equal opportunity work environment. MCI does not discriminate against any employee or applicant on the basis of age, ancestry, color, family or medical care leave, gender identity or expression, genetic information, marital status, medical condition, national origin, physical or mental disability, political affiliation, protected veteran status, race, religion, sex (including pregnancy), sexual orientation, or any other characteristic protected by applicable laws, regulations, and ordinances. MCI will consider for employment qualified applicants with criminal histories in a manner consistent with local and federal requirements. MCI will not tolerate discrimination or harassment based on any of these characteristics. We adhere to these principles in all aspects of employment, including recruitment, hiring, training, compensation, promotion, benefits, social and recreational programs, and discipline. In addition, it is the policy of MCI to provide reasonable accommodation to qualified employees who have protected disabilities to the extent required by applicable laws, regulations, and ordinances where an employee works. ABOUT MCI (PARENT COMPANY):  In 2019 Marlowe Companies Inc. (MCI) was named by Inc. Magazine as Iowa’s Fastest Growing Company in the State of Iowa and was named the 452nd Fastest Growing Privately Company in the USA, making the coveted top 500 for the first time. MCI’s subsidiaries had previously made Inc. Magazine's List of Fastest-Growing Companies 15 times respectively. MCI is headquartered in Iowa City, IA, and has nine customer contact management centers, IT services, and business process outsourcing service delivery facilities in Iowa, Georgia, Florida, Massachusetts, New Hampshire, Nova Scotia, and South Dakota.  Driving modernization through digitalization, MCI ensures clients do more for less. MCI is the holding company for a diverse lineup of tech-enabled business services operating companies. MCI organically grows, acquires and operates companies that have a synergistic products and services portfolios, including but not limited to Automated Contact Center Solutions (ACCS), customer contact management, IT Services (IT Schedule 70), and Temporary and Administrative Professional Staffing (TAPS Schedule 736), Business Process Management (BPM), Business Process Outsourcing (BPO), Claims Processing, Collections, Customer Experience Provider (CXP), Customer Service, Digital Experience Provider (DXP), Account Receivables Management (ARM), Application Software Development, Managed Services, and Technology Services, to mid-market, Federal & enterprise partners.  MCI now employs 2,500+ talented individuals with 150+ diverse North American client partners across the following MCI brands: GravisApps, Mass Markets, MCI Federal Services (MFS), The Sydney Call Center, OnBrand24, and Valor Intelligent Processing (VIP).  MCI provides products and services under the following NAICS Codes: 511210 Software Publishers, 518210 Data Processing, Hosting, and Related Services, 519190 All Other Information Services, 524291 Claims Adjusting, 524292 Third Party Administration of Insurance and Pension Funds, 541511 Custom Computer Programming Services, 541512 Computer Systems Design Services, 541519 Other Computer Related Services, 541519 Information Technology, and Value Added Resellers, 541611 Administrative Management and General Management Consulting Services, 541613 Marketing Consulting Services, 541690 Other Scientific and Technical Consulting Services, 541990 All Other Professional, Scientific, and Technical Services, 561110 Office Administrative Services, 561320 Temporary Help Services, 561330 Professional Employer Organizations, 561421 Telephone Answering Services, 561422 Telemarketing Bureaus and Other Contact Centers, 561431 Private Mail Centers, 561440 Collection Agencies, 561499 All Other Business Support Services, 561990 All Other Support Services, 611430 Professional and Management Development Training.  DISCLAIMER:  The purpose of the above job description is to provide potential candidates with a general overview of the role. It's not an all-inclusive list of the duties, responsibilities, skills, and qualifications required for the job. You may be asked by your supervisors or managers to perform other duties. You will be evaluated in part based upon your performance of the tasks listed in this job description. The employer has the right to revise this job description at any time. This job description is not a contract for employment, and either you or the employer may terminate employment at any time, for any reason. REGARDING COVID-19:  As an employer supporting critical Federal, State, Provincial, and Commercial clients, we have taken steps to ensure that we remain operational while taking every precaution possible to prevent the spread of COVID-19 and keep our employees safe. Measures include social distancing for those working on-site, frequent deep cleaning and disinfecting of workstations and common areas, daily contactless temperature checks for those essential employees working on-site, travel policies limiting travel and mandatory quarantine, reporting and quarantine processes and policies for those exposed, and requesting masks to be worn when on-site employees are not at their workstation.REGARDING MASKS To help protect our candidates and employees, we are REQUESTING that all on-site candidates wear a mask to interviews and training. In locations where state or local government has mandated the use of masks, we will abide by the mandate, and REQUIRE masks be worn when on-location. For more information on MCI’s response to COVID-19 please visit www.mci.world/covid-19.\",\n            \"location\": \"Manitoba\"\n        },\n        {\n            \"id\": \"CAC7EDD49355EFBFCB23BA7169789A69\",\n            \"cityName\": \"BLENZ falsecreek in Vancouver, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=4772fca28007a97d\",\n            \"jobName\": \"Barista/Customer Service\",\n            \"companyName\": \"Blenz Falsecreek\",\n            \"rowSalary\": \"$15.20–$16.00 an hour\",\n            \"date\": 1694287072006,\n            \"dateOfPosted\": 1622794285777,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 49.2827291,\n                    \"lon\": -123.1207375\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Vancouver\",\n                \"formattedAddress\": \"Vancouver, BC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"British Columbia\",\n                \"state_code\": \"BC\",\n                \"postalTown\": null,\n                \"county\": \"Metro Vancouver\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Vancouver\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 16.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    16.0\n                ],\n                \"range\": {\n                    \"gte\": 16.0,\n                    \"gt\": null,\n                    \"lte\": 16.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"LOOKING FOR HARDWORKING, MULTITASKING BARISTAS.HOURS DAILY 6AM - 6PM.EXCELLENT COMMUNICATION SKILLS ARE A MUST.E- MAIL RESUME OR DROP BY.Part-time hours: 20-40 per weekJob Types: Full-time, Part-time, PermanentSalary: $15.20-$16.00 per hourBenefits:Discounted or free foodFlexible scheduleStore discountSchedule:Day shiftHolidaysMonday to FridayNight shiftWeekendsWork remotely:No\",\n            \"location\": \"Vancouver, BC\"\n        },\n        {\n            \"id\": \"91A5A166E33344969E4C72D76E7DCC9C\",\n            \"cityName\": \"Montréal, QC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=0d4d3ec7c678c00e\",\n            \"jobName\": \"Call Centre Advisor\",\n            \"companyName\": \"Banque Laurentienne\",\n            \"rowSalary\": \"From $21.22 an hour\",\n            \"date\": 1694285714543,\n            \"dateOfPosted\": 1693421107230,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montreal\",\n                    \"type\": \"LOCALITY\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \" Montreal  Call centre Full Time  26392  30 March 2023  Laurentian Bank. Seeing beyond numbers Building a better and different financial institution Financial Benefits Working Environment Commuting and Travelling Food and Drinks Nice to have Financial BenefitsPension planGroup InsuranceStock purchase programMortgage, Line of Credit, Personal Loan, ...at low interest ratesIncentive compensationSeeing beyond numbers.TM At Laurentian Bank, we believe we can change banking for the better. Founded in Montreal in 1846, Laurentian Bank helps families, businesses and communities thrive. Today, we have over 3, 000 employees working together as One Team, to provide a broad range of financial services and advice-based solutions for customers across Canada and the United States. We drive results by placing our customers first, making the better choice, acting courageously, and believing everyone belongs.  This role sits within Laurentian Bank.  When you wake up in the morning, you'll be excited to start the day because you and team are empowered to make a difference for a client.  This position is ideal for anyone looking to start their career in the banking industry! Responsibilities You will support our customers in their daily transactional needs. You will also work in collaboration with the Consultants, Personal Services working in branch. You would support your colleagues in their advisory and business development roles in order to provide clients with the opportunity to improve their overall financial health. As such, your mandate will be to serve customers calling their customer contact center and meet their needs. Working Hours: 37.5 / week teleworking. You should be available Monday to Friday between 7am and 9pm QualificationsSix months to one year of customer service and sales experienceExperience in a call center, an assetAny other combination of training and experience deemed relevantTalented in communication and interpersonal skillsGood knowledge of MS Office (Word, Excel, Outlook)Ability to work simultaneously with multiple software and IT tools while communicating effectively with the clientTeam spirit, sense of organization, courtesy, empathy and excellent customer serviceRequired Qualification - Professional working proficiency in French and English languages required as position involves frequent written and oral communication on complex matters with internal and external parties in both languagesKnowledge of another language an assetWhat Laurentian Bank offersHourly rate starting at $21.22 with eligibility for a bonusCurrently 100% teleworkingSocial benefits (health, dental and life insurance, retirement plan, vacations and floating holidays, free teleconsultation appointments)Opportunity to join a program of share purchasesPreferential rates on our banking services (reduction on the rate of your mortgage loan, reduction on the rate in effect for your Laurentian Bank Visa card, your banking transactions at reduced prices ... and more)Are you interested in the challenge? Please submit your application today!Inclusion and Accessibility At Laurentian Bank, we believe everyone belongs. We are committed to fostering an inclusive work environment that reflects the diversity of our customers and our communities and where everyone feels like they belong and can thrive. To this end, we encourage applications from individuals from equity-deserving groups, including Indigenous persons, racialized and persons with disabilities, marginalized genders and the 2SLGBTQIA+ community. We strive to offer a flexible and accessible work experience that is inclusive of everyone. If at any time you need an accommodation, please let us know. PIPEDAWe may collect, use or disclose your personal information for the purpose of establishing an employment relationship with you. #LI-Remote  #LI-MLP \",\n            \"location\": \"Montréal, QC\"\n        },\n        {\n            \"id\": \"747BAE9FBF082A001FEF6CDA161F2EB8\",\n            \"cityName\": \"100 13571 Verdun Place, Richmond, BC\",\n            \"jobUrl\": \"https://ca.indeed.com/viewjob?jk=156159faa71facd4\",\n            \"jobName\": \"Customer Service/Front Counter\",\n            \"companyName\": \"Fred Holmes Fuel Injection\",\n            \"rowSalary\": \"From $22 an hour\",\n            \"date\": 1694285371420,\n            \"dateOfPosted\": 1692228065640,\n            \"loc\": {\n                \"geo\": {\n                    \"lat\": 45.5016889,\n                    \"lon\": -73.567256\n                },\n                \"country\": \"Canada\",\n                \"locality\": \"Montreal\",\n                \"formattedAddress\": \"Montreal, QC, Canada\",\n                \"mostlyMatchedLocation\": null,\n                \"country_code\": \"CA\",\n                \"state\": \"Quebec\",\n                \"state_code\": \"QC\",\n                \"postalTown\": null,\n                \"county\": \"Montreal\",\n                \"cbsa\": [],\n                \"allocated\": true,\n                \"location\": {\n                    \"name\": \"Montréal, QC\",\n                    \"type\": \"DEFAULT\"\n                }\n            },\n            \"salaryOriginal\": {\n                \"type\": null,\n                \"currency\": \"CAD\",\n                \"period\": \"hour\",\n                \"salaryFrom\": 22.0,\n                \"salaryTo\": null,\n                \"salaries\": [\n                    22.0\n                ],\n                \"range\": {\n                    \"gte\": 22.0,\n                    \"gt\": null,\n                    \"lte\": 22.0,\n                    \"lt\": null\n                },\n                \"rounded\": false\n            },\n            \"description\": \"Customer Service RepresentativeStart at 8am and end at 5pm, 2 coffee breaks and 1 lunch break. Need to have strong English skills and be able to fluently communicate. Must be able to lift boxes and parts weighing 60 pounds from time to time. Training will be provided. Looking for someone to work long-term in our company.Responsibilities:- Provide exceptional customer service and support to clients- Answer incoming calls and respond to customer inquiries- Assist customers with product information, pricing, and order status- Resolve customer complaints or issues in a professional and timely manner- Process orders, returns, and exchanges accurately- Maintain customer records and update information as needed- Collaborate with other team members to ensure customer satisfaction- Conduct outbound calls to follow up with customers or provide additional informationExperience:- Previous experience in a customer service role preferred- Excellent communication skills, both verbal and written- Strong problem-solving abilities and attention to detail- Ability to multitask and prioritize tasks effectively- Proficient in using computer systems and software applications- Knowledge of CRM software is a plusJoin our team as a Customer Service Representative and be part of a dynamic and supportive work environment. We offer competitive compensation, opportunities for growth, and a positive company culture. Apply today to start your career in customer service!Job Types: Full-time, PermanentSalary: From $22.00 per hourBenefits:Casual dressCompany eventsDental careOn-site parkingPaid time offStore discountFlexible Language Requirement:French not requiredSchedule:8 hour shiftMonday to FridaySupplemental pay types:Bonus payApplication question(s):Are you willing to work at our facility for long term?Education:Secondary School (preferred)Experience:Call center: 1 year (preferred)Customer service: 1 year (preferred)Licence/Certification:Forklift Licence (preferred)Shift availability:Day Shift (required)Ability to Commute:Richmond, BC (required)Ability to Relocate:Richmond, BC: Relocate before starting work (preferred)Work Location: In personExpected start date: 2023-08-21\",\n            \"location\": \"Montréal, QC\"\n        },\n    ],\n    \"count\": 2546\n}"}],"_postman_id":"1af3627b-833b-4c8e-bf78-af711ea683ad"}],"id":"29fcbea1-4c9c-4e48-b3a7-bbd5ddd8fa21","description":"<p>The following endpoints return a list of job posting records. The example in the right panel shows the fields present in a record. Actual lists for queries with more than 10,000 results are very long (over 1 million lines), so they may take a couple minutes to create.</p>\n","_postman_id":"29fcbea1-4c9c-4e48-b3a7-bbd5ddd8fa21","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}}},{"name":"Heat Map Area Endpoint","event":[{"listen":"test","script":{"id":"0b8d552a-84f2-4aaa-abfe-daa1e6dd6235","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","pm.expect(pm.response.json()).to.have.property('geo');","pm.expect(pm.response.json()).to.have.property('data');","pm.expect(pm.response.json()['data'][0]).to.have.property('docCount');","pm.expect(pm.response.json()['data'][0]).to.have.property('lon');","pm.expect(pm.response.json()['data'][0]).to.have.property('lat');","pm.expect(pm.response.json()).to.have.property('min');","pm.expect(pm.response.json()).to.have.property('max');","pm.expect(pm.response.json()).to.have.property('count');","})"],"type":"text/javascript"}}],"id":"48c76566-2582-4339-a825-d105145f1cde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"hotel\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobDescription\"\n        },\n         {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n         {\n            \"parameterValue\": [\n                \"resort\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobDescription\"\n        },\n         {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"NOT\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"NOT\"\n        },\n         {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        }\n    ],\n    \"topLeft\": {\n        \"lat\": 26.06722,\n        \"lon\": -85.27848\n    },\n    \"bottomRight\": {\n        \"lat\": 9.98030,\n        \"lon\":  -58.03239\n    }\n}"},"url":"//demandData/heatMapData/:precision","description":"<p>This endpoint returns latitude/longitude coordinates and the number of job listings corresponding to these coordinates. The record is organized in descending order.</p>\n<p><strong>To use this function, enter lat/lon coordinates that correspond to the desired top-left and bottom-right corners of a heat map, in addition to at least 1 other token.</strong> </p>\n<p>You must add a whole number value (2-9) to the end of the path to account for precision: for the default view, enter 2. Changing the precision value does NOT change the total number of results. Greater precision equals a greater number of individual data points, to see more precisely where the job listings are in your chosen area of the heat map. Changing the level of precision will not affect the performance of your query.</p>\n<p>Here is a description of a <a href=\"#queries-description\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create them.</p>\n<p>Below is a sample query that will return the job listings for hotels and resorts in the Caribbean, excluding US territories, using a precision of 9:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"hotel\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobDescription\"\n        },\n         {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n         {\n            \"parameterValue\": [\n                \"resort\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobDescription\"\n        },\n         {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"NOT\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"NOT\"\n        },\n         {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        }\n    ],\n    \"topLeft\": {\n        \"lat\": 26.06722,\n        \"lon\": -85.27848\n    },\n    \"bottomRight\": {\n        \"lat\": 9.98030,\n        \"lon\":  -58.03239\n    }\n}\n</code></pre><p>Use the same <code>searchParameters</code> as usual, but be sure to <strong>add \"topLeft\" and \"bottomRight\" to represent the appropriate corners of the Heat Map.</strong></p>\n<p>Check out the results for this query by clicking the example on the right panel.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["demandData","heatMapData",":precision"],"host":["/"],"query":[],"variable":[{"id":"c9de3dee-e7a8-4a6f-a53c-a1095d892603","description":{"content":"<p>Precision (zoom level)  [min: 2, max: 9] (Required)</p>\n","type":"text/plain"},"type":"string","value":"9","key":"precision"}]}},"response":[{"id":"58b5c0b7-e7ae-4dde-b0fa-9f2d5d944bd2","name":"Hotel and Resort Jobs in the Caribbean","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","type":"text","value":"{{token}}"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"hotel\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobDescription\"\n        },\n         {\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n         {\n            \"parameterValue\": [\n                \"resort\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobDescription\"\n        },\n         {\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n        {\n            \"parameterValue\": [\n                \"NOT\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"NOT\"\n        },\n         {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        }\n    ],\n    \"topLeft\": {\n        \"lat\": 26.06722,\n        \"lon\": -85.27848\n    },\n    \"bottomRight\": {\n        \"lat\": 9.98030,\n        \"lon\":  -58.03239\n    }\n}"},"url":{"raw":"//demandData/heatMapData/:precision","host":["/"],"path":["demandData","heatMapData",":precision"],"variable":[{"id":"c9de3dee-e7a8-4a6f-a53c-a1095d892603","key":"precision","value":"9","type":"string","description":"Precision (zoom level)  [min: 2, max: 9] (Required)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Feb 2021 20:01:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"08532ed9190000f005f796a000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=0OQC1Ui14pZb6zb%2Bza3HekYNFGlzeKtwWVONqY2BoxFPLRSgtxlFLfGaL9iP5rI4Som18N4%2F8qgMJQpx03RaunR9F7whI%2FYuJNWkbXa3a2WVRrU3kwTicinE\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"max_age\":604800,\"report_to\":\"cf-nel\"}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"62321a6e895cf005-EWR"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"geo\": null,\n    \"min\": 1,\n    \"data\": [\n        {\n            \"docCount\": 537,\n            \"lat\": 25.761843544961728,\n            \"lon\": -80.19176021062212\n        },\n        {\n            \"docCount\": 488,\n            \"lat\": 25.789700194183723,\n            \"lon\": -80.13047839625601\n        },\n        {\n            \"docCount\": 182,\n            \"lat\": 26.010314531030726,\n            \"lon\": -80.1483392537377\n        },\n        {\n            \"docCount\": 129,\n            \"lat\": 25.94734237940852,\n            \"lon\": -80.12958179249667\n        },\n        {\n            \"docCount\": 108,\n            \"lat\": 18.415405444490414,\n            \"lon\": -66.0841345290343\n        },\n        {\n            \"docCount\": 77,\n            \"lat\": 25.08651508949697,\n            \"lon\": -80.44728023931384\n        },\n        {\n            \"docCount\": 71,\n            \"lat\": 25.819661016707165,\n            \"lon\": -80.12332061318759\n        },\n        {\n            \"docCount\": 61,\n            \"lat\": 24.72602598834783,\n            \"lon\": -81.04462620802224\n        },\n        {\n            \"docCount\": 59,\n            \"lat\": 24.55539228599834,\n            \"lon\": -81.77862191083446\n        },\n        {\n            \"docCount\": 56,\n            \"lat\": 26.052263514138758,\n            \"lon\": -80.14346475679693\n        },\n        {\n            \"docCount\": 56,\n            \"lat\": 25.818998284604668,\n            \"lon\": -80.35645827268516\n        },\n        {\n            \"docCount\": 56,\n            \"lat\": 18.42716120574291,\n            \"lon\": -65.99578188466174\n        },\n        {\n            \"docCount\": 54,\n            \"lat\": 18.338096486404538,\n            \"lon\": -64.89409463480115\n        },\n        {\n            \"docCount\": 41,\n            \"lat\": 25.746481957300226,\n            \"lon\": -80.26273298440728\n        },\n        {\n            \"docCount\": 41,\n            \"lat\": 24.92348986030443,\n            \"lon\": -80.62885404269143\n        },\n        {\n            \"docCount\": 40,\n            \"lat\": 25.99321538885124,\n            \"lon\": -80.30029787798412\n        },\n        {\n            \"docCount\": 32,\n            \"lat\": 25.939741199836135,\n            \"lon\": -81.70753550715744\n        },\n        {\n            \"docCount\": 28,\n            \"lat\": 25.81388156378775,\n            \"lon\": -80.19158070973519\n        },\n        {\n            \"docCount\": 28,\n            \"lat\": 18.46018860515739,\n            \"lon\": -66.07993003180516\n        },\n        {\n            \"docCount\": 25,\n            \"lat\": 26.046793224290013,\n            \"lon\": -80.21025609411299\n        },\n        {\n            \"docCount\": 23,\n            \"lat\": 25.458638148341812,\n            \"lon\": -80.47794888322444\n        },\n        {\n            \"docCount\": 19,\n            \"lat\": 25.892108004344138,\n            \"lon\": -80.12627816710032\n        },\n        {\n            \"docCount\": 18,\n            \"lat\": 18.389535038731992,\n            \"lon\": -66.15292148664594\n        },\n        {\n            \"docCount\": 14,\n            \"lat\": 25.86784613485049,\n            \"lon\": -80.12309011338013\n        },\n        {\n            \"docCount\": 13,\n            \"lat\": 25.77084679550563,\n            \"lon\": -80.22232884326233\n        },\n        {\n            \"docCount\": 13,\n            \"lat\": 12.122422093525529,\n            \"lon\": -68.88242335058749\n        },\n        {\n            \"docCount\": 12,\n            \"lat\": 25.8229079679586,\n            \"lon\": -80.29553923755884\n        },\n        {\n            \"docCount\": 12,\n            \"lat\": 18.47654304932803,\n            \"lon\": -66.27326346002519\n        },\n        {\n            \"docCount\": 11,\n            \"lat\": 18.332928353497252,\n            \"lon\": -65.6622983921658\n        },\n        {\n            \"docCount\": 11,\n            \"lat\": 18.407294918698344,\n            \"lon\": -66.10419711267406\n        },\n        {\n            \"docCount\": 11,\n            \"lat\": 18.006633340635084,\n            \"lon\": -66.6128990909254\n        },\n        {\n            \"docCount\": 10,\n            \"lat\": 25.736695173662156,\n            \"lon\": -80.23437675554305\n        },\n        {\n            \"docCount\": 10,\n            \"lat\": 24.770972267724574,\n            \"lon\": -80.91201393865049\n        },\n        {\n            \"docCount\": 10,\n            \"lat\": 10.39322767406702,\n            \"lon\": -75.48323110677302\n        },\n        {\n            \"docCount\": 9,\n            \"lat\": 17.724596788175404,\n            \"lon\": -64.83479920774698\n        },\n        {\n            \"docCount\": 9,\n            \"lat\": 18.24861183296889,\n            \"lon\": -66.02398079819977\n        },\n        {\n            \"docCount\": 8,\n            \"lat\": 25.693109073909,\n            \"lon\": -80.16234057373367\n        },\n        {\n            \"docCount\": 8,\n            \"lat\": 25.922506162896752,\n            \"lon\": -81.72662545926869\n        },\n        {\n            \"docCount\": 8,\n            \"lat\": 24.73210848402232,\n            \"lon\": -81.02133432403207\n        },\n        {\n            \"docCount\": 7,\n            \"lat\": 25.66603358834982,\n            \"lon\": -80.3578270599246\n        },\n        {\n            \"docCount\": 7,\n            \"lat\": 24.55758058599063,\n            \"lon\": -81.80340263859502\n        },\n        {\n            \"docCount\": 7,\n            \"lat\": 18.36873280350119,\n            \"lon\": -66.0667705456061\n        },\n        {\n            \"docCount\": 7,\n            \"lat\": 18.20707622183753,\n            \"lon\": -67.14429379839983\n        },\n        {\n            \"docCount\": 6,\n            \"lat\": 25.810268218629062,\n            \"lon\": -80.2776501327753\n        },\n        {\n            \"docCount\": 6,\n            \"lat\": 25.769733991473913,\n            \"lon\": -80.27332901023328\n        },\n        {\n            \"docCount\": 6,\n            \"lat\": 18.336811373010278,\n            \"lon\": -64.7280952334404\n        },\n        {\n            \"docCount\": 6,\n            \"lat\": 17.74663968477398,\n            \"lon\": -64.70319771207869\n        },\n        {\n            \"docCount\": 6,\n            \"lat\": 18.15513366367668,\n            \"lon\": -65.82039434462786\n        },\n        {\n            \"docCount\": 6,\n            \"lat\": 17.99874897580594,\n            \"lon\": -66.63147607818246\n        },\n        {\n            \"docCount\": 5,\n            \"lat\": 25.855350824072957,\n            \"lon\": -80.18799773231149\n        },\n        {\n            \"docCount\": 5,\n            \"lat\": 25.857596285641193,\n            \"lon\": -80.27810577303171\n        },\n        {\n            \"docCount\": 5,\n            \"lat\": 25.772802983410656,\n            \"lon\": -80.31433881260455\n        },\n        {\n            \"docCount\": 5,\n            \"lat\": 18.082048958167434,\n            \"lon\": -65.79923707991838\n        },\n        {\n            \"docCount\": 5,\n            \"lat\": 12.144349068403244,\n            \"lon\": -68.26554561965168\n        },\n        {\n            \"docCount\": 5,\n            \"lat\": 11.004107189364731,\n            \"lon\": -74.80698133818805\n        },\n        {\n            \"docCount\": 4,\n            \"lat\": 26.047872800845653,\n            \"lon\": -80.27552590705454\n        },\n        {\n            \"docCount\": 4,\n            \"lat\": 25.902316798456013,\n            \"lon\": -80.25032714009285\n        },\n        {\n            \"docCount\": 4,\n            \"lat\": 25.700539997778833,\n            \"lon\": -80.28126600198448\n        },\n        {\n            \"docCount\": 4,\n            \"lat\": 18.447093372233212,\n            \"lon\": -66.29157800227404\n        },\n        {\n            \"docCount\": 4,\n            \"lat\": 18.48129996098578,\n            \"lon\": -66.76957505755126\n        }\n    ],\n    \"max\": 537,\n    \"count\": 194203\n}"}],"_postman_id":"48c76566-2582-4339-a825-d105145f1cde"},{"name":"Job Posting History","event":[{"listen":"test","script":{"id":"ae403a55-61d0-4c88-9275-2459f95cadf3","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"68982d63-ff43-4486-96e9-a46f2d48661e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n{\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n{\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n{\n            \"parameterValue\": [\n                \"cvs\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCompany\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"walgreens\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCompany\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"rite aid\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCompany\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"kroger\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCompany\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"walmart\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCompany\"\n        },\n{\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}"},"url":"//demandData/activity/:days","description":"<p>This endpoint returns the total job listings posted in a given period. The record is organized in chronological order, and each data point represents 1 week of job listings. A \"week\" is from Tuesday to Monday.</p>\n<p>Here are the descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p><strong>Replace \":days\" at the end of the path with a whole number value to successfully return data for that number of days.</strong></p>\n<p>Below is a sample query that will return the job listings posted by top pharmacies in the US over the past 90 days:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n{\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n{\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n{\n            \"parameterValue\": [\n                \"cvs\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCompany\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"walgreens\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCompany\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"rite aid\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCompany\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"kroger\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCompany\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"walmart\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCompany\"\n        },\n{\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["demandData","activity",":days"],"host":["/"],"query":[],"variable":[{"description":{"content":"<p>Number of days (Required)</p>\n","type":"text/plain"},"type":"string","value":"90","key":"days"}]}},"response":[{"id":"71ea68a8-3eb4-4cea-a286-b18b3dbcea2e","name":"Jobs at Top 5 Pharmacies","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchParameters\": [\n        {\n            \"parameterValue\": [\n                \"US\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\"\n        },\n{\n            \"parameterValue\": [\n                \"AND\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\"\n        },\n{\n            \"parameterValue\": [\n                \"(\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\"\n        },\n{\n            \"parameterValue\": [\n                \"cvs\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCompany\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n{\n            \"parameterValue\": [\n                \"walgreens\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCompany\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"rite aid\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCompany\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"kroger\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCompany\"\n        },\n{\n            \"parameterValue\": [\n                \"OR\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\"\n        },\n        {\n            \"parameterValue\": [\n                \"walmart\"\n            ],\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCompany\"\n        },\n{\n            \"parameterValue\": [\n                \")\"\n            ],\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\"\n        }\n    ]\n}"},"url":{"raw":"//demandData/activity/:days","host":["/"],"path":["demandData","activity",":days"],"variable":[{"key":"days","value":"90"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 21 May 2020 07:47:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"596cafe8ce8cb514-VNO"},{"key":"Content-Encoding","value":"br"},{"key":"cf-request-id","value":"02d7cc457a0000b5142c8fa200000001"}],"cookie":[],"responseTime":null,"body":"{\n    \"2023-05-08\": {\n        \"value\": 107265\n    },\n    \"2023-05-15\": {\n        \"value\": 110157\n    },\n    \"2023-05-22\": {\n        \"value\": 107768\n    },\n    \"2023-05-29\": {\n        \"value\": 108473\n    },\n    \"2023-06-05\": {\n        \"value\": 108042\n    },\n    \"2023-06-12\": {\n        \"value\": 102069\n    },\n    \"2023-06-19\": {\n        \"value\": 102621\n    },\n    \"2023-06-26\": {\n        \"value\": 102108\n    },\n    \"2023-07-03\": {\n        \"value\": 96081\n    },\n    \"2023-07-10\": {\n        \"value\": 98581\n    },\n    \"2023-07-17\": {\n        \"value\": 100518\n    },\n    \"2023-07-24\": {\n        \"value\": 98121\n    }\n}"}],"_postman_id":"68982d63-ff43-4486-96e9-a46f2d48661e"},{"name":"Radius Autocomplete Endpoint Demand","event":[{"listen":"test","script":{"id":"ae403a55-61d0-4c88-9275-2459f95cadf3","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});","","pm.test(\"Tha data is of correct format\", function () {","console.log('Radius autocomplete', pm.response.json());","pm.expect(pm.response.json()).to.contain(\"Merrimack, NH, USA\");","pm.expect(pm.response.json()).to.contain(\"Merrimack County, NH, USA\");","pm.expect(pm.response.json()).to.contain(\"Merrimac, MA, USA\");","pm.expect(pm.response.json()).to.contain(\"Merrimack, NH, USA\");","})"],"type":"text/javascript","packages":{}}}],"id":"4082a144-5574-4b31-b3e6-006661ec876c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"text\": \"Merrimack\",\n    \"ignored\" : []\n}"},"url":"//autocomplete/location-range","description":"<h1 id=\"radius-autocomplete-endpoint-demand\">Radius Autocomplete Endpoint Demand</h1>\n<p>This endpoint returns the top 5 suggested results of a location matching the entered value. This endpoint is used to successfully resolve the \"radius\" token, since that token requires an exact match in the parameterValue field to return data. Copy the exact text of your desired result from this list, and paste it into the correct line of the parameterValue field in the radius token to search for jobs in that area.</p>\n<p>Below is a sample path that will return a list of 5 suggested locations matching New York:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://apijavaanalytics.claro.hr/2.0.0/autocomplete/locationRange?text=new york\n\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["autocomplete","location-range"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"4c132eff-6015-4371-b380-18c5474b2de7","name":"Radius Autocomplete New York","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","type":"text","value":"{{token}}"}],"body":{"mode":"raw","raw":"{\n    \"text\": \"new york\",\n    \"ignored\" : []\n}"},"url":"//autocomplete/location-range"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 17:27:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1998"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=p8i70OA0LO%2F1pjdqPEWFeQTN%2FcsBhR5osQfVZCHU3JtPYBiL0KXAHq3qJguXM%2Bc%2FEwXWr1uMFTuQljnf71FLRF2n9LD38AtvrzGXM0jmfnCioNpr2NzGYNuk1T7QtoI4tJguYBQjaZlS3PE%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7effca65ef5a2d05-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    \"New York, NY, USA\",\n    \"New York State, USA\",\n    \"New York Mills, MN, USA\",\n    \"New York Mills, NY, USA\",\n    \"New York, Lincoln, UK\"\n]"}],"_postman_id":"4082a144-5574-4b31-b3e6-006661ec876c"},{"name":"Occupation Autocomplete Endpoint Demand","id":"07cae004-2ab2-4019-a045-89ffa6e37e9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"text\": \"Software\"\n}","options":{"raw":{"language":"json"}}},"url":"//autocomplete/job-title-merged","description":"<h1 id=\"occupation-autocomplete-endpoint-demand\">Occupation Autocomplete Endpoint Demand</h1>\n<p>This endpoint returns a list of all related parent and child occupations. The response is a complete list of parent and child occupations we have associated with the string value supplied within the request body.</p>\n<p>Here is a description of a <a href=\"https://apidocs.claro.hr/#queries\">query</a> and the <a href=\"https://apidocs.claro.hr/#tokens\">tokens</a> you will need to use to create one.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["autocomplete","job-title-merged"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"9e0b319f-18c1-45b4-ac10-7e0d5c05d044","name":"Occupation Autocomplete Endpoint Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"text\": \"Software\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apijavaanalytics.claro.hr/2.0.0/autocomplete/job-title-merged"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Software Developers\",\n        \"children\": [\n            \"Software Tester\",\n            \"Principal Software Engineer\",\n            \"Software Writer\",\n            \"Senior Software Engineer\",\n            \"Software Quality Engineer\",\n            \"Windows Software Engineer\",\n            \"Java Software Engineer\",\n            \"Software Architect\",\n            \"Embedded Systems Software Developer\",\n            \"Software Design Engineer\",\n            \"Software Installer\",\n            \"Java Software Developer\",\n            \"Software Requirements Engineer\",\n            \"Software Engineering Supervisor\",\n            \"Drone Software Development Engineer\",\n            \"Full Stack Software Engineer\",\n            \"Senior Software Developer\",\n            \"Software Designer\",\n            \"Software Developer\",\n            \"Embedded Software Engineer\",\n            \"Software Engineer\",\n            \"Secure Software Assessor\"\n        ]\n    },\n    {\n        \"name\": \"Personal Service Managers, All Other\",\n        \"children\": [\n            \"Software Publisher\"\n        ]\n    },\n    {\n        \"name\": \"Web Developers\",\n        \"children\": [\n            \"Web Software Engineer\"\n        ]\n    },\n    {\n        \"name\": \"Computer Systems Analysts\",\n        \"children\": [\n            \"Software Consultant\",\n            \"Software Analyst\"\n        ]\n    },\n    {\n        \"name\": \"Computer Occupations, All Other\",\n        \"children\": [\n            \"Software Development Project Manager\",\n            \"Software Project Manager\",\n            \"Cybersecurity Software Developer\"\n        ]\n    },\n    {\n        \"name\": \"Database Architects\",\n        \"children\": []\n    },\n    {\n        \"name\": \"Database Administrators\",\n        \"children\": [\n            \"Database Software Technician\"\n        ]\n    },\n    {\n        \"name\": \"Web and Digital Interface Designers\",\n        \"children\": []\n    },\n    {\n        \"name\": \"Computer and Information Systems Managers\",\n        \"children\": [\n            \"Software Project Manager\",\n            \"Software Engineering Director\",\n            \"Software Development Director\",\n            \"Programming and Software Development Project Manager\"\n        ]\n    },\n    {\n        \"name\": \"Network and Computer Systems Administrators\",\n        \"children\": [\n            \"Software Manager\"\n        ]\n    },\n    {\n        \"name\": \"Training and Development Specialists\",\n        \"children\": [\n            \"Software Trainer\"\n        ]\n    },\n    {\n        \"name\": \"Computer User Support Specialists\",\n        \"children\": []\n    },\n    {\n        \"name\": \"Computer Programmers\",\n        \"children\": [\n            \"Software Programmer\"\n        ]\n    },\n    {\n        \"name\": \"Software Quality Assurance Analysts and Testers\",\n        \"children\": [\n            \"Software Tester\",\n            \"Software Systems Engineer\",\n            \"Software Quality Engineer\",\n            \"Software Installer\",\n            \"Software Application Support Specialist\",\n            \"Software Requirements Engineer\",\n            \"Secure Software Assessor\"\n        ]\n    }\n]"}],"_postman_id":"07cae004-2ab2-4019-a045-89ffa6e37e9d"},{"name":"Company Name Autocomplete Endpoint Demand","event":[{"listen":"test","script":{"id":"ae403a55-61d0-4c88-9275-2459f95cadf3","exec":["pm.test(\"Status code is 200\", function () {","  pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"c4f2c3ce-291c-443a-a3c6-7d3d20fb9c56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"text\": \"inte\",\n    \"ignored\" : []\n}"},"url":"//autocomplete/company","description":"<h1 id=\"company-autocomplete-endpoint-demand\">Company Autocomplete Endpoint Demand</h1>\n<p>This endpoint returns the top 10 suggested results of a company name matching the entered value. This endpoint is used to successfully resolve the \"jobCompany\" token, since that token functions optimally with an exact company match in the parameterValue field. Copy the exact text of your desired company name result from this list, and paste it into the correct line of the parameterValue field in the jobCompany token to search for open job postings from that company. For many large companies, typing the beginning of the names of subsidiaries will show the larger entity in the list of 10 results, as shown below.</p>\n<p>Below is a sample path that will return a list of 10 suggested companies that start with the letters 'inte':</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://apijavaanalytics.claro.hr/2.0.0/autocomplete/company?text=inte\n\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["autocomplete","company"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"34522a7f-9e1b-475e-878b-82d2deb3ac00","name":"Company Name Autocomplete Inte","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","type":"text","value":"{{token}}"}],"body":{"mode":"raw","raw":"{\n    \"text\": \"inte\",\n    \"ignored\" : []\n}"},"url":"//autocomplete/company"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 17:29:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Origin"},{"key":"vary","value":"Access-Control-Request-Method"},{"key":"vary","value":"Access-Control-Request-Headers"},{"key":"x-rate-limit-remaining","value":"1999"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=1lWDLZInsiK1Q0rVOs8zRVeMIXCiRbvmqvUSAKx0H%2BXE4W8S%2FNzrjlTsYvUIEaaRIP9chDZiqv4IrFUMrp3%2ByI0wcUcpL0rPYrLYf5oaaBt4xHkGZO36kaMy%2BGJkWSMhyKC2DBdVLapGdgk%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7effcd2faa3082c8-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    \"International Business Machines Corporation\",\n    \"Intel Corporation\",\n    \"Intercontinental Hotels Group\",\n    \"International Red Cross and Red Crescent Movement\",\n    \"International Consolidated Airlines Group S.A.\",\n    \"Intesa Sanpaolo S.p.A.\",\n    \"Intermarché (Les Mousquetaires)\",\n    \"International Paper Company\",\n    \"Internal Revenue Service (Federal government of the United States)\",\n    \"Intertek Group plc\"\n]"}],"_postman_id":"c4f2c3ce-291c-443a-a3c6-7d3d20fb9c56"}],"id":"02362aa3-567c-4ada-8ac7-29c85d80ed0d","description":"<p>The following endpoints allow you to work with analytical data about job postings/listings. Each endpoint is a different way to view data, and they can be used to render relevant information in many visualization environments.</p>\n","_postman_id":"02362aa3-567c-4ada-8ac7-29c85d80ed0d","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}}},{"name":"User Management Endpoints","item":[{"name":"List of User IDs","event":[{"listen":"test","script":{"id":"2b9b53f1-e3b1-43fc-b693-04d9bd48dc8a","exec":[""],"type":"text/javascript","packages":{}}}],"id":"a9de7eef-32a3-49d7-8654-f448033303a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"//auth0/groupInfo/:uid","description":"<p>Returns a complete list of UserIDs associated with your JWT security token.</p>\n<p>To query using this path, add your organization's auth0 UserID with Administrative rights to the end of the path.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["auth0","groupInfo",":uid"],"host":["/"],"query":[{"disabled":true,"key":"uid","value":""}],"variable":[{"type":"string","value":"","key":"uid"}]}},"response":[{"id":"a7f8b9f6-0c35-4523-a306-8807847d5458","name":"Example User IDs","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":{"raw":"//auth0/groupInfo/:uid","host":["/"],"path":["auth0","groupInfo",":uid"],"query":[{"key":"uid","value":"","type":"text","disabled":true}],"variable":[{"key":"uid","value":"{{exampleid}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 09 Oct 2020 13:22:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"05af204ab80000b49cac2db200000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5df8698acd19b49c-RIX"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"965644f8-786e-4a37-24-b1fd81647639\",\n    \"name\": \"ExampleGroup\",\n    \"adminInfoList\": [\n        {\n            \"adminFullName\": \"Test\",\n            \"adminName\": \"test\",\n            \"adminEmail\": \"test@claro.hr\",\n            \"adminId\": \"auth0|1234567890abcdefghijklmn\"\n        }\n    ],\n    \"tracking\": 746,\n    \"maxTracking\": 100000,\n    \"memberCount\": 2,\n    \"blocked\": false,\n    \"userIds\": [\n        \"auth0|0987654321zyxwvutsrqponm\",\n        \"auth0|1a2b3c4d5e6f7g8h9i0j1k2l\"\n    ]\n}"}],"_postman_id":"a9de7eef-32a3-49d7-8654-f448033303a6"},{"name":"List of Saved Searches","event":[{"listen":"test","script":{"id":"e6b0c978-50a8-436e-bdcd-d0f27bccf205","exec":["const allowedBaseUrls = [","  '2.0.0',","  'searches',","  '1.0.1'","];","","// Get the current request's URL","const currentUrl = pm.request.url.path[0].toString();","console.log(pm.request.url.path[0])","","// Run the test only if the current URL matches one of the allowed base URLs","if (allowedBaseUrls.includes(currentUrl)) {","  pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","  });","} else {","  console.log(`Test skipped: baseUrl does not match any of the allowed URLs`);","}"],"type":"text/javascript","packages":{}}}],"id":"c15d5e8d-5e0f-43c6-9466-0e96c014670c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"//searches/{{exampleid}}","description":"<p>Returns a list of the <code>id</code>, <code>name</code>, and <code>searchParameters</code> of saved searches. </p>\n<p>At the end of the path, enter the UserID of the web-based user account that contains the saved searches, in order to initiate this query. ALL the saved searches associated with your inputted UserID will be shown as a list.</p>\n<p>Once you have the <code>searchParameters</code> of a saved search, you can use them to perform future queries.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["searches","{{exampleid}}"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"e9413b99-f386-4d3e-9319-7ec3d341fa78","name":"Example Searches","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"//searches/{{exampleid}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"_359d2582bd6b81e1e3e73485f2078fe7\",\n        \"name\": \"us mechanic\",\n        \"isSampleFilterSwitchedOn\": false,\n        \"searchParameters\": [\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobCountry\",\n                \"parameterValue\": [\n                    \"US\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"auto mechanic\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"automotive technician\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"auto tech\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"auto technician\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"automotive mechanic\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"automotive service\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"automotive maintenance\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"body shop\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"jobPosition\",\n                \"parameterValue\": [\n                    \"auto body\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            }\n        ],\n        \"sampleLogId\": null,\n        \"searchLogId\": \"01D23561BB8A521E42525FCCC02FCF16\",\n        \"chartType\": [\n            1,\n            2,\n            3\n        ],\n        \"dateTime\": \"2021-02-15T05:52:59.047+00:00\",\n        \"totalCount\": 0,\n        \"selectedCount\": 0,\n        \"children\": null,\n        \"type\": \"search\",\n        \"indexType\": \"demandData\",\n        \"isCollapsed\": false\n    },\n    {\n        \"id\": \"_483fad52db99e440d28010c5becab159\",\n        \"name\": \"Auto Leavers Detroit\",\n        \"isSampleFilterSwitchedOn\": false,\n        \"searchParameters\": [\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"cbsa\",\n                \"parameterValue\": [\n                    \"Detroit-Warren-Dearborn, MI\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"general motors\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"ford\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyPrevious\",\n                \"parameterValue\": [\n                    \"chrysler\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"NOT\",\n                \"parameterValue\": [\n                    \"NOT\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"general motors\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"ford\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"companyCurrent\",\n                \"parameterValue\": [\n                    \"chrysler\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"bool\",\n                \"parameterKey\": \"MILITARY\",\n                \"parameterValue\": []\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"education\",\n                \"parameterValue\": [\n                    \"university of michigan\"\n                ]\n            }\n        ],\n        \"sampleLogId\": null,\n        \"searchLogId\": \"AC3461E1ACE2FE3C278FEE29FBBF97EF\",\n        \"chartType\": [\n            1,\n            2,\n            3\n        ],\n        \"dateTime\": \"2021-02-16T19:02:28.609+00:00\",\n        \"totalCount\": 359,\n        \"selectedCount\": 0,\n        \"children\": null,\n        \"type\": \"search\",\n        \"indexType\": \"supplyData\",\n        \"isCollapsed\": false\n    }\n]"}],"_postman_id":"c15d5e8d-5e0f-43c6-9466-0e96c014670c"},{"name":"Search Parameters by ID","event":[{"listen":"test","script":{"id":"2b9b53f1-e3b1-43fc-b693-04d9bd48dc8a","exec":["const allowedBaseUrls = [","  'https://apijavaanalytics.claro.hr/2.0.0',","  'https://apianalytics.claro.hr',","  'https://apijavaanalytics.claro.hr/1.0.1'","];","","// Get the current request's URL","const currentUrl = pm.request.url.toString();","","// Run the test only if the current URL matches one of the allowed base URLs","if (allowedBaseUrls.includes(currentUrl)) {","  pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","  });","} else {","  console.log(`Test skipped: baseUrl does not match any of the allowed URLs`);","}",""],"type":"text/javascript","packages":{}}}],"id":"7491f37b-24c2-41b3-8465-7d7defddc50e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"//searches/:userId/:searchId","description":"<p>This request returns the search parameters for  the \"searchId\" you enter at the end of the path.</p>\n<p>To query using this path, replace \":userId.\" with the userId of the account you want to retrieve the search parameters from. Be sure to add \"auth0%7C\" in front of the unique auth0 string for your account. Next, replace \":searchId\" with the <code>id</code> of the search. You can find the <code>id</code> of a search by using the above <a href=\"##List-of-Saved-Searches\">List of Saved Searches</a> Endpoint and copying the contents of the <code>id</code> result at the top of the record of each search. </p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["searches",":userId",":searchId"],"host":["/"],"query":[{"disabled":true,"key":"userId","value":""},{"disabled":true,"key":"searchId","value":null}],"variable":[{"description":{"content":"<p>be sure to add \"auth0%7C\" at the start</p>\n","type":"text/plain"},"type":"any","value":"{{exampleid}}","key":"userId"},{"description":{"content":"<p>this is the \"id\" from the first line of the search record</p>\n","type":"text/plain"},"type":"any","value":"_6f3b982042deb986eb57c0e4145d5d99","key":"searchId"}]}},"response":[{"id":"b250e033-1c07-4dd5-830c-6da73a37995d","name":"Search Parameter Results","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":{"raw":"//searches/:userId/:searchId","host":["/"],"path":["searches",":userId",":searchId"],"query":[{"key":"userId","value":"","type":"text","disabled":true}],"variable":[{"key":"userId","value":"{{exampleid}}","description":"be sure to add \"auth0%7C\" at the start"},{"key":"searchId","value":"_6f3b982042deb986eb57c0e4145d5d99","description":"this is the \"id\" from the first line of the search record"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Feb 2021 19:01:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"X-Frame-Options","value":"DENY"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"087703f6880000b8b72597f000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"max_age\":604800,\"group\":\"cf-nel\",\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=akhyhn9zGiGYr4zGzUtatY040GQuG8gSoLRPN6P7Nk0i7lmDFgmh8fOO7zCeKZs8X3jxh%2BFLzJf8NqEZYNiv0jYBSFaPG42GDVEcE8Z8wrQiH6EpNPvVu3hI\"}]}"},{"key":"NEL","value":"{\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains; preload"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"626b6f6a7a95b8b7-MIA"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": null,\n    \"searchParameters\": [\n        {\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"(\",\n            \"parameterValue\": [\n                \"(\"\n            ]\n        },\n        {\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\",\n            \"parameterValue\": [\n                \"regulatory affairs\"\n            ]\n        },\n        {\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\",\n            \"parameterValue\": [\n                \"OR\"\n            ]\n        },\n        {\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\",\n            \"parameterValue\": [\n                \"Clinical research associate\"\n            ]\n        },\n        {\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"OR\",\n            \"parameterValue\": [\n                \"OR\"\n            ]\n        },\n        {\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobPosition\",\n            \"parameterValue\": [\n                \"regulatory compliance\"\n            ]\n        },\n        {\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \")\",\n            \"parameterValue\": [\n                \")\"\n            ]\n        },\n        {\n            \"parameterType\": \"operator\",\n            \"parameterKey\": \"AND\",\n            \"parameterValue\": [\n                \"AND\"\n            ]\n        },\n        {\n            \"parameterType\": \"text\",\n            \"parameterKey\": \"jobCountry\",\n            \"parameterValue\": [\n                \"US\"\n            ]\n        }\n    ],\n    \"searchType\": null\n}"}],"_postman_id":"7491f37b-24c2-41b3-8465-7d7defddc50e"},{"name":"Create Data in User Account","event":[{"listen":"test","script":{"id":"6f459346-6926-4201-beb9-dd0ed735cae0","exec":["// pm.test(\"Status code is 200\", function () {","//   pm.response.to.have.status(200);","// });"],"type":"text/javascript","packages":{}}}],"id":"64af1563-10bc-4261-904a-b1929264ce15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Software Engineers in PST\",\n    \"searchParameters\": [\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"timezone\",\n                \"parameterValue\": [\n                    \"Pacific Standard Time\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"country\",\n                \"parameterValue\": [\n                    \"US\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"currentTitle\",\n                \"parameterValue\": [\n                    \"software\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"currentTitle\",\n                \"parameterValue\": [\n                    \"system\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"currentTitle\",\n                \"parameterValue\": [\n                    \"systems\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"currentTitle\",\n                \"parameterValue\": [\n                    \"engineer\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            }\n        ],\n    \"type\": \"search\",\n    \"indexType\": \"supplyData\",\n    \"id\": \"5eez9rehcw0q73pe45cqngiy6dnrprq59\"\n}"},"url":"//user/userData/:userId?path=","description":"<p>This endpoint allows you to create a new saved search in the account of one of your users. If you would like to update an existing search in the account of one of your users, please follow the instructions in the subsequent endpoint: <strong>Update an Existing Search</strong>.</p>\n<p>Formatting the body of this request requires you to follow a few more steps than the other endpoints. Here's a guide explaining each necessary piece of information:</p>\n<p>Path Variable:</p>\n<p>Replace 'userId' with the alphanumeric string identifier for the specific account you want to save this search to. Be sure to include 'auth0|' in front of their userId.</p>\n<p>Params:</p>\n<p>Do not write anything after the 'path=' if you would like to save the search generically to the user's account. If there is a specific folder in the user's account you wish to save this search to, add the Id of the folder (see the <strong>List of Saved Searches Endpoint</strong> to see an example of a folder Id in a List of Saved Searches) to the end of the path to work in that folder.</p>\n<p>Body:</p>\n<p>\"name\": write the desired name of the search to be shown in the user's account. This name can be any length and is case-sensitive.</p>\n<p>\"searchParameters\": enter the search terms here, like you would for any other endpoint. Here are descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>\"type\": use \"search\" to create a search, or use \"folder\" to create a new folder. If creating a folder, leave the \"searchParameters\" and \"indexType\" fields blank.</p>\n<p>\"indexType\": the available values are \"supplyData\" and \"demandData\", choose the one appropriate for your search and be sure to use the correct <a href=\"#tokens\">tokens</a> for Supply or Demand searches.</p>\n<p>\"id\": a randomly generated string value which should be unique and have a length of 33.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["user","userData",":userId"],"host":["/"],"query":[{"description":{"content":"<p>folder in which you are creating the search</p>\n","type":"text/plain"},"key":"path","value":""}],"variable":[{"description":{"content":"<p>userId of the account to save the search</p>\n","type":"text/plain"},"type":"any","value":null,"key":"userId"}]}},"response":[{"id":"011a995f-abee-4e29-be2f-1edff7ffeabe","name":"Software Engineers in PST","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Software Engineers in PST\",\n    \"searchParameters\": [\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"timezone\",\n                \"parameterValue\": [\n                    \"Pacific Standard Time\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"country\",\n                \"parameterValue\": [\n                    \"US\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"currentTitle\",\n                \"parameterValue\": [\n                    \"software\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"currentTitle\",\n                \"parameterValue\": [\n                    \"system\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"currentTitle\",\n                \"parameterValue\": [\n                    \"systems\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"currentTitle\",\n                \"parameterValue\": [\n                    \"engineer\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            }\n        ],\n    \"type\": \"search\",\n    \"indexType\": \"supplyData\",\n    \"id\": \"5eez9rehcw0q73pe45cqngiy6dnrprq59\"\n}"},"url":{"raw":"//user/userData/:userId?path=","host":["/"],"path":["user","userData",":userId"],"query":[{"key":"path","value":"","description":"folder in which you are creating the search"}],"variable":[{"key":"userId","value":null,"description":"userId of the account to save the search"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"64af1563-10bc-4261-904a-b1929264ce15"},{"name":"Update an Existing Search","event":[{"listen":"test","script":{"id":"02c8b50a-0342-4513-b893-e65fff8766eb","exec":["// pm.test(\"Status code is 200\", function () {","//   pm.response.to.have.status(200);","// });"],"type":"text/javascript","packages":{}}}],"id":"5d099290-5a99-4f13-9d5d-98a1e59f61df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Software Engineers in EST\",\n    \"searchParameters\": [\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"timezone\",\n                \"parameterValue\": [\n                    \"Eastern Standard Time\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"country\",\n                \"parameterValue\": [\n                    \"US\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"currentTitle\",\n                \"parameterValue\": [\n                    \"software\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"currentTitle\",\n                \"parameterValue\": [\n                    \"system\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"currentTitle\",\n                \"parameterValue\": [\n                    \"systems\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"currentTitle\",\n                \"parameterValue\": [\n                    \"engineer\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            }\n        ],\n    \"type\": \"search\",\n    \"indexType\": \"supplyData\",\n    \"id\": \"5eez9rehcw0q73pe45cqngiy6dnrprq59\"\n}"},"url":"//user/userData/:userId?path=","description":"<p>This endpoint allows you to update the terms and/or name of an existing saved search in the account of one of your users. If you would like to create a new search in the account of one of your users, please follow the instructions in the previous endpoint: <strong>Create Data in User Account</strong>.</p>\n<p>Formatting the body of this request requires you to follow a few more steps than the other endpoints. Here's a guide explaining each necessary piece of information:</p>\n<p>Path Variable:</p>\n<p>Replace 'userId' with the alphanumeric string identifier for the specific account in which you want to edit a search. Be sure to include 'auth0|' in front of their userId.</p>\n<p>Params:</p>\n<p>Do not write anything after the 'path=' if you are trying to update a search that is not contained in a specific folder in a user's account. If there is a specific folder in the user's account you know this search is located, add the Id of the folder (see the <strong>List of Saved Searches Endpoint</strong> to see an example of a folder Id in a List of Saved Searches) to the end of the path to work in that folder.</p>\n<p>Body:</p>\n<p>\"name\": write the desired name of the search to be shown in the user's account. This name can be any length and is case-sensitive.</p>\n<p>\"searchParameters\": enter the search terms here, like you would for any other endpoint. Here are descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>\"type\": use \"search\" to edit a saved search.</p>\n<p>\"indexType\": the available values are \"supplyData\" and \"demandData\", choose the one appropriate for your saved search and be sure to use the correct <a href=\"#tokens\">tokens</a> for Supply or Demand searches.</p>\n<p>\"id\": a string value which should be unique and have a length of 33, be sure to copy the exact string of the saved search to successfully update the terms in the saved search.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["user","userData",":userId"],"host":["/"],"query":[{"description":{"content":"<p>folder in which you are editing the search</p>\n","type":"text/plain"},"key":"path","value":""}],"variable":[{"description":{"content":"<p>userId of the account in which you are editing the search</p>\n","type":"text/plain"},"type":"any","value":null,"key":"userId"}]}},"response":[{"id":"205b2030-dde6-47e2-b911-75b658b1732e","name":"Software Engineers in EST","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Software Engineers in EST\",\n    \"searchParameters\": [\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"timezone\",\n                \"parameterValue\": [\n                    \"Eastern Standard Time\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"country\",\n                \"parameterValue\": [\n                    \"US\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"(\",\n                \"parameterValue\": [\n                    \"(\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"currentTitle\",\n                \"parameterValue\": [\n                    \"software\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"currentTitle\",\n                \"parameterValue\": [\n                    \"system\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"OR\",\n                \"parameterValue\": [\n                    \"OR\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"currentTitle\",\n                \"parameterValue\": [\n                    \"systems\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \"AND\",\n                \"parameterValue\": [\n                    \"AND\"\n                ]\n            },\n            {\n                \"parameterType\": \"text\",\n                \"parameterKey\": \"currentTitle\",\n                \"parameterValue\": [\n                    \"engineer\"\n                ]\n            },\n            {\n                \"parameterType\": \"operator\",\n                \"parameterKey\": \")\",\n                \"parameterValue\": [\n                    \")\"\n                ]\n            }\n        ],\n    \"type\": \"search\",\n    \"indexType\": \"supplyData\",\n    \"id\": \"5eez9rehcw0q73pe45cqngiy6dnrprq59\"\n}"},"url":{"raw":"//user/userData/:userId?path=","host":["/"],"path":["user","userData",":userId"],"query":[{"key":"path","value":"","description":"folder in which you are creating the search"}],"variable":[{"key":"userId","value":null,"description":"userId of the account to save the search"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5d099290-5a99-4f13-9d5d-98a1e59f61df"},{"name":"Create a Saved Document","event":[{"listen":"test","script":{"id":"d98e95d9-2c44-46c2-8bab-fda72c04bbd9","exec":[""],"type":"text/javascript","packages":{}}}],"id":"c05a0e0a-6543-464f-970c-aa4451806888","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Devops Engineers\",\n    \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"DevOps Engineer\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"Boston-Cambridge-Newton, MA-NH\",\"10\",\"mi\",\"CBSA\",\"United States\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"locationRange\"\n    }\n  ],\n    \"type\": \"search\",\n    \"indexType\": \"supplyData\",\n    \"sampleFilterSwitchedOn\": false\n}"},"url":"//user/documents/auth0%7CuserId","description":"<p>This endpoint allows you to create a saved search document that will be associated with your unique authorization credentials.</p>\n<p>Replace 'userId' in the path with the userId you wish to create the saved document in and associate it with.</p>\n<p>By saving a search, you are now able to set alerts on a population to see who among them are displaying job seeking activity. Use the <strong>Select All (Alerts) Endpoint</strong> above after creating the saved search using this endpoint; you will need the id of the search from this result file to successfully resolve that Select All endpoint.</p>\n<p>Formatting the body of this request requires you to follow a few more steps than the other endpoints. Here's a guide explaining each necessary piece of information:</p>\n<p>Body:</p>\n<p>\"name\": write the desired name of the search to be saved as a document. This name can be any length and is case-sensitive.</p>\n<p>\"searchParameters\": enter the search terms here, like you would for any other endpoint. Here are descriptions of a <a href=\"#queries\">query</a> and the <a href=\"#tokens\">tokens</a> you will need to create one.</p>\n<p>\"type\": use \"search\" to create a search, for now this is the only acceptable value.</p>\n<p>\"indexType\": for now, the only acceptable value is \"supplyData\".</p>\n<p>\"sampleFilterSwitchedOn\": for now, set this value to <strong>false.</strong></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}},"urlObject":{"path":["user","documents","auth0%7CuserId"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"11e98554-9d21-4cb2-84a0-d4411df7cf16","name":"Devops Engineers in Boston","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Devops Engineers\",\n    \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"DevOps Engineer\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"Boston-Cambridge-Newton, MA-NH\",\"10\",\"mi\",\"CBSA\",\"United States\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"locationRange\"\n    }\n  ],\n    \"type\": \"search\",\n    \"indexType\": \"supplyData\",\n    \"sampleFilterSwitchedOn\": false\n}"},"url":"//user/documents/auth0%7CuserId"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"E9ACW56qRCugnduTeXTr0Q\",\n    \"name\": \"Devops Engineers in Boston\",\n    \"searchParameters\": [\n    {\n      \"parameterValue\": [\n        \"DevOps Engineer\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"currentTitle\"\n    },\n    {\n      \"parameterValue\": [\n        \"AND\"\n      ],\n      \"parameterType\": \"operator\",\n      \"parameterKey\": \"AND\"\n    },\n    {\n      \"parameterValue\": [\n        \"Boston-Cambridge-Newton, MA-NH\",\"10\",\"mi\",\"CBSA\",\"United States\"\n      ],\n      \"parameterType\": \"text\",\n      \"parameterKey\": \"locationRange\"\n    }\n    ],\n    \"sampleLogId\": null,\n    \"searchLogId\": \"2AE288DF11C527DC8B62D813EABAEEC4\",\n    \"dateTime\": 1698290674243,\n    \"children\": [],\n    \"type\": \"search\",\n    \"searchType\": null,\n    \"indexType\": \"supplyData\",\n    \"platformType\": null,\n    \"order\": 0,\n    \"dateTimeFormatted\": \"2023-10-26\",\n    \"sampleFilterSwitchedOn\": false,\n    \"collapsed\": false\n}"}],"_postman_id":"c05a0e0a-6543-464f-970c-aa4451806888"}],"id":"32eca3ba-7d02-4dc9-ae5f-c26985d2ddb0","description":"<p>You will require an auth0 UserID with Administrative rights for your organization in order to access the Endpoints illustrated below. If you have not received this Administrative UserID, please contact <a href=\"mailto:support@claro.hr\">support@claro.hr</a>. The below examples demonstrate how to get results for your requests.</p>\n","_postman_id":"32eca3ba-7d02-4dc9-ae5f-c26985d2ddb0","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}}},{"name":"Error Messages","item":[],"id":"3d549509-e397-4830-9f28-d609a6ebd6bc","description":"<h2 id=\"400-error-messages\">400 Error Messages</h2>\n<p>A comprehensive list of error messages you may encounter when working with Endpoints. Example searches illustrate these error messages.</p>\n<p><strong>Incorrect Operator Entry</strong></p>\n<p>Error Message: \"operator must be one of the following: AND, OR, NOT, (, ) !\"</p>\n<p>You must match the exact parameterValue to the parameterKey for parameterType \"operator\".</p>\n<p>Example Query with this Error:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"searchParameters\": [\n    {\n        \"parameterValue\": [\n            \"XOR\"\n        ],\n        \"parameterType\": \"operator\",\n        \"parameterKey\": \"OR\"\n    }\n]\n\n\n</code></pre><p><strong>Misplaced parameterKey</strong></p>\n<p>Error Message: \"Both range token values must be integers! \"</p>\n<p>You cannot create a Supply Bar Chart based on a search with a Demand parameterKey, such as \"jobSalary\" in this example. Use a Talent Demand Insights path when searching for Demand information.</p>\n<p>Example Path and Query with this Error:</p>\n<p>//supplyData/barData/cbsa</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"searchParameters\": [\n    {\n        \"parameterValue\": [\n            \"1500\",\n            \"15000\"\n        ],\n        \"parameterType\": \"range\",\n        \"parameterKey\": \"jobSalary\"\n    }\n]\n\n</code></pre><p><strong>Incorrect parameterKey</strong></p>\n<p>Error Message: \"Value of parameterKey is not valid!\"</p>\n<p>You must match the parameterKey to one of the precise parameterKeys listed in the <a href=\"#Talent-Supply-Insights\">Talent Supply Insights</a> section.</p>\n<p>Example Query with this Error:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"searchParameters\": [\n    {\n        \"parameterValue\": [\n            \"US\"\n        ],\n        \"parameterType\": \"text\",\n        \"parameterKey\": \"countryWrong\"\n    }\n]\n\n</code></pre><p><strong>Mismatched Operator Entry</strong></p>\n<p>Error Message: \"Wrong query logic. Check operators.\"</p>\n<p>You must precisely match the parameterValue to the parameterKey for the \"operator\" parameterType.</p>\n<p>Example Query with this Error:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"searchParameters\": [\n    {\n        \"parameterValue\": [\n            \"US\"\n        ],\n        \"parameterType\": \"text\",\n        \"parameterKey\": \"country\"\n    },\n    {\n        \"parameterValue\": [\n            \"OR\"\n        ],\n        \"parameterType\": \"operator\",\n        \"parameterKey\": \"AND\"\n    }\n]\n\n</code></pre><p><strong>Incorrect Boolean Value</strong></p>\n<p>Error Message: \"Value of operator bool must be Boolean!\"</p>\n<p>You must enter an empty array for the parameterValue of parameterType \"bool\" searchParameters.</p>\n<p>Example Query with this Error:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"searchParameters\": [\n    {\n        \"parameterValue\": [\n            \"1050\"\n        ],\n        \"parameterType\": \"bool\",\n        \"parameterKey\": \"clearance\"\n    }\n]\n\n</code></pre><p><strong>Value Array Overflow</strong></p>\n<p>Error Message: \"Value of operator text must not be range! Array size must be 1!\"</p>\n<p>You may only enter 1 value in a given parameterValue array for the parameterType \"text\". Use operators to join multiple parameters.</p>\n<p>Example Query with this Error:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"searchParameters\": [\n    {\n        \"parameterValue\": [\n            \"US\",\n            \"GB\"\n        ],\n        \"parameterType\": \"text\",\n        \"parameterKey\": \"country\"\n    }\n]\n\n</code></pre><p><strong>Incomplete Range Values</strong></p>\n<p>Error Message: \"Value of operator range must be range! Array size must be 2!\"</p>\n<p>You must enter 2 values, separated by a comma, in the parameterValue array for parameterType \"range\".</p>\n<p>Example Query with this Error:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"searchParameters\": [\n    {\n        \"parameterValue\": [\n            \"1500\"\n        ],\n        \"parameterType\": \"range\",\n        \"parameterKey\": \"jobSalary\"\n    }\n]\n\n</code></pre><p><strong>Incorrect parameterType</strong></p>\n<p>Error Message: \"Value of parameterType is not valid!\"</p>\n<p>You must use one of the following parameterTypes: \"text\", \"fields\", \"bool\", \"range\", or \"operator\".</p>\n<p>Example Query with this Error:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"searchParameters\": [\n    {\n        \"parameterValue\": [\n            \"US\"\n        ],\n        \"parameterType\": \"textWrong\",\n        \"parameterKey\": \"country\"\n    }\n]\n\n</code></pre><p><strong>Misplaced parameterType</strong></p>\n<p>Error Message: \"Bad parameter key for text type.\"</p>\n<p>Be sure to check the tokens in the <a href=\"##Talent-Supply-Insights\">Talent Supply Insights</a> or <a href=\"##Talent-Demand-Insights\">Talent Demand Insights</a> to ensure the parameterType matches the correct parameterKey.</p>\n<p>Example Query with this Error:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"searchParameters\": [\n    {\n        \"parameterValue\": [\n            \"manager\"\n        ],\n        \"parameterType\": \"text\",\n        \"parameterKey\": \"experienceCurrent\"\n    }\n]\n\n</code></pre><p><strong>Incomplete Operator Connection</strong></p>\n<p>Error Message: \"Wrong query logic. Check operators.\"</p>\n<p>You cannot end a search string with a parameterType \"operator\".</p>\n<p>Example Query with this Error:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"searchParameters\": [\n    {\n        \"parameterValue\": [\n            \"US\"\n        ],\n        \"parameterType\": \"text\",\n        \"parameterKey\": \"country\"\n    },\n    {\n        \"parameterValue\": [\n            \"OR\"\n        ],\n        \"parameterType\": \"operator\",\n        \"parameterKey\": \"OR\"\n    }\n]\n\n</code></pre><p><strong>Incomplete heatMap Coordinates</strong></p>\n<p>Error Message: \"Value of field: topLeft, must be set!\"</p>\n<p>You must enter coordinates for BOTH the topLeft and bottomRight corners of the area of the heatMap you want to cover.</p>\n<p>Example Query with this Error:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"searchParameters\": [\n    {\n        \"parameterValue\": [\n            \"Apple\"\n        ],\n        \"parameterType\": \"text\",\n        \"parameterKey\": \"Company\"\n    }\n],\n\"bottomRight\": {\n    \"lat\": 38.150681538002644,\n    \"lon\": -83.20654392242432\n}\n\n</code></pre><p><strong>Incorrect Path Precision</strong></p>\n<p>You will not see an error message for this error. The path variable must be a correct integer value. In this example of heatMap data, the integer value can range from 2 to 9.</p>\n<p>Example Path and Query for this Error:</p>\n<p>'//supplyData/heatMapData/a'</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"searchParameters\": [\n    {\n        \"parameterValue\": [\n            \"Apple\"\n        ],\n        \"parameterType\": \"text\",\n        \"parameterKey\": \"Company\"\n    }\n],\n\"topLeft\": {\n    \"lat\": 39.64686556042948,\n    \"lon\": -85.67846775054933\n},\n\"bottomRight\": {\n    \"lat\": 38.150681538002644,\n    \"lon\": -83.20654392242432\n}\n\n</code></pre><p><strong>Expired or Incorrect Bearer Token  </strong></p>\n<p>To check the validity of your Bearer token, send your Bearer token to <a href=\"https://jwt.io\">jwt.io</a>.</p>\n<p>Error Code 401: Unauthorized</p>\n<p>If your Bearer token has expired or some of the characters in the token are missing/incorrect, you will receive a 401 Error Code, as shown in the example below.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\"timestamp\": 1656618346703,    \"status\": 401,    \"error\": \"Unauthorized\",    \"message\": \"Unauthorized\",    \"path\": \"/supplyData/barData/education\"}\n\n</code></pre>","_postman_id":"3d549509-e397-4830-9f28-d609a6ebd6bc","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]},"isInherited":true,"source":{"_postman_id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","id":"aa7cf33d-61c6-4c3a-ad2c-2f47bdc4e027","name":"Claro API Reference Library","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{token-1.0.1}}"}]}},"event":[{"listen":"prerequest","script":{"id":"0bb53b90-15e0-4364-8d0d-393528c009b4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e541b866-7a00-4e43-a87e-b4be95d07460","type":"text/javascript","exec":[""]}}],"variable":[{"key":"baseUrl","value":"/"},{"key":"userlist","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6Ik9FUXlSVEU1UkRRNU5rSkNNek0xUlRKRk5ERXlNVGhGUmpCQk1qSTJRakZCTVRnd1FrSTBOQSJ9.eyJuaWNrbmFtZSI6ImVsbGlvdC5vd2VucyIsIm5hbWUiOiJFbGxpb3QgT3dlbnMiLCJwaWN0dXJlIjoiaHR0cHM6Ly9zLmdyYXZhdGFyLmNvbS9hdmF0YXIvYmIyZWU5NjBiMzg2ZWE1NmViZmIyZmVmMmUyNDVkMmI_cz00ODAmcj1wZyZkPWh0dHBzJTNBJTJGJTJGY2RuLmF1dGgwLmNvbSUyRmF2YXRhcnMlMkZlby5wbmciLCJ1cGRhdGVkX2F0IjoiMjAyMC0wOC0wM1QxNjoyMjo0OS42NjJaIiwiZW1haWwiOiJlbGxpb3Qub3dlbnNAcG9udG9vbnNvbHV0aW9ucy5jb20iLCJlbWFpbF92ZXJpZmllZCI6ZmFsc2UsImlzcyI6Imh0dHBzOi8vbG9naW4uY2xhcm8uaHIvIiwic3ViIjoiYXV0aDB8NWYyODJlZjIzZGU5NzAwMDM3MDUxMDdlIiwiYXVkIjoiR2xuTWo0Ylo5Q1Z4Y0hsamtnMDZUakx4c3cyTDdBcGQiLCJpYXQiOjE1OTY0NzE3NzEsImV4cCI6MTYyODAwNzc3MX0.T35yy2y4T6xCUBV1-YMLWVlF2xK0PEFDuH18Q4QiuntFpJ2MYsJ7Io0f3VdBLvjWoUeUImfG-_kFF1nUU5gn7Dubg5yLIBryuRKrZrT4FV8FUhl0ZsvxIqu-ZqiJni0nLOsmP9WXs37efDCzKIWTCoOgSo13LIrnjV7okIumZ3_oKwdKFDKo2f5qMxOEcngD9ZCRd7C1Nw5U6ufd8zvwe8-hzuFU7PPFgZss2JJp5tZkzBe42aTlw1dmepRBl5RJ6j_TpdiXUTwJ5McHuFSH_iiOf7_n8WA9z1P89PDsk6NxJ6ML07T_zZC_edlMYwfn1fRp6V8h3DBG637jqauKlA","disabled":true}]}